@kitelev/exocortex-cli 16.1.0 → 16.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +32 -32
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // @kitelev/exocortex-cli v16.1.0
2
+ // @kitelev/exocortex-cli v16.2.0
3
3
  // CLI tool for Exocortex knowledge management system - SPARQL queries, task management, and more
4
4
  // License: MIT
5
5
 
@@ -28,16 +28,16 @@ Expecting one of '${r.join("', '")}'`);return this._lifeCycleHooks[e]?this._life
28
28
  `),this.outputHelp({error:!0}));let r=t||{},i=r.exitCode||1,s=r.code||"commander.error";this._exit(i,s,e)}_parseOptionsEnv(){this.options.forEach(e=>{if(e.envVar&&e.envVar in st.env){let t=e.attributeName();(this.getOptionValue(t)===void 0||["default","config","env"].includes(this.getOptionValueSource(t)))&&(e.required||e.optional?this.emit(`optionEnv:${e.name()}`,st.env[e.envVar]):this.emit(`optionEnv:${e.name()}`))}})}_parseOptionsImplied(){let e=new WN(this.options),t=o(r=>this.getOptionValue(r)!==void 0&&!["default","implied"].includes(this.getOptionValueSource(r)),"hasCustomOptionValue");this.options.filter(r=>r.implied!==void 0&&t(r.attributeName())&&e.valueFromOption(this.getOptionValue(r.attributeName()),r)).forEach(r=>{Object.keys(r.implied).filter(i=>!t(i)).forEach(i=>{this.setOptionValueWithSource(i,r.implied[i],"implied")})})}missingArgument(e){let t=`error: missing required argument '${e}'`;this.error(t,{code:"commander.missingArgument"})}optionMissingArgument(e){let t=`error: option '${e.flags}' argument missing`;this.error(t,{code:"commander.optionMissingArgument"})}missingMandatoryOptionValue(e){let t=`error: required option '${e.flags}' not specified`;this.error(t,{code:"commander.missingMandatoryOptionValue"})}_conflictingOption(e,t){let r=o(a=>{let c=a.attributeName(),l=this.getOptionValue(c),u=this.options.find(d=>d.negate&&c===d.attributeName()),f=this.options.find(d=>!d.negate&&c===d.attributeName());return u&&(u.presetArg===void 0&&l===!1||u.presetArg!==void 0&&l===u.presetArg)?u:f||a},"findBestOptionFromValue"),i=o(a=>{let c=r(a),l=c.attributeName();return this.getOptionValueSource(l)==="env"?`environment variable '${c.envVar}'`:`option '${c.flags}'`},"getErrorMessage"),s=`error: ${i(e)} cannot be used with ${i(t)}`;this.error(s,{code:"commander.conflictingOption"})}unknownOption(e){if(this._allowUnknownOption)return;let t="";if(e.startsWith("--")&&this._showSuggestionAfterError){let i=[],s=this;do{let a=s.createHelp().visibleOptions(s).filter(c=>c.long).map(c=>c.long);i=i.concat(a),s=s.parent}while(s&&!s._enablePositionalOptions);t=M2(e,i)}let r=`error: unknown option '${e}'${t}`;this.error(r,{code:"commander.unknownOption"})}_excessArguments(e){if(this._allowExcessArguments)return;let t=this.registeredArguments.length,r=t===1?"":"s",s=`error: too many arguments${this.parent?` for '${this.name()}'`:""}. Expected ${t} argument${r} but got ${e.length}.`;this.error(s,{code:"commander.excessArguments"})}unknownCommand(){let e=this.args[0],t="";if(this._showSuggestionAfterError){let i=[];this.createHelp().visibleCommands(this).forEach(s=>{i.push(s.name()),s.alias()&&i.push(s.alias())}),t=M2(e,i)}let r=`error: unknown command '${e}'${t}`;this.error(r,{code:"commander.unknownCommand"})}version(e,t,r){if(e===void 0)return this._version;this._version=e,t=t||"-V, --version",r=r||"output the version number";let i=this.createOption(t,r);return this._versionOptionName=i.attributeName(),this._registerOption(i),this.on("option:"+i.name(),()=>{this._outputConfiguration.writeOut(`${e}
29
29
  `),this._exit(0,"commander.version",e)}),this}description(e,t){return e===void 0&&t===void 0?this._description:(this._description=e,t&&(this._argsDescription=t),this)}summary(e){return e===void 0?this._summary:(this._summary=e,this)}alias(e){if(e===void 0)return this._aliases[0];let t=this;if(this.commands.length!==0&&this.commands[this.commands.length-1]._executableHandler&&(t=this.commands[this.commands.length-1]),e===t._name)throw new Error("Command alias can't be the same as its name");let r=this.parent?._findCommand(e);if(r){let i=[r.name()].concat(r.aliases()).join("|");throw new Error(`cannot add alias '${e}' to command '${this.name()}' as already have command '${i}'`)}return t._aliases.push(e),this}aliases(e){return e===void 0?this._aliases:(e.forEach(t=>this.alias(t)),this)}usage(e){if(e===void 0){if(this._usage)return this._usage;let t=this.registeredArguments.map(r=>UN(r));return[].concat(this.options.length||this._helpOption!==null?"[options]":[],this.commands.length?"[command]":[],this.registeredArguments.length?t:[]).join(" ")}return this._usage=e,this}name(e){return e===void 0?this._name:(this._name=e,this)}helpGroup(e){return e===void 0?this._helpGroupHeading??"":(this._helpGroupHeading=e,this)}commandsGroup(e){return e===void 0?this._defaultCommandGroup??"":(this._defaultCommandGroup=e,this)}optionsGroup(e){return e===void 0?this._defaultOptionGroup??"":(this._defaultOptionGroup=e,this)}_initOptionGroup(e){this._defaultOptionGroup&&!e.helpGroupHeading&&e.helpGroup(this._defaultOptionGroup)}_initCommandGroup(e){this._defaultCommandGroup&&!e.helpGroup()&&e.helpGroup(this._defaultCommandGroup)}nameFromFilename(e){return this._name=Vs.basename(e,Vs.extname(e)),this}executableDir(e){return e===void 0?this._executableDir:(this._executableDir=e,this)}helpInformation(e){let t=this.createHelp(),r=this._getOutputContext(e);t.prepareContext({error:r.error,helpWidth:r.helpWidth,outputHasColors:r.hasColors});let i=t.formatHelp(this,t);return r.hasColors?i:this._outputConfiguration.stripColor(i)}_getOutputContext(e){e=e||{};let t=!!e.error,r,i,s;return t?(r=o(c=>this._outputConfiguration.writeErr(c),"baseWrite"),i=this._outputConfiguration.getErrHasColors(),s=this._outputConfiguration.getErrHelpWidth()):(r=o(c=>this._outputConfiguration.writeOut(c),"baseWrite"),i=this._outputConfiguration.getOutHasColors(),s=this._outputConfiguration.getOutHelpWidth()),{error:t,write:o(c=>(i||(c=this._outputConfiguration.stripColor(c)),r(c)),"write"),hasColors:i,helpWidth:s}}outputHelp(e){let t;typeof e=="function"&&(t=e,e=void 0);let r=this._getOutputContext(e),i={error:r.error,write:r.write,command:this};this._getCommandAndAncestors().reverse().forEach(a=>a.emit("beforeAllHelp",i)),this.emit("beforeHelp",i);let s=this.helpInformation({error:r.error});if(t&&(s=t(s),typeof s!="string"&&!Buffer.isBuffer(s)))throw new Error("outputHelp callback must return a string or a Buffer");r.write(s),this._getHelpOption()?.long&&this.emit(this._getHelpOption().long),this.emit("afterHelp",i),this._getCommandAndAncestors().forEach(a=>a.emit("afterAllHelp",i))}helpOption(e,t){return typeof e=="boolean"?(e?(this._helpOption===null&&(this._helpOption=void 0),this._defaultOptionGroup&&this._initOptionGroup(this._getHelpOption())):this._helpOption=null,this):(this._helpOption=this.createOption(e??"-h, --help",t??"display help for command"),(e||t)&&this._initOptionGroup(this._helpOption),this)}_getHelpOption(){return this._helpOption===void 0&&this.helpOption(void 0,void 0),this._helpOption}addHelpOption(e){return this._helpOption=e,this._initOptionGroup(e),this}help(e){this.outputHelp(e);let t=Number(st.exitCode??0);t===0&&e&&typeof e!="function"&&e.error&&(t=1),this._exit(t,"commander.help","(outputHelp)")}addHelpText(e,t){let r=["beforeAll","before","after","afterAll"];if(!r.includes(e))throw new Error(`Unexpected value for position to addHelpText.
30
30
  Expecting one of '${r.join("', '")}'`);let i=`${e}Help`;return this.on(i,s=>{let a;typeof t=="function"?a=t({error:s.error,command:s.command}):a=t,a&&s.write(`${a}
31
- `)}),this}_outputHelpIfRequested(e){let t=this._getHelpOption();t&&e.find(i=>t.is(i))&&(this.outputHelp(),this._exit(0,"commander.helpDisplayed","(outputHelp)"))}};function j2(n){return n.map(e=>{if(!e.startsWith("--inspect"))return e;let t,r="127.0.0.1",i="9229",s;return(s=e.match(/^(--inspect(-brk)?)$/))!==null?t=s[1]:(s=e.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null?(t=s[1],/^\d+$/.test(s[3])?i=s[3]:r=s[3]):(s=e.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null&&(t=s[1],r=s[3],i=s[4]),t&&i!=="0"?`${t}=${r}:${parseInt(i)+1}`:e})}o(j2,"incrementNodeInspectorPort");function Ky(){if(st.env.NO_COLOR||st.env.FORCE_COLOR==="0"||st.env.FORCE_COLOR==="false")return!1;if(st.env.FORCE_COLOR||st.env.CLICOLOR_FORCE!==void 0)return!0}o(Ky,"useColor");Yy.Command=Qy;Yy.useColor=Ky});var q2=S(Hn=>{var{Argument:V2}=Dd(),{Command:Xy}=$2(),{CommanderError:GN,InvalidArgumentError:U2}=wu(),{Help:zN}=Uy(),{Option:B2}=Gy();Hn.program=new Xy;Hn.createCommand=n=>new Xy(n);Hn.createOption=(n,e)=>new B2(n,e);Hn.createArgument=(n,e)=>new V2(n,e);Hn.Command=Xy;Hn.Option=B2;Hn.Argument=V2;Hn.Help=zN;Hn.CommanderError=GN;Hn.InvalidArgumentError=U2;Hn.InvalidOptionArgumentError=U2});var Eu=S(Ld=>{"use strict";Object.defineProperty(Ld,"__esModule",{value:!0});Ld.AssetClass=void 0;var G2;(function(n){n.AREA="ems__Area",n.TASK="ems__Task",n.PROJECT="ems__Project",n.MEETING="ems__Meeting",n.INITIATIVE="ems__Initiative",n.TASK_PROTOTYPE="ems__TaskPrototype",n.MEETING_PROTOTYPE="ems__MeetingPrototype",n.EVENT_PROTOTYPE="exo__EventPrototype",n.PROJECT_PROTOTYPE="ems__ProjectPrototype",n.EVENT="exo__Event",n.DAILY_NOTE="pn__DailyNote",n.CONCEPT="ims__Concept",n.SESSION_START_EVENT="ems__SessionStartEvent",n.SESSION_END_EVENT="ems__SessionEndEvent",n.PROTOTYPE="exo__Prototype",n.CLASS="exo__Class",n.FLEETING_NOTE="ztlk__FleetingNote",n.WORKFLOW="ems__Workflow",n.WORKFLOW_STATE="ems__WorkflowState",n.WORKFLOW_TRANSITION="ems__WorkflowTransition",n.COMMAND="exocmd__Command",n.PRECONDITION="exocmd__Precondition",n.GROUNDING="exocmd__Grounding",n.COMMAND_BINDING="exocmd__CommandBinding"})(G2||(Ld.AssetClass=G2={}))});var yc=S(kd=>{"use strict";Object.defineProperty(kd,"__esModule",{value:!0});kd.EffortStatus=void 0;var z2;(function(n){n.DRAFT="ems__EffortStatusDraft",n.BACKLOG="ems__EffortStatusBacklog",n.ANALYSIS="ems__EffortStatusAnalysis",n.TODO="ems__EffortStatusToDo",n.DOING="ems__EffortStatusDoing",n.DONE="ems__EffortStatusDone",n.TRASHED="ems__EffortStatusTrashed"})(z2||(kd.EffortStatus=z2={}))});var Jy=S(Gt=>{"use strict";Object.defineProperty(Gt,"__esModule",{value:!0});Gt.EFFORT_STATUS_OPTIONS=Gt.STATUS_NAME_TO_WIKILINK=Gt.STATUS_NAME_TO_ENUM=Gt.EFFORT_STATUS_CONFIG=void 0;Gt.normalizeEffortStatus=HN;Gt.isDoneStatus=QN;Gt.isTrashedStatus=KN;Gt.getEffortStatusLabel=YN;var ss=yc();Gt.EFFORT_STATUS_CONFIG=[{name:"Draft",status:ss.EffortStatus.DRAFT,wikilink:"[[ems__EffortStatusDraft]]"},{name:"Backlog",status:ss.EffortStatus.BACKLOG,wikilink:"[[ems__EffortStatusBacklog]]"},{name:"Analysis",status:ss.EffortStatus.ANALYSIS,wikilink:"[[ems__EffortStatusAnalysis]]"},{name:"To Do",status:ss.EffortStatus.TODO,wikilink:"[[ems__EffortStatusToDo]]"},{name:"Doing",status:ss.EffortStatus.DOING,wikilink:"[[ems__EffortStatusDoing]]"},{name:"Done",status:ss.EffortStatus.DONE,wikilink:"[[ems__EffortStatusDone]]"},{name:"Trashed",status:ss.EffortStatus.TRASHED,wikilink:"[[ems__EffortStatusTrashed]]"}];Gt.STATUS_NAME_TO_ENUM=Object.fromEntries(Gt.EFFORT_STATUS_CONFIG.map(n=>[n.name,n.status]));Gt.STATUS_NAME_TO_WIKILINK=Object.fromEntries(Gt.EFFORT_STATUS_CONFIG.map(n=>[n.name,n.wikilink]));Gt.EFFORT_STATUS_OPTIONS=Gt.EFFORT_STATUS_CONFIG.map(n=>({value:n.wikilink,label:n.name}));function HN(n,e=ss.EffortStatus.DRAFT){if(n.startsWith("ems__")){let r=Gt.EFFORT_STATUS_CONFIG.find(i=>i.status===n);return r?r.status:e}return Gt.STATUS_NAME_TO_ENUM[n]??e}o(HN,"normalizeEffortStatus");function QN(n){return n===ss.EffortStatus.DONE}o(QN,"isDoneStatus");function KN(n){return n===ss.EffortStatus.TRASHED}o(KN,"isTrashedStatus");function YN(n){if(!n)return"-";let e=String(n);if(e==="")return"-";for(let r of Gt.EFFORT_STATUS_CONFIG)if(r.wikilink===e||`[[${e}]]`===r.wikilink||r.status===e||r.name===e)return r.name;let t=e.toLowerCase();for(let r of Gt.EFFORT_STATUS_CONFIG)if(r.name.toLowerCase()===t)return r.name;return e}o(YN,"getEffortStatusLabel")});var _c=S(Md=>{"use strict";Object.defineProperty(Md,"__esModule",{value:!0});Md.GroundingType=void 0;var H2;(function(n){n.SPARQL_UPDATE="sparql_update",n.PROPERTY_DELETE="property_delete",n.PROPERTY_SET="property_set",n.COMPOSITE="composite",n.SERVICE_CALL="service_call",n.CREATE_INSTANCE="create_instance"})(H2||(Md.GroundingType=H2={}))});var Zy=S(Qn=>{"use strict";Object.defineProperty(Qn,"__esModule",{value:!0});Qn.CommandBindingStyleProperty=Qn.CommandBindingProperty=Qn.GroundingProperty=Qn.PreconditionProperty=Qn.CommandProperty=void 0;Qn.CommandProperty={ICON:"exocmd__Command_icon",PRECONDITION:"exocmd__Command_precondition",GROUNDING:"exocmd__Command_grounding",CONFIRM_MESSAGE:"exocmd__Command_confirmMessage",SUCCESS_MESSAGE:"exocmd__Command_successMessage",CATEGORY:"exocmd__Command_category"};Qn.PreconditionProperty={SPARQL_ASK:"exocmd__Precondition_sparqlAsk",QUERY:"exocmd__Precondition_query"};Qn.GroundingProperty={TYPE:"exocmd__Grounding_type",SPARQL_UPDATE:"exocmd__Grounding_sparqlUpdate",TARGET_PROPERTY:"exocmd__Grounding_targetProperty",TARGET_VALUE:"exocmd__Grounding_targetValue",STEPS:"exocmd__Grounding_steps"};Qn.CommandBindingProperty={COMMAND:"exocmd__CommandBinding_command",TARGET_CLASS:"exocmd__CommandBinding_targetClass",TARGET_PROTOTYPE:"exocmd__CommandBinding_targetPrototype",TARGET_ASSET:"exocmd__CommandBinding_targetAsset",POSITION:"exocmd__CommandBinding_position",ORDER:"exocmd__CommandBinding_order",PRECONDITION:"exocmd__CommandBinding_precondition",STYLE:"exocmd__CommandBinding_style",VARIANT:"exocmd__CommandBinding_variant"};Qn.CommandBindingStyleProperty={VARIANT:"exocmd__CommandBindingStyle_variant",SHOW_ICON:"exocmd__CommandBindingStyle_showIcon",LABEL_CLASS:"exocmd__CommandBindingStyle_labelClass",ARIA_LABEL:"exocmd__CommandBindingStyle_ariaLabel",TOOLTIP:"exocmd__CommandBindingStyle_tooltip",KEYBOARD_SHORTCUT:"exocmd__CommandBindingStyle_keyboardShortcut",SOURCE:"exocmd__CommandBindingStyle_source"}});var e0=S(wn=>{"use strict";Object.defineProperty(wn,"__esModule",{value:!0});wn.STYLE_SOURCE_VALUES=wn.LABEL_CLASS_VALUES=wn.COMMAND_VARIANT_VALUES=void 0;wn.isCommandVariant=XN;wn.isLabelClass=JN;wn.isStyleSource=ZN;wn.COMMAND_VARIANT_VALUES=Object.freeze(["primary","secondary","success","warning","danger","muted"]);wn.LABEL_CLASS_VALUES=Object.freeze(["muted","bold","uppercase","compact"]);wn.STYLE_SOURCE_VALUES=Object.freeze(["vendor","user"]);function XN(n){return typeof n=="string"&&wn.COMMAND_VARIANT_VALUES.includes(n)}o(XN,"isCommandVariant");function JN(n){return typeof n=="string"&&wn.LABEL_CLASS_VALUES.includes(n)}o(JN,"isLabelClass");function ZN(n){return typeof n=="string"&&wn.STYLE_SOURCE_VALUES.includes(n)}o(ZN,"isStyleSource")});var Q2=S(Sc=>{"use strict";Object.defineProperty(Sc,"__esModule",{value:!0});Sc.isCommandFrontmatter=eL;Sc.isPreconditionFrontmatter=tL;Sc.isGroundingFrontmatter=rL;Sc.isCommandBindingFrontmatter=nL;function eL(n){return jd(n,"exocmd__Command")}o(eL,"isCommandFrontmatter");function tL(n){return jd(n,"exocmd__Precondition")}o(tL,"isPreconditionFrontmatter");function rL(n){return jd(n,"exocmd__Grounding")}o(rL,"isGroundingFrontmatter");function nL(n){return jd(n,"exocmd__CommandBinding")}o(nL,"isCommandBindingFrontmatter");function jd(n,e){let t=n.exo__Instance_class;if(t==null)return!1;let r=Array.isArray(t)?t:[t];for(let i of r){if(typeof i!="string")continue;let s=i.match(/\[\[([^|\]]+)/);if((s?s[1]:i)===e)return!0}return!1}o(jd,"hasInstanceClass")});var K2=S($d=>{"use strict";Object.defineProperty($d,"__esModule",{value:!0});$d.hasPosition=iL;$d.isFixed=sL;function iL(n){return typeof n.x=="number"&&typeof n.y=="number"}o(iL,"hasPosition");function sL(n){return n.fx!==null&&n.fx!==void 0&&n.fy!==null&&n.fy!==void 0}o(sL,"isFixed")});var Y2=S(Vd=>{"use strict";Object.defineProperty(Vd,"__esModule",{value:!0});Vd.createEmptyGraphData=aL;Vd.mergeGraphData=oL;function aL(){return{nodes:[],edges:[],lastUpdated:Date.now(),version:0}}o(aL,"createEmptyGraphData");function oL(n,e){let t=new Map,r=new Set,i=[];for(let s of n.nodes)t.set(s.id,s);for(let s of e.nodes)t.set(s.id,s);for(let s of n.edges){let a=`${s.source}->${s.target}:${s.type}`;r.has(a)||(r.add(a),i.push(s))}for(let s of e.edges){let a=`${s.source}->${s.target}:${s.type}`;r.has(a)||(r.add(a),i.push(s))}return{nodes:Array.from(t.values()),edges:i,lastUpdated:Date.now(),version:Math.max(n.version??0,e.version??0)+1}}o(oL,"mergeGraphData")});var t0=S(Ud=>{"use strict";Object.defineProperty(Ud,"__esModule",{value:!0});Ud.createEdgeId=cL;Ud.edgesEqual=lL;function cL(n,e,t,r){let i=r?`|${r}`:"";return`${n}->${e}:${t}${i}`}o(cL,"createEdgeId");function lL(n,e){return n.source===e.source&&n.target===e.target&&n.type===e.type&&n.predicate===e.predicate}o(lL,"edgesEqual")});var r0=S($t=>{"use strict";Object.defineProperty($t,"__esModule",{value:!0});$t.BUILT_IN_EDGE_STYLES=$t.BUILT_IN_NODE_STYLES=$t.DEFAULT_EDGE_STYLE=$t.DEFAULT_NODE_STYLE=$t.RDF_TYPE_PREDICATES=void 0;$t.mergeNodeStyles=uL;$t.mergeEdgeStyles=fL;$t.extractLocalName=dL;$t.isClassType=hL;$t.isTypePredicate=pL;$t.isSubClassPredicate=mL;$t.RDF_TYPE_PREDICATES={RDF_TYPE:"http://www.w3.org/1999/02/22-rdf-syntax-ns#type",RDFS_CLASS:"http://www.w3.org/2000/01/rdf-schema#Class",OWL_CLASS:"http://www.w3.org/2002/07/owl#Class",RDFS_SUBCLASS_OF:"http://www.w3.org/2000/01/rdf-schema#subClassOf",OWL_EQUIVALENT_CLASS:"http://www.w3.org/2002/07/owl#equivalentClass",RDFS_LABEL:"http://www.w3.org/2000/01/rdf-schema#label",RDFS_COMMENT:"http://www.w3.org/2000/01/rdf-schema#comment"};$t.DEFAULT_NODE_STYLE={color:"#6366f1",borderColor:"#4f46e5",borderWidth:2,size:30,shape:"circle",icon:"",opacity:1,shadow:!1,animation:"none"};$t.DEFAULT_EDGE_STYLE={color:"#9ca3af",width:1,lineStyle:"solid",arrow:"standard",curvature:0,opacity:.6,showLabel:!1,labelPosition:.5};$t.BUILT_IN_NODE_STYLES={"http://www.w3.org/2000/01/rdf-schema#Class":{color:"#f59e0b",shape:"diamond",size:40},"http://www.w3.org/2002/07/owl#Class":{color:"#f59e0b",shape:"diamond",size:40},ems__Task:{color:"#22c55e",shape:"circle"},ems__Project:{color:"#3b82f6",shape:"square"},ems__Area:{color:"#8b5cf6",shape:"hexagon",size:40},ems__Meeting:{color:"#ec4899",shape:"circle"},exo__Class:{color:"#f59e0b",shape:"diamond"},ims__Person:{color:"#06b6d4",shape:"circle"}};$t.BUILT_IN_EDGE_STYLES={"http://www.w3.org/1999/02/22-rdf-syntax-ns#type":{color:"#f59e0b",lineStyle:"dashed",arrow:"standard"},"http://www.w3.org/2000/01/rdf-schema#subClassOf":{color:"#8b5cf6",width:2,arrow:"triangle"},"https://exocortex.my/ontology/ems#Effort_parent":{color:"#6366f1",width:2,arrow:"standard"},"https://exocortex.my/ontology/exo#Asset_prototype":{color:"#f59e0b",lineStyle:"dashed",arrow:"circle"},"https://exocortex.my/ontology/exo#references":{color:"#22c55e",opacity:.4,arrow:"standard"}};function uL(n,e){return{...n,...Object.fromEntries(Object.entries(e).filter(([,t])=>t!==void 0))}}o(uL,"mergeNodeStyles");function fL(n,e){return{...n,...Object.fromEntries(Object.entries(e).filter(([,t])=>t!==void 0))}}o(fL,"mergeEdgeStyles");function dL(n){let e=n.lastIndexOf("#"),t=n.lastIndexOf("/"),r=Math.max(e,t);return r>=0?n.substring(r+1):n}o(dL,"extractLocalName");function hL(n){return n===$t.RDF_TYPE_PREDICATES.RDFS_CLASS||n===$t.RDF_TYPE_PREDICATES.OWL_CLASS}o(hL,"isClassType");function pL(n){return n===$t.RDF_TYPE_PREDICATES.RDF_TYPE}o(pL,"isTypePredicate");function mL(n){return n===$t.RDF_TYPE_PREDICATES.RDFS_SUBCLASS_OF}o(mL,"isSubClassPredicate")});var J2=S(X2=>{"use strict";Object.defineProperty(X2,"__esModule",{value:!0})});var Ae=S(Bd=>{"use strict";Object.defineProperty(Bd,"__esModule",{value:!0});Bd.IRI=void 0;var n0=class n{static{o(this,"IRI")}constructor(e){let t=e.trim();if(t.length===0)throw new Error("IRI cannot be empty");if(!n.isValidIRI(t))throw new Error("Invalid IRI format");this._value=t}get value(){return this._value}equals(e){return this._value===e._value}toString(){return this._value}static isValidIRI(e){if(!e||e.trim().length===0||/\s/.test(e)||!/^[a-z][a-z0-9+.-]*:/i.test(e))return!1;let r=["http","https","ftp","ftps","file","mailto","tel","data","ws","wss","urn","obsidian"],i=e.match(/^([a-z][a-z0-9+.-]*?):/i);if(i){let s=i[1].toLowerCase();if(!r.includes(s))return!1}try{return new URL(e),!0}catch{return/^urn:[a-z0-9][a-z0-9-]{0,31}:[^\s]+$/i.test(e)}}};Bd.IRI=n0});var De=S(yo=>{"use strict";Object.defineProperty(yo,"__esModule",{value:!0});yo.Literal=void 0;yo.parseLanguageTag=Z2;yo.createDirectionalLiteral=yL;yo.createLiteralFromLanguageTag=_L;var gL="http://www.w3.org/2001/XMLSchema#string",Tu=class{static{o(this,"Literal")}constructor(e,t,r,i){if(e.length===0)throw new Error("Literal value cannot be empty");if(t&&r)throw new Error("Literal cannot have both datatype and language tag");if(i&&!r)throw new Error("Literal cannot have direction without language tag");if(i&&i!=="ltr"&&i!=="rtl")throw new Error('Direction must be "ltr" or "rtl"');this._value=e,this._datatype=t,this._language=r?r.toLowerCase():void 0,this._direction=i}get value(){return this._value}get datatype(){return this._datatype}get language(){return this._language}get direction(){return this._direction}hasDirection(){return this._direction!==void 0}equals(e){if(this._value!==e._value||this._language!==e._language||this._direction!==e._direction)return!1;let t=this.normalizedDatatype(),r=e.normalizedDatatype();return t===r}normalizedDatatype(){return!this._datatype||this._datatype.value===gL?null:this._datatype.value}toString(){let e=`"${this._value}"`;return this._datatype?e+=`^^<${this._datatype.value}>`:this._language&&(e+=`@${this._language}`,this._direction&&(e+=`--${this._direction}`)),e}};yo.Literal=Tu;function Z2(n){let t=n.lastIndexOf("--");if(t===-1)return{language:n.toLowerCase()};let r=n.substring(t+2),i=n.substring(0,t);return r==="ltr"||r==="rtl"?{language:i.toLowerCase(),direction:r}:{language:n.toLowerCase()}}o(Z2,"parseLanguageTag");function yL(n,e,t){return new Tu(n,void 0,e,t)}o(yL,"createDirectionalLiteral");function _L(n,e){let{language:t,direction:r}=Z2(e);return new Tu(n,void 0,t,r)}o(_L,"createLiteralFromLanguageTag")});var Vt=S(Wd=>{"use strict";Object.defineProperty(Wd,"__esModule",{value:!0});Wd.BlankNode=void 0;var qd=class n{static{o(this,"BlankNode")}constructor(e){let t=e.trim();if(t.length===0)throw new Error("BlankNode id cannot be empty");this._id=t}get id(){return this._id}equals(e){return this._id===e._id}toString(){return`_:${this._id}`}static generateId(){return`b${++n.counter}`}static create(){return new n(n.generateId())}};Wd.BlankNode=qd;qd.counter=0});var or=S(Gd=>{"use strict";Object.defineProperty(Gd,"__esModule",{value:!0});Gd.Namespace=void 0;var eT=Ae(),ke=class n{static{o(this,"Namespace")}constructor(e,t){if(e.trim().length===0)throw new Error("Namespace prefix cannot be empty");this._prefix=e,this._iri=new eT.IRI(t)}get prefix(){return this._prefix}get iri(){return this._iri}term(e){return new eT.IRI(`${this._iri.value}${e}`)}expand(e){let t=e.split(":");if(t.length!==2)return null;let[r,i]=t;return r!==this._prefix?null:this.term(i)}static forPrefix(e){if(!/^[a-z][a-zA-Z0-9]*$/.test(e))return null;let t=n.KNOWN_NAMESPACES.find(r=>r.prefix===e);return t||new n(e,`${n.EXOCORTEX_ONTOLOGY_BASE}${e}#`)}static fromPropertyKey(e){let t=/^([a-z][a-zA-Z0-9]*)__(.+)$/.exec(e);if(!t)return null;let r=n.forPrefix(t[1]);return r?{namespace:r,localName:t[2]}:null}};Gd.Namespace=ke;ke.RDF=new ke("rdf","http://www.w3.org/1999/02/22-rdf-syntax-ns#");ke.RDFS=new ke("rdfs","http://www.w3.org/2000/01/rdf-schema#");ke.OWL=new ke("owl","http://www.w3.org/2002/07/owl#");ke.XSD=new ke("xsd","http://www.w3.org/2001/XMLSchema#");ke.EXO=new ke("exo","https://exocortex.my/ontology/exo#");ke.EMS=new ke("ems","https://exocortex.my/ontology/ems#");ke.EXOCMD=new ke("exocmd","https://exocortex.my/ontology/exocmd#");ke.IMS=new ke("ims","https://exocortex.my/ontology/ims#");ke.ZTLK=new ke("ztlk","https://exocortex.my/ontology/ztlk#");ke.PTMS=new ke("ptms","https://exocortex.my/ontology/ptms#");ke.LIT=new ke("lit","https://exocortex.my/ontology/lit#");ke.INBOX=new ke("inbox","https://exocortex.my/ontology/inbox#");ke.PMBOK=new ke("pmbok","https://exocortex.my/ontology/pmbok#");ke.EXOCORTEX_ONTOLOGY_BASE="https://exocortex.my/ontology/";ke.KNOWN_NAMESPACES=[ke.EXO,ke.EMS,ke.EXOCMD,ke.IMS,ke.ZTLK,ke.PTMS,ke.LIT,ke.INBOX,ke.PMBOK]});var Kn=S(zd=>{"use strict";Object.defineProperty(zd,"__esModule",{value:!0});zd.Triple=void 0;var i0=Ae(),s0=De(),a0=Vt(),o0=class{static{o(this,"Triple")}constructor(e,t,r){this._subject=e,this._predicate=t,this._object=r}get subject(){return this._subject}get predicate(){return this._predicate}get object(){return this._object}equals(e){return!(!this.equalsNode(this._subject,e._subject)||!this._predicate.equals(e._predicate)||!this.equalsNode(this._object,e._object))}equalsNode(e,t){return e instanceof i0.IRI&&t instanceof i0.IRI||e instanceof a0.BlankNode&&t instanceof a0.BlankNode||e instanceof s0.Literal&&t instanceof s0.Literal||this.isQuotedTriple(e)&&this.isQuotedTriple(t)?e.equals(t):!1}isQuotedTriple(e){return typeof e=="object"&&e!==null&&"termType"in e&&e.termType==="QuotedTriple"}toString(){let e=this.nodeToString(this._subject),t=`<${this._predicate.value}>`,r=this.nodeToString(this._object);return`${e} ${t} ${r} .`}nodeToString(e){return e instanceof i0.IRI?`<${e.value}>`:e instanceof a0.BlankNode||e instanceof s0.Literal||this.isQuotedTriple(e)?e.toString():""}};zd.Triple=o0});var Au=S(Hd=>{"use strict";Object.defineProperty(Hd,"__esModule",{value:!0});Hd.QuotedTriple=void 0;var c0=Ae(),l0=De(),u0=Vt(),f0=class n{static{o(this,"QuotedTriple")}constructor(e,t,r){this._subject=e,this._predicate=t,this._object=r}get subject(){return this._subject}get predicate(){return this._predicate}get object(){return this._object}equals(e){return!(!this.equalsNode(this._subject,e._subject)||!this._predicate.equals(e._predicate)||!this.equalsNode(this._object,e._object))}equalsNode(e,t){return e instanceof c0.IRI&&t instanceof c0.IRI||e instanceof u0.BlankNode&&t instanceof u0.BlankNode||e instanceof l0.Literal&&t instanceof l0.Literal||e instanceof n&&t instanceof n?e.equals(t):!1}get termType(){return"QuotedTriple"}toString(){let e=this.nodeToString(this._subject),t=`<${this._predicate.value}>`,r=this.nodeToString(this._object);return`<< ${e} ${t} ${r} >>`}nodeToString(e){return e instanceof c0.IRI?`<${e.value}>`:e instanceof u0.BlankNode||e instanceof l0.Literal||e instanceof n?e.toString():""}};Hd.QuotedTriple=f0});var tT=S(Jt=>{"use strict";Object.defineProperty(Jt,"__esModule",{value:!0});Jt.QuotedTriple=Jt.Triple=Jt.Namespace=Jt.BlankNode=Jt.createLiteralFromLanguageTag=Jt.createDirectionalLiteral=Jt.parseLanguageTag=Jt.Literal=Jt.IRI=void 0;var SL=Ae();Object.defineProperty(Jt,"IRI",{enumerable:!0,get:o(function(){return SL.IRI},"get")});var Qd=De();Object.defineProperty(Jt,"Literal",{enumerable:!0,get:o(function(){return Qd.Literal},"get")});Object.defineProperty(Jt,"parseLanguageTag",{enumerable:!0,get:o(function(){return Qd.parseLanguageTag},"get")});Object.defineProperty(Jt,"createDirectionalLiteral",{enumerable:!0,get:o(function(){return Qd.createDirectionalLiteral},"get")});Object.defineProperty(Jt,"createLiteralFromLanguageTag",{enumerable:!0,get:o(function(){return Qd.createLiteralFromLanguageTag},"get")});var bL=Vt();Object.defineProperty(Jt,"BlankNode",{enumerable:!0,get:o(function(){return bL.BlankNode},"get")});var vL=or();Object.defineProperty(Jt,"Namespace",{enumerable:!0,get:o(function(){return vL.Namespace},"get")});var wL=Kn();Object.defineProperty(Jt,"Triple",{enumerable:!0,get:o(function(){return wL.Triple},"get")});var EL=Au();Object.defineProperty(Jt,"QuotedTriple",{enumerable:!0,get:o(function(){return EL.QuotedTriple},"get")})});var Kd=S(Xn=>{"use strict";Object.defineProperty(Xn,"__esModule",{value:!0});Xn.UUID_URL_NAMESPACE=Xn.DEFAULT_LANGUAGE_TAG=Xn.REQUIRED_PROPERTIES=Xn.ALLOWED_PROPERTIES=Xn.Exo003MetadataType=void 0;var Yn;(function(n){n.Namespace="namespace",n.Anchor="anchor",n.BlankNode="blank_node",n.Statement="statement",n.Body="body"})(Yn||(Xn.Exo003MetadataType=Yn={}));Xn.ALLOWED_PROPERTIES={[Yn.Namespace]:["metadata","uri","aliases"],[Yn.Anchor]:["metadata","uri","aliases"],[Yn.BlankNode]:["metadata","uri","aliases"],[Yn.Statement]:["metadata","subject","predicate","object","aliases"],[Yn.Body]:["metadata","subject","predicate","aliases"]};Xn.REQUIRED_PROPERTIES={[Yn.Namespace]:["metadata","uri"],[Yn.Anchor]:["metadata","uri"],[Yn.BlankNode]:["metadata","uri"],[Yn.Statement]:["metadata","subject","predicate","object"],[Yn.Body]:["metadata","subject","predicate"]};Xn.DEFAULT_LANGUAGE_TAG="ru";Xn.UUID_URL_NAMESPACE="6ba7b811-9dad-11d1-80b4-00c04fd430c8"});var rT=S(d0=>{"use strict";Object.defineProperty(d0,"__esModule",{value:!0});d0.default="ffffffff-ffff-ffff-ffff-ffffffffffff"});var nT=S(h0=>{"use strict";Object.defineProperty(h0,"__esModule",{value:!0});h0.default="00000000-0000-0000-0000-000000000000"});var iT=S(p0=>{"use strict";Object.defineProperty(p0,"__esModule",{value:!0});p0.default=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/i});var xu=S(m0=>{"use strict";Object.defineProperty(m0,"__esModule",{value:!0});var TL=iT();function AL(n){return typeof n=="string"&&TL.default.test(n)}o(AL,"validate");m0.default=AL});var Iu=S(g0=>{"use strict";Object.defineProperty(g0,"__esModule",{value:!0});var xL=xu();function IL(n){if(!(0,xL.default)(n))throw TypeError("Invalid UUID");let e;return Uint8Array.of((e=parseInt(n.slice(0,8),16))>>>24,e>>>16&255,e>>>8&255,e&255,(e=parseInt(n.slice(9,13),16))>>>8,e&255,(e=parseInt(n.slice(14,18),16))>>>8,e&255,(e=parseInt(n.slice(19,23),16))>>>8,e&255,(e=parseInt(n.slice(24,36),16))/1099511627776&255,e/4294967296&255,e>>>24&255,e>>>16&255,e>>>8&255,e&255)}o(IL,"parse");g0.default=IL});var Us=S(Cu=>{"use strict";Object.defineProperty(Cu,"__esModule",{value:!0});Cu.unsafeStringify=void 0;var CL=xu(),Pr=[];for(let n=0;n<256;++n)Pr.push((n+256).toString(16).slice(1));function sT(n,e=0){return(Pr[n[e+0]]+Pr[n[e+1]]+Pr[n[e+2]]+Pr[n[e+3]]+"-"+Pr[n[e+4]]+Pr[n[e+5]]+"-"+Pr[n[e+6]]+Pr[n[e+7]]+"-"+Pr[n[e+8]]+Pr[n[e+9]]+"-"+Pr[n[e+10]]+Pr[n[e+11]]+Pr[n[e+12]]+Pr[n[e+13]]+Pr[n[e+14]]+Pr[n[e+15]]).toLowerCase()}o(sT,"unsafeStringify");Cu.unsafeStringify=sT;function RL(n,e=0){let t=sT(n,e);if(!(0,CL.default)(t))throw TypeError("Stringified UUID is invalid");return t}o(RL,"stringify");Cu.default=RL});var Jd=S(y0=>{"use strict";Object.defineProperty(y0,"__esModule",{value:!0});var OL=require("crypto"),Xd=new Uint8Array(256),Yd=Xd.length;function PL(){return Yd>Xd.length-16&&((0,OL.randomFillSync)(Xd),Yd=0),Xd.slice(Yd,Yd+=16)}o(PL,"rng");y0.default=PL});var _0=S(Ou=>{"use strict";Object.defineProperty(Ou,"__esModule",{value:!0});Ou.updateV1State=void 0;var aT=Jd(),FL=Us(),Ru={};function DL(n,e,t){let r,i=n?._v6??!1;if(n){let s=Object.keys(n);s.length===1&&s[0]==="_v6"&&(n=void 0)}if(n)r=oT(n.random??n.rng?.()??(0,aT.default)(),n.msecs,n.nsecs,n.clockseq,n.node,e,t);else{let s=Date.now(),a=(0,aT.default)();cT(Ru,s,a),r=oT(a,Ru.msecs,Ru.nsecs,i?void 0:Ru.clockseq,i?void 0:Ru.node,e,t)}return e??(0,FL.unsafeStringify)(r)}o(DL,"v1");function cT(n,e,t){return n.msecs??=-1/0,n.nsecs??=0,e===n.msecs?(n.nsecs++,n.nsecs>=1e4&&(n.node=void 0,n.nsecs=0)):e>n.msecs?n.nsecs=0:e<n.msecs&&(n.node=void 0),n.node||(n.node=t.slice(10,16),n.node[0]|=1,n.clockseq=(t[8]<<8|t[9])&16383),n.msecs=e,n}o(cT,"updateV1State");Ou.updateV1State=cT;function oT(n,e,t,r,i,s,a=0){if(n.length<16)throw new Error("Random bytes length must be >= 16");if(!s)s=new Uint8Array(16),a=0;else if(a<0||a+16>s.length)throw new RangeError(`UUID byte range ${a}:${a+15} is out of buffer bounds`);e??=Date.now(),t??=0,r??=(n[8]<<8|n[9])&16383,i??=n.slice(10,16),e+=122192928e5;let c=((e&268435455)*1e4+t)%4294967296;s[a++]=c>>>24&255,s[a++]=c>>>16&255,s[a++]=c>>>8&255,s[a++]=c&255;let l=e/4294967296*1e4&268435455;s[a++]=l>>>8&255,s[a++]=l&255,s[a++]=l>>>24&15|16,s[a++]=l>>>16&255,s[a++]=r>>>8|128,s[a++]=r&255;for(let u=0;u<6;++u)s[a++]=i[u];return s}o(oT,"v1Bytes");Ou.default=DL});var b0=S(S0=>{"use strict";Object.defineProperty(S0,"__esModule",{value:!0});var NL=Iu(),LL=Us();function kL(n){let e=typeof n=="string"?(0,NL.default)(n):n,t=ML(e);return typeof n=="string"?(0,LL.unsafeStringify)(t):t}o(kL,"v1ToV6");S0.default=kL;function ML(n){return Uint8Array.of((n[6]&15)<<4|n[7]>>4&15,(n[7]&15)<<4|(n[4]&240)>>4,(n[4]&15)<<4|(n[5]&240)>>4,(n[5]&15)<<4|(n[0]&240)>>4,(n[0]&15)<<4|(n[1]&240)>>4,(n[1]&15)<<4|(n[2]&240)>>4,96|n[2]&15,n[3],n[8],n[9],n[10],n[11],n[12],n[13],n[14],n[15])}o(ML,"_v1ToV6")});var lT=S(v0=>{"use strict";Object.defineProperty(v0,"__esModule",{value:!0});var jL=require("crypto");function $L(n){return Array.isArray(n)?n=Buffer.from(n):typeof n=="string"&&(n=Buffer.from(n,"utf8")),(0,jL.createHash)("md5").update(n).digest()}o($L,"md5");v0.default=$L});var Pu=S(Bs=>{"use strict";Object.defineProperty(Bs,"__esModule",{value:!0});Bs.URL=Bs.DNS=Bs.stringToBytes=void 0;var uT=Iu(),VL=Us();function fT(n){n=unescape(encodeURIComponent(n));let e=new Uint8Array(n.length);for(let t=0;t<n.length;++t)e[t]=n.charCodeAt(t);return e}o(fT,"stringToBytes");Bs.stringToBytes=fT;Bs.DNS="6ba7b810-9dad-11d1-80b4-00c04fd430c8";Bs.URL="6ba7b811-9dad-11d1-80b4-00c04fd430c8";function UL(n,e,t,r,i,s){let a=typeof t=="string"?fT(t):t,c=typeof r=="string"?(0,uT.default)(r):r;if(typeof r=="string"&&(r=(0,uT.default)(r)),r?.length!==16)throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");let l=new Uint8Array(16+a.length);if(l.set(c),l.set(a,c.length),l=e(l),l[6]=l[6]&15|n,l[8]=l[8]&63|128,i){s=s||0;for(let u=0;u<16;++u)i[s+u]=l[u];return i}return(0,VL.unsafeStringify)(l)}o(UL,"v35");Bs.default=UL});var hT=S(_o=>{"use strict";Object.defineProperty(_o,"__esModule",{value:!0});_o.URL=_o.DNS=void 0;var BL=lT(),w0=Pu(),dT=Pu();Object.defineProperty(_o,"DNS",{enumerable:!0,get:o(function(){return dT.DNS},"get")});Object.defineProperty(_o,"URL",{enumerable:!0,get:o(function(){return dT.URL},"get")});function E0(n,e,t,r){return(0,w0.default)(48,BL.default,n,e,t,r)}o(E0,"v3");E0.DNS=w0.DNS;E0.URL=w0.URL;_o.default=E0});var pT=S(T0=>{"use strict";Object.defineProperty(T0,"__esModule",{value:!0});var qL=require("crypto");T0.default={randomUUID:qL.randomUUID}});var gT=S(A0=>{"use strict";Object.defineProperty(A0,"__esModule",{value:!0});var mT=pT(),WL=Jd(),GL=Us();function zL(n,e,t){if(mT.default.randomUUID&&!e&&!n)return mT.default.randomUUID();n=n||{};let r=n.random??n.rng?.()??(0,WL.default)();if(r.length<16)throw new Error("Random bytes length must be >= 16");if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,e){if(t=t||0,t<0||t+16>e.length)throw new RangeError(`UUID byte range ${t}:${t+15} is out of buffer bounds`);for(let i=0;i<16;++i)e[t+i]=r[i];return e}return(0,GL.unsafeStringify)(r)}o(zL,"v4");A0.default=zL});var yT=S(x0=>{"use strict";Object.defineProperty(x0,"__esModule",{value:!0});var HL=require("crypto");function QL(n){return Array.isArray(n)?n=Buffer.from(n):typeof n=="string"&&(n=Buffer.from(n,"utf8")),(0,HL.createHash)("sha1").update(n).digest()}o(QL,"sha1");x0.default=QL});var ST=S(So=>{"use strict";Object.defineProperty(So,"__esModule",{value:!0});So.URL=So.DNS=void 0;var KL=yT(),I0=Pu(),_T=Pu();Object.defineProperty(So,"DNS",{enumerable:!0,get:o(function(){return _T.DNS},"get")});Object.defineProperty(So,"URL",{enumerable:!0,get:o(function(){return _T.URL},"get")});function C0(n,e,t,r){return(0,I0.default)(80,KL.default,n,e,t,r)}o(C0,"v5");C0.DNS=I0.DNS;C0.URL=I0.URL;So.default=C0});var bT=S(R0=>{"use strict";Object.defineProperty(R0,"__esModule",{value:!0});var YL=Us(),XL=_0(),JL=b0();function ZL(n,e,t){n??={},t??=0;let r=(0,XL.default)({...n,_v6:!0},new Uint8Array(16));if(r=(0,JL.default)(r),e){for(let i=0;i<16;i++)e[t+i]=r[i];return e}return(0,YL.unsafeStringify)(r)}o(ZL,"v6");R0.default=ZL});var vT=S(O0=>{"use strict";Object.defineProperty(O0,"__esModule",{value:!0});var ek=Iu(),tk=Us();function rk(n){let e=typeof n=="string"?(0,ek.default)(n):n,t=nk(e);return typeof n=="string"?(0,tk.unsafeStringify)(t):t}o(rk,"v6ToV1");O0.default=rk;function nk(n){return Uint8Array.of((n[3]&15)<<4|n[4]>>4&15,(n[4]&15)<<4|(n[5]&240)>>4,(n[5]&15)<<4|n[6]&15,n[7],(n[1]&15)<<4|(n[2]&240)>>4,(n[2]&15)<<4|(n[3]&240)>>4,16|(n[0]&240)>>4,(n[0]&15)<<4|(n[1]&240)>>4,n[8],n[9],n[10],n[11],n[12],n[13],n[14],n[15])}o(nk,"_v6ToV1")});var AT=S(Fu=>{"use strict";Object.defineProperty(Fu,"__esModule",{value:!0});Fu.updateV7State=void 0;var wT=Jd(),ik=Us(),P0={};function sk(n,e,t){let r;if(n)r=ET(n.random??n.rng?.()??(0,wT.default)(),n.msecs,n.seq,e,t);else{let i=Date.now(),s=(0,wT.default)();TT(P0,i,s),r=ET(s,P0.msecs,P0.seq,e,t)}return e??(0,ik.unsafeStringify)(r)}o(sk,"v7");function TT(n,e,t){return n.msecs??=-1/0,n.seq??=0,e>n.msecs?(n.seq=t[6]<<23|t[7]<<16|t[8]<<8|t[9],n.msecs=e):(n.seq=n.seq+1|0,n.seq===0&&n.msecs++),n}o(TT,"updateV7State");Fu.updateV7State=TT;function ET(n,e,t,r,i=0){if(n.length<16)throw new Error("Random bytes length must be >= 16");if(!r)r=new Uint8Array(16),i=0;else if(i<0||i+16>r.length)throw new RangeError(`UUID byte range ${i}:${i+15} is out of buffer bounds`);return e??=Date.now(),t??=n[6]*127<<24|n[7]<<16|n[8]<<8|n[9],r[i++]=e/1099511627776&255,r[i++]=e/4294967296&255,r[i++]=e/16777216&255,r[i++]=e/65536&255,r[i++]=e/256&255,r[i++]=e&255,r[i++]=112|t>>>28&15,r[i++]=t>>>20&255,r[i++]=128|t>>>14&63,r[i++]=t>>>6&255,r[i++]=t<<2&255|n[10]&3,r[i++]=n[11],r[i++]=n[12],r[i++]=n[13],r[i++]=n[14],r[i++]=n[15],r}o(ET,"v7Bytes");Fu.default=sk});var xT=S(F0=>{"use strict";Object.defineProperty(F0,"__esModule",{value:!0});var ak=xu();function ok(n){if(!(0,ak.default)(n))throw TypeError("Invalid UUID");return parseInt(n.slice(14,15),16)}o(ok,"version");F0.default=ok});var En=S(ct=>{"use strict";Object.defineProperty(ct,"__esModule",{value:!0});ct.version=ct.validate=ct.v7=ct.v6ToV1=ct.v6=ct.v5=ct.v4=ct.v3=ct.v1ToV6=ct.v1=ct.stringify=ct.parse=ct.NIL=ct.MAX=void 0;var ck=rT();Object.defineProperty(ct,"MAX",{enumerable:!0,get:o(function(){return ck.default},"get")});var lk=nT();Object.defineProperty(ct,"NIL",{enumerable:!0,get:o(function(){return lk.default},"get")});var uk=Iu();Object.defineProperty(ct,"parse",{enumerable:!0,get:o(function(){return uk.default},"get")});var fk=Us();Object.defineProperty(ct,"stringify",{enumerable:!0,get:o(function(){return fk.default},"get")});var dk=_0();Object.defineProperty(ct,"v1",{enumerable:!0,get:o(function(){return dk.default},"get")});var hk=b0();Object.defineProperty(ct,"v1ToV6",{enumerable:!0,get:o(function(){return hk.default},"get")});var pk=hT();Object.defineProperty(ct,"v3",{enumerable:!0,get:o(function(){return pk.default},"get")});var mk=gT();Object.defineProperty(ct,"v4",{enumerable:!0,get:o(function(){return mk.default},"get")});var gk=ST();Object.defineProperty(ct,"v5",{enumerable:!0,get:o(function(){return gk.default},"get")});var yk=bT();Object.defineProperty(ct,"v6",{enumerable:!0,get:o(function(){return yk.default},"get")});var _k=vT();Object.defineProperty(ct,"v6ToV1",{enumerable:!0,get:o(function(){return _k.default},"get")});var Sk=AT();Object.defineProperty(ct,"v7",{enumerable:!0,get:o(function(){return Sk.default},"get")});var bk=xu();Object.defineProperty(ct,"validate",{enumerable:!0,get:o(function(){return bk.default},"get")});var vk=xT();Object.defineProperty(ct,"version",{enumerable:!0,get:o(function(){return vk.default},"get")})});var L0=S(Zd=>{"use strict";Object.defineProperty(Zd,"__esModule",{value:!0});Zd.Exo003UUIDGenerator=void 0;var D0=En(),IT=Kd(),N0=class{static{o(this,"Exo003UUIDGenerator")}static generateNamespaceUUID(e){if(!e||e.trim().length===0)throw new Error("Namespace URI cannot be empty");return(0,D0.v5)(e,IT.UUID_URL_NAMESPACE)}static generateAssetUUID(e,t){if(!t||t.trim().length===0)throw new Error("Local identifier cannot be empty");let r=this.generateNamespaceUUID(e);return(0,D0.v5)(t,r)}static generateFromIRI(e){if(!e||e.trim().length===0)throw new Error("IRI cannot be empty");let{namespace:t,localName:r}=this.splitIRI(e);return r?this.generateAssetUUID(t,r):(0,D0.v5)(e,IT.UUID_URL_NAMESPACE)}static generateBlankNodeUUID(e,t){if(!e||e.trim().length===0)throw new Error("Blank node ID cannot be empty");let r="urn:exocortex:blank-node:",i=t?`${t}#${e}`:e;return this.generateAssetUUID(r,i)}static generateStatementUUID(e,t,r){if(!e||!t||!r)throw new Error("Subject, predicate, and object cannot be empty");let i="urn:exocortex:statement:",s=`${e} ${t} ${r}`;return this.generateAssetUUID(i,s)}static generateBodyUUID(e,t){let r="urn:exocortex:body:",i=e;return t?.datatype?i+=`^^${t.datatype}`:t?.language&&(i+=`@${t.language}`,t.direction&&(i+=`--${t.direction}`)),this.generateAssetUUID(r,i)}static splitIRI(e){let t=e.lastIndexOf("#");if(t!==-1&&t<e.length-1)return{namespace:e.substring(0,t+1),localName:e.substring(t+1)};let r=e.lastIndexOf("/"),i=e.indexOf("://");return r!==-1&&r>i+2&&r<e.length-1?{namespace:e.substring(0,r+1),localName:e.substring(r+1)}:{namespace:e,localName:""}}static isValidUUID(e){return/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(e)}};Zd.Exo003UUIDGenerator=N0});var RT=S(th=>{"use strict";Object.defineProperty(th,"__esModule",{value:!0});th.Exo003Parser=void 0;var mt=Kd(),Du=L0(),wa=Ae(),eh=De(),CT=Vt(),wk=Kn(),k0=class{static{o(this,"Exo003Parser")}static parse(e,t){let r=this.validate(e);if(!r.valid)return{success:!1,errors:r.errors};let i=e.metadata;try{return{success:!0,metadata:this.parseByType(e,i),bodyContent:i===mt.Exo003MetadataType.Body?t:void 0}}catch(s){return{success:!1,errors:[s instanceof Error?s.message:String(s)]}}}static validate(e){let t=[],r=[];if(!e.metadata)return t.push("Missing required property: metadata"),{valid:!1,errors:t,warnings:r};let i=e.metadata;if(!Object.values(mt.Exo003MetadataType).includes(i))return t.push(`Invalid metadata: ${i}. Valid types: ${Object.values(mt.Exo003MetadataType).join(", ")}`),{valid:!1,errors:t,warnings:r};let s=i,a=mt.ALLOWED_PROPERTIES[s],c=mt.REQUIRED_PROPERTIES[s];for(let l of c)(e[l]===void 0||e[l]===null)&&t.push(`Missing required property: ${l}`);for(let l of Object.keys(e))a.includes(l)||t.push(`Forbidden property for ${s}: ${l}`);switch(s){case mt.Exo003MetadataType.Namespace:this.validateNamespaceMetadata(e,t);break;case mt.Exo003MetadataType.Anchor:this.validateAnchorMetadata(e,t);break;case mt.Exo003MetadataType.BlankNode:this.validateBlankNodeMetadata(e,t);break;case mt.Exo003MetadataType.Statement:this.validateStatementMetadata(e,t);break;case mt.Exo003MetadataType.Body:this.validateBodyMetadata(e,t,r);break}return{valid:t.length===0,errors:t,warnings:r}}static parseByType(e,t){let r={metadata:t,aliases:e.aliases};switch(t){case mt.Exo003MetadataType.Namespace:return{...r,metadata:mt.Exo003MetadataType.Namespace,uri:e.uri};case mt.Exo003MetadataType.Anchor:return{...r,metadata:mt.Exo003MetadataType.Anchor,uri:e.uri};case mt.Exo003MetadataType.BlankNode:return{...r,metadata:mt.Exo003MetadataType.BlankNode,uri:e.uri};case mt.Exo003MetadataType.Statement:return{...r,metadata:mt.Exo003MetadataType.Statement,subject:e.subject,predicate:e.predicate,object:e.object};case mt.Exo003MetadataType.Body:return{...r,metadata:mt.Exo003MetadataType.Body,subject:e.subject,predicate:e.predicate}}}static validateNamespaceMetadata(e,t){let r=e.uri;if(r&&typeof r!="string")t.push("uri must be a string");else if(r)try{new wa.IRI(r)}catch{t.push(`uri is not a valid IRI: ${String(r)}`)}}static validateAnchorMetadata(e,t){let r=e.uri;if(r&&typeof r!="string")t.push("uri must be a string");else if(r)try{new wa.IRI(r)}catch{t.push(`uri is not a valid IRI: ${String(r)}`)}}static validateBlankNodeMetadata(e,t){let r=e.uri;if(r&&typeof r!="string")t.push("uri must be a string");else if(r){let i=r;if(!i.startsWith("_:"))try{new wa.IRI(i)}catch{t.push(`uri is not a valid IRI or blank node identifier: ${String(r)}`)}}}static validateStatementMetadata(e,t){let r=e.subject,i=e.predicate,s=e.object,a=[["subject",r],["predicate",i],["object",s]];for(let[c,l]of a)l&&typeof l!="string"&&t.push(`${c} must be a string`)}static validateBodyMetadata(e,t,r){let i=e.subject,s=e.predicate;i&&typeof i!="string"&&t.push("subject must be a string"),s&&typeof s!="string"&&t.push("predicate must be a string")}static toTriple(e,t,r){let i=t(e.subject),s;if(i.type==="iri")s=new wa.IRI(i.value);else if(i.type==="blank")s=new CT.BlankNode(i.value);else throw new Error("Statement subject cannot be a literal");let a=t(e.predicate);if(a.type!=="iri")throw new Error("Statement predicate must be an IRI");let c=new wa.IRI(a.value),l=t(e.object),u;if(l.type==="iri")u=new wa.IRI(l.value);else if(l.type==="blank")u=new CT.BlankNode(l.value);else{let f=r||l.value;if(l.datatype)u=new eh.Literal(f,new wa.IRI(l.datatype));else{let d=l.language||mt.DEFAULT_LANGUAGE_TAG;u=(0,eh.createDirectionalLiteral)(f,d,l.direction)}}return new wk.Triple(s,c,u)}static toLiteral(e,t,r){if(r?.datatype)return new eh.Literal(t,new wa.IRI(r.datatype));let i=r?.language||mt.DEFAULT_LANGUAGE_TAG;return(0,eh.createDirectionalLiteral)(t,i,r?.direction)}static isExo003Format(e){let t=e.metadata;return typeof t=="string"&&Object.values(mt.Exo003MetadataType).includes(t)}static generateUUID(e,t){switch(e.metadata){case mt.Exo003MetadataType.Namespace:return Du.Exo003UUIDGenerator.generateNamespaceUUID(e.uri);case mt.Exo003MetadataType.Anchor:return Du.Exo003UUIDGenerator.generateNamespaceUUID(e.uri);case mt.Exo003MetadataType.BlankNode:return Du.Exo003UUIDGenerator.generateNamespaceUUID(e.uri);case mt.Exo003MetadataType.Statement:{let r=e;return Du.Exo003UUIDGenerator.generateStatementUUID(r.subject,r.predicate,r.object)}case mt.Exo003MetadataType.Body:{let r=e;return Du.Exo003UUIDGenerator.generateBodyUUID(r.subject+"|"+r.predicate)}}}};th.Exo003Parser=k0});var M0=S(Vr=>{"use strict";Object.defineProperty(Vr,"__esModule",{value:!0});Vr.Exo003Parser=Vr.Exo003UUIDGenerator=Vr.UUID_URL_NAMESPACE=Vr.DEFAULT_LANGUAGE_TAG=Vr.REQUIRED_PROPERTIES=Vr.ALLOWED_PROPERTIES=Vr.Exo003MetadataType=void 0;var Nu=Kd();Object.defineProperty(Vr,"Exo003MetadataType",{enumerable:!0,get:o(function(){return Nu.Exo003MetadataType},"get")});Object.defineProperty(Vr,"ALLOWED_PROPERTIES",{enumerable:!0,get:o(function(){return Nu.ALLOWED_PROPERTIES},"get")});Object.defineProperty(Vr,"REQUIRED_PROPERTIES",{enumerable:!0,get:o(function(){return Nu.REQUIRED_PROPERTIES},"get")});Object.defineProperty(Vr,"DEFAULT_LANGUAGE_TAG",{enumerable:!0,get:o(function(){return Nu.DEFAULT_LANGUAGE_TAG},"get")});Object.defineProperty(Vr,"UUID_URL_NAMESPACE",{enumerable:!0,get:o(function(){return Nu.UUID_URL_NAMESPACE},"get")});var Ek=L0();Object.defineProperty(Vr,"Exo003UUIDGenerator",{enumerable:!0,get:o(function(){return Ek.Exo003UUIDGenerator},"get")});var Tk=RT();Object.defineProperty(Vr,"Exo003Parser",{enumerable:!0,get:o(function(){return Tk.Exo003Parser},"get")})});var qs=S(rh=>{"use strict";Object.defineProperty(rh,"__esModule",{value:!0});rh.WikiLinkHelpers=void 0;var Lu=class{static{o(this,"WikiLinkHelpers")}static normalize(e){if(!e)return"";let t=e.replace(this.WIKI_LINK_PATTERN,"").trim();if(!t)return"";let r=t.indexOf("|");if(r===-1)return t;let i=t.substring(0,r).trim(),s=t.substring(r+1).trim();return this.UUID_PATTERN.test(i)&&s||i}static normalizeArray(e){return e?(Array.isArray(e)?e:[e]).map(r=>this.normalize(r)).filter(r=>r.length>0):[]}static equals(e,t){return this.normalize(e)===this.normalize(t)}static includes(e,t){let r=this.normalizeArray(e),i=this.normalize(t);return r.includes(i)}};rh.WikiLinkHelpers=Lu;Lu.WIKI_LINK_PATTERN=/\[\[|\]\]/g;Lu.UUID_PATTERN=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i});var kn=S(tt=>{"use strict";Object.defineProperty(tt,"__esModule",{value:!0});tt.CommandBindingProperty=tt.GroundingProperty=tt.PreconditionProperty=tt.CommandProperty=tt.GroundingType=tt.getEffortStatusLabel=tt.isTrashedStatus=tt.isDoneStatus=tt.normalizeEffortStatus=tt.EFFORT_STATUS_OPTIONS=tt.STATUS_NAME_TO_WIKILINK=tt.STATUS_NAME_TO_ENUM=tt.EFFORT_STATUS_CONFIG=tt.EffortStatus=tt.AssetClass=void 0;var Ak=Eu();Object.defineProperty(tt,"AssetClass",{enumerable:!0,get:o(function(){return Ak.AssetClass},"get")});var xk=yc();Object.defineProperty(tt,"EffortStatus",{enumerable:!0,get:o(function(){return xk.EffortStatus},"get")});var Ea=Jy();Object.defineProperty(tt,"EFFORT_STATUS_CONFIG",{enumerable:!0,get:o(function(){return Ea.EFFORT_STATUS_CONFIG},"get")});Object.defineProperty(tt,"STATUS_NAME_TO_ENUM",{enumerable:!0,get:o(function(){return Ea.STATUS_NAME_TO_ENUM},"get")});Object.defineProperty(tt,"STATUS_NAME_TO_WIKILINK",{enumerable:!0,get:o(function(){return Ea.STATUS_NAME_TO_WIKILINK},"get")});Object.defineProperty(tt,"EFFORT_STATUS_OPTIONS",{enumerable:!0,get:o(function(){return Ea.EFFORT_STATUS_OPTIONS},"get")});Object.defineProperty(tt,"normalizeEffortStatus",{enumerable:!0,get:o(function(){return Ea.normalizeEffortStatus},"get")});Object.defineProperty(tt,"isDoneStatus",{enumerable:!0,get:o(function(){return Ea.isDoneStatus},"get")});Object.defineProperty(tt,"isTrashedStatus",{enumerable:!0,get:o(function(){return Ea.isTrashedStatus},"get")});Object.defineProperty(tt,"getEffortStatusLabel",{enumerable:!0,get:o(function(){return Ea.getEffortStatusLabel},"get")});var Ik=_c();Object.defineProperty(tt,"GroundingType",{enumerable:!0,get:o(function(){return Ik.GroundingType},"get")});var nh=Zy();Object.defineProperty(tt,"CommandProperty",{enumerable:!0,get:o(function(){return nh.CommandProperty},"get")});Object.defineProperty(tt,"PreconditionProperty",{enumerable:!0,get:o(function(){return nh.PreconditionProperty},"get")});Object.defineProperty(tt,"GroundingProperty",{enumerable:!0,get:o(function(){return nh.GroundingProperty},"get")});Object.defineProperty(tt,"CommandBindingProperty",{enumerable:!0,get:o(function(){return nh.CommandBindingProperty},"get")})});var wo=S(Ur=>{"use strict";Object.defineProperty(Ur,"__esModule",{value:!0});Ur.hasClass=vo;Ur.isAreaOrProject=Ck;Ur.isEffort=Rk;Ur.hasStatus=Ok;Ur.isAssetArchived=Pk;Ur.hasEmptyProperties=Fk;Ur.needsFolderRepair=Dk;Ur.getTodayDateString=j0;Ur.isPlannedForToday=Nk;Ur.hasPlannedStartTimestamp=Lk;Ur.extractDailyNoteDate=kk;Ur.isCurrentDateGteDay=Mk;Ur.inheritsFromPrototype=FT;Ur.isPrototypeClass=$k;var PT=qs(),bo=kn();function vo(n,e){return n?(Array.isArray(n)?n:[n]).some(r=>PT.WikiLinkHelpers.normalize(r)===e):!1}o(vo,"hasClass");function Ck(n){return vo(n,bo.AssetClass.AREA)||vo(n,bo.AssetClass.PROJECT)}o(Ck,"isAreaOrProject");function Rk(n){return vo(n,bo.AssetClass.TASK)||vo(n,bo.AssetClass.PROJECT)||vo(n,bo.AssetClass.MEETING)}o(Rk,"isEffort");function Ok(n,e){if(!n)return!1;let t=Array.isArray(n)?n[0]:n;return t?PT.WikiLinkHelpers.normalize(t)===e:!1}o(Ok,"hasStatus");function Pk(n){if(n===!0||n===1)return!0;if(typeof n=="string"){let e=n.toLowerCase();return e==="true"||e==="yes"}return!1}o(Pk,"isAssetArchived");function Fk(n){return!n||Object.keys(n).length===0?!1:Object.values(n).some(e=>!!(e==null||typeof e=="string"&&e.trim()===""||Array.isArray(e)&&e.length===0||typeof e=="object"&&!Array.isArray(e)&&Object.keys(e).length===0))}o(Fk,"hasEmptyProperties");function Dk(n,e){if(!e)return!1;let t=n.replace(/\/$/,""),r=e.replace(/\/$/,"");return t!==r}o(Dk,"needsFolderRepair");function j0(){let n=new Date,e=n.getFullYear(),t=String(n.getMonth()+1).padStart(2,"0"),r=String(n.getDate()).padStart(2,"0");return`${e}-${t}-${r}`}o(j0,"getTodayDateString");function Nk(n){let e=n.ems__Effort_plannedStartTimestamp;if(!e)return!1;let t=j0();return typeof e=="string"?e.split("T")[0]===t:Array.isArray(e)&&e.length>0?String(e[0]).split("T")[0]===t:!1}o(Nk,"isPlannedForToday");function Lk(n){let e=n.ems__Effort_plannedStartTimestamp;return e?typeof e=="string"?e.trim().length>0:Array.isArray(e)&&e.length>0?String(e[0]).trim().length>0:!1:!1}o(Lk,"hasPlannedStartTimestamp");function kk(n){let e=n.pn__DailyNote_day;if(!e)return null;if(typeof e=="string"){let t=e.match(/\[\[([^\[\]]+)\]\]/);return t?t[1]:e}if(Array.isArray(e)&&e.length>0){let t=String(e[0]),r=t.match(/\[\[([^\[\]]+)\]\]/);return r?r[1]:t}return null}o(kk,"extractDailyNoteDate");function Mk(n){return j0()>=n}o(Mk,"isCurrentDateGteDay");function OT(n){return n?n.replace(/^["']|["']$/g,"").replace(/\[\[|\]\]/g,"").trim():""}o(OT,"normalizeWithQuotes");var jk=10;function FT(n,e=jk){let t=n.exo__Class_superClass;if(!t)return!1;let r=new Set,i=[],s=Array.isArray(t)?t:[t];for(let a of s){let c=OT(a);c&&i.push({className:c,depth:0})}for(;i.length>0;){let a=i.shift();if(!a)continue;let{className:c,depth:l}=a;if(l>e)continue;if(c===bo.AssetClass.PROTOTYPE)return!0;if(r.has(c))continue;r.add(c);let u=`${c}__exo__Class_superClass`,f=n[u];if(f){let d=Array.isArray(f)?f:[f];for(let h of d){let p=OT(h);p&&!r.has(p)&&i.push({className:p,depth:l+1})}}}return!1}o(FT,"inheritsFromPrototype");function $k(n,e){return vo(n,bo.AssetClass.CLASS)?FT(e):!1}o($k,"isPrototypeClass")});var DT=S(vc=>{"use strict";Object.defineProperty(vc,"__esModule",{value:!0});vc.canCreateTask=Vk;vc.canCreateRelatedTask=Uk;vc.canConvertTaskToProject=Bk;vc.canSetCriticalityZone=qk;var bc=wo(),$0=kn();function Vk(n){return(0,bc.isAreaOrProject)(n.instanceClass)}o(Vk,"canCreateTask");function Uk(n){return!(!(0,bc.hasClass)(n.instanceClass,$0.AssetClass.TASK)||(0,bc.isAssetArchived)(n.isArchived))}o(Uk,"canCreateRelatedTask");function Bk(n){return(0,bc.hasClass)(n.instanceClass,$0.AssetClass.TASK)}o(Bk,"canConvertTaskToProject");function qk(n){return!(!(0,bc.hasClass)(n.instanceClass,$0.AssetClass.TASK)||(0,bc.isAssetArchived)(n.isArchived))}o(qk,"canSetCriticalityZone")});var NT=S(wc=>{"use strict";Object.defineProperty(wc,"__esModule",{value:!0});wc.canCreateProject=Wk;wc.canMoveToAnalysis=Gk;wc.canMoveToToDo=zk;wc.canConvertProjectToTask=Hk;var Ta=wo(),Aa=kn();function Wk(n){return(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.AREA)||(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.INITIATIVE)||(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.PROJECT)}o(Wk,"canCreateProject");function Gk(n){return(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.PROJECT)?(0,Ta.hasStatus)(n.currentStatus,Aa.EffortStatus.BACKLOG):!1}o(Gk,"canMoveToAnalysis");function zk(n){return(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.PROJECT)?(0,Ta.hasStatus)(n.currentStatus,Aa.EffortStatus.ANALYSIS):!1}o(zk,"canMoveToToDo");function Hk(n){return(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.PROJECT)}o(Hk,"canConvertProjectToTask")});var MT=S(ih=>{"use strict";Object.defineProperty(ih,"__esModule",{value:!0});ih.canCreateChildArea=Qk;ih.canSetActiveFocus=Kk;var LT=wo(),kT=kn();function Qk(n){return(0,LT.hasClass)(n.instanceClass,kT.AssetClass.AREA)}o(Qk,"canCreateChildArea");function Kk(n){return(0,LT.hasClass)(n.instanceClass,kT.AssetClass.AREA)}o(Kk,"canSetActiveFocus")});var $T=S(on=>{"use strict";Object.defineProperty(on,"__esModule",{value:!0});on.canPlanOnToday=Yk;on.canPlanForEvening=Xk;on.canShiftDayBackward=Jk;on.canShiftDayForward=Zk;on.canSetDraftStatus=e4;on.canMoveToBacklog=t4;on.canStartEffort=r4;on.canMarkDone=n4;on.canTrashEffort=i4;on.canVoteOnEffort=s4;on.canRollbackStatus=a4;on.canArchiveTask=o4;on.canMarkReviewed=c4;var jT=qs(),dt=wo(),an=kn();function Yk(n){return!(!(0,dt.isEffort)(n.instanceClass)||(0,dt.isPlannedForToday)(n.metadata))}o(Yk,"canPlanOnToday");function Xk(n){return!(0,dt.hasClass)(n.instanceClass,an.AssetClass.TASK)&&!(0,dt.hasClass)(n.instanceClass,an.AssetClass.MEETING)?!1:(0,dt.hasStatus)(n.currentStatus,an.EffortStatus.BACKLOG)}o(Xk,"canPlanForEvening");function Jk(n){return(0,dt.isEffort)(n.instanceClass)?(0,dt.hasPlannedStartTimestamp)(n.metadata):!1}o(Jk,"canShiftDayBackward");function Zk(n){return(0,dt.isEffort)(n.instanceClass)?(0,dt.hasPlannedStartTimestamp)(n.metadata):!1}o(Zk,"canShiftDayForward");function e4(n){return(0,dt.isEffort)(n.instanceClass)?!n.currentStatus:!1}o(e4,"canSetDraftStatus");function t4(n){return(0,dt.isEffort)(n.instanceClass)?(0,dt.hasStatus)(n.currentStatus,an.EffortStatus.DRAFT):!1}o(t4,"canMoveToBacklog");function r4(n){return(0,dt.isEffort)(n.instanceClass)?(0,dt.hasClass)(n.instanceClass,an.AssetClass.TASK)||(0,dt.hasClass)(n.instanceClass,an.AssetClass.MEETING)?(0,dt.hasStatus)(n.currentStatus,an.EffortStatus.BACKLOG):(0,dt.hasClass)(n.instanceClass,an.AssetClass.PROJECT)?(0,dt.hasStatus)(n.currentStatus,an.EffortStatus.TODO):!1:!1}o(r4,"canStartEffort");function n4(n){return(0,dt.isEffort)(n.instanceClass)?(0,dt.hasStatus)(n.currentStatus,an.EffortStatus.DOING):!1}o(n4,"canMarkDone");function i4(n){return(0,dt.isEffort)(n.instanceClass)?n.currentStatus?!(Array.isArray(n.currentStatus)?n.currentStatus:[n.currentStatus]).some(r=>{let i=jT.WikiLinkHelpers.normalize(r);return i===an.EffortStatus.TRASHED||i===an.EffortStatus.DONE}):!0:!1}o(i4,"canTrashEffort");function s4(n){return!(!(0,dt.isEffort)(n.instanceClass)||(0,dt.isAssetArchived)(n.isArchived))}o(s4,"canVoteOnEffort");function a4(n){if(!(0,dt.isEffort)(n.instanceClass)||(0,dt.isAssetArchived)(n.isArchived)||!n.currentStatus)return!1;let e=Array.isArray(n.currentStatus)?n.currentStatus[0]:n.currentStatus;return!(!e||jT.WikiLinkHelpers.normalize(e)===an.EffortStatus.TRASHED)}o(a4,"canRollbackStatus");function o4(n){return!(0,dt.isAssetArchived)(n.isArchived)}o(o4,"canArchiveTask");function c4(n){return!(!(0,dt.hasClass)(n.instanceClass,an.AssetClass.TASK)&&!(0,dt.hasClass)(n.instanceClass,an.AssetClass.PROJECT)||(0,dt.isAssetArchived)(n.isArchived))}o(c4,"canMarkReviewed")});var VT=S(Jn=>{"use strict";Object.defineProperty(Jn,"__esModule",{value:!0});Jn.canCreateEvent=f4;Jn.canCreateInstance=d4;Jn.canCleanProperties=h4;Jn.canRepairFolder=p4;Jn.canRenameToUid=m4;Jn.canCopyLabelToAliases=g4;Jn.canCreateNarrowerConcept=y4;Jn.canCreateSubclass=_4;Jn.canCreateTaskForDailyNote=S4;Jn.canCopyFleetingNoteLabel=b4;var Br=wo(),Ws=kn(),l4="75302770-279e-4a59-ba85-09df29725713",u4="fca0a931-a01f-48e4-b72a-4af206c94bc7";function f4(n){return(0,Br.isAreaOrProject)(n.instanceClass)}o(f4,"canCreateEvent");function d4(n){return(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.TASK_PROTOTYPE)||(0,Br.hasClass)(n.instanceClass,l4)||(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.MEETING_PROTOTYPE)||(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.EVENT_PROTOTYPE)||(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.PROJECT_PROTOTYPE)||(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.PROTOTYPE)||n.classIsPrototype?!0:(0,Br.isPrototypeClass)(n.instanceClass,n.metadata)}o(d4,"canCreateInstance");function h4(n){return(0,Br.hasEmptyProperties)(n.metadata)}o(h4,"canCleanProperties");function p4(n){return(0,Br.needsFolderRepair)(n.currentFolder,n.expectedFolder)}o(p4,"canRepairFolder");function m4(n,e){let t=n.metadata.exo__Asset_uid;return t?e!==t:!1}o(m4,"canRenameToUid");function g4(n){let e=n.metadata.exo__Asset_label;if(!e||typeof e!="string"||e.trim()==="")return!1;let t=e.trim(),r=n.metadata.aliases;return!r||!Array.isArray(r)||r.length===0?!0:!r.some(i=>typeof i!="string"?!1:i.trim()===t)}o(g4,"canCopyLabelToAliases");function y4(n){return(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.CONCEPT)}o(y4,"canCreateNarrowerConcept");function _4(n){return(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.CLASS)}o(_4,"canCreateSubclass");function S4(n){return!(!(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.DAILY_NOTE)||n.isArchived||!(0,Br.extractDailyNoteDate)(n.metadata))}o(S4,"canCreateTaskForDailyNote");function b4(n){return(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.FLEETING_NOTE)||(0,Br.hasClass)(n.instanceClass,u4)}o(b4,"canCopyFleetingNoteLabel")});var BT=S(N=>{"use strict";Object.defineProperty(N,"__esModule",{value:!0});N.canCopyFleetingNoteLabel=N.canCreateTaskForDailyNote=N.canCreateSubclass=N.canCreateNarrowerConcept=N.canCopyLabelToAliases=N.canRenameToUid=N.canRepairFolder=N.canCleanProperties=N.canCreateInstance=N.canCreateEvent=N.canMarkReviewed=N.canArchiveTask=N.canRollbackStatus=N.canVoteOnEffort=N.canTrashEffort=N.canMarkDone=N.canStartEffort=N.canMoveToBacklog=N.canSetDraftStatus=N.canShiftDayForward=N.canShiftDayBackward=N.canPlanForEvening=N.canPlanOnToday=N.canSetActiveFocus=N.canCreateChildArea=N.canConvertProjectToTask=N.canMoveToToDo=N.canMoveToAnalysis=N.canCreateProject=N.canSetCriticalityZone=N.canConvertTaskToProject=N.canCreateRelatedTask=N.canCreateTask=N.isPrototypeClass=N.inheritsFromPrototype=N.isCurrentDateGteDay=N.extractDailyNoteDate=N.hasPlannedStartTimestamp=N.isPlannedForToday=N.getTodayDateString=N.needsFolderRepair=N.hasEmptyProperties=N.isAssetArchived=N.hasStatus=N.isEffort=N.isAreaOrProject=N.hasClass=void 0;var Tn=wo();Object.defineProperty(N,"hasClass",{enumerable:!0,get:o(function(){return Tn.hasClass},"get")});Object.defineProperty(N,"isAreaOrProject",{enumerable:!0,get:o(function(){return Tn.isAreaOrProject},"get")});Object.defineProperty(N,"isEffort",{enumerable:!0,get:o(function(){return Tn.isEffort},"get")});Object.defineProperty(N,"hasStatus",{enumerable:!0,get:o(function(){return Tn.hasStatus},"get")});Object.defineProperty(N,"isAssetArchived",{enumerable:!0,get:o(function(){return Tn.isAssetArchived},"get")});Object.defineProperty(N,"hasEmptyProperties",{enumerable:!0,get:o(function(){return Tn.hasEmptyProperties},"get")});Object.defineProperty(N,"needsFolderRepair",{enumerable:!0,get:o(function(){return Tn.needsFolderRepair},"get")});Object.defineProperty(N,"getTodayDateString",{enumerable:!0,get:o(function(){return Tn.getTodayDateString},"get")});Object.defineProperty(N,"isPlannedForToday",{enumerable:!0,get:o(function(){return Tn.isPlannedForToday},"get")});Object.defineProperty(N,"hasPlannedStartTimestamp",{enumerable:!0,get:o(function(){return Tn.hasPlannedStartTimestamp},"get")});Object.defineProperty(N,"extractDailyNoteDate",{enumerable:!0,get:o(function(){return Tn.extractDailyNoteDate},"get")});Object.defineProperty(N,"isCurrentDateGteDay",{enumerable:!0,get:o(function(){return Tn.isCurrentDateGteDay},"get")});Object.defineProperty(N,"inheritsFromPrototype",{enumerable:!0,get:o(function(){return Tn.inheritsFromPrototype},"get")});Object.defineProperty(N,"isPrototypeClass",{enumerable:!0,get:o(function(){return Tn.isPrototypeClass},"get")});var sh=DT();Object.defineProperty(N,"canCreateTask",{enumerable:!0,get:o(function(){return sh.canCreateTask},"get")});Object.defineProperty(N,"canCreateRelatedTask",{enumerable:!0,get:o(function(){return sh.canCreateRelatedTask},"get")});Object.defineProperty(N,"canConvertTaskToProject",{enumerable:!0,get:o(function(){return sh.canConvertTaskToProject},"get")});Object.defineProperty(N,"canSetCriticalityZone",{enumerable:!0,get:o(function(){return sh.canSetCriticalityZone},"get")});var ah=NT();Object.defineProperty(N,"canCreateProject",{enumerable:!0,get:o(function(){return ah.canCreateProject},"get")});Object.defineProperty(N,"canMoveToAnalysis",{enumerable:!0,get:o(function(){return ah.canMoveToAnalysis},"get")});Object.defineProperty(N,"canMoveToToDo",{enumerable:!0,get:o(function(){return ah.canMoveToToDo},"get")});Object.defineProperty(N,"canConvertProjectToTask",{enumerable:!0,get:o(function(){return ah.canConvertProjectToTask},"get")});var UT=MT();Object.defineProperty(N,"canCreateChildArea",{enumerable:!0,get:o(function(){return UT.canCreateChildArea},"get")});Object.defineProperty(N,"canSetActiveFocus",{enumerable:!0,get:o(function(){return UT.canSetActiveFocus},"get")});var Mn=$T();Object.defineProperty(N,"canPlanOnToday",{enumerable:!0,get:o(function(){return Mn.canPlanOnToday},"get")});Object.defineProperty(N,"canPlanForEvening",{enumerable:!0,get:o(function(){return Mn.canPlanForEvening},"get")});Object.defineProperty(N,"canShiftDayBackward",{enumerable:!0,get:o(function(){return Mn.canShiftDayBackward},"get")});Object.defineProperty(N,"canShiftDayForward",{enumerable:!0,get:o(function(){return Mn.canShiftDayForward},"get")});Object.defineProperty(N,"canSetDraftStatus",{enumerable:!0,get:o(function(){return Mn.canSetDraftStatus},"get")});Object.defineProperty(N,"canMoveToBacklog",{enumerable:!0,get:o(function(){return Mn.canMoveToBacklog},"get")});Object.defineProperty(N,"canStartEffort",{enumerable:!0,get:o(function(){return Mn.canStartEffort},"get")});Object.defineProperty(N,"canMarkDone",{enumerable:!0,get:o(function(){return Mn.canMarkDone},"get")});Object.defineProperty(N,"canTrashEffort",{enumerable:!0,get:o(function(){return Mn.canTrashEffort},"get")});Object.defineProperty(N,"canVoteOnEffort",{enumerable:!0,get:o(function(){return Mn.canVoteOnEffort},"get")});Object.defineProperty(N,"canRollbackStatus",{enumerable:!0,get:o(function(){return Mn.canRollbackStatus},"get")});Object.defineProperty(N,"canArchiveTask",{enumerable:!0,get:o(function(){return Mn.canArchiveTask},"get")});Object.defineProperty(N,"canMarkReviewed",{enumerable:!0,get:o(function(){return Mn.canMarkReviewed},"get")});var as=VT();Object.defineProperty(N,"canCreateEvent",{enumerable:!0,get:o(function(){return as.canCreateEvent},"get")});Object.defineProperty(N,"canCreateInstance",{enumerable:!0,get:o(function(){return as.canCreateInstance},"get")});Object.defineProperty(N,"canCleanProperties",{enumerable:!0,get:o(function(){return as.canCleanProperties},"get")});Object.defineProperty(N,"canRepairFolder",{enumerable:!0,get:o(function(){return as.canRepairFolder},"get")});Object.defineProperty(N,"canRenameToUid",{enumerable:!0,get:o(function(){return as.canRenameToUid},"get")});Object.defineProperty(N,"canCopyLabelToAliases",{enumerable:!0,get:o(function(){return as.canCopyLabelToAliases},"get")});Object.defineProperty(N,"canCreateNarrowerConcept",{enumerable:!0,get:o(function(){return as.canCreateNarrowerConcept},"get")});Object.defineProperty(N,"canCreateSubclass",{enumerable:!0,get:o(function(){return as.canCreateSubclass},"get")});Object.defineProperty(N,"canCreateTaskForDailyNote",{enumerable:!0,get:o(function(){return as.canCreateTaskForDailyNote},"get")});Object.defineProperty(N,"canCopyFleetingNoteLabel",{enumerable:!0,get:o(function(){return as.canCopyFleetingNoteLabel},"get")})});var qT=S(Eo=>{"use strict";var v4=Eo&&Eo.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),w4=Eo&&Eo.__exportStar||function(n,e){for(var t in n)t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&v4(e,n,t)};Object.defineProperty(Eo,"__esModule",{value:!0});w4(BT(),Eo)});var oh=S(ku=>{"use strict";Object.defineProperty(ku,"__esModule",{value:!0});ku.PropertyFieldType=void 0;ku.rangeToFieldType=A4;var Fr;(function(n){n.Text="text",n.Number="number",n.Date="date",n.DateTime="datetime",n.Boolean="boolean",n.Reference="reference",n.Enum="enum",n.StatusSelect="status-select",n.SizeSelect="size-select",n.Wikilink="wikilink",n.Timestamp="timestamp",n.Unknown="unknown"})(Fr||(ku.PropertyFieldType=Fr={}));var WT="http://www.w3.org/2001/XMLSchema#",E4="https://exocortex.my/ontology/exo#",T4="https://exocortex.my/ontology/ems#";function A4(n){if(!n)return Fr.Unknown;let e=n.trim();if(!e)return Fr.Unknown;if(e.startsWith(WT)){let t=e.substring(WT.length);return V0(t)}if(e.startsWith("xsd:")){let t=e.substring(4);return V0(t)}if(e.includes("XMLSchema#")){let t=e.indexOf("XMLSchema#"),r=e.substring(t+10);return V0(r)}return e.startsWith(T4)||e.startsWith("ems:")?x4(e):e.startsWith(E4)||e.startsWith("exo:")||I4(e)?Fr.Reference:Fr.Text}o(A4,"rangeToFieldType");function V0(n){switch(n.toLowerCase()){case"string":case"normalizedstring":case"token":case"language":case"nmtoken":case"name":case"ncname":case"anyuri":return Fr.Text;case"integer":case"int":case"long":case"short":case"byte":case"nonnegativeinteger":case"positiveinteger":case"nonpositiveinteger":case"negativeinteger":case"unsignedlong":case"unsignedint":case"unsignedshort":case"unsignedbyte":case"decimal":case"float":case"double":return Fr.Number;case"date":return Fr.Date;case"datetime":case"datetimestamp":return Fr.DateTime;case"boolean":return Fr.Boolean;case"time":return Fr.Timestamp;default:return Fr.Text}}o(V0,"xsdTypeToFieldType");function x4(n){let e=n.toLowerCase();return e.includes("effortstatus")?Fr.StatusSelect:e.includes("tasksize")?Fr.SizeSelect:Fr.Reference}o(x4,"emsTypeToFieldType");function I4(n){let e=n.toLowerCase();return e.includes("exocortex.my/ontology")?!0:["asset","task","project","area","effort","class","property","concept"].some(r=>e.includes(r))}o(I4,"isClassReference")});var U0=S(Mu=>{"use strict";Object.defineProperty(Mu,"__esModule",{value:!0});Mu.propertyNameToUri=C4;Mu.uriToPropertyName=GT;Mu.extractPropertyLabel=R4;function C4(n){return n.replace(/^([a-z]+)__/,"$1:")}o(C4,"propertyNameToUri");function GT(n){if(n.startsWith("http://")||n.startsWith("https://")){let e=n.match(/\/([a-z]+)#([A-Za-z0-9_]+)$/);if(e)return`${e[1]}__${e[2]}`;let t=n.lastIndexOf("#"),r=n.lastIndexOf("/"),i=Math.max(t,r);return i>=0?n.substring(i+1):n}return n.replace(/^([a-z]+):/,"$1__")}o(GT,"uriToPropertyName");function R4(n){let r=(n.includes(":")?GT(n):n).replace(/^[a-z]+__/,"").split("_");return(r.length>1?r.slice(1).join(" "):r[0]).replace(/([a-z])([A-Z])/g,"$1 $2").replace(/^./,s=>s.toUpperCase())}o(R4,"extractPropertyLabel")});var ch={};Ny(ch,{__assign:()=>q0,__asyncDelegator:()=>B4,__asyncGenerator:()=>U4,__asyncValues:()=>q4,__await:()=>ju,__awaiter:()=>L4,__classPrivateFieldGet:()=>H4,__classPrivateFieldSet:()=>Q4,__createBinding:()=>M4,__decorate:()=>F4,__exportStar:()=>j4,__extends:()=>O4,__generator:()=>k4,__importDefault:()=>z4,__importStar:()=>G4,__makeTemplateObject:()=>W4,__metadata:()=>N4,__param:()=>D4,__read:()=>zT,__rest:()=>P4,__spread:()=>$4,__spreadArrays:()=>V4,__values:()=>W0});function O4(n,e){B0(n,e);function t(){this.constructor=n}o(t,"__"),n.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}function P4(n,e){var t={};for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&e.indexOf(r)<0&&(t[r]=n[r]);if(n!=null&&typeof Object.getOwnPropertySymbols=="function")for(var i=0,r=Object.getOwnPropertySymbols(n);i<r.length;i++)e.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(n,r[i])&&(t[r[i]]=n[r[i]]);return t}function F4(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s}function D4(n,e){return function(t,r){e(t,r,n)}}function N4(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)}function L4(n,e,t,r){function i(s){return s instanceof t?s:new t(function(a){a(s)})}return o(i,"adopt"),new(t||(t=Promise))(function(s,a){function c(f){try{u(r.next(f))}catch(d){a(d)}}o(c,"fulfilled");function l(f){try{u(r.throw(f))}catch(d){a(d)}}o(l,"rejected");function u(f){f.done?s(f.value):i(f.value).then(c,l)}o(u,"step"),u((r=r.apply(n,e||[])).next())})}function k4(n,e){var t={label:0,sent:o(function(){if(s[0]&1)throw s[1];return s[1]},"sent"),trys:[],ops:[]},r,i,s,a;return a={next:c(0),throw:c(1),return:c(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function c(u){return function(f){return l([u,f])}}function l(u){if(r)throw new TypeError("Generator is already executing.");for(;t;)try{if(r=1,i&&(s=u[0]&2?i.return:u[0]?i.throw||((s=i.return)&&s.call(i),0):i.next)&&!(s=s.call(i,u[1])).done)return s;switch(i=0,s&&(u=[u[0]&2,s.value]),u[0]){case 0:case 1:s=u;break;case 4:return t.label++,{value:u[1],done:!1};case 5:t.label++,i=u[1],u=[0];continue;case 7:u=t.ops.pop(),t.trys.pop();continue;default:if(s=t.trys,!(s=s.length>0&&s[s.length-1])&&(u[0]===6||u[0]===2)){t=0;continue}if(u[0]===3&&(!s||u[1]>s[0]&&u[1]<s[3])){t.label=u[1];break}if(u[0]===6&&t.label<s[1]){t.label=s[1],s=u;break}if(s&&t.label<s[2]){t.label=s[2],t.ops.push(u);break}s[2]&&t.ops.pop(),t.trys.pop();continue}u=e.call(n,t)}catch(f){u=[6,f],i=0}finally{r=s=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}}function M4(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]}function j4(n,e){for(var t in n)t!=="default"&&!e.hasOwnProperty(t)&&(e[t]=n[t])}function W0(n){var e=typeof Symbol=="function"&&Symbol.iterator,t=e&&n[e],r=0;if(t)return t.call(n);if(n&&typeof n.length=="number")return{next:o(function(){return n&&r>=n.length&&(n=void 0),{value:n&&n[r++],done:!n}},"next")};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function zT(n,e){var t=typeof Symbol=="function"&&n[Symbol.iterator];if(!t)return n;var r=t.call(n),i,s=[],a;try{for(;(e===void 0||e-- >0)&&!(i=r.next()).done;)s.push(i.value)}catch(c){a={error:c}}finally{try{i&&!i.done&&(t=r.return)&&t.call(r)}finally{if(a)throw a.error}}return s}function $4(){for(var n=[],e=0;e<arguments.length;e++)n=n.concat(zT(arguments[e]));return n}function V4(){for(var n=0,e=0,t=arguments.length;e<t;e++)n+=arguments[e].length;for(var r=Array(n),i=0,e=0;e<t;e++)for(var s=arguments[e],a=0,c=s.length;a<c;a++,i++)r[i]=s[a];return r}function ju(n){return this instanceof ju?(this.v=n,this):new ju(n)}function U4(n,e,t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=t.apply(n,e||[]),i,s=[];return i={},a("next"),a("throw"),a("return"),i[Symbol.asyncIterator]=function(){return this},i;function a(h){r[h]&&(i[h]=function(p){return new Promise(function(y,b){s.push([h,p,y,b])>1||c(h,p)})})}function c(h,p){try{l(r[h](p))}catch(y){d(s[0][3],y)}}function l(h){h.value instanceof ju?Promise.resolve(h.value.v).then(u,f):d(s[0][2],h)}function u(h){c("next",h)}function f(h){c("throw",h)}function d(h,p){h(p),s.shift(),s.length&&c(s[0][0],s[0][1])}}function B4(n){var e,t;return e={},r("next"),r("throw",function(i){throw i}),r("return"),e[Symbol.iterator]=function(){return this},e;function r(i,s){e[i]=n[i]?function(a){return(t=!t)?{value:ju(n[i](a)),done:i==="return"}:s?s(a):a}:s}}function q4(n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e=n[Symbol.asyncIterator],t;return e?e.call(n):(n=typeof W0=="function"?W0(n):n[Symbol.iterator](),t={},r("next"),r("throw"),r("return"),t[Symbol.asyncIterator]=function(){return this},t);function r(s){t[s]=n[s]&&function(a){return new Promise(function(c,l){a=n[s](a),i(c,l,a.done,a.value)})}}function i(s,a,c,l){Promise.resolve(l).then(function(u){s({value:u,done:c})},a)}}function W4(n,e){return Object.defineProperty?Object.defineProperty(n,"raw",{value:e}):n.raw=e,n}function G4(n){if(n&&n.__esModule)return n;var e={};if(n!=null)for(var t in n)Object.hasOwnProperty.call(n,t)&&(e[t]=n[t]);return e.default=n,e}function z4(n){return n&&n.__esModule?n:{default:n}}function H4(n,e){if(!e.has(n))throw new TypeError("attempted to get private field on non-instance");return e.get(n)}function Q4(n,e,t){if(!e.has(n))throw new TypeError("attempted to set private field on non-instance");return e.set(n,t),t}var B0,q0,lh=PN(()=>{B0=o(function(n,e){return B0=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,r){t.__proto__=r}||function(t,r){for(var i in r)r.hasOwnProperty(i)&&(t[i]=r[i])},B0(n,e)},"extendStatics");o(O4,"__extends");q0=o(function(){return q0=Object.assign||o(function(e){for(var t,r=1,i=arguments.length;r<i;r++){t=arguments[r];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},"__assign"),q0.apply(this,arguments)},"__assign");o(P4,"__rest");o(F4,"__decorate");o(D4,"__param");o(N4,"__metadata");o(L4,"__awaiter");o(k4,"__generator");o(M4,"__createBinding");o(j4,"__exportStar");o(W0,"__values");o(zT,"__read");o($4,"__spread");o(V4,"__spreadArrays");o(ju,"__await");o(U4,"__asyncGenerator");o(B4,"__asyncDelegator");o(q4,"__asyncValues");o(W4,"__makeTemplateObject");o(G4,"__importStar");o(z4,"__importDefault");o(H4,"__classPrivateFieldGet");o(Q4,"__classPrivateFieldSet")});var H0=S(z0=>{"use strict";Object.defineProperty(z0,"__esModule",{value:!0});var G0;(function(n){n[n.Transient=0]="Transient",n[n.Singleton=1]="Singleton",n[n.ResolutionScoped=2]="ResolutionScoped",n[n.ContainerScoped=3]="ContainerScoped"})(G0||(G0={}));z0.default=G0});var HT=S(Q0=>{"use strict";Object.defineProperty(Q0,"__esModule",{value:!0});var K4=H0();Object.defineProperty(Q0,"Lifecycle",{enumerable:!0,get:o(function(){return K4.default},"get")})});var To=S(hi=>{"use strict";Object.defineProperty(hi,"__esModule",{value:!0});hi.defineInjectionTokenMetadata=hi.getParamInfo=hi.INJECTION_TOKEN_METADATA_KEY=void 0;hi.INJECTION_TOKEN_METADATA_KEY="injectionTokens";function Y4(n){let e=Reflect.getMetadata("design:paramtypes",n)||[],t=Reflect.getOwnMetadata(hi.INJECTION_TOKEN_METADATA_KEY,n)||{};return Object.keys(t).forEach(r=>{e[+r]=t[r]}),e}o(Y4,"getParamInfo");hi.getParamInfo=Y4;function X4(n,e){return function(t,r,i){let s=Reflect.getOwnMetadata(hi.INJECTION_TOKEN_METADATA_KEY,t)||{};s[i]=e?{token:n,transform:e.transformToken,transformArgs:e.args||[]}:n,Reflect.defineMetadata(hi.INJECTION_TOKEN_METADATA_KEY,s,t)}}o(X4,"defineInjectionTokenMetadata");hi.defineInjectionTokenMetadata=X4});var K0=S(uh=>{"use strict";Object.defineProperty(uh,"__esModule",{value:!0});uh.isClassProvider=void 0;function J4(n){return!!n.useClass}o(J4,"isClassProvider");uh.isClassProvider=J4});var Y0=S(fh=>{"use strict";Object.defineProperty(fh,"__esModule",{value:!0});fh.isFactoryProvider=void 0;function Z4(n){return!!n.useFactory}o(Z4,"isFactoryProvider");fh.isFactoryProvider=Z4});var hh=S(Ec=>{"use strict";Object.defineProperty(Ec,"__esModule",{value:!0});Ec.delay=Ec.DelayedConstructor=void 0;var dh=class{static{o(this,"DelayedConstructor")}constructor(e){this.wrap=e,this.reflectMethods=["get","getPrototypeOf","setPrototypeOf","getOwnPropertyDescriptor","defineProperty","has","set","deleteProperty","apply","construct","ownKeys"]}createProxy(e){let t={},r=!1,i,s=o(()=>(r||(i=e(this.wrap()),r=!0),i),"delayedObject");return new Proxy(t,this.createHandler(s))}createHandler(e){let t={},r=o(i=>{t[i]=(...s)=>{s[0]=e();let a=Reflect[i];return a(...s)}},"install");return this.reflectMethods.forEach(r),t}};Ec.DelayedConstructor=dh;function eM(n){if(typeof n>"u")throw new Error("Attempt to `delay` undefined. Constructor must be wrapped in a callback");return new dh(n)}o(eM,"delay");Ec.delay=eM});var ph=S(os=>{"use strict";Object.defineProperty(os,"__esModule",{value:!0});os.isConstructorToken=os.isTransformDescriptor=os.isTokenDescriptor=os.isNormalToken=void 0;var tM=hh();function rM(n){return typeof n=="string"||typeof n=="symbol"}o(rM,"isNormalToken");os.isNormalToken=rM;function nM(n){return typeof n=="object"&&"token"in n&&"multiple"in n}o(nM,"isTokenDescriptor");os.isTokenDescriptor=nM;function iM(n){return typeof n=="object"&&"token"in n&&"transform"in n}o(iM,"isTransformDescriptor");os.isTransformDescriptor=iM;function sM(n){return typeof n=="function"||n instanceof tM.DelayedConstructor}o(sM,"isConstructorToken");os.isConstructorToken=sM});var X0=S(mh=>{"use strict";Object.defineProperty(mh,"__esModule",{value:!0});mh.isTokenProvider=void 0;function aM(n){return!!n.useToken}o(aM,"isTokenProvider");mh.isTokenProvider=aM});var J0=S(gh=>{"use strict";Object.defineProperty(gh,"__esModule",{value:!0});gh.isValueProvider=void 0;function oM(n){return n.useValue!=null}o(oM,"isValueProvider");gh.isValueProvider=oM});var Z0=S(Ao=>{"use strict";Object.defineProperty(Ao,"__esModule",{value:!0});var cM=K0();Object.defineProperty(Ao,"isClassProvider",{enumerable:!0,get:o(function(){return cM.isClassProvider},"get")});var lM=Y0();Object.defineProperty(Ao,"isFactoryProvider",{enumerable:!0,get:o(function(){return lM.isFactoryProvider},"get")});var uM=ph();Object.defineProperty(Ao,"isNormalToken",{enumerable:!0,get:o(function(){return uM.isNormalToken},"get")});var fM=X0();Object.defineProperty(Ao,"isTokenProvider",{enumerable:!0,get:o(function(){return fM.isTokenProvider},"get")});var dM=J0();Object.defineProperty(Ao,"isValueProvider",{enumerable:!0,get:o(function(){return dM.isValueProvider},"get")})});var QT=S(yh=>{"use strict";Object.defineProperty(yh,"__esModule",{value:!0});yh.isProvider=void 0;var hM=K0(),pM=J0(),mM=X0(),gM=Y0();function yM(n){return hM.isClassProvider(n)||pM.isValueProvider(n)||mM.isTokenProvider(n)||gM.isFactoryProvider(n)}o(yM,"isProvider");yh.isProvider=yM});var r_=S(t_=>{"use strict";Object.defineProperty(t_,"__esModule",{value:!0});var e_=class{static{o(this,"RegistryBase")}constructor(){this._registryMap=new Map}entries(){return this._registryMap.entries()}getAll(e){return this.ensure(e),this._registryMap.get(e)}get(e){this.ensure(e);let t=this._registryMap.get(e);return t[t.length-1]||null}set(e,t){this.ensure(e),this._registryMap.get(e).push(t)}setAll(e,t){this._registryMap.set(e,t)}has(e){return this.ensure(e),this._registryMap.get(e).length>0}clear(){this._registryMap.clear()}ensure(e){this._registryMap.has(e)||this._registryMap.set(e,[])}};t_.default=e_});var KT=S(i_=>{"use strict";Object.defineProperty(i_,"__esModule",{value:!0});var _M=r_(),n_=class extends _M.default{static{o(this,"Registry")}};i_.default=n_});var YT=S(a_=>{"use strict";Object.defineProperty(a_,"__esModule",{value:!0});var s_=class{static{o(this,"ResolutionContext")}constructor(){this.scopedResolutions=new Map}};a_.default=s_});var o_=S(_h=>{"use strict";Object.defineProperty(_h,"__esModule",{value:!0});_h.formatErrorCtor=void 0;function SM(n,e){return n===null?`at position #${e}`:`"${n.split(",")[e].trim()}" at position #${e}`}o(SM,"formatDependency");function bM(n,e,t=" "){return[n,...e.message.split(`
31
+ `)}),this}_outputHelpIfRequested(e){let t=this._getHelpOption();t&&e.find(i=>t.is(i))&&(this.outputHelp(),this._exit(0,"commander.helpDisplayed","(outputHelp)"))}};function j2(n){return n.map(e=>{if(!e.startsWith("--inspect"))return e;let t,r="127.0.0.1",i="9229",s;return(s=e.match(/^(--inspect(-brk)?)$/))!==null?t=s[1]:(s=e.match(/^(--inspect(-brk|-port)?)=([^:]+)$/))!==null?(t=s[1],/^\d+$/.test(s[3])?i=s[3]:r=s[3]):(s=e.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/))!==null&&(t=s[1],r=s[3],i=s[4]),t&&i!=="0"?`${t}=${r}:${parseInt(i)+1}`:e})}o(j2,"incrementNodeInspectorPort");function Ky(){if(st.env.NO_COLOR||st.env.FORCE_COLOR==="0"||st.env.FORCE_COLOR==="false")return!1;if(st.env.FORCE_COLOR||st.env.CLICOLOR_FORCE!==void 0)return!0}o(Ky,"useColor");Yy.Command=Qy;Yy.useColor=Ky});var q2=S(Hn=>{var{Argument:V2}=Dd(),{Command:Xy}=$2(),{CommanderError:GN,InvalidArgumentError:U2}=wu(),{Help:zN}=Uy(),{Option:B2}=Gy();Hn.program=new Xy;Hn.createCommand=n=>new Xy(n);Hn.createOption=(n,e)=>new B2(n,e);Hn.createArgument=(n,e)=>new V2(n,e);Hn.Command=Xy;Hn.Option=B2;Hn.Argument=V2;Hn.Help=zN;Hn.CommanderError=GN;Hn.InvalidArgumentError=U2;Hn.InvalidOptionArgumentError=U2});var Eu=S(Ld=>{"use strict";Object.defineProperty(Ld,"__esModule",{value:!0});Ld.AssetClass=void 0;var G2;(function(n){n.AREA="ems__Area",n.TASK="ems__Task",n.PROJECT="ems__Project",n.MEETING="ems__Meeting",n.INITIATIVE="ems__Initiative",n.TASK_PROTOTYPE="ems__TaskPrototype",n.MEETING_PROTOTYPE="ems__MeetingPrototype",n.EVENT_PROTOTYPE="exo__EventPrototype",n.PROJECT_PROTOTYPE="ems__ProjectPrototype",n.EVENT="exo__Event",n.DAILY_NOTE="pn__DailyNote",n.CONCEPT="ims__Concept",n.SESSION_START_EVENT="ems__SessionStartEvent",n.SESSION_END_EVENT="ems__SessionEndEvent",n.PROTOTYPE="exo__Prototype",n.CLASS="exo__Class",n.FLEETING_NOTE="ztlk__FleetingNote",n.WORKFLOW="ems__Workflow",n.WORKFLOW_STATE="ems__WorkflowState",n.WORKFLOW_TRANSITION="ems__WorkflowTransition",n.COMMAND="exocmd__Command",n.PRECONDITION="exocmd__Precondition",n.GROUNDING="exocmd__Grounding",n.COMMAND_BINDING="exocmd__CommandBinding"})(G2||(Ld.AssetClass=G2={}))});var yc=S(kd=>{"use strict";Object.defineProperty(kd,"__esModule",{value:!0});kd.EffortStatus=void 0;var z2;(function(n){n.DRAFT="ems__EffortStatusDraft",n.BACKLOG="ems__EffortStatusBacklog",n.ANALYSIS="ems__EffortStatusAnalysis",n.TODO="ems__EffortStatusToDo",n.DOING="ems__EffortStatusDoing",n.DONE="ems__EffortStatusDone",n.TRASHED="ems__EffortStatusTrashed"})(z2||(kd.EffortStatus=z2={}))});var Jy=S(Gt=>{"use strict";Object.defineProperty(Gt,"__esModule",{value:!0});Gt.EFFORT_STATUS_OPTIONS=Gt.STATUS_NAME_TO_WIKILINK=Gt.STATUS_NAME_TO_ENUM=Gt.EFFORT_STATUS_CONFIG=void 0;Gt.normalizeEffortStatus=HN;Gt.isDoneStatus=QN;Gt.isTrashedStatus=KN;Gt.getEffortStatusLabel=YN;var ss=yc();Gt.EFFORT_STATUS_CONFIG=[{name:"Draft",status:ss.EffortStatus.DRAFT,wikilink:"[[ems__EffortStatusDraft]]"},{name:"Backlog",status:ss.EffortStatus.BACKLOG,wikilink:"[[ems__EffortStatusBacklog]]"},{name:"Analysis",status:ss.EffortStatus.ANALYSIS,wikilink:"[[ems__EffortStatusAnalysis]]"},{name:"To Do",status:ss.EffortStatus.TODO,wikilink:"[[ems__EffortStatusToDo]]"},{name:"Doing",status:ss.EffortStatus.DOING,wikilink:"[[ems__EffortStatusDoing]]"},{name:"Done",status:ss.EffortStatus.DONE,wikilink:"[[ems__EffortStatusDone]]"},{name:"Trashed",status:ss.EffortStatus.TRASHED,wikilink:"[[ems__EffortStatusTrashed]]"}];Gt.STATUS_NAME_TO_ENUM=Object.fromEntries(Gt.EFFORT_STATUS_CONFIG.map(n=>[n.name,n.status]));Gt.STATUS_NAME_TO_WIKILINK=Object.fromEntries(Gt.EFFORT_STATUS_CONFIG.map(n=>[n.name,n.wikilink]));Gt.EFFORT_STATUS_OPTIONS=Gt.EFFORT_STATUS_CONFIG.map(n=>({value:n.wikilink,label:n.name}));function HN(n,e=ss.EffortStatus.DRAFT){if(n.startsWith("ems__")){let r=Gt.EFFORT_STATUS_CONFIG.find(i=>i.status===n);return r?r.status:e}return Gt.STATUS_NAME_TO_ENUM[n]??e}o(HN,"normalizeEffortStatus");function QN(n){return n===ss.EffortStatus.DONE}o(QN,"isDoneStatus");function KN(n){return n===ss.EffortStatus.TRASHED}o(KN,"isTrashedStatus");function YN(n){if(!n)return"-";let e=String(n);if(e==="")return"-";for(let r of Gt.EFFORT_STATUS_CONFIG)if(r.wikilink===e||`[[${e}]]`===r.wikilink||r.status===e||r.name===e)return r.name;let t=e.toLowerCase();for(let r of Gt.EFFORT_STATUS_CONFIG)if(r.name.toLowerCase()===t)return r.name;return e}o(YN,"getEffortStatusLabel")});var _c=S(Md=>{"use strict";Object.defineProperty(Md,"__esModule",{value:!0});Md.GroundingType=void 0;var H2;(function(n){n.SPARQL_UPDATE="sparql_update",n.PROPERTY_DELETE="property_delete",n.PROPERTY_SET="property_set",n.COMPOSITE="composite",n.SERVICE_CALL="service_call",n.CREATE_INSTANCE="create_instance",n.PROPERTY_APPEND="property_append"})(H2||(Md.GroundingType=H2={}))});var Zy=S(Qn=>{"use strict";Object.defineProperty(Qn,"__esModule",{value:!0});Qn.CommandBindingStyleProperty=Qn.CommandBindingProperty=Qn.GroundingProperty=Qn.PreconditionProperty=Qn.CommandProperty=void 0;Qn.CommandProperty={ICON:"exocmd__Command_icon",PRECONDITION:"exocmd__Command_precondition",GROUNDING:"exocmd__Command_grounding",CONFIRM_MESSAGE:"exocmd__Command_confirmMessage",SUCCESS_MESSAGE:"exocmd__Command_successMessage",CATEGORY:"exocmd__Command_category"};Qn.PreconditionProperty={SPARQL_ASK:"exocmd__Precondition_sparqlAsk",QUERY:"exocmd__Precondition_query"};Qn.GroundingProperty={TYPE:"exocmd__Grounding_type",SPARQL_UPDATE:"exocmd__Grounding_sparqlUpdate",TARGET_PROPERTY:"exocmd__Grounding_targetProperty",TARGET_VALUE:"exocmd__Grounding_targetValue",STEPS:"exocmd__Grounding_steps"};Qn.CommandBindingProperty={COMMAND:"exocmd__CommandBinding_command",TARGET_CLASS:"exocmd__CommandBinding_targetClass",TARGET_PROTOTYPE:"exocmd__CommandBinding_targetPrototype",TARGET_ASSET:"exocmd__CommandBinding_targetAsset",POSITION:"exocmd__CommandBinding_position",ORDER:"exocmd__CommandBinding_order",PRECONDITION:"exocmd__CommandBinding_precondition",STYLE:"exocmd__CommandBinding_style",VARIANT:"exocmd__CommandBinding_variant"};Qn.CommandBindingStyleProperty={VARIANT:"exocmd__CommandBindingStyle_variant",SHOW_ICON:"exocmd__CommandBindingStyle_showIcon",LABEL_CLASS:"exocmd__CommandBindingStyle_labelClass",ARIA_LABEL:"exocmd__CommandBindingStyle_ariaLabel",TOOLTIP:"exocmd__CommandBindingStyle_tooltip",KEYBOARD_SHORTCUT:"exocmd__CommandBindingStyle_keyboardShortcut",SOURCE:"exocmd__CommandBindingStyle_source"}});var e0=S(wn=>{"use strict";Object.defineProperty(wn,"__esModule",{value:!0});wn.STYLE_SOURCE_VALUES=wn.LABEL_CLASS_VALUES=wn.COMMAND_VARIANT_VALUES=void 0;wn.isCommandVariant=XN;wn.isLabelClass=JN;wn.isStyleSource=ZN;wn.COMMAND_VARIANT_VALUES=Object.freeze(["primary","secondary","success","warning","danger","muted"]);wn.LABEL_CLASS_VALUES=Object.freeze(["muted","bold","uppercase","compact"]);wn.STYLE_SOURCE_VALUES=Object.freeze(["vendor","user"]);function XN(n){return typeof n=="string"&&wn.COMMAND_VARIANT_VALUES.includes(n)}o(XN,"isCommandVariant");function JN(n){return typeof n=="string"&&wn.LABEL_CLASS_VALUES.includes(n)}o(JN,"isLabelClass");function ZN(n){return typeof n=="string"&&wn.STYLE_SOURCE_VALUES.includes(n)}o(ZN,"isStyleSource")});var Q2=S(Sc=>{"use strict";Object.defineProperty(Sc,"__esModule",{value:!0});Sc.isCommandFrontmatter=eL;Sc.isPreconditionFrontmatter=tL;Sc.isGroundingFrontmatter=rL;Sc.isCommandBindingFrontmatter=nL;function eL(n){return jd(n,"exocmd__Command")}o(eL,"isCommandFrontmatter");function tL(n){return jd(n,"exocmd__Precondition")}o(tL,"isPreconditionFrontmatter");function rL(n){return jd(n,"exocmd__Grounding")}o(rL,"isGroundingFrontmatter");function nL(n){return jd(n,"exocmd__CommandBinding")}o(nL,"isCommandBindingFrontmatter");function jd(n,e){let t=n.exo__Instance_class;if(t==null)return!1;let r=Array.isArray(t)?t:[t];for(let i of r){if(typeof i!="string")continue;let s=i.match(/\[\[([^|\]]+)/);if((s?s[1]:i)===e)return!0}return!1}o(jd,"hasInstanceClass")});var K2=S($d=>{"use strict";Object.defineProperty($d,"__esModule",{value:!0});$d.hasPosition=iL;$d.isFixed=sL;function iL(n){return typeof n.x=="number"&&typeof n.y=="number"}o(iL,"hasPosition");function sL(n){return n.fx!==null&&n.fx!==void 0&&n.fy!==null&&n.fy!==void 0}o(sL,"isFixed")});var Y2=S(Vd=>{"use strict";Object.defineProperty(Vd,"__esModule",{value:!0});Vd.createEmptyGraphData=aL;Vd.mergeGraphData=oL;function aL(){return{nodes:[],edges:[],lastUpdated:Date.now(),version:0}}o(aL,"createEmptyGraphData");function oL(n,e){let t=new Map,r=new Set,i=[];for(let s of n.nodes)t.set(s.id,s);for(let s of e.nodes)t.set(s.id,s);for(let s of n.edges){let a=`${s.source}->${s.target}:${s.type}`;r.has(a)||(r.add(a),i.push(s))}for(let s of e.edges){let a=`${s.source}->${s.target}:${s.type}`;r.has(a)||(r.add(a),i.push(s))}return{nodes:Array.from(t.values()),edges:i,lastUpdated:Date.now(),version:Math.max(n.version??0,e.version??0)+1}}o(oL,"mergeGraphData")});var t0=S(Ud=>{"use strict";Object.defineProperty(Ud,"__esModule",{value:!0});Ud.createEdgeId=cL;Ud.edgesEqual=lL;function cL(n,e,t,r){let i=r?`|${r}`:"";return`${n}->${e}:${t}${i}`}o(cL,"createEdgeId");function lL(n,e){return n.source===e.source&&n.target===e.target&&n.type===e.type&&n.predicate===e.predicate}o(lL,"edgesEqual")});var r0=S($t=>{"use strict";Object.defineProperty($t,"__esModule",{value:!0});$t.BUILT_IN_EDGE_STYLES=$t.BUILT_IN_NODE_STYLES=$t.DEFAULT_EDGE_STYLE=$t.DEFAULT_NODE_STYLE=$t.RDF_TYPE_PREDICATES=void 0;$t.mergeNodeStyles=uL;$t.mergeEdgeStyles=fL;$t.extractLocalName=dL;$t.isClassType=hL;$t.isTypePredicate=pL;$t.isSubClassPredicate=mL;$t.RDF_TYPE_PREDICATES={RDF_TYPE:"http://www.w3.org/1999/02/22-rdf-syntax-ns#type",RDFS_CLASS:"http://www.w3.org/2000/01/rdf-schema#Class",OWL_CLASS:"http://www.w3.org/2002/07/owl#Class",RDFS_SUBCLASS_OF:"http://www.w3.org/2000/01/rdf-schema#subClassOf",OWL_EQUIVALENT_CLASS:"http://www.w3.org/2002/07/owl#equivalentClass",RDFS_LABEL:"http://www.w3.org/2000/01/rdf-schema#label",RDFS_COMMENT:"http://www.w3.org/2000/01/rdf-schema#comment"};$t.DEFAULT_NODE_STYLE={color:"#6366f1",borderColor:"#4f46e5",borderWidth:2,size:30,shape:"circle",icon:"",opacity:1,shadow:!1,animation:"none"};$t.DEFAULT_EDGE_STYLE={color:"#9ca3af",width:1,lineStyle:"solid",arrow:"standard",curvature:0,opacity:.6,showLabel:!1,labelPosition:.5};$t.BUILT_IN_NODE_STYLES={"http://www.w3.org/2000/01/rdf-schema#Class":{color:"#f59e0b",shape:"diamond",size:40},"http://www.w3.org/2002/07/owl#Class":{color:"#f59e0b",shape:"diamond",size:40},ems__Task:{color:"#22c55e",shape:"circle"},ems__Project:{color:"#3b82f6",shape:"square"},ems__Area:{color:"#8b5cf6",shape:"hexagon",size:40},ems__Meeting:{color:"#ec4899",shape:"circle"},exo__Class:{color:"#f59e0b",shape:"diamond"},ims__Person:{color:"#06b6d4",shape:"circle"}};$t.BUILT_IN_EDGE_STYLES={"http://www.w3.org/1999/02/22-rdf-syntax-ns#type":{color:"#f59e0b",lineStyle:"dashed",arrow:"standard"},"http://www.w3.org/2000/01/rdf-schema#subClassOf":{color:"#8b5cf6",width:2,arrow:"triangle"},"https://exocortex.my/ontology/ems#Effort_parent":{color:"#6366f1",width:2,arrow:"standard"},"https://exocortex.my/ontology/exo#Asset_prototype":{color:"#f59e0b",lineStyle:"dashed",arrow:"circle"},"https://exocortex.my/ontology/exo#references":{color:"#22c55e",opacity:.4,arrow:"standard"}};function uL(n,e){return{...n,...Object.fromEntries(Object.entries(e).filter(([,t])=>t!==void 0))}}o(uL,"mergeNodeStyles");function fL(n,e){return{...n,...Object.fromEntries(Object.entries(e).filter(([,t])=>t!==void 0))}}o(fL,"mergeEdgeStyles");function dL(n){let e=n.lastIndexOf("#"),t=n.lastIndexOf("/"),r=Math.max(e,t);return r>=0?n.substring(r+1):n}o(dL,"extractLocalName");function hL(n){return n===$t.RDF_TYPE_PREDICATES.RDFS_CLASS||n===$t.RDF_TYPE_PREDICATES.OWL_CLASS}o(hL,"isClassType");function pL(n){return n===$t.RDF_TYPE_PREDICATES.RDF_TYPE}o(pL,"isTypePredicate");function mL(n){return n===$t.RDF_TYPE_PREDICATES.RDFS_SUBCLASS_OF}o(mL,"isSubClassPredicate")});var J2=S(X2=>{"use strict";Object.defineProperty(X2,"__esModule",{value:!0})});var Ae=S(Bd=>{"use strict";Object.defineProperty(Bd,"__esModule",{value:!0});Bd.IRI=void 0;var n0=class n{static{o(this,"IRI")}constructor(e){let t=e.trim();if(t.length===0)throw new Error("IRI cannot be empty");if(!n.isValidIRI(t))throw new Error("Invalid IRI format");this._value=t}get value(){return this._value}equals(e){return this._value===e._value}toString(){return this._value}static isValidIRI(e){if(!e||e.trim().length===0||/\s/.test(e)||!/^[a-z][a-z0-9+.-]*:/i.test(e))return!1;let r=["http","https","ftp","ftps","file","mailto","tel","data","ws","wss","urn","obsidian"],i=e.match(/^([a-z][a-z0-9+.-]*?):/i);if(i){let s=i[1].toLowerCase();if(!r.includes(s))return!1}try{return new URL(e),!0}catch{return/^urn:[a-z0-9][a-z0-9-]{0,31}:[^\s]+$/i.test(e)}}};Bd.IRI=n0});var De=S(_o=>{"use strict";Object.defineProperty(_o,"__esModule",{value:!0});_o.Literal=void 0;_o.parseLanguageTag=Z2;_o.createDirectionalLiteral=yL;_o.createLiteralFromLanguageTag=_L;var gL="http://www.w3.org/2001/XMLSchema#string",Tu=class{static{o(this,"Literal")}constructor(e,t,r,i){if(e.length===0)throw new Error("Literal value cannot be empty");if(t&&r)throw new Error("Literal cannot have both datatype and language tag");if(i&&!r)throw new Error("Literal cannot have direction without language tag");if(i&&i!=="ltr"&&i!=="rtl")throw new Error('Direction must be "ltr" or "rtl"');this._value=e,this._datatype=t,this._language=r?r.toLowerCase():void 0,this._direction=i}get value(){return this._value}get datatype(){return this._datatype}get language(){return this._language}get direction(){return this._direction}hasDirection(){return this._direction!==void 0}equals(e){if(this._value!==e._value||this._language!==e._language||this._direction!==e._direction)return!1;let t=this.normalizedDatatype(),r=e.normalizedDatatype();return t===r}normalizedDatatype(){return!this._datatype||this._datatype.value===gL?null:this._datatype.value}toString(){let e=`"${this._value}"`;return this._datatype?e+=`^^<${this._datatype.value}>`:this._language&&(e+=`@${this._language}`,this._direction&&(e+=`--${this._direction}`)),e}};_o.Literal=Tu;function Z2(n){let t=n.lastIndexOf("--");if(t===-1)return{language:n.toLowerCase()};let r=n.substring(t+2),i=n.substring(0,t);return r==="ltr"||r==="rtl"?{language:i.toLowerCase(),direction:r}:{language:n.toLowerCase()}}o(Z2,"parseLanguageTag");function yL(n,e,t){return new Tu(n,void 0,e,t)}o(yL,"createDirectionalLiteral");function _L(n,e){let{language:t,direction:r}=Z2(e);return new Tu(n,void 0,t,r)}o(_L,"createLiteralFromLanguageTag")});var Vt=S(Wd=>{"use strict";Object.defineProperty(Wd,"__esModule",{value:!0});Wd.BlankNode=void 0;var qd=class n{static{o(this,"BlankNode")}constructor(e){let t=e.trim();if(t.length===0)throw new Error("BlankNode id cannot be empty");this._id=t}get id(){return this._id}equals(e){return this._id===e._id}toString(){return`_:${this._id}`}static generateId(){return`b${++n.counter}`}static create(){return new n(n.generateId())}};Wd.BlankNode=qd;qd.counter=0});var or=S(Gd=>{"use strict";Object.defineProperty(Gd,"__esModule",{value:!0});Gd.Namespace=void 0;var eT=Ae(),ke=class n{static{o(this,"Namespace")}constructor(e,t){if(e.trim().length===0)throw new Error("Namespace prefix cannot be empty");this._prefix=e,this._iri=new eT.IRI(t)}get prefix(){return this._prefix}get iri(){return this._iri}term(e){return new eT.IRI(`${this._iri.value}${e}`)}expand(e){let t=e.split(":");if(t.length!==2)return null;let[r,i]=t;return r!==this._prefix?null:this.term(i)}static forPrefix(e){if(!/^[a-z][a-zA-Z0-9]*$/.test(e))return null;let t=n.KNOWN_NAMESPACES.find(r=>r.prefix===e);return t||new n(e,`${n.EXOCORTEX_ONTOLOGY_BASE}${e}#`)}static fromPropertyKey(e){let t=/^([a-z][a-zA-Z0-9]*)__(.+)$/.exec(e);if(!t)return null;let r=n.forPrefix(t[1]);return r?{namespace:r,localName:t[2]}:null}};Gd.Namespace=ke;ke.RDF=new ke("rdf","http://www.w3.org/1999/02/22-rdf-syntax-ns#");ke.RDFS=new ke("rdfs","http://www.w3.org/2000/01/rdf-schema#");ke.OWL=new ke("owl","http://www.w3.org/2002/07/owl#");ke.XSD=new ke("xsd","http://www.w3.org/2001/XMLSchema#");ke.EXO=new ke("exo","https://exocortex.my/ontology/exo#");ke.EMS=new ke("ems","https://exocortex.my/ontology/ems#");ke.EXOCMD=new ke("exocmd","https://exocortex.my/ontology/exocmd#");ke.IMS=new ke("ims","https://exocortex.my/ontology/ims#");ke.ZTLK=new ke("ztlk","https://exocortex.my/ontology/ztlk#");ke.PTMS=new ke("ptms","https://exocortex.my/ontology/ptms#");ke.LIT=new ke("lit","https://exocortex.my/ontology/lit#");ke.INBOX=new ke("inbox","https://exocortex.my/ontology/inbox#");ke.PMBOK=new ke("pmbok","https://exocortex.my/ontology/pmbok#");ke.EXOCORTEX_ONTOLOGY_BASE="https://exocortex.my/ontology/";ke.KNOWN_NAMESPACES=[ke.EXO,ke.EMS,ke.EXOCMD,ke.IMS,ke.ZTLK,ke.PTMS,ke.LIT,ke.INBOX,ke.PMBOK]});var Kn=S(zd=>{"use strict";Object.defineProperty(zd,"__esModule",{value:!0});zd.Triple=void 0;var i0=Ae(),s0=De(),a0=Vt(),o0=class{static{o(this,"Triple")}constructor(e,t,r){this._subject=e,this._predicate=t,this._object=r}get subject(){return this._subject}get predicate(){return this._predicate}get object(){return this._object}equals(e){return!(!this.equalsNode(this._subject,e._subject)||!this._predicate.equals(e._predicate)||!this.equalsNode(this._object,e._object))}equalsNode(e,t){return e instanceof i0.IRI&&t instanceof i0.IRI||e instanceof a0.BlankNode&&t instanceof a0.BlankNode||e instanceof s0.Literal&&t instanceof s0.Literal||this.isQuotedTriple(e)&&this.isQuotedTriple(t)?e.equals(t):!1}isQuotedTriple(e){return typeof e=="object"&&e!==null&&"termType"in e&&e.termType==="QuotedTriple"}toString(){let e=this.nodeToString(this._subject),t=`<${this._predicate.value}>`,r=this.nodeToString(this._object);return`${e} ${t} ${r} .`}nodeToString(e){return e instanceof i0.IRI?`<${e.value}>`:e instanceof a0.BlankNode||e instanceof s0.Literal||this.isQuotedTriple(e)?e.toString():""}};zd.Triple=o0});var Au=S(Hd=>{"use strict";Object.defineProperty(Hd,"__esModule",{value:!0});Hd.QuotedTriple=void 0;var c0=Ae(),l0=De(),u0=Vt(),f0=class n{static{o(this,"QuotedTriple")}constructor(e,t,r){this._subject=e,this._predicate=t,this._object=r}get subject(){return this._subject}get predicate(){return this._predicate}get object(){return this._object}equals(e){return!(!this.equalsNode(this._subject,e._subject)||!this._predicate.equals(e._predicate)||!this.equalsNode(this._object,e._object))}equalsNode(e,t){return e instanceof c0.IRI&&t instanceof c0.IRI||e instanceof u0.BlankNode&&t instanceof u0.BlankNode||e instanceof l0.Literal&&t instanceof l0.Literal||e instanceof n&&t instanceof n?e.equals(t):!1}get termType(){return"QuotedTriple"}toString(){let e=this.nodeToString(this._subject),t=`<${this._predicate.value}>`,r=this.nodeToString(this._object);return`<< ${e} ${t} ${r} >>`}nodeToString(e){return e instanceof c0.IRI?`<${e.value}>`:e instanceof u0.BlankNode||e instanceof l0.Literal||e instanceof n?e.toString():""}};Hd.QuotedTriple=f0});var tT=S(Jt=>{"use strict";Object.defineProperty(Jt,"__esModule",{value:!0});Jt.QuotedTriple=Jt.Triple=Jt.Namespace=Jt.BlankNode=Jt.createLiteralFromLanguageTag=Jt.createDirectionalLiteral=Jt.parseLanguageTag=Jt.Literal=Jt.IRI=void 0;var SL=Ae();Object.defineProperty(Jt,"IRI",{enumerable:!0,get:o(function(){return SL.IRI},"get")});var Qd=De();Object.defineProperty(Jt,"Literal",{enumerable:!0,get:o(function(){return Qd.Literal},"get")});Object.defineProperty(Jt,"parseLanguageTag",{enumerable:!0,get:o(function(){return Qd.parseLanguageTag},"get")});Object.defineProperty(Jt,"createDirectionalLiteral",{enumerable:!0,get:o(function(){return Qd.createDirectionalLiteral},"get")});Object.defineProperty(Jt,"createLiteralFromLanguageTag",{enumerable:!0,get:o(function(){return Qd.createLiteralFromLanguageTag},"get")});var bL=Vt();Object.defineProperty(Jt,"BlankNode",{enumerable:!0,get:o(function(){return bL.BlankNode},"get")});var vL=or();Object.defineProperty(Jt,"Namespace",{enumerable:!0,get:o(function(){return vL.Namespace},"get")});var wL=Kn();Object.defineProperty(Jt,"Triple",{enumerable:!0,get:o(function(){return wL.Triple},"get")});var EL=Au();Object.defineProperty(Jt,"QuotedTriple",{enumerable:!0,get:o(function(){return EL.QuotedTriple},"get")})});var Kd=S(Xn=>{"use strict";Object.defineProperty(Xn,"__esModule",{value:!0});Xn.UUID_URL_NAMESPACE=Xn.DEFAULT_LANGUAGE_TAG=Xn.REQUIRED_PROPERTIES=Xn.ALLOWED_PROPERTIES=Xn.Exo003MetadataType=void 0;var Yn;(function(n){n.Namespace="namespace",n.Anchor="anchor",n.BlankNode="blank_node",n.Statement="statement",n.Body="body"})(Yn||(Xn.Exo003MetadataType=Yn={}));Xn.ALLOWED_PROPERTIES={[Yn.Namespace]:["metadata","uri","aliases"],[Yn.Anchor]:["metadata","uri","aliases"],[Yn.BlankNode]:["metadata","uri","aliases"],[Yn.Statement]:["metadata","subject","predicate","object","aliases"],[Yn.Body]:["metadata","subject","predicate","aliases"]};Xn.REQUIRED_PROPERTIES={[Yn.Namespace]:["metadata","uri"],[Yn.Anchor]:["metadata","uri"],[Yn.BlankNode]:["metadata","uri"],[Yn.Statement]:["metadata","subject","predicate","object"],[Yn.Body]:["metadata","subject","predicate"]};Xn.DEFAULT_LANGUAGE_TAG="ru";Xn.UUID_URL_NAMESPACE="6ba7b811-9dad-11d1-80b4-00c04fd430c8"});var rT=S(d0=>{"use strict";Object.defineProperty(d0,"__esModule",{value:!0});d0.default="ffffffff-ffff-ffff-ffff-ffffffffffff"});var nT=S(h0=>{"use strict";Object.defineProperty(h0,"__esModule",{value:!0});h0.default="00000000-0000-0000-0000-000000000000"});var iT=S(p0=>{"use strict";Object.defineProperty(p0,"__esModule",{value:!0});p0.default=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/i});var xu=S(m0=>{"use strict";Object.defineProperty(m0,"__esModule",{value:!0});var TL=iT();function AL(n){return typeof n=="string"&&TL.default.test(n)}o(AL,"validate");m0.default=AL});var Iu=S(g0=>{"use strict";Object.defineProperty(g0,"__esModule",{value:!0});var xL=xu();function IL(n){if(!(0,xL.default)(n))throw TypeError("Invalid UUID");let e;return Uint8Array.of((e=parseInt(n.slice(0,8),16))>>>24,e>>>16&255,e>>>8&255,e&255,(e=parseInt(n.slice(9,13),16))>>>8,e&255,(e=parseInt(n.slice(14,18),16))>>>8,e&255,(e=parseInt(n.slice(19,23),16))>>>8,e&255,(e=parseInt(n.slice(24,36),16))/1099511627776&255,e/4294967296&255,e>>>24&255,e>>>16&255,e>>>8&255,e&255)}o(IL,"parse");g0.default=IL});var Us=S(Cu=>{"use strict";Object.defineProperty(Cu,"__esModule",{value:!0});Cu.unsafeStringify=void 0;var CL=xu(),Pr=[];for(let n=0;n<256;++n)Pr.push((n+256).toString(16).slice(1));function sT(n,e=0){return(Pr[n[e+0]]+Pr[n[e+1]]+Pr[n[e+2]]+Pr[n[e+3]]+"-"+Pr[n[e+4]]+Pr[n[e+5]]+"-"+Pr[n[e+6]]+Pr[n[e+7]]+"-"+Pr[n[e+8]]+Pr[n[e+9]]+"-"+Pr[n[e+10]]+Pr[n[e+11]]+Pr[n[e+12]]+Pr[n[e+13]]+Pr[n[e+14]]+Pr[n[e+15]]).toLowerCase()}o(sT,"unsafeStringify");Cu.unsafeStringify=sT;function RL(n,e=0){let t=sT(n,e);if(!(0,CL.default)(t))throw TypeError("Stringified UUID is invalid");return t}o(RL,"stringify");Cu.default=RL});var Jd=S(y0=>{"use strict";Object.defineProperty(y0,"__esModule",{value:!0});var OL=require("crypto"),Xd=new Uint8Array(256),Yd=Xd.length;function PL(){return Yd>Xd.length-16&&((0,OL.randomFillSync)(Xd),Yd=0),Xd.slice(Yd,Yd+=16)}o(PL,"rng");y0.default=PL});var _0=S(Ou=>{"use strict";Object.defineProperty(Ou,"__esModule",{value:!0});Ou.updateV1State=void 0;var aT=Jd(),FL=Us(),Ru={};function DL(n,e,t){let r,i=n?._v6??!1;if(n){let s=Object.keys(n);s.length===1&&s[0]==="_v6"&&(n=void 0)}if(n)r=oT(n.random??n.rng?.()??(0,aT.default)(),n.msecs,n.nsecs,n.clockseq,n.node,e,t);else{let s=Date.now(),a=(0,aT.default)();cT(Ru,s,a),r=oT(a,Ru.msecs,Ru.nsecs,i?void 0:Ru.clockseq,i?void 0:Ru.node,e,t)}return e??(0,FL.unsafeStringify)(r)}o(DL,"v1");function cT(n,e,t){return n.msecs??=-1/0,n.nsecs??=0,e===n.msecs?(n.nsecs++,n.nsecs>=1e4&&(n.node=void 0,n.nsecs=0)):e>n.msecs?n.nsecs=0:e<n.msecs&&(n.node=void 0),n.node||(n.node=t.slice(10,16),n.node[0]|=1,n.clockseq=(t[8]<<8|t[9])&16383),n.msecs=e,n}o(cT,"updateV1State");Ou.updateV1State=cT;function oT(n,e,t,r,i,s,a=0){if(n.length<16)throw new Error("Random bytes length must be >= 16");if(!s)s=new Uint8Array(16),a=0;else if(a<0||a+16>s.length)throw new RangeError(`UUID byte range ${a}:${a+15} is out of buffer bounds`);e??=Date.now(),t??=0,r??=(n[8]<<8|n[9])&16383,i??=n.slice(10,16),e+=122192928e5;let c=((e&268435455)*1e4+t)%4294967296;s[a++]=c>>>24&255,s[a++]=c>>>16&255,s[a++]=c>>>8&255,s[a++]=c&255;let l=e/4294967296*1e4&268435455;s[a++]=l>>>8&255,s[a++]=l&255,s[a++]=l>>>24&15|16,s[a++]=l>>>16&255,s[a++]=r>>>8|128,s[a++]=r&255;for(let u=0;u<6;++u)s[a++]=i[u];return s}o(oT,"v1Bytes");Ou.default=DL});var b0=S(S0=>{"use strict";Object.defineProperty(S0,"__esModule",{value:!0});var NL=Iu(),LL=Us();function kL(n){let e=typeof n=="string"?(0,NL.default)(n):n,t=ML(e);return typeof n=="string"?(0,LL.unsafeStringify)(t):t}o(kL,"v1ToV6");S0.default=kL;function ML(n){return Uint8Array.of((n[6]&15)<<4|n[7]>>4&15,(n[7]&15)<<4|(n[4]&240)>>4,(n[4]&15)<<4|(n[5]&240)>>4,(n[5]&15)<<4|(n[0]&240)>>4,(n[0]&15)<<4|(n[1]&240)>>4,(n[1]&15)<<4|(n[2]&240)>>4,96|n[2]&15,n[3],n[8],n[9],n[10],n[11],n[12],n[13],n[14],n[15])}o(ML,"_v1ToV6")});var lT=S(v0=>{"use strict";Object.defineProperty(v0,"__esModule",{value:!0});var jL=require("crypto");function $L(n){return Array.isArray(n)?n=Buffer.from(n):typeof n=="string"&&(n=Buffer.from(n,"utf8")),(0,jL.createHash)("md5").update(n).digest()}o($L,"md5");v0.default=$L});var Pu=S(Bs=>{"use strict";Object.defineProperty(Bs,"__esModule",{value:!0});Bs.URL=Bs.DNS=Bs.stringToBytes=void 0;var uT=Iu(),VL=Us();function fT(n){n=unescape(encodeURIComponent(n));let e=new Uint8Array(n.length);for(let t=0;t<n.length;++t)e[t]=n.charCodeAt(t);return e}o(fT,"stringToBytes");Bs.stringToBytes=fT;Bs.DNS="6ba7b810-9dad-11d1-80b4-00c04fd430c8";Bs.URL="6ba7b811-9dad-11d1-80b4-00c04fd430c8";function UL(n,e,t,r,i,s){let a=typeof t=="string"?fT(t):t,c=typeof r=="string"?(0,uT.default)(r):r;if(typeof r=="string"&&(r=(0,uT.default)(r)),r?.length!==16)throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");let l=new Uint8Array(16+a.length);if(l.set(c),l.set(a,c.length),l=e(l),l[6]=l[6]&15|n,l[8]=l[8]&63|128,i){s=s||0;for(let u=0;u<16;++u)i[s+u]=l[u];return i}return(0,VL.unsafeStringify)(l)}o(UL,"v35");Bs.default=UL});var hT=S(So=>{"use strict";Object.defineProperty(So,"__esModule",{value:!0});So.URL=So.DNS=void 0;var BL=lT(),w0=Pu(),dT=Pu();Object.defineProperty(So,"DNS",{enumerable:!0,get:o(function(){return dT.DNS},"get")});Object.defineProperty(So,"URL",{enumerable:!0,get:o(function(){return dT.URL},"get")});function E0(n,e,t,r){return(0,w0.default)(48,BL.default,n,e,t,r)}o(E0,"v3");E0.DNS=w0.DNS;E0.URL=w0.URL;So.default=E0});var pT=S(T0=>{"use strict";Object.defineProperty(T0,"__esModule",{value:!0});var qL=require("crypto");T0.default={randomUUID:qL.randomUUID}});var gT=S(A0=>{"use strict";Object.defineProperty(A0,"__esModule",{value:!0});var mT=pT(),WL=Jd(),GL=Us();function zL(n,e,t){if(mT.default.randomUUID&&!e&&!n)return mT.default.randomUUID();n=n||{};let r=n.random??n.rng?.()??(0,WL.default)();if(r.length<16)throw new Error("Random bytes length must be >= 16");if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,e){if(t=t||0,t<0||t+16>e.length)throw new RangeError(`UUID byte range ${t}:${t+15} is out of buffer bounds`);for(let i=0;i<16;++i)e[t+i]=r[i];return e}return(0,GL.unsafeStringify)(r)}o(zL,"v4");A0.default=zL});var yT=S(x0=>{"use strict";Object.defineProperty(x0,"__esModule",{value:!0});var HL=require("crypto");function QL(n){return Array.isArray(n)?n=Buffer.from(n):typeof n=="string"&&(n=Buffer.from(n,"utf8")),(0,HL.createHash)("sha1").update(n).digest()}o(QL,"sha1");x0.default=QL});var ST=S(bo=>{"use strict";Object.defineProperty(bo,"__esModule",{value:!0});bo.URL=bo.DNS=void 0;var KL=yT(),I0=Pu(),_T=Pu();Object.defineProperty(bo,"DNS",{enumerable:!0,get:o(function(){return _T.DNS},"get")});Object.defineProperty(bo,"URL",{enumerable:!0,get:o(function(){return _T.URL},"get")});function C0(n,e,t,r){return(0,I0.default)(80,KL.default,n,e,t,r)}o(C0,"v5");C0.DNS=I0.DNS;C0.URL=I0.URL;bo.default=C0});var bT=S(R0=>{"use strict";Object.defineProperty(R0,"__esModule",{value:!0});var YL=Us(),XL=_0(),JL=b0();function ZL(n,e,t){n??={},t??=0;let r=(0,XL.default)({...n,_v6:!0},new Uint8Array(16));if(r=(0,JL.default)(r),e){for(let i=0;i<16;i++)e[t+i]=r[i];return e}return(0,YL.unsafeStringify)(r)}o(ZL,"v6");R0.default=ZL});var vT=S(O0=>{"use strict";Object.defineProperty(O0,"__esModule",{value:!0});var ek=Iu(),tk=Us();function rk(n){let e=typeof n=="string"?(0,ek.default)(n):n,t=nk(e);return typeof n=="string"?(0,tk.unsafeStringify)(t):t}o(rk,"v6ToV1");O0.default=rk;function nk(n){return Uint8Array.of((n[3]&15)<<4|n[4]>>4&15,(n[4]&15)<<4|(n[5]&240)>>4,(n[5]&15)<<4|n[6]&15,n[7],(n[1]&15)<<4|(n[2]&240)>>4,(n[2]&15)<<4|(n[3]&240)>>4,16|(n[0]&240)>>4,(n[0]&15)<<4|(n[1]&240)>>4,n[8],n[9],n[10],n[11],n[12],n[13],n[14],n[15])}o(nk,"_v6ToV1")});var AT=S(Fu=>{"use strict";Object.defineProperty(Fu,"__esModule",{value:!0});Fu.updateV7State=void 0;var wT=Jd(),ik=Us(),P0={};function sk(n,e,t){let r;if(n)r=ET(n.random??n.rng?.()??(0,wT.default)(),n.msecs,n.seq,e,t);else{let i=Date.now(),s=(0,wT.default)();TT(P0,i,s),r=ET(s,P0.msecs,P0.seq,e,t)}return e??(0,ik.unsafeStringify)(r)}o(sk,"v7");function TT(n,e,t){return n.msecs??=-1/0,n.seq??=0,e>n.msecs?(n.seq=t[6]<<23|t[7]<<16|t[8]<<8|t[9],n.msecs=e):(n.seq=n.seq+1|0,n.seq===0&&n.msecs++),n}o(TT,"updateV7State");Fu.updateV7State=TT;function ET(n,e,t,r,i=0){if(n.length<16)throw new Error("Random bytes length must be >= 16");if(!r)r=new Uint8Array(16),i=0;else if(i<0||i+16>r.length)throw new RangeError(`UUID byte range ${i}:${i+15} is out of buffer bounds`);return e??=Date.now(),t??=n[6]*127<<24|n[7]<<16|n[8]<<8|n[9],r[i++]=e/1099511627776&255,r[i++]=e/4294967296&255,r[i++]=e/16777216&255,r[i++]=e/65536&255,r[i++]=e/256&255,r[i++]=e&255,r[i++]=112|t>>>28&15,r[i++]=t>>>20&255,r[i++]=128|t>>>14&63,r[i++]=t>>>6&255,r[i++]=t<<2&255|n[10]&3,r[i++]=n[11],r[i++]=n[12],r[i++]=n[13],r[i++]=n[14],r[i++]=n[15],r}o(ET,"v7Bytes");Fu.default=sk});var xT=S(F0=>{"use strict";Object.defineProperty(F0,"__esModule",{value:!0});var ak=xu();function ok(n){if(!(0,ak.default)(n))throw TypeError("Invalid UUID");return parseInt(n.slice(14,15),16)}o(ok,"version");F0.default=ok});var En=S(ct=>{"use strict";Object.defineProperty(ct,"__esModule",{value:!0});ct.version=ct.validate=ct.v7=ct.v6ToV1=ct.v6=ct.v5=ct.v4=ct.v3=ct.v1ToV6=ct.v1=ct.stringify=ct.parse=ct.NIL=ct.MAX=void 0;var ck=rT();Object.defineProperty(ct,"MAX",{enumerable:!0,get:o(function(){return ck.default},"get")});var lk=nT();Object.defineProperty(ct,"NIL",{enumerable:!0,get:o(function(){return lk.default},"get")});var uk=Iu();Object.defineProperty(ct,"parse",{enumerable:!0,get:o(function(){return uk.default},"get")});var fk=Us();Object.defineProperty(ct,"stringify",{enumerable:!0,get:o(function(){return fk.default},"get")});var dk=_0();Object.defineProperty(ct,"v1",{enumerable:!0,get:o(function(){return dk.default},"get")});var hk=b0();Object.defineProperty(ct,"v1ToV6",{enumerable:!0,get:o(function(){return hk.default},"get")});var pk=hT();Object.defineProperty(ct,"v3",{enumerable:!0,get:o(function(){return pk.default},"get")});var mk=gT();Object.defineProperty(ct,"v4",{enumerable:!0,get:o(function(){return mk.default},"get")});var gk=ST();Object.defineProperty(ct,"v5",{enumerable:!0,get:o(function(){return gk.default},"get")});var yk=bT();Object.defineProperty(ct,"v6",{enumerable:!0,get:o(function(){return yk.default},"get")});var _k=vT();Object.defineProperty(ct,"v6ToV1",{enumerable:!0,get:o(function(){return _k.default},"get")});var Sk=AT();Object.defineProperty(ct,"v7",{enumerable:!0,get:o(function(){return Sk.default},"get")});var bk=xu();Object.defineProperty(ct,"validate",{enumerable:!0,get:o(function(){return bk.default},"get")});var vk=xT();Object.defineProperty(ct,"version",{enumerable:!0,get:o(function(){return vk.default},"get")})});var L0=S(Zd=>{"use strict";Object.defineProperty(Zd,"__esModule",{value:!0});Zd.Exo003UUIDGenerator=void 0;var D0=En(),IT=Kd(),N0=class{static{o(this,"Exo003UUIDGenerator")}static generateNamespaceUUID(e){if(!e||e.trim().length===0)throw new Error("Namespace URI cannot be empty");return(0,D0.v5)(e,IT.UUID_URL_NAMESPACE)}static generateAssetUUID(e,t){if(!t||t.trim().length===0)throw new Error("Local identifier cannot be empty");let r=this.generateNamespaceUUID(e);return(0,D0.v5)(t,r)}static generateFromIRI(e){if(!e||e.trim().length===0)throw new Error("IRI cannot be empty");let{namespace:t,localName:r}=this.splitIRI(e);return r?this.generateAssetUUID(t,r):(0,D0.v5)(e,IT.UUID_URL_NAMESPACE)}static generateBlankNodeUUID(e,t){if(!e||e.trim().length===0)throw new Error("Blank node ID cannot be empty");let r="urn:exocortex:blank-node:",i=t?`${t}#${e}`:e;return this.generateAssetUUID(r,i)}static generateStatementUUID(e,t,r){if(!e||!t||!r)throw new Error("Subject, predicate, and object cannot be empty");let i="urn:exocortex:statement:",s=`${e} ${t} ${r}`;return this.generateAssetUUID(i,s)}static generateBodyUUID(e,t){let r="urn:exocortex:body:",i=e;return t?.datatype?i+=`^^${t.datatype}`:t?.language&&(i+=`@${t.language}`,t.direction&&(i+=`--${t.direction}`)),this.generateAssetUUID(r,i)}static splitIRI(e){let t=e.lastIndexOf("#");if(t!==-1&&t<e.length-1)return{namespace:e.substring(0,t+1),localName:e.substring(t+1)};let r=e.lastIndexOf("/"),i=e.indexOf("://");return r!==-1&&r>i+2&&r<e.length-1?{namespace:e.substring(0,r+1),localName:e.substring(r+1)}:{namespace:e,localName:""}}static isValidUUID(e){return/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(e)}};Zd.Exo003UUIDGenerator=N0});var RT=S(th=>{"use strict";Object.defineProperty(th,"__esModule",{value:!0});th.Exo003Parser=void 0;var mt=Kd(),Du=L0(),wa=Ae(),eh=De(),CT=Vt(),wk=Kn(),k0=class{static{o(this,"Exo003Parser")}static parse(e,t){let r=this.validate(e);if(!r.valid)return{success:!1,errors:r.errors};let i=e.metadata;try{return{success:!0,metadata:this.parseByType(e,i),bodyContent:i===mt.Exo003MetadataType.Body?t:void 0}}catch(s){return{success:!1,errors:[s instanceof Error?s.message:String(s)]}}}static validate(e){let t=[],r=[];if(!e.metadata)return t.push("Missing required property: metadata"),{valid:!1,errors:t,warnings:r};let i=e.metadata;if(!Object.values(mt.Exo003MetadataType).includes(i))return t.push(`Invalid metadata: ${i}. Valid types: ${Object.values(mt.Exo003MetadataType).join(", ")}`),{valid:!1,errors:t,warnings:r};let s=i,a=mt.ALLOWED_PROPERTIES[s],c=mt.REQUIRED_PROPERTIES[s];for(let l of c)(e[l]===void 0||e[l]===null)&&t.push(`Missing required property: ${l}`);for(let l of Object.keys(e))a.includes(l)||t.push(`Forbidden property for ${s}: ${l}`);switch(s){case mt.Exo003MetadataType.Namespace:this.validateNamespaceMetadata(e,t);break;case mt.Exo003MetadataType.Anchor:this.validateAnchorMetadata(e,t);break;case mt.Exo003MetadataType.BlankNode:this.validateBlankNodeMetadata(e,t);break;case mt.Exo003MetadataType.Statement:this.validateStatementMetadata(e,t);break;case mt.Exo003MetadataType.Body:this.validateBodyMetadata(e,t,r);break}return{valid:t.length===0,errors:t,warnings:r}}static parseByType(e,t){let r={metadata:t,aliases:e.aliases};switch(t){case mt.Exo003MetadataType.Namespace:return{...r,metadata:mt.Exo003MetadataType.Namespace,uri:e.uri};case mt.Exo003MetadataType.Anchor:return{...r,metadata:mt.Exo003MetadataType.Anchor,uri:e.uri};case mt.Exo003MetadataType.BlankNode:return{...r,metadata:mt.Exo003MetadataType.BlankNode,uri:e.uri};case mt.Exo003MetadataType.Statement:return{...r,metadata:mt.Exo003MetadataType.Statement,subject:e.subject,predicate:e.predicate,object:e.object};case mt.Exo003MetadataType.Body:return{...r,metadata:mt.Exo003MetadataType.Body,subject:e.subject,predicate:e.predicate}}}static validateNamespaceMetadata(e,t){let r=e.uri;if(r&&typeof r!="string")t.push("uri must be a string");else if(r)try{new wa.IRI(r)}catch{t.push(`uri is not a valid IRI: ${String(r)}`)}}static validateAnchorMetadata(e,t){let r=e.uri;if(r&&typeof r!="string")t.push("uri must be a string");else if(r)try{new wa.IRI(r)}catch{t.push(`uri is not a valid IRI: ${String(r)}`)}}static validateBlankNodeMetadata(e,t){let r=e.uri;if(r&&typeof r!="string")t.push("uri must be a string");else if(r){let i=r;if(!i.startsWith("_:"))try{new wa.IRI(i)}catch{t.push(`uri is not a valid IRI or blank node identifier: ${String(r)}`)}}}static validateStatementMetadata(e,t){let r=e.subject,i=e.predicate,s=e.object,a=[["subject",r],["predicate",i],["object",s]];for(let[c,l]of a)l&&typeof l!="string"&&t.push(`${c} must be a string`)}static validateBodyMetadata(e,t,r){let i=e.subject,s=e.predicate;i&&typeof i!="string"&&t.push("subject must be a string"),s&&typeof s!="string"&&t.push("predicate must be a string")}static toTriple(e,t,r){let i=t(e.subject),s;if(i.type==="iri")s=new wa.IRI(i.value);else if(i.type==="blank")s=new CT.BlankNode(i.value);else throw new Error("Statement subject cannot be a literal");let a=t(e.predicate);if(a.type!=="iri")throw new Error("Statement predicate must be an IRI");let c=new wa.IRI(a.value),l=t(e.object),u;if(l.type==="iri")u=new wa.IRI(l.value);else if(l.type==="blank")u=new CT.BlankNode(l.value);else{let f=r||l.value;if(l.datatype)u=new eh.Literal(f,new wa.IRI(l.datatype));else{let d=l.language||mt.DEFAULT_LANGUAGE_TAG;u=(0,eh.createDirectionalLiteral)(f,d,l.direction)}}return new wk.Triple(s,c,u)}static toLiteral(e,t,r){if(r?.datatype)return new eh.Literal(t,new wa.IRI(r.datatype));let i=r?.language||mt.DEFAULT_LANGUAGE_TAG;return(0,eh.createDirectionalLiteral)(t,i,r?.direction)}static isExo003Format(e){let t=e.metadata;return typeof t=="string"&&Object.values(mt.Exo003MetadataType).includes(t)}static generateUUID(e,t){switch(e.metadata){case mt.Exo003MetadataType.Namespace:return Du.Exo003UUIDGenerator.generateNamespaceUUID(e.uri);case mt.Exo003MetadataType.Anchor:return Du.Exo003UUIDGenerator.generateNamespaceUUID(e.uri);case mt.Exo003MetadataType.BlankNode:return Du.Exo003UUIDGenerator.generateNamespaceUUID(e.uri);case mt.Exo003MetadataType.Statement:{let r=e;return Du.Exo003UUIDGenerator.generateStatementUUID(r.subject,r.predicate,r.object)}case mt.Exo003MetadataType.Body:{let r=e;return Du.Exo003UUIDGenerator.generateBodyUUID(r.subject+"|"+r.predicate)}}}};th.Exo003Parser=k0});var M0=S(Vr=>{"use strict";Object.defineProperty(Vr,"__esModule",{value:!0});Vr.Exo003Parser=Vr.Exo003UUIDGenerator=Vr.UUID_URL_NAMESPACE=Vr.DEFAULT_LANGUAGE_TAG=Vr.REQUIRED_PROPERTIES=Vr.ALLOWED_PROPERTIES=Vr.Exo003MetadataType=void 0;var Nu=Kd();Object.defineProperty(Vr,"Exo003MetadataType",{enumerable:!0,get:o(function(){return Nu.Exo003MetadataType},"get")});Object.defineProperty(Vr,"ALLOWED_PROPERTIES",{enumerable:!0,get:o(function(){return Nu.ALLOWED_PROPERTIES},"get")});Object.defineProperty(Vr,"REQUIRED_PROPERTIES",{enumerable:!0,get:o(function(){return Nu.REQUIRED_PROPERTIES},"get")});Object.defineProperty(Vr,"DEFAULT_LANGUAGE_TAG",{enumerable:!0,get:o(function(){return Nu.DEFAULT_LANGUAGE_TAG},"get")});Object.defineProperty(Vr,"UUID_URL_NAMESPACE",{enumerable:!0,get:o(function(){return Nu.UUID_URL_NAMESPACE},"get")});var Ek=L0();Object.defineProperty(Vr,"Exo003UUIDGenerator",{enumerable:!0,get:o(function(){return Ek.Exo003UUIDGenerator},"get")});var Tk=RT();Object.defineProperty(Vr,"Exo003Parser",{enumerable:!0,get:o(function(){return Tk.Exo003Parser},"get")})});var qs=S(rh=>{"use strict";Object.defineProperty(rh,"__esModule",{value:!0});rh.WikiLinkHelpers=void 0;var Lu=class{static{o(this,"WikiLinkHelpers")}static normalize(e){if(!e)return"";let t=e.replace(this.WIKI_LINK_PATTERN,"").trim();if(!t)return"";let r=t.indexOf("|");if(r===-1)return t;let i=t.substring(0,r).trim(),s=t.substring(r+1).trim();return this.UUID_PATTERN.test(i)&&s||i}static normalizeArray(e){return e?(Array.isArray(e)?e:[e]).map(r=>this.normalize(r)).filter(r=>r.length>0):[]}static equals(e,t){return this.normalize(e)===this.normalize(t)}static includes(e,t){let r=this.normalizeArray(e),i=this.normalize(t);return r.includes(i)}};rh.WikiLinkHelpers=Lu;Lu.WIKI_LINK_PATTERN=/\[\[|\]\]/g;Lu.UUID_PATTERN=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i});var kn=S(tt=>{"use strict";Object.defineProperty(tt,"__esModule",{value:!0});tt.CommandBindingProperty=tt.GroundingProperty=tt.PreconditionProperty=tt.CommandProperty=tt.GroundingType=tt.getEffortStatusLabel=tt.isTrashedStatus=tt.isDoneStatus=tt.normalizeEffortStatus=tt.EFFORT_STATUS_OPTIONS=tt.STATUS_NAME_TO_WIKILINK=tt.STATUS_NAME_TO_ENUM=tt.EFFORT_STATUS_CONFIG=tt.EffortStatus=tt.AssetClass=void 0;var Ak=Eu();Object.defineProperty(tt,"AssetClass",{enumerable:!0,get:o(function(){return Ak.AssetClass},"get")});var xk=yc();Object.defineProperty(tt,"EffortStatus",{enumerable:!0,get:o(function(){return xk.EffortStatus},"get")});var Ea=Jy();Object.defineProperty(tt,"EFFORT_STATUS_CONFIG",{enumerable:!0,get:o(function(){return Ea.EFFORT_STATUS_CONFIG},"get")});Object.defineProperty(tt,"STATUS_NAME_TO_ENUM",{enumerable:!0,get:o(function(){return Ea.STATUS_NAME_TO_ENUM},"get")});Object.defineProperty(tt,"STATUS_NAME_TO_WIKILINK",{enumerable:!0,get:o(function(){return Ea.STATUS_NAME_TO_WIKILINK},"get")});Object.defineProperty(tt,"EFFORT_STATUS_OPTIONS",{enumerable:!0,get:o(function(){return Ea.EFFORT_STATUS_OPTIONS},"get")});Object.defineProperty(tt,"normalizeEffortStatus",{enumerable:!0,get:o(function(){return Ea.normalizeEffortStatus},"get")});Object.defineProperty(tt,"isDoneStatus",{enumerable:!0,get:o(function(){return Ea.isDoneStatus},"get")});Object.defineProperty(tt,"isTrashedStatus",{enumerable:!0,get:o(function(){return Ea.isTrashedStatus},"get")});Object.defineProperty(tt,"getEffortStatusLabel",{enumerable:!0,get:o(function(){return Ea.getEffortStatusLabel},"get")});var Ik=_c();Object.defineProperty(tt,"GroundingType",{enumerable:!0,get:o(function(){return Ik.GroundingType},"get")});var nh=Zy();Object.defineProperty(tt,"CommandProperty",{enumerable:!0,get:o(function(){return nh.CommandProperty},"get")});Object.defineProperty(tt,"PreconditionProperty",{enumerable:!0,get:o(function(){return nh.PreconditionProperty},"get")});Object.defineProperty(tt,"GroundingProperty",{enumerable:!0,get:o(function(){return nh.GroundingProperty},"get")});Object.defineProperty(tt,"CommandBindingProperty",{enumerable:!0,get:o(function(){return nh.CommandBindingProperty},"get")})});var Eo=S(Ur=>{"use strict";Object.defineProperty(Ur,"__esModule",{value:!0});Ur.hasClass=wo;Ur.isAreaOrProject=Ck;Ur.isEffort=Rk;Ur.hasStatus=Ok;Ur.isAssetArchived=Pk;Ur.hasEmptyProperties=Fk;Ur.needsFolderRepair=Dk;Ur.getTodayDateString=j0;Ur.isPlannedForToday=Nk;Ur.hasPlannedStartTimestamp=Lk;Ur.extractDailyNoteDate=kk;Ur.isCurrentDateGteDay=Mk;Ur.inheritsFromPrototype=FT;Ur.isPrototypeClass=$k;var PT=qs(),vo=kn();function wo(n,e){return n?(Array.isArray(n)?n:[n]).some(r=>PT.WikiLinkHelpers.normalize(r)===e):!1}o(wo,"hasClass");function Ck(n){return wo(n,vo.AssetClass.AREA)||wo(n,vo.AssetClass.PROJECT)}o(Ck,"isAreaOrProject");function Rk(n){return wo(n,vo.AssetClass.TASK)||wo(n,vo.AssetClass.PROJECT)||wo(n,vo.AssetClass.MEETING)}o(Rk,"isEffort");function Ok(n,e){if(!n)return!1;let t=Array.isArray(n)?n[0]:n;return t?PT.WikiLinkHelpers.normalize(t)===e:!1}o(Ok,"hasStatus");function Pk(n){if(n===!0||n===1)return!0;if(typeof n=="string"){let e=n.toLowerCase();return e==="true"||e==="yes"}return!1}o(Pk,"isAssetArchived");function Fk(n){return!n||Object.keys(n).length===0?!1:Object.values(n).some(e=>!!(e==null||typeof e=="string"&&e.trim()===""||Array.isArray(e)&&e.length===0||typeof e=="object"&&!Array.isArray(e)&&Object.keys(e).length===0))}o(Fk,"hasEmptyProperties");function Dk(n,e){if(!e)return!1;let t=n.replace(/\/$/,""),r=e.replace(/\/$/,"");return t!==r}o(Dk,"needsFolderRepair");function j0(){let n=new Date,e=n.getFullYear(),t=String(n.getMonth()+1).padStart(2,"0"),r=String(n.getDate()).padStart(2,"0");return`${e}-${t}-${r}`}o(j0,"getTodayDateString");function Nk(n){let e=n.ems__Effort_plannedStartTimestamp;if(!e)return!1;let t=j0();return typeof e=="string"?e.split("T")[0]===t:Array.isArray(e)&&e.length>0?String(e[0]).split("T")[0]===t:!1}o(Nk,"isPlannedForToday");function Lk(n){let e=n.ems__Effort_plannedStartTimestamp;return e?typeof e=="string"?e.trim().length>0:Array.isArray(e)&&e.length>0?String(e[0]).trim().length>0:!1:!1}o(Lk,"hasPlannedStartTimestamp");function kk(n){let e=n.pn__DailyNote_day;if(!e)return null;if(typeof e=="string"){let t=e.match(/\[\[([^\[\]]+)\]\]/);return t?t[1]:e}if(Array.isArray(e)&&e.length>0){let t=String(e[0]),r=t.match(/\[\[([^\[\]]+)\]\]/);return r?r[1]:t}return null}o(kk,"extractDailyNoteDate");function Mk(n){return j0()>=n}o(Mk,"isCurrentDateGteDay");function OT(n){return n?n.replace(/^["']|["']$/g,"").replace(/\[\[|\]\]/g,"").trim():""}o(OT,"normalizeWithQuotes");var jk=10;function FT(n,e=jk){let t=n.exo__Class_superClass;if(!t)return!1;let r=new Set,i=[],s=Array.isArray(t)?t:[t];for(let a of s){let c=OT(a);c&&i.push({className:c,depth:0})}for(;i.length>0;){let a=i.shift();if(!a)continue;let{className:c,depth:l}=a;if(l>e)continue;if(c===vo.AssetClass.PROTOTYPE)return!0;if(r.has(c))continue;r.add(c);let u=`${c}__exo__Class_superClass`,f=n[u];if(f){let d=Array.isArray(f)?f:[f];for(let h of d){let p=OT(h);p&&!r.has(p)&&i.push({className:p,depth:l+1})}}}return!1}o(FT,"inheritsFromPrototype");function $k(n,e){return wo(n,vo.AssetClass.CLASS)?FT(e):!1}o($k,"isPrototypeClass")});var DT=S(vc=>{"use strict";Object.defineProperty(vc,"__esModule",{value:!0});vc.canCreateTask=Vk;vc.canCreateRelatedTask=Uk;vc.canConvertTaskToProject=Bk;vc.canSetCriticalityZone=qk;var bc=Eo(),$0=kn();function Vk(n){return(0,bc.isAreaOrProject)(n.instanceClass)}o(Vk,"canCreateTask");function Uk(n){return!(!(0,bc.hasClass)(n.instanceClass,$0.AssetClass.TASK)||(0,bc.isAssetArchived)(n.isArchived))}o(Uk,"canCreateRelatedTask");function Bk(n){return(0,bc.hasClass)(n.instanceClass,$0.AssetClass.TASK)}o(Bk,"canConvertTaskToProject");function qk(n){return!(!(0,bc.hasClass)(n.instanceClass,$0.AssetClass.TASK)||(0,bc.isAssetArchived)(n.isArchived))}o(qk,"canSetCriticalityZone")});var NT=S(wc=>{"use strict";Object.defineProperty(wc,"__esModule",{value:!0});wc.canCreateProject=Wk;wc.canMoveToAnalysis=Gk;wc.canMoveToToDo=zk;wc.canConvertProjectToTask=Hk;var Ta=Eo(),Aa=kn();function Wk(n){return(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.AREA)||(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.INITIATIVE)||(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.PROJECT)}o(Wk,"canCreateProject");function Gk(n){return(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.PROJECT)?(0,Ta.hasStatus)(n.currentStatus,Aa.EffortStatus.BACKLOG):!1}o(Gk,"canMoveToAnalysis");function zk(n){return(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.PROJECT)?(0,Ta.hasStatus)(n.currentStatus,Aa.EffortStatus.ANALYSIS):!1}o(zk,"canMoveToToDo");function Hk(n){return(0,Ta.hasClass)(n.instanceClass,Aa.AssetClass.PROJECT)}o(Hk,"canConvertProjectToTask")});var MT=S(ih=>{"use strict";Object.defineProperty(ih,"__esModule",{value:!0});ih.canCreateChildArea=Qk;ih.canSetActiveFocus=Kk;var LT=Eo(),kT=kn();function Qk(n){return(0,LT.hasClass)(n.instanceClass,kT.AssetClass.AREA)}o(Qk,"canCreateChildArea");function Kk(n){return(0,LT.hasClass)(n.instanceClass,kT.AssetClass.AREA)}o(Kk,"canSetActiveFocus")});var $T=S(on=>{"use strict";Object.defineProperty(on,"__esModule",{value:!0});on.canPlanOnToday=Yk;on.canPlanForEvening=Xk;on.canShiftDayBackward=Jk;on.canShiftDayForward=Zk;on.canSetDraftStatus=e4;on.canMoveToBacklog=t4;on.canStartEffort=r4;on.canMarkDone=n4;on.canTrashEffort=i4;on.canVoteOnEffort=s4;on.canRollbackStatus=a4;on.canArchiveTask=o4;on.canMarkReviewed=c4;var jT=qs(),dt=Eo(),an=kn();function Yk(n){return!(!(0,dt.isEffort)(n.instanceClass)||(0,dt.isPlannedForToday)(n.metadata))}o(Yk,"canPlanOnToday");function Xk(n){return!(0,dt.hasClass)(n.instanceClass,an.AssetClass.TASK)&&!(0,dt.hasClass)(n.instanceClass,an.AssetClass.MEETING)?!1:(0,dt.hasStatus)(n.currentStatus,an.EffortStatus.BACKLOG)}o(Xk,"canPlanForEvening");function Jk(n){return(0,dt.isEffort)(n.instanceClass)?(0,dt.hasPlannedStartTimestamp)(n.metadata):!1}o(Jk,"canShiftDayBackward");function Zk(n){return(0,dt.isEffort)(n.instanceClass)?(0,dt.hasPlannedStartTimestamp)(n.metadata):!1}o(Zk,"canShiftDayForward");function e4(n){return(0,dt.isEffort)(n.instanceClass)?!n.currentStatus:!1}o(e4,"canSetDraftStatus");function t4(n){return(0,dt.isEffort)(n.instanceClass)?(0,dt.hasStatus)(n.currentStatus,an.EffortStatus.DRAFT):!1}o(t4,"canMoveToBacklog");function r4(n){return(0,dt.isEffort)(n.instanceClass)?(0,dt.hasClass)(n.instanceClass,an.AssetClass.TASK)||(0,dt.hasClass)(n.instanceClass,an.AssetClass.MEETING)?(0,dt.hasStatus)(n.currentStatus,an.EffortStatus.BACKLOG):(0,dt.hasClass)(n.instanceClass,an.AssetClass.PROJECT)?(0,dt.hasStatus)(n.currentStatus,an.EffortStatus.TODO):!1:!1}o(r4,"canStartEffort");function n4(n){return(0,dt.isEffort)(n.instanceClass)?(0,dt.hasStatus)(n.currentStatus,an.EffortStatus.DOING):!1}o(n4,"canMarkDone");function i4(n){return(0,dt.isEffort)(n.instanceClass)?n.currentStatus?!(Array.isArray(n.currentStatus)?n.currentStatus:[n.currentStatus]).some(r=>{let i=jT.WikiLinkHelpers.normalize(r);return i===an.EffortStatus.TRASHED||i===an.EffortStatus.DONE}):!0:!1}o(i4,"canTrashEffort");function s4(n){return!(!(0,dt.isEffort)(n.instanceClass)||(0,dt.isAssetArchived)(n.isArchived))}o(s4,"canVoteOnEffort");function a4(n){if(!(0,dt.isEffort)(n.instanceClass)||(0,dt.isAssetArchived)(n.isArchived)||!n.currentStatus)return!1;let e=Array.isArray(n.currentStatus)?n.currentStatus[0]:n.currentStatus;return!(!e||jT.WikiLinkHelpers.normalize(e)===an.EffortStatus.TRASHED)}o(a4,"canRollbackStatus");function o4(n){return!(0,dt.isAssetArchived)(n.isArchived)}o(o4,"canArchiveTask");function c4(n){return!(!(0,dt.hasClass)(n.instanceClass,an.AssetClass.TASK)&&!(0,dt.hasClass)(n.instanceClass,an.AssetClass.PROJECT)||(0,dt.isAssetArchived)(n.isArchived))}o(c4,"canMarkReviewed")});var VT=S(Jn=>{"use strict";Object.defineProperty(Jn,"__esModule",{value:!0});Jn.canCreateEvent=f4;Jn.canCreateInstance=d4;Jn.canCleanProperties=h4;Jn.canRepairFolder=p4;Jn.canRenameToUid=m4;Jn.canCopyLabelToAliases=g4;Jn.canCreateNarrowerConcept=y4;Jn.canCreateSubclass=_4;Jn.canCreateTaskForDailyNote=S4;Jn.canCopyFleetingNoteLabel=b4;var Br=Eo(),Ws=kn(),l4="75302770-279e-4a59-ba85-09df29725713",u4="fca0a931-a01f-48e4-b72a-4af206c94bc7";function f4(n){return(0,Br.isAreaOrProject)(n.instanceClass)}o(f4,"canCreateEvent");function d4(n){return(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.TASK_PROTOTYPE)||(0,Br.hasClass)(n.instanceClass,l4)||(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.MEETING_PROTOTYPE)||(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.EVENT_PROTOTYPE)||(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.PROJECT_PROTOTYPE)||(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.PROTOTYPE)||n.classIsPrototype?!0:(0,Br.isPrototypeClass)(n.instanceClass,n.metadata)}o(d4,"canCreateInstance");function h4(n){return(0,Br.hasEmptyProperties)(n.metadata)}o(h4,"canCleanProperties");function p4(n){return(0,Br.needsFolderRepair)(n.currentFolder,n.expectedFolder)}o(p4,"canRepairFolder");function m4(n,e){let t=n.metadata.exo__Asset_uid;return t?e!==t:!1}o(m4,"canRenameToUid");function g4(n){let e=n.metadata.exo__Asset_label;if(!e||typeof e!="string"||e.trim()==="")return!1;let t=e.trim(),r=n.metadata.aliases;return!r||!Array.isArray(r)||r.length===0?!0:!r.some(i=>typeof i!="string"?!1:i.trim()===t)}o(g4,"canCopyLabelToAliases");function y4(n){return(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.CONCEPT)}o(y4,"canCreateNarrowerConcept");function _4(n){return(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.CLASS)}o(_4,"canCreateSubclass");function S4(n){return!(!(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.DAILY_NOTE)||n.isArchived||!(0,Br.extractDailyNoteDate)(n.metadata))}o(S4,"canCreateTaskForDailyNote");function b4(n){return(0,Br.hasClass)(n.instanceClass,Ws.AssetClass.FLEETING_NOTE)||(0,Br.hasClass)(n.instanceClass,u4)}o(b4,"canCopyFleetingNoteLabel")});var BT=S(N=>{"use strict";Object.defineProperty(N,"__esModule",{value:!0});N.canCopyFleetingNoteLabel=N.canCreateTaskForDailyNote=N.canCreateSubclass=N.canCreateNarrowerConcept=N.canCopyLabelToAliases=N.canRenameToUid=N.canRepairFolder=N.canCleanProperties=N.canCreateInstance=N.canCreateEvent=N.canMarkReviewed=N.canArchiveTask=N.canRollbackStatus=N.canVoteOnEffort=N.canTrashEffort=N.canMarkDone=N.canStartEffort=N.canMoveToBacklog=N.canSetDraftStatus=N.canShiftDayForward=N.canShiftDayBackward=N.canPlanForEvening=N.canPlanOnToday=N.canSetActiveFocus=N.canCreateChildArea=N.canConvertProjectToTask=N.canMoveToToDo=N.canMoveToAnalysis=N.canCreateProject=N.canSetCriticalityZone=N.canConvertTaskToProject=N.canCreateRelatedTask=N.canCreateTask=N.isPrototypeClass=N.inheritsFromPrototype=N.isCurrentDateGteDay=N.extractDailyNoteDate=N.hasPlannedStartTimestamp=N.isPlannedForToday=N.getTodayDateString=N.needsFolderRepair=N.hasEmptyProperties=N.isAssetArchived=N.hasStatus=N.isEffort=N.isAreaOrProject=N.hasClass=void 0;var Tn=Eo();Object.defineProperty(N,"hasClass",{enumerable:!0,get:o(function(){return Tn.hasClass},"get")});Object.defineProperty(N,"isAreaOrProject",{enumerable:!0,get:o(function(){return Tn.isAreaOrProject},"get")});Object.defineProperty(N,"isEffort",{enumerable:!0,get:o(function(){return Tn.isEffort},"get")});Object.defineProperty(N,"hasStatus",{enumerable:!0,get:o(function(){return Tn.hasStatus},"get")});Object.defineProperty(N,"isAssetArchived",{enumerable:!0,get:o(function(){return Tn.isAssetArchived},"get")});Object.defineProperty(N,"hasEmptyProperties",{enumerable:!0,get:o(function(){return Tn.hasEmptyProperties},"get")});Object.defineProperty(N,"needsFolderRepair",{enumerable:!0,get:o(function(){return Tn.needsFolderRepair},"get")});Object.defineProperty(N,"getTodayDateString",{enumerable:!0,get:o(function(){return Tn.getTodayDateString},"get")});Object.defineProperty(N,"isPlannedForToday",{enumerable:!0,get:o(function(){return Tn.isPlannedForToday},"get")});Object.defineProperty(N,"hasPlannedStartTimestamp",{enumerable:!0,get:o(function(){return Tn.hasPlannedStartTimestamp},"get")});Object.defineProperty(N,"extractDailyNoteDate",{enumerable:!0,get:o(function(){return Tn.extractDailyNoteDate},"get")});Object.defineProperty(N,"isCurrentDateGteDay",{enumerable:!0,get:o(function(){return Tn.isCurrentDateGteDay},"get")});Object.defineProperty(N,"inheritsFromPrototype",{enumerable:!0,get:o(function(){return Tn.inheritsFromPrototype},"get")});Object.defineProperty(N,"isPrototypeClass",{enumerable:!0,get:o(function(){return Tn.isPrototypeClass},"get")});var sh=DT();Object.defineProperty(N,"canCreateTask",{enumerable:!0,get:o(function(){return sh.canCreateTask},"get")});Object.defineProperty(N,"canCreateRelatedTask",{enumerable:!0,get:o(function(){return sh.canCreateRelatedTask},"get")});Object.defineProperty(N,"canConvertTaskToProject",{enumerable:!0,get:o(function(){return sh.canConvertTaskToProject},"get")});Object.defineProperty(N,"canSetCriticalityZone",{enumerable:!0,get:o(function(){return sh.canSetCriticalityZone},"get")});var ah=NT();Object.defineProperty(N,"canCreateProject",{enumerable:!0,get:o(function(){return ah.canCreateProject},"get")});Object.defineProperty(N,"canMoveToAnalysis",{enumerable:!0,get:o(function(){return ah.canMoveToAnalysis},"get")});Object.defineProperty(N,"canMoveToToDo",{enumerable:!0,get:o(function(){return ah.canMoveToToDo},"get")});Object.defineProperty(N,"canConvertProjectToTask",{enumerable:!0,get:o(function(){return ah.canConvertProjectToTask},"get")});var UT=MT();Object.defineProperty(N,"canCreateChildArea",{enumerable:!0,get:o(function(){return UT.canCreateChildArea},"get")});Object.defineProperty(N,"canSetActiveFocus",{enumerable:!0,get:o(function(){return UT.canSetActiveFocus},"get")});var Mn=$T();Object.defineProperty(N,"canPlanOnToday",{enumerable:!0,get:o(function(){return Mn.canPlanOnToday},"get")});Object.defineProperty(N,"canPlanForEvening",{enumerable:!0,get:o(function(){return Mn.canPlanForEvening},"get")});Object.defineProperty(N,"canShiftDayBackward",{enumerable:!0,get:o(function(){return Mn.canShiftDayBackward},"get")});Object.defineProperty(N,"canShiftDayForward",{enumerable:!0,get:o(function(){return Mn.canShiftDayForward},"get")});Object.defineProperty(N,"canSetDraftStatus",{enumerable:!0,get:o(function(){return Mn.canSetDraftStatus},"get")});Object.defineProperty(N,"canMoveToBacklog",{enumerable:!0,get:o(function(){return Mn.canMoveToBacklog},"get")});Object.defineProperty(N,"canStartEffort",{enumerable:!0,get:o(function(){return Mn.canStartEffort},"get")});Object.defineProperty(N,"canMarkDone",{enumerable:!0,get:o(function(){return Mn.canMarkDone},"get")});Object.defineProperty(N,"canTrashEffort",{enumerable:!0,get:o(function(){return Mn.canTrashEffort},"get")});Object.defineProperty(N,"canVoteOnEffort",{enumerable:!0,get:o(function(){return Mn.canVoteOnEffort},"get")});Object.defineProperty(N,"canRollbackStatus",{enumerable:!0,get:o(function(){return Mn.canRollbackStatus},"get")});Object.defineProperty(N,"canArchiveTask",{enumerable:!0,get:o(function(){return Mn.canArchiveTask},"get")});Object.defineProperty(N,"canMarkReviewed",{enumerable:!0,get:o(function(){return Mn.canMarkReviewed},"get")});var as=VT();Object.defineProperty(N,"canCreateEvent",{enumerable:!0,get:o(function(){return as.canCreateEvent},"get")});Object.defineProperty(N,"canCreateInstance",{enumerable:!0,get:o(function(){return as.canCreateInstance},"get")});Object.defineProperty(N,"canCleanProperties",{enumerable:!0,get:o(function(){return as.canCleanProperties},"get")});Object.defineProperty(N,"canRepairFolder",{enumerable:!0,get:o(function(){return as.canRepairFolder},"get")});Object.defineProperty(N,"canRenameToUid",{enumerable:!0,get:o(function(){return as.canRenameToUid},"get")});Object.defineProperty(N,"canCopyLabelToAliases",{enumerable:!0,get:o(function(){return as.canCopyLabelToAliases},"get")});Object.defineProperty(N,"canCreateNarrowerConcept",{enumerable:!0,get:o(function(){return as.canCreateNarrowerConcept},"get")});Object.defineProperty(N,"canCreateSubclass",{enumerable:!0,get:o(function(){return as.canCreateSubclass},"get")});Object.defineProperty(N,"canCreateTaskForDailyNote",{enumerable:!0,get:o(function(){return as.canCreateTaskForDailyNote},"get")});Object.defineProperty(N,"canCopyFleetingNoteLabel",{enumerable:!0,get:o(function(){return as.canCopyFleetingNoteLabel},"get")})});var qT=S(To=>{"use strict";var v4=To&&To.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),w4=To&&To.__exportStar||function(n,e){for(var t in n)t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&v4(e,n,t)};Object.defineProperty(To,"__esModule",{value:!0});w4(BT(),To)});var oh=S(ku=>{"use strict";Object.defineProperty(ku,"__esModule",{value:!0});ku.PropertyFieldType=void 0;ku.rangeToFieldType=A4;var Fr;(function(n){n.Text="text",n.Number="number",n.Date="date",n.DateTime="datetime",n.Boolean="boolean",n.Reference="reference",n.Enum="enum",n.StatusSelect="status-select",n.SizeSelect="size-select",n.Wikilink="wikilink",n.Timestamp="timestamp",n.Unknown="unknown"})(Fr||(ku.PropertyFieldType=Fr={}));var WT="http://www.w3.org/2001/XMLSchema#",E4="https://exocortex.my/ontology/exo#",T4="https://exocortex.my/ontology/ems#";function A4(n){if(!n)return Fr.Unknown;let e=n.trim();if(!e)return Fr.Unknown;if(e.startsWith(WT)){let t=e.substring(WT.length);return V0(t)}if(e.startsWith("xsd:")){let t=e.substring(4);return V0(t)}if(e.includes("XMLSchema#")){let t=e.indexOf("XMLSchema#"),r=e.substring(t+10);return V0(r)}return e.startsWith(T4)||e.startsWith("ems:")?x4(e):e.startsWith(E4)||e.startsWith("exo:")||I4(e)?Fr.Reference:Fr.Text}o(A4,"rangeToFieldType");function V0(n){switch(n.toLowerCase()){case"string":case"normalizedstring":case"token":case"language":case"nmtoken":case"name":case"ncname":case"anyuri":return Fr.Text;case"integer":case"int":case"long":case"short":case"byte":case"nonnegativeinteger":case"positiveinteger":case"nonpositiveinteger":case"negativeinteger":case"unsignedlong":case"unsignedint":case"unsignedshort":case"unsignedbyte":case"decimal":case"float":case"double":return Fr.Number;case"date":return Fr.Date;case"datetime":case"datetimestamp":return Fr.DateTime;case"boolean":return Fr.Boolean;case"time":return Fr.Timestamp;default:return Fr.Text}}o(V0,"xsdTypeToFieldType");function x4(n){let e=n.toLowerCase();return e.includes("effortstatus")?Fr.StatusSelect:e.includes("tasksize")?Fr.SizeSelect:Fr.Reference}o(x4,"emsTypeToFieldType");function I4(n){let e=n.toLowerCase();return e.includes("exocortex.my/ontology")?!0:["asset","task","project","area","effort","class","property","concept"].some(r=>e.includes(r))}o(I4,"isClassReference")});var U0=S(Mu=>{"use strict";Object.defineProperty(Mu,"__esModule",{value:!0});Mu.propertyNameToUri=C4;Mu.uriToPropertyName=GT;Mu.extractPropertyLabel=R4;function C4(n){return n.replace(/^([a-z]+)__/,"$1:")}o(C4,"propertyNameToUri");function GT(n){if(n.startsWith("http://")||n.startsWith("https://")){let e=n.match(/\/([a-z]+)#([A-Za-z0-9_]+)$/);if(e)return`${e[1]}__${e[2]}`;let t=n.lastIndexOf("#"),r=n.lastIndexOf("/"),i=Math.max(t,r);return i>=0?n.substring(i+1):n}return n.replace(/^([a-z]+):/,"$1__")}o(GT,"uriToPropertyName");function R4(n){let r=(n.includes(":")?GT(n):n).replace(/^[a-z]+__/,"").split("_");return(r.length>1?r.slice(1).join(" "):r[0]).replace(/([a-z])([A-Z])/g,"$1 $2").replace(/^./,s=>s.toUpperCase())}o(R4,"extractPropertyLabel")});var ch={};Ny(ch,{__assign:()=>q0,__asyncDelegator:()=>B4,__asyncGenerator:()=>U4,__asyncValues:()=>q4,__await:()=>ju,__awaiter:()=>L4,__classPrivateFieldGet:()=>H4,__classPrivateFieldSet:()=>Q4,__createBinding:()=>M4,__decorate:()=>F4,__exportStar:()=>j4,__extends:()=>O4,__generator:()=>k4,__importDefault:()=>z4,__importStar:()=>G4,__makeTemplateObject:()=>W4,__metadata:()=>N4,__param:()=>D4,__read:()=>zT,__rest:()=>P4,__spread:()=>$4,__spreadArrays:()=>V4,__values:()=>W0});function O4(n,e){B0(n,e);function t(){this.constructor=n}o(t,"__"),n.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}function P4(n,e){var t={};for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&e.indexOf(r)<0&&(t[r]=n[r]);if(n!=null&&typeof Object.getOwnPropertySymbols=="function")for(var i=0,r=Object.getOwnPropertySymbols(n);i<r.length;i++)e.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(n,r[i])&&(t[r[i]]=n[r[i]]);return t}function F4(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s}function D4(n,e){return function(t,r){e(t,r,n)}}function N4(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)}function L4(n,e,t,r){function i(s){return s instanceof t?s:new t(function(a){a(s)})}return o(i,"adopt"),new(t||(t=Promise))(function(s,a){function c(f){try{u(r.next(f))}catch(d){a(d)}}o(c,"fulfilled");function l(f){try{u(r.throw(f))}catch(d){a(d)}}o(l,"rejected");function u(f){f.done?s(f.value):i(f.value).then(c,l)}o(u,"step"),u((r=r.apply(n,e||[])).next())})}function k4(n,e){var t={label:0,sent:o(function(){if(s[0]&1)throw s[1];return s[1]},"sent"),trys:[],ops:[]},r,i,s,a;return a={next:c(0),throw:c(1),return:c(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function c(u){return function(f){return l([u,f])}}function l(u){if(r)throw new TypeError("Generator is already executing.");for(;t;)try{if(r=1,i&&(s=u[0]&2?i.return:u[0]?i.throw||((s=i.return)&&s.call(i),0):i.next)&&!(s=s.call(i,u[1])).done)return s;switch(i=0,s&&(u=[u[0]&2,s.value]),u[0]){case 0:case 1:s=u;break;case 4:return t.label++,{value:u[1],done:!1};case 5:t.label++,i=u[1],u=[0];continue;case 7:u=t.ops.pop(),t.trys.pop();continue;default:if(s=t.trys,!(s=s.length>0&&s[s.length-1])&&(u[0]===6||u[0]===2)){t=0;continue}if(u[0]===3&&(!s||u[1]>s[0]&&u[1]<s[3])){t.label=u[1];break}if(u[0]===6&&t.label<s[1]){t.label=s[1],s=u;break}if(s&&t.label<s[2]){t.label=s[2],t.ops.push(u);break}s[2]&&t.ops.pop(),t.trys.pop();continue}u=e.call(n,t)}catch(f){u=[6,f],i=0}finally{r=s=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}}function M4(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]}function j4(n,e){for(var t in n)t!=="default"&&!e.hasOwnProperty(t)&&(e[t]=n[t])}function W0(n){var e=typeof Symbol=="function"&&Symbol.iterator,t=e&&n[e],r=0;if(t)return t.call(n);if(n&&typeof n.length=="number")return{next:o(function(){return n&&r>=n.length&&(n=void 0),{value:n&&n[r++],done:!n}},"next")};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function zT(n,e){var t=typeof Symbol=="function"&&n[Symbol.iterator];if(!t)return n;var r=t.call(n),i,s=[],a;try{for(;(e===void 0||e-- >0)&&!(i=r.next()).done;)s.push(i.value)}catch(c){a={error:c}}finally{try{i&&!i.done&&(t=r.return)&&t.call(r)}finally{if(a)throw a.error}}return s}function $4(){for(var n=[],e=0;e<arguments.length;e++)n=n.concat(zT(arguments[e]));return n}function V4(){for(var n=0,e=0,t=arguments.length;e<t;e++)n+=arguments[e].length;for(var r=Array(n),i=0,e=0;e<t;e++)for(var s=arguments[e],a=0,c=s.length;a<c;a++,i++)r[i]=s[a];return r}function ju(n){return this instanceof ju?(this.v=n,this):new ju(n)}function U4(n,e,t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=t.apply(n,e||[]),i,s=[];return i={},a("next"),a("throw"),a("return"),i[Symbol.asyncIterator]=function(){return this},i;function a(h){r[h]&&(i[h]=function(p){return new Promise(function(y,b){s.push([h,p,y,b])>1||c(h,p)})})}function c(h,p){try{l(r[h](p))}catch(y){d(s[0][3],y)}}function l(h){h.value instanceof ju?Promise.resolve(h.value.v).then(u,f):d(s[0][2],h)}function u(h){c("next",h)}function f(h){c("throw",h)}function d(h,p){h(p),s.shift(),s.length&&c(s[0][0],s[0][1])}}function B4(n){var e,t;return e={},r("next"),r("throw",function(i){throw i}),r("return"),e[Symbol.iterator]=function(){return this},e;function r(i,s){e[i]=n[i]?function(a){return(t=!t)?{value:ju(n[i](a)),done:i==="return"}:s?s(a):a}:s}}function q4(n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e=n[Symbol.asyncIterator],t;return e?e.call(n):(n=typeof W0=="function"?W0(n):n[Symbol.iterator](),t={},r("next"),r("throw"),r("return"),t[Symbol.asyncIterator]=function(){return this},t);function r(s){t[s]=n[s]&&function(a){return new Promise(function(c,l){a=n[s](a),i(c,l,a.done,a.value)})}}function i(s,a,c,l){Promise.resolve(l).then(function(u){s({value:u,done:c})},a)}}function W4(n,e){return Object.defineProperty?Object.defineProperty(n,"raw",{value:e}):n.raw=e,n}function G4(n){if(n&&n.__esModule)return n;var e={};if(n!=null)for(var t in n)Object.hasOwnProperty.call(n,t)&&(e[t]=n[t]);return e.default=n,e}function z4(n){return n&&n.__esModule?n:{default:n}}function H4(n,e){if(!e.has(n))throw new TypeError("attempted to get private field on non-instance");return e.get(n)}function Q4(n,e,t){if(!e.has(n))throw new TypeError("attempted to set private field on non-instance");return e.set(n,t),t}var B0,q0,lh=PN(()=>{B0=o(function(n,e){return B0=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,r){t.__proto__=r}||function(t,r){for(var i in r)r.hasOwnProperty(i)&&(t[i]=r[i])},B0(n,e)},"extendStatics");o(O4,"__extends");q0=o(function(){return q0=Object.assign||o(function(e){for(var t,r=1,i=arguments.length;r<i;r++){t=arguments[r];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},"__assign"),q0.apply(this,arguments)},"__assign");o(P4,"__rest");o(F4,"__decorate");o(D4,"__param");o(N4,"__metadata");o(L4,"__awaiter");o(k4,"__generator");o(M4,"__createBinding");o(j4,"__exportStar");o(W0,"__values");o(zT,"__read");o($4,"__spread");o(V4,"__spreadArrays");o(ju,"__await");o(U4,"__asyncGenerator");o(B4,"__asyncDelegator");o(q4,"__asyncValues");o(W4,"__makeTemplateObject");o(G4,"__importStar");o(z4,"__importDefault");o(H4,"__classPrivateFieldGet");o(Q4,"__classPrivateFieldSet")});var H0=S(z0=>{"use strict";Object.defineProperty(z0,"__esModule",{value:!0});var G0;(function(n){n[n.Transient=0]="Transient",n[n.Singleton=1]="Singleton",n[n.ResolutionScoped=2]="ResolutionScoped",n[n.ContainerScoped=3]="ContainerScoped"})(G0||(G0={}));z0.default=G0});var HT=S(Q0=>{"use strict";Object.defineProperty(Q0,"__esModule",{value:!0});var K4=H0();Object.defineProperty(Q0,"Lifecycle",{enumerable:!0,get:o(function(){return K4.default},"get")})});var Ao=S(hi=>{"use strict";Object.defineProperty(hi,"__esModule",{value:!0});hi.defineInjectionTokenMetadata=hi.getParamInfo=hi.INJECTION_TOKEN_METADATA_KEY=void 0;hi.INJECTION_TOKEN_METADATA_KEY="injectionTokens";function Y4(n){let e=Reflect.getMetadata("design:paramtypes",n)||[],t=Reflect.getOwnMetadata(hi.INJECTION_TOKEN_METADATA_KEY,n)||{};return Object.keys(t).forEach(r=>{e[+r]=t[r]}),e}o(Y4,"getParamInfo");hi.getParamInfo=Y4;function X4(n,e){return function(t,r,i){let s=Reflect.getOwnMetadata(hi.INJECTION_TOKEN_METADATA_KEY,t)||{};s[i]=e?{token:n,transform:e.transformToken,transformArgs:e.args||[]}:n,Reflect.defineMetadata(hi.INJECTION_TOKEN_METADATA_KEY,s,t)}}o(X4,"defineInjectionTokenMetadata");hi.defineInjectionTokenMetadata=X4});var K0=S(uh=>{"use strict";Object.defineProperty(uh,"__esModule",{value:!0});uh.isClassProvider=void 0;function J4(n){return!!n.useClass}o(J4,"isClassProvider");uh.isClassProvider=J4});var Y0=S(fh=>{"use strict";Object.defineProperty(fh,"__esModule",{value:!0});fh.isFactoryProvider=void 0;function Z4(n){return!!n.useFactory}o(Z4,"isFactoryProvider");fh.isFactoryProvider=Z4});var hh=S(Ec=>{"use strict";Object.defineProperty(Ec,"__esModule",{value:!0});Ec.delay=Ec.DelayedConstructor=void 0;var dh=class{static{o(this,"DelayedConstructor")}constructor(e){this.wrap=e,this.reflectMethods=["get","getPrototypeOf","setPrototypeOf","getOwnPropertyDescriptor","defineProperty","has","set","deleteProperty","apply","construct","ownKeys"]}createProxy(e){let t={},r=!1,i,s=o(()=>(r||(i=e(this.wrap()),r=!0),i),"delayedObject");return new Proxy(t,this.createHandler(s))}createHandler(e){let t={},r=o(i=>{t[i]=(...s)=>{s[0]=e();let a=Reflect[i];return a(...s)}},"install");return this.reflectMethods.forEach(r),t}};Ec.DelayedConstructor=dh;function eM(n){if(typeof n>"u")throw new Error("Attempt to `delay` undefined. Constructor must be wrapped in a callback");return new dh(n)}o(eM,"delay");Ec.delay=eM});var ph=S(os=>{"use strict";Object.defineProperty(os,"__esModule",{value:!0});os.isConstructorToken=os.isTransformDescriptor=os.isTokenDescriptor=os.isNormalToken=void 0;var tM=hh();function rM(n){return typeof n=="string"||typeof n=="symbol"}o(rM,"isNormalToken");os.isNormalToken=rM;function nM(n){return typeof n=="object"&&"token"in n&&"multiple"in n}o(nM,"isTokenDescriptor");os.isTokenDescriptor=nM;function iM(n){return typeof n=="object"&&"token"in n&&"transform"in n}o(iM,"isTransformDescriptor");os.isTransformDescriptor=iM;function sM(n){return typeof n=="function"||n instanceof tM.DelayedConstructor}o(sM,"isConstructorToken");os.isConstructorToken=sM});var X0=S(mh=>{"use strict";Object.defineProperty(mh,"__esModule",{value:!0});mh.isTokenProvider=void 0;function aM(n){return!!n.useToken}o(aM,"isTokenProvider");mh.isTokenProvider=aM});var J0=S(gh=>{"use strict";Object.defineProperty(gh,"__esModule",{value:!0});gh.isValueProvider=void 0;function oM(n){return n.useValue!=null}o(oM,"isValueProvider");gh.isValueProvider=oM});var Z0=S(xo=>{"use strict";Object.defineProperty(xo,"__esModule",{value:!0});var cM=K0();Object.defineProperty(xo,"isClassProvider",{enumerable:!0,get:o(function(){return cM.isClassProvider},"get")});var lM=Y0();Object.defineProperty(xo,"isFactoryProvider",{enumerable:!0,get:o(function(){return lM.isFactoryProvider},"get")});var uM=ph();Object.defineProperty(xo,"isNormalToken",{enumerable:!0,get:o(function(){return uM.isNormalToken},"get")});var fM=X0();Object.defineProperty(xo,"isTokenProvider",{enumerable:!0,get:o(function(){return fM.isTokenProvider},"get")});var dM=J0();Object.defineProperty(xo,"isValueProvider",{enumerable:!0,get:o(function(){return dM.isValueProvider},"get")})});var QT=S(yh=>{"use strict";Object.defineProperty(yh,"__esModule",{value:!0});yh.isProvider=void 0;var hM=K0(),pM=J0(),mM=X0(),gM=Y0();function yM(n){return hM.isClassProvider(n)||pM.isValueProvider(n)||mM.isTokenProvider(n)||gM.isFactoryProvider(n)}o(yM,"isProvider");yh.isProvider=yM});var r_=S(t_=>{"use strict";Object.defineProperty(t_,"__esModule",{value:!0});var e_=class{static{o(this,"RegistryBase")}constructor(){this._registryMap=new Map}entries(){return this._registryMap.entries()}getAll(e){return this.ensure(e),this._registryMap.get(e)}get(e){this.ensure(e);let t=this._registryMap.get(e);return t[t.length-1]||null}set(e,t){this.ensure(e),this._registryMap.get(e).push(t)}setAll(e,t){this._registryMap.set(e,t)}has(e){return this.ensure(e),this._registryMap.get(e).length>0}clear(){this._registryMap.clear()}ensure(e){this._registryMap.has(e)||this._registryMap.set(e,[])}};t_.default=e_});var KT=S(i_=>{"use strict";Object.defineProperty(i_,"__esModule",{value:!0});var _M=r_(),n_=class extends _M.default{static{o(this,"Registry")}};i_.default=n_});var YT=S(a_=>{"use strict";Object.defineProperty(a_,"__esModule",{value:!0});var s_=class{static{o(this,"ResolutionContext")}constructor(){this.scopedResolutions=new Map}};a_.default=s_});var o_=S(_h=>{"use strict";Object.defineProperty(_h,"__esModule",{value:!0});_h.formatErrorCtor=void 0;function SM(n,e){return n===null?`at position #${e}`:`"${n.split(",")[e].trim()}" at position #${e}`}o(SM,"formatDependency");function bM(n,e,t=" "){return[n,...e.message.split(`
32
32
  `).map(r=>t+r)].join(`
33
- `)}o(bM,"composeErrorMessage");function vM(n,e,t){let[,r=null]=n.toString().match(/constructor\(([\w, ]+)\)/)||[],i=SM(r,e);return bM(`Cannot inject the dependency ${i} of "${n.name}" constructor. Reason:`,t)}o(vM,"formatErrorCtor");_h.formatErrorCtor=vM});var XT=S(Sh=>{"use strict";Object.defineProperty(Sh,"__esModule",{value:!0});Sh.isDisposable=void 0;function wM(n){return!(typeof n.dispose!="function"||n.dispose.length>0)}o(wM,"isDisposable");Sh.isDisposable=wM});var ZT=S(xo=>{"use strict";Object.defineProperty(xo,"__esModule",{value:!0});xo.PostResolutionInterceptors=xo.PreResolutionInterceptors=void 0;var JT=r_(),bh=class extends JT.default{static{o(this,"PreResolutionInterceptors")}};xo.PreResolutionInterceptors=bh;var vh=class extends JT.default{static{o(this,"PostResolutionInterceptors")}};xo.PostResolutionInterceptors=vh;var c_=class{static{o(this,"Interceptors")}constructor(){this.preResolution=new bh,this.postResolution=new vh}};xo.default=c_});var xa=S(Gs=>{"use strict";Object.defineProperty(Gs,"__esModule",{value:!0});Gs.instance=Gs.typeInfo=void 0;var EM=(lh(),Od(ch)),cn=Z0(),TM=QT(),wh=ph(),AM=KT(),An=H0(),Eh=YT(),xM=o_(),IM=hh(),CM=XT(),RM=ZT();Gs.typeInfo=new Map;var l_=class n{static{o(this,"InternalDependencyContainer")}constructor(e){this.parent=e,this._registry=new AM.default,this.interceptors=new RM.default,this.disposed=!1,this.disposables=new Set}register(e,t,r={lifecycle:An.default.Transient}){this.ensureNotDisposed();let i;if(TM.isProvider(t)?i=t:i={useClass:t},cn.isTokenProvider(i)){let s=[e],a=i;for(;a!=null;){let c=a.useToken;if(s.includes(c))throw new Error(`Token registration cycle detected! ${[...s,c].join(" -> ")}`);s.push(c);let l=this._registry.get(c);l&&cn.isTokenProvider(l.provider)?a=l.provider:a=null}}if((r.lifecycle===An.default.Singleton||r.lifecycle==An.default.ContainerScoped||r.lifecycle==An.default.ResolutionScoped)&&(cn.isValueProvider(i)||cn.isFactoryProvider(i)))throw new Error(`Cannot use lifecycle "${An.default[r.lifecycle]}" with ValueProviders or FactoryProviders`);return this._registry.set(e,{provider:i,options:r}),this}registerType(e,t){return this.ensureNotDisposed(),cn.isNormalToken(t)?this.register(e,{useToken:t}):this.register(e,{useClass:t})}registerInstance(e,t){return this.ensureNotDisposed(),this.register(e,{useValue:t})}registerSingleton(e,t){if(this.ensureNotDisposed(),cn.isNormalToken(e)){if(cn.isNormalToken(t))return this.register(e,{useToken:t},{lifecycle:An.default.Singleton});if(t)return this.register(e,{useClass:t},{lifecycle:An.default.Singleton});throw new Error('Cannot register a type name as a singleton without a "to" token')}let r=e;return t&&!cn.isNormalToken(t)&&(r=t),this.register(e,{useClass:r},{lifecycle:An.default.Singleton})}resolve(e,t=new Eh.default,r=!1){this.ensureNotDisposed();let i=this.getRegistration(e);if(!i&&cn.isNormalToken(e)){if(r)return;throw new Error(`Attempted to resolve unregistered dependency token: "${e.toString()}"`)}if(this.executePreResolutionInterceptor(e,"Single"),i){let s=this.resolveRegistration(i,t);return this.executePostResolutionInterceptor(e,s,"Single"),s}if(wh.isConstructorToken(e)){let s=this.construct(e,t);return this.executePostResolutionInterceptor(e,s,"Single"),s}throw new Error("Attempted to construct an undefined constructor. Could mean a circular dependency problem. Try using `delay` function.")}executePreResolutionInterceptor(e,t){if(this.interceptors.preResolution.has(e)){let r=[];for(let i of this.interceptors.preResolution.getAll(e))i.options.frequency!="Once"&&r.push(i),i.callback(e,t);this.interceptors.preResolution.setAll(e,r)}}executePostResolutionInterceptor(e,t,r){if(this.interceptors.postResolution.has(e)){let i=[];for(let s of this.interceptors.postResolution.getAll(e))s.options.frequency!="Once"&&i.push(s),s.callback(e,t,r);this.interceptors.postResolution.setAll(e,i)}}resolveRegistration(e,t){if(this.ensureNotDisposed(),e.options.lifecycle===An.default.ResolutionScoped&&t.scopedResolutions.has(e))return t.scopedResolutions.get(e);let r=e.options.lifecycle===An.default.Singleton,i=e.options.lifecycle===An.default.ContainerScoped,s=r||i,a;return cn.isValueProvider(e.provider)?a=e.provider.useValue:cn.isTokenProvider(e.provider)?a=s?e.instance||(e.instance=this.resolve(e.provider.useToken,t)):this.resolve(e.provider.useToken,t):cn.isClassProvider(e.provider)?a=s?e.instance||(e.instance=this.construct(e.provider.useClass,t)):this.construct(e.provider.useClass,t):cn.isFactoryProvider(e.provider)?a=e.provider.useFactory(this):a=this.construct(e.provider,t),e.options.lifecycle===An.default.ResolutionScoped&&t.scopedResolutions.set(e,a),a}resolveAll(e,t=new Eh.default,r=!1){this.ensureNotDisposed();let i=this.getAllRegistrations(e);if(!i&&cn.isNormalToken(e)){if(r)return[];throw new Error(`Attempted to resolve unregistered dependency token: "${e.toString()}"`)}if(this.executePreResolutionInterceptor(e,"All"),i){let a=i.map(c=>this.resolveRegistration(c,t));return this.executePostResolutionInterceptor(e,a,"All"),a}let s=[this.construct(e,t)];return this.executePostResolutionInterceptor(e,s,"All"),s}isRegistered(e,t=!1){return this.ensureNotDisposed(),this._registry.has(e)||t&&(this.parent||!1)&&this.parent.isRegistered(e,!0)}reset(){this.ensureNotDisposed(),this._registry.clear(),this.interceptors.preResolution.clear(),this.interceptors.postResolution.clear()}clearInstances(){this.ensureNotDisposed();for(let[e,t]of this._registry.entries())this._registry.setAll(e,t.filter(r=>!cn.isValueProvider(r.provider)).map(r=>(r.instance=void 0,r)))}createChildContainer(){this.ensureNotDisposed();let e=new n(this);for(let[t,r]of this._registry.entries())r.some(({options:i})=>i.lifecycle===An.default.ContainerScoped)&&e._registry.setAll(t,r.map(i=>i.options.lifecycle===An.default.ContainerScoped?{provider:i.provider,options:i.options}:i));return e}beforeResolution(e,t,r={frequency:"Always"}){this.interceptors.preResolution.set(e,{callback:t,options:r})}afterResolution(e,t,r={frequency:"Always"}){this.interceptors.postResolution.set(e,{callback:t,options:r})}dispose(){return EM.__awaiter(this,void 0,void 0,function*(){this.disposed=!0;let e=[];this.disposables.forEach(t=>{let r=t.dispose();r&&e.push(r)}),yield Promise.all(e)})}getRegistration(e){return this.isRegistered(e)?this._registry.get(e):this.parent?this.parent.getRegistration(e):null}getAllRegistrations(e){return this.isRegistered(e)?this._registry.getAll(e):this.parent?this.parent.getAllRegistrations(e):null}construct(e,t){if(e instanceof IM.DelayedConstructor)return e.createProxy(i=>this.resolve(i,t));let r=(()=>{let i=Gs.typeInfo.get(e);if(!i||i.length===0){if(e.length===0)return new e;throw new Error(`TypeInfo not known for "${e.name}"`)}let s=i.map(this.resolveParams(t,e));return new e(...s)})();return CM.isDisposable(r)&&this.disposables.add(r),r}resolveParams(e,t){return(r,i)=>{try{return wh.isTokenDescriptor(r)?wh.isTransformDescriptor(r)?r.multiple?this.resolve(r.transform).transform(this.resolveAll(r.token,new Eh.default,r.isOptional),...r.transformArgs):this.resolve(r.transform).transform(this.resolve(r.token,e,r.isOptional),...r.transformArgs):r.multiple?this.resolveAll(r.token,new Eh.default,r.isOptional):this.resolve(r.token,e,r.isOptional):wh.isTransformDescriptor(r)?this.resolve(r.transform,e).transform(this.resolve(r.token,e),...r.transformArgs):this.resolve(r,e)}catch(s){throw new Error(xM.formatErrorCtor(t,i,s))}}}ensureNotDisposed(){if(this.disposed)throw new Error("This container has been disposed, you cannot interact with a disposed container")}};Gs.instance=new l_;Gs.default=Gs.instance});var e3=S(f_=>{"use strict";Object.defineProperty(f_,"__esModule",{value:!0});var OM=To(),zs=xa(),u_=ph(),PM=o_();function FM(){return function(n){let e=OM.getParamInfo(n);return class extends n{constructor(...t){super(...t.concat(e.slice(t.length).map((r,i)=>{try{return u_.isTokenDescriptor(r)?u_.isTransformDescriptor(r)?r.multiple?zs.instance.resolve(r.transform).transform(zs.instance.resolveAll(r.token),...r.transformArgs):zs.instance.resolve(r.transform).transform(zs.instance.resolve(r.token),...r.transformArgs):r.multiple?zs.instance.resolveAll(r.token):zs.instance.resolve(r.token):u_.isTransformDescriptor(r)?zs.instance.resolve(r.transform).transform(zs.instance.resolve(r.token),...r.transformArgs):zs.instance.resolve(r)}catch(s){let a=i+t.length;throw new Error(PM.formatErrorCtor(n,a,s))}})))}}}}o(FM,"autoInjectable");f_.default=FM});var t3=S(d_=>{"use strict";Object.defineProperty(d_,"__esModule",{value:!0});var DM=To();function NM(n,e){let t={token:n,multiple:!1,isOptional:e&&e.isOptional};return DM.defineInjectionTokenMetadata(t)}o(NM,"inject");d_.default=NM});var Th=S(h_=>{"use strict";Object.defineProperty(h_,"__esModule",{value:!0});var LM=To(),kM=xa(),r3=xa();function MM(n){return function(e){kM.typeInfo.set(e,LM.getParamInfo(e)),n&&n.token&&(Array.isArray(n.token)?n.token.forEach(t=>{r3.instance.register(t,e)}):r3.instance.register(n.token,e))}}o(MM,"injectable");h_.default=MM});var n3=S(p_=>{"use strict";Object.defineProperty(p_,"__esModule",{value:!0});var jM=(lh(),Od(ch)),$M=xa();function VM(n=[]){return function(e){return n.forEach(t=>{var{token:r,options:i}=t,s=jM.__rest(t,["token","options"]);return $M.instance.register(r,s,i)}),e}}o(VM,"registry");p_.default=VM});var i3=S(m_=>{"use strict";Object.defineProperty(m_,"__esModule",{value:!0});var UM=Th(),BM=xa();function qM(){return function(n){UM.default()(n),BM.instance.registerSingleton(n)}}o(qM,"singleton");m_.default=qM});var s3=S(g_=>{"use strict";Object.defineProperty(g_,"__esModule",{value:!0});var WM=To();function GM(n,e){let t={token:n,multiple:!0,isOptional:e&&e.isOptional};return WM.defineInjectionTokenMetadata(t)}o(GM,"injectAll");g_.default=GM});var a3=S(y_=>{"use strict";Object.defineProperty(y_,"__esModule",{value:!0});var zM=To();function HM(n,e,...t){let r={token:n,multiple:!0,transform:e,transformArgs:t};return zM.defineInjectionTokenMetadata(r)}o(HM,"injectAllWithTransform");y_.default=HM});var o3=S(__=>{"use strict";Object.defineProperty(__,"__esModule",{value:!0});var QM=To();function KM(n,e,...t){return QM.defineInjectionTokenMetadata(n,{transformToken:e,args:t})}o(KM,"injectWithTransform");__.default=KM});var c3=S(S_=>{"use strict";Object.defineProperty(S_,"__esModule",{value:!0});var YM=Th(),XM=xa();function JM(n,e){return function(t){YM.default()(t),XM.instance.register(e||t,t,{lifecycle:n})}}o(JM,"scoped");S_.default=JM});var l3=S(pi=>{"use strict";Object.defineProperty(pi,"__esModule",{value:!0});var ZM=e3();Object.defineProperty(pi,"autoInjectable",{enumerable:!0,get:o(function(){return ZM.default},"get")});var ej=t3();Object.defineProperty(pi,"inject",{enumerable:!0,get:o(function(){return ej.default},"get")});var tj=Th();Object.defineProperty(pi,"injectable",{enumerable:!0,get:o(function(){return tj.default},"get")});var rj=n3();Object.defineProperty(pi,"registry",{enumerable:!0,get:o(function(){return rj.default},"get")});var nj=i3();Object.defineProperty(pi,"singleton",{enumerable:!0,get:o(function(){return nj.default},"get")});var ij=s3();Object.defineProperty(pi,"injectAll",{enumerable:!0,get:o(function(){return ij.default},"get")});var sj=a3();Object.defineProperty(pi,"injectAllWithTransform",{enumerable:!0,get:o(function(){return sj.default},"get")});var aj=o3();Object.defineProperty(pi,"injectWithTransform",{enumerable:!0,get:o(function(){return aj.default},"get")});var oj=c3();Object.defineProperty(pi,"scoped",{enumerable:!0,get:o(function(){return oj.default},"get")})});var u3=S(b_=>{"use strict";Object.defineProperty(b_,"__esModule",{value:!0});function cj(n){let e;return t=>(e==null&&(e=n(t)),e)}o(cj,"instanceCachingFactory");b_.default=cj});var f3=S(v_=>{"use strict";Object.defineProperty(v_,"__esModule",{value:!0});function lj(n){let e=new WeakMap;return t=>{let r=e.get(t);return r==null&&(r=n(t),e.set(t,r)),r}}o(lj,"instancePerContainerCachingFactory");v_.default=lj});var d3=S(w_=>{"use strict";Object.defineProperty(w_,"__esModule",{value:!0});function uj(n,e,t,r=!0){let i,s;return a=>{let c=n(a);return(!r||s!==c)&&((s=c)?i=a.resolve(e):i=a.resolve(t)),i}}o(uj,"predicateAwareClassFactory");w_.default=uj});var h3=S($u=>{"use strict";Object.defineProperty($u,"__esModule",{value:!0});var fj=u3();Object.defineProperty($u,"instanceCachingFactory",{enumerable:!0,get:o(function(){return fj.default},"get")});var dj=f3();Object.defineProperty($u,"instancePerContainerCachingFactory",{enumerable:!0,get:o(function(){return dj.default},"get")});var hj=d3();Object.defineProperty($u,"predicateAwareClassFactory",{enumerable:!0,get:o(function(){return hj.default},"get")})});var le=S(Ia=>{"use strict";Object.defineProperty(Ia,"__esModule",{value:!0});var E_=(lh(),Od(ch));if(typeof Reflect>"u"||!Reflect.getMetadata)throw new Error(`tsyringe requires a reflect polyfill. Please add 'import "reflect-metadata"' to the top of your entry point.`);var pj=HT();Object.defineProperty(Ia,"Lifecycle",{enumerable:!0,get:o(function(){return pj.Lifecycle},"get")});E_.__exportStar(l3(),Ia);E_.__exportStar(h3(),Ia);E_.__exportStar(Z0(),Ia);var mj=hh();Object.defineProperty(Ia,"delay",{enumerable:!0,get:o(function(){return mj.delay},"get")});var gj=xa();Object.defineProperty(Ia,"container",{enumerable:!0,get:o(function(){return gj.instance},"get")})});var Tc=S(Ah=>{"use strict";Object.defineProperty(Ah,"__esModule",{value:!0});Ah.NullLogger=void 0;Ah.NullLogger={debug(){},info(){},warn(){},error(){}}});var T_=S((Qte,p3)=>{var Ac=class{static{o(this,"Wildcard")}constructor(){return yj||this}equals(e){return e&&this.termType===e.termType}};Object.defineProperty(Ac.prototype,"value",{enumerable:!0,value:"*"});Object.defineProperty(Ac.prototype,"termType",{enumerable:!0,value:"Wildcard"});var yj=new Ac;p3.exports.Wildcard=Ac});var g3=S((Yte,m3)=>{var _j=(function(){var n=o(function(R,I,O,D){for(O=O||{},D=R.length;D--;O[R[D]]=I);return O},"o"),e=[6,12,13,15,16,24,32,36,41,45,100,110,113,115,116,123,126,131,197,224,229,308,329,330,331,332,333],t=[2,247],r=[100,110,113,115,116,123,126,131,329,330,331,332,333],i=[2,409],s=[1,18],a=[1,27],c=[13,16,45,197,224,229,308],l=[28,29,53],u=[28,53],f=[1,42],d=[1,45],h=[1,41],p=[1,44],y=[123,126],b=[1,67],w=[39,45,87],v=[13,16,45,197,224,308],T=[1,87],C=[2,281],L=[1,86],V=[13,16,45,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],ae=[6,28,29,53,63,70,73,81,83,85],$=[6,13,16,28,29,53,63,70,73,81,83,85,87,308],B=[6,13,16,28,29,45,53,63,70,73,81,82,83,85,87,89,197,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314],F=[6,13,16,28,29,31,39,45,47,48,53,63,70,73,81,82,83,85,87,89,109,112,121,123,126,128,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,337,338,340,341,342,343,344,345,346],k=[13,16,308],ee=[112,132,327,334],Ke=[13,16,112,132,308],at=[1,111],Ot=[1,117],ot=[112,132,327,328,334],lt=[13,16,112,132,308,328],Xe=[28,29,45,53,87],ne=[1,138],q=[1,151],ut=[1,128],pt=[1,127],z=[1,129],Re=[1,140],Be=[1,141],te=[1,142],qe=[1,143],We=[1,144],$e=[1,145],Ge=[1,147],Ie=[1,148],Ve=[2,457],Oe=[1,158],Ue=[1,159],ze=[1,160],ue=[1,152],pe=[1,153],me=[1,156],fe=[1,171],de=[1,172],he=[1,173],ce=[1,174],ge=[1,175],ye=[1,176],_e=[1,167],Se=[1,168],se=[1,169],be=[1,170],et=[1,157],He=[1,166],je=[1,161],E=[1,162],A=[1,163],x=[1,164],P=[1,165],Y=[6,13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335],_t=[1,195],xt=[6,31,73,81,83,85],Fe=[2,285],W=[1,199],G=[1,201],H=[6,31,70,73,81,83,85],Q=[2,283],Ce=[1,207],rt=[1,218],nt=[1,223],Cr=[1,219],bn=[1,225],Ln=[1,226],tn=[1,224],BE=[6,63,70,73,81,83,85],qE=[1,236],WE=[2,334],GE=[1,243],zE=[1,241],Rr=[6,193],cd=[2,349],HE=[2,339],Sa=[28,128],QE=[47,48,193,272],ld=[47,48,193,242,272],ac=[47,48,193,242,246,272],oc=[47,48,193,242,246,250,263,265,272,290,297,298,299,300,301,302,341,342,343,344,345,346],yr=[39,47,48,193,242,246,250,263,265,272,290,297,298,299,300,301,302,338,341,342,343,344,345,346],KE=[1,271],YE=[1,270],Yt=[6,13,16,29,31,39,45,47,48,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,338,341,342,343,344,345,346,347,348,349,350,351],XE=[1,281],JE=[1,280],rn=[13,16,29,31,39,45,47,48,82,85,87,89,112,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346],fu=[45,89],ud=[13,16,29,31,39,45,47,48,82,85,87,89,112,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346],fd=[13,16,31,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],dd=[31,89],hd=[48,87],ao=[6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337,338],Zi=[6,13,16,39,45,48,82,87,89,231,263,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337,338,340],ZE=[1,313],cc=[6,85],hy=[6,31,81,83,85],e2=[2,361],Fs=[2,353],oo=[1,343],du=[31,112,335],Ds=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],py=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335],t2=[6,109,193],co=[31,112],Xt=[13,16,45,82,87,224,263,265,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312,346,347,348,349,350,351],my=[1,390],gy=[1,391],ba=[13,16,87,197,308,314],r2=[13,16,39,45,82,87,224,263,265,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312,346,347,348,349,350,351],pd=[1,417],md=[1,418],n2=[13,16,48,197,229,308],va=[6,31,85],i2=[6,13,16,31,45,73,81,83,85,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],yy=[6,13,16,29,31,45,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,231,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,346,347,348,349,350,351],lo=[29,31,85,112,159,160,161,163,164],gd=[1,443],yd=[1,444],s2=[1,449],uo=[31,112,193,232,318,335],_d=[13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],a2=[13,16,31,45,48,82,87,89,112,193,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],_y=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],hu=[13,16,31,48,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],pu=[31,45],o2=[1,507],c2=[1,508],l2=[6,13,16,29,31,39,45,47,48,63,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,336,338,341,342,343,344,345,346,347,348,349,350,351],Sd=[29,31,85,112,159,160,161,163,164,335],fo=[6,13,16,31,45,70,73,81,83,85,87,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],u2=[13,16,31,45,48,82,87,89,112,193,197,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],f2=[2,352],Sy=[13,16,197,308,314],d2=[1,565],lc=[6,13,16,31,45,76,78,81,83,85,87,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],h2=[13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],Ns=[13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335],p2=[13,16,87,308],Ls=[2,364],uc=[29,31,85,112,159,160,161,163,164,193,232,318,335],bd=[31,112,193,232,272,318,335],ks=[2,359],m2=[13,16,48,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],vd=[29,31,85,112,159,160,161,163,164,193,232,272,318,335],g2=[13,16,31,45,82,87,89,112,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],y2=[2,347],by={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,QueryOrUpdate:3,Prologue:4,QueryOrUpdate_group0:5,EOF:6,Query:7,Qry:8,Query_option0:9,Prologue_repetition0:10,BaseDecl:11,BASE:12,IRIREF:13,PrefixDecl:14,PREFIX:15,PNAME_NS:16,SelectClauseWildcard:17,Qry_repetition0:18,WhereClause:19,SolutionModifierNoGroup:20,SelectClauseVars:21,Qry_repetition1:22,SolutionModifier:23,CONSTRUCT:24,ConstructTemplate:25,Qry_repetition2:26,Qry_repetition3:27,WHERE:28,"{":29,Qry_option0:30,"}":31,DESCRIBE:32,Qry_group0:33,Qry_repetition4:34,Qry_option1:35,ASK:36,Qry_repetition5:37,SelectClauseBase:38,"*":39,SelectClauseVars_repetition_plus0:40,SELECT:41,SelectClauseBase_option0:42,SelectClauseItem:43,Var:44,"(":45,Expression:46,AS:47,")":48,SubSelect:49,SubSelect_option0:50,SubSelect_option1:51,DatasetClause:52,FROM:53,DatasetClause_option0:54,iri:55,WhereClause_option0:56,GroupGraphPattern:57,SolutionModifier_option0:58,SolutionModifierNoGroup_option0:59,SolutionModifierNoGroup_option1:60,SolutionModifierNoGroup_option2:61,GroupClause:62,GROUP:63,BY:64,GroupClause_repetition_plus0:65,GroupCondition:66,BuiltInCall:67,FunctionCall:68,HavingClause:69,HAVING:70,HavingClause_repetition_plus0:71,OrderClause:72,ORDER:73,OrderClause_repetition_plus0:74,OrderCondition:75,ASC:76,BrackettedExpression:77,DESC:78,Constraint:79,LimitOffsetClauses:80,LIMIT:81,INTEGER:82,OFFSET:83,ValuesClause:84,VALUES:85,InlineData:86,VAR:87,InlineData_repetition0:88,NIL:89,InlineData_repetition1:90,InlineData_repetition_plus2:91,InlineData_repetition3:92,DataBlock:93,DataBlockValueList:94,DataBlockValueList_repetition_plus0:95,Update:96,Update_repetition0:97,Update1:98,Update_option0:99,LOAD:100,Update1_option0:101,Update1_option1:102,Update1_group0:103,Update1_option2:104,GraphRefAll:105,Update1_group1:106,Update1_option3:107,GraphOrDefault:108,TO:109,CREATE:110,Update1_option4:111,GRAPH:112,INSERTDATA:113,QuadPattern:114,DELETEDATA:115,DELETEWHERE:116,Update1_option5:117,InsertDeleteClause:118,Update1_repetition0:119,IntoGraphClause:120,INTO:121,GraphRef:122,DELETE:123,InsertDeleteClause_option0:124,InsertClause:125,INSERT:126,UsingClause:127,USING:128,UsingClause_option0:129,WithClause:130,WITH:131,DEFAULT:132,GraphOrDefault_option0:133,GraphRefAll_group0:134,Quads:135,Quads_option0:136,Quads_repetition0:137,QuadsNotTriples:138,VarOrIri:139,QuadsNotTriples_option0:140,QuadsNotTriples_option1:141,QuadsNotTriples_option2:142,TriplesTemplate:143,TriplesTemplate_repetition0:144,TriplesSameSubject:145,TriplesTemplate_option0:146,GroupGraphPatternSub:147,GroupGraphPatternSub_option0:148,GroupGraphPatternSub_repetition0:149,GroupGraphPatternSubTail:150,GraphPatternNotTriples:151,GroupGraphPatternSubTail_option0:152,GroupGraphPatternSubTail_option1:153,TriplesBlock:154,TriplesBlock_repetition0:155,TriplesSameSubjectPath:156,TriplesBlock_option0:157,GroupOrUnionGraphPattern:158,OPTIONAL:159,MINUS:160,SERVICE:161,GraphPatternNotTriples_option0:162,FILTER:163,BIND:164,InlineDataOneVar:165,InlineDataFull:166,InlineDataOneVar_repetition0:167,InlineDataFull_repetition0:168,InlineDataFull_repetition_plus1:169,InlineDataFull_repetition2:170,DataBlockValue:171,Literal:172,QuotedTriple:173,UNDEF:174,GroupOrUnionGraphPattern_repetition0:175,ArgList:176,ArgList_option0:177,ArgList_repetition0:178,ExpressionList:179,ExpressionList_repetition0:180,ConstructTemplate_option0:181,ConstructTriples:182,ConstructTriples_repetition0:183,ConstructTriples_option0:184,VarOrTermOrQuotedTP:185,PropertyListNotEmpty:186,TriplesNode:187,PropertyList:188,PropertyList_option0:189,VerbObjectList:190,PropertyListNotEmpty_repetition0:191,SemiOptionalVerbObjectList:192,";":193,SemiOptionalVerbObjectList_option0:194,Verb:195,ObjectList:196,a:197,ObjectList_repetition0:198,Object:199,GraphNode:200,Object_option0:201,PropertyListPathNotEmpty:202,TriplesNodePath:203,TriplesSameSubjectPath_option0:204,O:205,PropertyListPathNotEmpty_repetition0:206,PropertyListPathNotEmptyTail:207,O_group0:208,ObjectListPath:209,ObjectListPath_repetition0:210,ObjectPath:211,GraphNodePath:212,ObjectPath_option0:213,Path:214,Path_repetition0:215,PathSequence:216,PathSequence_repetition0:217,PathEltOrInverse:218,PathElt:219,PathPrimary:220,PathElt_option0:221,PathEltOrInverse_option0:222,IriOrA:223,"!":224,PathNegatedPropertySet:225,PathOneInPropertySet:226,PathNegatedPropertySet_repetition0:227,PathNegatedPropertySet_option0:228,"^":229,TriplesNode_repetition_plus0:230,"[":231,"]":232,TriplesNodePath_repetition_plus0:233,VarOrTermOrQuotedTPExpr:234,VarOrTerm:235,GraphTerm:236,BlankNode:237,ConditionalOrExpression:238,ConditionalAndExpression:239,ConditionalOrExpression_repetition0:240,ConditionalOrExpressionTail:241,"||":242,RelationalExpression:243,ConditionalAndExpression_repetition0:244,ConditionalAndExpressionTail:245,"&&":246,NumericExpression:247,RelationalExpression_group0:248,RelationalExpression_option0:249,IN:250,MultiplicativeExpression:251,NumericExpression_repetition0:252,AdditiveExpressionTail:253,AdditiveExpressionTail_group0:254,NumericLiteralPositive:255,AdditiveExpressionTail_repetition0:256,NumericLiteralNegative:257,AdditiveExpressionTail_repetition1:258,UnaryExpression:259,MultiplicativeExpression_repetition0:260,MultiplicativeExpressionTail:261,MultiplicativeExpressionTail_group0:262,"+":263,PrimaryExpression:264,"-":265,ExprQuotedTP:266,Aggregate:267,FUNC_ARITY0:268,FUNC_ARITY1:269,FUNC_ARITY1_SPARQL_STAR:270,FUNC_ARITY2:271,",":272,FUNC_ARITY3:273,FUNC_ARITY3_SPARQL_STAR:274,BuiltInCall_group0:275,BOUND:276,BNODE:277,BuiltInCall_option0:278,EXISTS:279,COUNT:280,Aggregate_option0:281,Aggregate_group0:282,FUNC_AGGREGATE:283,Aggregate_option1:284,GROUP_CONCAT:285,Aggregate_option2:286,Aggregate_option3:287,GroupConcatSeparator:288,SEPARATOR:289,"=":290,String:291,LANGTAG:292,"^^":293,DECIMAL:294,DOUBLE:295,BOOLEAN:296,INTEGER_POSITIVE:297,DECIMAL_POSITIVE:298,DOUBLE_POSITIVE:299,INTEGER_NEGATIVE:300,DECIMAL_NEGATIVE:301,DOUBLE_NEGATIVE:302,STRING_LITERAL1:303,STRING_LITERAL2:304,STRING_LITERAL_LONG1:305,STRING_LITERAL_LONG2:306,PrefixedName:307,PNAME_LN:308,BLANK_NODE_LABEL:309,ANON:310,QuotedTP:311,"<<":312,qtSubjectOrObject:313,">>":314,DataValueTerm:315,AnnotationPattern:316,"{|":317,"|}":318,AnnotationPatternPath:319,ExprVarOrTerm:320,QueryOrUpdate_group0_option0:321,Prologue_repetition0_group0:322,Qry_group0_repetition_plus0:323,SelectClauseBase_option0_group0:324,DISTINCT:325,REDUCED:326,NAMED:327,SILENT:328,CLEAR:329,DROP:330,ADD:331,MOVE:332,COPY:333,ALL:334,".":335,UNION:336,"|":337,"/":338,PathElt_option0_group0:339,"?":340,"!=":341,"<":342,">":343,"<=":344,">=":345,NOT:346,CONCAT:347,COALESCE:348,SUBSTR:349,REGEX:350,REPLACE:351,$accept:0,$end:1},terminals_:{2:"error",6:"EOF",12:"BASE",13:"IRIREF",15:"PREFIX",16:"PNAME_NS",24:"CONSTRUCT",28:"WHERE",29:"{",31:"}",32:"DESCRIBE",36:"ASK",39:"*",41:"SELECT",45:"(",47:"AS",48:")",53:"FROM",63:"GROUP",64:"BY",70:"HAVING",73:"ORDER",76:"ASC",78:"DESC",81:"LIMIT",82:"INTEGER",83:"OFFSET",85:"VALUES",87:"VAR",89:"NIL",100:"LOAD",109:"TO",110:"CREATE",112:"GRAPH",113:"INSERTDATA",115:"DELETEDATA",116:"DELETEWHERE",121:"INTO",123:"DELETE",126:"INSERT",128:"USING",131:"WITH",132:"DEFAULT",159:"OPTIONAL",160:"MINUS",161:"SERVICE",163:"FILTER",164:"BIND",174:"UNDEF",193:";",197:"a",224:"!",229:"^",231:"[",232:"]",242:"||",246:"&&",250:"IN",263:"+",265:"-",268:"FUNC_ARITY0",269:"FUNC_ARITY1",270:"FUNC_ARITY1_SPARQL_STAR",271:"FUNC_ARITY2",272:",",273:"FUNC_ARITY3",274:"FUNC_ARITY3_SPARQL_STAR",276:"BOUND",277:"BNODE",279:"EXISTS",280:"COUNT",283:"FUNC_AGGREGATE",285:"GROUP_CONCAT",289:"SEPARATOR",290:"=",292:"LANGTAG",293:"^^",294:"DECIMAL",295:"DOUBLE",296:"BOOLEAN",297:"INTEGER_POSITIVE",298:"DECIMAL_POSITIVE",299:"DOUBLE_POSITIVE",300:"INTEGER_NEGATIVE",301:"DECIMAL_NEGATIVE",302:"DOUBLE_NEGATIVE",303:"STRING_LITERAL1",304:"STRING_LITERAL2",305:"STRING_LITERAL_LONG1",306:"STRING_LITERAL_LONG2",308:"PNAME_LN",309:"BLANK_NODE_LABEL",310:"ANON",312:"<<",314:">>",317:"{|",318:"|}",325:"DISTINCT",326:"REDUCED",327:"NAMED",328:"SILENT",329:"CLEAR",330:"DROP",331:"ADD",332:"MOVE",333:"COPY",334:"ALL",335:".",336:"UNION",337:"|",338:"/",340:"?",341:"!=",342:"<",343:">",344:"<=",345:">=",346:"NOT",347:"CONCAT",348:"COALESCE",349:"SUBSTR",350:"REGEX",351:"REPLACE"},productions_:[0,[3,3],[7,2],[4,1],[11,2],[14,3],[8,4],[8,4],[8,5],[8,7],[8,5],[8,4],[17,2],[21,2],[38,2],[43,1],[43,5],[49,4],[49,4],[52,3],[19,2],[23,2],[20,3],[62,3],[66,1],[66,1],[66,3],[66,5],[66,1],[69,2],[72,3],[75,2],[75,2],[75,1],[75,1],[80,2],[80,2],[80,4],[80,4],[84,2],[86,4],[86,4],[86,6],[86,2],[94,3],[96,3],[98,4],[98,3],[98,5],[98,4],[98,2],[98,2],[98,2],[98,5],[120,2],[118,3],[118,1],[125,2],[127,3],[130,2],[108,1],[108,2],[122,2],[105,1],[105,1],[114,3],[135,2],[138,7],[143,3],[57,3],[57,3],[147,2],[150,3],[154,3],[151,1],[151,2],[151,2],[151,3],[151,4],[151,2],[151,6],[151,1],[93,1],[93,1],[165,4],[166,4],[166,6],[171,1],[171,1],[171,1],[171,1],[158,2],[79,1],[79,1],[79,1],[68,2],[176,1],[176,5],[179,1],[179,4],[25,3],[182,3],[145,2],[145,2],[188,1],[186,2],[192,2],[190,2],[195,1],[195,1],[196,2],[199,2],[156,2],[156,2],[202,2],[207,1],[207,2],[205,2],[209,2],[211,2],[214,2],[216,2],[219,2],[218,2],[220,1],[220,2],[220,3],[225,1],[225,1],[225,4],[226,1],[226,2],[187,3],[187,3],[203,3],[203,3],[200,1],[200,1],[212,1],[212,1],[234,1],[235,1],[235,1],[139,1],[139,1],[44,1],[236,1],[236,1],[236,1],[236,1],[46,1],[238,2],[241,2],[239,2],[245,2],[243,1],[243,3],[243,4],[247,2],[253,2],[253,2],[253,2],[251,2],[261,2],[259,2],[259,2],[259,2],[259,1],[264,1],[264,1],[264,1],[264,1],[264,1],[264,1],[264,1],[77,3],[67,1],[67,2],[67,4],[67,4],[67,6],[67,8],[67,8],[67,2],[67,4],[67,2],[67,4],[67,3],[267,5],[267,5],[267,6],[288,4],[172,1],[172,2],[172,3],[172,1],[172,1],[172,1],[172,1],[172,1],[172,1],[255,1],[255,1],[255,1],[257,1],[257,1],[257,1],[291,1],[291,1],[291,1],[291,1],[55,1],[55,1],[307,1],[307,1],[237,1],[237,1],[311,5],[173,5],[313,1],[313,1],[313,1],[313,1],[313,1],[315,1],[315,1],[315,1],[185,1],[185,1],[185,1],[316,3],[319,3],[266,5],[320,1],[320,1],[320,1],[223,1],[223,1],[321,0],[321,1],[5,1],[5,1],[5,1],[9,0],[9,1],[322,1],[322,1],[10,0],[10,2],[18,0],[18,2],[22,0],[22,2],[26,0],[26,2],[27,0],[27,2],[30,0],[30,1],[323,1],[323,2],[33,1],[33,1],[34,0],[34,2],[35,0],[35,1],[37,0],[37,2],[40,1],[40,2],[324,1],[324,1],[42,0],[42,1],[50,0],[50,1],[51,0],[51,1],[54,0],[54,1],[56,0],[56,1],[58,0],[58,1],[59,0],[59,1],[60,0],[60,1],[61,0],[61,1],[65,1],[65,2],[71,1],[71,2],[74,1],[74,2],[88,0],[88,2],[90,0],[90,2],[91,1],[91,2],[92,0],[92,2],[95,1],[95,2],[97,0],[97,4],[99,0],[99,2],[101,0],[101,1],[102,0],[102,1],[103,1],[103,1],[104,0],[104,1],[106,1],[106,1],[106,1],[107,0],[107,1],[111,0],[111,1],[117,0],[117,1],[119,0],[119,2],[124,0],[124,1],[129,0],[129,1],[133,0],[133,1],[134,1],[134,1],[134,1],[136,0],[136,1],[137,0],[137,2],[140,0],[140,1],[141,0],[141,1],[142,0],[142,1],[144,0],[144,3],[146,0],[146,1],[148,0],[148,1],[149,0],[149,2],[152,0],[152,1],[153,0],[153,1],[155,0],[155,3],[157,0],[157,1],[162,0],[162,1],[167,0],[167,2],[168,0],[168,2],[169,1],[169,2],[170,0],[170,2],[175,0],[175,3],[177,0],[177,1],[178,0],[178,3],[180,0],[180,3],[181,0],[181,1],[183,0],[183,3],[184,0],[184,1],[189,0],[189,1],[191,0],[191,2],[194,0],[194,1],[198,0],[198,3],[201,0],[201,1],[204,0],[204,1],[206,0],[206,2],[208,1],[208,1],[210,0],[210,3],[213,0],[213,1],[215,0],[215,3],[217,0],[217,3],[339,1],[339,1],[339,1],[221,0],[221,1],[222,0],[222,1],[227,0],[227,3],[228,0],[228,1],[230,1],[230,2],[233,1],[233,2],[240,0],[240,2],[244,0],[244,2],[248,1],[248,1],[248,1],[248,1],[248,1],[248,1],[249,0],[249,1],[252,0],[252,2],[254,1],[254,1],[256,0],[256,2],[258,0],[258,2],[260,0],[260,2],[262,1],[262,1],[275,1],[275,1],[275,1],[275,1],[275,1],[278,0],[278,1],[281,0],[281,1],[282,1],[282,1],[284,0],[284,1],[286,0],[286,1],[287,0],[287,1]],performAction:o(function(I,O,D,re,Pe,g,sn){var _=g.length-1;switch(Pe){case 1:if(g[_-1]=g[_-1]||{},Le.base&&(g[_-1].base=Le.base),Le.base="",g[_-1].prefixes=Le.prefixes,Le.prefixes=null,Le.pathOnly){if(g[_-1].type==="path"||"termType"in g[_-1])return g[_-1];throw new Error("Received full SPARQL query in path only mode")}else if(g[_-1].type==="path"||"termType"in g[_-1])throw new Error("Received only path in full SPARQL mode");if(g[_-1].type==="update"){let St={};for(let Lt of g[_-1].updates)if(Lt.updateType==="insert"){let it={};for(let ft of Lt.insert)if(ft.type==="bgp"||ft.type==="graph")for(let vn of ft.triples)vn.subject.termType==="BlankNode"&&(it[vn.subject.value]=!0),vn.predicate.termType==="BlankNode"&&(it[vn.predicate.value]=!0),vn.object.termType==="BlankNode"&&(it[vn.object.value]=!0);for(let ft of Object.keys(it)){if(St[ft])throw new Error("Detected reuse blank node across different INSERT DATA clauses");St[ft]=!0}}}return g[_-1];case 2:this.$={...g[_-1],...g[_],type:"query"};break;case 4:Le.base=mu(g[_]);break;case 5:Le.prefixes||(Le.prefixes={}),g[_-1]=g[_-1].substr(0,g[_-1].length-1),g[_]=mu(g[_]),Le.prefixes[g[_-1]]=g[_];break;case 6:this.$={...g[_-3],...mo(g[_-2]),...g[_-1],...g[_]};break;case 7:if(!Le.skipValidation&&(Cy(g[_-3].variables.map(Lt=>Iy(Lt.expression))).some(Lt=>Lt.aggregation==="count"&&!(Lt.expression instanceof wd))||g[_].group)){for(let Lt of g[_-3].variables)if(Lt.termType==="Variable"){if(!g[_].group||!g[_].group.map(it=>pc(it)).includes(pc(Lt)))throw Error("Projection of ungrouped variable (?"+pc(Lt)+")")}else if(Iy(Lt.expression).length===0){let it=EN(Lt.expression);for(let ft of it)if(!g[_].group||!g[_].group.map||!g[_].group.map(vn=>pc(vn)).includes(pc(ft)))throw Error("Use of ungrouped variable in projection of operation (?"+pc(ft)+")")}}let ns=g[_-1].where.filter(St=>St.type==="query");if(ns.length>0){let St=g[_-3].variables.filter(it=>it.variable&&it.variable.value).map(it=>it.variable.value),Lt=Cy(ns.map(it=>it.variables)).map(it=>it.value||it.variable.value);for(let it of St)if(Lt.indexOf(it)>=0)throw Error("Target id of 'AS' (?"+it+") already used in subquery")}this.$=Wt(g[_-3],mo(g[_-2]),g[_-1],g[_]);break;case 8:this.$=Wt({queryType:"CONSTRUCT",template:g[_-3]},mo(g[_-2]),g[_-1],g[_]);break;case 9:this.$=Wt({queryType:"CONSTRUCT",template:g[_-2]=g[_-2]?g[_-2].triples:[]},mo(g[_-5]),{where:[{type:"bgp",triples:po([],g[_-2])}]},g[_]);break;case 10:this.$=Wt({queryType:"DESCRIBE",variables:g[_-3]==="*"?[new wd]:g[_-3]},mo(g[_-2]),g[_-1],g[_]);break;case 11:this.$=Wt({queryType:"ASK"},mo(g[_-2]),g[_-1],g[_]);break;case 12:this.$=Wt(g[_-1],{variables:[new wd]});break;case 13:let bu=g[_].map(St=>St.value||St.variable.value),mc=TN(bu);if(mc.length>0)throw Error("Two or more of the resulting columns have the same name (?"+mc[0]+")");this.$=Wt(g[_-1],{variables:g[_]});break;case 14:this.$=Wt({queryType:"SELECT"},g[_]&&(g[_-1]=nn(g[_]),g[_]={},g[_][g[_-1]]=!0,g[_]));break;case 16:case 27:this.$=fc(g[_-3],{variable:g[_-1]});break;case 17:case 18:this.$=Wt(g[_-3],g[_-2],g[_-1],g[_],{type:"query"});break;case 19:case 58:this.$={iri:g[_],named:!!g[_-1]};break;case 20:this.$={where:g[_].patterns};break;case 21:this.$=Wt(g[_-1],g[_]);break;case 22:this.$=Wt(g[_-2],g[_-1],g[_]);break;case 23:this.$={group:g[_]};break;case 24:case 25:case 28:case 31:case 33:case 34:this.$=fc(g[_]);break;case 26:this.$=fc(g[_-1]);break;case 29:this.$={having:g[_]};break;case 30:this.$={order:g[_]};break;case 32:this.$=fc(g[_],{descending:!0});break;case 35:this.$={limit:hc(g[_])};break;case 36:this.$={offset:hc(g[_])};break;case 37:this.$={limit:hc(g[_-2]),offset:hc(g[_])};break;case 38:this.$={limit:hc(g[_]),offset:hc(g[_-2])};break;case 39:case 43:this.$={type:"values",values:g[_]};break;case 40:case 84:this.$=g[_-1].map(St=>({[g[_-3]]:St}));break;case 41:case 85:this.$=g[_-1].map(()=>({}));break;case 42:case 86:var rs=g[_-4].length;g[_-4]=g[_-4].map(vy),this.$=g[_-1].map(function(St){if(St.length!==rs)throw Error("Inconsistent VALUES length");for(var Lt={},it=0;it<rs;it++)Lt["?"+g[_-4][it].value]=St[it];return Lt});break;case 44:case 65:case 100:case 126:case 175:this.$=g[_-1];break;case 45:this.$={type:"update",updates:Ms(g[_-2],g[_-1])};break;case 46:this.$=Wt({type:"load",silent:!!g[_-2],source:g[_-1]},g[_]&&{destination:g[_]});break;case 47:this.$={type:nn(g[_-2]),silent:!!g[_-1],graph:g[_]};break;case 48:this.$={type:nn(g[_-4]),silent:!!g[_-3],source:g[_-2],destination:g[_]};break;case 49:this.$={type:"create",silent:!!g[_-2],graph:{type:"graph",name:g[_]}};break;case 50:this.$={updateType:"insert",insert:C2(g[_])};break;case 51:this.$={updateType:"delete",delete:Py(C2(g[_]))};break;case 52:this.$={updateType:"deletewhere",delete:Py(g[_])};break;case 53:this.$={updateType:"insertdelete",...g[_-4],...g[_-3],...mo(g[_-2],"using"),where:g[_].patterns};break;case 54:case 57:case 62:case 167:case 191:case 236:this.$=g[_];break;case 55:this.$={delete:Py(g[_-1]),insert:g[_]||[]};break;case 56:this.$={delete:[],insert:g[_]};break;case 59:this.$={graph:g[_]};break;case 60:this.$={type:"graph",default:!0};break;case 61:case 63:this.$={type:"graph",name:g[_]};break;case 64:this.$={[nn(g[_])]:!0};break;case 66:this.$=g[_-1]?es(g[_],[g[_-1]]):es(g[_]);break;case 67:var _u=Wt(g[_-3]||{triples:[]},{type:"graph",name:g[_-5]});this.$=g[_]?[_u,g[_]]:[_u];break;case 68:case 73:this.$={type:"bgp",triples:es(g[_-2],[g[_-1]])};break;case 69:this.$={type:"group",patterns:[g[_-1]]};break;case 70:for(let St of g[_-1].filter(Lt=>Lt.type==="bind")){let Lt=g[_-1].indexOf(St),it=new Set;for(let ft of g[_-1].slice(0,Lt))(ft.type==="group"||ft.type==="bgp")&&x2(ft).forEach(vn=>it.add(vn));if(it.has(St.variable.value))throw Error("Variable used to bind is already bound (?"+St.variable.value+")")}this.$={type:"group",patterns:g[_-1]};break;case 71:this.$=g[_-1]?es([g[_-1]],g[_]):es(g[_]);break;case 72:this.$=g[_]?[g[_-2],g[_]]:g[_-2];break;case 75:this.$=Wt(g[_],{type:"optional"});break;case 76:this.$=Wt(g[_],{type:"minus"});break;case 77:this.$=Wt(g[_],{type:"graph",name:g[_-1]});break;case 78:this.$=Wt(g[_],{type:"service",name:g[_-1],silent:!!g[_-2]});break;case 79:this.$={type:"filter",expression:g[_]};break;case 80:this.$={type:"bind",variable:g[_-1],expression:g[_-3]};break;case 89:this.$=yu(g[_]);break;case 90:this.$=void 0;break;case 91:this.$=g[_-1].length?{type:"union",patterns:es(g[_-1].map(Ey),[Ey(g[_])])}:g[_];break;case 95:this.$={...g[_],function:g[_-1]};break;case 96:this.$={type:"functionCall",args:[]};break;case 97:this.$={type:"functionCall",args:Ms(g[_-2],g[_-1]),distinct:!!g[_-3]};break;case 98:case 115:case 128:case 247:case 249:case 251:case 253:case 255:case 263:case 267:case 297:case 299:case 303:case 307:case 328:case 341:case 349:case 355:case 361:case 367:case 369:case 373:case 375:case 379:case 381:case 385:case 391:case 395:case 401:case 405:case 409:case 411:case 420:case 428:case 430:case 440:case 444:case 446:case 448:this.$=[];break;case 99:this.$=Ms(g[_-2],g[_-1]);break;case 101:this.$=es(g[_-2],[g[_-1]]);break;case 102:case 112:this.$=Oy(g[_].map(St=>Wt(js(g[_-1]),St)));break;case 103:this.$=Oy(po(g[_].map(St=>Wt(js(g[_-1].entity),St)),g[_-1].triples));break;case 105:this.$=es([g[_-1]],g[_]);break;case 106:this.$=es(g[_]);break;case 107:this.$=xy(g[_-1],g[_]);break;case 109:case 237:this.$=Le.factory.namedNode(hN);break;case 110:case 118:this.$=Ms(g[_-1],g[_]);break;case 111:this.$=g[_]?{annotation:g[_],object:g[_-1]}:g[_-1];break;case 113:this.$=g[_]?Oy(po(g[_].map(St=>Wt(js(g[_-1].entity),St)),g[_-1].triples)):g[_-1].triples;break;case 114:this.$=xy(...g[_-1],g[_]);break;case 116:this.$=xy(...g[_]);break;case 117:case 159:case 163:this.$=[g[_-1],g[_]];break;case 119:this.$=g[_]?{object:g[_-1],annotation:g[_]}:g[_-1];break;case 120:this.$=g[_-1].length?dc("|",Ms(g[_-1],g[_])):g[_];break;case 121:this.$=g[_-1].length?dc("/",Ms(g[_-1],g[_])):g[_];break;case 122:this.$=g[_]?dc(g[_],[g[_-1]]):g[_-1];break;case 123:this.$=g[_-1]?dc(g[_-1],[g[_]]):g[_];break;case 125:case 131:this.$=dc(g[_-1],[g[_]]);break;case 129:this.$=dc("|",Ms(g[_-2],g[_-1]));break;case 132:case 134:this.$=vN(g[_-1]);break;case 133:case 135:this.$=wN(g[_-1]);break;case 140:this.$={entity:g[_],triples:[]};break;case 145:this.$=vy(g[_]);break;case 149:this.$=Le.factory.namedNode(_2);break;case 151:case 153:case 158:case 162:this.$=wy(g[_-1],g[_]);break;case 152:this.$=["||",g[_]];break;case 154:this.$=["&&",g[_]];break;case 156:this.$=Or(g[_-1],[g[_-2],g[_]]);break;case 157:this.$=Or(g[_-2]?"notin":"in",[g[_-3],g[_]]);break;case 160:this.$=["+",wy(g[_-1],g[_])];break;case 161:var Ad=ts(g[_-1].value.replace("-",""),g[_-1].datatype);this.$=["-",wy(Ad,g[_])];break;case 164:this.$=Or("UPLUS",[g[_]]);break;case 165:this.$=Or(g[_-1],[g[_]]);break;case 166:this.$=Or("UMINUS",[g[_]]);break;case 177:this.$=Or(nn(g[_-1]));break;case 178:this.$=Or(nn(g[_-3]),[g[_-1]]);break;case 179:this.$=yu(Or(nn(g[_-3]),[g[_-1]]));break;case 180:this.$=Or(nn(g[_-5]),[g[_-3],g[_-1]]);break;case 181:this.$=Or(nn(g[_-7]),[g[_-5],g[_-3],g[_-1]]);break;case 182:this.$=yu(Or(nn(g[_-7]),[g[_-5],g[_-3],g[_-1]]));break;case 183:this.$=Or(nn(g[_-1]),g[_]);break;case 184:this.$=Or("bound",[vy(g[_-1])]);break;case 185:this.$=Or(g[_-1],[]);break;case 186:this.$=Or(g[_-3],[g[_-1]]);break;case 187:this.$=Or(g[_-2]?"notexists":"exists",[Ey(g[_])]);break;case 188:case 189:this.$=fc(g[_-1],{type:"aggregate",aggregation:nn(g[_-4]),distinct:!!g[_-2]});break;case 190:this.$=fc(g[_-2],{type:"aggregate",aggregation:nn(g[_-5]),distinct:!!g[_-3],separator:typeof g[_-1]=="string"?g[_-1]:" "});break;case 192:this.$=ts(g[_]);break;case 193:this.$=yN(g[_-1],nn(g[_].substr(1)));break;case 194:this.$=ts(g[_-2],g[_]);break;case 195:case 204:this.$=ts(g[_],S2);break;case 196:case 205:this.$=ts(g[_],b2);break;case 197:case 206:this.$=ts(nn(g[_]),v2);break;case 200:this.$=ts(g[_].toLowerCase(),gN);break;case 201:this.$=ts(g[_].substr(1),S2);break;case 202:this.$=ts(g[_].substr(1),b2);break;case 203:this.$=ts(g[_].substr(1).toLowerCase(),v2);break;case 207:case 208:this.$=A2(g[_],1);break;case 209:case 210:this.$=A2(g[_],3);break;case 211:this.$=Le.factory.namedNode(mu(g[_]));break;case 213:var xd=g[_].indexOf(":"),Su=g[_].substr(0,xd),Id=Le.prefixes[Su];if(!Id)throw new Error("Unknown prefix: "+Su);var jt=mu(Id+g[_].substr(xd+1));this.$=Le.factory.namedNode(jt);break;case 214:if(g[_]=g[_].substr(0,g[_].length-1),!(g[_]in Le.prefixes))throw new Error("Unknown prefix: "+g[_]);var jt=mu(Le.prefixes[g[_]]);this.$=Le.factory.namedNode(jt);break;case 215:this.$=gu(g[_].replace(/^(_:)/,""));break;case 216:this.$=gu();break;case 217:case 218:case 232:this.$=yu(Ty(g[_-3],g[_-2],g[_-1]));break;case 230:case 231:this.$=yu(g[_-1]);break;case 248:case 250:case 252:case 254:case 256:case 260:case 264:case 268:case 270:case 292:case 294:case 296:case 298:case 300:case 302:case 304:case 306:case 329:case 342:case 356:case 368:case 370:case 372:case 374:case 392:case 402:case 425:case 427:case 429:case 431:case 441:case 445:case 447:case 449:g[_-1].push(g[_]);break;case 259:case 269:case 291:case 293:case 295:case 301:case 305:case 371:case 424:case 426:this.$=[g[_]];break;case 308:g[_-3].push(g[_-2]);break;case 350:case 362:case 376:case 380:case 382:case 386:case 396:case 406:case 410:case 412:case 421:g[_-2].push(g[_-1]);break}},"anonymous"),table:[n(e,t,{3:1,4:2,10:3}),{1:[3]},n(r,[2,307],{5:4,7:5,321:6,214:7,8:8,96:9,215:10,17:11,21:12,97:16,38:17,6:[2,238],13:i,16:i,45:i,197:i,224:i,229:i,308:i,24:[1,13],32:[1,14],36:[1,15],41:s}),n([6,13,16,24,32,36,41,45,100,110,113,115,116,123,126,131,197,224,229,308,329,330,331,332,333],[2,3],{322:19,11:20,14:21,12:[1,22],15:[1,23]}),{6:[1,24]},{6:[2,240]},{6:[2,241]},{6:[2,242]},{6:[2,243],9:25,84:26,85:a},{6:[2,239]},n(c,[2,411],{216:28,217:29}),n(l,[2,249],{18:30}),n(l,[2,251],{22:31}),n(u,[2,255],{25:32,27:33,29:[1,34]}),{13:f,16:d,33:35,39:[1,37],44:39,55:40,87:h,139:38,307:43,308:p,323:36},n(l,[2,267],{37:46}),n(y,[2,326],{98:47,103:49,106:50,117:55,130:61,100:[1,48],110:[1,51],113:[1,52],115:[1,53],116:[1,54],131:[1,62],329:[1,56],330:[1,57],331:[1,58],332:[1,59],333:[1,60]}),{39:[1,63],40:64,43:65,44:66,45:b,87:h},n(w,[2,273],{42:68,324:69,325:[1,70],326:[1,71]}),n(e,[2,248]),n(e,[2,245]),n(e,[2,246]),{13:[1,72]},{16:[1,73]},{1:[2,1]},{6:[2,2]},{6:[2,244]},{45:[1,77],85:[1,78],86:74,87:[1,75],89:[1,76]},n([6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],[2,120],{337:[1,79]}),n(v,[2,418],{218:80,222:81,229:[1,82]}),{19:83,28:T,29:C,52:84,53:L,56:85},{19:88,28:T,29:C,52:89,53:L,56:85},n(l,[2,253],{26:90}),{28:[1,91],52:92,53:L},n(V,[2,385],{181:93,182:94,183:95,31:[2,383]}),n(ae,[2,263],{34:96}),n(ae,[2,261],{44:39,55:40,307:43,139:97,13:f,16:d,87:h,308:p}),n(ae,[2,262]),n($,[2,259]),n(B,[2,143]),n(B,[2,144]),n([6,13,16,28,29,31,39,45,47,48,53,63,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346,347,348,349,350,351],[2,145]),n(F,[2,211]),n(F,[2,212]),n(F,[2,213]),n(F,[2,214]),{19:98,28:T,29:C,52:99,53:L,56:85},{6:[2,309],99:100,193:[1,101]},n(k,[2,311],{101:102,328:[1,103]}),n(ee,[2,317],{104:104,328:[1,105]}),n(Ke,[2,322],{107:106,328:[1,107]}),{111:108,112:[2,324],328:[1,109]},{29:at,114:110},{29:at,114:112},{29:at,114:113},{118:114,123:[1,115],125:116,126:Ot},n(ot,[2,315]),n(ot,[2,316]),n(lt,[2,319]),n(lt,[2,320]),n(lt,[2,321]),n(y,[2,327]),{13:f,16:d,55:118,307:43,308:p},n(l,[2,12]),n(l,[2,13],{44:66,43:119,45:b,87:h}),n(Xe,[2,269]),n(Xe,[2,15]),{13:f,16:d,44:136,45:ne,46:120,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(w,[2,14]),n(w,[2,274]),n(w,[2,271]),n(w,[2,272]),n(e,[2,4]),{13:[1,177]},n(Y,[2,39]),{29:[1,178]},{29:[1,179]},{87:[1,181],91:180},{45:[1,187],87:[1,185],89:[1,186],93:182,165:183,166:184},n(c,[2,410]),n([6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337],[2,121],{338:[1,188]}),{13:f,16:d,45:[1,193],55:194,197:_t,219:189,220:190,223:191,224:[1,192],307:43,308:p},n(v,[2,419]),n(xt,Fe,{20:196,59:197,69:198,70:W}),n(l,[2,250]),{29:G,57:200},n(k,[2,279],{54:202,327:[1,203]}),{29:[2,282]},n(H,Q,{23:204,58:205,62:206,63:Ce}),n(l,[2,252]),{19:208,28:T,29:C,52:209,53:L,56:85},{29:[1,210]},n(u,[2,256]),{31:[1,211]},{31:[2,384]},{13:f,16:d,44:215,45:rt,55:220,82:q,87:h,89:nt,145:212,172:221,185:213,187:214,231:Cr,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(BE,[2,265],{56:85,35:227,52:228,19:229,28:T,29:C,53:L}),n($,[2,260]),n(H,Q,{58:205,62:206,23:230,63:Ce}),n(l,[2,268]),{6:[2,45]},n(e,t,{10:3,4:231}),{13:f,16:d,55:232,307:43,308:p},n(k,[2,312]),{105:233,112:qE,122:234,132:[1,237],134:235,327:[1,238],334:[1,239]},n(ee,[2,318]),n(k,WE,{108:240,133:242,112:GE,132:zE}),n(Ke,[2,323]),{112:[1,244]},{112:[2,325]},n(Rr,[2,50]),n(V,cd,{135:245,136:246,143:247,144:248,31:HE,112:HE}),n(Rr,[2,51]),n(Rr,[2,52]),n(Sa,[2,328],{119:249}),{29:at,114:250},n(Sa,[2,56]),{29:at,114:251},n(y,[2,59]),n(Xe,[2,270]),{47:[1,252]},n(QE,[2,150]),n(ld,[2,428],{240:253}),n(ac,[2,430],{244:254}),n(ac,[2,155],{248:255,249:256,250:[2,438],290:[1,257],341:[1,258],342:[1,259],343:[1,260],344:[1,261],345:[1,262],346:[1,263]}),n(oc,[2,440],{252:264}),n(yr,[2,448],{260:265}),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,255:154,257:155,264:266,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,255:154,257:155,264:267,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,255:154,257:155,264:268,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(yr,[2,167]),n(yr,[2,168]),n(yr,[2,169]),n(yr,[2,170],{176:269,45:KE,89:YE}),n(yr,[2,171]),n(yr,[2,172]),n(yr,[2,173]),n(yr,[2,174]),{13:f,16:d,44:136,45:ne,46:272,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Yt,[2,176]),{89:[1,273]},{45:[1,274]},{45:[1,275]},{45:[1,276]},{45:[1,277]},{45:[1,278]},{45:XE,89:JE,179:279},{45:[1,282]},{45:[1,284],89:[1,283]},{279:[1,285]},n(rn,[2,192],{292:[1,286],293:[1,287]}),n(rn,[2,195]),n(rn,[2,196]),n(rn,[2,197]),n(rn,[2,198]),n(rn,[2,199]),n(rn,[2,200]),{13:f,16:d,44:39,55:40,82:q,87:h,139:289,172:291,255:154,257:155,266:290,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,320:288},{45:[1,292]},{45:[1,293]},{45:[1,294]},n(fu,[2,452]),n(fu,[2,453]),n(fu,[2,454]),n(fu,[2,455]),n(fu,[2,456]),{279:[2,458]},n(ud,[2,207]),n(ud,[2,208]),n(ud,[2,209]),n(ud,[2,210]),n(rn,[2,201]),n(rn,[2,202]),n(rn,[2,203]),n(rn,[2,204]),n(rn,[2,205]),n(rn,[2,206]),n(e,[2,5]),n(fd,[2,297],{88:295}),n(dd,[2,299],{90:296}),{48:[1,297],87:[1,298]},n(hd,[2,301]),n(Y,[2,43]),n(Y,[2,82]),n(Y,[2,83]),{29:[1,299]},{29:[1,300]},{87:[1,302],169:301},n(c,[2,412]),n(ao,[2,123]),n(ao,[2,416],{221:303,339:304,39:[1,306],263:[1,307],340:[1,305]}),n(Zi,[2,124]),{13:f,16:d,45:[1,311],55:194,89:[1,310],197:_t,223:312,225:308,226:309,229:ZE,307:43,308:p},n(c,i,{215:10,214:314}),n(Zi,[2,236]),n(Zi,[2,237]),n(cc,[2,6]),n(hy,[2,287],{60:315,72:316,73:[1,317]}),n(xt,[2,286]),{13:f,16:d,45:ne,55:323,67:321,68:322,71:318,77:320,79:319,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,307:43,308:p,346:He,347:je,348:E,349:A,350:x,351:P},n([6,31,63,70,73,81,83,85],[2,20]),n(V,e2,{38:17,49:324,147:325,17:326,21:327,148:328,154:329,155:330,29:Fs,31:Fs,85:Fs,112:Fs,159:Fs,160:Fs,161:Fs,163:Fs,164:Fs,41:s}),{13:f,16:d,55:331,307:43,308:p},n(k,[2,280]),n(cc,[2,7]),n(xt,Fe,{59:197,69:198,20:332,70:W}),n(H,[2,284]),{64:[1,333]},n(H,Q,{58:205,62:206,23:334,63:Ce}),n(l,[2,254]),n(V,cd,{144:248,30:335,143:336,31:[2,257]}),n(l,[2,100]),{31:[2,387],184:337,335:[1,338]},{13:f,16:d,44:39,55:40,87:h,139:342,186:339,190:340,195:341,197:oo,307:43,308:p},n(du,[2,389],{44:39,55:40,307:43,190:340,195:341,139:342,188:344,189:345,186:346,13:f,16:d,87:h,197:oo,308:p}),n(Ds,[2,227]),n(Ds,[2,228]),n(Ds,[2,229]),{13:f,16:d,44:215,45:rt,55:220,82:q,87:h,89:nt,172:221,185:351,187:350,200:348,230:347,231:Cr,234:349,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},{13:f,16:d,44:39,55:40,87:h,139:342,186:352,190:340,195:341,197:oo,307:43,308:p},n(Ds,[2,146]),n(Ds,[2,147]),n(Ds,[2,148]),n(Ds,[2,149]),{13:f,16:d,44:354,55:355,82:q,87:h,172:357,237:356,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:358,312:tn,313:353},n(py,[2,215]),n(py,[2,216]),n(H,Q,{58:205,62:206,23:359,63:Ce}),n(ae,[2,264]),n(BE,[2,266]),n(cc,[2,11]),n(r,[2,308],{6:[2,310]}),n(Rr,[2,313],{102:360,120:361,121:[1,362]}),n(Rr,[2,47]),n(Rr,[2,63]),n(Rr,[2,64]),{13:f,16:d,55:363,307:43,308:p},n(Rr,[2,336]),n(Rr,[2,337]),n(Rr,[2,338]),{109:[1,364]},n(t2,[2,60]),{13:f,16:d,55:365,307:43,308:p},n(k,[2,335]),{13:f,16:d,55:366,307:43,308:p},{31:[1,367]},n(co,[2,341],{137:368}),n(co,[2,340]),{13:f,16:d,44:215,45:rt,55:220,82:q,87:h,89:nt,145:369,172:221,185:213,187:214,231:Cr,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},{28:[1,370],127:371,128:[1,372]},n(Sa,[2,330],{124:373,125:374,126:Ot}),n(Sa,[2,57]),{44:375,87:h},n(QE,[2,151],{241:376,242:[1,377]}),n(ld,[2,153],{245:378,246:[1,379]}),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,247:380,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{250:[1,381]},n(Xt,[2,432]),n(Xt,[2,433]),n(Xt,[2,434]),n(Xt,[2,435]),n(Xt,[2,436]),n(Xt,[2,437]),{250:[2,439]},n([47,48,193,242,246,250,272,290,341,342,343,344,345,346],[2,158],{253:382,254:383,255:384,257:385,263:[1,386],265:[1,387],297:fe,298:de,299:he,300:ce,301:ge,302:ye}),n(oc,[2,162],{261:388,262:389,39:my,338:gy}),n(yr,[2,164]),n(yr,[2,165]),n(yr,[2,166]),n(Yt,[2,95]),n(Yt,[2,96]),n(Xt,[2,377],{177:392,325:[1,393]}),{48:[1,394]},n(Yt,[2,177]),{13:f,16:d,44:136,45:ne,46:395,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:396,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:397,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:398,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:399,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Yt,[2,183]),n(Yt,[2,98]),n(Xt,[2,381],{180:400}),{87:[1,401]},n(Yt,[2,185]),{13:f,16:d,44:136,45:ne,46:402,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{29:G,57:403},n(rn,[2,193]),{13:f,16:d,55:404,307:43,308:p},{13:f,16:d,44:39,55:40,87:h,139:342,195:405,197:oo,307:43,308:p},n(ba,[2,233]),n(ba,[2,234]),n(ba,[2,235]),n(r2,[2,459],{281:406,325:[1,407]}),n(Xt,[2,463],{284:408,325:[1,409]}),n(Xt,[2,465],{286:410,325:[1,411]}),{13:f,16:d,31:[1,412],55:414,82:q,171:413,172:415,173:416,174:pd,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:md},{31:[1,419],89:[1,420]},{29:[1,421]},n(hd,[2,302]),n(fd,[2,367],{167:422}),n(dd,[2,369],{168:423}),{48:[1,424],87:[1,425]},n(hd,[2,371]),n(ao,[2,122]),n(ao,[2,417]),n(ao,[2,413]),n(ao,[2,414]),n(ao,[2,415]),n(Zi,[2,125]),n(Zi,[2,127]),n(Zi,[2,128]),n(n2,[2,420],{227:426}),n(Zi,[2,130]),{13:f,16:d,55:194,197:_t,223:427,307:43,308:p},{48:[1,428]},n(va,[2,289],{61:429,80:430,81:[1,431],83:[1,432]}),n(hy,[2,288]),{64:[1,433]},n(xt,[2,29],{307:43,267:139,275:146,278:149,77:320,67:321,68:322,55:323,79:434,13:f,16:d,45:ne,268:Re,269:Be,270:te,271:qe,273:We,274:$e,276:Ge,277:Ie,279:Ve,280:Oe,283:Ue,285:ze,308:p,346:He,347:je,348:E,349:A,350:x,351:P}),n(i2,[2,293]),n(yy,[2,92]),n(yy,[2,93]),n(yy,[2,94]),{45:KE,89:YE,176:269},{31:[1,435]},{31:[1,436]},{19:437,28:T,29:C,56:85},{19:438,28:T,29:C,56:85},n(lo,[2,355],{149:439}),n(lo,[2,354]),{13:f,16:d,44:215,45:gd,55:220,82:q,87:h,89:nt,156:440,172:221,185:441,203:442,231:yd,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(ae,[2,19]),n(va,[2,21]),{13:f,16:d,44:450,45:s2,55:323,65:445,66:446,67:447,68:448,87:h,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,307:43,308:p,346:He,347:je,348:E,349:A,350:x,351:P},n(cc,[2,8]),{31:[1,451]},{31:[2,258]},{31:[2,101]},n(V,[2,386],{31:[2,388]}),n(du,[2,102]),n(uo,[2,391],{191:452}),n(V,[2,395],{196:453,198:454}),n(V,[2,108]),n(V,[2,109]),n(du,[2,103]),n(du,[2,104]),n(du,[2,390]),{13:f,16:d,44:215,45:rt,48:[1,455],55:220,82:q,87:h,89:nt,172:221,185:351,187:350,200:456,231:Cr,234:349,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(_d,[2,424]),n(a2,[2,136]),n(a2,[2,137]),n(_y,[2,140]),{232:[1,457]},{13:f,16:d,44:39,55:40,87:h,139:342,195:458,197:oo,307:43,308:p},n(ba,[2,219]),n(ba,[2,220]),n(ba,[2,221]),n(ba,[2,222]),n(ba,[2,223]),n(cc,[2,10]),n(Rr,[2,46]),n(Rr,[2,314]),{112:qE,122:459},n(Rr,[2,62]),n(k,WE,{133:242,108:460,112:GE,132:zE}),n(t2,[2,61]),n(Rr,[2,49]),n([6,28,126,128,193],[2,65]),{31:[2,66],112:[1,462],138:461},n(co,[2,351],{146:463,335:[1,464]}),{29:G,57:465},n(Sa,[2,329]),n(k,[2,332],{129:466,327:[1,467]}),n(Sa,[2,55]),n(Sa,[2,331]),{48:[1,468]},n(ld,[2,429]),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,239:469,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(ac,[2,431]),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,243:470,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(ac,[2,156]),{45:XE,89:JE,179:471},n(oc,[2,441]),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,251:472,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(yr,[2,444],{256:473}),n(yr,[2,446],{258:474}),n(Xt,[2,442]),n(Xt,[2,443]),n(yr,[2,449]),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,255:154,257:155,259:475,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Xt,[2,450]),n(Xt,[2,451]),n(Xt,[2,379],{178:476}),n(Xt,[2,378]),n([6,13,16,29,31,39,45,47,48,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,338,341,342,343,344,345,346,347,348,349,350,351],[2,175]),{48:[1,477]},{48:[1,478]},{272:[1,479]},{272:[1,480]},{272:[1,481]},{13:f,16:d,44:136,45:ne,46:482,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{48:[1,483]},{48:[1,484]},n(Yt,[2,187]),n(rn,[2,194]),{13:f,16:d,44:39,55:40,82:q,87:h,139:289,172:291,255:154,257:155,266:290,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,320:485},{13:f,16:d,39:[1,487],44:136,45:ne,46:488,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,282:486,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(r2,[2,460]),{13:f,16:d,44:136,45:ne,46:489,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Xt,[2,464]),{13:f,16:d,44:136,45:ne,46:490,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Xt,[2,466]),n(Y,[2,40]),n(fd,[2,298]),n(hu,[2,87]),n(hu,[2,88]),n(hu,[2,89]),n(hu,[2,90]),{13:f,16:d,55:492,82:q,172:493,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,311:494,312:tn,315:491},n(Y,[2,41]),n(dd,[2,300]),n(pu,[2,303],{92:495}),{13:f,16:d,31:[1,496],55:414,82:q,171:497,172:415,173:416,174:pd,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:md},{31:[1,498],89:[1,499]},{29:[1,500]},n(hd,[2,372]),{13:f,16:d,48:[2,422],55:194,197:_t,223:312,226:502,228:501,229:ZE,307:43,308:p},n(Zi,[2,131]),n(Zi,[2,126]),n(va,[2,22]),n(va,[2,290]),{82:[1,503]},{82:[1,504]},{13:f,16:d,44:510,45:ne,55:323,67:321,68:322,74:505,75:506,76:o2,77:320,78:c2,79:509,87:h,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,307:43,308:p,346:He,347:je,348:E,349:A,350:x,351:P},n(i2,[2,294]),n(l2,[2,69]),n(l2,[2,70]),n(xt,Fe,{59:197,69:198,20:511,70:W}),n(H,Q,{58:205,62:206,23:512,63:Ce}),{29:[2,375],31:[2,71],84:522,85:a,112:[1,518],150:513,151:514,158:515,159:[1,516],160:[1,517],161:[1,519],163:[1,520],164:[1,521],175:523},n(lo,[2,363],{157:524,335:[1,525]}),n(c,i,{215:10,202:526,205:527,208:528,214:529,44:530,87:h}),n(Sd,[2,399],{215:10,205:527,208:528,214:529,44:530,204:531,202:532,13:i,16:i,45:i,197:i,224:i,229:i,308:i,87:h}),{13:f,16:d,44:215,45:gd,55:220,82:q,87:h,89:nt,172:221,185:351,203:536,212:534,231:yd,233:533,234:535,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(c,i,{215:10,205:527,208:528,214:529,44:530,202:537,87:h}),n(H,[2,23],{307:43,267:139,275:146,278:149,55:323,67:447,68:448,44:450,66:538,13:f,16:d,45:s2,87:h,268:Re,269:Be,270:te,271:qe,273:We,274:$e,276:Ge,277:Ie,279:Ve,280:Oe,283:Ue,285:ze,308:p,346:He,347:je,348:E,349:A,350:x,351:P}),n(fo,[2,291]),n(fo,[2,24]),n(fo,[2,25]),{13:f,16:d,44:136,45:ne,46:539,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(fo,[2,28]),n(H,Q,{58:205,62:206,23:540,63:Ce}),n([31,112,232,318,335],[2,105],{192:541,193:[1,542]}),n(uo,[2,107]),{13:f,16:d,44:215,45:rt,55:220,82:q,87:h,89:nt,172:221,185:351,187:350,199:543,200:544,231:Cr,234:349,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(u2,[2,132]),n(_d,[2,425]),n(u2,[2,133]),{13:f,16:d,44:354,55:355,82:q,87:h,172:357,237:356,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:358,312:tn,313:545},n(Rr,[2,54]),n(Rr,[2,48]),n(co,[2,342]),{13:f,16:d,44:39,55:40,87:h,139:546,307:43,308:p},n(co,[2,68]),n(V,[2,350],{31:f2,112:f2}),n(Rr,[2,53]),{13:f,16:d,55:547,307:43,308:p},n(k,[2,333]),n(Xe,[2,16]),n(ld,[2,152]),n(ac,[2,154]),n(ac,[2,157]),n(oc,[2,159]),n(oc,[2,160],{262:389,261:548,39:my,338:gy}),n(oc,[2,161],{262:389,261:549,39:my,338:gy}),n(yr,[2,163]),{13:f,16:d,44:136,45:ne,46:550,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Yt,[2,178]),n(Yt,[2,179]),{13:f,16:d,44:136,45:ne,46:551,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:552,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:553,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{48:[1,554],272:[1,555]},n(Yt,[2,184]),n(Yt,[2,186]),{314:[1,556]},{48:[1,557]},{48:[2,461]},{48:[2,462]},{48:[1,558]},{48:[2,467],193:[1,561],287:559,288:560},{13:f,16:d,55:194,197:_t,223:562,307:43,308:p},n(Sy,[2,224]),n(Sy,[2,225]),n(Sy,[2,226]),{31:[1,563],45:d2,94:564},n(Y,[2,84]),n(fd,[2,368]),n(Y,[2,85]),n(dd,[2,370]),n(pu,[2,373],{170:566}),{48:[1,567]},{48:[2,423],337:[1,568]},n(va,[2,35],{83:[1,569]}),n(va,[2,36],{81:[1,570]}),n(hy,[2,30],{307:43,267:139,275:146,278:149,77:320,67:321,68:322,55:323,79:509,44:510,75:571,13:f,16:d,45:ne,76:o2,78:c2,87:h,268:Re,269:Be,270:te,271:qe,273:We,274:$e,276:Ge,277:Ie,279:Ve,280:Oe,283:Ue,285:ze,308:p,346:He,347:je,348:E,349:A,350:x,351:P}),n(lc,[2,295]),{45:ne,77:572},{45:ne,77:573},n(lc,[2,33]),n(lc,[2,34]),{31:[2,275],50:574,84:575,85:a},{31:[2,277],51:576,84:577,85:a},n(lo,[2,356]),n(h2,[2,357],{152:578,335:[1,579]}),n(Ns,[2,74]),{29:G,57:580},{29:G,57:581},{13:f,16:d,44:39,55:40,87:h,139:582,307:43,308:p},n(p2,[2,365],{162:583,328:[1,584]}),{13:f,16:d,45:ne,55:323,67:321,68:322,77:320,79:585,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,307:43,308:p,346:He,347:je,348:E,349:A,350:x,351:P},{45:[1,586]},n(Ns,[2,81]),{29:G,57:587},n(lo,[2,73]),n(V,[2,362],{29:Ls,31:Ls,85:Ls,112:Ls,159:Ls,160:Ls,161:Ls,163:Ls,164:Ls}),n(Sd,[2,112]),n(uc,[2,401],{206:588}),n(V,[2,405],{209:589,210:590}),n(V,[2,403]),n(V,[2,404]),n(Sd,[2,113]),n(Sd,[2,400]),{13:f,16:d,44:215,45:gd,48:[1,591],55:220,82:q,87:h,89:nt,172:221,185:351,203:536,212:592,231:yd,234:535,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(_d,[2,426]),n(_y,[2,138]),n(_y,[2,139]),{232:[1,593]},n(fo,[2,292]),{47:[1,595],48:[1,594]},n(cc,[2,9]),n(uo,[2,392]),n(uo,[2,393],{44:39,55:40,307:43,195:341,139:342,194:596,190:597,13:f,16:d,87:h,197:oo,308:p}),n(uo,[2,110],{272:[1,598]}),n(bd,[2,397],{201:599,316:600,317:[1,601]}),{314:[1,602]},{29:[1,603]},n(Sa,[2,58]),n(yr,[2,445]),n(yr,[2,447]),{48:[1,604],272:[1,605]},{48:[1,606]},{272:[1,607]},{272:[1,608]},n(Yt,[2,99]),n(Xt,[2,382]),n([13,16,39,47,48,87,193,197,242,246,250,263,265,272,290,297,298,299,300,301,302,308,314,338,341,342,343,344,345,346],[2,232]),n(Yt,[2,188]),n(Yt,[2,189]),{48:[1,609]},{48:[2,468]},{289:[1,610]},{13:f,16:d,55:492,82:q,172:493,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,311:494,312:tn,315:611},n(Y,[2,42]),n(pu,[2,304]),{13:f,16:d,55:414,82:q,95:612,171:613,172:415,173:416,174:pd,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:md},{31:[1,614],45:d2,94:615},n(Zi,[2,129]),n(n2,[2,421]),{82:[1,616]},{82:[1,617]},n(lc,[2,296]),n(lc,[2,31]),n(lc,[2,32]),{31:[2,17]},{31:[2,276]},{31:[2,18]},{31:[2,278]},n(V,e2,{155:330,153:618,154:619,29:ks,31:ks,85:ks,112:ks,159:ks,160:ks,161:ks,163:ks,164:ks}),n(h2,[2,358]),n(Ns,[2,75]),n(Ns,[2,76]),{29:G,57:620},{13:f,16:d,44:39,55:40,87:h,139:621,307:43,308:p},n(p2,[2,366]),n(Ns,[2,79]),{13:f,16:d,44:136,45:ne,46:622,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Ns,[2,91],{336:[1,623]}),n([29,31,85,112,159,160,161,163,164,232,318,335],[2,114],{207:624,193:[1,625]}),n(uc,[2,117]),{13:f,16:d,44:215,45:gd,55:220,82:q,87:h,89:nt,172:221,185:351,203:536,211:626,212:627,231:yd,234:535,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(Ds,[2,134]),n(_d,[2,427]),n(Ds,[2,135]),n(fo,[2,26]),{44:628,87:h},n(uo,[2,106]),n(uo,[2,394]),n(V,[2,396]),n(bd,[2,111]),n(bd,[2,398]),{13:f,16:d,44:39,55:40,87:h,139:342,186:629,190:340,195:341,197:oo,307:43,308:p},n(py,[2,217]),n(V,cd,{144:248,140:630,143:631,31:[2,343]}),n(Yt,[2,97]),n(Xt,[2,380]),n(Yt,[2,180]),{13:f,16:d,44:136,45:ne,46:632,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:633,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Yt,[2,190]),{290:[1,634]},{314:[1,635]},{13:f,16:d,48:[1,636],55:414,82:q,171:637,172:415,173:416,174:pd,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:md},n(m2,[2,305]),n(Y,[2,86]),n(pu,[2,374]),n(va,[2,37]),n(va,[2,38]),n(lo,[2,72]),n(lo,[2,360]),n(Ns,[2,77]),{29:G,57:638},{47:[1,639]},{29:[2,376]},n(uc,[2,402]),n(uc,[2,115],{215:10,208:528,214:529,44:530,205:640,13:i,16:i,45:i,197:i,224:i,229:i,308:i,87:h}),n(uc,[2,118],{272:[1,641]}),n(vd,[2,407],{213:642,319:643,317:[1,644]}),{48:[1,645]},{318:[1,646]},{31:[1,647]},{31:[2,344]},{48:[1,648]},{48:[1,649]},{291:650,303:_e,304:Se,305:se,306:be},n(hu,[2,218]),n(pu,[2,44]),n(m2,[2,306]),n(Ns,[2,78]),{44:651,87:h},n(uc,[2,116]),n(V,[2,406]),n(vd,[2,119]),n(vd,[2,408]),n(c,i,{215:10,205:527,208:528,214:529,44:530,202:652,87:h}),n(fo,[2,27]),n(bd,[2,230]),n(g2,[2,345],{141:653,335:[1,654]}),n(Yt,[2,181]),n(Yt,[2,182]),{48:[2,191]},{48:[1,655]},{318:[1,656]},n(V,cd,{144:248,142:657,143:658,31:y2,112:y2}),n(g2,[2,346]),n(Ns,[2,80]),n(vd,[2,231]),n(co,[2,67]),n(co,[2,348])],defaultActions:{5:[2,240],6:[2,241],7:[2,242],9:[2,239],24:[2,1],25:[2,2],26:[2,244],87:[2,282],94:[2,384],100:[2,45],109:[2,325],166:[2,458],263:[2,439],336:[2,258],337:[2,101],487:[2,461],488:[2,462],560:[2,468],574:[2,17],575:[2,276],576:[2,18],577:[2,278],623:[2,376],631:[2,344],650:[2,191]},parseError:o(function(I,O){if(O.recoverable)this.trace(I);else{var D=new Error(I);throw D.hash=O,D}},"parseError"),parse:o(function(I){var O=this,D=[0],re=[],Pe=[null],g=[],sn=this.table,_="",rs=0,_u=0,Ad=0,xd=2,Su=1,Id=g.slice.call(arguments,1),jt=Object.create(this.lexer),ns={yy:{}};for(var bu in this.yy)Object.prototype.hasOwnProperty.call(this.yy,bu)&&(ns.yy[bu]=this.yy[bu]);jt.setInput(I,ns.yy),ns.yy.lexer=jt,ns.yy.parser=this,typeof jt.yylloc>"u"&&(jt.yylloc={});var mc=jt.yylloc;g.push(mc);var St=jt.options&&jt.options.ranges;typeof ns.yy.parseError=="function"?this.parseError=ns.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Lt(is){D.length=D.length-2*is,Pe.length=Pe.length-is,g.length=g.length-is}o(Lt,"popStack");for(var it=o(function(){var is;return is=jt.lex()||Su,typeof is!="number"&&(is=O.symbols_[is]||is),is},"lex"),ft,vn,go,zn,fJ,Fy,gc={},Cd,$s,R2,Rd;;){if(go=D[D.length-1],this.defaultActions[go]?zn=this.defaultActions[go]:((ft===null||typeof ft>"u")&&(ft=it()),zn=sn[go]&&sn[go][ft]),typeof zn>"u"||!zn.length||!zn[0]){var Dy="";Rd=[];for(Cd in sn[go])this.terminals_[Cd]&&Cd>xd&&Rd.push("'"+this.terminals_[Cd]+"'");jt.showPosition?Dy="Parse error on line "+(rs+1)+`:
33
+ `)}o(bM,"composeErrorMessage");function vM(n,e,t){let[,r=null]=n.toString().match(/constructor\(([\w, ]+)\)/)||[],i=SM(r,e);return bM(`Cannot inject the dependency ${i} of "${n.name}" constructor. Reason:`,t)}o(vM,"formatErrorCtor");_h.formatErrorCtor=vM});var XT=S(Sh=>{"use strict";Object.defineProperty(Sh,"__esModule",{value:!0});Sh.isDisposable=void 0;function wM(n){return!(typeof n.dispose!="function"||n.dispose.length>0)}o(wM,"isDisposable");Sh.isDisposable=wM});var ZT=S(Io=>{"use strict";Object.defineProperty(Io,"__esModule",{value:!0});Io.PostResolutionInterceptors=Io.PreResolutionInterceptors=void 0;var JT=r_(),bh=class extends JT.default{static{o(this,"PreResolutionInterceptors")}};Io.PreResolutionInterceptors=bh;var vh=class extends JT.default{static{o(this,"PostResolutionInterceptors")}};Io.PostResolutionInterceptors=vh;var c_=class{static{o(this,"Interceptors")}constructor(){this.preResolution=new bh,this.postResolution=new vh}};Io.default=c_});var xa=S(Gs=>{"use strict";Object.defineProperty(Gs,"__esModule",{value:!0});Gs.instance=Gs.typeInfo=void 0;var EM=(lh(),Od(ch)),cn=Z0(),TM=QT(),wh=ph(),AM=KT(),An=H0(),Eh=YT(),xM=o_(),IM=hh(),CM=XT(),RM=ZT();Gs.typeInfo=new Map;var l_=class n{static{o(this,"InternalDependencyContainer")}constructor(e){this.parent=e,this._registry=new AM.default,this.interceptors=new RM.default,this.disposed=!1,this.disposables=new Set}register(e,t,r={lifecycle:An.default.Transient}){this.ensureNotDisposed();let i;if(TM.isProvider(t)?i=t:i={useClass:t},cn.isTokenProvider(i)){let s=[e],a=i;for(;a!=null;){let c=a.useToken;if(s.includes(c))throw new Error(`Token registration cycle detected! ${[...s,c].join(" -> ")}`);s.push(c);let l=this._registry.get(c);l&&cn.isTokenProvider(l.provider)?a=l.provider:a=null}}if((r.lifecycle===An.default.Singleton||r.lifecycle==An.default.ContainerScoped||r.lifecycle==An.default.ResolutionScoped)&&(cn.isValueProvider(i)||cn.isFactoryProvider(i)))throw new Error(`Cannot use lifecycle "${An.default[r.lifecycle]}" with ValueProviders or FactoryProviders`);return this._registry.set(e,{provider:i,options:r}),this}registerType(e,t){return this.ensureNotDisposed(),cn.isNormalToken(t)?this.register(e,{useToken:t}):this.register(e,{useClass:t})}registerInstance(e,t){return this.ensureNotDisposed(),this.register(e,{useValue:t})}registerSingleton(e,t){if(this.ensureNotDisposed(),cn.isNormalToken(e)){if(cn.isNormalToken(t))return this.register(e,{useToken:t},{lifecycle:An.default.Singleton});if(t)return this.register(e,{useClass:t},{lifecycle:An.default.Singleton});throw new Error('Cannot register a type name as a singleton without a "to" token')}let r=e;return t&&!cn.isNormalToken(t)&&(r=t),this.register(e,{useClass:r},{lifecycle:An.default.Singleton})}resolve(e,t=new Eh.default,r=!1){this.ensureNotDisposed();let i=this.getRegistration(e);if(!i&&cn.isNormalToken(e)){if(r)return;throw new Error(`Attempted to resolve unregistered dependency token: "${e.toString()}"`)}if(this.executePreResolutionInterceptor(e,"Single"),i){let s=this.resolveRegistration(i,t);return this.executePostResolutionInterceptor(e,s,"Single"),s}if(wh.isConstructorToken(e)){let s=this.construct(e,t);return this.executePostResolutionInterceptor(e,s,"Single"),s}throw new Error("Attempted to construct an undefined constructor. Could mean a circular dependency problem. Try using `delay` function.")}executePreResolutionInterceptor(e,t){if(this.interceptors.preResolution.has(e)){let r=[];for(let i of this.interceptors.preResolution.getAll(e))i.options.frequency!="Once"&&r.push(i),i.callback(e,t);this.interceptors.preResolution.setAll(e,r)}}executePostResolutionInterceptor(e,t,r){if(this.interceptors.postResolution.has(e)){let i=[];for(let s of this.interceptors.postResolution.getAll(e))s.options.frequency!="Once"&&i.push(s),s.callback(e,t,r);this.interceptors.postResolution.setAll(e,i)}}resolveRegistration(e,t){if(this.ensureNotDisposed(),e.options.lifecycle===An.default.ResolutionScoped&&t.scopedResolutions.has(e))return t.scopedResolutions.get(e);let r=e.options.lifecycle===An.default.Singleton,i=e.options.lifecycle===An.default.ContainerScoped,s=r||i,a;return cn.isValueProvider(e.provider)?a=e.provider.useValue:cn.isTokenProvider(e.provider)?a=s?e.instance||(e.instance=this.resolve(e.provider.useToken,t)):this.resolve(e.provider.useToken,t):cn.isClassProvider(e.provider)?a=s?e.instance||(e.instance=this.construct(e.provider.useClass,t)):this.construct(e.provider.useClass,t):cn.isFactoryProvider(e.provider)?a=e.provider.useFactory(this):a=this.construct(e.provider,t),e.options.lifecycle===An.default.ResolutionScoped&&t.scopedResolutions.set(e,a),a}resolveAll(e,t=new Eh.default,r=!1){this.ensureNotDisposed();let i=this.getAllRegistrations(e);if(!i&&cn.isNormalToken(e)){if(r)return[];throw new Error(`Attempted to resolve unregistered dependency token: "${e.toString()}"`)}if(this.executePreResolutionInterceptor(e,"All"),i){let a=i.map(c=>this.resolveRegistration(c,t));return this.executePostResolutionInterceptor(e,a,"All"),a}let s=[this.construct(e,t)];return this.executePostResolutionInterceptor(e,s,"All"),s}isRegistered(e,t=!1){return this.ensureNotDisposed(),this._registry.has(e)||t&&(this.parent||!1)&&this.parent.isRegistered(e,!0)}reset(){this.ensureNotDisposed(),this._registry.clear(),this.interceptors.preResolution.clear(),this.interceptors.postResolution.clear()}clearInstances(){this.ensureNotDisposed();for(let[e,t]of this._registry.entries())this._registry.setAll(e,t.filter(r=>!cn.isValueProvider(r.provider)).map(r=>(r.instance=void 0,r)))}createChildContainer(){this.ensureNotDisposed();let e=new n(this);for(let[t,r]of this._registry.entries())r.some(({options:i})=>i.lifecycle===An.default.ContainerScoped)&&e._registry.setAll(t,r.map(i=>i.options.lifecycle===An.default.ContainerScoped?{provider:i.provider,options:i.options}:i));return e}beforeResolution(e,t,r={frequency:"Always"}){this.interceptors.preResolution.set(e,{callback:t,options:r})}afterResolution(e,t,r={frequency:"Always"}){this.interceptors.postResolution.set(e,{callback:t,options:r})}dispose(){return EM.__awaiter(this,void 0,void 0,function*(){this.disposed=!0;let e=[];this.disposables.forEach(t=>{let r=t.dispose();r&&e.push(r)}),yield Promise.all(e)})}getRegistration(e){return this.isRegistered(e)?this._registry.get(e):this.parent?this.parent.getRegistration(e):null}getAllRegistrations(e){return this.isRegistered(e)?this._registry.getAll(e):this.parent?this.parent.getAllRegistrations(e):null}construct(e,t){if(e instanceof IM.DelayedConstructor)return e.createProxy(i=>this.resolve(i,t));let r=(()=>{let i=Gs.typeInfo.get(e);if(!i||i.length===0){if(e.length===0)return new e;throw new Error(`TypeInfo not known for "${e.name}"`)}let s=i.map(this.resolveParams(t,e));return new e(...s)})();return CM.isDisposable(r)&&this.disposables.add(r),r}resolveParams(e,t){return(r,i)=>{try{return wh.isTokenDescriptor(r)?wh.isTransformDescriptor(r)?r.multiple?this.resolve(r.transform).transform(this.resolveAll(r.token,new Eh.default,r.isOptional),...r.transformArgs):this.resolve(r.transform).transform(this.resolve(r.token,e,r.isOptional),...r.transformArgs):r.multiple?this.resolveAll(r.token,new Eh.default,r.isOptional):this.resolve(r.token,e,r.isOptional):wh.isTransformDescriptor(r)?this.resolve(r.transform,e).transform(this.resolve(r.token,e),...r.transformArgs):this.resolve(r,e)}catch(s){throw new Error(xM.formatErrorCtor(t,i,s))}}}ensureNotDisposed(){if(this.disposed)throw new Error("This container has been disposed, you cannot interact with a disposed container")}};Gs.instance=new l_;Gs.default=Gs.instance});var e3=S(f_=>{"use strict";Object.defineProperty(f_,"__esModule",{value:!0});var OM=Ao(),zs=xa(),u_=ph(),PM=o_();function FM(){return function(n){let e=OM.getParamInfo(n);return class extends n{constructor(...t){super(...t.concat(e.slice(t.length).map((r,i)=>{try{return u_.isTokenDescriptor(r)?u_.isTransformDescriptor(r)?r.multiple?zs.instance.resolve(r.transform).transform(zs.instance.resolveAll(r.token),...r.transformArgs):zs.instance.resolve(r.transform).transform(zs.instance.resolve(r.token),...r.transformArgs):r.multiple?zs.instance.resolveAll(r.token):zs.instance.resolve(r.token):u_.isTransformDescriptor(r)?zs.instance.resolve(r.transform).transform(zs.instance.resolve(r.token),...r.transformArgs):zs.instance.resolve(r)}catch(s){let a=i+t.length;throw new Error(PM.formatErrorCtor(n,a,s))}})))}}}}o(FM,"autoInjectable");f_.default=FM});var t3=S(d_=>{"use strict";Object.defineProperty(d_,"__esModule",{value:!0});var DM=Ao();function NM(n,e){let t={token:n,multiple:!1,isOptional:e&&e.isOptional};return DM.defineInjectionTokenMetadata(t)}o(NM,"inject");d_.default=NM});var Th=S(h_=>{"use strict";Object.defineProperty(h_,"__esModule",{value:!0});var LM=Ao(),kM=xa(),r3=xa();function MM(n){return function(e){kM.typeInfo.set(e,LM.getParamInfo(e)),n&&n.token&&(Array.isArray(n.token)?n.token.forEach(t=>{r3.instance.register(t,e)}):r3.instance.register(n.token,e))}}o(MM,"injectable");h_.default=MM});var n3=S(p_=>{"use strict";Object.defineProperty(p_,"__esModule",{value:!0});var jM=(lh(),Od(ch)),$M=xa();function VM(n=[]){return function(e){return n.forEach(t=>{var{token:r,options:i}=t,s=jM.__rest(t,["token","options"]);return $M.instance.register(r,s,i)}),e}}o(VM,"registry");p_.default=VM});var i3=S(m_=>{"use strict";Object.defineProperty(m_,"__esModule",{value:!0});var UM=Th(),BM=xa();function qM(){return function(n){UM.default()(n),BM.instance.registerSingleton(n)}}o(qM,"singleton");m_.default=qM});var s3=S(g_=>{"use strict";Object.defineProperty(g_,"__esModule",{value:!0});var WM=Ao();function GM(n,e){let t={token:n,multiple:!0,isOptional:e&&e.isOptional};return WM.defineInjectionTokenMetadata(t)}o(GM,"injectAll");g_.default=GM});var a3=S(y_=>{"use strict";Object.defineProperty(y_,"__esModule",{value:!0});var zM=Ao();function HM(n,e,...t){let r={token:n,multiple:!0,transform:e,transformArgs:t};return zM.defineInjectionTokenMetadata(r)}o(HM,"injectAllWithTransform");y_.default=HM});var o3=S(__=>{"use strict";Object.defineProperty(__,"__esModule",{value:!0});var QM=Ao();function KM(n,e,...t){return QM.defineInjectionTokenMetadata(n,{transformToken:e,args:t})}o(KM,"injectWithTransform");__.default=KM});var c3=S(S_=>{"use strict";Object.defineProperty(S_,"__esModule",{value:!0});var YM=Th(),XM=xa();function JM(n,e){return function(t){YM.default()(t),XM.instance.register(e||t,t,{lifecycle:n})}}o(JM,"scoped");S_.default=JM});var l3=S(pi=>{"use strict";Object.defineProperty(pi,"__esModule",{value:!0});var ZM=e3();Object.defineProperty(pi,"autoInjectable",{enumerable:!0,get:o(function(){return ZM.default},"get")});var ej=t3();Object.defineProperty(pi,"inject",{enumerable:!0,get:o(function(){return ej.default},"get")});var tj=Th();Object.defineProperty(pi,"injectable",{enumerable:!0,get:o(function(){return tj.default},"get")});var rj=n3();Object.defineProperty(pi,"registry",{enumerable:!0,get:o(function(){return rj.default},"get")});var nj=i3();Object.defineProperty(pi,"singleton",{enumerable:!0,get:o(function(){return nj.default},"get")});var ij=s3();Object.defineProperty(pi,"injectAll",{enumerable:!0,get:o(function(){return ij.default},"get")});var sj=a3();Object.defineProperty(pi,"injectAllWithTransform",{enumerable:!0,get:o(function(){return sj.default},"get")});var aj=o3();Object.defineProperty(pi,"injectWithTransform",{enumerable:!0,get:o(function(){return aj.default},"get")});var oj=c3();Object.defineProperty(pi,"scoped",{enumerable:!0,get:o(function(){return oj.default},"get")})});var u3=S(b_=>{"use strict";Object.defineProperty(b_,"__esModule",{value:!0});function cj(n){let e;return t=>(e==null&&(e=n(t)),e)}o(cj,"instanceCachingFactory");b_.default=cj});var f3=S(v_=>{"use strict";Object.defineProperty(v_,"__esModule",{value:!0});function lj(n){let e=new WeakMap;return t=>{let r=e.get(t);return r==null&&(r=n(t),e.set(t,r)),r}}o(lj,"instancePerContainerCachingFactory");v_.default=lj});var d3=S(w_=>{"use strict";Object.defineProperty(w_,"__esModule",{value:!0});function uj(n,e,t,r=!0){let i,s;return a=>{let c=n(a);return(!r||s!==c)&&((s=c)?i=a.resolve(e):i=a.resolve(t)),i}}o(uj,"predicateAwareClassFactory");w_.default=uj});var h3=S($u=>{"use strict";Object.defineProperty($u,"__esModule",{value:!0});var fj=u3();Object.defineProperty($u,"instanceCachingFactory",{enumerable:!0,get:o(function(){return fj.default},"get")});var dj=f3();Object.defineProperty($u,"instancePerContainerCachingFactory",{enumerable:!0,get:o(function(){return dj.default},"get")});var hj=d3();Object.defineProperty($u,"predicateAwareClassFactory",{enumerable:!0,get:o(function(){return hj.default},"get")})});var le=S(Ia=>{"use strict";Object.defineProperty(Ia,"__esModule",{value:!0});var E_=(lh(),Od(ch));if(typeof Reflect>"u"||!Reflect.getMetadata)throw new Error(`tsyringe requires a reflect polyfill. Please add 'import "reflect-metadata"' to the top of your entry point.`);var pj=HT();Object.defineProperty(Ia,"Lifecycle",{enumerable:!0,get:o(function(){return pj.Lifecycle},"get")});E_.__exportStar(l3(),Ia);E_.__exportStar(h3(),Ia);E_.__exportStar(Z0(),Ia);var mj=hh();Object.defineProperty(Ia,"delay",{enumerable:!0,get:o(function(){return mj.delay},"get")});var gj=xa();Object.defineProperty(Ia,"container",{enumerable:!0,get:o(function(){return gj.instance},"get")})});var Tc=S(Ah=>{"use strict";Object.defineProperty(Ah,"__esModule",{value:!0});Ah.NullLogger=void 0;Ah.NullLogger={debug(){},info(){},warn(){},error(){}}});var T_=S((Qte,p3)=>{var Ac=class{static{o(this,"Wildcard")}constructor(){return yj||this}equals(e){return e&&this.termType===e.termType}};Object.defineProperty(Ac.prototype,"value",{enumerable:!0,value:"*"});Object.defineProperty(Ac.prototype,"termType",{enumerable:!0,value:"Wildcard"});var yj=new Ac;p3.exports.Wildcard=Ac});var g3=S((Yte,m3)=>{var _j=(function(){var n=o(function(R,I,O,D){for(O=O||{},D=R.length;D--;O[R[D]]=I);return O},"o"),e=[6,12,13,15,16,24,32,36,41,45,100,110,113,115,116,123,126,131,197,224,229,308,329,330,331,332,333],t=[2,247],r=[100,110,113,115,116,123,126,131,329,330,331,332,333],i=[2,409],s=[1,18],a=[1,27],c=[13,16,45,197,224,229,308],l=[28,29,53],u=[28,53],f=[1,42],d=[1,45],h=[1,41],p=[1,44],y=[123,126],b=[1,67],w=[39,45,87],v=[13,16,45,197,224,308],T=[1,87],C=[2,281],L=[1,86],V=[13,16,45,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],ae=[6,28,29,53,63,70,73,81,83,85],$=[6,13,16,28,29,53,63,70,73,81,83,85,87,308],B=[6,13,16,28,29,45,53,63,70,73,81,82,83,85,87,89,197,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314],F=[6,13,16,28,29,31,39,45,47,48,53,63,70,73,81,82,83,85,87,89,109,112,121,123,126,128,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,337,338,340,341,342,343,344,345,346],k=[13,16,308],ee=[112,132,327,334],Ke=[13,16,112,132,308],at=[1,111],Ot=[1,117],ot=[112,132,327,328,334],lt=[13,16,112,132,308,328],Xe=[28,29,45,53,87],ne=[1,138],q=[1,151],ut=[1,128],pt=[1,127],z=[1,129],Re=[1,140],Be=[1,141],te=[1,142],qe=[1,143],We=[1,144],$e=[1,145],Ge=[1,147],Ie=[1,148],Ve=[2,457],Oe=[1,158],Ue=[1,159],ze=[1,160],ue=[1,152],pe=[1,153],me=[1,156],fe=[1,171],de=[1,172],he=[1,173],ce=[1,174],ge=[1,175],ye=[1,176],_e=[1,167],Se=[1,168],se=[1,169],be=[1,170],et=[1,157],He=[1,166],je=[1,161],E=[1,162],A=[1,163],x=[1,164],P=[1,165],Y=[6,13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335],_t=[1,195],xt=[6,31,73,81,83,85],Fe=[2,285],W=[1,199],G=[1,201],H=[6,31,70,73,81,83,85],Q=[2,283],Ce=[1,207],rt=[1,218],nt=[1,223],Cr=[1,219],bn=[1,225],Ln=[1,226],tn=[1,224],BE=[6,63,70,73,81,83,85],qE=[1,236],WE=[2,334],GE=[1,243],zE=[1,241],Rr=[6,193],cd=[2,349],HE=[2,339],Sa=[28,128],QE=[47,48,193,272],ld=[47,48,193,242,272],ac=[47,48,193,242,246,272],oc=[47,48,193,242,246,250,263,265,272,290,297,298,299,300,301,302,341,342,343,344,345,346],yr=[39,47,48,193,242,246,250,263,265,272,290,297,298,299,300,301,302,338,341,342,343,344,345,346],KE=[1,271],YE=[1,270],Yt=[6,13,16,29,31,39,45,47,48,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,338,341,342,343,344,345,346,347,348,349,350,351],XE=[1,281],JE=[1,280],rn=[13,16,29,31,39,45,47,48,82,85,87,89,112,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346],fu=[45,89],ud=[13,16,29,31,39,45,47,48,82,85,87,89,112,159,160,161,163,164,174,193,197,224,229,231,232,242,246,250,263,265,272,290,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346],fd=[13,16,31,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],dd=[31,89],hd=[48,87],oo=[6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337,338],Zi=[6,13,16,39,45,48,82,87,89,231,263,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337,338,340],ZE=[1,313],cc=[6,85],hy=[6,31,81,83,85],e2=[2,361],Fs=[2,353],co=[1,343],du=[31,112,335],Ds=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],py=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335],t2=[6,109,193],lo=[31,112],Xt=[13,16,45,82,87,224,263,265,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312,346,347,348,349,350,351],my=[1,390],gy=[1,391],ba=[13,16,87,197,308,314],r2=[13,16,39,45,82,87,224,263,265,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312,346,347,348,349,350,351],pd=[1,417],md=[1,418],n2=[13,16,48,197,229,308],va=[6,31,85],i2=[6,13,16,31,45,73,81,83,85,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],yy=[6,13,16,29,31,45,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,231,268,269,270,271,273,274,276,277,279,280,283,285,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,346,347,348,349,350,351],uo=[29,31,85,112,159,160,161,163,164],gd=[1,443],yd=[1,444],s2=[1,449],fo=[31,112,193,232,318,335],_d=[13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],a2=[13,16,31,45,48,82,87,89,112,193,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],_y=[13,16,29,31,45,48,82,85,87,89,112,159,160,161,163,164,193,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],hu=[13,16,31,48,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],pu=[31,45],o2=[1,507],c2=[1,508],l2=[6,13,16,29,31,39,45,47,48,63,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,336,338,341,342,343,344,345,346,347,348,349,350,351],Sd=[29,31,85,112,159,160,161,163,164,335],ho=[6,13,16,31,45,70,73,81,83,85,87,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],u2=[13,16,31,45,48,82,87,89,112,193,197,231,232,272,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,317,318,335],f2=[2,352],Sy=[13,16,197,308,314],d2=[1,565],lc=[6,13,16,31,45,76,78,81,83,85,87,268,269,270,271,273,274,276,277,279,280,283,285,308,346,347,348,349,350,351],h2=[13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],Ns=[13,16,29,31,45,82,85,87,89,112,159,160,161,163,164,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335],p2=[13,16,87,308],Ls=[2,364],uc=[29,31,85,112,159,160,161,163,164,193,232,318,335],bd=[31,112,193,232,272,318,335],ks=[2,359],m2=[13,16,48,82,174,294,295,296,297,298,299,300,301,302,303,304,305,306,308,312],vd=[29,31,85,112,159,160,161,163,164,193,232,272,318,335],g2=[13,16,31,45,82,87,89,112,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],y2=[2,347],by={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,QueryOrUpdate:3,Prologue:4,QueryOrUpdate_group0:5,EOF:6,Query:7,Qry:8,Query_option0:9,Prologue_repetition0:10,BaseDecl:11,BASE:12,IRIREF:13,PrefixDecl:14,PREFIX:15,PNAME_NS:16,SelectClauseWildcard:17,Qry_repetition0:18,WhereClause:19,SolutionModifierNoGroup:20,SelectClauseVars:21,Qry_repetition1:22,SolutionModifier:23,CONSTRUCT:24,ConstructTemplate:25,Qry_repetition2:26,Qry_repetition3:27,WHERE:28,"{":29,Qry_option0:30,"}":31,DESCRIBE:32,Qry_group0:33,Qry_repetition4:34,Qry_option1:35,ASK:36,Qry_repetition5:37,SelectClauseBase:38,"*":39,SelectClauseVars_repetition_plus0:40,SELECT:41,SelectClauseBase_option0:42,SelectClauseItem:43,Var:44,"(":45,Expression:46,AS:47,")":48,SubSelect:49,SubSelect_option0:50,SubSelect_option1:51,DatasetClause:52,FROM:53,DatasetClause_option0:54,iri:55,WhereClause_option0:56,GroupGraphPattern:57,SolutionModifier_option0:58,SolutionModifierNoGroup_option0:59,SolutionModifierNoGroup_option1:60,SolutionModifierNoGroup_option2:61,GroupClause:62,GROUP:63,BY:64,GroupClause_repetition_plus0:65,GroupCondition:66,BuiltInCall:67,FunctionCall:68,HavingClause:69,HAVING:70,HavingClause_repetition_plus0:71,OrderClause:72,ORDER:73,OrderClause_repetition_plus0:74,OrderCondition:75,ASC:76,BrackettedExpression:77,DESC:78,Constraint:79,LimitOffsetClauses:80,LIMIT:81,INTEGER:82,OFFSET:83,ValuesClause:84,VALUES:85,InlineData:86,VAR:87,InlineData_repetition0:88,NIL:89,InlineData_repetition1:90,InlineData_repetition_plus2:91,InlineData_repetition3:92,DataBlock:93,DataBlockValueList:94,DataBlockValueList_repetition_plus0:95,Update:96,Update_repetition0:97,Update1:98,Update_option0:99,LOAD:100,Update1_option0:101,Update1_option1:102,Update1_group0:103,Update1_option2:104,GraphRefAll:105,Update1_group1:106,Update1_option3:107,GraphOrDefault:108,TO:109,CREATE:110,Update1_option4:111,GRAPH:112,INSERTDATA:113,QuadPattern:114,DELETEDATA:115,DELETEWHERE:116,Update1_option5:117,InsertDeleteClause:118,Update1_repetition0:119,IntoGraphClause:120,INTO:121,GraphRef:122,DELETE:123,InsertDeleteClause_option0:124,InsertClause:125,INSERT:126,UsingClause:127,USING:128,UsingClause_option0:129,WithClause:130,WITH:131,DEFAULT:132,GraphOrDefault_option0:133,GraphRefAll_group0:134,Quads:135,Quads_option0:136,Quads_repetition0:137,QuadsNotTriples:138,VarOrIri:139,QuadsNotTriples_option0:140,QuadsNotTriples_option1:141,QuadsNotTriples_option2:142,TriplesTemplate:143,TriplesTemplate_repetition0:144,TriplesSameSubject:145,TriplesTemplate_option0:146,GroupGraphPatternSub:147,GroupGraphPatternSub_option0:148,GroupGraphPatternSub_repetition0:149,GroupGraphPatternSubTail:150,GraphPatternNotTriples:151,GroupGraphPatternSubTail_option0:152,GroupGraphPatternSubTail_option1:153,TriplesBlock:154,TriplesBlock_repetition0:155,TriplesSameSubjectPath:156,TriplesBlock_option0:157,GroupOrUnionGraphPattern:158,OPTIONAL:159,MINUS:160,SERVICE:161,GraphPatternNotTriples_option0:162,FILTER:163,BIND:164,InlineDataOneVar:165,InlineDataFull:166,InlineDataOneVar_repetition0:167,InlineDataFull_repetition0:168,InlineDataFull_repetition_plus1:169,InlineDataFull_repetition2:170,DataBlockValue:171,Literal:172,QuotedTriple:173,UNDEF:174,GroupOrUnionGraphPattern_repetition0:175,ArgList:176,ArgList_option0:177,ArgList_repetition0:178,ExpressionList:179,ExpressionList_repetition0:180,ConstructTemplate_option0:181,ConstructTriples:182,ConstructTriples_repetition0:183,ConstructTriples_option0:184,VarOrTermOrQuotedTP:185,PropertyListNotEmpty:186,TriplesNode:187,PropertyList:188,PropertyList_option0:189,VerbObjectList:190,PropertyListNotEmpty_repetition0:191,SemiOptionalVerbObjectList:192,";":193,SemiOptionalVerbObjectList_option0:194,Verb:195,ObjectList:196,a:197,ObjectList_repetition0:198,Object:199,GraphNode:200,Object_option0:201,PropertyListPathNotEmpty:202,TriplesNodePath:203,TriplesSameSubjectPath_option0:204,O:205,PropertyListPathNotEmpty_repetition0:206,PropertyListPathNotEmptyTail:207,O_group0:208,ObjectListPath:209,ObjectListPath_repetition0:210,ObjectPath:211,GraphNodePath:212,ObjectPath_option0:213,Path:214,Path_repetition0:215,PathSequence:216,PathSequence_repetition0:217,PathEltOrInverse:218,PathElt:219,PathPrimary:220,PathElt_option0:221,PathEltOrInverse_option0:222,IriOrA:223,"!":224,PathNegatedPropertySet:225,PathOneInPropertySet:226,PathNegatedPropertySet_repetition0:227,PathNegatedPropertySet_option0:228,"^":229,TriplesNode_repetition_plus0:230,"[":231,"]":232,TriplesNodePath_repetition_plus0:233,VarOrTermOrQuotedTPExpr:234,VarOrTerm:235,GraphTerm:236,BlankNode:237,ConditionalOrExpression:238,ConditionalAndExpression:239,ConditionalOrExpression_repetition0:240,ConditionalOrExpressionTail:241,"||":242,RelationalExpression:243,ConditionalAndExpression_repetition0:244,ConditionalAndExpressionTail:245,"&&":246,NumericExpression:247,RelationalExpression_group0:248,RelationalExpression_option0:249,IN:250,MultiplicativeExpression:251,NumericExpression_repetition0:252,AdditiveExpressionTail:253,AdditiveExpressionTail_group0:254,NumericLiteralPositive:255,AdditiveExpressionTail_repetition0:256,NumericLiteralNegative:257,AdditiveExpressionTail_repetition1:258,UnaryExpression:259,MultiplicativeExpression_repetition0:260,MultiplicativeExpressionTail:261,MultiplicativeExpressionTail_group0:262,"+":263,PrimaryExpression:264,"-":265,ExprQuotedTP:266,Aggregate:267,FUNC_ARITY0:268,FUNC_ARITY1:269,FUNC_ARITY1_SPARQL_STAR:270,FUNC_ARITY2:271,",":272,FUNC_ARITY3:273,FUNC_ARITY3_SPARQL_STAR:274,BuiltInCall_group0:275,BOUND:276,BNODE:277,BuiltInCall_option0:278,EXISTS:279,COUNT:280,Aggregate_option0:281,Aggregate_group0:282,FUNC_AGGREGATE:283,Aggregate_option1:284,GROUP_CONCAT:285,Aggregate_option2:286,Aggregate_option3:287,GroupConcatSeparator:288,SEPARATOR:289,"=":290,String:291,LANGTAG:292,"^^":293,DECIMAL:294,DOUBLE:295,BOOLEAN:296,INTEGER_POSITIVE:297,DECIMAL_POSITIVE:298,DOUBLE_POSITIVE:299,INTEGER_NEGATIVE:300,DECIMAL_NEGATIVE:301,DOUBLE_NEGATIVE:302,STRING_LITERAL1:303,STRING_LITERAL2:304,STRING_LITERAL_LONG1:305,STRING_LITERAL_LONG2:306,PrefixedName:307,PNAME_LN:308,BLANK_NODE_LABEL:309,ANON:310,QuotedTP:311,"<<":312,qtSubjectOrObject:313,">>":314,DataValueTerm:315,AnnotationPattern:316,"{|":317,"|}":318,AnnotationPatternPath:319,ExprVarOrTerm:320,QueryOrUpdate_group0_option0:321,Prologue_repetition0_group0:322,Qry_group0_repetition_plus0:323,SelectClauseBase_option0_group0:324,DISTINCT:325,REDUCED:326,NAMED:327,SILENT:328,CLEAR:329,DROP:330,ADD:331,MOVE:332,COPY:333,ALL:334,".":335,UNION:336,"|":337,"/":338,PathElt_option0_group0:339,"?":340,"!=":341,"<":342,">":343,"<=":344,">=":345,NOT:346,CONCAT:347,COALESCE:348,SUBSTR:349,REGEX:350,REPLACE:351,$accept:0,$end:1},terminals_:{2:"error",6:"EOF",12:"BASE",13:"IRIREF",15:"PREFIX",16:"PNAME_NS",24:"CONSTRUCT",28:"WHERE",29:"{",31:"}",32:"DESCRIBE",36:"ASK",39:"*",41:"SELECT",45:"(",47:"AS",48:")",53:"FROM",63:"GROUP",64:"BY",70:"HAVING",73:"ORDER",76:"ASC",78:"DESC",81:"LIMIT",82:"INTEGER",83:"OFFSET",85:"VALUES",87:"VAR",89:"NIL",100:"LOAD",109:"TO",110:"CREATE",112:"GRAPH",113:"INSERTDATA",115:"DELETEDATA",116:"DELETEWHERE",121:"INTO",123:"DELETE",126:"INSERT",128:"USING",131:"WITH",132:"DEFAULT",159:"OPTIONAL",160:"MINUS",161:"SERVICE",163:"FILTER",164:"BIND",174:"UNDEF",193:";",197:"a",224:"!",229:"^",231:"[",232:"]",242:"||",246:"&&",250:"IN",263:"+",265:"-",268:"FUNC_ARITY0",269:"FUNC_ARITY1",270:"FUNC_ARITY1_SPARQL_STAR",271:"FUNC_ARITY2",272:",",273:"FUNC_ARITY3",274:"FUNC_ARITY3_SPARQL_STAR",276:"BOUND",277:"BNODE",279:"EXISTS",280:"COUNT",283:"FUNC_AGGREGATE",285:"GROUP_CONCAT",289:"SEPARATOR",290:"=",292:"LANGTAG",293:"^^",294:"DECIMAL",295:"DOUBLE",296:"BOOLEAN",297:"INTEGER_POSITIVE",298:"DECIMAL_POSITIVE",299:"DOUBLE_POSITIVE",300:"INTEGER_NEGATIVE",301:"DECIMAL_NEGATIVE",302:"DOUBLE_NEGATIVE",303:"STRING_LITERAL1",304:"STRING_LITERAL2",305:"STRING_LITERAL_LONG1",306:"STRING_LITERAL_LONG2",308:"PNAME_LN",309:"BLANK_NODE_LABEL",310:"ANON",312:"<<",314:">>",317:"{|",318:"|}",325:"DISTINCT",326:"REDUCED",327:"NAMED",328:"SILENT",329:"CLEAR",330:"DROP",331:"ADD",332:"MOVE",333:"COPY",334:"ALL",335:".",336:"UNION",337:"|",338:"/",340:"?",341:"!=",342:"<",343:">",344:"<=",345:">=",346:"NOT",347:"CONCAT",348:"COALESCE",349:"SUBSTR",350:"REGEX",351:"REPLACE"},productions_:[0,[3,3],[7,2],[4,1],[11,2],[14,3],[8,4],[8,4],[8,5],[8,7],[8,5],[8,4],[17,2],[21,2],[38,2],[43,1],[43,5],[49,4],[49,4],[52,3],[19,2],[23,2],[20,3],[62,3],[66,1],[66,1],[66,3],[66,5],[66,1],[69,2],[72,3],[75,2],[75,2],[75,1],[75,1],[80,2],[80,2],[80,4],[80,4],[84,2],[86,4],[86,4],[86,6],[86,2],[94,3],[96,3],[98,4],[98,3],[98,5],[98,4],[98,2],[98,2],[98,2],[98,5],[120,2],[118,3],[118,1],[125,2],[127,3],[130,2],[108,1],[108,2],[122,2],[105,1],[105,1],[114,3],[135,2],[138,7],[143,3],[57,3],[57,3],[147,2],[150,3],[154,3],[151,1],[151,2],[151,2],[151,3],[151,4],[151,2],[151,6],[151,1],[93,1],[93,1],[165,4],[166,4],[166,6],[171,1],[171,1],[171,1],[171,1],[158,2],[79,1],[79,1],[79,1],[68,2],[176,1],[176,5],[179,1],[179,4],[25,3],[182,3],[145,2],[145,2],[188,1],[186,2],[192,2],[190,2],[195,1],[195,1],[196,2],[199,2],[156,2],[156,2],[202,2],[207,1],[207,2],[205,2],[209,2],[211,2],[214,2],[216,2],[219,2],[218,2],[220,1],[220,2],[220,3],[225,1],[225,1],[225,4],[226,1],[226,2],[187,3],[187,3],[203,3],[203,3],[200,1],[200,1],[212,1],[212,1],[234,1],[235,1],[235,1],[139,1],[139,1],[44,1],[236,1],[236,1],[236,1],[236,1],[46,1],[238,2],[241,2],[239,2],[245,2],[243,1],[243,3],[243,4],[247,2],[253,2],[253,2],[253,2],[251,2],[261,2],[259,2],[259,2],[259,2],[259,1],[264,1],[264,1],[264,1],[264,1],[264,1],[264,1],[264,1],[77,3],[67,1],[67,2],[67,4],[67,4],[67,6],[67,8],[67,8],[67,2],[67,4],[67,2],[67,4],[67,3],[267,5],[267,5],[267,6],[288,4],[172,1],[172,2],[172,3],[172,1],[172,1],[172,1],[172,1],[172,1],[172,1],[255,1],[255,1],[255,1],[257,1],[257,1],[257,1],[291,1],[291,1],[291,1],[291,1],[55,1],[55,1],[307,1],[307,1],[237,1],[237,1],[311,5],[173,5],[313,1],[313,1],[313,1],[313,1],[313,1],[315,1],[315,1],[315,1],[185,1],[185,1],[185,1],[316,3],[319,3],[266,5],[320,1],[320,1],[320,1],[223,1],[223,1],[321,0],[321,1],[5,1],[5,1],[5,1],[9,0],[9,1],[322,1],[322,1],[10,0],[10,2],[18,0],[18,2],[22,0],[22,2],[26,0],[26,2],[27,0],[27,2],[30,0],[30,1],[323,1],[323,2],[33,1],[33,1],[34,0],[34,2],[35,0],[35,1],[37,0],[37,2],[40,1],[40,2],[324,1],[324,1],[42,0],[42,1],[50,0],[50,1],[51,0],[51,1],[54,0],[54,1],[56,0],[56,1],[58,0],[58,1],[59,0],[59,1],[60,0],[60,1],[61,0],[61,1],[65,1],[65,2],[71,1],[71,2],[74,1],[74,2],[88,0],[88,2],[90,0],[90,2],[91,1],[91,2],[92,0],[92,2],[95,1],[95,2],[97,0],[97,4],[99,0],[99,2],[101,0],[101,1],[102,0],[102,1],[103,1],[103,1],[104,0],[104,1],[106,1],[106,1],[106,1],[107,0],[107,1],[111,0],[111,1],[117,0],[117,1],[119,0],[119,2],[124,0],[124,1],[129,0],[129,1],[133,0],[133,1],[134,1],[134,1],[134,1],[136,0],[136,1],[137,0],[137,2],[140,0],[140,1],[141,0],[141,1],[142,0],[142,1],[144,0],[144,3],[146,0],[146,1],[148,0],[148,1],[149,0],[149,2],[152,0],[152,1],[153,0],[153,1],[155,0],[155,3],[157,0],[157,1],[162,0],[162,1],[167,0],[167,2],[168,0],[168,2],[169,1],[169,2],[170,0],[170,2],[175,0],[175,3],[177,0],[177,1],[178,0],[178,3],[180,0],[180,3],[181,0],[181,1],[183,0],[183,3],[184,0],[184,1],[189,0],[189,1],[191,0],[191,2],[194,0],[194,1],[198,0],[198,3],[201,0],[201,1],[204,0],[204,1],[206,0],[206,2],[208,1],[208,1],[210,0],[210,3],[213,0],[213,1],[215,0],[215,3],[217,0],[217,3],[339,1],[339,1],[339,1],[221,0],[221,1],[222,0],[222,1],[227,0],[227,3],[228,0],[228,1],[230,1],[230,2],[233,1],[233,2],[240,0],[240,2],[244,0],[244,2],[248,1],[248,1],[248,1],[248,1],[248,1],[248,1],[249,0],[249,1],[252,0],[252,2],[254,1],[254,1],[256,0],[256,2],[258,0],[258,2],[260,0],[260,2],[262,1],[262,1],[275,1],[275,1],[275,1],[275,1],[275,1],[278,0],[278,1],[281,0],[281,1],[282,1],[282,1],[284,0],[284,1],[286,0],[286,1],[287,0],[287,1]],performAction:o(function(I,O,D,re,Pe,g,sn){var _=g.length-1;switch(Pe){case 1:if(g[_-1]=g[_-1]||{},Le.base&&(g[_-1].base=Le.base),Le.base="",g[_-1].prefixes=Le.prefixes,Le.prefixes=null,Le.pathOnly){if(g[_-1].type==="path"||"termType"in g[_-1])return g[_-1];throw new Error("Received full SPARQL query in path only mode")}else if(g[_-1].type==="path"||"termType"in g[_-1])throw new Error("Received only path in full SPARQL mode");if(g[_-1].type==="update"){let St={};for(let Lt of g[_-1].updates)if(Lt.updateType==="insert"){let it={};for(let ft of Lt.insert)if(ft.type==="bgp"||ft.type==="graph")for(let vn of ft.triples)vn.subject.termType==="BlankNode"&&(it[vn.subject.value]=!0),vn.predicate.termType==="BlankNode"&&(it[vn.predicate.value]=!0),vn.object.termType==="BlankNode"&&(it[vn.object.value]=!0);for(let ft of Object.keys(it)){if(St[ft])throw new Error("Detected reuse blank node across different INSERT DATA clauses");St[ft]=!0}}}return g[_-1];case 2:this.$={...g[_-1],...g[_],type:"query"};break;case 4:Le.base=mu(g[_]);break;case 5:Le.prefixes||(Le.prefixes={}),g[_-1]=g[_-1].substr(0,g[_-1].length-1),g[_]=mu(g[_]),Le.prefixes[g[_-1]]=g[_];break;case 6:this.$={...g[_-3],...go(g[_-2]),...g[_-1],...g[_]};break;case 7:if(!Le.skipValidation&&(Cy(g[_-3].variables.map(Lt=>Iy(Lt.expression))).some(Lt=>Lt.aggregation==="count"&&!(Lt.expression instanceof wd))||g[_].group)){for(let Lt of g[_-3].variables)if(Lt.termType==="Variable"){if(!g[_].group||!g[_].group.map(it=>pc(it)).includes(pc(Lt)))throw Error("Projection of ungrouped variable (?"+pc(Lt)+")")}else if(Iy(Lt.expression).length===0){let it=EN(Lt.expression);for(let ft of it)if(!g[_].group||!g[_].group.map||!g[_].group.map(vn=>pc(vn)).includes(pc(ft)))throw Error("Use of ungrouped variable in projection of operation (?"+pc(ft)+")")}}let ns=g[_-1].where.filter(St=>St.type==="query");if(ns.length>0){let St=g[_-3].variables.filter(it=>it.variable&&it.variable.value).map(it=>it.variable.value),Lt=Cy(ns.map(it=>it.variables)).map(it=>it.value||it.variable.value);for(let it of St)if(Lt.indexOf(it)>=0)throw Error("Target id of 'AS' (?"+it+") already used in subquery")}this.$=Wt(g[_-3],go(g[_-2]),g[_-1],g[_]);break;case 8:this.$=Wt({queryType:"CONSTRUCT",template:g[_-3]},go(g[_-2]),g[_-1],g[_]);break;case 9:this.$=Wt({queryType:"CONSTRUCT",template:g[_-2]=g[_-2]?g[_-2].triples:[]},go(g[_-5]),{where:[{type:"bgp",triples:mo([],g[_-2])}]},g[_]);break;case 10:this.$=Wt({queryType:"DESCRIBE",variables:g[_-3]==="*"?[new wd]:g[_-3]},go(g[_-2]),g[_-1],g[_]);break;case 11:this.$=Wt({queryType:"ASK"},go(g[_-2]),g[_-1],g[_]);break;case 12:this.$=Wt(g[_-1],{variables:[new wd]});break;case 13:let bu=g[_].map(St=>St.value||St.variable.value),mc=TN(bu);if(mc.length>0)throw Error("Two or more of the resulting columns have the same name (?"+mc[0]+")");this.$=Wt(g[_-1],{variables:g[_]});break;case 14:this.$=Wt({queryType:"SELECT"},g[_]&&(g[_-1]=nn(g[_]),g[_]={},g[_][g[_-1]]=!0,g[_]));break;case 16:case 27:this.$=fc(g[_-3],{variable:g[_-1]});break;case 17:case 18:this.$=Wt(g[_-3],g[_-2],g[_-1],g[_],{type:"query"});break;case 19:case 58:this.$={iri:g[_],named:!!g[_-1]};break;case 20:this.$={where:g[_].patterns};break;case 21:this.$=Wt(g[_-1],g[_]);break;case 22:this.$=Wt(g[_-2],g[_-1],g[_]);break;case 23:this.$={group:g[_]};break;case 24:case 25:case 28:case 31:case 33:case 34:this.$=fc(g[_]);break;case 26:this.$=fc(g[_-1]);break;case 29:this.$={having:g[_]};break;case 30:this.$={order:g[_]};break;case 32:this.$=fc(g[_],{descending:!0});break;case 35:this.$={limit:hc(g[_])};break;case 36:this.$={offset:hc(g[_])};break;case 37:this.$={limit:hc(g[_-2]),offset:hc(g[_])};break;case 38:this.$={limit:hc(g[_]),offset:hc(g[_-2])};break;case 39:case 43:this.$={type:"values",values:g[_]};break;case 40:case 84:this.$=g[_-1].map(St=>({[g[_-3]]:St}));break;case 41:case 85:this.$=g[_-1].map(()=>({}));break;case 42:case 86:var rs=g[_-4].length;g[_-4]=g[_-4].map(vy),this.$=g[_-1].map(function(St){if(St.length!==rs)throw Error("Inconsistent VALUES length");for(var Lt={},it=0;it<rs;it++)Lt["?"+g[_-4][it].value]=St[it];return Lt});break;case 44:case 65:case 100:case 126:case 175:this.$=g[_-1];break;case 45:this.$={type:"update",updates:Ms(g[_-2],g[_-1])};break;case 46:this.$=Wt({type:"load",silent:!!g[_-2],source:g[_-1]},g[_]&&{destination:g[_]});break;case 47:this.$={type:nn(g[_-2]),silent:!!g[_-1],graph:g[_]};break;case 48:this.$={type:nn(g[_-4]),silent:!!g[_-3],source:g[_-2],destination:g[_]};break;case 49:this.$={type:"create",silent:!!g[_-2],graph:{type:"graph",name:g[_]}};break;case 50:this.$={updateType:"insert",insert:C2(g[_])};break;case 51:this.$={updateType:"delete",delete:Py(C2(g[_]))};break;case 52:this.$={updateType:"deletewhere",delete:Py(g[_])};break;case 53:this.$={updateType:"insertdelete",...g[_-4],...g[_-3],...go(g[_-2],"using"),where:g[_].patterns};break;case 54:case 57:case 62:case 167:case 191:case 236:this.$=g[_];break;case 55:this.$={delete:Py(g[_-1]),insert:g[_]||[]};break;case 56:this.$={delete:[],insert:g[_]};break;case 59:this.$={graph:g[_]};break;case 60:this.$={type:"graph",default:!0};break;case 61:case 63:this.$={type:"graph",name:g[_]};break;case 64:this.$={[nn(g[_])]:!0};break;case 66:this.$=g[_-1]?es(g[_],[g[_-1]]):es(g[_]);break;case 67:var _u=Wt(g[_-3]||{triples:[]},{type:"graph",name:g[_-5]});this.$=g[_]?[_u,g[_]]:[_u];break;case 68:case 73:this.$={type:"bgp",triples:es(g[_-2],[g[_-1]])};break;case 69:this.$={type:"group",patterns:[g[_-1]]};break;case 70:for(let St of g[_-1].filter(Lt=>Lt.type==="bind")){let Lt=g[_-1].indexOf(St),it=new Set;for(let ft of g[_-1].slice(0,Lt))(ft.type==="group"||ft.type==="bgp")&&x2(ft).forEach(vn=>it.add(vn));if(it.has(St.variable.value))throw Error("Variable used to bind is already bound (?"+St.variable.value+")")}this.$={type:"group",patterns:g[_-1]};break;case 71:this.$=g[_-1]?es([g[_-1]],g[_]):es(g[_]);break;case 72:this.$=g[_]?[g[_-2],g[_]]:g[_-2];break;case 75:this.$=Wt(g[_],{type:"optional"});break;case 76:this.$=Wt(g[_],{type:"minus"});break;case 77:this.$=Wt(g[_],{type:"graph",name:g[_-1]});break;case 78:this.$=Wt(g[_],{type:"service",name:g[_-1],silent:!!g[_-2]});break;case 79:this.$={type:"filter",expression:g[_]};break;case 80:this.$={type:"bind",variable:g[_-1],expression:g[_-3]};break;case 89:this.$=yu(g[_]);break;case 90:this.$=void 0;break;case 91:this.$=g[_-1].length?{type:"union",patterns:es(g[_-1].map(Ey),[Ey(g[_])])}:g[_];break;case 95:this.$={...g[_],function:g[_-1]};break;case 96:this.$={type:"functionCall",args:[]};break;case 97:this.$={type:"functionCall",args:Ms(g[_-2],g[_-1]),distinct:!!g[_-3]};break;case 98:case 115:case 128:case 247:case 249:case 251:case 253:case 255:case 263:case 267:case 297:case 299:case 303:case 307:case 328:case 341:case 349:case 355:case 361:case 367:case 369:case 373:case 375:case 379:case 381:case 385:case 391:case 395:case 401:case 405:case 409:case 411:case 420:case 428:case 430:case 440:case 444:case 446:case 448:this.$=[];break;case 99:this.$=Ms(g[_-2],g[_-1]);break;case 101:this.$=es(g[_-2],[g[_-1]]);break;case 102:case 112:this.$=Oy(g[_].map(St=>Wt(js(g[_-1]),St)));break;case 103:this.$=Oy(mo(g[_].map(St=>Wt(js(g[_-1].entity),St)),g[_-1].triples));break;case 105:this.$=es([g[_-1]],g[_]);break;case 106:this.$=es(g[_]);break;case 107:this.$=xy(g[_-1],g[_]);break;case 109:case 237:this.$=Le.factory.namedNode(hN);break;case 110:case 118:this.$=Ms(g[_-1],g[_]);break;case 111:this.$=g[_]?{annotation:g[_],object:g[_-1]}:g[_-1];break;case 113:this.$=g[_]?Oy(mo(g[_].map(St=>Wt(js(g[_-1].entity),St)),g[_-1].triples)):g[_-1].triples;break;case 114:this.$=xy(...g[_-1],g[_]);break;case 116:this.$=xy(...g[_]);break;case 117:case 159:case 163:this.$=[g[_-1],g[_]];break;case 119:this.$=g[_]?{object:g[_-1],annotation:g[_]}:g[_-1];break;case 120:this.$=g[_-1].length?dc("|",Ms(g[_-1],g[_])):g[_];break;case 121:this.$=g[_-1].length?dc("/",Ms(g[_-1],g[_])):g[_];break;case 122:this.$=g[_]?dc(g[_],[g[_-1]]):g[_-1];break;case 123:this.$=g[_-1]?dc(g[_-1],[g[_]]):g[_];break;case 125:case 131:this.$=dc(g[_-1],[g[_]]);break;case 129:this.$=dc("|",Ms(g[_-2],g[_-1]));break;case 132:case 134:this.$=vN(g[_-1]);break;case 133:case 135:this.$=wN(g[_-1]);break;case 140:this.$={entity:g[_],triples:[]};break;case 145:this.$=vy(g[_]);break;case 149:this.$=Le.factory.namedNode(_2);break;case 151:case 153:case 158:case 162:this.$=wy(g[_-1],g[_]);break;case 152:this.$=["||",g[_]];break;case 154:this.$=["&&",g[_]];break;case 156:this.$=Or(g[_-1],[g[_-2],g[_]]);break;case 157:this.$=Or(g[_-2]?"notin":"in",[g[_-3],g[_]]);break;case 160:this.$=["+",wy(g[_-1],g[_])];break;case 161:var Ad=ts(g[_-1].value.replace("-",""),g[_-1].datatype);this.$=["-",wy(Ad,g[_])];break;case 164:this.$=Or("UPLUS",[g[_]]);break;case 165:this.$=Or(g[_-1],[g[_]]);break;case 166:this.$=Or("UMINUS",[g[_]]);break;case 177:this.$=Or(nn(g[_-1]));break;case 178:this.$=Or(nn(g[_-3]),[g[_-1]]);break;case 179:this.$=yu(Or(nn(g[_-3]),[g[_-1]]));break;case 180:this.$=Or(nn(g[_-5]),[g[_-3],g[_-1]]);break;case 181:this.$=Or(nn(g[_-7]),[g[_-5],g[_-3],g[_-1]]);break;case 182:this.$=yu(Or(nn(g[_-7]),[g[_-5],g[_-3],g[_-1]]));break;case 183:this.$=Or(nn(g[_-1]),g[_]);break;case 184:this.$=Or("bound",[vy(g[_-1])]);break;case 185:this.$=Or(g[_-1],[]);break;case 186:this.$=Or(g[_-3],[g[_-1]]);break;case 187:this.$=Or(g[_-2]?"notexists":"exists",[Ey(g[_])]);break;case 188:case 189:this.$=fc(g[_-1],{type:"aggregate",aggregation:nn(g[_-4]),distinct:!!g[_-2]});break;case 190:this.$=fc(g[_-2],{type:"aggregate",aggregation:nn(g[_-5]),distinct:!!g[_-3],separator:typeof g[_-1]=="string"?g[_-1]:" "});break;case 192:this.$=ts(g[_]);break;case 193:this.$=yN(g[_-1],nn(g[_].substr(1)));break;case 194:this.$=ts(g[_-2],g[_]);break;case 195:case 204:this.$=ts(g[_],S2);break;case 196:case 205:this.$=ts(g[_],b2);break;case 197:case 206:this.$=ts(nn(g[_]),v2);break;case 200:this.$=ts(g[_].toLowerCase(),gN);break;case 201:this.$=ts(g[_].substr(1),S2);break;case 202:this.$=ts(g[_].substr(1),b2);break;case 203:this.$=ts(g[_].substr(1).toLowerCase(),v2);break;case 207:case 208:this.$=A2(g[_],1);break;case 209:case 210:this.$=A2(g[_],3);break;case 211:this.$=Le.factory.namedNode(mu(g[_]));break;case 213:var xd=g[_].indexOf(":"),Su=g[_].substr(0,xd),Id=Le.prefixes[Su];if(!Id)throw new Error("Unknown prefix: "+Su);var jt=mu(Id+g[_].substr(xd+1));this.$=Le.factory.namedNode(jt);break;case 214:if(g[_]=g[_].substr(0,g[_].length-1),!(g[_]in Le.prefixes))throw new Error("Unknown prefix: "+g[_]);var jt=mu(Le.prefixes[g[_]]);this.$=Le.factory.namedNode(jt);break;case 215:this.$=gu(g[_].replace(/^(_:)/,""));break;case 216:this.$=gu();break;case 217:case 218:case 232:this.$=yu(Ty(g[_-3],g[_-2],g[_-1]));break;case 230:case 231:this.$=yu(g[_-1]);break;case 248:case 250:case 252:case 254:case 256:case 260:case 264:case 268:case 270:case 292:case 294:case 296:case 298:case 300:case 302:case 304:case 306:case 329:case 342:case 356:case 368:case 370:case 372:case 374:case 392:case 402:case 425:case 427:case 429:case 431:case 441:case 445:case 447:case 449:g[_-1].push(g[_]);break;case 259:case 269:case 291:case 293:case 295:case 301:case 305:case 371:case 424:case 426:this.$=[g[_]];break;case 308:g[_-3].push(g[_-2]);break;case 350:case 362:case 376:case 380:case 382:case 386:case 396:case 406:case 410:case 412:case 421:g[_-2].push(g[_-1]);break}},"anonymous"),table:[n(e,t,{3:1,4:2,10:3}),{1:[3]},n(r,[2,307],{5:4,7:5,321:6,214:7,8:8,96:9,215:10,17:11,21:12,97:16,38:17,6:[2,238],13:i,16:i,45:i,197:i,224:i,229:i,308:i,24:[1,13],32:[1,14],36:[1,15],41:s}),n([6,13,16,24,32,36,41,45,100,110,113,115,116,123,126,131,197,224,229,308,329,330,331,332,333],[2,3],{322:19,11:20,14:21,12:[1,22],15:[1,23]}),{6:[1,24]},{6:[2,240]},{6:[2,241]},{6:[2,242]},{6:[2,243],9:25,84:26,85:a},{6:[2,239]},n(c,[2,411],{216:28,217:29}),n(l,[2,249],{18:30}),n(l,[2,251],{22:31}),n(u,[2,255],{25:32,27:33,29:[1,34]}),{13:f,16:d,33:35,39:[1,37],44:39,55:40,87:h,139:38,307:43,308:p,323:36},n(l,[2,267],{37:46}),n(y,[2,326],{98:47,103:49,106:50,117:55,130:61,100:[1,48],110:[1,51],113:[1,52],115:[1,53],116:[1,54],131:[1,62],329:[1,56],330:[1,57],331:[1,58],332:[1,59],333:[1,60]}),{39:[1,63],40:64,43:65,44:66,45:b,87:h},n(w,[2,273],{42:68,324:69,325:[1,70],326:[1,71]}),n(e,[2,248]),n(e,[2,245]),n(e,[2,246]),{13:[1,72]},{16:[1,73]},{1:[2,1]},{6:[2,2]},{6:[2,244]},{45:[1,77],85:[1,78],86:74,87:[1,75],89:[1,76]},n([6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312],[2,120],{337:[1,79]}),n(v,[2,418],{218:80,222:81,229:[1,82]}),{19:83,28:T,29:C,52:84,53:L,56:85},{19:88,28:T,29:C,52:89,53:L,56:85},n(l,[2,253],{26:90}),{28:[1,91],52:92,53:L},n(V,[2,385],{181:93,182:94,183:95,31:[2,383]}),n(ae,[2,263],{34:96}),n(ae,[2,261],{44:39,55:40,307:43,139:97,13:f,16:d,87:h,308:p}),n(ae,[2,262]),n($,[2,259]),n(B,[2,143]),n(B,[2,144]),n([6,13,16,28,29,31,39,45,47,48,53,63,70,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,197,224,229,231,232,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,314,317,318,335,338,341,342,343,344,345,346,347,348,349,350,351],[2,145]),n(F,[2,211]),n(F,[2,212]),n(F,[2,213]),n(F,[2,214]),{19:98,28:T,29:C,52:99,53:L,56:85},{6:[2,309],99:100,193:[1,101]},n(k,[2,311],{101:102,328:[1,103]}),n(ee,[2,317],{104:104,328:[1,105]}),n(Ke,[2,322],{107:106,328:[1,107]}),{111:108,112:[2,324],328:[1,109]},{29:at,114:110},{29:at,114:112},{29:at,114:113},{118:114,123:[1,115],125:116,126:Ot},n(ot,[2,315]),n(ot,[2,316]),n(lt,[2,319]),n(lt,[2,320]),n(lt,[2,321]),n(y,[2,327]),{13:f,16:d,55:118,307:43,308:p},n(l,[2,12]),n(l,[2,13],{44:66,43:119,45:b,87:h}),n(Xe,[2,269]),n(Xe,[2,15]),{13:f,16:d,44:136,45:ne,46:120,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(w,[2,14]),n(w,[2,274]),n(w,[2,271]),n(w,[2,272]),n(e,[2,4]),{13:[1,177]},n(Y,[2,39]),{29:[1,178]},{29:[1,179]},{87:[1,181],91:180},{45:[1,187],87:[1,185],89:[1,186],93:182,165:183,166:184},n(c,[2,410]),n([6,13,16,45,48,82,87,89,231,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,337],[2,121],{338:[1,188]}),{13:f,16:d,45:[1,193],55:194,197:_t,219:189,220:190,223:191,224:[1,192],307:43,308:p},n(v,[2,419]),n(xt,Fe,{20:196,59:197,69:198,70:W}),n(l,[2,250]),{29:G,57:200},n(k,[2,279],{54:202,327:[1,203]}),{29:[2,282]},n(H,Q,{23:204,58:205,62:206,63:Ce}),n(l,[2,252]),{19:208,28:T,29:C,52:209,53:L,56:85},{29:[1,210]},n(u,[2,256]),{31:[1,211]},{31:[2,384]},{13:f,16:d,44:215,45:rt,55:220,82:q,87:h,89:nt,145:212,172:221,185:213,187:214,231:Cr,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(BE,[2,265],{56:85,35:227,52:228,19:229,28:T,29:C,53:L}),n($,[2,260]),n(H,Q,{58:205,62:206,23:230,63:Ce}),n(l,[2,268]),{6:[2,45]},n(e,t,{10:3,4:231}),{13:f,16:d,55:232,307:43,308:p},n(k,[2,312]),{105:233,112:qE,122:234,132:[1,237],134:235,327:[1,238],334:[1,239]},n(ee,[2,318]),n(k,WE,{108:240,133:242,112:GE,132:zE}),n(Ke,[2,323]),{112:[1,244]},{112:[2,325]},n(Rr,[2,50]),n(V,cd,{135:245,136:246,143:247,144:248,31:HE,112:HE}),n(Rr,[2,51]),n(Rr,[2,52]),n(Sa,[2,328],{119:249}),{29:at,114:250},n(Sa,[2,56]),{29:at,114:251},n(y,[2,59]),n(Xe,[2,270]),{47:[1,252]},n(QE,[2,150]),n(ld,[2,428],{240:253}),n(ac,[2,430],{244:254}),n(ac,[2,155],{248:255,249:256,250:[2,438],290:[1,257],341:[1,258],342:[1,259],343:[1,260],344:[1,261],345:[1,262],346:[1,263]}),n(oc,[2,440],{252:264}),n(yr,[2,448],{260:265}),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,255:154,257:155,264:266,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,255:154,257:155,264:267,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,255:154,257:155,264:268,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(yr,[2,167]),n(yr,[2,168]),n(yr,[2,169]),n(yr,[2,170],{176:269,45:KE,89:YE}),n(yr,[2,171]),n(yr,[2,172]),n(yr,[2,173]),n(yr,[2,174]),{13:f,16:d,44:136,45:ne,46:272,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Yt,[2,176]),{89:[1,273]},{45:[1,274]},{45:[1,275]},{45:[1,276]},{45:[1,277]},{45:[1,278]},{45:XE,89:JE,179:279},{45:[1,282]},{45:[1,284],89:[1,283]},{279:[1,285]},n(rn,[2,192],{292:[1,286],293:[1,287]}),n(rn,[2,195]),n(rn,[2,196]),n(rn,[2,197]),n(rn,[2,198]),n(rn,[2,199]),n(rn,[2,200]),{13:f,16:d,44:39,55:40,82:q,87:h,139:289,172:291,255:154,257:155,266:290,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,320:288},{45:[1,292]},{45:[1,293]},{45:[1,294]},n(fu,[2,452]),n(fu,[2,453]),n(fu,[2,454]),n(fu,[2,455]),n(fu,[2,456]),{279:[2,458]},n(ud,[2,207]),n(ud,[2,208]),n(ud,[2,209]),n(ud,[2,210]),n(rn,[2,201]),n(rn,[2,202]),n(rn,[2,203]),n(rn,[2,204]),n(rn,[2,205]),n(rn,[2,206]),n(e,[2,5]),n(fd,[2,297],{88:295}),n(dd,[2,299],{90:296}),{48:[1,297],87:[1,298]},n(hd,[2,301]),n(Y,[2,43]),n(Y,[2,82]),n(Y,[2,83]),{29:[1,299]},{29:[1,300]},{87:[1,302],169:301},n(c,[2,412]),n(oo,[2,123]),n(oo,[2,416],{221:303,339:304,39:[1,306],263:[1,307],340:[1,305]}),n(Zi,[2,124]),{13:f,16:d,45:[1,311],55:194,89:[1,310],197:_t,223:312,225:308,226:309,229:ZE,307:43,308:p},n(c,i,{215:10,214:314}),n(Zi,[2,236]),n(Zi,[2,237]),n(cc,[2,6]),n(hy,[2,287],{60:315,72:316,73:[1,317]}),n(xt,[2,286]),{13:f,16:d,45:ne,55:323,67:321,68:322,71:318,77:320,79:319,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,307:43,308:p,346:He,347:je,348:E,349:A,350:x,351:P},n([6,31,63,70,73,81,83,85],[2,20]),n(V,e2,{38:17,49:324,147:325,17:326,21:327,148:328,154:329,155:330,29:Fs,31:Fs,85:Fs,112:Fs,159:Fs,160:Fs,161:Fs,163:Fs,164:Fs,41:s}),{13:f,16:d,55:331,307:43,308:p},n(k,[2,280]),n(cc,[2,7]),n(xt,Fe,{59:197,69:198,20:332,70:W}),n(H,[2,284]),{64:[1,333]},n(H,Q,{58:205,62:206,23:334,63:Ce}),n(l,[2,254]),n(V,cd,{144:248,30:335,143:336,31:[2,257]}),n(l,[2,100]),{31:[2,387],184:337,335:[1,338]},{13:f,16:d,44:39,55:40,87:h,139:342,186:339,190:340,195:341,197:co,307:43,308:p},n(du,[2,389],{44:39,55:40,307:43,190:340,195:341,139:342,188:344,189:345,186:346,13:f,16:d,87:h,197:co,308:p}),n(Ds,[2,227]),n(Ds,[2,228]),n(Ds,[2,229]),{13:f,16:d,44:215,45:rt,55:220,82:q,87:h,89:nt,172:221,185:351,187:350,200:348,230:347,231:Cr,234:349,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},{13:f,16:d,44:39,55:40,87:h,139:342,186:352,190:340,195:341,197:co,307:43,308:p},n(Ds,[2,146]),n(Ds,[2,147]),n(Ds,[2,148]),n(Ds,[2,149]),{13:f,16:d,44:354,55:355,82:q,87:h,172:357,237:356,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:358,312:tn,313:353},n(py,[2,215]),n(py,[2,216]),n(H,Q,{58:205,62:206,23:359,63:Ce}),n(ae,[2,264]),n(BE,[2,266]),n(cc,[2,11]),n(r,[2,308],{6:[2,310]}),n(Rr,[2,313],{102:360,120:361,121:[1,362]}),n(Rr,[2,47]),n(Rr,[2,63]),n(Rr,[2,64]),{13:f,16:d,55:363,307:43,308:p},n(Rr,[2,336]),n(Rr,[2,337]),n(Rr,[2,338]),{109:[1,364]},n(t2,[2,60]),{13:f,16:d,55:365,307:43,308:p},n(k,[2,335]),{13:f,16:d,55:366,307:43,308:p},{31:[1,367]},n(lo,[2,341],{137:368}),n(lo,[2,340]),{13:f,16:d,44:215,45:rt,55:220,82:q,87:h,89:nt,145:369,172:221,185:213,187:214,231:Cr,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},{28:[1,370],127:371,128:[1,372]},n(Sa,[2,330],{124:373,125:374,126:Ot}),n(Sa,[2,57]),{44:375,87:h},n(QE,[2,151],{241:376,242:[1,377]}),n(ld,[2,153],{245:378,246:[1,379]}),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,247:380,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{250:[1,381]},n(Xt,[2,432]),n(Xt,[2,433]),n(Xt,[2,434]),n(Xt,[2,435]),n(Xt,[2,436]),n(Xt,[2,437]),{250:[2,439]},n([47,48,193,242,246,250,272,290,341,342,343,344,345,346],[2,158],{253:382,254:383,255:384,257:385,263:[1,386],265:[1,387],297:fe,298:de,299:he,300:ce,301:ge,302:ye}),n(oc,[2,162],{261:388,262:389,39:my,338:gy}),n(yr,[2,164]),n(yr,[2,165]),n(yr,[2,166]),n(Yt,[2,95]),n(Yt,[2,96]),n(Xt,[2,377],{177:392,325:[1,393]}),{48:[1,394]},n(Yt,[2,177]),{13:f,16:d,44:136,45:ne,46:395,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:396,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:397,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:398,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:399,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Yt,[2,183]),n(Yt,[2,98]),n(Xt,[2,381],{180:400}),{87:[1,401]},n(Yt,[2,185]),{13:f,16:d,44:136,45:ne,46:402,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{29:G,57:403},n(rn,[2,193]),{13:f,16:d,55:404,307:43,308:p},{13:f,16:d,44:39,55:40,87:h,139:342,195:405,197:co,307:43,308:p},n(ba,[2,233]),n(ba,[2,234]),n(ba,[2,235]),n(r2,[2,459],{281:406,325:[1,407]}),n(Xt,[2,463],{284:408,325:[1,409]}),n(Xt,[2,465],{286:410,325:[1,411]}),{13:f,16:d,31:[1,412],55:414,82:q,171:413,172:415,173:416,174:pd,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:md},{31:[1,419],89:[1,420]},{29:[1,421]},n(hd,[2,302]),n(fd,[2,367],{167:422}),n(dd,[2,369],{168:423}),{48:[1,424],87:[1,425]},n(hd,[2,371]),n(oo,[2,122]),n(oo,[2,417]),n(oo,[2,413]),n(oo,[2,414]),n(oo,[2,415]),n(Zi,[2,125]),n(Zi,[2,127]),n(Zi,[2,128]),n(n2,[2,420],{227:426}),n(Zi,[2,130]),{13:f,16:d,55:194,197:_t,223:427,307:43,308:p},{48:[1,428]},n(va,[2,289],{61:429,80:430,81:[1,431],83:[1,432]}),n(hy,[2,288]),{64:[1,433]},n(xt,[2,29],{307:43,267:139,275:146,278:149,77:320,67:321,68:322,55:323,79:434,13:f,16:d,45:ne,268:Re,269:Be,270:te,271:qe,273:We,274:$e,276:Ge,277:Ie,279:Ve,280:Oe,283:Ue,285:ze,308:p,346:He,347:je,348:E,349:A,350:x,351:P}),n(i2,[2,293]),n(yy,[2,92]),n(yy,[2,93]),n(yy,[2,94]),{45:KE,89:YE,176:269},{31:[1,435]},{31:[1,436]},{19:437,28:T,29:C,56:85},{19:438,28:T,29:C,56:85},n(uo,[2,355],{149:439}),n(uo,[2,354]),{13:f,16:d,44:215,45:gd,55:220,82:q,87:h,89:nt,156:440,172:221,185:441,203:442,231:yd,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(ae,[2,19]),n(va,[2,21]),{13:f,16:d,44:450,45:s2,55:323,65:445,66:446,67:447,68:448,87:h,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,307:43,308:p,346:He,347:je,348:E,349:A,350:x,351:P},n(cc,[2,8]),{31:[1,451]},{31:[2,258]},{31:[2,101]},n(V,[2,386],{31:[2,388]}),n(du,[2,102]),n(fo,[2,391],{191:452}),n(V,[2,395],{196:453,198:454}),n(V,[2,108]),n(V,[2,109]),n(du,[2,103]),n(du,[2,104]),n(du,[2,390]),{13:f,16:d,44:215,45:rt,48:[1,455],55:220,82:q,87:h,89:nt,172:221,185:351,187:350,200:456,231:Cr,234:349,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(_d,[2,424]),n(a2,[2,136]),n(a2,[2,137]),n(_y,[2,140]),{232:[1,457]},{13:f,16:d,44:39,55:40,87:h,139:342,195:458,197:co,307:43,308:p},n(ba,[2,219]),n(ba,[2,220]),n(ba,[2,221]),n(ba,[2,222]),n(ba,[2,223]),n(cc,[2,10]),n(Rr,[2,46]),n(Rr,[2,314]),{112:qE,122:459},n(Rr,[2,62]),n(k,WE,{133:242,108:460,112:GE,132:zE}),n(t2,[2,61]),n(Rr,[2,49]),n([6,28,126,128,193],[2,65]),{31:[2,66],112:[1,462],138:461},n(lo,[2,351],{146:463,335:[1,464]}),{29:G,57:465},n(Sa,[2,329]),n(k,[2,332],{129:466,327:[1,467]}),n(Sa,[2,55]),n(Sa,[2,331]),{48:[1,468]},n(ld,[2,429]),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,239:469,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(ac,[2,431]),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,243:470,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(ac,[2,156]),{45:XE,89:JE,179:471},n(oc,[2,441]),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,251:472,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(yr,[2,444],{256:473}),n(yr,[2,446],{258:474}),n(Xt,[2,442]),n(Xt,[2,443]),n(yr,[2,449]),{13:f,16:d,44:136,45:ne,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,255:154,257:155,259:475,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Xt,[2,450]),n(Xt,[2,451]),n(Xt,[2,379],{178:476}),n(Xt,[2,378]),n([6,13,16,29,31,39,45,47,48,73,76,78,81,82,83,85,87,89,112,159,160,161,163,164,193,231,242,246,250,263,265,268,269,270,271,272,273,274,276,277,279,280,283,285,290,294,295,296,297,298,299,300,301,302,303,304,305,306,308,309,310,312,335,338,341,342,343,344,345,346,347,348,349,350,351],[2,175]),{48:[1,477]},{48:[1,478]},{272:[1,479]},{272:[1,480]},{272:[1,481]},{13:f,16:d,44:136,45:ne,46:482,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{48:[1,483]},{48:[1,484]},n(Yt,[2,187]),n(rn,[2,194]),{13:f,16:d,44:39,55:40,82:q,87:h,139:289,172:291,255:154,257:155,266:290,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,320:485},{13:f,16:d,39:[1,487],44:136,45:ne,46:488,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,282:486,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(r2,[2,460]),{13:f,16:d,44:136,45:ne,46:489,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Xt,[2,464]),{13:f,16:d,44:136,45:ne,46:490,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Xt,[2,466]),n(Y,[2,40]),n(fd,[2,298]),n(hu,[2,87]),n(hu,[2,88]),n(hu,[2,89]),n(hu,[2,90]),{13:f,16:d,55:492,82:q,172:493,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,311:494,312:tn,315:491},n(Y,[2,41]),n(dd,[2,300]),n(pu,[2,303],{92:495}),{13:f,16:d,31:[1,496],55:414,82:q,171:497,172:415,173:416,174:pd,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:md},{31:[1,498],89:[1,499]},{29:[1,500]},n(hd,[2,372]),{13:f,16:d,48:[2,422],55:194,197:_t,223:312,226:502,228:501,229:ZE,307:43,308:p},n(Zi,[2,131]),n(Zi,[2,126]),n(va,[2,22]),n(va,[2,290]),{82:[1,503]},{82:[1,504]},{13:f,16:d,44:510,45:ne,55:323,67:321,68:322,74:505,75:506,76:o2,77:320,78:c2,79:509,87:h,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,307:43,308:p,346:He,347:je,348:E,349:A,350:x,351:P},n(i2,[2,294]),n(l2,[2,69]),n(l2,[2,70]),n(xt,Fe,{59:197,69:198,20:511,70:W}),n(H,Q,{58:205,62:206,23:512,63:Ce}),{29:[2,375],31:[2,71],84:522,85:a,112:[1,518],150:513,151:514,158:515,159:[1,516],160:[1,517],161:[1,519],163:[1,520],164:[1,521],175:523},n(uo,[2,363],{157:524,335:[1,525]}),n(c,i,{215:10,202:526,205:527,208:528,214:529,44:530,87:h}),n(Sd,[2,399],{215:10,205:527,208:528,214:529,44:530,204:531,202:532,13:i,16:i,45:i,197:i,224:i,229:i,308:i,87:h}),{13:f,16:d,44:215,45:gd,55:220,82:q,87:h,89:nt,172:221,185:351,203:536,212:534,231:yd,233:533,234:535,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(c,i,{215:10,205:527,208:528,214:529,44:530,202:537,87:h}),n(H,[2,23],{307:43,267:139,275:146,278:149,55:323,67:447,68:448,44:450,66:538,13:f,16:d,45:s2,87:h,268:Re,269:Be,270:te,271:qe,273:We,274:$e,276:Ge,277:Ie,279:Ve,280:Oe,283:Ue,285:ze,308:p,346:He,347:je,348:E,349:A,350:x,351:P}),n(ho,[2,291]),n(ho,[2,24]),n(ho,[2,25]),{13:f,16:d,44:136,45:ne,46:539,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(ho,[2,28]),n(H,Q,{58:205,62:206,23:540,63:Ce}),n([31,112,232,318,335],[2,105],{192:541,193:[1,542]}),n(fo,[2,107]),{13:f,16:d,44:215,45:rt,55:220,82:q,87:h,89:nt,172:221,185:351,187:350,199:543,200:544,231:Cr,234:349,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(u2,[2,132]),n(_d,[2,425]),n(u2,[2,133]),{13:f,16:d,44:354,55:355,82:q,87:h,172:357,237:356,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:358,312:tn,313:545},n(Rr,[2,54]),n(Rr,[2,48]),n(lo,[2,342]),{13:f,16:d,44:39,55:40,87:h,139:546,307:43,308:p},n(lo,[2,68]),n(V,[2,350],{31:f2,112:f2}),n(Rr,[2,53]),{13:f,16:d,55:547,307:43,308:p},n(k,[2,333]),n(Xe,[2,16]),n(ld,[2,152]),n(ac,[2,154]),n(ac,[2,157]),n(oc,[2,159]),n(oc,[2,160],{262:389,261:548,39:my,338:gy}),n(oc,[2,161],{262:389,261:549,39:my,338:gy}),n(yr,[2,163]),{13:f,16:d,44:136,45:ne,46:550,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Yt,[2,178]),n(Yt,[2,179]),{13:f,16:d,44:136,45:ne,46:551,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:552,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:553,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{48:[1,554],272:[1,555]},n(Yt,[2,184]),n(Yt,[2,186]),{314:[1,556]},{48:[1,557]},{48:[2,461]},{48:[2,462]},{48:[1,558]},{48:[2,467],193:[1,561],287:559,288:560},{13:f,16:d,55:194,197:_t,223:562,307:43,308:p},n(Sy,[2,224]),n(Sy,[2,225]),n(Sy,[2,226]),{31:[1,563],45:d2,94:564},n(Y,[2,84]),n(fd,[2,368]),n(Y,[2,85]),n(dd,[2,370]),n(pu,[2,373],{170:566}),{48:[1,567]},{48:[2,423],337:[1,568]},n(va,[2,35],{83:[1,569]}),n(va,[2,36],{81:[1,570]}),n(hy,[2,30],{307:43,267:139,275:146,278:149,77:320,67:321,68:322,55:323,79:509,44:510,75:571,13:f,16:d,45:ne,76:o2,78:c2,87:h,268:Re,269:Be,270:te,271:qe,273:We,274:$e,276:Ge,277:Ie,279:Ve,280:Oe,283:Ue,285:ze,308:p,346:He,347:je,348:E,349:A,350:x,351:P}),n(lc,[2,295]),{45:ne,77:572},{45:ne,77:573},n(lc,[2,33]),n(lc,[2,34]),{31:[2,275],50:574,84:575,85:a},{31:[2,277],51:576,84:577,85:a},n(uo,[2,356]),n(h2,[2,357],{152:578,335:[1,579]}),n(Ns,[2,74]),{29:G,57:580},{29:G,57:581},{13:f,16:d,44:39,55:40,87:h,139:582,307:43,308:p},n(p2,[2,365],{162:583,328:[1,584]}),{13:f,16:d,45:ne,55:323,67:321,68:322,77:320,79:585,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,307:43,308:p,346:He,347:je,348:E,349:A,350:x,351:P},{45:[1,586]},n(Ns,[2,81]),{29:G,57:587},n(uo,[2,73]),n(V,[2,362],{29:Ls,31:Ls,85:Ls,112:Ls,159:Ls,160:Ls,161:Ls,163:Ls,164:Ls}),n(Sd,[2,112]),n(uc,[2,401],{206:588}),n(V,[2,405],{209:589,210:590}),n(V,[2,403]),n(V,[2,404]),n(Sd,[2,113]),n(Sd,[2,400]),{13:f,16:d,44:215,45:gd,48:[1,591],55:220,82:q,87:h,89:nt,172:221,185:351,203:536,212:592,231:yd,234:535,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(_d,[2,426]),n(_y,[2,138]),n(_y,[2,139]),{232:[1,593]},n(ho,[2,292]),{47:[1,595],48:[1,594]},n(cc,[2,9]),n(fo,[2,392]),n(fo,[2,393],{44:39,55:40,307:43,195:341,139:342,194:596,190:597,13:f,16:d,87:h,197:co,308:p}),n(fo,[2,110],{272:[1,598]}),n(bd,[2,397],{201:599,316:600,317:[1,601]}),{314:[1,602]},{29:[1,603]},n(Sa,[2,58]),n(yr,[2,445]),n(yr,[2,447]),{48:[1,604],272:[1,605]},{48:[1,606]},{272:[1,607]},{272:[1,608]},n(Yt,[2,99]),n(Xt,[2,382]),n([13,16,39,47,48,87,193,197,242,246,250,263,265,272,290,297,298,299,300,301,302,308,314,338,341,342,343,344,345,346],[2,232]),n(Yt,[2,188]),n(Yt,[2,189]),{48:[1,609]},{48:[2,468]},{289:[1,610]},{13:f,16:d,55:492,82:q,172:493,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,311:494,312:tn,315:611},n(Y,[2,42]),n(pu,[2,304]),{13:f,16:d,55:414,82:q,95:612,171:613,172:415,173:416,174:pd,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:md},{31:[1,614],45:d2,94:615},n(Zi,[2,129]),n(n2,[2,421]),{82:[1,616]},{82:[1,617]},n(lc,[2,296]),n(lc,[2,31]),n(lc,[2,32]),{31:[2,17]},{31:[2,276]},{31:[2,18]},{31:[2,278]},n(V,e2,{155:330,153:618,154:619,29:ks,31:ks,85:ks,112:ks,159:ks,160:ks,161:ks,163:ks,164:ks}),n(h2,[2,358]),n(Ns,[2,75]),n(Ns,[2,76]),{29:G,57:620},{13:f,16:d,44:39,55:40,87:h,139:621,307:43,308:p},n(p2,[2,366]),n(Ns,[2,79]),{13:f,16:d,44:136,45:ne,46:622,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Ns,[2,91],{336:[1,623]}),n([29,31,85,112,159,160,161,163,164,232,318,335],[2,114],{207:624,193:[1,625]}),n(uc,[2,117]),{13:f,16:d,44:215,45:gd,55:220,82:q,87:h,89:nt,172:221,185:351,203:536,211:626,212:627,231:yd,234:535,236:216,237:222,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,309:bn,310:Ln,311:217,312:tn},n(Ds,[2,134]),n(_d,[2,427]),n(Ds,[2,135]),n(ho,[2,26]),{44:628,87:h},n(fo,[2,106]),n(fo,[2,394]),n(V,[2,396]),n(bd,[2,111]),n(bd,[2,398]),{13:f,16:d,44:39,55:40,87:h,139:342,186:629,190:340,195:341,197:co,307:43,308:p},n(py,[2,217]),n(V,cd,{144:248,140:630,143:631,31:[2,343]}),n(Yt,[2,97]),n(Xt,[2,380]),n(Yt,[2,180]),{13:f,16:d,44:136,45:ne,46:632,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},{13:f,16:d,44:136,45:ne,46:633,55:133,67:132,68:134,77:131,82:q,87:h,172:135,224:ut,238:121,239:122,243:123,247:124,251:125,255:154,257:155,259:126,263:pt,264:130,265:z,266:137,267:139,268:Re,269:Be,270:te,271:qe,273:We,274:$e,275:146,276:Ge,277:Ie,278:149,279:Ve,280:Oe,283:Ue,285:ze,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:et,346:He,347:je,348:E,349:A,350:x,351:P},n(Yt,[2,190]),{290:[1,634]},{314:[1,635]},{13:f,16:d,48:[1,636],55:414,82:q,171:637,172:415,173:416,174:pd,255:154,257:155,291:150,294:ue,295:pe,296:me,297:fe,298:de,299:he,300:ce,301:ge,302:ye,303:_e,304:Se,305:se,306:be,307:43,308:p,312:md},n(m2,[2,305]),n(Y,[2,86]),n(pu,[2,374]),n(va,[2,37]),n(va,[2,38]),n(uo,[2,72]),n(uo,[2,360]),n(Ns,[2,77]),{29:G,57:638},{47:[1,639]},{29:[2,376]},n(uc,[2,402]),n(uc,[2,115],{215:10,208:528,214:529,44:530,205:640,13:i,16:i,45:i,197:i,224:i,229:i,308:i,87:h}),n(uc,[2,118],{272:[1,641]}),n(vd,[2,407],{213:642,319:643,317:[1,644]}),{48:[1,645]},{318:[1,646]},{31:[1,647]},{31:[2,344]},{48:[1,648]},{48:[1,649]},{291:650,303:_e,304:Se,305:se,306:be},n(hu,[2,218]),n(pu,[2,44]),n(m2,[2,306]),n(Ns,[2,78]),{44:651,87:h},n(uc,[2,116]),n(V,[2,406]),n(vd,[2,119]),n(vd,[2,408]),n(c,i,{215:10,205:527,208:528,214:529,44:530,202:652,87:h}),n(ho,[2,27]),n(bd,[2,230]),n(g2,[2,345],{141:653,335:[1,654]}),n(Yt,[2,181]),n(Yt,[2,182]),{48:[2,191]},{48:[1,655]},{318:[1,656]},n(V,cd,{144:248,142:657,143:658,31:y2,112:y2}),n(g2,[2,346]),n(Ns,[2,80]),n(vd,[2,231]),n(lo,[2,67]),n(lo,[2,348])],defaultActions:{5:[2,240],6:[2,241],7:[2,242],9:[2,239],24:[2,1],25:[2,2],26:[2,244],87:[2,282],94:[2,384],100:[2,45],109:[2,325],166:[2,458],263:[2,439],336:[2,258],337:[2,101],487:[2,461],488:[2,462],560:[2,468],574:[2,17],575:[2,276],576:[2,18],577:[2,278],623:[2,376],631:[2,344],650:[2,191]},parseError:o(function(I,O){if(O.recoverable)this.trace(I);else{var D=new Error(I);throw D.hash=O,D}},"parseError"),parse:o(function(I){var O=this,D=[0],re=[],Pe=[null],g=[],sn=this.table,_="",rs=0,_u=0,Ad=0,xd=2,Su=1,Id=g.slice.call(arguments,1),jt=Object.create(this.lexer),ns={yy:{}};for(var bu in this.yy)Object.prototype.hasOwnProperty.call(this.yy,bu)&&(ns.yy[bu]=this.yy[bu]);jt.setInput(I,ns.yy),ns.yy.lexer=jt,ns.yy.parser=this,typeof jt.yylloc>"u"&&(jt.yylloc={});var mc=jt.yylloc;g.push(mc);var St=jt.options&&jt.options.ranges;typeof ns.yy.parseError=="function"?this.parseError=ns.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Lt(is){D.length=D.length-2*is,Pe.length=Pe.length-is,g.length=g.length-is}o(Lt,"popStack");for(var it=o(function(){var is;return is=jt.lex()||Su,typeof is!="number"&&(is=O.symbols_[is]||is),is},"lex"),ft,vn,yo,zn,fJ,Fy,gc={},Cd,$s,R2,Rd;;){if(yo=D[D.length-1],this.defaultActions[yo]?zn=this.defaultActions[yo]:((ft===null||typeof ft>"u")&&(ft=it()),zn=sn[yo]&&sn[yo][ft]),typeof zn>"u"||!zn.length||!zn[0]){var Dy="";Rd=[];for(Cd in sn[yo])this.terminals_[Cd]&&Cd>xd&&Rd.push("'"+this.terminals_[Cd]+"'");jt.showPosition?Dy="Parse error on line "+(rs+1)+`:
34
34
  `+jt.showPosition()+`
35
- Expecting `+Rd.join(", ")+", got '"+(this.terminals_[ft]||ft)+"'":Dy="Parse error on line "+(rs+1)+": Unexpected "+(ft==Su?"end of input":"'"+(this.terminals_[ft]||ft)+"'"),this.parseError(Dy,{text:jt.match,token:this.terminals_[ft]||ft,line:jt.yylineno,loc:mc,expected:Rd})}if(zn[0]instanceof Array&&zn.length>1)throw new Error("Parse Error: multiple actions possible at state: "+go+", token: "+ft);switch(zn[0]){case 1:D.push(ft),Pe.push(jt.yytext),g.push(jt.yylloc),D.push(zn[1]),ft=null,vn?(ft=vn,vn=null):(_u=jt.yyleng,_=jt.yytext,rs=jt.yylineno,mc=jt.yylloc,Ad>0&&Ad--);break;case 2:if($s=this.productions_[zn[1]][1],gc.$=Pe[Pe.length-$s],gc._$={first_line:g[g.length-($s||1)].first_line,last_line:g[g.length-1].last_line,first_column:g[g.length-($s||1)].first_column,last_column:g[g.length-1].last_column},St&&(gc._$.range=[g[g.length-($s||1)].range[0],g[g.length-1].range[1]]),Fy=this.performAction.apply(gc,[_,_u,rs,ns.yy,zn[1],Pe,g].concat(Id)),typeof Fy<"u")return Fy;$s&&(D=D.slice(0,-1*$s*2),Pe=Pe.slice(0,-1*$s),g=g.slice(0,-1*$s)),D.push(this.productions_[zn[1]][0]),Pe.push(gc.$),g.push(gc._$),R2=sn[D[D.length-2]][D[D.length-1]],D.push(R2);break;case 3:return!0}}return!0},"parse")},wd=T_().Wildcard,Ed="http://www.w3.org/1999/02/22-rdf-syntax-ns#",hN=Ed+"type",pN=Ed+"first",mN=Ed+"rest",_2=Ed+"nil",Td="http://www.w3.org/2001/XMLSchema#",S2=Td+"integer",b2=Td+"decimal",v2=Td+"double",gN=Td+"boolean",ho="",w2="",E2="";function nn(R){return R.toLowerCase()}o(nn,"lowercase");function Ms(R,I){return R.push(I),R}o(Ms,"appendTo");function po(R,I){return R.push.apply(R,I),R}o(po,"appendAllTo");function Wt(R){R||(R={});for(var I=1,O=arguments.length,D;I<O&&(D=arguments[I]||{});I++)for(var re in D)R[re]=D[re];return R}o(Wt,"extend");function es(){for(var R=[],I=0,O=arguments.length;I<O;I++)R=R.concat.apply(R,arguments[I]);return R}o(es,"unionAll");function mu(R){if(R[0]==="<"&&(R=R.substring(1,R.length-1)),/^[a-z][a-z0-9.+-]*:/i.test(R))return R;if(!Le.base)throw new Error("Cannot resolve relative IRI "+R+" because no base IRI was set.");switch(ho!==Le.base&&(ho=Le.base,w2=ho.replace(/[^\/:]*$/,""),E2=ho.match(/^(?:[a-z]+:\/*)?[^\/]*/)[0]),R[0]){case void 0:return ho;case"#":return ho+R;case"?":return ho.replace(/(?:\?.*)?$/,R);case"/":return E2+R;default:return w2+R}}o(mu,"resolveIRI");function vy(R){if(R){var I=R[0];if(I==="?"||I==="$")return Le.factory.variable(R.substr(1))}return R}o(vy,"toVar");function Or(R,I){return{type:"operation",operator:R,args:I||[]}}o(Or,"operation");function fc(R,I){var O={expression:R==="*"?new wd:R};if(I)for(var D in I)O[D]=I[D];return O}o(fc,"expression");function dc(R,I){return{type:"path",pathType:R,items:I}}o(dc,"path");function wy(R,I){for(var O=0,D=I.length,re;O<D&&(re=I[O]);O++)R=Or(re[0],[R,re[1]]);return R}o(wy,"createOperationTree");function mo(R,I){var O=[],D=[],re=R.length,Pe,g={};if(!re)return null;for(var sn=0;sn<re&&(Pe=R[sn]);sn++)(Pe.named?D:O).push(Pe.iri);return g[I||"from"]={default:O,named:D},g}o(mo,"groupDatasets");function hc(R){return parseInt(R,10)}o(hc,"toInt");function Ey(R){return R.type==="group"&&R.patterns.length===1?R.patterns[0]:R}o(Ey,"degroupSingle");function ts(R,I){return I&&I.termType!=="NamedNode"&&(I=Le.factory.namedNode(I)),Le.factory.literal(R,I)}o(ts,"createTypedLiteral");function yN(R,I){return Le.factory.literal(R,I)}o(yN,"createLangLiteral");function Ty(R,I,O){if(!("termType"in I))throw new Error("Nested triples cannot contain paths");return Le.factory.quad(R,I,O)}o(Ty,"nestedTriple");function js(R,I,O,D){var re={};return R!=null&&(re.subject=R),I!=null&&(re.predicate=I),O!=null&&(re.object=O),D!=null&&(re.annotations=D),re}o(js,"triple");function gu(R){return typeof R=="string"?R.startsWith("e_")?Le.factory.blankNode(R):Le.factory.blankNode("e_"+R):Le.factory.blankNode("g_"+T2++)}o(gu,"blank");var T2=0;Le._resetBlanks=function(){T2=0};var _N=/\\u([a-fA-F0-9]{4})|\\U([a-fA-F0-9]{8})|\\(.)/g,SN={"\\":"\\","'":"'",'"':'"',t:" ",b:"\b",n:`
36
- `,r:"\r",f:"\f"},bN=/[\uD800-\uDBFF]([^\uDC00-\uDFFF]|$)/,Ay=String.fromCharCode;function A2(R,I){R=R.substring(I,R.length-I);try{R=R.replace(_N,function(O,D,re,Pe){var g;if(D){if(g=parseInt(D,16),isNaN(g))throw new Error;return Ay(g)}else if(re){if(g=parseInt(re,16),isNaN(g))throw new Error;return g<65535?Ay(g):Ay(55296+((g-=65536)>>10),56320+(g&1023))}else{var sn=SN[Pe];if(!sn)throw new Error;return sn}})}catch{return""}if(bN.exec(R))throw new Error("Invalid unicode codepoint of surrogate pair without corresponding codepoint in "+R);return R}o(A2,"unescapeString");function vN(R){var I=gu(),O=I,D=[],re,Pe=[];R.forEach(function(rs){D.push(rs.entity),po(Pe,rs.triples)});for(var g=0,sn=0,_=D.length,re=Array(_*2);g<_;)re[sn++]=js(O,Le.factory.namedNode(pN),D[g]),re[sn++]=js(O,Le.factory.namedNode(mN),O=++g<_?gu():Le.factory.namedNode(_2));return{entity:I,triples:po(re,Pe)}}o(vN,"createList");function wN(R){var I=gu();return{entity:I,triples:R.map(function(O){return Wt(js(I),O)})}}o(wN,"createAnonymousObject");function xy(R,I,O){var D=[],re=[];return I.forEach(function(Pe){let g=null;Pe.annotation&&(g=Pe.annotation,Pe=Pe.object),D.push(js(null,R,Pe.entity,g)),po(re,Pe.triples)}),es(D,O||[],re)}o(xy,"objectListToTriples");function lJ(R){for(var I=[],O,D=0,re;re=R[D];D++)switch(re.type){case"bgp":re.triples.length&&(O?po(O.triples,re.triples):Ms(I,O=re));break;default:(!re.patterns||re.patterns.length>0)&&(Ms(I,re),O=null)}return I}o(lJ,"mergeAdjacentBGPs");function pc(R){return R.variable?R.variable.value:R.value||R.expression.value}o(pc,"getExpressionId");function Iy(R){if(!R)return[];if(R.type==="aggregate")return[R];if(R.type==="operation"){let I=[];for(let O of R.args)I.push(...Iy(O));return I}return[]}o(Iy,"getAggregatesOfExpression");function EN(R){let I=new Set,O=o(function(D){D&&(D.termType==="Variable"?I.add(D):D.type==="operation"&&D.args.forEach(O))},"visitExpression");return O(R),I}o(EN,"getVariablesFromExpression");function Cy(R,I=1,O=[]){for(let D of R)I>0&&D instanceof Array?Cy(D,I-1,O):O.push(D);return O}o(Cy,"flatten");function Ry(R){return R.termType==="Variable"}o(Ry,"isVariable");function x2(R){if(R.triples){let I=[];for(let O of R.triples)Ry(O.subject)&&I.push(O.subject.value),Ry(O.predicate)&&I.push(O.predicate.value),Ry(O.object)&&I.push(O.object.value);return I}else if(R.patterns){let I=[];for(let O of R.patterns)I.push(...x2(O));return I}return[]}o(x2,"getBoundVarsFromGroupGraphPattern");function TN(R){let I=R.slice().sort(),O=[];for(let D=0;D<I.length-1;D++)I[D+1]==I[D]&&O.push(I[D]);return O}o(TN,"getDuplicatesInArray");function yu(R){if(!Le.sparqlStar)throw new Error("SPARQL-star support is not enabled");return R}o(yu,"ensureSparqlStar");function I2(R,I,O){for(let D of I){let re=js("subject"in D?D.subject:R,D.predicate,D.object);O.push(re),D.annotations&&I2(Ty(R,D.predicate,D.object),D.annotations,O)}}o(I2,"_applyAnnotations");function Oy(R){if(Le.sparqlStar){let I=[];return R.forEach(O=>{let D=js(O.subject,O.predicate,O.object);I.push(D),O.annotations&&I2(Ty(O.subject,O.predicate,O.object),O.annotations,I)}),I}return R}o(Oy,"applyAnnotations");function uJ(R){if(!Le.sparqlStarNestedQuads)throw new Error("Lenient SPARQL-star support with nested quads is not enabled");return R}o(uJ,"ensureSparqlStarNestedQuads");function C2(R){for(let I of R){if(I.type==="graph"&&I.name.termType==="Variable")throw new Error("Detected illegal variable in GRAPH");if(I.type==="bgp"||I.type==="graph"){for(let O of I.triples)if(O.subject.termType==="Variable"||O.predicate.termType==="Variable"||O.object.termType==="Variable")throw new Error("Detected illegal variable in BGP")}}return R}o(C2,"ensureNoVariables");function Py(R){for(let I of R)if(I.type==="bgp"){for(let O of I.triples)if(O.subject.termType==="BlankNode"||O.predicate.termType==="BlankNode"||O.object.termType==="BlankNode")throw new Error("Detected illegal blank node in BGP")}return R}o(Py,"ensureNoBnodes");var AN=(function(){var R={EOF:1,parseError:o(function(O,D){if(this.yy.parser)this.yy.parser.parseError(O,D);else throw new Error(O)},"parseError"),setInput:o(function(I,O){return this.yy=O||this.yy||{},this._input=I,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var I=this._input[0];this.yytext+=I,this.yyleng++,this.offset++,this.match+=I,this.matched+=I;var O=I.match(/(?:\r\n?|\n).*/g);return O?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),I},"input"),unput:o(function(I){var O=I.length,D=I.split(/(?:\r\n?|\n)/g);this._input=I+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-O),this.offset-=O;var re=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),D.length-1&&(this.yylineno-=D.length-1);var Pe=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:D?(D.length===re.length?this.yylloc.first_column:0)+re[re.length-D.length].length-D[0].length:this.yylloc.first_column-O},this.options.ranges&&(this.yylloc.range=[Pe[0],Pe[0]+this.yyleng-O]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).
35
+ Expecting `+Rd.join(", ")+", got '"+(this.terminals_[ft]||ft)+"'":Dy="Parse error on line "+(rs+1)+": Unexpected "+(ft==Su?"end of input":"'"+(this.terminals_[ft]||ft)+"'"),this.parseError(Dy,{text:jt.match,token:this.terminals_[ft]||ft,line:jt.yylineno,loc:mc,expected:Rd})}if(zn[0]instanceof Array&&zn.length>1)throw new Error("Parse Error: multiple actions possible at state: "+yo+", token: "+ft);switch(zn[0]){case 1:D.push(ft),Pe.push(jt.yytext),g.push(jt.yylloc),D.push(zn[1]),ft=null,vn?(ft=vn,vn=null):(_u=jt.yyleng,_=jt.yytext,rs=jt.yylineno,mc=jt.yylloc,Ad>0&&Ad--);break;case 2:if($s=this.productions_[zn[1]][1],gc.$=Pe[Pe.length-$s],gc._$={first_line:g[g.length-($s||1)].first_line,last_line:g[g.length-1].last_line,first_column:g[g.length-($s||1)].first_column,last_column:g[g.length-1].last_column},St&&(gc._$.range=[g[g.length-($s||1)].range[0],g[g.length-1].range[1]]),Fy=this.performAction.apply(gc,[_,_u,rs,ns.yy,zn[1],Pe,g].concat(Id)),typeof Fy<"u")return Fy;$s&&(D=D.slice(0,-1*$s*2),Pe=Pe.slice(0,-1*$s),g=g.slice(0,-1*$s)),D.push(this.productions_[zn[1]][0]),Pe.push(gc.$),g.push(gc._$),R2=sn[D[D.length-2]][D[D.length-1]],D.push(R2);break;case 3:return!0}}return!0},"parse")},wd=T_().Wildcard,Ed="http://www.w3.org/1999/02/22-rdf-syntax-ns#",hN=Ed+"type",pN=Ed+"first",mN=Ed+"rest",_2=Ed+"nil",Td="http://www.w3.org/2001/XMLSchema#",S2=Td+"integer",b2=Td+"decimal",v2=Td+"double",gN=Td+"boolean",po="",w2="",E2="";function nn(R){return R.toLowerCase()}o(nn,"lowercase");function Ms(R,I){return R.push(I),R}o(Ms,"appendTo");function mo(R,I){return R.push.apply(R,I),R}o(mo,"appendAllTo");function Wt(R){R||(R={});for(var I=1,O=arguments.length,D;I<O&&(D=arguments[I]||{});I++)for(var re in D)R[re]=D[re];return R}o(Wt,"extend");function es(){for(var R=[],I=0,O=arguments.length;I<O;I++)R=R.concat.apply(R,arguments[I]);return R}o(es,"unionAll");function mu(R){if(R[0]==="<"&&(R=R.substring(1,R.length-1)),/^[a-z][a-z0-9.+-]*:/i.test(R))return R;if(!Le.base)throw new Error("Cannot resolve relative IRI "+R+" because no base IRI was set.");switch(po!==Le.base&&(po=Le.base,w2=po.replace(/[^\/:]*$/,""),E2=po.match(/^(?:[a-z]+:\/*)?[^\/]*/)[0]),R[0]){case void 0:return po;case"#":return po+R;case"?":return po.replace(/(?:\?.*)?$/,R);case"/":return E2+R;default:return w2+R}}o(mu,"resolveIRI");function vy(R){if(R){var I=R[0];if(I==="?"||I==="$")return Le.factory.variable(R.substr(1))}return R}o(vy,"toVar");function Or(R,I){return{type:"operation",operator:R,args:I||[]}}o(Or,"operation");function fc(R,I){var O={expression:R==="*"?new wd:R};if(I)for(var D in I)O[D]=I[D];return O}o(fc,"expression");function dc(R,I){return{type:"path",pathType:R,items:I}}o(dc,"path");function wy(R,I){for(var O=0,D=I.length,re;O<D&&(re=I[O]);O++)R=Or(re[0],[R,re[1]]);return R}o(wy,"createOperationTree");function go(R,I){var O=[],D=[],re=R.length,Pe,g={};if(!re)return null;for(var sn=0;sn<re&&(Pe=R[sn]);sn++)(Pe.named?D:O).push(Pe.iri);return g[I||"from"]={default:O,named:D},g}o(go,"groupDatasets");function hc(R){return parseInt(R,10)}o(hc,"toInt");function Ey(R){return R.type==="group"&&R.patterns.length===1?R.patterns[0]:R}o(Ey,"degroupSingle");function ts(R,I){return I&&I.termType!=="NamedNode"&&(I=Le.factory.namedNode(I)),Le.factory.literal(R,I)}o(ts,"createTypedLiteral");function yN(R,I){return Le.factory.literal(R,I)}o(yN,"createLangLiteral");function Ty(R,I,O){if(!("termType"in I))throw new Error("Nested triples cannot contain paths");return Le.factory.quad(R,I,O)}o(Ty,"nestedTriple");function js(R,I,O,D){var re={};return R!=null&&(re.subject=R),I!=null&&(re.predicate=I),O!=null&&(re.object=O),D!=null&&(re.annotations=D),re}o(js,"triple");function gu(R){return typeof R=="string"?R.startsWith("e_")?Le.factory.blankNode(R):Le.factory.blankNode("e_"+R):Le.factory.blankNode("g_"+T2++)}o(gu,"blank");var T2=0;Le._resetBlanks=function(){T2=0};var _N=/\\u([a-fA-F0-9]{4})|\\U([a-fA-F0-9]{8})|\\(.)/g,SN={"\\":"\\","'":"'",'"':'"',t:" ",b:"\b",n:`
36
+ `,r:"\r",f:"\f"},bN=/[\uD800-\uDBFF]([^\uDC00-\uDFFF]|$)/,Ay=String.fromCharCode;function A2(R,I){R=R.substring(I,R.length-I);try{R=R.replace(_N,function(O,D,re,Pe){var g;if(D){if(g=parseInt(D,16),isNaN(g))throw new Error;return Ay(g)}else if(re){if(g=parseInt(re,16),isNaN(g))throw new Error;return g<65535?Ay(g):Ay(55296+((g-=65536)>>10),56320+(g&1023))}else{var sn=SN[Pe];if(!sn)throw new Error;return sn}})}catch{return""}if(bN.exec(R))throw new Error("Invalid unicode codepoint of surrogate pair without corresponding codepoint in "+R);return R}o(A2,"unescapeString");function vN(R){var I=gu(),O=I,D=[],re,Pe=[];R.forEach(function(rs){D.push(rs.entity),mo(Pe,rs.triples)});for(var g=0,sn=0,_=D.length,re=Array(_*2);g<_;)re[sn++]=js(O,Le.factory.namedNode(pN),D[g]),re[sn++]=js(O,Le.factory.namedNode(mN),O=++g<_?gu():Le.factory.namedNode(_2));return{entity:I,triples:mo(re,Pe)}}o(vN,"createList");function wN(R){var I=gu();return{entity:I,triples:R.map(function(O){return Wt(js(I),O)})}}o(wN,"createAnonymousObject");function xy(R,I,O){var D=[],re=[];return I.forEach(function(Pe){let g=null;Pe.annotation&&(g=Pe.annotation,Pe=Pe.object),D.push(js(null,R,Pe.entity,g)),mo(re,Pe.triples)}),es(D,O||[],re)}o(xy,"objectListToTriples");function lJ(R){for(var I=[],O,D=0,re;re=R[D];D++)switch(re.type){case"bgp":re.triples.length&&(O?mo(O.triples,re.triples):Ms(I,O=re));break;default:(!re.patterns||re.patterns.length>0)&&(Ms(I,re),O=null)}return I}o(lJ,"mergeAdjacentBGPs");function pc(R){return R.variable?R.variable.value:R.value||R.expression.value}o(pc,"getExpressionId");function Iy(R){if(!R)return[];if(R.type==="aggregate")return[R];if(R.type==="operation"){let I=[];for(let O of R.args)I.push(...Iy(O));return I}return[]}o(Iy,"getAggregatesOfExpression");function EN(R){let I=new Set,O=o(function(D){D&&(D.termType==="Variable"?I.add(D):D.type==="operation"&&D.args.forEach(O))},"visitExpression");return O(R),I}o(EN,"getVariablesFromExpression");function Cy(R,I=1,O=[]){for(let D of R)I>0&&D instanceof Array?Cy(D,I-1,O):O.push(D);return O}o(Cy,"flatten");function Ry(R){return R.termType==="Variable"}o(Ry,"isVariable");function x2(R){if(R.triples){let I=[];for(let O of R.triples)Ry(O.subject)&&I.push(O.subject.value),Ry(O.predicate)&&I.push(O.predicate.value),Ry(O.object)&&I.push(O.object.value);return I}else if(R.patterns){let I=[];for(let O of R.patterns)I.push(...x2(O));return I}return[]}o(x2,"getBoundVarsFromGroupGraphPattern");function TN(R){let I=R.slice().sort(),O=[];for(let D=0;D<I.length-1;D++)I[D+1]==I[D]&&O.push(I[D]);return O}o(TN,"getDuplicatesInArray");function yu(R){if(!Le.sparqlStar)throw new Error("SPARQL-star support is not enabled");return R}o(yu,"ensureSparqlStar");function I2(R,I,O){for(let D of I){let re=js("subject"in D?D.subject:R,D.predicate,D.object);O.push(re),D.annotations&&I2(Ty(R,D.predicate,D.object),D.annotations,O)}}o(I2,"_applyAnnotations");function Oy(R){if(Le.sparqlStar){let I=[];return R.forEach(O=>{let D=js(O.subject,O.predicate,O.object);I.push(D),O.annotations&&I2(Ty(O.subject,O.predicate,O.object),O.annotations,I)}),I}return R}o(Oy,"applyAnnotations");function uJ(R){if(!Le.sparqlStarNestedQuads)throw new Error("Lenient SPARQL-star support with nested quads is not enabled");return R}o(uJ,"ensureSparqlStarNestedQuads");function C2(R){for(let I of R){if(I.type==="graph"&&I.name.termType==="Variable")throw new Error("Detected illegal variable in GRAPH");if(I.type==="bgp"||I.type==="graph"){for(let O of I.triples)if(O.subject.termType==="Variable"||O.predicate.termType==="Variable"||O.object.termType==="Variable")throw new Error("Detected illegal variable in BGP")}}return R}o(C2,"ensureNoVariables");function Py(R){for(let I of R)if(I.type==="bgp"){for(let O of I.triples)if(O.subject.termType==="BlankNode"||O.predicate.termType==="BlankNode"||O.object.termType==="BlankNode")throw new Error("Detected illegal blank node in BGP")}return R}o(Py,"ensureNoBnodes");var AN=(function(){var R={EOF:1,parseError:o(function(O,D){if(this.yy.parser)this.yy.parser.parseError(O,D);else throw new Error(O)},"parseError"),setInput:o(function(I,O){return this.yy=O||this.yy||{},this._input=I,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var I=this._input[0];this.yytext+=I,this.yyleng++,this.offset++,this.match+=I,this.matched+=I;var O=I.match(/(?:\r\n?|\n).*/g);return O?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),I},"input"),unput:o(function(I){var O=I.length,D=I.split(/(?:\r\n?|\n)/g);this._input=I+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-O),this.offset-=O;var re=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),D.length-1&&(this.yylineno-=D.length-1);var Pe=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:D?(D.length===re.length?this.yylloc.first_column:0)+re[re.length-D.length].length-D[0].length:this.yylloc.first_column-O},this.options.ranges&&(this.yylloc.range=[Pe[0],Pe[0]+this.yyleng-O]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).
37
37
  `+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(I){this.unput(this.match.slice(I))},"less"),pastInput:o(function(){var I=this.matched.substr(0,this.matched.length-this.match.length);return(I.length>20?"...":"")+I.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var I=this.match;return I.length<20&&(I+=this._input.substr(0,20-I.length)),(I.substr(0,20)+(I.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var I=this.pastInput(),O=new Array(I.length+1).join("-");return I+this.upcomingInput()+`
38
38
  `+O+"^"},"showPosition"),test_match:o(function(I,O){var D,re,Pe;if(this.options.backtrack_lexer&&(Pe={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Pe.yylloc.range=this.yylloc.range.slice(0))),re=I[0].match(/(?:\r\n?|\n).*/g),re&&(this.yylineno+=re.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:re?re[re.length-1].length-re[re.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+I[0].length},this.yytext+=I[0],this.match+=I[0],this.matches=I,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(I[0].length),this.matched+=I[0],D=this.performAction.call(this,this.yy,this,O,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),D)return D;if(this._backtrack){for(var g in Pe)this[g]=Pe[g];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var I,O,D,re;this._more||(this.yytext="",this.match="");for(var Pe=this._currentRules(),g=0;g<Pe.length;g++)if(D=this._input.match(this.rules[Pe[g]]),D&&(!O||D[0].length>O[0].length)){if(O=D,re=g,this.options.backtrack_lexer){if(I=this.test_match(D,Pe[g]),I!==!1)return I;if(this._backtrack){O=!1;continue}else return!1}else if(!this.options.flex)break}return O?(I=this.test_match(O,Pe[re]),I!==!1?I:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text.
39
39
  `+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var O=this.next();return O||this.lex()},"lex"),begin:o(function(O){this.conditionStack.push(O)},"begin"),popState:o(function(){var O=this.conditionStack.length-1;return O>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(O){return O=this.conditionStack.length-1-Math.abs(O||0),O>=0?this.conditionStack[O]:"INITIAL"},"topState"),pushState:o(function(O){this.begin(O)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{flex:!0,"case-insensitive":!0},performAction:o(function(O,D,re,Pe){var g=Pe;switch(re){case 0:break;case 1:return 12;case 2:return 15;case 3:return 41;case 4:return 325;case 5:return 326;case 6:return 45;case 7:return 47;case 8:return 48;case 9:return 39;case 10:return 24;case 11:return 28;case 12:return 29;case 13:return 31;case 14:return 32;case 15:return 36;case 16:return 53;case 17:return 327;case 18:return 63;case 19:return 64;case 20:return 70;case 21:return 73;case 22:return 76;case 23:return 78;case 24:return 81;case 25:return 83;case 26:return 85;case 27:return 193;case 28:return 100;case 29:return 328;case 30:return 121;case 31:return 329;case 32:return 330;case 33:return 110;case 34:return 331;case 35:return 109;case 36:return 332;case 37:return 333;case 38:return 113;case 39:return 115;case 40:return 116;case 41:return 131;case 42:return 123;case 43:return 126;case 44:return 128;case 45:return 132;case 46:return 112;case 47:return 334;case 48:return 335;case 49:return 159;case 50:return 161;case 51:return 164;case 52:return 174;case 53:return 160;case 54:return 336;case 55:return 163;case 56:return 312;case 57:return 314;case 58:return 317;case 59:return 318;case 60:return 272;case 61:return 197;case 62:return 337;case 63:return 338;case 64:return 229;case 65:return 340;case 66:return 263;case 67:return 224;case 68:return 231;case 69:return 232;case 70:return 242;case 71:return 246;case 72:return 290;case 73:return 341;case 74:return 342;case 75:return 343;case 76:return 344;case 77:return 345;case 78:return 250;case 79:return 346;case 80:return 265;case 81:return 276;case 82:return 277;case 83:return 268;case 84:return 269;case 85:return 270;case 86:return 271;case 87:return 347;case 88:return 348;case 89:return 273;case 90:return 274;case 91:return 350;case 92:return 349;case 93:return 351;case 94:return 279;case 95:return 280;case 96:return 283;case 97:return 285;case 98:return 289;case 99:return 293;case 100:return 296;case 101:return 13;case 102:return 16;case 103:return 308;case 104:return 309;case 105:return 87;case 106:return 292;case 107:return 82;case 108:return 294;case 109:return 295;case 110:return 297;case 111:return 298;case 112:return 299;case 113:return 300;case 114:return 301;case 115:return 302;case 116:return"EXPONENT";case 117:return 303;case 118:return 304;case 119:return 305;case 120:return 306;case 121:return 89;case 122:return 310;case 123:return 6;case 124:return"INVALID";case 125:console.log(D.yytext);break}},"anonymous"),rules:[/^(?:\s+|(#[^\n\r]*))/i,/^(?:BASE)/i,/^(?:PREFIX)/i,/^(?:SELECT)/i,/^(?:DISTINCT)/i,/^(?:REDUCED)/i,/^(?:\()/i,/^(?:AS)/i,/^(?:\))/i,/^(?:\*)/i,/^(?:CONSTRUCT)/i,/^(?:WHERE)/i,/^(?:\{)/i,/^(?:\})/i,/^(?:DESCRIBE)/i,/^(?:ASK)/i,/^(?:FROM)/i,/^(?:NAMED)/i,/^(?:GROUP)/i,/^(?:BY)/i,/^(?:HAVING)/i,/^(?:ORDER)/i,/^(?:ASC)/i,/^(?:DESC)/i,/^(?:LIMIT)/i,/^(?:OFFSET)/i,/^(?:VALUES)/i,/^(?:;)/i,/^(?:LOAD)/i,/^(?:SILENT)/i,/^(?:INTO)/i,/^(?:CLEAR)/i,/^(?:DROP)/i,/^(?:CREATE)/i,/^(?:ADD)/i,/^(?:TO)/i,/^(?:MOVE)/i,/^(?:COPY)/i,/^(?:INSERT((\s+|(#[^\n\r]*)\n\r?)+)DATA)/i,/^(?:DELETE((\s+|(#[^\n\r]*)\n\r?)+)DATA)/i,/^(?:DELETE((\s+|(#[^\n\r]*)\n\r?)+)WHERE)/i,/^(?:WITH)/i,/^(?:DELETE)/i,/^(?:INSERT)/i,/^(?:USING)/i,/^(?:DEFAULT)/i,/^(?:GRAPH)/i,/^(?:ALL)/i,/^(?:\.)/i,/^(?:OPTIONAL)/i,/^(?:SERVICE)/i,/^(?:BIND)/i,/^(?:UNDEF)/i,/^(?:MINUS)/i,/^(?:UNION)/i,/^(?:FILTER)/i,/^(?:<<)/i,/^(?:>>)/i,/^(?:\{\|)/i,/^(?:\|\})/i,/^(?:,)/i,/^(?:a)/i,/^(?:\|)/i,/^(?:\/)/i,/^(?:\^)/i,/^(?:\?)/i,/^(?:\+)/i,/^(?:!)/i,/^(?:\[)/i,/^(?:\])/i,/^(?:\|\|)/i,/^(?:&&)/i,/^(?:=)/i,/^(?:!=)/i,/^(?:<)/i,/^(?:>)/i,/^(?:<=)/i,/^(?:>=)/i,/^(?:IN)/i,/^(?:NOT)/i,/^(?:-)/i,/^(?:BOUND)/i,/^(?:BNODE)/i,/^(?:(RAND|NOW|UUID|STRUUID))/i,/^(?:(LANG|DATATYPE|IRI|URI|ABS|CEIL|FLOOR|ROUND|STRLEN|STR|UCASE|LCASE|ENCODE_FOR_URI|YEAR|MONTH|DAY|HOURS|MINUTES|SECONDS|TIMEZONE|TZ|MD5|SHA1|SHA256|SHA384|SHA512|isIRI|isURI|isBLANK|isLITERAL|isNUMERIC))/i,/^(?:(SUBJECT|PREDICATE|OBJECT|isTRIPLE))/i,/^(?:(LANGMATCHES|CONTAINS|STRSTARTS|STRENDS|STRBEFORE|STRAFTER|STRLANG|STRDT|sameTerm))/i,/^(?:CONCAT)/i,/^(?:COALESCE)/i,/^(?:IF)/i,/^(?:TRIPLE)/i,/^(?:REGEX)/i,/^(?:SUBSTR)/i,/^(?:REPLACE)/i,/^(?:EXISTS)/i,/^(?:COUNT)/i,/^(?:SUM|MIN|MAX|AVG|SAMPLE)/i,/^(?:GROUP_CONCAT)/i,/^(?:SEPARATOR)/i,/^(?:\^\^)/i,/^(?:true|false)/i,/^(?:(<(?:[^<>\"\{\}\|\^`\\\u0000-\u0020])*>))/i,/^(?:((([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])(?:(?:(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])|\.)*(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040]))?)?:))/i,/^(?:(((([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])(?:(?:(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])|\.)*(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040]))?)?:)((?:((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|:|[0-9]|((%([0-9A-Fa-f])([0-9A-Fa-f]))|(\\(_|~|\.|-|!|\$|&|'|\(|\)|\*|\+|,|;|=|\/|\?|#|@|%))))(?:(?:(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])|\.|:|((%([0-9A-Fa-f])([0-9A-Fa-f]))|(\\(_|~|\.|-|!|\$|&|'|\(|\)|\*|\+|,|;|=|\/|\?|#|@|%))))*(?:(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])|:|((%([0-9A-Fa-f])([0-9A-Fa-f]))|(\\(_|~|\.|-|!|\$|&|'|\(|\)|\*|\+|,|;|=|\/|\?|#|@|%)))))?)))/i,/^(?:(_:(?:((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|[0-9])(?:(?:(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])|\.)*(((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|-|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040]))?))/i,/^(?:([\?\$]((?:((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|[0-9])(?:((?:([A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])|_))|[0-9]|\u00B7|[\u0300-\u036F\u203F-\u2040])*)))/i,/^(?:(@[a-zA-Z]+(?:-[a-zA-Z0-9]+)*))/i,/^(?:([0-9]+))/i,/^(?:([0-9]*\.[0-9]+))/i,/^(?:([0-9]+\.[0-9]*([eE][+-]?[0-9]+)|\.([0-9])+([eE][+-]?[0-9]+)|([0-9])+([eE][+-]?[0-9]+)))/i,/^(?:(\+([0-9]+)))/i,/^(?:(\+([0-9]*\.[0-9]+)))/i,/^(?:(\+([0-9]+\.[0-9]*([eE][+-]?[0-9]+)|\.([0-9])+([eE][+-]?[0-9]+)|([0-9])+([eE][+-]?[0-9]+))))/i,/^(?:(-([0-9]+)))/i,/^(?:(-([0-9]*\.[0-9]+)))/i,/^(?:(-([0-9]+\.[0-9]*([eE][+-]?[0-9]+)|\.([0-9])+([eE][+-]?[0-9]+)|([0-9])+([eE][+-]?[0-9]+))))/i,/^(?:([eE][+-]?[0-9]+))/i,/^(?:('(?:(?:[^\u0027\u005C\u000A\u000D])|(\\[tbnrf\\\"']|\\u([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])|\\U([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])))*'))/i,/^(?:("(?:(?:[^\u0022\u005C\u000A\u000D])|(\\[tbnrf\\\"']|\\u([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])|\\U([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])))*"))/i,/^(?:('''(?:(?:'|'')?(?:[^'\\]|(\\[tbnrf\\\"']|\\u([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])|\\U([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f]))))*'''))/i,/^(?:("""(?:(?:"|"")?(?:[^\"\\]|(\\[tbnrf\\\"']|\\u([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])|\\U([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f])([0-9A-Fa-f]))))*"""))/i,/^(?:(\((\u0020|\u0009|\u000D|\u000A)*\)))/i,/^(?:(\[(\u0020|\u0009|\u000D|\u000A)*\]))/i,/^(?:$)/i,/^(?:.)/i,/^(?:.)/i],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125],inclusive:!0}}};return R})();by.lexer=AN;function Le(){this.yy={}}return o(Le,"Parser"),Le.prototype=by,by.Parser=Le,new Le})();m3.exports=_j});var b3=S((Jte,S3)=>{var Sj="http://www.w3.org/2001/XMLSchema#integer",bj="http://www.w3.org/2001/XMLSchema#string";function It(n){this._options=n=n||{};var e=n.prefixes||{};this._prefixByIri={};var t=[];for(var r in e){var i=e[r];Vu(i)&&(this._prefixByIri[i]=r,t.push(i))}var s=t.join("|").replace(/[\]\/\(\)\*\+\?\.\\\$]/g,"\\$&");this._prefixRegex=new RegExp("^("+s+")([a-zA-Z][\\-_a-zA-Z0-9]*)$"),this._usedPrefixes={},this._sparqlStar=n.sparqlStar,this._indent=Vu(n.indent)?n.indent:" ",this._newline=Vu(n.newline)?n.newline:`
40
- `,this._explicitDatatype=!!n.explicitDatatype}o(It,"Generator");It.prototype.toQuery=function(n){var e="";return n.queryType&&(e+=n.queryType.toUpperCase()+" "),n.reduced&&(e+="REDUCED "),n.distinct&&(e+="DISTINCT "),n.variables?e+=jn(n.variables,void 0,function(t){return/^[?$]/.test(t)?t:Ca(t)?this.toEntity(t):"("+this.toExpression(t.expression)+" AS "+xh(t.variable)+")"},this)+" ":n.template&&(e+=this.group(n.template,!0)+this._newline),n.from&&(e+=this.graphs("FROM ",n.from.default)+this.graphs("FROM NAMED ",n.from.named)),n.where&&(e+="WHERE "+this.group(n.where,!0)+this._newline),n.updates&&(e+=jn(n.updates,";"+this._newline,this.toUpdate,this)),n.group&&(e+="GROUP BY "+jn(n.group,void 0,function(t){var r=Ca(t.expression)?this.toEntity(t.expression):"("+this.toExpression(t.expression)+")";return t.variable?"("+r+" AS "+xh(t.variable)+")":r},this)+this._newline),n.having&&(e+="HAVING ("+jn(n.having,void 0,this.toExpression,this)+")"+this._newline),n.order&&(e+="ORDER BY "+jn(n.order,void 0,function(t){var r="("+this.toExpression(t.expression)+")";return t.descending?"DESC "+r:r},this)+this._newline),n.offset&&(e+="OFFSET "+n.offset+this._newline),n.limit&&(e+="LIMIT "+n.limit+this._newline),n.values&&(e+=this.values(n)),e=this.baseAndPrefixes(n)+e,e.trim()};It.prototype.baseAndPrefixes=function(n){var e=n.base?"BASE <"+n.base+">"+this._newline:"",t="";for(var r in n.prefixes)(this._options.allPrefixes||this._usedPrefixes[r])&&(t+="PREFIX "+r+": <"+n.prefixes[r]+">"+this._newline);return e+t};It.prototype.toPattern=function(n){var e=n.type||n instanceof Array&&"array"||(n.subject&&n.predicate&&n.object?"triple":"");if(!(e in this))throw new Error("Unknown entry type: "+e);return this[e](n)};It.prototype.triple=function(n){return this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+"."};It.prototype.array=function(n){return jn(n,this._newline,this.toPattern,this)};It.prototype.bgp=function(n){return this.encodeTriples(n.triples)};It.prototype.encodeTriples=function(n){if(!n.length)return"";for(var e=[],t=void 0,r=void 0,i=0;i<n.length;i++){var s=n[i];Io(s.subject,t)?Io(s.predicate,r)?e.push(","):(r=s.predicate,e.push(";"+this._newline,this._indent,this.toEntity(r))):(t&&e.push("."+this._newline),t=s.subject,r=s.predicate,e.push(this.toEntity(t)," ",this.toEntity(r))),e.push(" ",this.toEntity(s.object))}return e.push("."),e.join("")};It.prototype.graph=function(n){return"GRAPH "+this.toEntity(n.name)+" "+this.group(n)};It.prototype.graphs=function(n,e){return!e||e.length===0?"":jn(e,"",function(t){return n+this.toEntity(t)+this._newline},this)};It.prototype.group=function(n,e){return n=e!==!0?this.array(n.patterns||n.triples):this.toPattern(n.type!=="group"?n:n.patterns),n.indexOf(this._newline)===-1?"{ "+n+" }":"{"+this._newline+this.indent(n)+this._newline+"}"};It.prototype.query=function(n){return this.toQuery(n)};It.prototype.filter=function(n){return"FILTER("+this.toExpression(n.expression)+")"};It.prototype.bind=function(n){return"BIND("+this.toExpression(n.expression)+" AS "+xh(n.variable)+")"};It.prototype.optional=function(n){return"OPTIONAL "+this.group(n)};It.prototype.union=function(n){return jn(n.patterns,this._newline+"UNION"+this._newline,function(e){return this.group(e,!0)},this)};It.prototype.minus=function(n){return"MINUS "+this.group(n)};It.prototype.values=function(n){var e=Object.keys(n.values.reduce(function(i,s){for(var a in s)i[a]=!0;return i},{})),t,r;return e.length===1?t=r="":(t="(",r=")"),"VALUES "+t+e.join(" ")+r+" {"+this._newline+jn(n.values,this._newline,function(i){return" "+t+jn(e,void 0,function(s){return i[s]?this.toEntity(i[s]):"UNDEF"},this)+r},this)+this._newline+"}"};It.prototype.service=function(n){return"SERVICE "+(n.silent?"SILENT ":"")+this.toEntity(n.name)+" "+this.group(n)};It.prototype.toExpression=function(n){if(Ca(n))return this.toEntity(n);switch(n.type.toLowerCase()){case"aggregate":return n.aggregation.toUpperCase()+"("+(n.distinct?"DISTINCT ":"")+this.toExpression(n.expression)+(typeof n.separator=="string"?'; SEPARATOR = "'+n.separator.replace(y3,_3)+'"':"")+")";case"functioncall":return this.toEntity(n.function)+"("+jn(n.args,", ",this.toExpression,this)+")";case"operation":var e=n.operator.toUpperCase(),t=n.args||[];switch(n.operator.toLowerCase()){case"<":case">":case">=":case"<=":case"&&":case"||":case"=":case"!=":case"+":case"-":case"*":case"/":return(Ca(t[0])?this.toEntity(t[0]):"("+this.toExpression(t[0])+")")+" "+e+" "+(Ca(t[1])?this.toEntity(t[1]):"("+this.toExpression(t[1])+")");case"!":return"!("+this.toExpression(t[0])+")";case"uplus":return"+("+this.toExpression(t[0])+")";case"uminus":return"-("+this.toExpression(t[0])+")";case"notin":e="NOT IN";case"in":return this.toExpression(t[0])+" "+e+"("+(Vu(t[1])?t[1]:jn(t[1],", ",this.toExpression,this))+")";case"notexists":e="NOT EXISTS";case"exists":return e+" "+this.group(t[0],!0);default:return e+"("+jn(t,", ",this.toExpression,this)+")"}default:throw new Error("Unknown expression type: "+n.type)}};It.prototype.toEntity=function(n){if(Ca(n))switch(n.termType){case"Wildcard":return"*";case"Variable":return xh(n);case"BlankNode":return"_:"+n.value;case"Literal":var e=n.value||"",t=n.language||"",r=n.datatype;if(n='"'+e.replace(y3,_3)+'"',t)n+="@"+t;else if(r){if(!this._explicitDatatype)switch(r.value){case bj:return n;case Sj:if(/^\d+$/.test(e))return e+" "}n+="^^"+this.encodeIRI(r.value)}return n;case"Quad":if(!this._sparqlStar)throw new Error("SPARQL* support is not enabled");return n.graph&&n.graph.termType!=="DefaultGraph"?"<< GRAPH "+this.toEntity(n.graph)+" { "+this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+" } >>":"<< "+this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+" >>";default:return this.encodeIRI(n.value)}else{var i=n.items.map(this.toEntity,this),s=n.pathType;switch(s){case"^":case"!":return s+i[0];case"*":case"+":case"?":return"("+i[0]+s+")";default:return"("+i.join(s)+")"}}};var y3=/["\\\t\n\r\b\f]/g,_3=o(function(n){return vj[n]},"escapeReplacer"),vj={"\\":"\\\\",'"':'\\"'," ":"\\t","\n":"\\n","\r":"\\r","\b":"\\b","\f":"\\f"};It.prototype.encodeIRI=function(n){var e=this._prefixRegex.exec(n);if(e){var t=this._prefixByIri[e[1]];return this._usedPrefixes[t]=!0,t+":"+e[2]}return"<"+n+">"};It.prototype.toUpdate=function(n){switch(n.type||n.updateType){case"load":return"LOAD"+(n.source?" "+this.toEntity(n.source):"")+(n.destination?" INTO GRAPH "+this.toEntity(n.destination):"");case"insert":return"INSERT DATA "+this.group(n.insert,!0);case"delete":return"DELETE DATA "+this.group(n.delete,!0);case"deletewhere":return"DELETE WHERE "+this.group(n.delete,!0);case"insertdelete":return(n.graph?"WITH "+this.toEntity(n.graph)+this._newline:"")+(n.delete.length?"DELETE "+this.group(n.delete,!0)+this._newline:"")+(n.insert.length?"INSERT "+this.group(n.insert,!0)+this._newline:"")+(n.using?this.graphs("USING ",n.using.default):"")+(n.using?this.graphs("USING NAMED ",n.using.named):"")+"WHERE "+this.group(n.where,!0);case"add":case"copy":case"move":return n.type.toUpperCase()+" "+(n.silent?"SILENT ":"")+(n.source.default?"DEFAULT":this.toEntity(n.source.name))+" TO "+this.toEntity(n.destination.name);case"create":case"clear":case"drop":return n.type.toUpperCase()+(n.silent?" SILENT ":" ")+(n.graph.default?"DEFAULT":n.graph.named?"NAMED":n.graph.all?"ALL":"GRAPH "+this.toEntity(n.graph.name));default:throw new Error("Unknown update query type: "+n.type)}};It.prototype.indent=function(n){return n.replace(/^/gm,this._indent)};function xh(n){return"?"+n.value}o(xh,"variableToString");function Vu(n){return typeof n=="string"}o(Vu,"isString");function Ca(n){return typeof n.termType=="string"}o(Ca,"isTerm");function Io(n,e){if(!n||!Ca(n)||!e||!Ca(e)||n.termType!==e.termType)return!1;switch(n.termType){case"Literal":return n.value===e.value&&n.language===e.language&&Io(n.datatype,e.datatype);case"Quad":return Io(n.subject,e.subject)&&Io(n.predicate,e.predicate)&&Io(n.object,e.object)&&Io(n.graph,e.graph);default:return n.value===e.value}}o(Io,"equalTerms");function jn(n,e,t,r){return n.map(t,r).join(Vu(e)?e:" ")}o(jn,"mapJoin");function wj(n={}){return{stringify:o(function(e){var t=Object.create(n);return t.prefixes=e.prefixes,new It(t).toQuery(e)},"stringify"),createGenerator:o(function(){return new It(n)},"createGenerator")}}o(wj,"_Generator");S3.exports={Generator:wj}});var x_=S(Ih=>{"use strict";Object.defineProperty(Ih,"__esModule",{value:!0});Ih.BlankNode=void 0;var A_=class{static{o(this,"BlankNode")}constructor(e){this.termType="BlankNode",this.value=e}equals(e){return!!e&&e.termType==="BlankNode"&&e.value===this.value}};Ih.BlankNode=A_});var I_=S(Ch=>{"use strict";Object.defineProperty(Ch,"__esModule",{value:!0});Ch.DefaultGraph=void 0;var Uu=class{static{o(this,"DefaultGraph")}constructor(){this.termType="DefaultGraph",this.value=""}equals(e){return!!e&&e.termType==="DefaultGraph"}};Ch.DefaultGraph=Uu;Uu.INSTANCE=new Uu});var Oh=S(Rh=>{"use strict";Object.defineProperty(Rh,"__esModule",{value:!0});Rh.NamedNode=void 0;var C_=class{static{o(this,"NamedNode")}constructor(e){this.termType="NamedNode",this.value=e}equals(e){return!!e&&e.termType==="NamedNode"&&e.value===this.value}};Rh.NamedNode=C_});var R_=S(Ph=>{"use strict";Object.defineProperty(Ph,"__esModule",{value:!0});Ph.Literal=void 0;var v3=Oh(),Bu=class n{static{o(this,"Literal")}constructor(e,t){this.termType="Literal",this.value=e,typeof t=="string"?(this.language=t,this.datatype=n.RDF_LANGUAGE_STRING):t?(this.language="",this.datatype=t):(this.language="",this.datatype=n.XSD_STRING)}equals(e){return!!e&&e.termType==="Literal"&&e.value===this.value&&e.language===this.language&&this.datatype.equals(e.datatype)}};Ph.Literal=Bu;Bu.RDF_LANGUAGE_STRING=new v3.NamedNode("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString");Bu.XSD_STRING=new v3.NamedNode("http://www.w3.org/2001/XMLSchema#string")});var P_=S(Fh=>{"use strict";Object.defineProperty(Fh,"__esModule",{value:!0});Fh.Quad=void 0;var O_=class{static{o(this,"Quad")}constructor(e,t,r,i){this.termType="Quad",this.value="",this.subject=e,this.predicate=t,this.object=r,this.graph=i}equals(e){return!!e&&(e.termType==="Quad"||!e.termType)&&this.subject.equals(e.subject)&&this.predicate.equals(e.predicate)&&this.object.equals(e.object)&&this.graph.equals(e.graph)}};Fh.Quad=O_});var D_=S(Dh=>{"use strict";Object.defineProperty(Dh,"__esModule",{value:!0});Dh.Variable=void 0;var F_=class{static{o(this,"Variable")}constructor(e){this.termType="Variable",this.value=e}equals(e){return!!e&&e.termType==="Variable"&&e.value===this.value}};Dh.Variable=F_});var E3=S(Nh=>{"use strict";Object.defineProperty(Nh,"__esModule",{value:!0});Nh.DataFactory=void 0;var Ej=x_(),Tj=I_(),w3=R_(),Aj=Oh(),xj=P_(),Ij=D_(),Cj=0,N_=class{static{o(this,"DataFactory")}constructor(e){this.blankNodeCounter=0,e=e||{},this.blankNodePrefix=e.blankNodePrefix||`df_${Cj++}_`}namedNode(e){return new Aj.NamedNode(e)}blankNode(e){return new Ej.BlankNode(e||`${this.blankNodePrefix}${this.blankNodeCounter++}`)}literal(e,t){return new w3.Literal(e,t)}variable(e){return new Ij.Variable(e)}defaultGraph(){return Tj.DefaultGraph.INSTANCE}quad(e,t,r,i){return new xj.Quad(e,t,r,i||this.defaultGraph())}fromTerm(e){switch(e.termType){case"NamedNode":return this.namedNode(e.value);case"BlankNode":return this.blankNode(e.value);case"Literal":return e.language?this.literal(e.value,e.language):e.datatype.equals(w3.Literal.XSD_STRING)?this.literal(e.value):this.literal(e.value,this.fromTerm(e.datatype));case"Variable":return this.variable(e.value);case"DefaultGraph":return this.defaultGraph();case"Quad":return this.quad(this.fromTerm(e.subject),this.fromTerm(e.predicate),this.fromTerm(e.object),this.fromTerm(e.graph))}}fromQuad(e){return this.fromTerm(e)}resetBlankNodeCounter(){this.blankNodeCounter=0}};Nh.DataFactory=N_});var T3=S($n=>{"use strict";var Rj=$n&&$n.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),Co=$n&&$n.__exportStar||function(n,e){for(var t in n)t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&Rj(e,n,t)};Object.defineProperty($n,"__esModule",{value:!0});Co(x_(),$n);Co(E3(),$n);Co(I_(),$n);Co(R_(),$n);Co(Oh(),$n);Co(P_(),$n);Co(D_(),$n)});var x3=S((gre,A3)=>{var{Parser:Hs}=g3(),{Generator:Oj}=b3(),{Wildcard:Pj}=T_(),{DataFactory:Fj}=T3();function Dj({prefixes:n,baseIRI:e,factory:t,pathOnly:r,sparqlStar:i,skipValidation:s,skipUngroupedVariableCheck:a}={}){let c={};for(let u in n??{})c[u]=n[u];let l=new Hs;return l.parse=function(){return Hs.base=e||"",Hs.prefixes=Object.create(c),Hs.factory=t||new Fj,Hs.sparqlStar=!!i,Hs.pathOnly=!!r,Hs.skipValidation=!!s||!!a,Hs.prototype.parse.apply(l,arguments)},l._resetBlanks=Hs._resetBlanks,l}o(Dj,"_Parser");A3.exports={Parser:Dj,Generator:Oj,Wildcard:Pj}});var k_=S(xc=>{"use strict";Object.defineProperty(xc,"__esModule",{value:!0});xc.CaseWhenTransformerError=xc.CaseWhenTransformer=void 0;var L_=class{static{o(this,"CaseWhenTransformer")}transform(e){let t=this.stripLineComments(e),r,i=0,s=100;do if(r=t,t=this.transformSinglePass(t),i++,i>s)throw new Qs("Too many nested CASE expressions (max 100 iterations)");while(t!==r);return t}stripLineComments(e){let t="",r=0;for(;r<e.length;){let i=e[r];if(i==="'"||i==='"'){let s=i;for(t+=i,r++;r<e.length&&e[r]!==s;){if(e[r]==="\\"&&r+1<e.length){t+=e[r]+e[r+1],r+=2;continue}t+=e[r],r++}r<e.length&&(t+=e[r],r++);continue}if(i==="<"){let s=e.indexOf(">",r),a=e.indexOf(`
40
+ `,this._explicitDatatype=!!n.explicitDatatype}o(It,"Generator");It.prototype.toQuery=function(n){var e="";return n.queryType&&(e+=n.queryType.toUpperCase()+" "),n.reduced&&(e+="REDUCED "),n.distinct&&(e+="DISTINCT "),n.variables?e+=jn(n.variables,void 0,function(t){return/^[?$]/.test(t)?t:Ca(t)?this.toEntity(t):"("+this.toExpression(t.expression)+" AS "+xh(t.variable)+")"},this)+" ":n.template&&(e+=this.group(n.template,!0)+this._newline),n.from&&(e+=this.graphs("FROM ",n.from.default)+this.graphs("FROM NAMED ",n.from.named)),n.where&&(e+="WHERE "+this.group(n.where,!0)+this._newline),n.updates&&(e+=jn(n.updates,";"+this._newline,this.toUpdate,this)),n.group&&(e+="GROUP BY "+jn(n.group,void 0,function(t){var r=Ca(t.expression)?this.toEntity(t.expression):"("+this.toExpression(t.expression)+")";return t.variable?"("+r+" AS "+xh(t.variable)+")":r},this)+this._newline),n.having&&(e+="HAVING ("+jn(n.having,void 0,this.toExpression,this)+")"+this._newline),n.order&&(e+="ORDER BY "+jn(n.order,void 0,function(t){var r="("+this.toExpression(t.expression)+")";return t.descending?"DESC "+r:r},this)+this._newline),n.offset&&(e+="OFFSET "+n.offset+this._newline),n.limit&&(e+="LIMIT "+n.limit+this._newline),n.values&&(e+=this.values(n)),e=this.baseAndPrefixes(n)+e,e.trim()};It.prototype.baseAndPrefixes=function(n){var e=n.base?"BASE <"+n.base+">"+this._newline:"",t="";for(var r in n.prefixes)(this._options.allPrefixes||this._usedPrefixes[r])&&(t+="PREFIX "+r+": <"+n.prefixes[r]+">"+this._newline);return e+t};It.prototype.toPattern=function(n){var e=n.type||n instanceof Array&&"array"||(n.subject&&n.predicate&&n.object?"triple":"");if(!(e in this))throw new Error("Unknown entry type: "+e);return this[e](n)};It.prototype.triple=function(n){return this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+"."};It.prototype.array=function(n){return jn(n,this._newline,this.toPattern,this)};It.prototype.bgp=function(n){return this.encodeTriples(n.triples)};It.prototype.encodeTriples=function(n){if(!n.length)return"";for(var e=[],t=void 0,r=void 0,i=0;i<n.length;i++){var s=n[i];Co(s.subject,t)?Co(s.predicate,r)?e.push(","):(r=s.predicate,e.push(";"+this._newline,this._indent,this.toEntity(r))):(t&&e.push("."+this._newline),t=s.subject,r=s.predicate,e.push(this.toEntity(t)," ",this.toEntity(r))),e.push(" ",this.toEntity(s.object))}return e.push("."),e.join("")};It.prototype.graph=function(n){return"GRAPH "+this.toEntity(n.name)+" "+this.group(n)};It.prototype.graphs=function(n,e){return!e||e.length===0?"":jn(e,"",function(t){return n+this.toEntity(t)+this._newline},this)};It.prototype.group=function(n,e){return n=e!==!0?this.array(n.patterns||n.triples):this.toPattern(n.type!=="group"?n:n.patterns),n.indexOf(this._newline)===-1?"{ "+n+" }":"{"+this._newline+this.indent(n)+this._newline+"}"};It.prototype.query=function(n){return this.toQuery(n)};It.prototype.filter=function(n){return"FILTER("+this.toExpression(n.expression)+")"};It.prototype.bind=function(n){return"BIND("+this.toExpression(n.expression)+" AS "+xh(n.variable)+")"};It.prototype.optional=function(n){return"OPTIONAL "+this.group(n)};It.prototype.union=function(n){return jn(n.patterns,this._newline+"UNION"+this._newline,function(e){return this.group(e,!0)},this)};It.prototype.minus=function(n){return"MINUS "+this.group(n)};It.prototype.values=function(n){var e=Object.keys(n.values.reduce(function(i,s){for(var a in s)i[a]=!0;return i},{})),t,r;return e.length===1?t=r="":(t="(",r=")"),"VALUES "+t+e.join(" ")+r+" {"+this._newline+jn(n.values,this._newline,function(i){return" "+t+jn(e,void 0,function(s){return i[s]?this.toEntity(i[s]):"UNDEF"},this)+r},this)+this._newline+"}"};It.prototype.service=function(n){return"SERVICE "+(n.silent?"SILENT ":"")+this.toEntity(n.name)+" "+this.group(n)};It.prototype.toExpression=function(n){if(Ca(n))return this.toEntity(n);switch(n.type.toLowerCase()){case"aggregate":return n.aggregation.toUpperCase()+"("+(n.distinct?"DISTINCT ":"")+this.toExpression(n.expression)+(typeof n.separator=="string"?'; SEPARATOR = "'+n.separator.replace(y3,_3)+'"':"")+")";case"functioncall":return this.toEntity(n.function)+"("+jn(n.args,", ",this.toExpression,this)+")";case"operation":var e=n.operator.toUpperCase(),t=n.args||[];switch(n.operator.toLowerCase()){case"<":case">":case">=":case"<=":case"&&":case"||":case"=":case"!=":case"+":case"-":case"*":case"/":return(Ca(t[0])?this.toEntity(t[0]):"("+this.toExpression(t[0])+")")+" "+e+" "+(Ca(t[1])?this.toEntity(t[1]):"("+this.toExpression(t[1])+")");case"!":return"!("+this.toExpression(t[0])+")";case"uplus":return"+("+this.toExpression(t[0])+")";case"uminus":return"-("+this.toExpression(t[0])+")";case"notin":e="NOT IN";case"in":return this.toExpression(t[0])+" "+e+"("+(Vu(t[1])?t[1]:jn(t[1],", ",this.toExpression,this))+")";case"notexists":e="NOT EXISTS";case"exists":return e+" "+this.group(t[0],!0);default:return e+"("+jn(t,", ",this.toExpression,this)+")"}default:throw new Error("Unknown expression type: "+n.type)}};It.prototype.toEntity=function(n){if(Ca(n))switch(n.termType){case"Wildcard":return"*";case"Variable":return xh(n);case"BlankNode":return"_:"+n.value;case"Literal":var e=n.value||"",t=n.language||"",r=n.datatype;if(n='"'+e.replace(y3,_3)+'"',t)n+="@"+t;else if(r){if(!this._explicitDatatype)switch(r.value){case bj:return n;case Sj:if(/^\d+$/.test(e))return e+" "}n+="^^"+this.encodeIRI(r.value)}return n;case"Quad":if(!this._sparqlStar)throw new Error("SPARQL* support is not enabled");return n.graph&&n.graph.termType!=="DefaultGraph"?"<< GRAPH "+this.toEntity(n.graph)+" { "+this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+" } >>":"<< "+this.toEntity(n.subject)+" "+this.toEntity(n.predicate)+" "+this.toEntity(n.object)+" >>";default:return this.encodeIRI(n.value)}else{var i=n.items.map(this.toEntity,this),s=n.pathType;switch(s){case"^":case"!":return s+i[0];case"*":case"+":case"?":return"("+i[0]+s+")";default:return"("+i.join(s)+")"}}};var y3=/["\\\t\n\r\b\f]/g,_3=o(function(n){return vj[n]},"escapeReplacer"),vj={"\\":"\\\\",'"':'\\"'," ":"\\t","\n":"\\n","\r":"\\r","\b":"\\b","\f":"\\f"};It.prototype.encodeIRI=function(n){var e=this._prefixRegex.exec(n);if(e){var t=this._prefixByIri[e[1]];return this._usedPrefixes[t]=!0,t+":"+e[2]}return"<"+n+">"};It.prototype.toUpdate=function(n){switch(n.type||n.updateType){case"load":return"LOAD"+(n.source?" "+this.toEntity(n.source):"")+(n.destination?" INTO GRAPH "+this.toEntity(n.destination):"");case"insert":return"INSERT DATA "+this.group(n.insert,!0);case"delete":return"DELETE DATA "+this.group(n.delete,!0);case"deletewhere":return"DELETE WHERE "+this.group(n.delete,!0);case"insertdelete":return(n.graph?"WITH "+this.toEntity(n.graph)+this._newline:"")+(n.delete.length?"DELETE "+this.group(n.delete,!0)+this._newline:"")+(n.insert.length?"INSERT "+this.group(n.insert,!0)+this._newline:"")+(n.using?this.graphs("USING ",n.using.default):"")+(n.using?this.graphs("USING NAMED ",n.using.named):"")+"WHERE "+this.group(n.where,!0);case"add":case"copy":case"move":return n.type.toUpperCase()+" "+(n.silent?"SILENT ":"")+(n.source.default?"DEFAULT":this.toEntity(n.source.name))+" TO "+this.toEntity(n.destination.name);case"create":case"clear":case"drop":return n.type.toUpperCase()+(n.silent?" SILENT ":" ")+(n.graph.default?"DEFAULT":n.graph.named?"NAMED":n.graph.all?"ALL":"GRAPH "+this.toEntity(n.graph.name));default:throw new Error("Unknown update query type: "+n.type)}};It.prototype.indent=function(n){return n.replace(/^/gm,this._indent)};function xh(n){return"?"+n.value}o(xh,"variableToString");function Vu(n){return typeof n=="string"}o(Vu,"isString");function Ca(n){return typeof n.termType=="string"}o(Ca,"isTerm");function Co(n,e){if(!n||!Ca(n)||!e||!Ca(e)||n.termType!==e.termType)return!1;switch(n.termType){case"Literal":return n.value===e.value&&n.language===e.language&&Co(n.datatype,e.datatype);case"Quad":return Co(n.subject,e.subject)&&Co(n.predicate,e.predicate)&&Co(n.object,e.object)&&Co(n.graph,e.graph);default:return n.value===e.value}}o(Co,"equalTerms");function jn(n,e,t,r){return n.map(t,r).join(Vu(e)?e:" ")}o(jn,"mapJoin");function wj(n={}){return{stringify:o(function(e){var t=Object.create(n);return t.prefixes=e.prefixes,new It(t).toQuery(e)},"stringify"),createGenerator:o(function(){return new It(n)},"createGenerator")}}o(wj,"_Generator");S3.exports={Generator:wj}});var x_=S(Ih=>{"use strict";Object.defineProperty(Ih,"__esModule",{value:!0});Ih.BlankNode=void 0;var A_=class{static{o(this,"BlankNode")}constructor(e){this.termType="BlankNode",this.value=e}equals(e){return!!e&&e.termType==="BlankNode"&&e.value===this.value}};Ih.BlankNode=A_});var I_=S(Ch=>{"use strict";Object.defineProperty(Ch,"__esModule",{value:!0});Ch.DefaultGraph=void 0;var Uu=class{static{o(this,"DefaultGraph")}constructor(){this.termType="DefaultGraph",this.value=""}equals(e){return!!e&&e.termType==="DefaultGraph"}};Ch.DefaultGraph=Uu;Uu.INSTANCE=new Uu});var Oh=S(Rh=>{"use strict";Object.defineProperty(Rh,"__esModule",{value:!0});Rh.NamedNode=void 0;var C_=class{static{o(this,"NamedNode")}constructor(e){this.termType="NamedNode",this.value=e}equals(e){return!!e&&e.termType==="NamedNode"&&e.value===this.value}};Rh.NamedNode=C_});var R_=S(Ph=>{"use strict";Object.defineProperty(Ph,"__esModule",{value:!0});Ph.Literal=void 0;var v3=Oh(),Bu=class n{static{o(this,"Literal")}constructor(e,t){this.termType="Literal",this.value=e,typeof t=="string"?(this.language=t,this.datatype=n.RDF_LANGUAGE_STRING):t?(this.language="",this.datatype=t):(this.language="",this.datatype=n.XSD_STRING)}equals(e){return!!e&&e.termType==="Literal"&&e.value===this.value&&e.language===this.language&&this.datatype.equals(e.datatype)}};Ph.Literal=Bu;Bu.RDF_LANGUAGE_STRING=new v3.NamedNode("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString");Bu.XSD_STRING=new v3.NamedNode("http://www.w3.org/2001/XMLSchema#string")});var P_=S(Fh=>{"use strict";Object.defineProperty(Fh,"__esModule",{value:!0});Fh.Quad=void 0;var O_=class{static{o(this,"Quad")}constructor(e,t,r,i){this.termType="Quad",this.value="",this.subject=e,this.predicate=t,this.object=r,this.graph=i}equals(e){return!!e&&(e.termType==="Quad"||!e.termType)&&this.subject.equals(e.subject)&&this.predicate.equals(e.predicate)&&this.object.equals(e.object)&&this.graph.equals(e.graph)}};Fh.Quad=O_});var D_=S(Dh=>{"use strict";Object.defineProperty(Dh,"__esModule",{value:!0});Dh.Variable=void 0;var F_=class{static{o(this,"Variable")}constructor(e){this.termType="Variable",this.value=e}equals(e){return!!e&&e.termType==="Variable"&&e.value===this.value}};Dh.Variable=F_});var E3=S(Nh=>{"use strict";Object.defineProperty(Nh,"__esModule",{value:!0});Nh.DataFactory=void 0;var Ej=x_(),Tj=I_(),w3=R_(),Aj=Oh(),xj=P_(),Ij=D_(),Cj=0,N_=class{static{o(this,"DataFactory")}constructor(e){this.blankNodeCounter=0,e=e||{},this.blankNodePrefix=e.blankNodePrefix||`df_${Cj++}_`}namedNode(e){return new Aj.NamedNode(e)}blankNode(e){return new Ej.BlankNode(e||`${this.blankNodePrefix}${this.blankNodeCounter++}`)}literal(e,t){return new w3.Literal(e,t)}variable(e){return new Ij.Variable(e)}defaultGraph(){return Tj.DefaultGraph.INSTANCE}quad(e,t,r,i){return new xj.Quad(e,t,r,i||this.defaultGraph())}fromTerm(e){switch(e.termType){case"NamedNode":return this.namedNode(e.value);case"BlankNode":return this.blankNode(e.value);case"Literal":return e.language?this.literal(e.value,e.language):e.datatype.equals(w3.Literal.XSD_STRING)?this.literal(e.value):this.literal(e.value,this.fromTerm(e.datatype));case"Variable":return this.variable(e.value);case"DefaultGraph":return this.defaultGraph();case"Quad":return this.quad(this.fromTerm(e.subject),this.fromTerm(e.predicate),this.fromTerm(e.object),this.fromTerm(e.graph))}}fromQuad(e){return this.fromTerm(e)}resetBlankNodeCounter(){this.blankNodeCounter=0}};Nh.DataFactory=N_});var T3=S($n=>{"use strict";var Rj=$n&&$n.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),Ro=$n&&$n.__exportStar||function(n,e){for(var t in n)t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&Rj(e,n,t)};Object.defineProperty($n,"__esModule",{value:!0});Ro(x_(),$n);Ro(E3(),$n);Ro(I_(),$n);Ro(R_(),$n);Ro(Oh(),$n);Ro(P_(),$n);Ro(D_(),$n)});var x3=S((gre,A3)=>{var{Parser:Hs}=g3(),{Generator:Oj}=b3(),{Wildcard:Pj}=T_(),{DataFactory:Fj}=T3();function Dj({prefixes:n,baseIRI:e,factory:t,pathOnly:r,sparqlStar:i,skipValidation:s,skipUngroupedVariableCheck:a}={}){let c={};for(let u in n??{})c[u]=n[u];let l=new Hs;return l.parse=function(){return Hs.base=e||"",Hs.prefixes=Object.create(c),Hs.factory=t||new Fj,Hs.sparqlStar=!!i,Hs.pathOnly=!!r,Hs.skipValidation=!!s||!!a,Hs.prototype.parse.apply(l,arguments)},l._resetBlanks=Hs._resetBlanks,l}o(Dj,"_Parser");A3.exports={Parser:Dj,Generator:Oj,Wildcard:Pj}});var k_=S(xc=>{"use strict";Object.defineProperty(xc,"__esModule",{value:!0});xc.CaseWhenTransformerError=xc.CaseWhenTransformer=void 0;var L_=class{static{o(this,"CaseWhenTransformer")}transform(e){let t=this.stripLineComments(e),r,i=0,s=100;do if(r=t,t=this.transformSinglePass(t),i++,i>s)throw new Qs("Too many nested CASE expressions (max 100 iterations)");while(t!==r);return t}stripLineComments(e){let t="",r=0;for(;r<e.length;){let i=e[r];if(i==="'"||i==='"'){let s=i;for(t+=i,r++;r<e.length&&e[r]!==s;){if(e[r]==="\\"&&r+1<e.length){t+=e[r]+e[r+1],r+=2;continue}t+=e[r],r++}r<e.length&&(t+=e[r],r++);continue}if(i==="<"){let s=e.indexOf(">",r),a=e.indexOf(`
41
41
  `,r);if(s!==-1&&(a===-1||s<a)){t+=e.substring(r,s+1),r=s+1;continue}}if(i==="#"){let s=e.indexOf(`
42
42
  `,r),a=s===-1?e.length:s;t+=" ".repeat(a-r),r=a;continue}t+=i,r++}return t}transformSinglePass(e){let t=this.findCasePositions(e);if(t.length===0)return e;let r=e;for(let i=t.length-1;i>=0;i--){let s=t[i],a=this.extractCaseExpression(r,s);if(a){let c=this.convertCaseToIf(a.content);r=r.substring(0,s)+c+r.substring(s+a.length)}}return r}findCasePositions(e){let t=[],r=e.toUpperCase(),i=0;for(;i<e.length;){if(e[i]==="'"||e[i]==='"'){let s=e[i];for(i++;i<e.length&&e[i]!==s;)e[i]==="\\"&&i++,i++;i++;continue}if(r.substring(i,i+4)==="CASE"&&this.isWordBoundary(e,i,4)){t.push(i),i+=4;continue}i++}return t}extractCaseExpression(e,t){let r=1,i=t+4,s=e.toUpperCase();for(;i<e.length&&r>0;){if(e[i]==="'"||e[i]==='"'){let a=e[i];for(i++;i<e.length&&e[i]!==a;)e[i]==="\\"&&i++,i++;i++;continue}if(s.substring(i,i+4)==="CASE"&&this.isWordBoundary(e,i,4)){r++,i+=4;continue}if(s.substring(i,i+3)==="END"&&this.isWordBoundary(e,i,3)){if(r--,r===0){let a=e.substring(t,i+3);return{content:a,length:a.length}}i+=3;continue}i++}if(r>0)throw new Qs(`Unclosed CASE expression at position ${t}`);return null}isWordBoundary(e,t,r){let i=t>0?e[t-1]:"",s=t===0||!/[a-zA-Z0-9_?$]/.test(i),a=t+r<e.length?e[t+r]:"",c=t+r>=e.length||!/[a-zA-Z0-9_]/.test(a);return s&&c}convertCaseToIf(e){let t=this.extractWhenClauses(e),r=this.extractElseClause(e);if(t.length===0)throw new Qs("CASE expression must have at least one WHEN clause");let i=r!==null?r:'""';for(let s=t.length-1;s>=0;s--){let{condition:a,result:c}=t[s];i=`IF(${a}, ${c}, ${i})`}return i}extractWhenClauses(e){let t=[],r=e.replace(/^\s*CASE\s+/i,"").replace(/\s*END\s*$/i,""),i=this.findKeywordPositions(r,"WHEN"),s=this.findKeywordPositions(r,"ELSE"),a=s.length>0?s[0]:r.length;for(let c=0;c<i.length;c++){let l=i[c]+4,u=c+1<i.length?i[c+1]:a,f=r.substring(l,u).trim(),d=this.parseWhenClause(f);d&&t.push(d)}return t}findKeywordPositions(e,t){let r=[],i=e.toUpperCase(),s=0,a=0;for(;s<e.length;){let c=e[s];if(c==="'"||c==='"'){let l=c;for(s++;s<e.length&&e[s]!==l;)e[s]==="\\"&&s++,s++;s++;continue}if(c==="("){a++,s++;continue}if(c===")"){a--,s++;continue}if(a===0&&i.substring(s,s+t.length)===t&&this.isWordBoundary(e,s,t.length)){r.push(s),s+=t.length;continue}s++}return r}parseWhenClause(e){let t=this.findKeywordPositions(e,"THEN");if(t.length===0)throw new Qs(`WHEN clause missing THEN keyword: ${e.substring(0,50)}...`);let r=t[0],i=e.substring(0,r).trim(),s=e.substring(r+4).trim();if(!i)throw new Qs("WHEN clause has empty condition");if(!s)throw new Qs("WHEN clause has empty result");return{condition:i,result:s}}extractElseClause(e){let t=e.replace(/^\s*CASE\s+/i,"").replace(/\s*END\s*$/i,""),r=this.findKeywordPositions(t,"ELSE");if(r.length>0){let i=r[0];return t.substring(i+4).trim()}return null}};xc.CaseWhenTransformer=L_;var Qs=class extends Error{static{o(this,"CaseWhenTransformerError")}constructor(e){super(`CASE WHEN transformation error: ${e}`),this.name="CaseWhenTransformerError"}};xc.CaseWhenTransformerError=Qs});var M_=S(Ic=>{"use strict";Object.defineProperty(Ic,"__esModule",{value:!0});Ic.LateralTransformerError=Ic.LateralTransformer=void 0;var Lh=class n{static{o(this,"LateralTransformer")}transform(e){let t=e,r,i=0,s=100;do if(r=t,t=this.transformSinglePass(t),i++,i>s)throw new Ra("Too many nested LATERAL joins (max 100 iterations)");while(t!==r);return t}hasLateral(e){return this.findLateralPositions(e).length>0}static isLateralJoin(e){if(e.type==="group"&&e.patterns){for(let t of e.patterns)if(t.type==="query"&&t.queryType==="SELECT"&&t.variables&&Array.isArray(t.variables)){for(let r of t.variables)if(r.termType==="Variable"&&r.value===n.LATERAL_MARKER)return!0}}if(e.type==="query"&&e.queryType==="SELECT"&&e.variables&&Array.isArray(e.variables)){for(let t of e.variables)if(t.termType==="Variable"&&t.value===n.LATERAL_MARKER)return!0}return!1}transformSinglePass(e){let t=this.findLateralPositions(e);if(t.length===0)return e;let r=e;for(let i=t.length-1;i>=0;i--){let s=t[i],a=this.extractLateralExpression(r,s);if(a){let c=this.transformLateral(a.content);r=r.substring(0,s)+c+r.substring(s+a.length)}}return r}findLateralPositions(e){let t=[],r=e.toUpperCase(),i=0;for(;i<e.length;){if(e[i]==="'"||e[i]==='"'){let s=e[i];for(i++;i<e.length&&e[i]!==s;)e[i]==="\\"&&i++,i++;i++;continue}if(e[i]==="#"){for(;i<e.length&&e[i]!==`
43
43
  `;)i++;continue}if(r.substring(i,i+7)==="LATERAL"&&this.isWordBoundary(e,i,7)){t.push(i),i+=7;continue}i++}return t}extractLateralExpression(e,t){let r=t+7;for(;r<e.length&&/\s/.test(e[r]);)r++;if(e[r]!=="{")throw new Ra(`Expected '{' after LATERAL keyword at position ${t}`);let i=1;for(r++;r<e.length&&i>0;){if(e[r]==="'"||e[r]==='"'){let s=e[r];for(r++;r<e.length&&e[r]!==s;)e[r]==="\\"&&r++,r++;r++;continue}if(e[r]==="#"){for(;r<e.length&&e[r]!==`
@@ -45,7 +45,7 @@ Expecting `+Rd.join(", ")+", got '"+(this.terminals_[ft]||ft)+"'":Dy="Parse erro
45
45
  `)+`
46
46
  `+s.trimStart()),s}findPrefixStarDeclarations(e){let t=[],r=e.toUpperCase(),i=0;for(;i<e.length;){if(e[i]==="'"||e[i]==='"'){let s=e[i];for(i++;i<e.length&&e[i]!==s;)e[i]==="\\"&&i++,i++;i++;continue}if(r.substring(i,i+6)==="PREFIX"){let s=i;for(i+=6;i<e.length&&/\s/.test(e[i]);)i++;if(e[i]==="*"){for(i++;i<e.length&&/\s/.test(e[i]);)i++;if(e[i]==="<"){i++;let a=i;for(;i<e.length&&e[i]!==">";)i++;if(e[i]===">"){let c=e.substring(a,i);i++;let l=this.findDeclarationEnd(e,i);t.push({uri:c,startPos:s,endPos:l}),i=l;continue}else throw new Cc(`Unclosed IRI in PREFIX* declaration at position ${a}`)}else throw new Cc(`Expected IRI after PREFIX* at position ${i}`)}else continue}i++}return t}findDeclarationEnd(e,t){let r=t;for(;r<e.length;){let i=e[r];if(i===`
47
47
  `)return r+1;let s=e.substring(r).toUpperCase();if(s.startsWith("PREFIX")||s.startsWith("BASE")||s.startsWith("SELECT")||s.startsWith("CONSTRUCT")||s.startsWith("DESCRIBE")||s.startsWith("ASK"))return r;if(/\s/.test(i)){r++;continue}break}return r}extractPrefixFromUri(e){let t=e.replace(/^https?:\/\//,"");t=t.replace(/\/$/,"").replace(/#$/,"");let r=t.split(/[/.#]+/).filter(Boolean);if(r.length===0)return null;let i=r[r.length-1];return/^(ontology|vocab|schema|ns|core)$/i.test(i)&&r.length>1?r[r.length-2].toLowerCase():i.toLowerCase().replace(/[^a-z0-9]/g,"")}};Oa.PrefixStarTransformer=j_;var Cc=class extends Error{static{o(this,"PrefixStarTransformerError")}constructor(e){super(`PREFIX* transformation error: ${e}`),this.name="PrefixStarTransformerError"}};Oa.PrefixStarTransformerError=Cc});var $_=S(Oc=>{"use strict";Object.defineProperty(Oc,"__esModule",{value:!0});Oc.DescribeOptionsTransformer=Oc.DescribeOptionsTransformerError=void 0;var Mh=class extends Error{static{o(this,"DescribeOptionsTransformerError")}constructor(e){super(e),this.name="DescribeOptionsTransformerError"}};Oc.DescribeOptionsTransformerError=Mh;var Rc=class n{static{o(this,"DescribeOptionsTransformer")}transform(e){if(!n.DESCRIBE_QUERY_PATTERN.test(e))return{query:e};let t=e,r={},i=!1,s=n.DEPTH_PATTERN.exec(e);if(s){let a=parseInt(s[1],10);if(a<0)throw new Mh(`DESCRIBE DEPTH must be a non-negative integer, got: ${a}`);r.depth=a,i=!0,n.DEPTH_PATTERN.lastIndex=0,t=t.replace(n.DEPTH_PATTERN,"")}return n.DEPTH_PATTERN.lastIndex=0,n.SYMMETRIC_PATTERN.test(e)&&(r.symmetric=!0,i=!0,n.SYMMETRIC_PATTERN.lastIndex=0,t=t.replace(n.SYMMETRIC_PATTERN,"")),n.SYMMETRIC_PATTERN.lastIndex=0,t=t.replace(/\s{2,}/g," ").trim(),{query:t,options:i?r:void 0}}hasDescribeOptions(e){let t=n.DEPTH_PATTERN.test(e);n.DEPTH_PATTERN.lastIndex=0;let r=n.SYMMETRIC_PATTERN.test(e);return n.SYMMETRIC_PATTERN.lastIndex=0,t||r}};Oc.DescribeOptionsTransformer=Rc;Rc.DEPTH_PATTERN=/\bDEPTH\s+(\d+)/gi;Rc.SYMMETRIC_PATTERN=/\bSYMMETRIC\b/gi;Rc.DESCRIBE_QUERY_PATTERN=/\bDESCRIBE\b/i});var C3=S(Pc=>{"use strict";Object.defineProperty(Pc,"__esModule",{value:!0});Pc.DirectionalLangTagTransformerError=Pc.DirectionalLangTagTransformer=void 0;var jh=class n{static{o(this,"DirectionalLangTagTransformer")}constructor(){this.directionMappings=new Map}transform(e){return this.directionMappings.clear(),e.replace(n.DIRECTIONAL_TAG_REGEX,(t,r,i,s,a)=>{let c=s.toLowerCase();return this.directionMappings.set(c,a),`${r}${i}${r}@${s}`})}getDirection(e){return this.directionMappings.get(e.toLowerCase())}getAllMappings(){return new Map(this.directionMappings)}hasDirectionalTags(e){return n.DIRECTIONAL_TAG_REGEX.lastIndex=0,n.DIRECTIONAL_TAG_REGEX.test(e)}clearMappings(){this.directionMappings.clear()}};Pc.DirectionalLangTagTransformer=jh;jh.DIRECTIONAL_TAG_REGEX=/(["'])((?:[^\\]|\\.)*?)\1@([a-zA-Z]+(?:-[a-zA-Z0-9]+)*)--(ltr|rtl)/g;var V_=class extends Error{static{o(this,"DirectionalLangTagTransformerError")}constructor(e){super(`Directional language tag transformation error: ${e}`),this.name="DirectionalLangTagTransformerError"}};Pc.DirectionalLangTagTransformerError=V_});var R3=S(Dc=>{"use strict";Object.defineProperty(Dc,"__esModule",{value:!0});Dc.TripleTermTransformerError=Dc.TripleTermTransformer=void 0;var U_=class{static{o(this,"TripleTermTransformer")}transform(e){let t=e,r,i=0,s=100;do if(r=t,t=this.transformSinglePass(t),i++,i>s)throw new Fc("Too many nested triple terms (max 100 iterations)");while(t!==r);return t}hasTripleTermSyntax(e){return this.findTripleTermPositions(e).length>0}transformSinglePass(e){let t=this.findTripleTermPositions(e);if(t.length===0)return e;let r=e;for(let i=t.length-1;i>=0;i--){let s=t[i],a=this.extractTripleTerm(r,s);if(a){let c=this.convertToStandardSyntax(a.content);r=r.substring(0,s)+c+r.substring(s+a.length)}}return r}findTripleTermPositions(e){let t=[],r=0;for(;r<e.length;){if(e[r]==="'"){r=this.skipStringLiteral(e,r,"'");continue}if(e[r]==='"'){r=this.skipStringLiteral(e,r,'"');continue}if(e.substring(r,r+2)==="<<"&&this.isParenthesizedTripleTerm(e,r)){t.push(r),r+=2;continue}r++}return t}skipStringLiteral(e,t,r){let i=r.repeat(3);if(e.substring(t,t+3)===i){for(t+=3;t<e.length;){if(e.substring(t,t+3)===i)return t+3;e[t]==="\\"&&t++,t++}return t}for(t++;t<e.length&&e[t]!==r;)e[t]==="\\"&&t++,t++;return t+1}isParenthesizedTripleTerm(e,t){let r=t+2;for(;r<e.length&&/\s/.test(e[r]);)r++;return e[r]==="("}extractTripleTerm(e,t){let r=t+2;for(;r<e.length&&/\s/.test(e[r]);)r++;if(e[r]!=="(")return null;r++;let i=1;for(;r<e.length&&i>0;){if(e[r]==="'"||e[r]==='"'){r=this.skipStringLiteral(e,r,e[r]);continue}if(e.substring(r,r+2)==="<<"&&this.isParenthesizedTripleTerm(e,r)){for(r+=2;r<e.length&&/\s/.test(e[r]);)r++;e[r]==="("&&(i++,r++);continue}if(e.substring(r,r+2)==="<<"){r+=2;let s=1;for(;r<e.length&&s>0;){if(e[r]==="'"||e[r]==='"'){r=this.skipStringLiteral(e,r,e[r]);continue}if(e.substring(r,r+2)==="<<"){s++,r+=2;continue}if(e.substring(r,r+2)===">>"){s--,r+=2;continue}r++}continue}if(e[r]==="("){i++,r++;continue}if(e[r]===")"){let s=r+1;for(;s<e.length&&/\s/.test(e[s]);)s++;if(e.substring(s,s+2)===">>"){if(i--,i===0){let a=e.substring(t,s+2);return{content:a,length:a.length}}r=s+2;continue}r++;continue}r++}if(i>0)throw new Fc(`Unclosed triple term at position ${t}: missing )>>`);return null}convertToStandardSyntax(e){let t=e.match(/^<<\s*\(\s*([\s\S]*?)\s*\)\s*>>$/);if(!t)throw new Fc(`Invalid triple term syntax: ${e.substring(0,50)}...`);return`<< ${t[1]} >>`}};Dc.TripleTermTransformer=U_;var Fc=class extends Error{static{o(this,"TripleTermTransformerError")}constructor(e){super(`Triple term transformation error: ${e}`),this.name="TripleTermTransformerError"}};Dc.TripleTermTransformerError=Fc});var q_=S($h=>{"use strict";Object.defineProperty($h,"__esModule",{value:!0});$h.VaultPrefixTransformer=void 0;var Nj=/PREFIX\s+(\w+)\s*:/gi,Lj=new Set(["mailto","http","https","urn","ftp","prefix","base","select","construct","describe","ask","where","filter","optional","union","graph","order","group","having","limit","offset","values","bind","minus","service","insert","delete","load","clear","drop","create","move","copy","add"]),B_=class{static{o(this,"VaultPrefixTransformer")}constructor(){this.vaultPrefixes=new Map}setVaultPrefixes(e){this.vaultPrefixes=new Map(e)}getVaultPrefixes(){return new Map(this.vaultPrefixes)}transform(e){if(this.vaultPrefixes.size===0)return e;let t=this.findDeclaredPrefixes(e),r=[];for(let[a,c]of this.vaultPrefixes)!t.has(a.toLowerCase())&&!Lj.has(a.toLowerCase())&&r.push({prefix:a,baseIRI:c});if(r.length===0)return e;let i="",s=0;for(;s<e.length;){let a=e[s];if(a==='"'||a==="'"){let l=this.skipLiteral(e,s);i+=e.substring(s,l),s=l;continue}if(a==="<"){let l=e.indexOf(">",s);l!==-1?(i+=e.substring(s,l+1),s=l+1):(i+=a,s++);continue}if(a==="#"){let l=e.indexOf(`
48
- `,s);l!==-1?(i+=e.substring(s,l),s=l):(i+=e.substring(s),s=e.length);continue}let c=this.tryReplacePrefixedName(e,s,r);if(c){i+=c.iri,s=c.endIndex;continue}i+=a,s++}return i}tryReplacePrefixedName(e,t,r){if(t>0&&/[a-zA-Z0-9_]/.test(e[t-1]))return null;for(let{prefix:i,baseIRI:s}of r){if(e.substring(t,t+i.length+1)!==i+":")continue;let a=t+i.length+1,c=a;for(;c<e.length&&/[a-zA-Z0-9_.%-]/.test(e[c]);)c++;if(c===a)continue;let l=e.substring(a,c);return{iri:`<${s}${l}.md>`,endIndex:c}}return null}findDeclaredPrefixes(e){let t=new Set,r=new RegExp(Nj.source,"gi"),i;for(;(i=r.exec(e))!==null;)t.add(i[1].toLowerCase());return t}skipLiteral(e,t){let r=e[t];if(t+2<e.length&&e.substring(t,t+3)===r+r+r){let s=e.indexOf(r+r+r,t+3);return s!==-1?s+3:e.length}let i=t+1;for(;i<e.length&&e[i]!==r;)e[i]==="\\"&&i++,i++;return i<e.length?i+1:e.length}};$h.VaultPrefixTransformer=B_});var Nc=S(xn=>{"use strict";var kj=xn&&xn.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),Mj=xn&&xn.__setModuleDefault||(Object.create?(function(n,e){Object.defineProperty(n,"default",{enumerable:!0,value:e})}):function(n,e){n.default=e}),jj=xn&&xn.__importStar||(function(){var n=o(function(e){return n=Object.getOwnPropertyNames||function(t){var r=[];for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(r[r.length]=i);return r},n(e)},"ownKeys");return function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r=n(e),i=0;i<r.length;i++)r[i]!=="default"&&kj(t,e,r[i]);return Mj(t,e),t}})();Object.defineProperty(xn,"__esModule",{value:!0});xn.SPARQLParser=xn.ExoQLParser=xn.SPARQLParseError=void 0;var O3=jj(x3()),W_=k_(),G_=M_(),P3=I3(),z_=$_(),$j=C3(),H_=R3(),Vj=q_(),cr=class extends Error{static{o(this,"SPARQLParseError")}constructor(e,t,r,i){super(e,i?{cause:i}:void 0),this.name="SPARQLParseError",this.line=t,this.column=r}};xn.SPARQLParseError=cr;var Vh=class{static{o(this,"ExoQLParser")}constructor(e){this.lastDirectionMappings=new Map,this.parser=new O3.Parser({sparqlStar:!0}),this.generator=new O3.Generator({sparqlStar:!0}),this.caseWhenTransformer=new W_.CaseWhenTransformer,this.lateralTransformer=new G_.LateralTransformer,this.prefixStarTransformer=new P3.PrefixStarTransformer(e?.vocabularyResolver),this.describeOptionsTransformer=new z_.DescribeOptionsTransformer,this.directionalLangTagTransformer=new $j.DirectionalLangTagTransformer,this.tripleTermTransformer=new H_.TripleTermTransformer,this.vaultPrefixTransformer=new Vj.VaultPrefixTransformer}setVaultPrefixes(e){this.vaultPrefixTransformer.setVaultPrefixes(e)}parse(e){try{let t=this.vaultPrefixTransformer.transform(e),r=this.describeOptionsTransformer.transform(t);this.lastDescribeOptions=r.options;let i=r.query;i=this.directionalLangTagTransformer.transform(i),this.lastDirectionMappings=this.directionalLangTagTransformer.getAllMappings(),i=this.lateralTransformer.transform(i),i=this.caseWhenTransformer.transform(i),i=this.tripleTermTransformer.transform(i);let s=this.parser.parse(i);return this.validateQuery(s),this.lastDescribeOptions&&this.isDescribeQuery(s)&&(s.describeOptions=this.lastDescribeOptions),s}catch(t){if(t instanceof z_.DescribeOptionsTransformerError)throw new cr(t.message);if(t instanceof G_.LateralTransformerError)throw new cr(t.message);if(t instanceof W_.CaseWhenTransformerError)throw new cr(t.message);if(t instanceof H_.TripleTermTransformerError)throw new cr(t.message);if(t instanceof Error){let r=t.message.match(/line (\d+), column (\d+)/),i=r?parseInt(r[1],10):void 0,s=r?parseInt(r[2],10):void 0;throw new cr(`SPARQL syntax error: ${t.message}`,i,s,t)}throw t}}parseWithOptions(e){return{query:this.parse(e),describeOptions:this.lastDescribeOptions}}getLastDescribeOptions(){return this.lastDescribeOptions}async parseAsync(e){try{let t=this.vaultPrefixTransformer.transform(e),r=this.describeOptionsTransformer.transform(t);this.lastDescribeOptions=r.options;let i=r.query;i=this.directionalLangTagTransformer.transform(i),this.lastDirectionMappings=this.directionalLangTagTransformer.getAllMappings(),i=await this.prefixStarTransformer.transform(i),i=this.lateralTransformer.transform(i),i=this.caseWhenTransformer.transform(i),i=this.tripleTermTransformer.transform(i);let s=this.parser.parse(i);return this.validateQuery(s),this.lastDescribeOptions&&this.isDescribeQuery(s)&&(s.describeOptions=this.lastDescribeOptions),s}catch(t){if(t instanceof z_.DescribeOptionsTransformerError)throw new cr(t.message);if(t instanceof P3.PrefixStarTransformerError)throw new cr(t.message);if(t instanceof G_.LateralTransformerError)throw new cr(t.message);if(t instanceof W_.CaseWhenTransformerError)throw new cr(t.message);if(t instanceof H_.TripleTermTransformerError)throw new cr(t.message);if(t instanceof Error){let r=t.message.match(/line (\d+), column (\d+)/),i=r?parseInt(r[1],10):void 0,s=r?parseInt(r[2],10):void 0;throw new cr(`SPARQL syntax error: ${t.message}`,i,s,t)}throw t}}async parseAsyncWithOptions(e){return{query:await this.parseAsync(e),describeOptions:this.lastDescribeOptions}}hasPrefixStar(e){return/PREFIX\s*\*/i.test(e)}hasLateral(e){return this.lateralTransformer.hasLateral(e)}hasDescribeOptions(e){return this.describeOptionsTransformer.hasDescribeOptions(e)}hasDirectionalLangTags(e){return this.directionalLangTagTransformer.hasDirectionalTags(e)}hasTripleTermSyntax(e){return this.tripleTermTransformer.hasTripleTermSyntax(e)}getLastDirectionMappings(){return new Map(this.lastDirectionMappings)}getDirectionForLanguage(e){return this.lastDirectionMappings.get(e.toLowerCase())}toString(e){try{return this.generator.stringify(e)}catch(t){throw t instanceof Error?new cr(`Failed to serialize SPARQL query: ${t.message}`,void 0,void 0,t):t}}getQueryType(e){if("queryType"in e&&e.type==="query")return e.queryType;throw new cr("Query does not have a valid queryType property")}isSelectQuery(e){return"queryType"in e&&e.type==="query"&&e.queryType==="SELECT"}isConstructQuery(e){return"queryType"in e&&e.type==="query"&&e.queryType==="CONSTRUCT"}isAskQuery(e){return"queryType"in e&&e.type==="query"&&e.queryType==="ASK"}isDescribeQuery(e){return"queryType"in e&&e.type==="query"&&e.queryType==="DESCRIBE"}isUpdateQuery(e){return e.type==="update"}isInsertDataOperation(e){return"updateType"in e&&e.updateType==="insert"}isDeleteDataOperation(e){return"updateType"in e&&e.updateType==="delete"}validateQuery(e){if(!e||typeof e!="object")throw new cr("Invalid query: not an object");if(e.type!=="query"&&e.type!=="update")throw new cr(`Invalid type: expected "query" or "update", got "${e.type}"`);if(e.type==="query"){let t=["SELECT","CONSTRUCT","ASK","DESCRIBE"];if(!t.includes(e.queryType))throw new cr(`Invalid query type: expected one of ${t.join(", ")}, got "${e.queryType}"`)}}};xn.ExoQLParser=Vh;xn.SPARQLParser=Vh});var Ro=S(Uh=>{"use strict";Object.defineProperty(Uh,"__esModule",{value:!0});Uh.AlgebraTranslatorError=void 0;var Q_=class extends Error{static{o(this,"AlgebraTranslatorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="AlgebraTranslatorError"}};Uh.AlgebraTranslatorError=Q_});var Bh=S(cs=>{"use strict";Object.defineProperty(cs,"__esModule",{value:!0});cs.isVariableExpression=Uj;cs.isVariableTerm=Bj;cs.isNamedNode=qj;cs.isLiteral=Wj;cs.isPropertyPath=Gj;cs.isAggregateExpression=zj;cs.isOperationExpression=Hj;cs.isFunctionCallExpression=Qj;function Uj(n){return typeof n=="object"&&n!==null&&"expression"in n&&"variable"in n}o(Uj,"isVariableExpression");function Bj(n){return typeof n=="object"&&n!==null&&"termType"in n&&n.termType==="Variable"}o(Bj,"isVariableTerm");function qj(n){return typeof n=="object"&&n!==null&&"termType"in n&&n.termType==="NamedNode"}o(qj,"isNamedNode");function Wj(n){return typeof n=="object"&&n!==null&&"termType"in n&&n.termType==="Literal"}o(Wj,"isLiteral");function Gj(n){return typeof n=="object"&&n!==null&&"type"in n&&n.type==="path"}o(Gj,"isPropertyPath");function zj(n){return typeof n=="object"&&n!==null&&"type"in n&&n.type==="aggregate"}o(zj,"isAggregateExpression");function Hj(n){return typeof n=="object"&&n!==null&&"type"in n&&n.type==="operation"}o(Hj,"isOperationExpression");function Qj(n){return typeof n=="object"&&n!==null&&"type"in n&&(n.type==="functionCall"||n.type==="functioncall")}o(Qj,"isFunctionCallExpression")});var F3=S(qh=>{"use strict";Object.defineProperty(qh,"__esModule",{value:!0});qh.TripleTranslator=void 0;var ln=Ro(),K_=class{static{o(this,"TripleTranslator")}constructor(){this.directionMappings=new Map}setDirectionMappings(e){this.directionMappings=e}translateBGP(e){if(!("triples"in e)||!Array.isArray(e.triples))throw new ln.AlgebraTranslatorError("BGP pattern must have triples array");return{type:"bgp",triples:e.triples.map(t=>this.translateTriple(t))}}translateTriple(e){if(!e.subject||!e.predicate||!e.object)throw new ln.AlgebraTranslatorError("Triple must have subject, predicate, and object");return{subject:this.translateTripleElement(e.subject),predicate:this.translatePredicate(e.predicate),object:this.translateTripleElement(e.object)}}translateConstructTemplate(e){return!e||!Array.isArray(e)?[]:e.map(t=>this.translateTriple(t))}translatePredicate(e){return"type"in e&&e.type==="path"?this.translatePropertyPath(e):this.translateTripleElement(e)}translatePropertyPath(e){if(!("pathType"in e)||!e.pathType)throw new ln.AlgebraTranslatorError("Property path must have pathType");if(!("items"in e)||!Array.isArray(e.items))throw new ln.AlgebraTranslatorError("Property path must have items array");let t=e.items.map(r=>this.translatePathItem(r));switch(e.pathType){case"/":return{type:"path",pathType:"/",items:t};case"|":return{type:"path",pathType:"|",items:t};case"^":if(t.length!==1)throw new ln.AlgebraTranslatorError("Inverse path must have exactly one item");return{type:"path",pathType:"^",items:[t[0]]};case"+":if(t.length!==1)throw new ln.AlgebraTranslatorError("OneOrMore path must have exactly one item");return{type:"path",pathType:"+",items:[t[0]]};case"*":if(t.length!==1)throw new ln.AlgebraTranslatorError("ZeroOrMore path must have exactly one item");return{type:"path",pathType:"*",items:[t[0]]};case"?":if(t.length!==1)throw new ln.AlgebraTranslatorError("ZeroOrOne path must have exactly one item");return{type:"path",pathType:"?",items:[t[0]]};default:throw new ln.AlgebraTranslatorError(`Unsupported property path type: ${e.pathType}`)}}translatePathItem(e){if("type"in e&&e.type==="path")return this.translatePropertyPath(e);if("termType"in e&&e.termType==="NamedNode")return{type:"iri",value:e.value};let t="type"in e?e.type:"termType"in e?e.termType:"unknown";throw new ln.AlgebraTranslatorError(`Unsupported path item type: ${String(t)}`)}translateTripleElement(e){if(!e||!("termType"in e))throw new ln.AlgebraTranslatorError("Triple element must have termType");switch(e.termType){case"Variable":return{type:"variable",value:e.value};case"NamedNode":return{type:"iri",value:e.value};case"Literal":{let t={type:"literal",value:e.value,datatype:e.datatype?.value,language:e.language};if(e.language){let r=this.directionMappings.get(e.language.toLowerCase());r&&(t.direction=r)}return t}case"BlankNode":return{type:"blank",value:e.value};case"Quad":return this.translateQuotedTriple(e);default:throw new ln.AlgebraTranslatorError(`Unsupported term type: ${e.termType}`)}}translateQuotedTriple(e){if(!e.subject||!e.predicate||!e.object)throw new ln.AlgebraTranslatorError("Quoted triple must have subject, predicate, and object");return{type:"quoted",subject:this.translateTripleElement(e.subject),predicate:this.translateQuotedTriplePredicate(e.predicate),object:this.translateTripleElement(e.object)}}translateQuotedTriplePredicate(e){if(!e||!("termType"in e))throw new ln.AlgebraTranslatorError("Quoted triple predicate must have termType");switch(e.termType){case"Variable":return{type:"variable",value:e.value};case"NamedNode":return{type:"iri",value:e.value};default:throw new ln.AlgebraTranslatorError(`Quoted triple predicate must be IRI or Variable, got: ${e.termType}`)}}};qh.TripleTranslator=K_});var D3=S(Wh=>{"use strict";Object.defineProperty(Wh,"__esModule",{value:!0});Wh.ExpressionTranslator=void 0;var Lc=Ro(),Y_=class{static{o(this,"ExpressionTranslator")}constructor(e){this.translateWhereFn=e.translateWhere,this.translateBGPFn=e.translateBGP,this.translatePatternFn=e.translatePattern}translateExpression(e){if(!e)throw new Lc.AlgebraTranslatorError("Expression cannot be null or undefined");if("type"in e&&e.type==="operation")return this.translateOperationExpression(e);let t="type"in e?e.type:void 0;if(t==="functioncall"||t==="functionCall"){let r=e;return{type:"functionCall",function:r.function,args:r.args.map(i=>this.translateExpression(i))}}if("termType"in e)return this.translateTermExpression(e);throw new Lc.AlgebraTranslatorError(`Unsupported expression structure: ${JSON.stringify(e)}`)}translateFilter(e){if(!e.expression)throw new Lc.AlgebraTranslatorError("Filter pattern must have expression");let t={type:"bgp",triples:[]};return{type:"filter",expression:this.translateExpression(e.expression),input:t}}translateTermExpression(e){if(e.termType==="Variable")return{type:"variable",name:e.value};if(e.termType==="Literal"){let t=e.value;return e.datatype&&(e.datatype.value.includes("#integer")||e.datatype.value.includes("#decimal")?t=parseFloat(e.value):e.datatype.value.includes("#boolean")&&(t=e.value==="true")),{type:"literal",value:t,datatype:e.datatype?.value}}return{type:"literal",value:String(e.value||e)}}translateOperationExpression(e){let t=["=","!=","<",">","<=",">="],r=["&&","||","!"],i=["+","-","*","/"],s=e.args.filter(a=>!("patterns"in a)||"termType"in a);return t.includes(e.operator)?{type:"comparison",operator:e.operator,left:this.translateExpression(s[0]),right:this.translateExpression(s[1])}:r.includes(e.operator)?{type:"logical",operator:e.operator,operands:s.map(a=>this.translateExpression(a))}:i.includes(e.operator)?{type:"arithmetic",operator:e.operator,left:this.translateExpression(s[0]),right:this.translateExpression(s[1])}:e.operator==="exists"||e.operator==="notexists"?this.translateExistsExpression(e):e.operator==="in"||e.operator==="notin"?this.translateInExpression(e):{type:"function",function:e.operator,args:s.map(a=>this.translateExpression(a))}}translateExistsExpression(e){if(!e.args||e.args.length!==1)throw new Lc.AlgebraTranslatorError("EXISTS/NOT EXISTS must have exactly one pattern argument");let t=e.args[0],r;return t.type==="group"&&"patterns"in t&&t.patterns?r=this.translateWhereFn(t.patterns):t.type==="bgp"?r=this.translateBGPFn(t):r=this.translatePatternFn(t),{type:"exists",negated:e.operator==="notexists",pattern:r}}translateInExpression(e){if(!e.args||e.args.length!==2)throw new Lc.AlgebraTranslatorError("IN/NOT IN must have exactly 2 arguments (expression and list)");let t=e.args[0],r=e.args[1];if(!Array.isArray(r))throw new Lc.AlgebraTranslatorError("IN/NOT IN second argument must be an array of values");return{type:"in",expression:this.translateExpression(t),list:r.map(i=>this.translateExpression(i)),negated:e.operator==="notin"}}};Wh.ExpressionTranslator=Y_});var k3=S(Gh=>{"use strict";Object.defineProperty(Gh,"__esModule",{value:!0});Gh.PatternTranslator=void 0;var N3=M_(),Dr=Ro(),L3=Bh(),X_=class{static{o(this,"PatternTranslator")}constructor(e){this.directionMappings=new Map,this.translateExpressionFn=e.translateExpression,this.translateSelectFn=e.translateSelect,this.translateBGPFn=e.translateBGP}setDirectionMappings(e){this.directionMappings=e}translateWhere(e){if(e.length===0)throw new Dr.AlgebraTranslatorError("Empty WHERE clause");let t=e.filter(a=>a.type==="filter"),r=e.filter(a=>a.type==="bind"),i=e.filter(a=>a.type!=="filter"&&a.type!=="bind"),s;if(i.length===0)s={type:"bgp",triples:[]};else if(i.length===1)if(i[0].type==="optional"){let a=i[0].expression;s={type:"leftjoin",left:{type:"bgp",triples:[]},right:this.translateWhere(i[0].patterns),expression:a?this.translateExpressionFn(a):void 0}}else s=this.translatePattern(i[0]);else{if(i[0].type==="optional"){let a=i[0].expression;s={type:"leftjoin",left:{type:"bgp",triples:[]},right:this.translateWhere(i[0].patterns),expression:a?this.translateExpressionFn(a):void 0}}else s=this.translatePattern(i[0]);for(let a=1;a<i.length;a++){let c=i[a];if(this.isLateralPattern(c)){let l=this.extractLateralSubquery(c),u=this.removeLateralMarker(l),f=this.translateSelectFn(u);s={type:"lateraljoin",left:s,right:f}}else if(c.type==="optional"){let l=c.expression;s={type:"leftjoin",left:s,right:this.translateWhere(c.patterns),expression:l?this.translateExpressionFn(l):void 0}}else{let l=this.translatePattern(c);s={type:"join",left:s,right:l}}}}for(let a of r)s=this.translateBind(a,s);for(let a of t)s={type:"filter",expression:this.translateExpressionFn(a.expression),input:s};return s}translatePattern(e){if(!e||!e.type)throw new Dr.AlgebraTranslatorError("Invalid pattern: missing type");switch(e.type){case"bgp":return this.translateBGPFn(e);case"filter":return this.translateFilter(e);case"optional":return this.translateOptional(e);case"union":return this.translateUnion(e);case"minus":return this.translateMinus(e);case"values":return this.translateValues(e);case"group":return this.translateWhere(e.patterns);case"query":return this.translateSubquery(e);case"service":return this.translateService(e);case"graph":return this.translateGraph(e);default:throw new Dr.AlgebraTranslatorError(`Unsupported pattern type: ${e.type}`)}}translateFilter(e){if(!e.expression)throw new Dr.AlgebraTranslatorError("Filter pattern must have expression");let t={type:"bgp",triples:[]};return{type:"filter",expression:this.translateExpressionFn(e.expression),input:t}}translateOptional(e){if(!e.patterns||e.patterns.length===0)throw new Dr.AlgebraTranslatorError("OPTIONAL pattern must have patterns");let t=e.expression;return{type:"leftjoin",left:{type:"bgp",triples:[]},right:this.translateWhere(e.patterns),expression:t?this.translateExpressionFn(t):void 0}}translateUnion(e){if(!e.patterns||e.patterns.length<2)throw new Dr.AlgebraTranslatorError("UNION pattern must have at least 2 patterns");let t=o(i=>i.type==="graph"?this.translateGraph(i):i.type==="service"?this.translateService(i):"patterns"in i&&i.patterns&&Array.isArray(i.patterns)?this.translateWhere(i.patterns):this.translateWhere([i]),"translateBranch"),r={type:"union",left:t(e.patterns[0]),right:t(e.patterns[1])};for(let i=2;i<e.patterns.length;i++)r={type:"union",left:r,right:t(e.patterns[i])};return r}translateMinus(e){if(!e.patterns||e.patterns.length===0)throw new Dr.AlgebraTranslatorError("MINUS pattern must have patterns");return{type:"minus",left:{type:"bgp",triples:[]},right:this.translateWhere(e.patterns)}}translateValues(e){if(!e.values||!Array.isArray(e.values))throw new Dr.AlgebraTranslatorError("VALUES pattern must have values array");let t=new Set;for(let i of e.values)for(let s of Object.keys(i)){let a=s.startsWith("?")?s.slice(1):s;t.add(a)}let r=e.values.map(i=>this.translateValuesBinding(i));return{type:"values",variables:Array.from(t),bindings:r}}translateValuesBinding(e){let t={};for(let[r,i]of Object.entries(e)){let s=r.startsWith("?")?r.slice(1):r,a=i;if(a)if(a.termType==="NamedNode")t[s]={type:"iri",value:a.value};else if(a.termType==="Literal"){let c=a,l={type:"literal",value:c.value,datatype:c.datatype?.value,language:c.language||void 0};if(c.language){let u=this.directionMappings.get(c.language.toLowerCase());u&&(l.direction=u)}t[s]=l}else throw new Dr.AlgebraTranslatorError(`Unsupported VALUES term type: ${a.termType}`)}return t}translateBind(e,t){if(!e.variable||!e.expression)throw new Dr.AlgebraTranslatorError("BIND pattern must have variable and expression");return{type:"extend",variable:e.variable.value,expression:this.translateExpressionFn(e.expression),input:t}}translateSubquery(e){if(e.queryType!=="SELECT")throw new Dr.AlgebraTranslatorError(`Only SELECT subqueries are supported, got: ${String(e.queryType)}`);let t=this.removeLateralMarker(e);return{type:"subquery",query:this.translateSelectFn(t)}}translateService(e){if(!e.name||e.name.termType!=="NamedNode")throw new Dr.AlgebraTranslatorError("SERVICE pattern must have a NamedNode endpoint");if(!e.patterns||!Array.isArray(e.patterns))throw new Dr.AlgebraTranslatorError("SERVICE pattern must have patterns array");return{type:"service",endpoint:e.name.value,pattern:this.translateWhere(e.patterns),silent:e.silent||!1}}translateGraph(e){if(!e.name)throw new Dr.AlgebraTranslatorError("GRAPH pattern must have a name (IRI or variable)");if(!e.patterns||!Array.isArray(e.patterns))throw new Dr.AlgebraTranslatorError("GRAPH pattern must have patterns array");let t;if(e.name.termType==="NamedNode")t={type:"iri",value:e.name.value};else if(e.name.termType==="Variable")t={type:"variable",value:e.name.value};else throw new Dr.AlgebraTranslatorError(`GRAPH pattern name must be NamedNode or Variable, got: ${e.name.termType}`);return{type:"graph",name:t,pattern:this.translateWhere(e.patterns)}}isLateralPattern(e){if(e.type==="query"&&this.isLateralSubquery(e))return!0;if(e.type==="group"&&e.patterns?.length===1){let t=e.patterns[0];if(t.type==="query"&&this.isLateralSubquery(t))return!0}return!1}extractLateralSubquery(e){if(e.type==="query")return e;if(e.type==="group"&&e.patterns?.length===1){let t=e.patterns[0];if(t.type==="query")return t}throw new Dr.AlgebraTranslatorError("Invalid lateral pattern structure")}isLateralSubquery(e){return!("queryType"in e)||e.queryType!=="SELECT"||!("variables"in e)||!e.variables?!1:e.variables.some(i=>(0,L3.isVariableTerm)(i)&&i.value===N3.LateralTransformer.LATERAL_MARKER)}removeLateralMarker(e){if(!("variables"in e)||!e.variables)return e;let t=e,r=t.variables;return{...t,variables:r.filter(i=>!((0,L3.isVariableTerm)(i)&&i.value===N3.LateralTransformer.LATERAL_MARKER))}}};Gh.PatternTranslator=X_});var j3=S(zh=>{"use strict";Object.defineProperty(zh,"__esModule",{value:!0});zh.AggregateTranslator=void 0;var M3=Ro(),Kj=Bh(),J_=class{static{o(this,"AggregateTranslator")}constructor(e){this.aggregateCounter=0,this.translateExpressionFn=e.translateExpression}resetCounter(){this.aggregateCounter=0}extractAggregatesWithMapping(e,t){if(!e)return[];let r=[];for(let i of e)(0,Kj.isVariableExpression)(i)&&("type"in i.expression&&i.expression.type==="aggregate"?(r.push({variable:i.variable.value,expression:this.translateAggregateExpression(i.expression)}),t.set(i.expression,i.variable.value)):this.collectNestedAggregates(i.expression,r,t));return r}extractGroupVariables(e){return e?e.filter(t=>t.expression&&"termType"in t.expression&&t.expression.termType==="Variable").map(t=>t.expression.value):[]}extractHavingExpressions(e,t,r){if(!e||e.length===0)return[];for(let i of e)this.collectNestedAggregates(i,t,r);return e.map(i=>this.transformExpressionWithAggregateVars(i,r))}transformExpressionWithAggregateVars(e,t){let r=t.get(e);if(r!==void 0)return{type:"variable",name:r};if("type"in e&&e.type==="operation"&&"args"in e){let i=e,s=i.args.filter(u=>!Array.isArray(u)&&!("patterns"in u)).map(u=>this.transformExpressionWithAggregateVars(u,t)),a=["=","!=","<",">","<=",">="],c=["&&","||","!"],l=["+","-","*","/"];return a.includes(i.operator)?{type:"comparison",operator:i.operator,left:s[0],right:s[1]}:c.includes(i.operator)?{type:"logical",operator:i.operator,operands:s}:l.includes(i.operator)?{type:"arithmetic",operator:i.operator,left:s[0],right:s[1]}:{type:"function",function:i.operator,args:s}}return this.translateExpressionFn(e)}translateOrderComparator(e){return{expression:this.translateExpressionFn(e.expression),descending:e.descending||!1}}translateAggregateExpression(e){let t=e.aggregation,r=o(()=>{if(e.expression&&!("termType"in e.expression&&e.expression.termType==="Wildcard"))return this.translateExpressionFn(e.expression)},"translateInnerExpr");if(typeof t=="string"){let s=t.toLowerCase();return["count","sum","avg","min","max","group_concat","sample"].includes(s)?{type:"aggregate",aggregation:s,expression:r(),distinct:e.distinct||!1,separator:e.separator}:{type:"aggregate",aggregation:{type:"custom",iri:t},expression:r(),distinct:e.distinct||!1,separator:e.separator}}let i=t;if(i&&typeof i=="object"){let s,a=i;if(a.termType==="NamedNode"&&typeof a.value=="string")s=a.value;else if("value"in a)s=String(a.value);else throw new M3.AlgebraTranslatorError(`Invalid custom aggregate: expected IRI but got ${JSON.stringify(i)}`);return{type:"aggregate",aggregation:{type:"custom",iri:s},expression:r(),distinct:e.distinct||!1,separator:e.separator}}throw new M3.AlgebraTranslatorError(`Unknown aggregate format: ${JSON.stringify(t)}`)}collectNestedAggregates(e,t,r){if(e){if("type"in e&&e.type==="aggregate"){let i=`__agg${this.aggregateCounter++}`;t.push({variable:i,expression:this.translateAggregateExpression(e)}),r.set(e,i)}else if("type"in e&&e.type==="operation"&&"args"in e){let i=e;for(let s of i.args)!Array.isArray(s)&&"type"in s&&!("patterns"in s)?this.collectNestedAggregates(s,t,r):"termType"in s&&this.collectNestedAggregates(s,t,r)}}}};zh.AggregateTranslator=J_});var kc=S(Pa=>{"use strict";Object.defineProperty(Pa,"__esModule",{value:!0});Pa.AlgebraTranslator=Pa.ExoQLAlgebraTranslator=Pa.AlgebraTranslatorError=void 0;var Hh=Ro(),Qh=Bh(),Yj=F3(),Xj=D3(),Jj=k3(),Zj=j3(),e9=Ro();Object.defineProperty(Pa,"AlgebraTranslatorError",{enumerable:!0,get:o(function(){return e9.AlgebraTranslatorError},"get")});var Kh=class{static{o(this,"ExoQLAlgebraTranslator")}constructor(){this.tripleTranslator=new Yj.TripleTranslator,this.expressionTranslator=new Xj.ExpressionTranslator({translateWhere:o(e=>this.patternTranslator.translateWhere(e),"translateWhere"),translateBGP:o(e=>this.tripleTranslator.translateBGP(e),"translateBGP"),translatePattern:o(e=>this.patternTranslator.translatePattern(e),"translatePattern")}),this.patternTranslator=new Jj.PatternTranslator({translateExpression:o(e=>this.expressionTranslator.translateExpression(e),"translateExpression"),translateSelect:o(e=>this.translateSelect(e),"translateSelect"),translateBGP:o(e=>this.tripleTranslator.translateBGP(e),"translateBGP")}),this.aggregateTranslator=new Zj.AggregateTranslator({translateExpression:o(e=>this.expressionTranslator.translateExpression(e),"translateExpression")})}setDirectionMappings(e){this.tripleTranslator.setDirectionMappings(e),this.patternTranslator.setDirectionMappings(e)}translate(e){if(e.type!=="query")throw new Hh.AlgebraTranslatorError("Only query operations are supported (not updates)");if(e.queryType==="SELECT")return this.translateSelect(e);if(e.queryType==="CONSTRUCT")return this.translateConstruct(e);if(e.queryType==="ASK")return this.translateAsk(e);if(e.queryType==="DESCRIBE")return this.translateDescribe(e);throw new Hh.AlgebraTranslatorError(`Query type ${String(e.queryType)} not yet supported`)}translateSelect(e){if(!e.where||e.where.length===0)throw new Hh.AlgebraTranslatorError("SELECT query must have WHERE clause");let t=this.patternTranslator.translateWhere(e.where);this.aggregateTranslator.resetCounter();let r=new Map,i=Array.isArray(e.variables)?e.variables.filter(l=>!("termType"in l&&l.termType==="Wildcard")):[],s=this.aggregateTranslator.extractAggregatesWithMapping(i,r),a=this.aggregateTranslator.extractGroupVariables(e.group),c=this.aggregateTranslator.extractHavingExpressions(e.having,s,r);if((s.length>0||a.length>0||c.length>0)&&(t={type:"group",variables:a,aggregates:s,having:c.length>0?c:void 0,input:t}),i.length>0){for(let u of i)if((0,Qh.isVariableExpression)(u)){if("type"in u.expression&&u.expression.type==="aggregate")continue;let f=this.aggregateTranslator.transformExpressionWithAggregateVars(u.expression,r);t={type:"extend",variable:u.variable.value,expression:f,input:t}}let l=i.filter(u=>(0,Qh.isVariableTerm)(u)||(0,Qh.isVariableExpression)(u)).map(u=>(0,Qh.isVariableTerm)(u)?u.value:u.variable.value);l.length>0&&(t={type:"project",variables:l,input:t})}return e.distinct&&(t={type:"distinct",input:t}),e.reduced&&(t={type:"reduced",input:t}),e.order&&e.order.length>0&&(t={type:"orderby",comparators:e.order.map(l=>this.aggregateTranslator.translateOrderComparator(l)),input:t}),(e.limit!==void 0||e.offset!==void 0)&&(t={type:"slice",limit:e.limit,offset:e.offset,input:t}),t}translateConstruct(e){let t=this.tripleTranslator.translateConstructTemplate(e.template??[]);if(!e.where||e.where.length===0)throw new Hh.AlgebraTranslatorError("CONSTRUCT query must have WHERE clause");let r=this.patternTranslator.translateWhere(e.where),i=e;return(i.limit!==void 0||i.offset!==void 0)&&(r={type:"slice",limit:i.limit,offset:i.offset,input:r}),{type:"construct",template:t,where:r}}translateAsk(e){return{type:"ask",where:e.where&&e.where.length>0?this.patternTranslator.translateWhere(e.where):{type:"bgp",triples:[]}}}translateDescribe(e){let t=[];if(e.variables&&Array.isArray(e.variables)){let s=e.variables;for(let a of s)a.termType==="Wildcard"||a.value==="*"||(a.termType==="Variable"?t.push({type:"variable",value:a.value}):a.termType==="NamedNode"&&t.push({type:"iri",value:a.value}))}let r;e.where&&e.where.length>0&&(r=this.patternTranslator.translateWhere(e.where));let i=e.describeOptions;return{type:"describe",resources:t,where:r,depth:i?.depth,symmetric:i?.symmetric}}};Pa.ExoQLAlgebraTranslator=Kh;Pa.AlgebraTranslator=Kh});var ls=S(Yh=>{"use strict";Object.defineProperty(Yh,"__esModule",{value:!0});Yh.SolutionMapping=void 0;var $3=De(),V3=Ae(),U3=Vt(),Z_=class n{static{o(this,"SolutionMapping")}constructor(e){this.bindings=e?new Map(e):new Map}get(e){return this.bindings.get(e)}set(e,t){this.bindings.set(e,t)}has(e){return this.bindings.has(e)}variables(){return Array.from(this.bindings.keys())}getBindings(){return new Map(this.bindings)}isCompatibleWith(e){for(let[t,r]of this.bindings.entries()){let i=e.get(t);if(i!==void 0&&!this.areEqual(r,i))return!1}return!0}merge(e){if(!this.isCompatibleWith(e))return null;let t=new n(this.bindings);for(let[r,i]of e.getBindings().entries())t.set(r,i);return t}clone(){return new n(this.bindings)}areEqual(e,t){return e instanceof $3.Literal&&t instanceof $3.Literal?e.equals(t):e instanceof V3.IRI&&t instanceof V3.IRI?e.value===t.value:e instanceof U3.BlankNode&&t instanceof U3.BlankNode?e.id===t.id:!1}toJSON(){let e={};for(let[t,r]of this.bindings.entries())e[t]=r.toString();return e}size(){return this.bindings.size}};Yh.SolutionMapping=Z_});var q3=S(Mc=>{"use strict";Object.defineProperty(Mc,"__esModule",{value:!0});Mc.PropertyPathExecutor=Mc.PropertyPathExecutorError=void 0;var t9=ls(),Xh=Ae(),B3=Vt(),r9=De(),qu=class extends Error{static{o(this,"PropertyPathExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="PropertyPathExecutorError"}};Mc.PropertyPathExecutorError=qu;var e1=class{static{o(this,"PropertyPathExecutor")}constructor(e){this.tripleStore=e,this.MAX_DEPTH=100}async*execute(e,t,r){if(this.isLiteralElement(e)||this.isLiteralElement(r)){let a=this.isLiteralElement(e)?"subject":"object",c=this.isLiteralElement(e)?e:r,l="value"in c?String(c.value):"<unknown>",u=l.length>80?`${l.slice(0,77)}...`:l;console.warn(`[PropertyPathExecutor] literal-safety guard fired: literal in ${a} position \u2014 yielding 0 solutions. value="${u}"`);return}let i=await this.resolveElement(e),s=this.isVariable(r)?null:await this.resolveElement(r);for(let a of i){let c=await this.evaluatePath(a,t,s);for(let l of c){let u=new t9.SolutionMapping;this.isVariable(e)&&u.set(e.value,a),this.isVariable(r)&&u.set(r.value,l),yield u}}}async*executeWithBindings(e,t){if(!this.isPropertyPath(e.predicate))throw new qu("Predicate is not a property path");let r=this.instantiateElement(e.subject,t),i=this.instantiateElement(e.object,t);for await(let s of this.execute(r,e.predicate,i)){let a=t.merge(s);a!==null&&(yield a)}}async evaluatePath(e,t,r){switch(t.pathType){case"/":return this.evaluateSequencePath(e,t.items,r);case"|":return this.evaluateAlternativePath(e,t.items,r);case"^":return this.evaluateInversePath(e,t.items[0],r);case"+":return this.evaluateOneOrMorePath(e,t.items[0],r);case"*":return this.evaluateZeroOrMorePath(e,t.items[0],r);case"?":return this.evaluateZeroOrOnePath(e,t.items[0],r)}}async evaluateSequencePath(e,t,r){let i=new Set([e]);for(let s=0;s<t.length;s++){let a=t[s],c=s===t.length-1,l=new Set;for(let u of i){let f=await this.evaluatePathItem(u,a,c?r:null);for(let d of f)l.add(d)}if(i=l,i.size===0)break}return i}async evaluateAlternativePath(e,t,r){let i=new Set;for(let s of t){let a=await this.evaluatePathItem(e,s,r);for(let c of a)i.add(c)}return i}async evaluateInversePath(e,t,r){if(t.type==="iri"){let i=new Xh.IRI(t.value),s=await this.tripleStore.match(void 0,i,e),a=new Set;for(let c of s)(r===null||this.nodeInSet(c.subject,r))&&a.add(c.subject);return a}else return this.evaluatePath(e,this.invertPath(t),r)}async evaluateOneOrMorePath(e,t,r){let i=new Set,s=new Set,a=[{node:e,depth:0}];for(;a.length>0;){let c=a.shift();if(!c)break;let{node:l,depth:u}=c;if(u>=this.MAX_DEPTH)continue;let f=await this.evaluatePathItem(l,t,null);for(let d of f){let h=this.nodeToKey(d);(r===null||this.nodeInSet(d,r))&&s.add(d),i.has(h)||(i.add(h),a.push({node:d,depth:u+1}))}}return s}async evaluateZeroOrMorePath(e,t,r){let i=await this.evaluateOneOrMorePath(e,t,r);return(r===null||this.nodeInSet(e,r))&&i.add(e),i}async evaluateZeroOrOnePath(e,t,r){let i=new Set;(r===null||this.nodeInSet(e,r))&&i.add(e);let s=await this.evaluatePathItem(e,t,r);for(let a of s)i.add(a);return i}async evaluatePathItem(e,t,r){if(t.type==="iri"){let i=new Xh.IRI(t.value),s=await this.tripleStore.match(e,i,void 0),a=new Set;for(let c of s)(r===null||this.nodeInSet(c.object,r))&&a.add(c.object);return a}else return this.evaluatePath(e,t,r)}invertPath(e){switch(e.pathType){case"^":return e.items[0];case"/":return{type:"path",pathType:"/",items:[...e.items].reverse().map(t=>t.type==="iri"?{type:"path",pathType:"^",items:[t]}:this.invertPath(t))};case"|":return{type:"path",pathType:"|",items:e.items.map(t=>t.type==="iri"?{type:"path",pathType:"^",items:[t]}:this.invertPath(t))};case"+":case"*":case"?":{let t=e.items[0].type==="iri"?{type:"path",pathType:"^",items:[e.items[0]]}:this.invertPath(e.items[0]);return{type:"path",pathType:e.pathType,items:[t]}}}}async resolveElement(e){if(this.isVariable(e)){let r=new Set,i=await this.tripleStore.match(void 0,void 0,void 0);for(let s of i)r.add(s.subject),r.add(s.object);return r}let t=new Set;switch(e.type){case"iri":t.add(new Xh.IRI(e.value));break;case"blank":t.add(new B3.BlankNode(e.value));break;default:throw new qu(`Unsupported element type in subject/object position: ${e.type}`)}return t}instantiateElement(e,t){if(this.isVariable(e)){let r=t.get(e.value);if(r){if(r instanceof Xh.IRI)return{type:"iri",value:r.value};if(r instanceof B3.BlankNode)return{type:"blank",value:r.id};if(r instanceof r9.Literal)return{type:"literal",value:r.value,datatype:r.datatype?.value,language:r.language,direction:r.direction}}}return e}isVariable(e){return e.type==="variable"}isLiteralElement(e){return e.type==="literal"}isPropertyPath(e){return e.type==="path"}nodeToKey(e){return e.toString()}nodeInSet(e,t){let r=this.nodeToKey(e);for(let i of t)if(this.nodeToKey(i)===r)return!0;return!1}};Mc.PropertyPathExecutor=e1});var n1=S(jc=>{"use strict";Object.defineProperty(jc,"__esModule",{value:!0});jc.BGPExecutor=jc.BGPExecutorError=void 0;var Jh=ls(),Fa=Ae(),t1=De(),Zh=Vt(),ep=Au(),n9=q3(),qr=class extends Error{static{o(this,"BGPExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="BGPExecutorError"}};jc.BGPExecutorError=qr;var r1=class{static{o(this,"BGPExecutor")}constructor(e){this.tripleStore=e,this.propertyPathExecutor=new n9.PropertyPathExecutor(e)}async*execute(e){if(e.triples.length===0){yield new Jh.SolutionMapping;return}let t=this.matchTriplePattern(e.triples[0]);for(let r=1;r<e.triples.length;r++)t=this.joinWithPattern(t,e.triples[r]);for await(let r of t)yield r}async executeAll(e){let t=[];for await(let r of this.execute(e))t.push(r);return t}async*executeInGraph(e,t){if(e.triples.length===0){yield new Jh.SolutionMapping;return}let r=this.matchTriplePatternInGraph(e.triples[0],t);for(let i=1;i<e.triples.length;i++)r=this.joinWithPatternInGraph(r,e.triples[i],t);for await(let i of r)yield i}async*matchTriplePatternInGraph(e,t){if(this.isPropertyPath(e.predicate))throw new qr("Property paths within named graphs are not yet supported");let r=e.predicate;if(this.isLiteral(e.subject)||this.isLiteral(r)){this.warnLiteralGuard("matchTriplePatternInGraph",this.isLiteral(e.subject)?"subject":"predicate",this.isLiteral(e.subject)?e.subject:r);return}let i=this.isVariable(e.subject)?void 0:this.toRDFTermAsSubject(e.subject),s=this.isVariable(r)?void 0:this.toRDFTermAsPredicate(r),a=this.isVariable(e.object)?void 0:this.toRDFTerm(e.object);if(!this.tripleStore.matchInGraph)throw new qr("Triple store does not support named graph operations");let c=await this.tripleStore.matchInGraph(i,s,a,t);for(let l of c){let u=new Jh.SolutionMapping;this.isVariable(e.subject)&&u.set(e.subject.value,l.subject),this.isVariable(r)&&u.set(r.value,l.predicate),this.isVariable(e.object)&&u.set(e.object.value,l.object),yield u}}async*joinWithPatternInGraph(e,t,r){let i=[];for await(let s of e)i.push(s);for(let s of i){let a=this.instantiatePattern(t,s);for await(let c of this.matchTriplePatternInGraph(a,r)){let l=s.merge(c);l!==null&&(yield l)}}}async*matchTriplePattern(e){if(this.isPropertyPath(e.predicate)){if(this.isLiteral(e.subject)||this.isLiteral(e.object)){this.warnLiteralGuard("matchTriplePattern.propertyPath",this.isLiteral(e.subject)?"subject":"object",this.isLiteral(e.subject)?e.subject:e.object);return}yield*this.propertyPathExecutor.execute(e.subject,e.predicate,e.object);return}let t=e.predicate;if(this.isLiteral(e.subject)||this.isLiteral(t)){this.warnLiteralGuard("matchTriplePattern",this.isLiteral(e.subject)?"subject":"predicate",this.isLiteral(e.subject)?e.subject:t);return}let r=this.isVariable(e.subject)||this.isQuotedTriple(e.subject)&&this.hasVariablesInQuotedTriple(e.subject)?void 0:this.toRDFTermAsSubject(e.subject),i=this.isVariable(t)?void 0:this.toRDFTermAsPredicate(t),s=this.isVariable(e.object)||this.isQuotedTriple(e.object)&&this.hasVariablesInQuotedTriple(e.object)?void 0:this.toRDFTerm(e.object),a=await this.tripleStore.match(r,i,s);for(let c of a){let l=new Jh.SolutionMapping;if(this.isVariable(e.subject))l.set(e.subject.value,c.subject);else if(this.isQuotedTriple(e.subject)){let u=this.matchQuotedTriplePattern(e.subject,c.subject);if(u===null)continue;for(let[f,d]of u.entries())l.set(f,d)}if(this.isVariable(t)&&l.set(t.value,c.predicate),this.isVariable(e.object))l.set(e.object.value,c.object);else if(this.isQuotedTriple(e.object)){let u=this.matchQuotedTriplePattern(e.object,c.object);if(u===null)continue;for(let[f,d]of u.entries())l.set(f,d)}yield l}}hasVariablesInQuotedTriple(e){return!!(this.isVariable(e.subject)||e.predicate.type==="variable"||this.isVariable(e.object)||this.isQuotedTriple(e.subject)&&this.hasVariablesInQuotedTriple(e.subject)||this.isQuotedTriple(e.object)&&this.hasVariablesInQuotedTriple(e.object))}matchQuotedTriplePattern(e,t){if(!(t instanceof ep.QuotedTriple))return null;let r=new Map;if(this.isVariable(e.subject))r.set(e.subject.value,t.subject);else if(this.isQuotedTriple(e.subject)){let i=this.matchQuotedTriplePattern(e.subject,t.subject);if(i===null)return null;for(let[s,a]of i)r.set(s,a)}else if(!this.elementsMatch(e.subject,t.subject))return null;if(e.predicate.type==="variable")r.set(e.predicate.value,t.predicate);else if(e.predicate.value!==t.predicate.value)return null;if(this.isVariable(e.object))r.set(e.object.value,t.object);else if(this.isQuotedTriple(e.object)){let i=this.matchQuotedTriplePattern(e.object,t.object);if(i===null)return null;for(let[s,a]of i)r.set(s,a)}else if(!this.elementsMatch(e.object,t.object))return null;return r}elementsMatch(e,t){switch(e.type){case"iri":return t instanceof Fa.IRI&&e.value===t.value;case"literal":return!(!(t instanceof t1.Literal)||e.value!==t.value||e.datatype!==t.datatype?.value||e.language!==t.language||e.direction!==t.direction);case"blank":return t instanceof Zh.BlankNode&&e.value===t.id;case"quoted":return t instanceof ep.QuotedTriple?this.toRDFQuotedTriple(e).equals(t):!1;default:return!1}}isPropertyPath(e){return e.type==="path"}async*joinWithPattern(e,t){let r=[];for await(let i of e)r.push(i);for(let i of r){let s=this.instantiatePattern(t,i);for await(let a of this.matchTriplePattern(s)){let c=i.merge(a);c!==null&&(yield c)}}}instantiatePattern(e,t){let r=this.isPropertyPath(e.predicate)?e.predicate:this.instantiateElement(e.predicate,t);return{subject:this.instantiateElement(e.subject,t),predicate:r,object:this.instantiateElement(e.object,t)}}instantiateElement(e,t){if(this.isVariable(e)){let r=t.get(e.value);if(r)return this.toAlgebraElement(r)}return this.isQuotedTriple(e)?this.instantiateQuotedTriple(e,t):e}instantiateQuotedTriple(e,t){let r=this.instantiateElement(e.subject,t),i=e.predicate.type==="variable"?this.instantiatePredicateVariable(e.predicate,t):e.predicate,s=this.instantiateElement(e.object,t);return{type:"quoted",subject:r,predicate:i,object:s}}instantiatePredicateVariable(e,t){let r=t.get(e.value);return r&&r instanceof Fa.IRI?{type:"iri",value:r.value}:e}isVariable(e){return e.type==="variable"}isQuotedTriple(e){return e.type==="quoted"}isLiteral(e){return e.type==="literal"}warnLiteralGuard(e,t,r){let i="value"in r?String(r.value):"<unknown>",s=i.length>80?`${i.slice(0,77)}...`:i;console.warn(`[BGPExecutor] literal-safety guard fired in ${e}: literal in ${t} position \u2014 yielding 0 solutions. value="${s}"`)}toRDFTermAsSubject(e){switch(e.type){case"iri":return new Fa.IRI(e.value);case"blank":return new Zh.BlankNode(e.value);case"literal":throw new qr("Literals cannot appear in subject position");case"variable":throw new qr(`Cannot convert variable to RDF term: ${e.value}`);case"quoted":return this.toRDFQuotedTriple(e);default:throw new qr(`Unknown element type: ${String(e)}`)}}toRDFQuotedTriple(e){let t=this.toRDFTermAsSubject(e.subject),r=e.predicate.type==="iri"?new Fa.IRI(e.predicate.value):(()=>{throw new qr("Quoted triple predicate must be IRI")})(),i=this.toRDFTerm(e.object);return new ep.QuotedTriple(t,r,i)}toRDFTermAsPredicate(e){switch(e.type){case"iri":return new Fa.IRI(e.value);case"literal":throw new qr("Literals cannot appear in predicate position");case"blank":throw new qr("Blank nodes cannot appear in predicate position");case"variable":throw new qr(`Cannot convert variable to RDF term: ${e.value}`);default:throw new qr(`Unknown element type: ${String(e)}`)}}toRDFTerm(e){switch(e.type){case"iri":return new Fa.IRI(e.value);case"literal":return new t1.Literal(e.value,e.datatype?new Fa.IRI(e.datatype):void 0,e.language,e.direction);case"blank":return new Zh.BlankNode(e.value);case"variable":throw new qr(`Cannot convert variable to RDF term: ${e.value}`);case"quoted":return this.toRDFQuotedTriple(e);default:throw new qr(`Unknown element type: ${String(e)}`)}}toAlgebraElement(e){if(e instanceof Fa.IRI)return{type:"iri",value:e.value};if(e instanceof t1.Literal)return{type:"literal",value:e.value,datatype:e.datatype?.value,language:e.language,direction:e.direction};if(e instanceof Zh.BlankNode)return{type:"blank",value:e.id};if(e instanceof ep.QuotedTriple)return this.toAlgebraQuotedTriple(e);throw new qr(`Unknown RDF term type: ${String(e)}`)}toAlgebraQuotedTriple(e){return{type:"quoted",subject:this.toAlgebraElement(e.subject),predicate:{type:"iri",value:e.predicate.value},object:this.toAlgebraElement(e.object)}}};jc.BGPExecutor=r1});var W3=S(tp=>{"use strict";Object.defineProperty(tp,"__esModule",{value:!0});tp.StringFunctions=void 0;var $c=Ae(),Da=De(),i1=Vt(),Wu=class n{static{o(this,"StringFunctions")}static str(e){if(e===void 0)throw new Error("STR: argument is undefined");return e instanceof $c.IRI||e instanceof Da.Literal?e.value:e instanceof i1.BlankNode?e.id:String(e)}static lang(e){if(e===void 0)throw new Error("LANG: argument is undefined");return e instanceof Da.Literal&&e.language?e.language:""}static langdir(e){if(e===void 0)throw new Error("LANGDIR: argument is undefined");return!(e instanceof Da.Literal)||!e.language?"":e.direction?`${e.language}--${e.direction}`:e.language}static langMatches(e,t){let[r,i]=n.parseDirectionalLangTag(e),[s,a]=n.parseDirectionalLangTag(t),c=r.toLowerCase(),l=s.toLowerCase();return l==="*"?c!=="":c===""?l==="":a&&i!==a?!1:c===l?!0:c.startsWith(l+"-")}static parseDirectionalLangTag(e){let t=e.indexOf("--");if(t===-1)return[e,void 0];let r=e.substring(0,t),i=e.substring(t+2).toLowerCase();return[r,i]}static regex(e,t,r){try{let i=r?r.includes("u")?r:r+"u":"u";return new RegExp(t,i).test(e)}catch(i){throw new Error(`REGEX: invalid pattern '${t}': ${i.message}`)}}static contains(e,t){return e.includes(t)}static strStarts(e,t){return e.startsWith(t)}static strEnds(e,t){return e.endsWith(t)}static strlen(e){return e.length}static ucase(e){return e.toUpperCase()}static lcase(e){return e.toLowerCase()}static substr(e,t,r){let i=t-1;if(i<0){if(r!==void 0){let s=r+i;return s<=0?"":e.substring(0,s)}return e}return r!==void 0?e.substring(i,i+r):e.substring(i)}static strBefore(e,t){if(t==="")return"";let r=e.indexOf(t);return r===-1?"":e.substring(0,r)}static strAfter(e,t){if(t==="")return e;let r=e.indexOf(t);return r===-1?"":e.substring(r+t.length)}static concat(...e){return e.join("")}static replace(e,t,r,i){try{let s=i||"g",a=s.includes("u")?s:s+"u",c=new RegExp(t,a);return e.replace(c,r)}catch(s){throw new Error(`REPLACE: invalid pattern '${t}': ${s.message}`)}}static encodeForUri(e){return encodeURIComponent(e)}static normalize(e,t){if(e===void 0)throw new Error("NORMALIZE: string argument is undefined");let r;if(e instanceof Da.Literal)r=e.value;else if(e instanceof $c.IRI)r=e.value;else if(e instanceof i1.BlankNode)r=e.id;else if(typeof e=="string")r=e;else throw new Error("NORMALIZE: first argument must be a string or literal");let i="NFC";if(t!==void 0)if(t instanceof Da.Literal)i=t.value.toUpperCase();else if(typeof t=="string")i=t.toUpperCase();else if(t instanceof $c.IRI)i=t.value.toUpperCase();else throw new Error("NORMALIZE: second argument must be a string literal");if(!n.VALID_NORMALIZATION_FORMS.includes(i))throw new Error(`NORMALIZE: invalid normalization form '${i}'. Valid forms are: NFC, NFD, NFKC, NFKD`);let s=r.normalize(i);return new Da.Literal(s,new $c.IRI("http://www.w3.org/2001/XMLSchema#string"))}static fold(e){if(e===void 0)throw new Error("FOLD: string argument is undefined");let t;if(e instanceof Da.Literal)t=e.value;else if(e instanceof $c.IRI)t=e.value;else if(e instanceof i1.BlankNode)t=e.id;else if(typeof e=="string")t=e;else throw new Error("FOLD: argument must be a string or literal");let r=n.unicodeCaseFold(t);return new Da.Literal(r,new $c.IRI("http://www.w3.org/2001/XMLSchema#string"))}static unicodeCaseFold(e){let t="";for(let r of e){let i=n.CASE_FOLDING_MAP.get(r);i!==void 0?t+=i:t+=r.toLowerCase()}return t}};tp.StringFunctions=Wu;Wu.VALID_NORMALIZATION_FORMS=["NFC","NFD","NFKC","NFKD"];Wu.CASE_FOLDING_MAP=new Map([["\xDF","ss"],["\u1E9E","ss"],["\u03A3","\u03C3"],["\u03C2","\u03C3"],["\u0130","i\u0307"],["I","i"],["\u0587","\u0565\u0582"],["\uFB00","ff"],["\uFB01","fi"],["\uFB02","fl"],["\uFB03","ffi"],["\uFB04","ffl"],["\uFB05","st"],["\uFB06","st"],["\u0390","\u03B9\u0308\u0301"],["\u03B0","\u03C5\u0308\u0301"],["\u017F","s"],["\u1E9B","\u1E61"],["\u212A","k"],["\u212B","\xE5"]])});var G3=S(rp=>{"use strict";Object.defineProperty(rp,"__esModule",{value:!0});rp.MathFunctions=void 0;var s1=class{static{o(this,"MathFunctions")}static msToMinutes(e){return Math.round(e/(1e3*60))}static msToHours(e){return Math.round(e/(1e3*60*60)*100)/100}static msToSeconds(e){return Math.round(e/1e3)}static abs(e){return Math.abs(e)}static round(e){return Math.round(e)}static ceil(e){return Math.ceil(e)}static floor(e){return Math.floor(e)}static rand(){return Math.random()}};rp.MathFunctions=s1});var ip=S(np=>{"use strict";Object.defineProperty(np,"__esModule",{value:!0});np.DateTimeParsing=void 0;var i9=Ae(),s9=De(),a1=class n{static{o(this,"DateTimeParsing")}static parseDate(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`PARSEDATE: invalid date string '${e}'`);return t.getTime()}static parseDayTimeDuration(e){if(!e)throw new Error("parseDayTimeDuration: duration string is empty");let t=!1,r=e.trim();if(r.startsWith("-")&&(t=!0,r=r.substring(1)),!r.startsWith("P"))throw new Error(`parseDayTimeDuration: invalid format, must start with 'P': '${e}'`);r=r.substring(1);let i=0,s=r.indexOf("T"),a="",c="";if(s===-1?a=r:(a=r.substring(0,s),c=r.substring(s+1)),a){let l=a.match(/^(\d+(?:\.\d+)?)D$/);if(l){let u=parseFloat(l[1]);i+=u*24*60*60*1e3}else if(a!=="")throw new Error(`parseDayTimeDuration: invalid day component: '${a}' in '${e}'`)}if(c){let l=c,u=l.match(/^(\d+(?:\.\d+)?)H/);if(u){let h=parseFloat(u[1]);i+=h*60*60*1e3,l=l.substring(u[0].length)}let f=l.match(/^(\d+(?:\.\d+)?)M/);if(f){let h=parseFloat(f[1]);i+=h*60*1e3,l=l.substring(f[0].length)}let d=l.match(/^(\d+(?:\.\d+)?)S$/);if(d){let h=parseFloat(d[1]);i+=h*1e3,l=l.substring(d[0].length)}if(l!=="")throw new Error(`parseDayTimeDuration: invalid time component: '${l}' in '${e}'`)}return t?-i:i}static formatDayTimeDuration(e){let t=e<0,r=Math.abs(e),i=Math.floor(r/(1440*60*1e3));r=r%(1440*60*1e3);let s=Math.floor(r/(3600*1e3));r=r%(3600*1e3);let a=Math.floor(r/(60*1e3));r=r%(60*1e3);let c=r/1e3,l=t?"-P":"P";return i>0&&(l+=`${i}D`),(s>0||a>0||c>0||i===0)&&(l+="T",s>0&&(l+=`${s}H`),a>0&&(l+=`${a}M`),(c>0||s===0&&a===0)&&(Number.isInteger(c)?l+=`${c}S`:l+=`${parseFloat(c.toFixed(3))}S`)),l}static xsdDayTimeDuration(e){return n.parseDayTimeDuration(e),new s9.Literal(e,new i9.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static parseXSDDate(e){let t=/^(-?\d{4})-(\d{2})-(\d{2})(Z|[+-]\d{2}:\d{2})?$/,r=e.match(t);if(!r){let u=new Date(e);return isNaN(u.getTime())?null:new Date(Date.UTC(u.getUTCFullYear(),u.getUTCMonth(),u.getUTCDate()))}let i=parseInt(r[1],10),s=parseInt(r[2],10)-1,a=parseInt(r[3],10),c=r[4],l=new Date(Date.UTC(i,s,a));if(c&&c!=="Z"){let u=c.match(/([+-])(\d{2}):(\d{2})/);if(u){let f=u[1]==="+"?1:-1,d=parseInt(u[2],10),h=parseInt(u[3],10),p=f*(d*60+h)*60*1e3;l=new Date(l.getTime()-p)}}return l}static parseXSDTime(e){let t=/^(\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?(Z|[+-]\d{2}:\d{2})?$/,r=e.match(t);if(!r)return null;let i=parseInt(r[1],10),s=parseInt(r[2],10),a=parseInt(r[3],10),c=r[4],l=r[5];if(i<0||i>24||s<0||s>59||a<0||a>59||i===24&&(s!==0||a!==0))return null;let u=0;if(c){let d=c.padEnd(3,"0").slice(0,3);u=parseInt(d,10)}let f=i*60*60*1e3+s*60*1e3+a*1e3+u;if(i===24&&(f=1440*60*1e3),l&&l!=="Z"){let d=l.match(/([+-])(\d{2}):(\d{2})/);if(d){let h=d[1]==="+"?1:-1,p=parseInt(d[2],10),y=parseInt(d[3],10),b=h*(p*60+y)*60*1e3;f-=b}}return f}static formatDateDuration(e){if(e===0)return"P0D";let t=e<0,r=Math.abs(e);return t?`-P${r}D`:`P${r}D`}static parseYearMonthDuration(e){let t=/^(-)?P(?:(\d+)Y)?(?:(\d+)M)?$/,r=e.match(t);if(!r)throw new Error(`parseYearMonthDuration: invalid format: '${e}'`);let i=r[1]==="-",s=parseInt(r[2]||"0",10),a=parseInt(r[3]||"0",10);if(!r[2]&&!r[3])throw new Error(`parseYearMonthDuration: invalid format (no duration components): '${e}'`);let c=s*12+a;return i?-c:c}static formatYearMonthDuration(e){let t=e<0,r=Math.abs(e),i=Math.floor(r/12),s=r%12,a=t?"-P":"P";return i>0&&(a+=`${i}Y`),(s>0||i===0)&&(a+=`${s}M`),a}static parseYearMonthDurationComponents(e){let t=/^(-)?P(?:(\d+)Y)?(?:(\d+)M)?$/,r=e.match(t);if(!r)throw new Error(`parseYearMonthDurationComponents: invalid format: '${e}'`);let i=r[1]==="-",s=parseInt(r[2]||"0",10),a=parseInt(r[3]||"0",10);if(!r[2]&&!r[3])throw new Error(`parseYearMonthDurationComponents: invalid format (no duration components): '${e}'`);return{years:s,months:a,negative:i}}static parseDurationComponents(e){if(!e)throw new Error("parseDurationComponents: duration string is empty");let t=!1,r=e.trim();if(r.startsWith("-")&&(t=!0,r=r.substring(1)),!r.startsWith("P"))throw new Error(`parseDurationComponents: invalid format, must start with 'P': '${e}'`);r=r.substring(1);let i=0,s=0,a=0,c=0,l=r.indexOf("T"),u="",f="";if(l===-1?u=r:(u=r.substring(0,l),f=r.substring(l+1)),u){let d=u.match(/^(\d+(?:\.\d+)?)D$/);if(d)i=parseFloat(d[1]);else if(u!=="")throw new Error(`parseDurationComponents: invalid day component: '${u}' in '${e}'`)}if(f){let d=f,h=d.match(/^(\d+(?:\.\d+)?)H/);h&&(s=parseFloat(h[1]),d=d.substring(h[0].length));let p=d.match(/^(\d+(?:\.\d+)?)M/);p&&(a=parseFloat(p[1]),d=d.substring(p[0].length));let y=d.match(/^(\d+(?:\.\d+)?)S$/);if(y&&(c=parseFloat(y[1]),d=d.substring(y[0].length)),d!=="")throw new Error(`parseDurationComponents: invalid time component: '${d}' in '${e}'`)}return{negative:t,days:i,hours:s,minutes:a,seconds:c}}};np.DateTimeParsing=a1});var z3=S(sp=>{"use strict";Object.defineProperty(sp,"__esModule",{value:!0});sp.DateTimeArithmetic=void 0;var un=Ae(),xe=De(),Je=ip(),o1=class{static{o(this,"DateTimeArithmetic")}static dateTimeDiff(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=new Date(r),a=new Date(i);if(isNaN(s.getTime()))throw new Error(`dateTimeDiff: invalid first dateTime: '${r}'`);if(isNaN(a.getTime()))throw new Error(`dateTimeDiff: invalid second dateTime: '${i}'`);let c=s.getTime()-a.getTime(),l=Je.DateTimeParsing.formatDayTimeDuration(c);return new xe.Literal(l,new un.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static dateTimeAdd(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=new Date(r);if(isNaN(s.getTime()))throw new Error(`dateTimeAdd: invalid dateTime: '${r}'`);let a=Je.DateTimeParsing.parseDayTimeDuration(i),c=s.getTime()+a,l=new Date(c);return new xe.Literal(l.toISOString(),new un.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static dateTimeSubtract(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=new Date(r);if(isNaN(s.getTime()))throw new Error(`dateTimeSubtract: invalid dateTime: '${r}'`);let a=Je.DateTimeParsing.parseDayTimeDuration(i),c=s.getTime()-a,l=new Date(c);return new xe.Literal(l.toISOString(),new un.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static dateAdd(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseXSDDate(r);if(s===null)throw new Error(`dateAdd: invalid date: '${r}'`);let a=Je.DateTimeParsing.parseDayTimeDuration(i),c=s.getTime()+a,l=new Date(c),u=l.getUTCFullYear(),f=String(l.getUTCMonth()+1).padStart(2,"0"),d=String(l.getUTCDate()).padStart(2,"0"),h=`${u}-${f}-${d}`;return new xe.Literal(h,new un.IRI("http://www.w3.org/2001/XMLSchema#date"))}static dateSubtract(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseXSDDate(r);if(s===null)throw new Error(`dateSubtract: invalid date: '${r}'`);let a=Je.DateTimeParsing.parseDayTimeDuration(i),c=s.getTime()-a,l=new Date(c),u=l.getUTCFullYear(),f=String(l.getUTCMonth()+1).padStart(2,"0"),d=String(l.getUTCDate()).padStart(2,"0"),h=`${u}-${f}-${d}`;return new xe.Literal(h,new un.IRI("http://www.w3.org/2001/XMLSchema#date"))}static dateTimeAddYearMonth(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=new Date(r);if(isNaN(s.getTime()))throw new Error(`dateTimeAddYearMonth: invalid dateTime: '${r}'`);let a=Je.DateTimeParsing.parseYearMonthDuration(i),c=s.getUTCDate();return s.setUTCMonth(s.getUTCMonth()+a),s.getUTCDate()!==c&&s.setUTCDate(0),new xe.Literal(s.toISOString(),new un.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static dateTimeSubtractYearMonth(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=new Date(r);if(isNaN(s.getTime()))throw new Error(`dateTimeSubtractYearMonth: invalid dateTime: '${r}'`);let a=Je.DateTimeParsing.parseYearMonthDuration(i),c=s.getUTCDate();return s.setUTCMonth(s.getUTCMonth()-a),s.getUTCDate()!==c&&s.setUTCDate(0),new xe.Literal(s.toISOString(),new un.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static dateAddYearMonth(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseXSDDate(r);if(s===null)throw new Error(`dateAddYearMonth: invalid date: '${r}'`);let a=Je.DateTimeParsing.parseYearMonthDuration(i),c=s.getUTCDate();s.setUTCMonth(s.getUTCMonth()+a),s.getUTCDate()!==c&&s.setUTCDate(0);let l=s.getUTCFullYear(),u=String(s.getUTCMonth()+1).padStart(2,"0"),f=String(s.getUTCDate()).padStart(2,"0"),d=`${l}-${u}-${f}`;return new xe.Literal(d,new un.IRI("http://www.w3.org/2001/XMLSchema#date"))}static dateSubtractYearMonth(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseXSDDate(r);if(s===null)throw new Error(`dateSubtractYearMonth: invalid date: '${r}'`);let a=Je.DateTimeParsing.parseYearMonthDuration(i),c=s.getUTCDate();s.setUTCMonth(s.getUTCMonth()-a),s.getUTCDate()!==c&&s.setUTCDate(0);let l=s.getUTCFullYear(),u=String(s.getUTCMonth()+1).padStart(2,"0"),f=String(s.getUTCDate()).padStart(2,"0"),d=`${l}-${u}-${f}`;return new xe.Literal(d,new un.IRI("http://www.w3.org/2001/XMLSchema#date"))}static durationAdd(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseDayTimeDuration(r),a=Je.DateTimeParsing.parseDayTimeDuration(i),c=Je.DateTimeParsing.formatDayTimeDuration(s+a);return new xe.Literal(c,new un.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static durationSubtract(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseDayTimeDuration(r),a=Je.DateTimeParsing.parseDayTimeDuration(i),c=Je.DateTimeParsing.formatDayTimeDuration(s-a);return new xe.Literal(c,new un.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static durationMultiply(e,t){let r=e instanceof xe.Literal?e.value:e,i=Je.DateTimeParsing.parseDayTimeDuration(r),s=Je.DateTimeParsing.formatDayTimeDuration(i*t);return new xe.Literal(s,new un.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static durationDivide(e,t){if(t===0)throw new Error("durationDivide: division by zero");let r=e instanceof xe.Literal?e.value:e,i=Je.DateTimeParsing.parseDayTimeDuration(r),s=Je.DateTimeParsing.formatDayTimeDuration(i/t);return new xe.Literal(s,new un.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static yearMonthDurationAdd(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseYearMonthDuration(r),a=Je.DateTimeParsing.parseYearMonthDuration(i),c=Je.DateTimeParsing.formatYearMonthDuration(s+a);return new xe.Literal(c,new un.IRI("http://www.w3.org/2001/XMLSchema#yearMonthDuration"))}static yearMonthDurationSubtract(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseYearMonthDuration(r),a=Je.DateTimeParsing.parseYearMonthDuration(i),c=Je.DateTimeParsing.formatYearMonthDuration(s-a);return new xe.Literal(c,new un.IRI("http://www.w3.org/2001/XMLSchema#yearMonthDuration"))}static durationToDays(e){let t=e instanceof xe.Literal?e.value:e;return Je.DateTimeParsing.parseDayTimeDuration(t)/(1440*60*1e3)}static durationToHours(e){let t=e instanceof xe.Literal?e.value:e;return Je.DateTimeParsing.parseDayTimeDuration(t)/(3600*1e3)}static durationToMinutes(e){let t=e instanceof xe.Literal?e.value:e;return Je.DateTimeParsing.parseDayTimeDuration(t)/(60*1e3)}static durationToSeconds(e){let t=e instanceof xe.Literal?e.value:e;return Je.DateTimeParsing.parseDayTimeDuration(t)/1e3}};sp.DateTimeArithmetic=o1});var H3=S(ap=>{"use strict";Object.defineProperty(ap,"__esModule",{value:!0});ap.DateTimeAccessors=void 0;var Gu=Ae(),kt=De(),Tt=ip(),c1=class{static{o(this,"DateTimeAccessors")}static year(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`YEAR: invalid date string '${e}'`);return t.getFullYear()}static month(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`MONTH: invalid date string '${e}'`);return t.getMonth()+1}static day(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`DAY: invalid date string '${e}'`);return t.getDate()}static hours(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`HOURS: invalid date string '${e}'`);return t.getHours()}static minutes(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`MINUTES: invalid date string '${e}'`);return t.getMinutes()}static seconds(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`SECONDS: invalid date string '${e}'`);return t.getSeconds()+t.getMilliseconds()/1e3}static durationDays(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseDurationComponents(t),i=Math.floor(r.days);return r.negative?-i:i}static durationHours(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseDurationComponents(t),i=Math.floor(r.hours);return r.negative?-i:i}static durationMinutes(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseDurationComponents(t),i=Math.floor(r.minutes);return r.negative?-i:i}static durationSeconds(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseDurationComponents(t);return r.negative?-r.seconds:r.seconds}static durationYears(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseYearMonthDurationComponents(t);return r.negative?-r.years:r.years}static durationMonths(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseYearMonthDurationComponents(t);return r.negative?-r.months:r.months}static timezone(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`TIMEZONE: invalid date string '${e}'`);let r;if(e.endsWith("Z"))r="PT0S";else{let i=e.match(/([+-]\d{2}):?(\d{2})$/);if(i){let s=parseInt(i[1],10),a=parseInt(i[2],10),c=s>=0?"":"-",l=Math.abs(s);a===0?r=`${c}PT${l}H`:r=`${c}PT${l}H${a}M`}else{let s=-t.getTimezoneOffset(),a=Math.floor(Math.abs(s)/60),c=Math.abs(s)%60,l=s>=0?"":"-";c===0?r=`${l}PT${a}H`:r=`${l}PT${a}H${c}M`}}return new kt.Literal(r,new Gu.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static tz(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`TZ: invalid date string '${e}'`);if(e.endsWith("Z"))return"Z";let r=e.match(/([+-]\d{2}:\d{2})$/);if(r)return r[1];let i=e.match(/([+-])(\d{2})(\d{2})$/);return i?`${i[1]}${i[2]}:${i[3]}`:""}static adjust(e,t){let r=e instanceof kt.Literal?e.value:e,i=new Date(r);if(isNaN(i.getTime()))throw new Error(`ADJUST: invalid dateTime: '${r}'`);if(t==null){let ae=i.getUTCFullYear(),$=String(i.getUTCMonth()+1).padStart(2,"0"),B=String(i.getUTCDate()).padStart(2,"0"),F=String(i.getUTCHours()).padStart(2,"0"),k=String(i.getUTCMinutes()).padStart(2,"0"),ee=String(i.getUTCSeconds()).padStart(2,"0"),Ke=i.getUTCMilliseconds(),at=`${ae}-${$}-${B}T${F}:${k}:${ee}`;return Ke>0&&(at+=`.${String(Ke).padStart(3,"0")}`),new kt.Literal(at,new Gu.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}let s=t instanceof kt.Literal?t.value:t,a=Tt.DateTimeParsing.parseDayTimeDuration(s),c=840*60*1e3;if(Math.abs(a)>c)throw new Error(`ADJUST: timezone offset out of range: '${s}'`);let l=i.getTime(),u=new Date(l+a),f=u.getUTCFullYear(),d=String(u.getUTCMonth()+1).padStart(2,"0"),h=String(u.getUTCDate()).padStart(2,"0"),p=String(u.getUTCHours()).padStart(2,"0"),y=String(u.getUTCMinutes()).padStart(2,"0"),b=String(u.getUTCSeconds()).padStart(2,"0"),w=u.getUTCMilliseconds(),v=a>=0?"+":"-",T=Math.floor(Math.abs(a)/(3600*1e3)),C=Math.floor(Math.abs(a)%(3600*1e3)/(60*1e3)),L=`${v}${String(T).padStart(2,"0")}:${String(C).padStart(2,"0")}`,V=`${f}-${d}-${h}T${p}:${y}:${b}`;return w>0&&(V+=`.${String(w).padStart(3,"0")}`),V+=L,new kt.Literal(V,new Gu.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static now(){return new Date().toISOString()}static dateBefore(e,t){let r=Tt.DateTimeParsing.parseDate(e),i=Tt.DateTimeParsing.parseDate(t);return r<i}static dateAfter(e,t){let r=Tt.DateTimeParsing.parseDate(e),i=Tt.DateTimeParsing.parseDate(t);return r>i}static dateInRange(e,t,r){let i=Tt.DateTimeParsing.parseDate(e),s=Tt.DateTimeParsing.parseDate(t),a=Tt.DateTimeParsing.parseDate(r);return i>=s&&i<=a}static compareDurations(e,t,r){let i=e instanceof kt.Literal?e.value:e,s=t instanceof kt.Literal?t.value:t,a=Tt.DateTimeParsing.parseDayTimeDuration(i),c=Tt.DateTimeParsing.parseDayTimeDuration(s);switch(r){case"=":return a===c;case"!=":return a!==c;case"<":return a<c;case">":return a>c;case"<=":return a<=c;case">=":return a>=c;default:throw new Error(`compareDurations: unknown operator: ${r}`)}}static dateDiffMinutes(e,t){let r=Tt.DateTimeParsing.parseDate(e),i=Tt.DateTimeParsing.parseDate(t),s=Math.abs(i-r);return Math.round(s/(1e3*60))}static dateDiffHours(e,t){let r=Tt.DateTimeParsing.parseDate(e),i=Tt.DateTimeParsing.parseDate(t),s=Math.abs(i-r);return Math.round(s/(1e3*60*60)*100)/100}static timeDiff(e,t){let r=e instanceof kt.Literal?e.value:e,i=t instanceof kt.Literal?t.value:t,s=Tt.DateTimeParsing.parseXSDTime(r),a=Tt.DateTimeParsing.parseXSDTime(i);if(s===null)throw new Error(`timeDiff: invalid first time: '${r}'`);if(a===null)throw new Error(`timeDiff: invalid second time: '${i}'`);let c=s-a,l=Tt.DateTimeParsing.formatDayTimeDuration(c);return new kt.Literal(l,new Gu.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static isDayTimeDuration(e){return e instanceof kt.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#dayTimeDuration":!1}static isDate(e){return e instanceof kt.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#date":!1}static isYearMonthDuration(e){return e instanceof kt.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#yearMonthDuration":!1}static isTime(e){return e instanceof kt.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#time":!1}static dateDiff(e,t){let r=e instanceof kt.Literal?e.value:e,i=t instanceof kt.Literal?t.value:t,s=Tt.DateTimeParsing.parseXSDDate(r),a=Tt.DateTimeParsing.parseXSDDate(i);if(s===null)throw new Error(`dateDiff: invalid first date: '${r}'`);if(a===null)throw new Error(`dateDiff: invalid second date: '${i}'`);let c=s.getTime()-a.getTime(),l=Math.round(c/(1440*60*1e3)),u=Tt.DateTimeParsing.formatDateDuration(l);return new kt.Literal(u,new Gu.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}};ap.DateTimeAccessors=c1});var cp=S(op=>{"use strict";Object.defineProperty(op,"__esModule",{value:!0});op.DateTimeFunctions=void 0;var Vc=ip(),lr=z3(),gt=H3(),l1=class{static{o(this,"DateTimeFunctions")}static parseDate(e){return Vc.DateTimeParsing.parseDate(e)}static parseDayTimeDuration(e){return Vc.DateTimeParsing.parseDayTimeDuration(e)}static formatDayTimeDuration(e){return Vc.DateTimeParsing.formatDayTimeDuration(e)}static xsdDayTimeDuration(e){return Vc.DateTimeParsing.xsdDayTimeDuration(e)}static parseYearMonthDuration(e){return Vc.DateTimeParsing.parseYearMonthDuration(e)}static formatYearMonthDuration(e){return Vc.DateTimeParsing.formatYearMonthDuration(e)}static year(e){return gt.DateTimeAccessors.year(e)}static month(e){return gt.DateTimeAccessors.month(e)}static day(e){return gt.DateTimeAccessors.day(e)}static hours(e){return gt.DateTimeAccessors.hours(e)}static minutes(e){return gt.DateTimeAccessors.minutes(e)}static seconds(e){return gt.DateTimeAccessors.seconds(e)}static durationDays(e){return gt.DateTimeAccessors.durationDays(e)}static durationHours(e){return gt.DateTimeAccessors.durationHours(e)}static durationMinutes(e){return gt.DateTimeAccessors.durationMinutes(e)}static durationSeconds(e){return gt.DateTimeAccessors.durationSeconds(e)}static durationYears(e){return gt.DateTimeAccessors.durationYears(e)}static durationMonths(e){return gt.DateTimeAccessors.durationMonths(e)}static timezone(e){return gt.DateTimeAccessors.timezone(e)}static tz(e){return gt.DateTimeAccessors.tz(e)}static adjust(e,t){return gt.DateTimeAccessors.adjust(e,t)}static now(){return gt.DateTimeAccessors.now()}static dateBefore(e,t){return gt.DateTimeAccessors.dateBefore(e,t)}static dateAfter(e,t){return gt.DateTimeAccessors.dateAfter(e,t)}static dateInRange(e,t,r){return gt.DateTimeAccessors.dateInRange(e,t,r)}static compareDurations(e,t,r){return gt.DateTimeAccessors.compareDurations(e,t,r)}static dateDiffMinutes(e,t){return gt.DateTimeAccessors.dateDiffMinutes(e,t)}static dateDiffHours(e,t){return gt.DateTimeAccessors.dateDiffHours(e,t)}static timeDiff(e,t){return gt.DateTimeAccessors.timeDiff(e,t)}static dateDiff(e,t){return gt.DateTimeAccessors.dateDiff(e,t)}static isDayTimeDuration(e){return gt.DateTimeAccessors.isDayTimeDuration(e)}static isDate(e){return gt.DateTimeAccessors.isDate(e)}static isYearMonthDuration(e){return gt.DateTimeAccessors.isYearMonthDuration(e)}static isTime(e){return gt.DateTimeAccessors.isTime(e)}static dateTimeDiff(e,t){return lr.DateTimeArithmetic.dateTimeDiff(e,t)}static dateTimeAdd(e,t){return lr.DateTimeArithmetic.dateTimeAdd(e,t)}static dateTimeSubtract(e,t){return lr.DateTimeArithmetic.dateTimeSubtract(e,t)}static dateAdd(e,t){return lr.DateTimeArithmetic.dateAdd(e,t)}static dateSubtract(e,t){return lr.DateTimeArithmetic.dateSubtract(e,t)}static dateTimeAddYearMonth(e,t){return lr.DateTimeArithmetic.dateTimeAddYearMonth(e,t)}static dateTimeSubtractYearMonth(e,t){return lr.DateTimeArithmetic.dateTimeSubtractYearMonth(e,t)}static dateAddYearMonth(e,t){return lr.DateTimeArithmetic.dateAddYearMonth(e,t)}static dateSubtractYearMonth(e,t){return lr.DateTimeArithmetic.dateSubtractYearMonth(e,t)}static durationAdd(e,t){return lr.DateTimeArithmetic.durationAdd(e,t)}static durationSubtract(e,t){return lr.DateTimeArithmetic.durationSubtract(e,t)}static durationMultiply(e,t){return lr.DateTimeArithmetic.durationMultiply(e,t)}static durationDivide(e,t){return lr.DateTimeArithmetic.durationDivide(e,t)}static yearMonthDurationAdd(e,t){return lr.DateTimeArithmetic.yearMonthDurationAdd(e,t)}static yearMonthDurationSubtract(e,t){return lr.DateTimeArithmetic.yearMonthDurationSubtract(e,t)}static durationToDays(e){return lr.DateTimeArithmetic.durationToDays(e)}static durationToHours(e){return lr.DateTimeArithmetic.durationToHours(e)}static durationToMinutes(e){return lr.DateTimeArithmetic.durationToMinutes(e)}static durationToSeconds(e){return lr.DateTimeArithmetic.durationToSeconds(e)}};op.DateTimeFunctions=l1});var Q3=S(up=>{"use strict";Object.defineProperty(up,"__esModule",{value:!0});up.LogicalFunctions=void 0;var a9=Ae(),Uc=De(),o9=Vt(),lp=cp(),u1=class n{static{o(this,"LogicalFunctions")}static compare(e,t,r){if(n.isDayTimeDurationValue(e)&&n.isDayTimeDurationValue(t))return lp.DateTimeFunctions.compareDurations(e instanceof Uc.Literal?e:String(e),t instanceof Uc.Literal?t:String(t),r);if(n.isDayTimeDurationValue(e)&&typeof t=="string"&&/^-?P/.test(t))return lp.DateTimeFunctions.compareDurations(e instanceof Uc.Literal?e:String(e),t,r);if(typeof e=="string"&&/^-?P/.test(e)&&n.isDayTimeDurationValue(t))return lp.DateTimeFunctions.compareDurations(e,t instanceof Uc.Literal?t:String(t),r);let i=n.toComparableValue(e),s=n.toComparableValue(t);switch(r){case"=":return i===s;case"!=":return i!==s;case"<":return i<s;case">":return i>s;case"<=":return i<=s;case">=":return i>=s;default:throw new Error(`Unknown comparison operator: ${r}`)}}static isDayTimeDurationValue(e){return e instanceof Uc.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#dayTimeDuration":!1}static toComparableValue(e){if(typeof e=="string"||typeof e=="number")return e;if(e instanceof Uc.Literal){let t=e.datatype?.value;if(t?.includes("#integer")||t?.includes("#decimal")||t?.includes("#double")){let r=parseFloat(e.value);if(!isNaN(r))return r}if(t==="http://www.w3.org/2001/XMLSchema#dayTimeDuration")try{return lp.DateTimeFunctions.parseDayTimeDuration(e.value)}catch{return e.value}return e.value}return e instanceof a9.IRI?e.value:e instanceof o9.BlankNode?e.id:String(e)}static logicalAnd(e){return e.every(t=>t===!0)}static logicalOr(e){return e.some(t=>t===!0)}static logicalNot(e){return!e}static coalesce(e){for(let t of e)if(t!=null)return t}static if(e,t,r){return e?t:r}};up.LogicalFunctions=u1});var K3=S(fp=>{"use strict";Object.defineProperty(fp,"__esModule",{value:!0});fp.RDFTermFunctions=void 0;var Nr=Ae(),bt=De(),mi=Vt(),Bc=Au(),f1=En(),d1=class n{static{o(this,"RDFTermFunctions")}static datatype(e){if(e===void 0)throw new Error("DATATYPE: argument is undefined");if(e instanceof bt.Literal)return e.datatype?e.datatype:e.language?new Nr.IRI("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"):new Nr.IRI("http://www.w3.org/2001/XMLSchema#string");throw new Error("DATATYPE: argument must be a literal")}static bound(e){return e!==void 0}static isIRI(e){return e===void 0?!1:e instanceof Nr.IRI}static isBlank(e){return e===void 0?!1:e instanceof mi.BlankNode}static isLiteral(e){return e===void 0?!1:e instanceof bt.Literal}static isTriple(e){return e===void 0?!1:e instanceof Bc.QuotedTriple}static hasLangdir(e){return e===void 0||!(e instanceof bt.Literal)?!1:!!e.language&&!!e.direction}static isNumeric(e){if(e===void 0||!(e instanceof bt.Literal))return!1;let t=e.datatype?.value;return t?["http://www.w3.org/2001/XMLSchema#integer","http://www.w3.org/2001/XMLSchema#decimal","http://www.w3.org/2001/XMLSchema#float","http://www.w3.org/2001/XMLSchema#double","http://www.w3.org/2001/XMLSchema#nonPositiveInteger","http://www.w3.org/2001/XMLSchema#negativeInteger","http://www.w3.org/2001/XMLSchema#long","http://www.w3.org/2001/XMLSchema#int","http://www.w3.org/2001/XMLSchema#short","http://www.w3.org/2001/XMLSchema#byte","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","http://www.w3.org/2001/XMLSchema#unsignedLong","http://www.w3.org/2001/XMLSchema#unsignedInt","http://www.w3.org/2001/XMLSchema#unsignedShort","http://www.w3.org/2001/XMLSchema#unsignedByte","http://www.w3.org/2001/XMLSchema#positiveInteger"].includes(t):!1}static xsdDateTime(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`xsd:dateTime: invalid date string '${e}'`);return new bt.Literal(t.toISOString(),new Nr.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static xsdInteger(e){let t=parseInt(e,10);if(isNaN(t))throw new Error(`xsd:integer: cannot convert '${e}' to integer`);return new bt.Literal(String(t),new Nr.IRI("http://www.w3.org/2001/XMLSchema#integer"))}static xsdDecimal(e){let t=parseFloat(e);if(isNaN(t))throw new Error(`xsd:decimal: cannot convert '${e}' to decimal`);return new bt.Literal(String(t),new Nr.IRI("http://www.w3.org/2001/XMLSchema#decimal"))}static sameTerm(e,t){if(e===void 0&&t===void 0)return!0;if(e===void 0||t===void 0||e.constructor!==t.constructor)return!1;if(e instanceof Nr.IRI&&t instanceof Nr.IRI)return e.value===t.value;if(e instanceof mi.BlankNode&&t instanceof mi.BlankNode)return e.id===t.id;if(e instanceof bt.Literal&&t instanceof bt.Literal){if(e.value!==t.value||e.language!==t.language)return!1;let r=e.datatype?.value,i=t.datatype?.value;return r===i}return!1}static iri(e){if(e===void 0)throw new Error("IRI: argument is undefined");if(e instanceof Nr.IRI)return e;if(e instanceof bt.Literal)return new Nr.IRI(e.value);throw e instanceof mi.BlankNode?new Error("IRI: cannot convert blank node to IRI"):new Error("IRI: unsupported term type")}static uri(e){return n.iri(e)}static bnode(e){if(e===void 0){let t=`b${(0,f1.v4)().replace(/-/g,"").substring(0,12)}`;return new mi.BlankNode(t)}if(e instanceof bt.Literal)return new mi.BlankNode(e.value);if(e instanceof mi.BlankNode)return e;throw new Error("BNODE: argument must be a string literal or omitted")}static strdt(e,t){if(e===void 0)throw new Error("STRDT: lexical form is undefined");if(t===void 0)throw new Error("STRDT: datatype IRI is undefined");let r;if(e instanceof bt.Literal){if(e.language)throw new Error("STRDT: lexical form must not have a language tag");r=e.value}else if(typeof e=="string")r=e;else throw new Error("STRDT: lexical form must be a string literal");let i;if(t instanceof Nr.IRI)i=t;else if(t instanceof bt.Literal)i=new Nr.IRI(t.value);else throw new Error("STRDT: datatype must be an IRI");return new bt.Literal(r,i)}static strlang(e,t){if(e===void 0)throw new Error("STRLANG: lexical form is undefined");if(t===void 0)throw new Error("STRLANG: language tag is undefined");let r;if(e instanceof bt.Literal){if(e.language)throw new Error("STRLANG: lexical form must not already have a language tag");r=e.value}else if(typeof e=="string")r=e;else throw new Error("STRLANG: lexical form must be a string literal");let i;if(t instanceof bt.Literal)i=t.value;else if(typeof t=="string")i=t;else throw new Error("STRLANG: language tag must be a string literal");if(i==="")throw new Error("STRLANG: language tag cannot be empty");return new bt.Literal(r,void 0,i)}static strlangdir(e,t,r){if(e===void 0)throw new Error("STRLANGDIR: lexical form is undefined");if(t===void 0)throw new Error("STRLANGDIR: language tag is undefined");if(r===void 0)throw new Error("STRLANGDIR: direction is undefined");let i;if(e instanceof bt.Literal){if(e.language)throw new Error("STRLANGDIR: lexical form must not already have a language tag");i=e.value}else if(typeof e=="string")i=e;else throw new Error("STRLANGDIR: lexical form must be a string literal");let s;if(t instanceof bt.Literal)s=t.value;else if(typeof t=="string")s=t;else throw new Error("STRLANGDIR: language tag must be a string literal");if(s==="")throw new Error("STRLANGDIR: language tag cannot be empty");let a;if(r instanceof bt.Literal)a=r.value.toLowerCase();else throw new Error("STRLANGDIR: direction must be a string literal");if(a!=="ltr"&&a!=="rtl")throw new Error(`STRLANGDIR: invalid direction '${a}'. Must be 'ltr' or 'rtl'`);return new bt.Literal(i,void 0,s,a)}static uuid(){let e=(0,f1.v4)();return new Nr.IRI(`urn:uuid:${e}`)}static struuid(){let e=(0,f1.v4)();return new bt.Literal(e)}static triple(e,t,r){if(e===void 0)throw new Error("TRIPLE: subject is undefined");if(t===void 0)throw new Error("TRIPLE: predicate is undefined");if(r===void 0)throw new Error("TRIPLE: object is undefined");if(e instanceof bt.Literal)throw new Error("TRIPLE: subject must be IRI, BlankNode, or QuotedTriple, got Literal");if(!(t instanceof Nr.IRI)){let c=t instanceof bt.Literal?"Literal":t instanceof mi.BlankNode?"BlankNode":t instanceof Bc.QuotedTriple?"QuotedTriple":typeof t;throw new Error(`TRIPLE: predicate must be IRI, got ${c}`)}let i=e,s=t,a=r;return new Bc.QuotedTriple(i,s,a)}static subject(e){if(e===void 0)throw new Error("SUBJECT: argument is undefined");if(!(e instanceof Bc.QuotedTriple)){let t=e instanceof Nr.IRI?"IRI":e instanceof bt.Literal?"Literal":e instanceof mi.BlankNode?"BlankNode":typeof e;throw new Error(`SUBJECT: argument must be QuotedTriple, got ${t}`)}return e.subject}static predicate(e){if(e===void 0)throw new Error("PREDICATE: argument is undefined");if(!(e instanceof Bc.QuotedTriple)){let t=e instanceof Nr.IRI?"IRI":e instanceof bt.Literal?"Literal":e instanceof mi.BlankNode?"BlankNode":typeof e;throw new Error(`PREDICATE: argument must be QuotedTriple, got ${t}`)}return e.predicate}static object(e){if(e===void 0)throw new Error("OBJECT: argument is undefined");if(!(e instanceof Bc.QuotedTriple)){let t=e instanceof Nr.IRI?"IRI":e instanceof bt.Literal?"Literal":e instanceof mi.BlankNode?"BlankNode":typeof e;throw new Error(`OBJECT: argument must be QuotedTriple, got ${t}`)}return e.object}};fp.RDFTermFunctions=d1});var Y3=S(dp=>{"use strict";Object.defineProperty(dp,"__esModule",{value:!0});dp.HashFunctions=void 0;var h1=class{static{o(this,"HashFunctions")}static md5(e){return require("crypto").createHash("md5").update(e).digest("hex")}static sha1(e){return require("crypto").createHash("sha1").update(e).digest("hex")}static sha256(e){return require("crypto").createHash("sha256").update(e).digest("hex")}static sha384(e){return require("crypto").createHash("sha384").update(e).digest("hex")}static sha512(e){return require("crypto").createHash("sha512").update(e).digest("hex")}};dp.HashFunctions=h1});var pp=S(hp=>{"use strict";Object.defineProperty(hp,"__esModule",{value:!0});hp.BuiltInFunctions=void 0;var ur=W3(),Na=G3(),oe=cp(),qc=Q3(),Pt=K3(),zu=Y3(),p1=class{static{o(this,"BuiltInFunctions")}static str(...e){return ur.StringFunctions.str(...e)}static lang(...e){return ur.StringFunctions.lang(...e)}static langdir(...e){return ur.StringFunctions.langdir(...e)}static langMatches(...e){return ur.StringFunctions.langMatches(...e)}static regex(...e){return ur.StringFunctions.regex(...e)}static contains(...e){return ur.StringFunctions.contains(...e)}static strStarts(...e){return ur.StringFunctions.strStarts(...e)}static strEnds(...e){return ur.StringFunctions.strEnds(...e)}static strlen(...e){return ur.StringFunctions.strlen(...e)}static ucase(...e){return ur.StringFunctions.ucase(...e)}static lcase(...e){return ur.StringFunctions.lcase(...e)}static substr(...e){return ur.StringFunctions.substr(...e)}static strBefore(...e){return ur.StringFunctions.strBefore(...e)}static strAfter(...e){return ur.StringFunctions.strAfter(...e)}static concat(...e){return ur.StringFunctions.concat(...e)}static replace(...e){return ur.StringFunctions.replace(...e)}static encodeForUri(...e){return ur.StringFunctions.encodeForUri(...e)}static normalize(...e){return ur.StringFunctions.normalize(...e)}static fold(...e){return ur.StringFunctions.fold(...e)}static abs(...e){return Na.MathFunctions.abs(...e)}static round(...e){return Na.MathFunctions.round(...e)}static ceil(...e){return Na.MathFunctions.ceil(...e)}static floor(...e){return Na.MathFunctions.floor(...e)}static rand(){return Na.MathFunctions.rand()}static msToMinutes(...e){return Na.MathFunctions.msToMinutes(...e)}static msToHours(...e){return Na.MathFunctions.msToHours(...e)}static msToSeconds(...e){return Na.MathFunctions.msToSeconds(...e)}static parseDate(...e){return oe.DateTimeFunctions.parseDate(...e)}static dateBefore(...e){return oe.DateTimeFunctions.dateBefore(...e)}static dateAfter(...e){return oe.DateTimeFunctions.dateAfter(...e)}static dateInRange(...e){return oe.DateTimeFunctions.dateInRange(...e)}static dateDiffMinutes(...e){return oe.DateTimeFunctions.dateDiffMinutes(...e)}static dateDiffHours(...e){return oe.DateTimeFunctions.dateDiffHours(...e)}static year(...e){return oe.DateTimeFunctions.year(...e)}static month(...e){return oe.DateTimeFunctions.month(...e)}static day(...e){return oe.DateTimeFunctions.day(...e)}static hours(...e){return oe.DateTimeFunctions.hours(...e)}static minutes(...e){return oe.DateTimeFunctions.minutes(...e)}static seconds(...e){return oe.DateTimeFunctions.seconds(...e)}static timezone(...e){return oe.DateTimeFunctions.timezone(...e)}static tz(...e){return oe.DateTimeFunctions.tz(...e)}static now(){return oe.DateTimeFunctions.now()}static parseDayTimeDuration(...e){return oe.DateTimeFunctions.parseDayTimeDuration(...e)}static formatDayTimeDuration(...e){return oe.DateTimeFunctions.formatDayTimeDuration(...e)}static xsdDayTimeDuration(...e){return oe.DateTimeFunctions.xsdDayTimeDuration(...e)}static compareDurations(...e){return oe.DateTimeFunctions.compareDurations(...e)}static isDayTimeDuration(...e){return oe.DateTimeFunctions.isDayTimeDuration(...e)}static isDate(...e){return oe.DateTimeFunctions.isDate(...e)}static dateDiff(...e){return oe.DateTimeFunctions.dateDiff(...e)}static dateTimeDiff(...e){return oe.DateTimeFunctions.dateTimeDiff(...e)}static dateTimeAdd(...e){return oe.DateTimeFunctions.dateTimeAdd(...e)}static dateTimeSubtract(...e){return oe.DateTimeFunctions.dateTimeSubtract(...e)}static dateAdd(...e){return oe.DateTimeFunctions.dateAdd(...e)}static dateSubtract(...e){return oe.DateTimeFunctions.dateSubtract(...e)}static parseYearMonthDuration(...e){return oe.DateTimeFunctions.parseYearMonthDuration(...e)}static isYearMonthDuration(...e){return oe.DateTimeFunctions.isYearMonthDuration(...e)}static dateTimeAddYearMonth(...e){return oe.DateTimeFunctions.dateTimeAddYearMonth(...e)}static dateTimeSubtractYearMonth(...e){return oe.DateTimeFunctions.dateTimeSubtractYearMonth(...e)}static dateAddYearMonth(...e){return oe.DateTimeFunctions.dateAddYearMonth(...e)}static dateSubtractYearMonth(...e){return oe.DateTimeFunctions.dateSubtractYearMonth(...e)}static durationAdd(...e){return oe.DateTimeFunctions.durationAdd(...e)}static durationSubtract(...e){return oe.DateTimeFunctions.durationSubtract(...e)}static durationMultiply(...e){return oe.DateTimeFunctions.durationMultiply(...e)}static durationDivide(...e){return oe.DateTimeFunctions.durationDivide(...e)}static formatYearMonthDuration(...e){return oe.DateTimeFunctions.formatYearMonthDuration(...e)}static yearMonthDurationAdd(...e){return oe.DateTimeFunctions.yearMonthDurationAdd(...e)}static yearMonthDurationSubtract(...e){return oe.DateTimeFunctions.yearMonthDurationSubtract(...e)}static durationYears(...e){return oe.DateTimeFunctions.durationYears(...e)}static durationMonths(...e){return oe.DateTimeFunctions.durationMonths(...e)}static durationToDays(...e){return oe.DateTimeFunctions.durationToDays(...e)}static durationToHours(...e){return oe.DateTimeFunctions.durationToHours(...e)}static durationToMinutes(...e){return oe.DateTimeFunctions.durationToMinutes(...e)}static durationToSeconds(...e){return oe.DateTimeFunctions.durationToSeconds(...e)}static durationDays(...e){return oe.DateTimeFunctions.durationDays(...e)}static durationHours(...e){return oe.DateTimeFunctions.durationHours(...e)}static durationMinutes(...e){return oe.DateTimeFunctions.durationMinutes(...e)}static durationSeconds(...e){return oe.DateTimeFunctions.durationSeconds(...e)}static adjust(...e){return oe.DateTimeFunctions.adjust(...e)}static isTime(...e){return oe.DateTimeFunctions.isTime(...e)}static timeDiff(...e){return oe.DateTimeFunctions.timeDiff(...e)}static compare(...e){return qc.LogicalFunctions.compare(...e)}static logicalAnd(...e){return qc.LogicalFunctions.logicalAnd(...e)}static logicalOr(...e){return qc.LogicalFunctions.logicalOr(...e)}static logicalNot(...e){return qc.LogicalFunctions.logicalNot(...e)}static coalesce(...e){return qc.LogicalFunctions.coalesce(...e)}static if(...e){return qc.LogicalFunctions.if(...e)}static datatype(...e){return Pt.RDFTermFunctions.datatype(...e)}static bound(...e){return Pt.RDFTermFunctions.bound(...e)}static isIRI(...e){return Pt.RDFTermFunctions.isIRI(...e)}static isBlank(...e){return Pt.RDFTermFunctions.isBlank(...e)}static isLiteral(...e){return Pt.RDFTermFunctions.isLiteral(...e)}static isTriple(...e){return Pt.RDFTermFunctions.isTriple(...e)}static isNumeric(...e){return Pt.RDFTermFunctions.isNumeric(...e)}static hasLangdir(...e){return Pt.RDFTermFunctions.hasLangdir(...e)}static sameTerm(...e){return Pt.RDFTermFunctions.sameTerm(...e)}static iri(...e){return Pt.RDFTermFunctions.iri(...e)}static uri(...e){return Pt.RDFTermFunctions.uri(...e)}static bnode(...e){return Pt.RDFTermFunctions.bnode(...e)}static strdt(...e){return Pt.RDFTermFunctions.strdt(...e)}static strlang(...e){return Pt.RDFTermFunctions.strlang(...e)}static strlangdir(...e){return Pt.RDFTermFunctions.strlangdir(...e)}static uuid(){return Pt.RDFTermFunctions.uuid()}static struuid(){return Pt.RDFTermFunctions.struuid()}static xsdDateTime(...e){return Pt.RDFTermFunctions.xsdDateTime(...e)}static xsdInteger(...e){return Pt.RDFTermFunctions.xsdInteger(...e)}static xsdDecimal(...e){return Pt.RDFTermFunctions.xsdDecimal(...e)}static triple(...e){return Pt.RDFTermFunctions.triple(...e)}static subject(...e){return Pt.RDFTermFunctions.subject(...e)}static predicate(...e){return Pt.RDFTermFunctions.predicate(...e)}static object(...e){return Pt.RDFTermFunctions.object(...e)}static md5(...e){return zu.HashFunctions.md5(...e)}static sha1(...e){return zu.HashFunctions.sha1(...e)}static sha256(...e){return zu.HashFunctions.sha256(...e)}static sha384(...e){return zu.HashFunctions.sha384(...e)}static sha512(...e){return zu.HashFunctions.sha512(...e)}};hp.BuiltInFunctions=p1});var Hu=S(us=>{"use strict";Object.defineProperty(us,"__esModule",{value:!0});us.ExoQLBudgetExceededError=us.ExoQLCycleError=us.ExoQLEvalDisabledError=us.ExoQLForbiddenKeywordError=void 0;var m1=class extends Error{static{o(this,"ExoQLForbiddenKeywordError")}constructor(e,t){super(t??`ExoQLForbiddenKeywordError: keyword "${e}" is not permitted by the exoql__Query AST allowlist`),this.name="ExoQLForbiddenKeywordError",this.keyword=e}};us.ExoQLForbiddenKeywordError=m1;var g1=class extends Error{static{o(this,"ExoQLEvalDisabledError")}constructor(e){super(e??"ExoQLEvalDisabledError: exoql.eval.enabled is false (default). Flip the feature flag to opt in."),this.name="ExoQLEvalDisabledError"}};us.ExoQLEvalDisabledError=g1;var y1=class extends Error{static{o(this,"ExoQLCycleError")}constructor(e,t){super(t??`ExoQLCycleError: cycle detected in nested exo:eval invocations: ${e.join(" \u2192 ")}`),this.name="ExoQLCycleError",this.path=e}};us.ExoQLCycleError=y1;var _1=class extends Error{static{o(this,"ExoQLBudgetExceededError")}constructor(e,t,r,i){super(i??`ExoQLBudgetExceededError: ${e} budget exceeded (limit=${t}, observed=${r})`),this.name="ExoQLBudgetExceededError",this.budget=e,this.limit=t,this.observed=r}};us.ExoQLBudgetExceededError=_1});var sA=S(j=>{"use strict";Object.defineProperty(j,"__esModule",{value:!0});j.functionHandlers=void 0;var M=pp();j.functionHandlers=new Map;j.functionHandlers.set("str",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.str(t)});j.functionHandlers.set("lang",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.lang(t)});j.functionHandlers.set("langmatches",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.langMatches(t,r)});j.functionHandlers.set("contains",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.contains(t,r)});j.functionHandlers.set("strstarts",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.strStarts(t,r)});j.functionHandlers.set("strends",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.strEnds(t,r)});j.functionHandlers.set("strlen",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.strlen(t)});j.functionHandlers.set("ucase",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.ucase(t)});j.functionHandlers.set("lcase",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.lcase(t)});j.functionHandlers.set("substr",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=Number(e.evaluateExpression(n[1],e.solution));if(n[2]){let i=Number(e.evaluateExpression(n[2],e.solution));return M.BuiltInFunctions.substr(t,r,i)}return M.BuiltInFunctions.substr(t,r)});j.functionHandlers.set("strbefore",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.strBefore(t,r)});j.functionHandlers.set("strafter",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.strAfter(t,r)});j.functionHandlers.set("concat",(n,e)=>{let t=n.map(r=>e.getStringValue(e.evaluateExpression(r,e.solution)));return M.BuiltInFunctions.concat(...t)});j.functionHandlers.set("replace",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=e.getStringValue(e.evaluateExpression(n[2],e.solution)),s=n[3]?e.getStringValue(e.evaluateExpression(n[3],e.solution)):void 0;return M.BuiltInFunctions.replace(t,r,i,s)});j.functionHandlers.set("regex",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=n[2]?e.getStringValue(e.evaluateExpression(n[2],e.solution)):void 0;return M.BuiltInFunctions.regex(t,r,i)});j.functionHandlers.set("encode_for_uri",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.encodeForUri(t)});j.functionHandlers.set("datatype",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.datatype(t).value});j.functionHandlers.set("bound",(n,e)=>{let t=n[0];if(t.type==="variable"&&t.name){let r=e.solution.get(t.name);return M.BuiltInFunctions.bound(r)}return!0});var X3=o((n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.isIRI(t)},"isIriHandler");j.functionHandlers.set("isiri",X3);j.functionHandlers.set("isuri",X3);j.functionHandlers.set("isblank",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.isBlank(t)});j.functionHandlers.set("isliteral",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.isLiteral(t)});j.functionHandlers.set("isnumeric",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.isNumeric(t)});j.functionHandlers.set("haslangdir",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.hasLangdir(t)});j.functionHandlers.set("istriple",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.isTriple(t)});j.functionHandlers.set("sameterm",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution),r=e.getTermFromExpression(n[1],e.solution);return M.BuiltInFunctions.sameTerm(t,r)});j.functionHandlers.set("abs",(n,e)=>{let t=Number(e.getStringValue(e.evaluateExpression(n[0],e.solution)));return M.BuiltInFunctions.abs(t)});j.functionHandlers.set("round",(n,e)=>{let t=Number(e.getStringValue(e.evaluateExpression(n[0],e.solution)));return M.BuiltInFunctions.round(t)});j.functionHandlers.set("ceil",(n,e)=>{let t=Number(e.getStringValue(e.evaluateExpression(n[0],e.solution)));return M.BuiltInFunctions.ceil(t)});j.functionHandlers.set("floor",(n,e)=>{let t=Number(e.getStringValue(e.evaluateExpression(n[0],e.solution)));return M.BuiltInFunctions.floor(t)});j.functionHandlers.set("rand",()=>M.BuiltInFunctions.rand());j.functionHandlers.set("parsedate",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.parseDate(t)});j.functionHandlers.set("datebefore",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.dateBefore(t,r)});j.functionHandlers.set("dateafter",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.dateAfter(t,r)});j.functionHandlers.set("dateinrange",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=e.getStringValue(e.evaluateExpression(n[2],e.solution));return M.BuiltInFunctions.dateInRange(t,r,i)});j.functionHandlers.set("datediffminutes",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.dateDiffMinutes(t,r)});j.functionHandlers.set("datediffhours",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.dateDiffHours(t,r)});var Wc=o((n,e,t)=>(r,i)=>{let s=i.evaluateExpression(r[0],i.solution);return e&&i.isYearMonthDurationValue(s)?e(s):t&&i.isDayTimeDurationValue(s)?t(s):n(i.getStringValue(s))},"createDateTimeAccessor"),J3=Wc(M.BuiltInFunctions.year.bind(M.BuiltInFunctions),M.BuiltInFunctions.durationYears.bind(M.BuiltInFunctions),null);j.functionHandlers.set("year",J3);j.functionHandlers.set("years",J3);var Z3=Wc(M.BuiltInFunctions.month.bind(M.BuiltInFunctions),M.BuiltInFunctions.durationMonths.bind(M.BuiltInFunctions),null);j.functionHandlers.set("month",Z3);j.functionHandlers.set("months",Z3);var eA=Wc(M.BuiltInFunctions.day.bind(M.BuiltInFunctions),null,M.BuiltInFunctions.durationDays.bind(M.BuiltInFunctions));j.functionHandlers.set("day",eA);j.functionHandlers.set("days",eA);j.functionHandlers.set("hours",Wc(M.BuiltInFunctions.hours.bind(M.BuiltInFunctions),null,M.BuiltInFunctions.durationHours.bind(M.BuiltInFunctions)));j.functionHandlers.set("minutes",Wc(M.BuiltInFunctions.minutes.bind(M.BuiltInFunctions),null,M.BuiltInFunctions.durationMinutes.bind(M.BuiltInFunctions)));j.functionHandlers.set("seconds",Wc(M.BuiltInFunctions.seconds.bind(M.BuiltInFunctions),null,M.BuiltInFunctions.durationSeconds.bind(M.BuiltInFunctions)));j.functionHandlers.set("timezone",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.timezone(t)});j.functionHandlers.set("tz",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.tz(t)});j.functionHandlers.set("adjust",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution),r=n.length>1?e.evaluateExpression(n[1],e.solution):void 0;return M.BuiltInFunctions.adjust(t,r)});j.functionHandlers.set("now",()=>M.BuiltInFunctions.now());var tA=o((n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.xsdDateTime(e.getStringValue(t))},"dateTimeHandler");j.functionHandlers.set("datetime",tA);j.functionHandlers.set("xsd:datetime",tA);var rA=o((n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.xsdInteger(e.getStringValue(t))},"integerHandler");j.functionHandlers.set("integer",rA);j.functionHandlers.set("xsd:integer",rA);var nA=o((n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.xsdDecimal(e.getStringValue(t))},"decimalHandler");j.functionHandlers.set("decimal",nA);j.functionHandlers.set("xsd:decimal",nA);var iA=o((n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.xsdDayTimeDuration(e.getStringValue(t))},"dayTimeDurationHandler");j.functionHandlers.set("daytimeduration",iA);j.functionHandlers.set("xsd:daytimeduration",iA);j.functionHandlers.set("durationtodays",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationToDays(t)});j.functionHandlers.set("durationtohours",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationToHours(t)});j.functionHandlers.set("durationtominutes",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationToMinutes(t)});j.functionHandlers.set("durationtoseconds",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationToSeconds(t)});j.functionHandlers.set("durationdays",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationDays(t)});j.functionHandlers.set("durationhours",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationHours(t)});j.functionHandlers.set("durationminutes",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationMinutes(t)});j.functionHandlers.set("durationseconds",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationSeconds(t)});j.functionHandlers.set("durationyears",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationYears(t)});j.functionHandlers.set("durationmonths",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationMonths(t)});j.functionHandlers.set("datetimediff",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution),r=e.evaluateExpression(n[1],e.solution);return M.BuiltInFunctions.dateTimeDiff(t,r)});j.functionHandlers.set("datetimeadd",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution),r=e.evaluateExpression(n[1],e.solution);return M.BuiltInFunctions.dateTimeAdd(t,r)});j.functionHandlers.set("datetimesubtract",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution),r=e.evaluateExpression(n[1],e.solution);return M.BuiltInFunctions.dateTimeSubtract(t,r)});j.functionHandlers.set("mstominutes",(n,e)=>{let t=Number(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.msToMinutes(t)});j.functionHandlers.set("mstohours",(n,e)=>{let t=Number(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.msToHours(t)});j.functionHandlers.set("mstoseconds",(n,e)=>{let t=Number(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.msToSeconds(t)});j.functionHandlers.set("md5",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.md5(t)});j.functionHandlers.set("sha1",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.sha1(t)});j.functionHandlers.set("sha256",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.sha256(t)});j.functionHandlers.set("sha384",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.sha384(t)});j.functionHandlers.set("sha512",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.sha512(t)});j.functionHandlers.set("subject",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.subject(t)});j.functionHandlers.set("predicate",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.predicate(t)});j.functionHandlers.set("object",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.object(t)});j.functionHandlers.set("triple",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution),r=e.getTermFromExpression(n[1],e.solution),i=e.getTermFromExpression(n[2],e.solution);return M.BuiltInFunctions.triple(t,r,i)});j.functionHandlers.set("days_between",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=new Date(t),s=new Date(r);return Math.floor((s.getTime()-i.getTime())/(1440*60*1e3))});j.functionHandlers.set("minutes_between",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=new Date(t),s=new Date(r);return Math.floor((s.getTime()-i.getTime())/(60*1e3))});j.functionHandlers.set("hours_between",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=new Date(t);return(new Date(r).getTime()-i.getTime())/(3600*1e3)});j.functionHandlers.set("age_days",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=new Date(t);return Math.floor((new Date().getTime()-r.getTime())/(1440*60*1e3))});j.functionHandlers.set("week_number",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=new Date(t),i=new Date(Date.UTC(r.getFullYear(),r.getMonth(),r.getDate()));i.setUTCDate(i.getUTCDate()+4-(i.getUTCDay()||7));let s=new Date(Date.UTC(i.getUTCFullYear(),0,1));return Math.ceil(((i.getTime()-s.getTime())/(1440*60*1e3)+1)/7)});j.functionHandlers.set("format_date",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=new Date(t);return r.replace("YYYY",String(i.getFullYear())).replace("MM",String(i.getMonth()+1).padStart(2,"0")).replace("DD",String(i.getDate()).padStart(2,"0")).replace("HH",String(i.getHours()).padStart(2,"0")).replace("mm",String(i.getMinutes()).padStart(2,"0")).replace("ss",String(i.getSeconds()).padStart(2,"0"))});j.functionHandlers.set("exo:eval",()=>{let{ExoQLEvalDisabledError:n}=Hu();throw new n})});var mp=S(Gc=>{"use strict";Object.defineProperty(Gc,"__esModule",{value:!0});Gc.FilterExecutor=Gc.FilterExecutorError=void 0;var yt=pp(),c9=sA(),S1=Ae(),fs=De(),_r=class extends Error{static{o(this,"FilterExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="FilterExecutorError"}};Gc.FilterExecutorError=_r;var b1=class{static{o(this,"FilterExecutor")}constructor(){this.existsEvaluator=null,this.tripleStore=null,this.uuidCache=new Map}setExistsEvaluator(e){this.existsEvaluator=e}setTripleStore(e){this.tripleStore=e,this.uuidCache.clear()}async*execute(e,t){let r=this.expressionContainsExists(e.expression);for await(let i of t)try{let s;r?s=await this.evaluateExpressionAsync(e.expression,i):s=this.evaluateExpression(e.expression,i),s===!0&&(yield i)}catch{continue}}expressionContainsExists(e){if(!e||typeof e!="object")return!1;if(e.type==="exists")return!0;if(e.type==="logical")return e.operands.some(t=>this.expressionContainsExists(t));if(e.type==="comparison"){let t=e;return this.expressionContainsExists(t.left)||this.expressionContainsExists(t.right)}if(e.type==="arithmetic"){let t=e;return this.expressionContainsExists(t.left)||this.expressionContainsExists(t.right)}if(e.type==="in"){let t=e;return this.expressionContainsExists(t.expression)||t.list.some(r=>this.expressionContainsExists(r))}if(e.type==="function"||e.type==="functionCall"){let t=e;return Array.isArray(t.args)?t.args.some(r=>this.expressionContainsExists(r)):!1}return!1}async executeAll(e,t){let r=[];async function*i(){for(let s of t)yield s}o(i,"generator");for await(let s of this.execute(e,i()))r.push(s);return r}evaluateExpression(e,t){let r=e;if("termType"in e)switch(r.termType){case"Variable":return t.get(r.value);case"Literal":{let i=r.value,s=r.datatype,a=typeof s=="string"?s:s?.value;return a&&i.length>0&&this.shouldPreserveDatatype(a)?new fs.Literal(i,new S1.IRI(a)):i}case"NamedNode":return r.value;default:throw new _r(`Unsupported termType: ${String(r.termType)}`)}switch(e.type){case"comparison":return this.evaluateComparison(e,t);case"logical":return this.evaluateLogical(e,t);case"arithmetic":return this.evaluateArithmetic(e,t);case"function":case"functionCall":return this.evaluateFunction(e,t);case"variable":return t.get(e.name);case"literal":{let i=e;return i.datatype&&i.value.length>0&&this.shouldPreserveDatatype(i.datatype)?new fs.Literal(i.value,new S1.IRI(i.datatype)):i.value}case"in":return this.evaluateIn(e,t);case"exists":throw new _r("EXISTS expressions require async evaluation. Use evaluateExpressionAsync instead.");default:throw new _r(`Unsupported expression type: ${e.type}`)}}async evaluateExpressionAsync(e,t){if(!this.expressionContainsExists(e))return this.evaluateExpression(e,t);if(e.type==="exists")return this.evaluateExists(e,t);if(e.type==="logical")return this.evaluateLogicalAsync(e,t);if(e.type==="comparison"){let r=e,i=await this.evaluateExpressionAsync(r.left,t),s=await this.evaluateExpressionAsync(r.right,t);return yt.BuiltInFunctions.compare(i,s,r.operator)}return e.type==="in"?this.evaluateInAsync(e,t):e.type==="function"||e.type==="functionCall"?this.evaluateFunctionAsync(e,t):this.evaluateExpression(e,t)}async evaluateExists(e,t){if(!this.existsEvaluator)throw new _r("EXISTS evaluator not set. Call setExistsEvaluator before evaluating EXISTS expressions.");let r=await this.existsEvaluator(e.pattern,t);return e.negated?!r:r}async evaluateLogicalAsync(e,t){if(e.operator==="!"){let i=await this.evaluateExpressionAsync(e.operands[0],t);return yt.BuiltInFunctions.logicalNot(i)}let r=[];for(let i of e.operands){let s=await this.evaluateExpressionAsync(i,t);r.push(s)}if(e.operator==="&&")return yt.BuiltInFunctions.logicalAnd(r);if(e.operator==="||")return yt.BuiltInFunctions.logicalOr(r);throw new _r(`Unknown logical operator: ${String(e.operator)}`)}async evaluateInAsync(e,t){let r=await this.evaluateExpressionAsync(e.expression,t),i=!1;for(let s of e.list){let a=await this.evaluateExpressionAsync(s,t);if(yt.BuiltInFunctions.compare(r,a,"=")){i=!0;break}}return e.negated?!i:i}async evaluateFunctionAsync(e,t){let r=e,i=this.extractFunctionName(r.function),s=r.args??[];if(i==="if"){if(s.length!==3)throw new _r("IF requires exactly 3 arguments");let l=await this.evaluateExpressionAsync(s[0],t);return this.toBoolean(l)?this.evaluateExpressionAsync(s[1],t):this.evaluateExpressionAsync(s[2],t)}if(i==="coalesce"){for(let l of s)try{let u=await this.evaluateExpressionAsync(l,t);if(u!=null)return u}catch{continue}return}let a=[];for(let l of s){let u=await this.evaluateExpressionAsync(l,t);a.push(this.wrapAsLiteralExpression(u))}let c={...r,args:a};return this.evaluateFunction(c,t)}wrapAsLiteralExpression(e){return e==null?{type:"literal",value:""}:typeof e=="object"&&"termType"in e?e:e instanceof S1.IRI||e instanceof fs.Literal?{type:"literal",value:e.value}:typeof e=="number"||typeof e=="boolean"||typeof e=="string"?{type:"literal",value:e}:{type:"literal",value:String(e)}}evaluateComparison(e,t){let r=this.evaluateExpression(e.left,t),i=this.evaluateExpression(e.right,t);return yt.BuiltInFunctions.compare(r,i,e.operator)}evaluateLogical(e,t){if(e.operator==="!"){let i=this.evaluateExpression(e.operands[0],t);return yt.BuiltInFunctions.logicalNot(i)}let r=e.operands.map(i=>this.evaluateExpression(i,t));if(e.operator==="&&")return yt.BuiltInFunctions.logicalAnd(r);if(e.operator==="||")return yt.BuiltInFunctions.logicalOr(r);throw new _r(`Unknown logical operator: ${String(e.operator)}`)}evaluateIn(e,t){let r=this.evaluateExpression(e.expression,t),i=e.list.some(s=>{let a=this.evaluateExpression(s,t);return yt.BuiltInFunctions.compare(r,a,"=")});return e.negated?!i:i}evaluateArithmetic(e,t){let r=this.evaluateExpression(e.left,t),i=this.evaluateExpression(e.right,t);if(e.operator==="-"&&this.isDateValue(r)&&this.isDateValue(i))return yt.BuiltInFunctions.dateDiff(r,i);if(e.operator==="-"&&this.isTimeValue(r)&&this.isTimeValue(i))return yt.BuiltInFunctions.timeDiff(r,i);if(e.operator==="-"&&this.isDateTimeValue(r)&&this.isDateTimeValue(i))return yt.BuiltInFunctions.dateTimeDiff(r,i);if(e.operator==="+"&&this.isDateValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.dateAdd(r,i);if(e.operator==="-"&&this.isDateValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.dateSubtract(r,i);if(e.operator==="+"&&this.isDateValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.dateAddYearMonth(r,i);if(e.operator==="-"&&this.isDateValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.dateSubtractYearMonth(r,i);if(e.operator==="+"&&this.isDateTimeValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.dateTimeAdd(r,i);if(e.operator==="-"&&this.isDateTimeValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.dateTimeSubtract(r,i);if(e.operator==="+"&&this.isDateTimeValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.dateTimeAddYearMonth(r,i);if(e.operator==="-"&&this.isDateTimeValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.dateTimeSubtractYearMonth(r,i);if(e.operator==="+"&&this.isDayTimeDurationValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.durationAdd(r,i);if(e.operator==="-"&&this.isDayTimeDurationValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.durationSubtract(r,i);if(e.operator==="*"&&this.isDayTimeDurationValue(r)&&!this.isDayTimeDurationValue(i)){let c=this.toNumericValue(i);return yt.BuiltInFunctions.durationMultiply(r,c)}if(e.operator==="*"&&!this.isDayTimeDurationValue(r)&&this.isDayTimeDurationValue(i)){let c=this.toNumericValue(r);return yt.BuiltInFunctions.durationMultiply(i,c)}if(e.operator==="/"&&this.isDayTimeDurationValue(r)&&!this.isDayTimeDurationValue(i)){let c=this.toNumericValue(i);if(c===0)throw new _r("Division by zero");return yt.BuiltInFunctions.durationDivide(r,c)}if(e.operator==="+"&&this.isYearMonthDurationValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.yearMonthDurationAdd(r,i);if(e.operator==="-"&&this.isYearMonthDurationValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.yearMonthDurationSubtract(r,i);let s=this.toNumericValue(r),a=this.toNumericValue(i);switch(e.operator){case"+":return s+a;case"-":return s-a;case"*":return s*a;case"/":if(a===0)throw new _r("Division by zero");return s/a;default:throw new _r(`Unknown arithmetic operator: ${String(e.operator)}`)}}shouldPreserveDatatype(e){return e==="http://www.w3.org/2001/XMLSchema#dateTime"||e==="http://www.w3.org/2001/XMLSchema#date"||e==="http://www.w3.org/2001/XMLSchema#time"||e==="http://www.w3.org/2001/XMLSchema#dayTimeDuration"||e==="http://www.w3.org/2001/XMLSchema#yearMonthDuration"||e==="http://www.w3.org/2001/XMLSchema#duration"}isDayTimeDurationValue(e){return e instanceof fs.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#dayTimeDuration":!1}isYearMonthDurationValue(e){return e instanceof fs.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#yearMonthDuration":!1}toNumericValue(e){if(typeof e=="number")return e;if(e instanceof fs.Literal){let t=e.datatype?.value||"";if(t.includes("#integer")||t.includes("#decimal")||t.includes("#double")||t.includes("#float")){let i=parseFloat(e.value);if(!isNaN(i))return i}let r=parseFloat(e.value);if(!isNaN(r))return r}if(typeof e=="string"){let t=parseFloat(e);if(!isNaN(t))return t}if(e&&typeof e=="object"&&"value"in e){let t=parseFloat(String(e.value));if(!isNaN(t))return t}throw new _r(`Cannot convert to number: ${e}`)}isDateTimeValue(e){if(e instanceof fs.Literal){let t=e.datatype?.value||"";return t.includes("#dateTime")||t.includes("#date")?!0:/^\d{4}-\d{2}-\d{2}(T|\s)/.test(e.value)}return typeof e=="string"?/^\d{4}-\d{2}-\d{2}(T|\s)/.test(e):!1}isDateValue(e){return e instanceof fs.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#date":!1}isTimeValue(e){return e instanceof fs.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#time":!1}evaluateFunction(e,t){let r=e,i=this.extractFunctionName(r.function),s=this.evaluateSpecialFunction(i,r.args,t);if(s!==void 0)return s.value;let a=c9.functionHandlers.get(i);if(!a)throw new _r(`Unknown function: ${i}`);let c={evaluateExpression:o((l,u)=>this.evaluateExpression(l,u),"evaluateExpression"),getTermFromExpression:o((l,u)=>this.getTermFromExpression(l,u),"getTermFromExpression"),getStringValue:o(l=>this.getStringValue(l),"getStringValue"),solution:t,isYearMonthDurationValue:o(l=>this.isYearMonthDurationValue(l),"isYearMonthDurationValue"),isDayTimeDurationValue:o(l=>this.isDayTimeDurationValue(l),"isDayTimeDurationValue")};return a(r.args,c)}extractFunctionName(e){if(typeof e=="string")return e.toLowerCase();if(e&&typeof e=="object"&&"value"in e){let t=e.value;return((t.includes("#")?t.split("#").pop():t.split("/").pop())||t).toLowerCase()}throw new _r(`Unknown function format: ${String(e)}`)}evaluateSpecialFunction(e,t,r){switch(e){case"coalesce":for(let i of t)try{let s=this.evaluateExpression(i,r);if(s!=null)return{value:s}}catch{continue}return{value:void 0};case"if":{if(!t||t.length!==3)throw new _r("IF requires exactly 3 arguments");let i=this.evaluateExpression(t[0],r);return{value:this.toBoolean(i)?this.evaluateExpression(t[1],r):this.evaluateExpression(t[2],r)}}case"byuuid":return{value:this.evaluateByUUID({type:"function",function:"byuuid",args:t},r)};default:return}}getTermFromExpression(e,t){let r=e;if(r.type==="variable"&&r.name)return t.get(r.name)}getStringValue(e){return e==null?"":typeof e=="object"&&"value"in e?String(e.value):String(e)}toBoolean(e){if(typeof e=="boolean")return e;if(typeof e=="number")return!isNaN(e)&&e!==0;if(typeof e=="string")return e.length>0;if(e instanceof fs.Literal){let t=e.datatype?.value||"";if(t.includes("#boolean"))return e.value==="true"||e.value==="1";if(t.includes("#integer")||t.includes("#decimal")||t.includes("#double")||t.includes("#float")){let r=parseFloat(e.value);return!isNaN(r)&&r!==0}return e.value.length>0}return!!e}evaluateByUUID(e,t){if(!e.args||e.args.length!==1)throw new _r("exo:byUUID requires exactly 1 argument (UUID string)");let r=this.evaluateExpression(e.args[0],t),i=this.getStringValue(r);if(!i)return;let s=i.toLowerCase();if(this.uuidCache.has(s))return this.uuidCache.get(s)??void 0;if(!this.tripleStore){this.uuidCache.set(s,null);return}if(this.tripleStore.findSubjectsByUUIDSync){let a=this.tripleStore.findSubjectsByUUIDSync(s);if(a.length===0){this.uuidCache.set(s,null);return}let c=a[0];return this.uuidCache.set(s,c),c}this.uuidCache.set(s,null)}cacheUUIDResult(e,t){let r=e.toLowerCase();this.uuidCache.set(r,t)}getCachedUUID(e){let t=e.toLowerCase();if(this.uuidCache.has(t))return this.uuidCache.get(t)}};Gc.FilterExecutor=b1});var w1=S(gp=>{"use strict";Object.defineProperty(gp,"__esModule",{value:!0});gp.OptionalExecutor=void 0;var v1=class{static{o(this,"OptionalExecutor")}async*execute(e,t){let r=[];for await(let s of e)r.push(s);let i=[];for await(let s of t)i.push(s);yield*this.hashJoin(r,i)}async executeAll(e,t){let r=[];for(let i of this.hashJoin(e,t))r.push(i);return r}*hashJoin(e,t){if(e.length===0)return;if(t.length===0){yield*e;return}let r=new Set;for(let l of e)for(let u of l.variables())r.add(u);let i=new Set;for(let l of t)for(let u of l.variables())i.add(u);let s=[];for(let l of r)i.has(l)&&s.push(l);if(s.sort(),s.length===0){yield*this.nestedLoopJoin(e,t);return}let a="\0",c=new Map;for(let l of t){let u=this.computeHashKey(l,s,a),f=c.get(u);f||(f=[],c.set(u,f)),f.push(l)}for(let l of e){let u=this.computeHashKey(l,s,a),f=c.get(u),d=!1;if(f)for(let h of f){let p=l.merge(h);p!==null&&(yield p,d=!0)}d||(yield l)}}computeHashKey(e,t,r){let i=[];for(let s of t){let a=e.get(s);i.push(a!==void 0?a.toString():"UNBOUND")}return i.join(r)}*nestedLoopJoin(e,t){for(let r of e){let i=!1;for(let s of t){let a=r.merge(s);a!==null&&(yield a,i=!0)}i||(yield r)}}};gp.OptionalExecutor=v1});var T1=S(yp=>{"use strict";Object.defineProperty(yp,"__esModule",{value:!0});yp.UnionExecutor=void 0;var E1=class{static{o(this,"UnionExecutor")}async*execute(e,t){let r=new Set;for await(let i of e){let s=this.getSolutionKey(i);r.has(s)||(r.add(s),yield i)}for await(let i of t){let s=this.getSolutionKey(i);r.has(s)||(r.add(s),yield i)}}async executeAll(e,t){let r=[];async function*i(){for(let a of e)yield a}o(i,"generateLeft");async function*s(){for(let a of t)yield a}o(s,"generateRight");for await(let a of this.execute(i(),s()))r.push(a);return r}getSolutionKey(e){let t=e.toJSON();return Object.keys(t).sort().map(i=>`${i}=${t[i]}`).join("|")}};yp.UnionExecutor=E1});var aA=S(_p=>{"use strict";Object.defineProperty(_p,"__esModule",{value:!0});_p.MinusExecutor=void 0;var A1=class{static{o(this,"MinusExecutor")}async*execute(e,t){let r=[];for await(let s of e)r.push(s);let i=[];for await(let s of t)i.push(s);for(let s of r){let a=!1;for(let c of i)if(this.areCompatible(s,c)){a=!0;break}a||(yield s)}}async executeAll(e,t){let r=[];async function*i(){for(let a of e)yield a}o(i,"generateLeft");async function*s(){for(let a of t)yield a}o(s,"generateRight");for await(let a of this.execute(i(),s()))r.push(a);return r}areCompatible(e,t){let r=e.variables(),i=new Set(t.variables()),s=r.filter(a=>i.has(a));if(s.length===0)return!1;for(let a of s){let c=e.get(a),l=t.get(a);if(c===void 0||l===void 0||c.toString()!==l.toString())return!1}return!0}};_p.MinusExecutor=A1});var cA=S(zc=>{"use strict";Object.defineProperty(zc,"__esModule",{value:!0});zc.ValuesExecutor=zc.ValuesExecutorError=void 0;var l9=ls(),oA=Ae(),u9=De(),Sp=class extends Error{static{o(this,"ValuesExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="ValuesExecutorError"}};zc.ValuesExecutorError=Sp;var x1=class{static{o(this,"ValuesExecutor")}async*execute(e){if(e.bindings.length!==0)for(let t of e.bindings)yield this.createSolutionMapping(t)}async executeAll(e){let t=[];for await(let r of this.execute(e))t.push(r);return t}createSolutionMapping(e){let t=new l9.SolutionMapping;for(let[r,i]of Object.entries(e)){let s=this.toRDFTerm(i);t.set(r,s)}return t}toRDFTerm(e){if(e.type==="iri")return new oA.IRI(e.value);if(e.type==="literal")return new u9.Literal(e.value,e.datatype?new oA.IRI(e.datatype):void 0,e.language,e.direction);throw new Sp(`Unknown term type: ${e.type}`)}};zc.ValuesExecutor=x1});var I1=S(Qc=>{"use strict";Object.defineProperty(Qc,"__esModule",{value:!0});Qc.CustomAggregateRegistry=Qc.CustomAggregateError=void 0;var Hc=class extends Error{static{o(this,"CustomAggregateError")}constructor(e,t){super(e),this.iri=t,this.name="CustomAggregateError"}};Qc.CustomAggregateError=Hc;var bp=class n{static{o(this,"CustomAggregateRegistry")}constructor(){this.aggregates=new Map}static getInstance(){return n.instance||(n.instance=new n),n.instance}static resetInstance(){n.instance&&n.instance.clear(),n.instance=null}register(e,t){if(!e||typeof e!="string")throw new Hc("Aggregate IRI must be a non-empty string");if(!t||typeof t.init!="function"||typeof t.step!="function"||typeof t.finalize!="function")throw new Hc("Aggregate must implement init(), step(), and finalize() methods",e);if(this.aggregates.has(e))throw new Hc(`Aggregate with IRI "${e}" is already registered`,e);this.aggregates.set(e,t)}unregister(e){return this.aggregates.delete(e)}get(e){return this.aggregates.get(e)}has(e){return this.aggregates.has(e)}getRegisteredIris(){return Array.from(this.aggregates.keys())}clear(){this.aggregates.clear()}get size(){return this.aggregates.size}};Qc.CustomAggregateRegistry=bp;bp.instance=null});var C1=S(Ze=>{"use strict";Object.defineProperty(Ze,"__esModule",{value:!0});Ze.BUILT_IN_AGGREGATES=Ze.modeAggregate=Ze.stddevAggregate=Ze.varianceAggregate=Ze.medianAggregate=Ze.EXO_AGGREGATE_NS=void 0;Ze.getNumericValue=vp;Ze.createDecimalLiteral=gi;Ze.createDoubleLiteral=h9;Ze.createPercentileAggregate=Oo;var Po=De(),Kc=Ae(),f9=new Kc.IRI("http://www.w3.org/2001/XMLSchema#decimal"),d9=new Kc.IRI("http://www.w3.org/2001/XMLSchema#double");Ze.EXO_AGGREGATE_NS="https://exocortex.my/ontology/agg#";function vp(n){return n==null?NaN:typeof n=="number"?n:typeof n=="string"?parseFloat(n):n instanceof Po.Literal?parseFloat(n.value):n instanceof Kc.IRI?NaN:typeof n=="boolean"?n?1:0:NaN}o(vp,"getNumericValue");function gi(n){return new Po.Literal(String(n),f9)}o(gi,"createDecimalLiteral");function h9(n){return new Po.Literal(String(n),d9)}o(h9,"createDoubleLiteral");Ze.medianAggregate={init(){return{values:[]}},step(n,e){let t=n,r=vp(e);isNaN(r)||t.values.push(r)},finalize(n){let e=n,{values:t}=e;if(t.length===0)return gi(0);let r=[...t].sort((a,c)=>a-c),i=Math.floor(r.length/2),s=r.length%2!==0?r[i]:(r[i-1]+r[i])/2;return gi(s)}};Ze.varianceAggregate={init(){return{values:[]}},step(n,e){let t=n,r=vp(e);isNaN(r)||t.values.push(r)},finalize(n){let e=n,{values:t}=e;if(t.length===0)return gi(0);let r=t.reduce((s,a)=>s+a,0)/t.length,i=t.reduce((s,a)=>s+Math.pow(a-r,2),0)/t.length;return gi(i)}};Ze.stddevAggregate={init(){return{values:[]}},step(n,e){Ze.varianceAggregate.step(n,e)},finalize(n){let e=n,{values:t}=e;if(t.length===0)return gi(0);let r=t.reduce((s,a)=>s+a,0)/t.length,i=t.reduce((s,a)=>s+Math.pow(a-r,2),0)/t.length;return gi(Math.sqrt(i))}};Ze.modeAggregate={init(){return{counts:new Map,values:new Map}},step(n,e){if(e==null)return;let t=n,r=String(e instanceof Po.Literal||e instanceof Kc.IRI?e.value:e),i=t.counts.get(r)||0;t.counts.set(r,i+1),t.values.set(r,e)},finalize(n){let e=n;if(e.counts.size===0)return new Po.Literal(" ",new Kc.IRI("http://www.w3.org/2001/XMLSchema#string"));let t="",r=0;for(let[a,c]of e.counts)c>r&&(r=c,t=a);let i=e.values.get(t);if(i instanceof Po.Literal)return i;let s=parseFloat(t);return isNaN(s)?new Po.Literal(t,new Kc.IRI("http://www.w3.org/2001/XMLSchema#string")):gi(s)}};function Oo(n){let e=Math.max(0,Math.min(100,n))/100;return{init(){return{values:[],percentile:e}},step(t,r){let i=t,s=vp(r);isNaN(s)||i.values.push(s)},finalize(t){let r=t,{values:i}=r;if(i.length===0)return gi(0);let s=[...i].sort((d,h)=>d-h),a=r.percentile*(s.length-1),c=Math.floor(a),l=Math.ceil(a);if(c===l)return gi(s[c]);let u=a-c,f=s[c]*(1-u)+s[l]*u;return gi(f)}}}o(Oo,"createPercentileAggregate");Ze.BUILT_IN_AGGREGATES={[`${Ze.EXO_AGGREGATE_NS}median`]:Ze.medianAggregate,[`${Ze.EXO_AGGREGATE_NS}variance`]:Ze.varianceAggregate,[`${Ze.EXO_AGGREGATE_NS}stddev`]:Ze.stddevAggregate,[`${Ze.EXO_AGGREGATE_NS}mode`]:Ze.modeAggregate,[`${Ze.EXO_AGGREGATE_NS}percentile25`]:Oo(25),[`${Ze.EXO_AGGREGATE_NS}percentile50`]:Oo(50),[`${Ze.EXO_AGGREGATE_NS}percentile75`]:Oo(75),[`${Ze.EXO_AGGREGATE_NS}percentile90`]:Oo(90),[`${Ze.EXO_AGGREGATE_NS}percentile95`]:Oo(95),[`${Ze.EXO_AGGREGATE_NS}percentile99`]:Oo(99)}});var fA=S(Yc=>{"use strict";Object.defineProperty(Yc,"__esModule",{value:!0});Yc.AggregateExecutor=Yc.AggregateExecutorError=void 0;var fr=De(),O1=Ae(),p9=mp(),m9=I1(),g9=C1(),lA=new O1.IRI("http://www.w3.org/2001/XMLSchema#integer"),Fo=new O1.IRI("http://www.w3.org/2001/XMLSchema#decimal"),ds=new O1.IRI("http://www.w3.org/2001/XMLSchema#string");function uA(n){return typeof n=="object"&&n.type==="custom"}o(uA,"isCustomAggregation");var Qu=class extends Error{static{o(this,"AggregateExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="AggregateExecutorError"}};Yc.AggregateExecutorError=Qu;var R1=class{static{o(this,"AggregateExecutor")}constructor(){this.filterExecutor=new p9.FilterExecutor}execute(e,t){let r=this.groupSolutions(t,e.variables),i=[];for(let[s,a]of r.entries()){let c=new Map;for(let f of e.variables)if(a.length>0){let d=a[0].get(f);d&&c.set(f,d)}for(let f of e.aggregates){let d=this.computeAggregate(f.expression,a);c.set(f.variable,d)}let{SolutionMapping:l}=ls(),u=new l;for(let[f,d]of c.entries())u.set(f,d);i.push(u)}if(i.length===0&&e.aggregates.length>0){let s=this.createEmptyAggregateResult(e);s&&i.push(s)}return i}groupSolutions(e,t){let r=new Map;if(t.length===0)return r.set("",e),r;for(let i of e){let s=this.computeGroupKey(i,t),a=r.get(s);a?a.push(i):r.set(s,[i])}return r}computeGroupKey(e,t){return t.map(r=>{let i=e.get(r);return i?this.termToString(i):""}).join("|")}termToString(e){if(e&&typeof e=="object"){if("value"in e)return String(e.value);if("id"in e)return String(e.id)}return String(e)}computeAggregate(e,t){if(uA(e.aggregation))return this.computeCustomAggregate(e,t);let r=this.extractValues(e,t),i=e.aggregation;switch(i){case"count":{let s=this.computeCount(r,e.distinct);return new fr.Literal(String(s),lA)}case"sum":{let s=this.computeSum(r);return new fr.Literal(String(s),Fo)}case"avg":{let s=this.computeAvg(r);return new fr.Literal(String(s),Fo)}case"min":{let s=this.computeMin(r);return s===void 0?new fr.Literal("",ds):typeof s=="number"?new fr.Literal(String(s),Fo):new fr.Literal(String(s),ds)}case"max":{let s=this.computeMax(r);return s===void 0?new fr.Literal("",ds):typeof s=="number"?new fr.Literal(String(s),Fo):new fr.Literal(String(s),ds)}case"group_concat":{let s=this.computeGroupConcat(r,e.separator||" ",e.distinct);return new fr.Literal(s||" ",ds)}case"sample":{let s=this.computeSample(r,e.distinct);return s===void 0?new fr.Literal(" ",ds):typeof s=="number"?new fr.Literal(String(s),Fo):new fr.Literal(String(s),ds)}default:{let s=i;throw new Qu(`Unknown aggregation function: ${s}`)}}}computeCustomAggregate(e,t){let i=e.aggregation.iri,a=m9.CustomAggregateRegistry.getInstance().get(i);if(a||(a=g9.BUILT_IN_AGGREGATES[i]),!a)throw new Qu(`Unknown custom aggregate function: ${i}. Register it with CustomAggregateRegistry.getInstance().register() or use a built-in aggregate.`);let c=a.init();for(let l of t){let u=null;if(e.expression){let f=this.evaluateExpression(e.expression,l);f!==void 0&&(u=f)}else u=1;a.step(c,u)}return a.finalize(c)}extractValues(e,t){if(!e.expression)return t.map(()=>1);let r=[];for(let i of t){let s=this.evaluateExpression(e.expression,i);s!=null&&r.push(s)}return r}evaluateExpression(e,t){if(e.type==="variable"){let r=t.get(e.name);return r==null?void 0:typeof r=="number"||typeof r=="string"||typeof r=="boolean"?r:typeof r=="object"&&"value"in r?r.value:r}if(e.type==="literal")return e.value;try{return this.filterExecutor.evaluateExpression(e,t)}catch{return}}computeCount(e,t){return t?new Set(e.map(r=>String(r))).size:e.length}computeSum(e){return e.map(r=>parseFloat(String(r))).filter(r=>!isNaN(r)).reduce((r,i)=>r+i,0)}computeAvg(e){let t=e.map(r=>parseFloat(String(r))).filter(r=>!isNaN(r));return t.length===0?0:t.reduce((r,i)=>r+i,0)/t.length}computeMin(e){if(e.length===0)return;let t=e.map(i=>parseFloat(String(i))).filter(i=>!isNaN(i));if(t.length>0)return Math.min(...t);let r=e.map(i=>String(i));return r.reduce((i,s)=>s<i?s:i,r[0])}computeMax(e){if(e.length===0)return;let t=e.map(i=>parseFloat(String(i))).filter(i=>!isNaN(i));if(t.length>0)return Math.max(...t);let r=e.map(i=>String(i));return r.reduce((i,s)=>s>i?s:i,r[0])}computeGroupConcat(e,t,r){let i=e.map(s=>String(s));return r&&(i=[...new Set(i)]),i.join(t)}computeSample(e,t){if(e.length===0)return;if(t){let s=[...new Set(e.map(l=>String(l)))];if(s.length===0)return;let a=s[0],c=parseFloat(a);return isNaN(c)?a:c}let r=e[0];if(typeof r=="number")return r;let i=parseFloat(String(r));return isNaN(i)?String(r):i}createEmptyAggregateResult(e){let{SolutionMapping:t}=ls(),r=new t;for(let i of e.aggregates){let s=i.expression.aggregation;if(uA(s)){r.set(i.variable,new fr.Literal("0",Fo));continue}switch(s){case"count":r.set(i.variable,new fr.Literal("0",lA));break;case"sum":case"avg":r.set(i.variable,new fr.Literal("0",Fo));break;case"group_concat":r.set(i.variable,new fr.Literal(" ",ds));break;case"min":case"max":case"sample":r.set(i.variable,new fr.Literal("",ds));break;default:r.set(i.variable,new fr.Literal("",ds))}}return r}};Yc.AggregateExecutor=R1});var N1=S(wp=>{"use strict";Object.defineProperty(wp,"__esModule",{value:!0});wp.ConstructExecutor=void 0;var y9=Kn(),Do=Ae(),P1=De(),F1=Vt(),_9=Au(),D1=class{static{o(this,"ConstructExecutor")}async execute(e,t){let r=[],i=new Set;for(let s of t)for(let a of e)try{let c=this.instantiateTriple(a,s),l=`${c.subject.toString()}|${c.predicate.toString()}|${c.object.toString()}`;i.has(l)||(i.add(l),r.push(c))}catch{continue}return r}instantiateTriple(e,t){if(this.isPropertyPath(e.predicate))throw new Error("Property paths are not supported in CONSTRUCT templates");let r=this.instantiateElement(e.subject,t),i=this.instantiateElement(e.predicate,t),s=this.instantiateElement(e.object,t);return new y9.Triple(r,i,s)}isPropertyPath(e){return e.type==="path"}instantiateElement(e,t){if(e.type==="variable"){let r=t.get(e.value);if(!r)throw new Error(`Unbound variable: ${e.value}`);return r}if(e.type==="iri")return new Do.IRI(e.value);if(e.type==="literal")return new P1.Literal(e.value,e.datatype?new Do.IRI(e.datatype):void 0,e.language);if(e.type==="blank")return new F1.BlankNode(e.value);if(e.type==="quoted")return this.instantiateQuotedTriple(e,t);throw new Error(`Unknown element type: ${e.type}`)}instantiateQuotedTriple(e,t){let r=this.instantiateQuotedSubject(e.subject,t),i=this.instantiateQuotedPredicate(e.predicate,t),s=this.instantiateQuotedObject(e.object,t);return new _9.QuotedTriple(r,i,s)}instantiateQuotedSubject(e,t){if(e.type==="variable"){let r=t.get(e.value);if(!r)throw new Error(`Unbound variable in quoted triple subject: ${e.value}`);if(r instanceof P1.Literal)throw new Error("Literals cannot appear in quoted triple subject position");return r}if(e.type==="iri")return new Do.IRI(e.value);if(e.type==="blank")return new F1.BlankNode(e.value);if(e.type==="quoted")return this.instantiateQuotedTriple(e,t);throw new Error(`Invalid element type for quoted triple subject: ${e.type}`)}instantiateQuotedPredicate(e,t){if(e.type==="variable"){let r=t.get(e.value);if(!r)throw new Error(`Unbound variable in quoted triple predicate: ${e.value}`);if(!(r instanceof Do.IRI))throw new Error("Quoted triple predicate must be an IRI");return r}return new Do.IRI(e.value)}instantiateQuotedObject(e,t){if(e.type==="variable"){let i=t.get(e.value);if(!i)throw new Error(`Unbound variable in quoted triple object: ${e.value}`);return i}if(e.type==="iri")return new Do.IRI(e.value);if(e.type==="blank")return new F1.BlankNode(e.value);if(e.type==="literal")return new P1.Literal(e.value,e.datatype?new Do.IRI(e.datatype):void 0,e.language);if(e.type==="quoted")return this.instantiateQuotedTriple(e,t);let r=e;throw new Error(`Invalid element type for quoted triple object: ${r.type}`)}};wp.ConstructExecutor=D1});var hA=S(Xc=>{"use strict";Object.defineProperty(Xc,"__esModule",{value:!0});Xc.ServiceExecutor=Xc.ServiceExecutorError=void 0;var S9=ls(),dA=Ae(),b9=De(),v9=Vt(),No=class extends Error{static{o(this,"ServiceExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="ServiceExecutorError"}};Xc.ServiceExecutorError=No;var L1=class{static{o(this,"ServiceExecutor")}constructor(e={}){this.timeout=e.timeout??3e4,this.httpClient=e.httpClient??((t,r)=>fetch(t,r)),this.maxRetries=e.maxRetries??2,this.retryDelay=e.retryDelay??1e3}async*execute(e,t){try{let r=t(e.pattern),i=await this.executeRemoteQuery(e.endpoint,r);for(let s of i)yield s}catch(r){if(e.silent)return;throw r}}async executeRemoteQuery(e,t){let r;for(let i=0;i<=this.maxRetries;i++)try{let s=new AbortController,a=setTimeout(()=>s.abort(),this.timeout);try{let c=await this.httpClient(e,{method:"POST",headers:{"Content-Type":"application/sparql-query",Accept:"application/sparql-results+json"},body:t,signal:s.signal});if(!c.ok)throw new No(`Remote SPARQL endpoint returned ${c.status}: ${c.statusText}`);let l=await c.json();return this.parseJsonResults(l)}finally{clearTimeout(a)}}catch(s){if(r=s instanceof Error?s:new Error(String(s)),this.isRetryableError(r)&&i<this.maxRetries){await this.delay(this.retryDelay);continue}throw new No(`Failed to query remote SPARQL endpoint ${e}: ${r.message}`,r)}throw new No(`Failed to query remote SPARQL endpoint ${e} after ${this.maxRetries+1} attempts`,r)}parseJsonResults(e){return!e.results||!Array.isArray(e.results.bindings)?[]:e.results.bindings.map(t=>this.parseBinding(t))}parseBinding(e){let t=new S9.SolutionMapping;for(let[r,i]of Object.entries(e)){let s=this.parseRDFTerm(i);t.set(r,s)}return t}parseRDFTerm(e){switch(e.type){case"uri":return new dA.IRI(e.value);case"literal":{let t=e.datatype?new dA.IRI(e.datatype):void 0;return new b9.Literal(e.value,t,e["xml:lang"])}case"bnode":return new v9.BlankNode(e.value);default:throw new No(`Unknown RDF term type: ${e.type}`)}}isRetryableError(e){let t=e.message.toLowerCase();return!!(e.name==="AbortError"||t.includes("network")||t.includes("econnreset")||t.includes("econnrefused")||t.includes("etimedout")||t.includes("returned 5"))}delay(e){return new Promise(t=>setTimeout(t,e))}};Xc.ServiceExecutor=L1});var mA=S(Jc=>{"use strict";Object.defineProperty(Jc,"__esModule",{value:!0});Jc.GraphExecutor=Jc.GraphExecutorError=void 0;var pA=Ae(),Ep=class extends Error{static{o(this,"GraphExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="GraphExecutorError"}};Jc.GraphExecutorError=Ep;var k1=class{static{o(this,"GraphExecutor")}constructor(e){this.tripleStore=e}async*execute(e,t,r){let i=e.name;if(i.type==="iri")yield*this.executeWithGraph(e.pattern,i,t);else if(i.type==="variable")yield*this.executeWithGraphVariable(e,i,t,r);else throw new Ep(`Invalid graph name type: ${i.type}`)}async*executeWithGraph(e,t,r){let i=new pA.IRI(t.value);this.tripleStore.hasGraph&&!await this.tripleStore.hasGraph(i)||(yield*r(e,i))}async*executeWithGraphVariable(e,t,r,i){if(i){let a=i.get(t.value);if(a&&a instanceof pA.IRI){yield*this.executeWithGraph(e.pattern,{type:"iri",value:a.value},r);return}}if(!this.tripleStore.getNamedGraphs)return;let s=await this.tripleStore.getNamedGraphs();for(let a of s)for await(let c of r(e.pattern,a)){let l=c.clone();l.set(t.value,a),yield l}}};Jc.GraphExecutor=k1});var gA=S(el=>{"use strict";Object.defineProperty(el,"__esModule",{value:!0});el.SPARQLGenerator=el.SPARQLGeneratorError=void 0;var Zc=class extends Error{static{o(this,"SPARQLGeneratorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="SPARQLGeneratorError"}};el.SPARQLGeneratorError=Zc;var M1=class{static{o(this,"SPARQLGenerator")}collectVariables(e){let t=new Set;return this.collectVariablesFromOperation(e,t),t}generateSelect(e){let t=this.collectVariables(e),r=t.size>0?Array.from(t).map(s=>`?${s}`).join(" "):"*",i=this.generateWhereClause(e);return`SELECT ${r} WHERE {
48
+ `,s);l!==-1?(i+=e.substring(s,l),s=l):(i+=e.substring(s),s=e.length);continue}let c=this.tryReplacePrefixedName(e,s,r);if(c){i+=c.iri,s=c.endIndex;continue}i+=a,s++}return i}tryReplacePrefixedName(e,t,r){if(t>0&&/[a-zA-Z0-9_]/.test(e[t-1]))return null;for(let{prefix:i,baseIRI:s}of r){if(e.substring(t,t+i.length+1)!==i+":")continue;let a=t+i.length+1,c=a;for(;c<e.length&&/[a-zA-Z0-9_.%-]/.test(e[c]);)c++;if(c===a)continue;let l=e.substring(a,c);return{iri:`<${s}${l}.md>`,endIndex:c}}return null}findDeclaredPrefixes(e){let t=new Set,r=new RegExp(Nj.source,"gi"),i;for(;(i=r.exec(e))!==null;)t.add(i[1].toLowerCase());return t}skipLiteral(e,t){let r=e[t];if(t+2<e.length&&e.substring(t,t+3)===r+r+r){let s=e.indexOf(r+r+r,t+3);return s!==-1?s+3:e.length}let i=t+1;for(;i<e.length&&e[i]!==r;)e[i]==="\\"&&i++,i++;return i<e.length?i+1:e.length}};$h.VaultPrefixTransformer=B_});var Nc=S(xn=>{"use strict";var kj=xn&&xn.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),Mj=xn&&xn.__setModuleDefault||(Object.create?(function(n,e){Object.defineProperty(n,"default",{enumerable:!0,value:e})}):function(n,e){n.default=e}),jj=xn&&xn.__importStar||(function(){var n=o(function(e){return n=Object.getOwnPropertyNames||function(t){var r=[];for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(r[r.length]=i);return r},n(e)},"ownKeys");return function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r=n(e),i=0;i<r.length;i++)r[i]!=="default"&&kj(t,e,r[i]);return Mj(t,e),t}})();Object.defineProperty(xn,"__esModule",{value:!0});xn.SPARQLParser=xn.ExoQLParser=xn.SPARQLParseError=void 0;var O3=jj(x3()),W_=k_(),G_=M_(),P3=I3(),z_=$_(),$j=C3(),H_=R3(),Vj=q_(),cr=class extends Error{static{o(this,"SPARQLParseError")}constructor(e,t,r,i){super(e,i?{cause:i}:void 0),this.name="SPARQLParseError",this.line=t,this.column=r}};xn.SPARQLParseError=cr;var Vh=class{static{o(this,"ExoQLParser")}constructor(e){this.lastDirectionMappings=new Map,this.parser=new O3.Parser({sparqlStar:!0}),this.generator=new O3.Generator({sparqlStar:!0}),this.caseWhenTransformer=new W_.CaseWhenTransformer,this.lateralTransformer=new G_.LateralTransformer,this.prefixStarTransformer=new P3.PrefixStarTransformer(e?.vocabularyResolver),this.describeOptionsTransformer=new z_.DescribeOptionsTransformer,this.directionalLangTagTransformer=new $j.DirectionalLangTagTransformer,this.tripleTermTransformer=new H_.TripleTermTransformer,this.vaultPrefixTransformer=new Vj.VaultPrefixTransformer}setVaultPrefixes(e){this.vaultPrefixTransformer.setVaultPrefixes(e)}parse(e){try{let t=this.vaultPrefixTransformer.transform(e),r=this.describeOptionsTransformer.transform(t);this.lastDescribeOptions=r.options;let i=r.query;i=this.directionalLangTagTransformer.transform(i),this.lastDirectionMappings=this.directionalLangTagTransformer.getAllMappings(),i=this.lateralTransformer.transform(i),i=this.caseWhenTransformer.transform(i),i=this.tripleTermTransformer.transform(i);let s=this.parser.parse(i);return this.validateQuery(s),this.lastDescribeOptions&&this.isDescribeQuery(s)&&(s.describeOptions=this.lastDescribeOptions),s}catch(t){if(t instanceof z_.DescribeOptionsTransformerError)throw new cr(t.message);if(t instanceof G_.LateralTransformerError)throw new cr(t.message);if(t instanceof W_.CaseWhenTransformerError)throw new cr(t.message);if(t instanceof H_.TripleTermTransformerError)throw new cr(t.message);if(t instanceof Error){let r=t.message.match(/line (\d+), column (\d+)/),i=r?parseInt(r[1],10):void 0,s=r?parseInt(r[2],10):void 0;throw new cr(`SPARQL syntax error: ${t.message}`,i,s,t)}throw t}}parseWithOptions(e){return{query:this.parse(e),describeOptions:this.lastDescribeOptions}}getLastDescribeOptions(){return this.lastDescribeOptions}async parseAsync(e){try{let t=this.vaultPrefixTransformer.transform(e),r=this.describeOptionsTransformer.transform(t);this.lastDescribeOptions=r.options;let i=r.query;i=this.directionalLangTagTransformer.transform(i),this.lastDirectionMappings=this.directionalLangTagTransformer.getAllMappings(),i=await this.prefixStarTransformer.transform(i),i=this.lateralTransformer.transform(i),i=this.caseWhenTransformer.transform(i),i=this.tripleTermTransformer.transform(i);let s=this.parser.parse(i);return this.validateQuery(s),this.lastDescribeOptions&&this.isDescribeQuery(s)&&(s.describeOptions=this.lastDescribeOptions),s}catch(t){if(t instanceof z_.DescribeOptionsTransformerError)throw new cr(t.message);if(t instanceof P3.PrefixStarTransformerError)throw new cr(t.message);if(t instanceof G_.LateralTransformerError)throw new cr(t.message);if(t instanceof W_.CaseWhenTransformerError)throw new cr(t.message);if(t instanceof H_.TripleTermTransformerError)throw new cr(t.message);if(t instanceof Error){let r=t.message.match(/line (\d+), column (\d+)/),i=r?parseInt(r[1],10):void 0,s=r?parseInt(r[2],10):void 0;throw new cr(`SPARQL syntax error: ${t.message}`,i,s,t)}throw t}}async parseAsyncWithOptions(e){return{query:await this.parseAsync(e),describeOptions:this.lastDescribeOptions}}hasPrefixStar(e){return/PREFIX\s*\*/i.test(e)}hasLateral(e){return this.lateralTransformer.hasLateral(e)}hasDescribeOptions(e){return this.describeOptionsTransformer.hasDescribeOptions(e)}hasDirectionalLangTags(e){return this.directionalLangTagTransformer.hasDirectionalTags(e)}hasTripleTermSyntax(e){return this.tripleTermTransformer.hasTripleTermSyntax(e)}getLastDirectionMappings(){return new Map(this.lastDirectionMappings)}getDirectionForLanguage(e){return this.lastDirectionMappings.get(e.toLowerCase())}toString(e){try{return this.generator.stringify(e)}catch(t){throw t instanceof Error?new cr(`Failed to serialize SPARQL query: ${t.message}`,void 0,void 0,t):t}}getQueryType(e){if("queryType"in e&&e.type==="query")return e.queryType;throw new cr("Query does not have a valid queryType property")}isSelectQuery(e){return"queryType"in e&&e.type==="query"&&e.queryType==="SELECT"}isConstructQuery(e){return"queryType"in e&&e.type==="query"&&e.queryType==="CONSTRUCT"}isAskQuery(e){return"queryType"in e&&e.type==="query"&&e.queryType==="ASK"}isDescribeQuery(e){return"queryType"in e&&e.type==="query"&&e.queryType==="DESCRIBE"}isUpdateQuery(e){return e.type==="update"}isInsertDataOperation(e){return"updateType"in e&&e.updateType==="insert"}isDeleteDataOperation(e){return"updateType"in e&&e.updateType==="delete"}validateQuery(e){if(!e||typeof e!="object")throw new cr("Invalid query: not an object");if(e.type!=="query"&&e.type!=="update")throw new cr(`Invalid type: expected "query" or "update", got "${e.type}"`);if(e.type==="query"){let t=["SELECT","CONSTRUCT","ASK","DESCRIBE"];if(!t.includes(e.queryType))throw new cr(`Invalid query type: expected one of ${t.join(", ")}, got "${e.queryType}"`)}}};xn.ExoQLParser=Vh;xn.SPARQLParser=Vh});var Oo=S(Uh=>{"use strict";Object.defineProperty(Uh,"__esModule",{value:!0});Uh.AlgebraTranslatorError=void 0;var Q_=class extends Error{static{o(this,"AlgebraTranslatorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="AlgebraTranslatorError"}};Uh.AlgebraTranslatorError=Q_});var Bh=S(cs=>{"use strict";Object.defineProperty(cs,"__esModule",{value:!0});cs.isVariableExpression=Uj;cs.isVariableTerm=Bj;cs.isNamedNode=qj;cs.isLiteral=Wj;cs.isPropertyPath=Gj;cs.isAggregateExpression=zj;cs.isOperationExpression=Hj;cs.isFunctionCallExpression=Qj;function Uj(n){return typeof n=="object"&&n!==null&&"expression"in n&&"variable"in n}o(Uj,"isVariableExpression");function Bj(n){return typeof n=="object"&&n!==null&&"termType"in n&&n.termType==="Variable"}o(Bj,"isVariableTerm");function qj(n){return typeof n=="object"&&n!==null&&"termType"in n&&n.termType==="NamedNode"}o(qj,"isNamedNode");function Wj(n){return typeof n=="object"&&n!==null&&"termType"in n&&n.termType==="Literal"}o(Wj,"isLiteral");function Gj(n){return typeof n=="object"&&n!==null&&"type"in n&&n.type==="path"}o(Gj,"isPropertyPath");function zj(n){return typeof n=="object"&&n!==null&&"type"in n&&n.type==="aggregate"}o(zj,"isAggregateExpression");function Hj(n){return typeof n=="object"&&n!==null&&"type"in n&&n.type==="operation"}o(Hj,"isOperationExpression");function Qj(n){return typeof n=="object"&&n!==null&&"type"in n&&(n.type==="functionCall"||n.type==="functioncall")}o(Qj,"isFunctionCallExpression")});var F3=S(qh=>{"use strict";Object.defineProperty(qh,"__esModule",{value:!0});qh.TripleTranslator=void 0;var ln=Oo(),K_=class{static{o(this,"TripleTranslator")}constructor(){this.directionMappings=new Map}setDirectionMappings(e){this.directionMappings=e}translateBGP(e){if(!("triples"in e)||!Array.isArray(e.triples))throw new ln.AlgebraTranslatorError("BGP pattern must have triples array");return{type:"bgp",triples:e.triples.map(t=>this.translateTriple(t))}}translateTriple(e){if(!e.subject||!e.predicate||!e.object)throw new ln.AlgebraTranslatorError("Triple must have subject, predicate, and object");return{subject:this.translateTripleElement(e.subject),predicate:this.translatePredicate(e.predicate),object:this.translateTripleElement(e.object)}}translateConstructTemplate(e){return!e||!Array.isArray(e)?[]:e.map(t=>this.translateTriple(t))}translatePredicate(e){return"type"in e&&e.type==="path"?this.translatePropertyPath(e):this.translateTripleElement(e)}translatePropertyPath(e){if(!("pathType"in e)||!e.pathType)throw new ln.AlgebraTranslatorError("Property path must have pathType");if(!("items"in e)||!Array.isArray(e.items))throw new ln.AlgebraTranslatorError("Property path must have items array");let t=e.items.map(r=>this.translatePathItem(r));switch(e.pathType){case"/":return{type:"path",pathType:"/",items:t};case"|":return{type:"path",pathType:"|",items:t};case"^":if(t.length!==1)throw new ln.AlgebraTranslatorError("Inverse path must have exactly one item");return{type:"path",pathType:"^",items:[t[0]]};case"+":if(t.length!==1)throw new ln.AlgebraTranslatorError("OneOrMore path must have exactly one item");return{type:"path",pathType:"+",items:[t[0]]};case"*":if(t.length!==1)throw new ln.AlgebraTranslatorError("ZeroOrMore path must have exactly one item");return{type:"path",pathType:"*",items:[t[0]]};case"?":if(t.length!==1)throw new ln.AlgebraTranslatorError("ZeroOrOne path must have exactly one item");return{type:"path",pathType:"?",items:[t[0]]};default:throw new ln.AlgebraTranslatorError(`Unsupported property path type: ${e.pathType}`)}}translatePathItem(e){if("type"in e&&e.type==="path")return this.translatePropertyPath(e);if("termType"in e&&e.termType==="NamedNode")return{type:"iri",value:e.value};let t="type"in e?e.type:"termType"in e?e.termType:"unknown";throw new ln.AlgebraTranslatorError(`Unsupported path item type: ${String(t)}`)}translateTripleElement(e){if(!e||!("termType"in e))throw new ln.AlgebraTranslatorError("Triple element must have termType");switch(e.termType){case"Variable":return{type:"variable",value:e.value};case"NamedNode":return{type:"iri",value:e.value};case"Literal":{let t={type:"literal",value:e.value,datatype:e.datatype?.value,language:e.language};if(e.language){let r=this.directionMappings.get(e.language.toLowerCase());r&&(t.direction=r)}return t}case"BlankNode":return{type:"blank",value:e.value};case"Quad":return this.translateQuotedTriple(e);default:throw new ln.AlgebraTranslatorError(`Unsupported term type: ${e.termType}`)}}translateQuotedTriple(e){if(!e.subject||!e.predicate||!e.object)throw new ln.AlgebraTranslatorError("Quoted triple must have subject, predicate, and object");return{type:"quoted",subject:this.translateTripleElement(e.subject),predicate:this.translateQuotedTriplePredicate(e.predicate),object:this.translateTripleElement(e.object)}}translateQuotedTriplePredicate(e){if(!e||!("termType"in e))throw new ln.AlgebraTranslatorError("Quoted triple predicate must have termType");switch(e.termType){case"Variable":return{type:"variable",value:e.value};case"NamedNode":return{type:"iri",value:e.value};default:throw new ln.AlgebraTranslatorError(`Quoted triple predicate must be IRI or Variable, got: ${e.termType}`)}}};qh.TripleTranslator=K_});var D3=S(Wh=>{"use strict";Object.defineProperty(Wh,"__esModule",{value:!0});Wh.ExpressionTranslator=void 0;var Lc=Oo(),Y_=class{static{o(this,"ExpressionTranslator")}constructor(e){this.translateWhereFn=e.translateWhere,this.translateBGPFn=e.translateBGP,this.translatePatternFn=e.translatePattern}translateExpression(e){if(!e)throw new Lc.AlgebraTranslatorError("Expression cannot be null or undefined");if("type"in e&&e.type==="operation")return this.translateOperationExpression(e);let t="type"in e?e.type:void 0;if(t==="functioncall"||t==="functionCall"){let r=e;return{type:"functionCall",function:r.function,args:r.args.map(i=>this.translateExpression(i))}}if("termType"in e)return this.translateTermExpression(e);throw new Lc.AlgebraTranslatorError(`Unsupported expression structure: ${JSON.stringify(e)}`)}translateFilter(e){if(!e.expression)throw new Lc.AlgebraTranslatorError("Filter pattern must have expression");let t={type:"bgp",triples:[]};return{type:"filter",expression:this.translateExpression(e.expression),input:t}}translateTermExpression(e){if(e.termType==="Variable")return{type:"variable",name:e.value};if(e.termType==="Literal"){let t=e.value;return e.datatype&&(e.datatype.value.includes("#integer")||e.datatype.value.includes("#decimal")?t=parseFloat(e.value):e.datatype.value.includes("#boolean")&&(t=e.value==="true")),{type:"literal",value:t,datatype:e.datatype?.value}}return{type:"literal",value:String(e.value||e)}}translateOperationExpression(e){let t=["=","!=","<",">","<=",">="],r=["&&","||","!"],i=["+","-","*","/"],s=e.args.filter(a=>!("patterns"in a)||"termType"in a);return t.includes(e.operator)?{type:"comparison",operator:e.operator,left:this.translateExpression(s[0]),right:this.translateExpression(s[1])}:r.includes(e.operator)?{type:"logical",operator:e.operator,operands:s.map(a=>this.translateExpression(a))}:i.includes(e.operator)?{type:"arithmetic",operator:e.operator,left:this.translateExpression(s[0]),right:this.translateExpression(s[1])}:e.operator==="exists"||e.operator==="notexists"?this.translateExistsExpression(e):e.operator==="in"||e.operator==="notin"?this.translateInExpression(e):{type:"function",function:e.operator,args:s.map(a=>this.translateExpression(a))}}translateExistsExpression(e){if(!e.args||e.args.length!==1)throw new Lc.AlgebraTranslatorError("EXISTS/NOT EXISTS must have exactly one pattern argument");let t=e.args[0],r;return t.type==="group"&&"patterns"in t&&t.patterns?r=this.translateWhereFn(t.patterns):t.type==="bgp"?r=this.translateBGPFn(t):r=this.translatePatternFn(t),{type:"exists",negated:e.operator==="notexists",pattern:r}}translateInExpression(e){if(!e.args||e.args.length!==2)throw new Lc.AlgebraTranslatorError("IN/NOT IN must have exactly 2 arguments (expression and list)");let t=e.args[0],r=e.args[1];if(!Array.isArray(r))throw new Lc.AlgebraTranslatorError("IN/NOT IN second argument must be an array of values");return{type:"in",expression:this.translateExpression(t),list:r.map(i=>this.translateExpression(i)),negated:e.operator==="notin"}}};Wh.ExpressionTranslator=Y_});var k3=S(Gh=>{"use strict";Object.defineProperty(Gh,"__esModule",{value:!0});Gh.PatternTranslator=void 0;var N3=M_(),Dr=Oo(),L3=Bh(),X_=class{static{o(this,"PatternTranslator")}constructor(e){this.directionMappings=new Map,this.translateExpressionFn=e.translateExpression,this.translateSelectFn=e.translateSelect,this.translateBGPFn=e.translateBGP}setDirectionMappings(e){this.directionMappings=e}translateWhere(e){if(e.length===0)throw new Dr.AlgebraTranslatorError("Empty WHERE clause");let t=e.filter(a=>a.type==="filter"),r=e.filter(a=>a.type==="bind"),i=e.filter(a=>a.type!=="filter"&&a.type!=="bind"),s;if(i.length===0)s={type:"bgp",triples:[]};else if(i.length===1)if(i[0].type==="optional"){let a=i[0].expression;s={type:"leftjoin",left:{type:"bgp",triples:[]},right:this.translateWhere(i[0].patterns),expression:a?this.translateExpressionFn(a):void 0}}else s=this.translatePattern(i[0]);else{if(i[0].type==="optional"){let a=i[0].expression;s={type:"leftjoin",left:{type:"bgp",triples:[]},right:this.translateWhere(i[0].patterns),expression:a?this.translateExpressionFn(a):void 0}}else s=this.translatePattern(i[0]);for(let a=1;a<i.length;a++){let c=i[a];if(this.isLateralPattern(c)){let l=this.extractLateralSubquery(c),u=this.removeLateralMarker(l),f=this.translateSelectFn(u);s={type:"lateraljoin",left:s,right:f}}else if(c.type==="optional"){let l=c.expression;s={type:"leftjoin",left:s,right:this.translateWhere(c.patterns),expression:l?this.translateExpressionFn(l):void 0}}else{let l=this.translatePattern(c);s={type:"join",left:s,right:l}}}}for(let a of r)s=this.translateBind(a,s);for(let a of t)s={type:"filter",expression:this.translateExpressionFn(a.expression),input:s};return s}translatePattern(e){if(!e||!e.type)throw new Dr.AlgebraTranslatorError("Invalid pattern: missing type");switch(e.type){case"bgp":return this.translateBGPFn(e);case"filter":return this.translateFilter(e);case"optional":return this.translateOptional(e);case"union":return this.translateUnion(e);case"minus":return this.translateMinus(e);case"values":return this.translateValues(e);case"group":return this.translateWhere(e.patterns);case"query":return this.translateSubquery(e);case"service":return this.translateService(e);case"graph":return this.translateGraph(e);default:throw new Dr.AlgebraTranslatorError(`Unsupported pattern type: ${e.type}`)}}translateFilter(e){if(!e.expression)throw new Dr.AlgebraTranslatorError("Filter pattern must have expression");let t={type:"bgp",triples:[]};return{type:"filter",expression:this.translateExpressionFn(e.expression),input:t}}translateOptional(e){if(!e.patterns||e.patterns.length===0)throw new Dr.AlgebraTranslatorError("OPTIONAL pattern must have patterns");let t=e.expression;return{type:"leftjoin",left:{type:"bgp",triples:[]},right:this.translateWhere(e.patterns),expression:t?this.translateExpressionFn(t):void 0}}translateUnion(e){if(!e.patterns||e.patterns.length<2)throw new Dr.AlgebraTranslatorError("UNION pattern must have at least 2 patterns");let t=o(i=>i.type==="graph"?this.translateGraph(i):i.type==="service"?this.translateService(i):"patterns"in i&&i.patterns&&Array.isArray(i.patterns)?this.translateWhere(i.patterns):this.translateWhere([i]),"translateBranch"),r={type:"union",left:t(e.patterns[0]),right:t(e.patterns[1])};for(let i=2;i<e.patterns.length;i++)r={type:"union",left:r,right:t(e.patterns[i])};return r}translateMinus(e){if(!e.patterns||e.patterns.length===0)throw new Dr.AlgebraTranslatorError("MINUS pattern must have patterns");return{type:"minus",left:{type:"bgp",triples:[]},right:this.translateWhere(e.patterns)}}translateValues(e){if(!e.values||!Array.isArray(e.values))throw new Dr.AlgebraTranslatorError("VALUES pattern must have values array");let t=new Set;for(let i of e.values)for(let s of Object.keys(i)){let a=s.startsWith("?")?s.slice(1):s;t.add(a)}let r=e.values.map(i=>this.translateValuesBinding(i));return{type:"values",variables:Array.from(t),bindings:r}}translateValuesBinding(e){let t={};for(let[r,i]of Object.entries(e)){let s=r.startsWith("?")?r.slice(1):r,a=i;if(a)if(a.termType==="NamedNode")t[s]={type:"iri",value:a.value};else if(a.termType==="Literal"){let c=a,l={type:"literal",value:c.value,datatype:c.datatype?.value,language:c.language||void 0};if(c.language){let u=this.directionMappings.get(c.language.toLowerCase());u&&(l.direction=u)}t[s]=l}else throw new Dr.AlgebraTranslatorError(`Unsupported VALUES term type: ${a.termType}`)}return t}translateBind(e,t){if(!e.variable||!e.expression)throw new Dr.AlgebraTranslatorError("BIND pattern must have variable and expression");return{type:"extend",variable:e.variable.value,expression:this.translateExpressionFn(e.expression),input:t}}translateSubquery(e){if(e.queryType!=="SELECT")throw new Dr.AlgebraTranslatorError(`Only SELECT subqueries are supported, got: ${String(e.queryType)}`);let t=this.removeLateralMarker(e);return{type:"subquery",query:this.translateSelectFn(t)}}translateService(e){if(!e.name||e.name.termType!=="NamedNode")throw new Dr.AlgebraTranslatorError("SERVICE pattern must have a NamedNode endpoint");if(!e.patterns||!Array.isArray(e.patterns))throw new Dr.AlgebraTranslatorError("SERVICE pattern must have patterns array");return{type:"service",endpoint:e.name.value,pattern:this.translateWhere(e.patterns),silent:e.silent||!1}}translateGraph(e){if(!e.name)throw new Dr.AlgebraTranslatorError("GRAPH pattern must have a name (IRI or variable)");if(!e.patterns||!Array.isArray(e.patterns))throw new Dr.AlgebraTranslatorError("GRAPH pattern must have patterns array");let t;if(e.name.termType==="NamedNode")t={type:"iri",value:e.name.value};else if(e.name.termType==="Variable")t={type:"variable",value:e.name.value};else throw new Dr.AlgebraTranslatorError(`GRAPH pattern name must be NamedNode or Variable, got: ${e.name.termType}`);return{type:"graph",name:t,pattern:this.translateWhere(e.patterns)}}isLateralPattern(e){if(e.type==="query"&&this.isLateralSubquery(e))return!0;if(e.type==="group"&&e.patterns?.length===1){let t=e.patterns[0];if(t.type==="query"&&this.isLateralSubquery(t))return!0}return!1}extractLateralSubquery(e){if(e.type==="query")return e;if(e.type==="group"&&e.patterns?.length===1){let t=e.patterns[0];if(t.type==="query")return t}throw new Dr.AlgebraTranslatorError("Invalid lateral pattern structure")}isLateralSubquery(e){return!("queryType"in e)||e.queryType!=="SELECT"||!("variables"in e)||!e.variables?!1:e.variables.some(i=>(0,L3.isVariableTerm)(i)&&i.value===N3.LateralTransformer.LATERAL_MARKER)}removeLateralMarker(e){if(!("variables"in e)||!e.variables)return e;let t=e,r=t.variables;return{...t,variables:r.filter(i=>!((0,L3.isVariableTerm)(i)&&i.value===N3.LateralTransformer.LATERAL_MARKER))}}};Gh.PatternTranslator=X_});var j3=S(zh=>{"use strict";Object.defineProperty(zh,"__esModule",{value:!0});zh.AggregateTranslator=void 0;var M3=Oo(),Kj=Bh(),J_=class{static{o(this,"AggregateTranslator")}constructor(e){this.aggregateCounter=0,this.translateExpressionFn=e.translateExpression}resetCounter(){this.aggregateCounter=0}extractAggregatesWithMapping(e,t){if(!e)return[];let r=[];for(let i of e)(0,Kj.isVariableExpression)(i)&&("type"in i.expression&&i.expression.type==="aggregate"?(r.push({variable:i.variable.value,expression:this.translateAggregateExpression(i.expression)}),t.set(i.expression,i.variable.value)):this.collectNestedAggregates(i.expression,r,t));return r}extractGroupVariables(e){return e?e.filter(t=>t.expression&&"termType"in t.expression&&t.expression.termType==="Variable").map(t=>t.expression.value):[]}extractHavingExpressions(e,t,r){if(!e||e.length===0)return[];for(let i of e)this.collectNestedAggregates(i,t,r);return e.map(i=>this.transformExpressionWithAggregateVars(i,r))}transformExpressionWithAggregateVars(e,t){let r=t.get(e);if(r!==void 0)return{type:"variable",name:r};if("type"in e&&e.type==="operation"&&"args"in e){let i=e,s=i.args.filter(u=>!Array.isArray(u)&&!("patterns"in u)).map(u=>this.transformExpressionWithAggregateVars(u,t)),a=["=","!=","<",">","<=",">="],c=["&&","||","!"],l=["+","-","*","/"];return a.includes(i.operator)?{type:"comparison",operator:i.operator,left:s[0],right:s[1]}:c.includes(i.operator)?{type:"logical",operator:i.operator,operands:s}:l.includes(i.operator)?{type:"arithmetic",operator:i.operator,left:s[0],right:s[1]}:{type:"function",function:i.operator,args:s}}return this.translateExpressionFn(e)}translateOrderComparator(e){return{expression:this.translateExpressionFn(e.expression),descending:e.descending||!1}}translateAggregateExpression(e){let t=e.aggregation,r=o(()=>{if(e.expression&&!("termType"in e.expression&&e.expression.termType==="Wildcard"))return this.translateExpressionFn(e.expression)},"translateInnerExpr");if(typeof t=="string"){let s=t.toLowerCase();return["count","sum","avg","min","max","group_concat","sample"].includes(s)?{type:"aggregate",aggregation:s,expression:r(),distinct:e.distinct||!1,separator:e.separator}:{type:"aggregate",aggregation:{type:"custom",iri:t},expression:r(),distinct:e.distinct||!1,separator:e.separator}}let i=t;if(i&&typeof i=="object"){let s,a=i;if(a.termType==="NamedNode"&&typeof a.value=="string")s=a.value;else if("value"in a)s=String(a.value);else throw new M3.AlgebraTranslatorError(`Invalid custom aggregate: expected IRI but got ${JSON.stringify(i)}`);return{type:"aggregate",aggregation:{type:"custom",iri:s},expression:r(),distinct:e.distinct||!1,separator:e.separator}}throw new M3.AlgebraTranslatorError(`Unknown aggregate format: ${JSON.stringify(t)}`)}collectNestedAggregates(e,t,r){if(e){if("type"in e&&e.type==="aggregate"){let i=`__agg${this.aggregateCounter++}`;t.push({variable:i,expression:this.translateAggregateExpression(e)}),r.set(e,i)}else if("type"in e&&e.type==="operation"&&"args"in e){let i=e;for(let s of i.args)!Array.isArray(s)&&"type"in s&&!("patterns"in s)?this.collectNestedAggregates(s,t,r):"termType"in s&&this.collectNestedAggregates(s,t,r)}}}};zh.AggregateTranslator=J_});var kc=S(Pa=>{"use strict";Object.defineProperty(Pa,"__esModule",{value:!0});Pa.AlgebraTranslator=Pa.ExoQLAlgebraTranslator=Pa.AlgebraTranslatorError=void 0;var Hh=Oo(),Qh=Bh(),Yj=F3(),Xj=D3(),Jj=k3(),Zj=j3(),e9=Oo();Object.defineProperty(Pa,"AlgebraTranslatorError",{enumerable:!0,get:o(function(){return e9.AlgebraTranslatorError},"get")});var Kh=class{static{o(this,"ExoQLAlgebraTranslator")}constructor(){this.tripleTranslator=new Yj.TripleTranslator,this.expressionTranslator=new Xj.ExpressionTranslator({translateWhere:o(e=>this.patternTranslator.translateWhere(e),"translateWhere"),translateBGP:o(e=>this.tripleTranslator.translateBGP(e),"translateBGP"),translatePattern:o(e=>this.patternTranslator.translatePattern(e),"translatePattern")}),this.patternTranslator=new Jj.PatternTranslator({translateExpression:o(e=>this.expressionTranslator.translateExpression(e),"translateExpression"),translateSelect:o(e=>this.translateSelect(e),"translateSelect"),translateBGP:o(e=>this.tripleTranslator.translateBGP(e),"translateBGP")}),this.aggregateTranslator=new Zj.AggregateTranslator({translateExpression:o(e=>this.expressionTranslator.translateExpression(e),"translateExpression")})}setDirectionMappings(e){this.tripleTranslator.setDirectionMappings(e),this.patternTranslator.setDirectionMappings(e)}translate(e){if(e.type!=="query")throw new Hh.AlgebraTranslatorError("Only query operations are supported (not updates)");if(e.queryType==="SELECT")return this.translateSelect(e);if(e.queryType==="CONSTRUCT")return this.translateConstruct(e);if(e.queryType==="ASK")return this.translateAsk(e);if(e.queryType==="DESCRIBE")return this.translateDescribe(e);throw new Hh.AlgebraTranslatorError(`Query type ${String(e.queryType)} not yet supported`)}translateSelect(e){if(!e.where||e.where.length===0)throw new Hh.AlgebraTranslatorError("SELECT query must have WHERE clause");let t=this.patternTranslator.translateWhere(e.where);this.aggregateTranslator.resetCounter();let r=new Map,i=Array.isArray(e.variables)?e.variables.filter(l=>!("termType"in l&&l.termType==="Wildcard")):[],s=this.aggregateTranslator.extractAggregatesWithMapping(i,r),a=this.aggregateTranslator.extractGroupVariables(e.group),c=this.aggregateTranslator.extractHavingExpressions(e.having,s,r);if((s.length>0||a.length>0||c.length>0)&&(t={type:"group",variables:a,aggregates:s,having:c.length>0?c:void 0,input:t}),i.length>0){for(let u of i)if((0,Qh.isVariableExpression)(u)){if("type"in u.expression&&u.expression.type==="aggregate")continue;let f=this.aggregateTranslator.transformExpressionWithAggregateVars(u.expression,r);t={type:"extend",variable:u.variable.value,expression:f,input:t}}let l=i.filter(u=>(0,Qh.isVariableTerm)(u)||(0,Qh.isVariableExpression)(u)).map(u=>(0,Qh.isVariableTerm)(u)?u.value:u.variable.value);l.length>0&&(t={type:"project",variables:l,input:t})}return e.distinct&&(t={type:"distinct",input:t}),e.reduced&&(t={type:"reduced",input:t}),e.order&&e.order.length>0&&(t={type:"orderby",comparators:e.order.map(l=>this.aggregateTranslator.translateOrderComparator(l)),input:t}),(e.limit!==void 0||e.offset!==void 0)&&(t={type:"slice",limit:e.limit,offset:e.offset,input:t}),t}translateConstruct(e){let t=this.tripleTranslator.translateConstructTemplate(e.template??[]);if(!e.where||e.where.length===0)throw new Hh.AlgebraTranslatorError("CONSTRUCT query must have WHERE clause");let r=this.patternTranslator.translateWhere(e.where),i=e;return(i.limit!==void 0||i.offset!==void 0)&&(r={type:"slice",limit:i.limit,offset:i.offset,input:r}),{type:"construct",template:t,where:r}}translateAsk(e){return{type:"ask",where:e.where&&e.where.length>0?this.patternTranslator.translateWhere(e.where):{type:"bgp",triples:[]}}}translateDescribe(e){let t=[];if(e.variables&&Array.isArray(e.variables)){let s=e.variables;for(let a of s)a.termType==="Wildcard"||a.value==="*"||(a.termType==="Variable"?t.push({type:"variable",value:a.value}):a.termType==="NamedNode"&&t.push({type:"iri",value:a.value}))}let r;e.where&&e.where.length>0&&(r=this.patternTranslator.translateWhere(e.where));let i=e.describeOptions;return{type:"describe",resources:t,where:r,depth:i?.depth,symmetric:i?.symmetric}}};Pa.ExoQLAlgebraTranslator=Kh;Pa.AlgebraTranslator=Kh});var ls=S(Yh=>{"use strict";Object.defineProperty(Yh,"__esModule",{value:!0});Yh.SolutionMapping=void 0;var $3=De(),V3=Ae(),U3=Vt(),Z_=class n{static{o(this,"SolutionMapping")}constructor(e){this.bindings=e?new Map(e):new Map}get(e){return this.bindings.get(e)}set(e,t){this.bindings.set(e,t)}has(e){return this.bindings.has(e)}variables(){return Array.from(this.bindings.keys())}getBindings(){return new Map(this.bindings)}isCompatibleWith(e){for(let[t,r]of this.bindings.entries()){let i=e.get(t);if(i!==void 0&&!this.areEqual(r,i))return!1}return!0}merge(e){if(!this.isCompatibleWith(e))return null;let t=new n(this.bindings);for(let[r,i]of e.getBindings().entries())t.set(r,i);return t}clone(){return new n(this.bindings)}areEqual(e,t){return e instanceof $3.Literal&&t instanceof $3.Literal?e.equals(t):e instanceof V3.IRI&&t instanceof V3.IRI?e.value===t.value:e instanceof U3.BlankNode&&t instanceof U3.BlankNode?e.id===t.id:!1}toJSON(){let e={};for(let[t,r]of this.bindings.entries())e[t]=r.toString();return e}size(){return this.bindings.size}};Yh.SolutionMapping=Z_});var q3=S(Mc=>{"use strict";Object.defineProperty(Mc,"__esModule",{value:!0});Mc.PropertyPathExecutor=Mc.PropertyPathExecutorError=void 0;var t9=ls(),Xh=Ae(),B3=Vt(),r9=De(),qu=class extends Error{static{o(this,"PropertyPathExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="PropertyPathExecutorError"}};Mc.PropertyPathExecutorError=qu;var e1=class{static{o(this,"PropertyPathExecutor")}constructor(e){this.tripleStore=e,this.MAX_DEPTH=100}async*execute(e,t,r){if(this.isLiteralElement(e)||this.isLiteralElement(r)){let a=this.isLiteralElement(e)?"subject":"object",c=this.isLiteralElement(e)?e:r,l="value"in c?String(c.value):"<unknown>",u=l.length>80?`${l.slice(0,77)}...`:l;console.warn(`[PropertyPathExecutor] literal-safety guard fired: literal in ${a} position \u2014 yielding 0 solutions. value="${u}"`);return}let i=await this.resolveElement(e),s=this.isVariable(r)?null:await this.resolveElement(r);for(let a of i){let c=await this.evaluatePath(a,t,s);for(let l of c){let u=new t9.SolutionMapping;this.isVariable(e)&&u.set(e.value,a),this.isVariable(r)&&u.set(r.value,l),yield u}}}async*executeWithBindings(e,t){if(!this.isPropertyPath(e.predicate))throw new qu("Predicate is not a property path");let r=this.instantiateElement(e.subject,t),i=this.instantiateElement(e.object,t);for await(let s of this.execute(r,e.predicate,i)){let a=t.merge(s);a!==null&&(yield a)}}async evaluatePath(e,t,r){switch(t.pathType){case"/":return this.evaluateSequencePath(e,t.items,r);case"|":return this.evaluateAlternativePath(e,t.items,r);case"^":return this.evaluateInversePath(e,t.items[0],r);case"+":return this.evaluateOneOrMorePath(e,t.items[0],r);case"*":return this.evaluateZeroOrMorePath(e,t.items[0],r);case"?":return this.evaluateZeroOrOnePath(e,t.items[0],r)}}async evaluateSequencePath(e,t,r){let i=new Set([e]);for(let s=0;s<t.length;s++){let a=t[s],c=s===t.length-1,l=new Set;for(let u of i){let f=await this.evaluatePathItem(u,a,c?r:null);for(let d of f)l.add(d)}if(i=l,i.size===0)break}return i}async evaluateAlternativePath(e,t,r){let i=new Set;for(let s of t){let a=await this.evaluatePathItem(e,s,r);for(let c of a)i.add(c)}return i}async evaluateInversePath(e,t,r){if(t.type==="iri"){let i=new Xh.IRI(t.value),s=await this.tripleStore.match(void 0,i,e),a=new Set;for(let c of s)(r===null||this.nodeInSet(c.subject,r))&&a.add(c.subject);return a}else return this.evaluatePath(e,this.invertPath(t),r)}async evaluateOneOrMorePath(e,t,r){let i=new Set,s=new Set,a=[{node:e,depth:0}];for(;a.length>0;){let c=a.shift();if(!c)break;let{node:l,depth:u}=c;if(u>=this.MAX_DEPTH)continue;let f=await this.evaluatePathItem(l,t,null);for(let d of f){let h=this.nodeToKey(d);(r===null||this.nodeInSet(d,r))&&s.add(d),i.has(h)||(i.add(h),a.push({node:d,depth:u+1}))}}return s}async evaluateZeroOrMorePath(e,t,r){let i=await this.evaluateOneOrMorePath(e,t,r);return(r===null||this.nodeInSet(e,r))&&i.add(e),i}async evaluateZeroOrOnePath(e,t,r){let i=new Set;(r===null||this.nodeInSet(e,r))&&i.add(e);let s=await this.evaluatePathItem(e,t,r);for(let a of s)i.add(a);return i}async evaluatePathItem(e,t,r){if(t.type==="iri"){let i=new Xh.IRI(t.value),s=await this.tripleStore.match(e,i,void 0),a=new Set;for(let c of s)(r===null||this.nodeInSet(c.object,r))&&a.add(c.object);return a}else return this.evaluatePath(e,t,r)}invertPath(e){switch(e.pathType){case"^":return e.items[0];case"/":return{type:"path",pathType:"/",items:[...e.items].reverse().map(t=>t.type==="iri"?{type:"path",pathType:"^",items:[t]}:this.invertPath(t))};case"|":return{type:"path",pathType:"|",items:e.items.map(t=>t.type==="iri"?{type:"path",pathType:"^",items:[t]}:this.invertPath(t))};case"+":case"*":case"?":{let t=e.items[0].type==="iri"?{type:"path",pathType:"^",items:[e.items[0]]}:this.invertPath(e.items[0]);return{type:"path",pathType:e.pathType,items:[t]}}}}async resolveElement(e){if(this.isVariable(e)){let r=new Set,i=await this.tripleStore.match(void 0,void 0,void 0);for(let s of i)r.add(s.subject),r.add(s.object);return r}let t=new Set;switch(e.type){case"iri":t.add(new Xh.IRI(e.value));break;case"blank":t.add(new B3.BlankNode(e.value));break;default:throw new qu(`Unsupported element type in subject/object position: ${e.type}`)}return t}instantiateElement(e,t){if(this.isVariable(e)){let r=t.get(e.value);if(r){if(r instanceof Xh.IRI)return{type:"iri",value:r.value};if(r instanceof B3.BlankNode)return{type:"blank",value:r.id};if(r instanceof r9.Literal)return{type:"literal",value:r.value,datatype:r.datatype?.value,language:r.language,direction:r.direction}}}return e}isVariable(e){return e.type==="variable"}isLiteralElement(e){return e.type==="literal"}isPropertyPath(e){return e.type==="path"}nodeToKey(e){return e.toString()}nodeInSet(e,t){let r=this.nodeToKey(e);for(let i of t)if(this.nodeToKey(i)===r)return!0;return!1}};Mc.PropertyPathExecutor=e1});var n1=S(jc=>{"use strict";Object.defineProperty(jc,"__esModule",{value:!0});jc.BGPExecutor=jc.BGPExecutorError=void 0;var Jh=ls(),Fa=Ae(),t1=De(),Zh=Vt(),ep=Au(),n9=q3(),qr=class extends Error{static{o(this,"BGPExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="BGPExecutorError"}};jc.BGPExecutorError=qr;var r1=class{static{o(this,"BGPExecutor")}constructor(e){this.tripleStore=e,this.propertyPathExecutor=new n9.PropertyPathExecutor(e)}async*execute(e){if(e.triples.length===0){yield new Jh.SolutionMapping;return}let t=this.matchTriplePattern(e.triples[0]);for(let r=1;r<e.triples.length;r++)t=this.joinWithPattern(t,e.triples[r]);for await(let r of t)yield r}async executeAll(e){let t=[];for await(let r of this.execute(e))t.push(r);return t}async*executeInGraph(e,t){if(e.triples.length===0){yield new Jh.SolutionMapping;return}let r=this.matchTriplePatternInGraph(e.triples[0],t);for(let i=1;i<e.triples.length;i++)r=this.joinWithPatternInGraph(r,e.triples[i],t);for await(let i of r)yield i}async*matchTriplePatternInGraph(e,t){if(this.isPropertyPath(e.predicate))throw new qr("Property paths within named graphs are not yet supported");let r=e.predicate;if(this.isLiteral(e.subject)||this.isLiteral(r)){this.warnLiteralGuard("matchTriplePatternInGraph",this.isLiteral(e.subject)?"subject":"predicate",this.isLiteral(e.subject)?e.subject:r);return}let i=this.isVariable(e.subject)?void 0:this.toRDFTermAsSubject(e.subject),s=this.isVariable(r)?void 0:this.toRDFTermAsPredicate(r),a=this.isVariable(e.object)?void 0:this.toRDFTerm(e.object);if(!this.tripleStore.matchInGraph)throw new qr("Triple store does not support named graph operations");let c=await this.tripleStore.matchInGraph(i,s,a,t);for(let l of c){let u=new Jh.SolutionMapping;this.isVariable(e.subject)&&u.set(e.subject.value,l.subject),this.isVariable(r)&&u.set(r.value,l.predicate),this.isVariable(e.object)&&u.set(e.object.value,l.object),yield u}}async*joinWithPatternInGraph(e,t,r){let i=[];for await(let s of e)i.push(s);for(let s of i){let a=this.instantiatePattern(t,s);for await(let c of this.matchTriplePatternInGraph(a,r)){let l=s.merge(c);l!==null&&(yield l)}}}async*matchTriplePattern(e){if(this.isPropertyPath(e.predicate)){if(this.isLiteral(e.subject)||this.isLiteral(e.object)){this.warnLiteralGuard("matchTriplePattern.propertyPath",this.isLiteral(e.subject)?"subject":"object",this.isLiteral(e.subject)?e.subject:e.object);return}yield*this.propertyPathExecutor.execute(e.subject,e.predicate,e.object);return}let t=e.predicate;if(this.isLiteral(e.subject)||this.isLiteral(t)){this.warnLiteralGuard("matchTriplePattern",this.isLiteral(e.subject)?"subject":"predicate",this.isLiteral(e.subject)?e.subject:t);return}let r=this.isVariable(e.subject)||this.isQuotedTriple(e.subject)&&this.hasVariablesInQuotedTriple(e.subject)?void 0:this.toRDFTermAsSubject(e.subject),i=this.isVariable(t)?void 0:this.toRDFTermAsPredicate(t),s=this.isVariable(e.object)||this.isQuotedTriple(e.object)&&this.hasVariablesInQuotedTriple(e.object)?void 0:this.toRDFTerm(e.object),a=await this.tripleStore.match(r,i,s);for(let c of a){let l=new Jh.SolutionMapping;if(this.isVariable(e.subject))l.set(e.subject.value,c.subject);else if(this.isQuotedTriple(e.subject)){let u=this.matchQuotedTriplePattern(e.subject,c.subject);if(u===null)continue;for(let[f,d]of u.entries())l.set(f,d)}if(this.isVariable(t)&&l.set(t.value,c.predicate),this.isVariable(e.object))l.set(e.object.value,c.object);else if(this.isQuotedTriple(e.object)){let u=this.matchQuotedTriplePattern(e.object,c.object);if(u===null)continue;for(let[f,d]of u.entries())l.set(f,d)}yield l}}hasVariablesInQuotedTriple(e){return!!(this.isVariable(e.subject)||e.predicate.type==="variable"||this.isVariable(e.object)||this.isQuotedTriple(e.subject)&&this.hasVariablesInQuotedTriple(e.subject)||this.isQuotedTriple(e.object)&&this.hasVariablesInQuotedTriple(e.object))}matchQuotedTriplePattern(e,t){if(!(t instanceof ep.QuotedTriple))return null;let r=new Map;if(this.isVariable(e.subject))r.set(e.subject.value,t.subject);else if(this.isQuotedTriple(e.subject)){let i=this.matchQuotedTriplePattern(e.subject,t.subject);if(i===null)return null;for(let[s,a]of i)r.set(s,a)}else if(!this.elementsMatch(e.subject,t.subject))return null;if(e.predicate.type==="variable")r.set(e.predicate.value,t.predicate);else if(e.predicate.value!==t.predicate.value)return null;if(this.isVariable(e.object))r.set(e.object.value,t.object);else if(this.isQuotedTriple(e.object)){let i=this.matchQuotedTriplePattern(e.object,t.object);if(i===null)return null;for(let[s,a]of i)r.set(s,a)}else if(!this.elementsMatch(e.object,t.object))return null;return r}elementsMatch(e,t){switch(e.type){case"iri":return t instanceof Fa.IRI&&e.value===t.value;case"literal":return!(!(t instanceof t1.Literal)||e.value!==t.value||e.datatype!==t.datatype?.value||e.language!==t.language||e.direction!==t.direction);case"blank":return t instanceof Zh.BlankNode&&e.value===t.id;case"quoted":return t instanceof ep.QuotedTriple?this.toRDFQuotedTriple(e).equals(t):!1;default:return!1}}isPropertyPath(e){return e.type==="path"}async*joinWithPattern(e,t){let r=[];for await(let i of e)r.push(i);for(let i of r){let s=this.instantiatePattern(t,i);for await(let a of this.matchTriplePattern(s)){let c=i.merge(a);c!==null&&(yield c)}}}instantiatePattern(e,t){let r=this.isPropertyPath(e.predicate)?e.predicate:this.instantiateElement(e.predicate,t);return{subject:this.instantiateElement(e.subject,t),predicate:r,object:this.instantiateElement(e.object,t)}}instantiateElement(e,t){if(this.isVariable(e)){let r=t.get(e.value);if(r)return this.toAlgebraElement(r)}return this.isQuotedTriple(e)?this.instantiateQuotedTriple(e,t):e}instantiateQuotedTriple(e,t){let r=this.instantiateElement(e.subject,t),i=e.predicate.type==="variable"?this.instantiatePredicateVariable(e.predicate,t):e.predicate,s=this.instantiateElement(e.object,t);return{type:"quoted",subject:r,predicate:i,object:s}}instantiatePredicateVariable(e,t){let r=t.get(e.value);return r&&r instanceof Fa.IRI?{type:"iri",value:r.value}:e}isVariable(e){return e.type==="variable"}isQuotedTriple(e){return e.type==="quoted"}isLiteral(e){return e.type==="literal"}warnLiteralGuard(e,t,r){let i="value"in r?String(r.value):"<unknown>",s=i.length>80?`${i.slice(0,77)}...`:i;console.warn(`[BGPExecutor] literal-safety guard fired in ${e}: literal in ${t} position \u2014 yielding 0 solutions. value="${s}"`)}toRDFTermAsSubject(e){switch(e.type){case"iri":return new Fa.IRI(e.value);case"blank":return new Zh.BlankNode(e.value);case"literal":throw new qr("Literals cannot appear in subject position");case"variable":throw new qr(`Cannot convert variable to RDF term: ${e.value}`);case"quoted":return this.toRDFQuotedTriple(e);default:throw new qr(`Unknown element type: ${String(e)}`)}}toRDFQuotedTriple(e){let t=this.toRDFTermAsSubject(e.subject),r=e.predicate.type==="iri"?new Fa.IRI(e.predicate.value):(()=>{throw new qr("Quoted triple predicate must be IRI")})(),i=this.toRDFTerm(e.object);return new ep.QuotedTriple(t,r,i)}toRDFTermAsPredicate(e){switch(e.type){case"iri":return new Fa.IRI(e.value);case"literal":throw new qr("Literals cannot appear in predicate position");case"blank":throw new qr("Blank nodes cannot appear in predicate position");case"variable":throw new qr(`Cannot convert variable to RDF term: ${e.value}`);default:throw new qr(`Unknown element type: ${String(e)}`)}}toRDFTerm(e){switch(e.type){case"iri":return new Fa.IRI(e.value);case"literal":return new t1.Literal(e.value,e.datatype?new Fa.IRI(e.datatype):void 0,e.language,e.direction);case"blank":return new Zh.BlankNode(e.value);case"variable":throw new qr(`Cannot convert variable to RDF term: ${e.value}`);case"quoted":return this.toRDFQuotedTriple(e);default:throw new qr(`Unknown element type: ${String(e)}`)}}toAlgebraElement(e){if(e instanceof Fa.IRI)return{type:"iri",value:e.value};if(e instanceof t1.Literal)return{type:"literal",value:e.value,datatype:e.datatype?.value,language:e.language,direction:e.direction};if(e instanceof Zh.BlankNode)return{type:"blank",value:e.id};if(e instanceof ep.QuotedTriple)return this.toAlgebraQuotedTriple(e);throw new qr(`Unknown RDF term type: ${String(e)}`)}toAlgebraQuotedTriple(e){return{type:"quoted",subject:this.toAlgebraElement(e.subject),predicate:{type:"iri",value:e.predicate.value},object:this.toAlgebraElement(e.object)}}};jc.BGPExecutor=r1});var W3=S(tp=>{"use strict";Object.defineProperty(tp,"__esModule",{value:!0});tp.StringFunctions=void 0;var $c=Ae(),Da=De(),i1=Vt(),Wu=class n{static{o(this,"StringFunctions")}static str(e){if(e===void 0)throw new Error("STR: argument is undefined");return e instanceof $c.IRI||e instanceof Da.Literal?e.value:e instanceof i1.BlankNode?e.id:String(e)}static lang(e){if(e===void 0)throw new Error("LANG: argument is undefined");return e instanceof Da.Literal&&e.language?e.language:""}static langdir(e){if(e===void 0)throw new Error("LANGDIR: argument is undefined");return!(e instanceof Da.Literal)||!e.language?"":e.direction?`${e.language}--${e.direction}`:e.language}static langMatches(e,t){let[r,i]=n.parseDirectionalLangTag(e),[s,a]=n.parseDirectionalLangTag(t),c=r.toLowerCase(),l=s.toLowerCase();return l==="*"?c!=="":c===""?l==="":a&&i!==a?!1:c===l?!0:c.startsWith(l+"-")}static parseDirectionalLangTag(e){let t=e.indexOf("--");if(t===-1)return[e,void 0];let r=e.substring(0,t),i=e.substring(t+2).toLowerCase();return[r,i]}static regex(e,t,r){try{let i=r?r.includes("u")?r:r+"u":"u";return new RegExp(t,i).test(e)}catch(i){throw new Error(`REGEX: invalid pattern '${t}': ${i.message}`)}}static contains(e,t){return e.includes(t)}static strStarts(e,t){return e.startsWith(t)}static strEnds(e,t){return e.endsWith(t)}static strlen(e){return e.length}static ucase(e){return e.toUpperCase()}static lcase(e){return e.toLowerCase()}static substr(e,t,r){let i=t-1;if(i<0){if(r!==void 0){let s=r+i;return s<=0?"":e.substring(0,s)}return e}return r!==void 0?e.substring(i,i+r):e.substring(i)}static strBefore(e,t){if(t==="")return"";let r=e.indexOf(t);return r===-1?"":e.substring(0,r)}static strAfter(e,t){if(t==="")return e;let r=e.indexOf(t);return r===-1?"":e.substring(r+t.length)}static concat(...e){return e.join("")}static replace(e,t,r,i){try{let s=i||"g",a=s.includes("u")?s:s+"u",c=new RegExp(t,a);return e.replace(c,r)}catch(s){throw new Error(`REPLACE: invalid pattern '${t}': ${s.message}`)}}static encodeForUri(e){return encodeURIComponent(e)}static normalize(e,t){if(e===void 0)throw new Error("NORMALIZE: string argument is undefined");let r;if(e instanceof Da.Literal)r=e.value;else if(e instanceof $c.IRI)r=e.value;else if(e instanceof i1.BlankNode)r=e.id;else if(typeof e=="string")r=e;else throw new Error("NORMALIZE: first argument must be a string or literal");let i="NFC";if(t!==void 0)if(t instanceof Da.Literal)i=t.value.toUpperCase();else if(typeof t=="string")i=t.toUpperCase();else if(t instanceof $c.IRI)i=t.value.toUpperCase();else throw new Error("NORMALIZE: second argument must be a string literal");if(!n.VALID_NORMALIZATION_FORMS.includes(i))throw new Error(`NORMALIZE: invalid normalization form '${i}'. Valid forms are: NFC, NFD, NFKC, NFKD`);let s=r.normalize(i);return new Da.Literal(s,new $c.IRI("http://www.w3.org/2001/XMLSchema#string"))}static fold(e){if(e===void 0)throw new Error("FOLD: string argument is undefined");let t;if(e instanceof Da.Literal)t=e.value;else if(e instanceof $c.IRI)t=e.value;else if(e instanceof i1.BlankNode)t=e.id;else if(typeof e=="string")t=e;else throw new Error("FOLD: argument must be a string or literal");let r=n.unicodeCaseFold(t);return new Da.Literal(r,new $c.IRI("http://www.w3.org/2001/XMLSchema#string"))}static unicodeCaseFold(e){let t="";for(let r of e){let i=n.CASE_FOLDING_MAP.get(r);i!==void 0?t+=i:t+=r.toLowerCase()}return t}};tp.StringFunctions=Wu;Wu.VALID_NORMALIZATION_FORMS=["NFC","NFD","NFKC","NFKD"];Wu.CASE_FOLDING_MAP=new Map([["\xDF","ss"],["\u1E9E","ss"],["\u03A3","\u03C3"],["\u03C2","\u03C3"],["\u0130","i\u0307"],["I","i"],["\u0587","\u0565\u0582"],["\uFB00","ff"],["\uFB01","fi"],["\uFB02","fl"],["\uFB03","ffi"],["\uFB04","ffl"],["\uFB05","st"],["\uFB06","st"],["\u0390","\u03B9\u0308\u0301"],["\u03B0","\u03C5\u0308\u0301"],["\u017F","s"],["\u1E9B","\u1E61"],["\u212A","k"],["\u212B","\xE5"]])});var G3=S(rp=>{"use strict";Object.defineProperty(rp,"__esModule",{value:!0});rp.MathFunctions=void 0;var s1=class{static{o(this,"MathFunctions")}static msToMinutes(e){return Math.round(e/(1e3*60))}static msToHours(e){return Math.round(e/(1e3*60*60)*100)/100}static msToSeconds(e){return Math.round(e/1e3)}static abs(e){return Math.abs(e)}static round(e){return Math.round(e)}static ceil(e){return Math.ceil(e)}static floor(e){return Math.floor(e)}static rand(){return Math.random()}};rp.MathFunctions=s1});var ip=S(np=>{"use strict";Object.defineProperty(np,"__esModule",{value:!0});np.DateTimeParsing=void 0;var i9=Ae(),s9=De(),a1=class n{static{o(this,"DateTimeParsing")}static parseDate(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`PARSEDATE: invalid date string '${e}'`);return t.getTime()}static parseDayTimeDuration(e){if(!e)throw new Error("parseDayTimeDuration: duration string is empty");let t=!1,r=e.trim();if(r.startsWith("-")&&(t=!0,r=r.substring(1)),!r.startsWith("P"))throw new Error(`parseDayTimeDuration: invalid format, must start with 'P': '${e}'`);r=r.substring(1);let i=0,s=r.indexOf("T"),a="",c="";if(s===-1?a=r:(a=r.substring(0,s),c=r.substring(s+1)),a){let l=a.match(/^(\d+(?:\.\d+)?)D$/);if(l){let u=parseFloat(l[1]);i+=u*24*60*60*1e3}else if(a!=="")throw new Error(`parseDayTimeDuration: invalid day component: '${a}' in '${e}'`)}if(c){let l=c,u=l.match(/^(\d+(?:\.\d+)?)H/);if(u){let h=parseFloat(u[1]);i+=h*60*60*1e3,l=l.substring(u[0].length)}let f=l.match(/^(\d+(?:\.\d+)?)M/);if(f){let h=parseFloat(f[1]);i+=h*60*1e3,l=l.substring(f[0].length)}let d=l.match(/^(\d+(?:\.\d+)?)S$/);if(d){let h=parseFloat(d[1]);i+=h*1e3,l=l.substring(d[0].length)}if(l!=="")throw new Error(`parseDayTimeDuration: invalid time component: '${l}' in '${e}'`)}return t?-i:i}static formatDayTimeDuration(e){let t=e<0,r=Math.abs(e),i=Math.floor(r/(1440*60*1e3));r=r%(1440*60*1e3);let s=Math.floor(r/(3600*1e3));r=r%(3600*1e3);let a=Math.floor(r/(60*1e3));r=r%(60*1e3);let c=r/1e3,l=t?"-P":"P";return i>0&&(l+=`${i}D`),(s>0||a>0||c>0||i===0)&&(l+="T",s>0&&(l+=`${s}H`),a>0&&(l+=`${a}M`),(c>0||s===0&&a===0)&&(Number.isInteger(c)?l+=`${c}S`:l+=`${parseFloat(c.toFixed(3))}S`)),l}static xsdDayTimeDuration(e){return n.parseDayTimeDuration(e),new s9.Literal(e,new i9.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static parseXSDDate(e){let t=/^(-?\d{4})-(\d{2})-(\d{2})(Z|[+-]\d{2}:\d{2})?$/,r=e.match(t);if(!r){let u=new Date(e);return isNaN(u.getTime())?null:new Date(Date.UTC(u.getUTCFullYear(),u.getUTCMonth(),u.getUTCDate()))}let i=parseInt(r[1],10),s=parseInt(r[2],10)-1,a=parseInt(r[3],10),c=r[4],l=new Date(Date.UTC(i,s,a));if(c&&c!=="Z"){let u=c.match(/([+-])(\d{2}):(\d{2})/);if(u){let f=u[1]==="+"?1:-1,d=parseInt(u[2],10),h=parseInt(u[3],10),p=f*(d*60+h)*60*1e3;l=new Date(l.getTime()-p)}}return l}static parseXSDTime(e){let t=/^(\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?(Z|[+-]\d{2}:\d{2})?$/,r=e.match(t);if(!r)return null;let i=parseInt(r[1],10),s=parseInt(r[2],10),a=parseInt(r[3],10),c=r[4],l=r[5];if(i<0||i>24||s<0||s>59||a<0||a>59||i===24&&(s!==0||a!==0))return null;let u=0;if(c){let d=c.padEnd(3,"0").slice(0,3);u=parseInt(d,10)}let f=i*60*60*1e3+s*60*1e3+a*1e3+u;if(i===24&&(f=1440*60*1e3),l&&l!=="Z"){let d=l.match(/([+-])(\d{2}):(\d{2})/);if(d){let h=d[1]==="+"?1:-1,p=parseInt(d[2],10),y=parseInt(d[3],10),b=h*(p*60+y)*60*1e3;f-=b}}return f}static formatDateDuration(e){if(e===0)return"P0D";let t=e<0,r=Math.abs(e);return t?`-P${r}D`:`P${r}D`}static parseYearMonthDuration(e){let t=/^(-)?P(?:(\d+)Y)?(?:(\d+)M)?$/,r=e.match(t);if(!r)throw new Error(`parseYearMonthDuration: invalid format: '${e}'`);let i=r[1]==="-",s=parseInt(r[2]||"0",10),a=parseInt(r[3]||"0",10);if(!r[2]&&!r[3])throw new Error(`parseYearMonthDuration: invalid format (no duration components): '${e}'`);let c=s*12+a;return i?-c:c}static formatYearMonthDuration(e){let t=e<0,r=Math.abs(e),i=Math.floor(r/12),s=r%12,a=t?"-P":"P";return i>0&&(a+=`${i}Y`),(s>0||i===0)&&(a+=`${s}M`),a}static parseYearMonthDurationComponents(e){let t=/^(-)?P(?:(\d+)Y)?(?:(\d+)M)?$/,r=e.match(t);if(!r)throw new Error(`parseYearMonthDurationComponents: invalid format: '${e}'`);let i=r[1]==="-",s=parseInt(r[2]||"0",10),a=parseInt(r[3]||"0",10);if(!r[2]&&!r[3])throw new Error(`parseYearMonthDurationComponents: invalid format (no duration components): '${e}'`);return{years:s,months:a,negative:i}}static parseDurationComponents(e){if(!e)throw new Error("parseDurationComponents: duration string is empty");let t=!1,r=e.trim();if(r.startsWith("-")&&(t=!0,r=r.substring(1)),!r.startsWith("P"))throw new Error(`parseDurationComponents: invalid format, must start with 'P': '${e}'`);r=r.substring(1);let i=0,s=0,a=0,c=0,l=r.indexOf("T"),u="",f="";if(l===-1?u=r:(u=r.substring(0,l),f=r.substring(l+1)),u){let d=u.match(/^(\d+(?:\.\d+)?)D$/);if(d)i=parseFloat(d[1]);else if(u!=="")throw new Error(`parseDurationComponents: invalid day component: '${u}' in '${e}'`)}if(f){let d=f,h=d.match(/^(\d+(?:\.\d+)?)H/);h&&(s=parseFloat(h[1]),d=d.substring(h[0].length));let p=d.match(/^(\d+(?:\.\d+)?)M/);p&&(a=parseFloat(p[1]),d=d.substring(p[0].length));let y=d.match(/^(\d+(?:\.\d+)?)S$/);if(y&&(c=parseFloat(y[1]),d=d.substring(y[0].length)),d!=="")throw new Error(`parseDurationComponents: invalid time component: '${d}' in '${e}'`)}return{negative:t,days:i,hours:s,minutes:a,seconds:c}}};np.DateTimeParsing=a1});var z3=S(sp=>{"use strict";Object.defineProperty(sp,"__esModule",{value:!0});sp.DateTimeArithmetic=void 0;var un=Ae(),xe=De(),Je=ip(),o1=class{static{o(this,"DateTimeArithmetic")}static dateTimeDiff(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=new Date(r),a=new Date(i);if(isNaN(s.getTime()))throw new Error(`dateTimeDiff: invalid first dateTime: '${r}'`);if(isNaN(a.getTime()))throw new Error(`dateTimeDiff: invalid second dateTime: '${i}'`);let c=s.getTime()-a.getTime(),l=Je.DateTimeParsing.formatDayTimeDuration(c);return new xe.Literal(l,new un.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static dateTimeAdd(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=new Date(r);if(isNaN(s.getTime()))throw new Error(`dateTimeAdd: invalid dateTime: '${r}'`);let a=Je.DateTimeParsing.parseDayTimeDuration(i),c=s.getTime()+a,l=new Date(c);return new xe.Literal(l.toISOString(),new un.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static dateTimeSubtract(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=new Date(r);if(isNaN(s.getTime()))throw new Error(`dateTimeSubtract: invalid dateTime: '${r}'`);let a=Je.DateTimeParsing.parseDayTimeDuration(i),c=s.getTime()-a,l=new Date(c);return new xe.Literal(l.toISOString(),new un.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static dateAdd(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseXSDDate(r);if(s===null)throw new Error(`dateAdd: invalid date: '${r}'`);let a=Je.DateTimeParsing.parseDayTimeDuration(i),c=s.getTime()+a,l=new Date(c),u=l.getUTCFullYear(),f=String(l.getUTCMonth()+1).padStart(2,"0"),d=String(l.getUTCDate()).padStart(2,"0"),h=`${u}-${f}-${d}`;return new xe.Literal(h,new un.IRI("http://www.w3.org/2001/XMLSchema#date"))}static dateSubtract(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseXSDDate(r);if(s===null)throw new Error(`dateSubtract: invalid date: '${r}'`);let a=Je.DateTimeParsing.parseDayTimeDuration(i),c=s.getTime()-a,l=new Date(c),u=l.getUTCFullYear(),f=String(l.getUTCMonth()+1).padStart(2,"0"),d=String(l.getUTCDate()).padStart(2,"0"),h=`${u}-${f}-${d}`;return new xe.Literal(h,new un.IRI("http://www.w3.org/2001/XMLSchema#date"))}static dateTimeAddYearMonth(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=new Date(r);if(isNaN(s.getTime()))throw new Error(`dateTimeAddYearMonth: invalid dateTime: '${r}'`);let a=Je.DateTimeParsing.parseYearMonthDuration(i),c=s.getUTCDate();return s.setUTCMonth(s.getUTCMonth()+a),s.getUTCDate()!==c&&s.setUTCDate(0),new xe.Literal(s.toISOString(),new un.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static dateTimeSubtractYearMonth(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=new Date(r);if(isNaN(s.getTime()))throw new Error(`dateTimeSubtractYearMonth: invalid dateTime: '${r}'`);let a=Je.DateTimeParsing.parseYearMonthDuration(i),c=s.getUTCDate();return s.setUTCMonth(s.getUTCMonth()-a),s.getUTCDate()!==c&&s.setUTCDate(0),new xe.Literal(s.toISOString(),new un.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static dateAddYearMonth(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseXSDDate(r);if(s===null)throw new Error(`dateAddYearMonth: invalid date: '${r}'`);let a=Je.DateTimeParsing.parseYearMonthDuration(i),c=s.getUTCDate();s.setUTCMonth(s.getUTCMonth()+a),s.getUTCDate()!==c&&s.setUTCDate(0);let l=s.getUTCFullYear(),u=String(s.getUTCMonth()+1).padStart(2,"0"),f=String(s.getUTCDate()).padStart(2,"0"),d=`${l}-${u}-${f}`;return new xe.Literal(d,new un.IRI("http://www.w3.org/2001/XMLSchema#date"))}static dateSubtractYearMonth(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseXSDDate(r);if(s===null)throw new Error(`dateSubtractYearMonth: invalid date: '${r}'`);let a=Je.DateTimeParsing.parseYearMonthDuration(i),c=s.getUTCDate();s.setUTCMonth(s.getUTCMonth()-a),s.getUTCDate()!==c&&s.setUTCDate(0);let l=s.getUTCFullYear(),u=String(s.getUTCMonth()+1).padStart(2,"0"),f=String(s.getUTCDate()).padStart(2,"0"),d=`${l}-${u}-${f}`;return new xe.Literal(d,new un.IRI("http://www.w3.org/2001/XMLSchema#date"))}static durationAdd(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseDayTimeDuration(r),a=Je.DateTimeParsing.parseDayTimeDuration(i),c=Je.DateTimeParsing.formatDayTimeDuration(s+a);return new xe.Literal(c,new un.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static durationSubtract(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseDayTimeDuration(r),a=Je.DateTimeParsing.parseDayTimeDuration(i),c=Je.DateTimeParsing.formatDayTimeDuration(s-a);return new xe.Literal(c,new un.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static durationMultiply(e,t){let r=e instanceof xe.Literal?e.value:e,i=Je.DateTimeParsing.parseDayTimeDuration(r),s=Je.DateTimeParsing.formatDayTimeDuration(i*t);return new xe.Literal(s,new un.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static durationDivide(e,t){if(t===0)throw new Error("durationDivide: division by zero");let r=e instanceof xe.Literal?e.value:e,i=Je.DateTimeParsing.parseDayTimeDuration(r),s=Je.DateTimeParsing.formatDayTimeDuration(i/t);return new xe.Literal(s,new un.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static yearMonthDurationAdd(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseYearMonthDuration(r),a=Je.DateTimeParsing.parseYearMonthDuration(i),c=Je.DateTimeParsing.formatYearMonthDuration(s+a);return new xe.Literal(c,new un.IRI("http://www.w3.org/2001/XMLSchema#yearMonthDuration"))}static yearMonthDurationSubtract(e,t){let r=e instanceof xe.Literal?e.value:e,i=t instanceof xe.Literal?t.value:t,s=Je.DateTimeParsing.parseYearMonthDuration(r),a=Je.DateTimeParsing.parseYearMonthDuration(i),c=Je.DateTimeParsing.formatYearMonthDuration(s-a);return new xe.Literal(c,new un.IRI("http://www.w3.org/2001/XMLSchema#yearMonthDuration"))}static durationToDays(e){let t=e instanceof xe.Literal?e.value:e;return Je.DateTimeParsing.parseDayTimeDuration(t)/(1440*60*1e3)}static durationToHours(e){let t=e instanceof xe.Literal?e.value:e;return Je.DateTimeParsing.parseDayTimeDuration(t)/(3600*1e3)}static durationToMinutes(e){let t=e instanceof xe.Literal?e.value:e;return Je.DateTimeParsing.parseDayTimeDuration(t)/(60*1e3)}static durationToSeconds(e){let t=e instanceof xe.Literal?e.value:e;return Je.DateTimeParsing.parseDayTimeDuration(t)/1e3}};sp.DateTimeArithmetic=o1});var H3=S(ap=>{"use strict";Object.defineProperty(ap,"__esModule",{value:!0});ap.DateTimeAccessors=void 0;var Gu=Ae(),kt=De(),Tt=ip(),c1=class{static{o(this,"DateTimeAccessors")}static year(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`YEAR: invalid date string '${e}'`);return t.getFullYear()}static month(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`MONTH: invalid date string '${e}'`);return t.getMonth()+1}static day(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`DAY: invalid date string '${e}'`);return t.getDate()}static hours(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`HOURS: invalid date string '${e}'`);return t.getHours()}static minutes(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`MINUTES: invalid date string '${e}'`);return t.getMinutes()}static seconds(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`SECONDS: invalid date string '${e}'`);return t.getSeconds()+t.getMilliseconds()/1e3}static durationDays(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseDurationComponents(t),i=Math.floor(r.days);return r.negative?-i:i}static durationHours(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseDurationComponents(t),i=Math.floor(r.hours);return r.negative?-i:i}static durationMinutes(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseDurationComponents(t),i=Math.floor(r.minutes);return r.negative?-i:i}static durationSeconds(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseDurationComponents(t);return r.negative?-r.seconds:r.seconds}static durationYears(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseYearMonthDurationComponents(t);return r.negative?-r.years:r.years}static durationMonths(e){let t=e instanceof kt.Literal?e.value:e,r=Tt.DateTimeParsing.parseYearMonthDurationComponents(t);return r.negative?-r.months:r.months}static timezone(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`TIMEZONE: invalid date string '${e}'`);let r;if(e.endsWith("Z"))r="PT0S";else{let i=e.match(/([+-]\d{2}):?(\d{2})$/);if(i){let s=parseInt(i[1],10),a=parseInt(i[2],10),c=s>=0?"":"-",l=Math.abs(s);a===0?r=`${c}PT${l}H`:r=`${c}PT${l}H${a}M`}else{let s=-t.getTimezoneOffset(),a=Math.floor(Math.abs(s)/60),c=Math.abs(s)%60,l=s>=0?"":"-";c===0?r=`${l}PT${a}H`:r=`${l}PT${a}H${c}M`}}return new kt.Literal(r,new Gu.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static tz(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`TZ: invalid date string '${e}'`);if(e.endsWith("Z"))return"Z";let r=e.match(/([+-]\d{2}:\d{2})$/);if(r)return r[1];let i=e.match(/([+-])(\d{2})(\d{2})$/);return i?`${i[1]}${i[2]}:${i[3]}`:""}static adjust(e,t){let r=e instanceof kt.Literal?e.value:e,i=new Date(r);if(isNaN(i.getTime()))throw new Error(`ADJUST: invalid dateTime: '${r}'`);if(t==null){let ae=i.getUTCFullYear(),$=String(i.getUTCMonth()+1).padStart(2,"0"),B=String(i.getUTCDate()).padStart(2,"0"),F=String(i.getUTCHours()).padStart(2,"0"),k=String(i.getUTCMinutes()).padStart(2,"0"),ee=String(i.getUTCSeconds()).padStart(2,"0"),Ke=i.getUTCMilliseconds(),at=`${ae}-${$}-${B}T${F}:${k}:${ee}`;return Ke>0&&(at+=`.${String(Ke).padStart(3,"0")}`),new kt.Literal(at,new Gu.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}let s=t instanceof kt.Literal?t.value:t,a=Tt.DateTimeParsing.parseDayTimeDuration(s),c=840*60*1e3;if(Math.abs(a)>c)throw new Error(`ADJUST: timezone offset out of range: '${s}'`);let l=i.getTime(),u=new Date(l+a),f=u.getUTCFullYear(),d=String(u.getUTCMonth()+1).padStart(2,"0"),h=String(u.getUTCDate()).padStart(2,"0"),p=String(u.getUTCHours()).padStart(2,"0"),y=String(u.getUTCMinutes()).padStart(2,"0"),b=String(u.getUTCSeconds()).padStart(2,"0"),w=u.getUTCMilliseconds(),v=a>=0?"+":"-",T=Math.floor(Math.abs(a)/(3600*1e3)),C=Math.floor(Math.abs(a)%(3600*1e3)/(60*1e3)),L=`${v}${String(T).padStart(2,"0")}:${String(C).padStart(2,"0")}`,V=`${f}-${d}-${h}T${p}:${y}:${b}`;return w>0&&(V+=`.${String(w).padStart(3,"0")}`),V+=L,new kt.Literal(V,new Gu.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static now(){return new Date().toISOString()}static dateBefore(e,t){let r=Tt.DateTimeParsing.parseDate(e),i=Tt.DateTimeParsing.parseDate(t);return r<i}static dateAfter(e,t){let r=Tt.DateTimeParsing.parseDate(e),i=Tt.DateTimeParsing.parseDate(t);return r>i}static dateInRange(e,t,r){let i=Tt.DateTimeParsing.parseDate(e),s=Tt.DateTimeParsing.parseDate(t),a=Tt.DateTimeParsing.parseDate(r);return i>=s&&i<=a}static compareDurations(e,t,r){let i=e instanceof kt.Literal?e.value:e,s=t instanceof kt.Literal?t.value:t,a=Tt.DateTimeParsing.parseDayTimeDuration(i),c=Tt.DateTimeParsing.parseDayTimeDuration(s);switch(r){case"=":return a===c;case"!=":return a!==c;case"<":return a<c;case">":return a>c;case"<=":return a<=c;case">=":return a>=c;default:throw new Error(`compareDurations: unknown operator: ${r}`)}}static dateDiffMinutes(e,t){let r=Tt.DateTimeParsing.parseDate(e),i=Tt.DateTimeParsing.parseDate(t),s=Math.abs(i-r);return Math.round(s/(1e3*60))}static dateDiffHours(e,t){let r=Tt.DateTimeParsing.parseDate(e),i=Tt.DateTimeParsing.parseDate(t),s=Math.abs(i-r);return Math.round(s/(1e3*60*60)*100)/100}static timeDiff(e,t){let r=e instanceof kt.Literal?e.value:e,i=t instanceof kt.Literal?t.value:t,s=Tt.DateTimeParsing.parseXSDTime(r),a=Tt.DateTimeParsing.parseXSDTime(i);if(s===null)throw new Error(`timeDiff: invalid first time: '${r}'`);if(a===null)throw new Error(`timeDiff: invalid second time: '${i}'`);let c=s-a,l=Tt.DateTimeParsing.formatDayTimeDuration(c);return new kt.Literal(l,new Gu.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}static isDayTimeDuration(e){return e instanceof kt.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#dayTimeDuration":!1}static isDate(e){return e instanceof kt.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#date":!1}static isYearMonthDuration(e){return e instanceof kt.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#yearMonthDuration":!1}static isTime(e){return e instanceof kt.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#time":!1}static dateDiff(e,t){let r=e instanceof kt.Literal?e.value:e,i=t instanceof kt.Literal?t.value:t,s=Tt.DateTimeParsing.parseXSDDate(r),a=Tt.DateTimeParsing.parseXSDDate(i);if(s===null)throw new Error(`dateDiff: invalid first date: '${r}'`);if(a===null)throw new Error(`dateDiff: invalid second date: '${i}'`);let c=s.getTime()-a.getTime(),l=Math.round(c/(1440*60*1e3)),u=Tt.DateTimeParsing.formatDateDuration(l);return new kt.Literal(u,new Gu.IRI("http://www.w3.org/2001/XMLSchema#dayTimeDuration"))}};ap.DateTimeAccessors=c1});var cp=S(op=>{"use strict";Object.defineProperty(op,"__esModule",{value:!0});op.DateTimeFunctions=void 0;var Vc=ip(),lr=z3(),gt=H3(),l1=class{static{o(this,"DateTimeFunctions")}static parseDate(e){return Vc.DateTimeParsing.parseDate(e)}static parseDayTimeDuration(e){return Vc.DateTimeParsing.parseDayTimeDuration(e)}static formatDayTimeDuration(e){return Vc.DateTimeParsing.formatDayTimeDuration(e)}static xsdDayTimeDuration(e){return Vc.DateTimeParsing.xsdDayTimeDuration(e)}static parseYearMonthDuration(e){return Vc.DateTimeParsing.parseYearMonthDuration(e)}static formatYearMonthDuration(e){return Vc.DateTimeParsing.formatYearMonthDuration(e)}static year(e){return gt.DateTimeAccessors.year(e)}static month(e){return gt.DateTimeAccessors.month(e)}static day(e){return gt.DateTimeAccessors.day(e)}static hours(e){return gt.DateTimeAccessors.hours(e)}static minutes(e){return gt.DateTimeAccessors.minutes(e)}static seconds(e){return gt.DateTimeAccessors.seconds(e)}static durationDays(e){return gt.DateTimeAccessors.durationDays(e)}static durationHours(e){return gt.DateTimeAccessors.durationHours(e)}static durationMinutes(e){return gt.DateTimeAccessors.durationMinutes(e)}static durationSeconds(e){return gt.DateTimeAccessors.durationSeconds(e)}static durationYears(e){return gt.DateTimeAccessors.durationYears(e)}static durationMonths(e){return gt.DateTimeAccessors.durationMonths(e)}static timezone(e){return gt.DateTimeAccessors.timezone(e)}static tz(e){return gt.DateTimeAccessors.tz(e)}static adjust(e,t){return gt.DateTimeAccessors.adjust(e,t)}static now(){return gt.DateTimeAccessors.now()}static dateBefore(e,t){return gt.DateTimeAccessors.dateBefore(e,t)}static dateAfter(e,t){return gt.DateTimeAccessors.dateAfter(e,t)}static dateInRange(e,t,r){return gt.DateTimeAccessors.dateInRange(e,t,r)}static compareDurations(e,t,r){return gt.DateTimeAccessors.compareDurations(e,t,r)}static dateDiffMinutes(e,t){return gt.DateTimeAccessors.dateDiffMinutes(e,t)}static dateDiffHours(e,t){return gt.DateTimeAccessors.dateDiffHours(e,t)}static timeDiff(e,t){return gt.DateTimeAccessors.timeDiff(e,t)}static dateDiff(e,t){return gt.DateTimeAccessors.dateDiff(e,t)}static isDayTimeDuration(e){return gt.DateTimeAccessors.isDayTimeDuration(e)}static isDate(e){return gt.DateTimeAccessors.isDate(e)}static isYearMonthDuration(e){return gt.DateTimeAccessors.isYearMonthDuration(e)}static isTime(e){return gt.DateTimeAccessors.isTime(e)}static dateTimeDiff(e,t){return lr.DateTimeArithmetic.dateTimeDiff(e,t)}static dateTimeAdd(e,t){return lr.DateTimeArithmetic.dateTimeAdd(e,t)}static dateTimeSubtract(e,t){return lr.DateTimeArithmetic.dateTimeSubtract(e,t)}static dateAdd(e,t){return lr.DateTimeArithmetic.dateAdd(e,t)}static dateSubtract(e,t){return lr.DateTimeArithmetic.dateSubtract(e,t)}static dateTimeAddYearMonth(e,t){return lr.DateTimeArithmetic.dateTimeAddYearMonth(e,t)}static dateTimeSubtractYearMonth(e,t){return lr.DateTimeArithmetic.dateTimeSubtractYearMonth(e,t)}static dateAddYearMonth(e,t){return lr.DateTimeArithmetic.dateAddYearMonth(e,t)}static dateSubtractYearMonth(e,t){return lr.DateTimeArithmetic.dateSubtractYearMonth(e,t)}static durationAdd(e,t){return lr.DateTimeArithmetic.durationAdd(e,t)}static durationSubtract(e,t){return lr.DateTimeArithmetic.durationSubtract(e,t)}static durationMultiply(e,t){return lr.DateTimeArithmetic.durationMultiply(e,t)}static durationDivide(e,t){return lr.DateTimeArithmetic.durationDivide(e,t)}static yearMonthDurationAdd(e,t){return lr.DateTimeArithmetic.yearMonthDurationAdd(e,t)}static yearMonthDurationSubtract(e,t){return lr.DateTimeArithmetic.yearMonthDurationSubtract(e,t)}static durationToDays(e){return lr.DateTimeArithmetic.durationToDays(e)}static durationToHours(e){return lr.DateTimeArithmetic.durationToHours(e)}static durationToMinutes(e){return lr.DateTimeArithmetic.durationToMinutes(e)}static durationToSeconds(e){return lr.DateTimeArithmetic.durationToSeconds(e)}};op.DateTimeFunctions=l1});var Q3=S(up=>{"use strict";Object.defineProperty(up,"__esModule",{value:!0});up.LogicalFunctions=void 0;var a9=Ae(),Uc=De(),o9=Vt(),lp=cp(),u1=class n{static{o(this,"LogicalFunctions")}static compare(e,t,r){if(n.isDayTimeDurationValue(e)&&n.isDayTimeDurationValue(t))return lp.DateTimeFunctions.compareDurations(e instanceof Uc.Literal?e:String(e),t instanceof Uc.Literal?t:String(t),r);if(n.isDayTimeDurationValue(e)&&typeof t=="string"&&/^-?P/.test(t))return lp.DateTimeFunctions.compareDurations(e instanceof Uc.Literal?e:String(e),t,r);if(typeof e=="string"&&/^-?P/.test(e)&&n.isDayTimeDurationValue(t))return lp.DateTimeFunctions.compareDurations(e,t instanceof Uc.Literal?t:String(t),r);let i=n.toComparableValue(e),s=n.toComparableValue(t);switch(r){case"=":return i===s;case"!=":return i!==s;case"<":return i<s;case">":return i>s;case"<=":return i<=s;case">=":return i>=s;default:throw new Error(`Unknown comparison operator: ${r}`)}}static isDayTimeDurationValue(e){return e instanceof Uc.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#dayTimeDuration":!1}static toComparableValue(e){if(typeof e=="string"||typeof e=="number")return e;if(e instanceof Uc.Literal){let t=e.datatype?.value;if(t?.includes("#integer")||t?.includes("#decimal")||t?.includes("#double")){let r=parseFloat(e.value);if(!isNaN(r))return r}if(t==="http://www.w3.org/2001/XMLSchema#dayTimeDuration")try{return lp.DateTimeFunctions.parseDayTimeDuration(e.value)}catch{return e.value}return e.value}return e instanceof a9.IRI?e.value:e instanceof o9.BlankNode?e.id:String(e)}static logicalAnd(e){return e.every(t=>t===!0)}static logicalOr(e){return e.some(t=>t===!0)}static logicalNot(e){return!e}static coalesce(e){for(let t of e)if(t!=null)return t}static if(e,t,r){return e?t:r}};up.LogicalFunctions=u1});var K3=S(fp=>{"use strict";Object.defineProperty(fp,"__esModule",{value:!0});fp.RDFTermFunctions=void 0;var Nr=Ae(),bt=De(),mi=Vt(),Bc=Au(),f1=En(),d1=class n{static{o(this,"RDFTermFunctions")}static datatype(e){if(e===void 0)throw new Error("DATATYPE: argument is undefined");if(e instanceof bt.Literal)return e.datatype?e.datatype:e.language?new Nr.IRI("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"):new Nr.IRI("http://www.w3.org/2001/XMLSchema#string");throw new Error("DATATYPE: argument must be a literal")}static bound(e){return e!==void 0}static isIRI(e){return e===void 0?!1:e instanceof Nr.IRI}static isBlank(e){return e===void 0?!1:e instanceof mi.BlankNode}static isLiteral(e){return e===void 0?!1:e instanceof bt.Literal}static isTriple(e){return e===void 0?!1:e instanceof Bc.QuotedTriple}static hasLangdir(e){return e===void 0||!(e instanceof bt.Literal)?!1:!!e.language&&!!e.direction}static isNumeric(e){if(e===void 0||!(e instanceof bt.Literal))return!1;let t=e.datatype?.value;return t?["http://www.w3.org/2001/XMLSchema#integer","http://www.w3.org/2001/XMLSchema#decimal","http://www.w3.org/2001/XMLSchema#float","http://www.w3.org/2001/XMLSchema#double","http://www.w3.org/2001/XMLSchema#nonPositiveInteger","http://www.w3.org/2001/XMLSchema#negativeInteger","http://www.w3.org/2001/XMLSchema#long","http://www.w3.org/2001/XMLSchema#int","http://www.w3.org/2001/XMLSchema#short","http://www.w3.org/2001/XMLSchema#byte","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","http://www.w3.org/2001/XMLSchema#unsignedLong","http://www.w3.org/2001/XMLSchema#unsignedInt","http://www.w3.org/2001/XMLSchema#unsignedShort","http://www.w3.org/2001/XMLSchema#unsignedByte","http://www.w3.org/2001/XMLSchema#positiveInteger"].includes(t):!1}static xsdDateTime(e){let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`xsd:dateTime: invalid date string '${e}'`);return new bt.Literal(t.toISOString(),new Nr.IRI("http://www.w3.org/2001/XMLSchema#dateTime"))}static xsdInteger(e){let t=parseInt(e,10);if(isNaN(t))throw new Error(`xsd:integer: cannot convert '${e}' to integer`);return new bt.Literal(String(t),new Nr.IRI("http://www.w3.org/2001/XMLSchema#integer"))}static xsdDecimal(e){let t=parseFloat(e);if(isNaN(t))throw new Error(`xsd:decimal: cannot convert '${e}' to decimal`);return new bt.Literal(String(t),new Nr.IRI("http://www.w3.org/2001/XMLSchema#decimal"))}static sameTerm(e,t){if(e===void 0&&t===void 0)return!0;if(e===void 0||t===void 0||e.constructor!==t.constructor)return!1;if(e instanceof Nr.IRI&&t instanceof Nr.IRI)return e.value===t.value;if(e instanceof mi.BlankNode&&t instanceof mi.BlankNode)return e.id===t.id;if(e instanceof bt.Literal&&t instanceof bt.Literal){if(e.value!==t.value||e.language!==t.language)return!1;let r=e.datatype?.value,i=t.datatype?.value;return r===i}return!1}static iri(e){if(e===void 0)throw new Error("IRI: argument is undefined");if(e instanceof Nr.IRI)return e;if(e instanceof bt.Literal)return new Nr.IRI(e.value);throw e instanceof mi.BlankNode?new Error("IRI: cannot convert blank node to IRI"):new Error("IRI: unsupported term type")}static uri(e){return n.iri(e)}static bnode(e){if(e===void 0){let t=`b${(0,f1.v4)().replace(/-/g,"").substring(0,12)}`;return new mi.BlankNode(t)}if(e instanceof bt.Literal)return new mi.BlankNode(e.value);if(e instanceof mi.BlankNode)return e;throw new Error("BNODE: argument must be a string literal or omitted")}static strdt(e,t){if(e===void 0)throw new Error("STRDT: lexical form is undefined");if(t===void 0)throw new Error("STRDT: datatype IRI is undefined");let r;if(e instanceof bt.Literal){if(e.language)throw new Error("STRDT: lexical form must not have a language tag");r=e.value}else if(typeof e=="string")r=e;else throw new Error("STRDT: lexical form must be a string literal");let i;if(t instanceof Nr.IRI)i=t;else if(t instanceof bt.Literal)i=new Nr.IRI(t.value);else throw new Error("STRDT: datatype must be an IRI");return new bt.Literal(r,i)}static strlang(e,t){if(e===void 0)throw new Error("STRLANG: lexical form is undefined");if(t===void 0)throw new Error("STRLANG: language tag is undefined");let r;if(e instanceof bt.Literal){if(e.language)throw new Error("STRLANG: lexical form must not already have a language tag");r=e.value}else if(typeof e=="string")r=e;else throw new Error("STRLANG: lexical form must be a string literal");let i;if(t instanceof bt.Literal)i=t.value;else if(typeof t=="string")i=t;else throw new Error("STRLANG: language tag must be a string literal");if(i==="")throw new Error("STRLANG: language tag cannot be empty");return new bt.Literal(r,void 0,i)}static strlangdir(e,t,r){if(e===void 0)throw new Error("STRLANGDIR: lexical form is undefined");if(t===void 0)throw new Error("STRLANGDIR: language tag is undefined");if(r===void 0)throw new Error("STRLANGDIR: direction is undefined");let i;if(e instanceof bt.Literal){if(e.language)throw new Error("STRLANGDIR: lexical form must not already have a language tag");i=e.value}else if(typeof e=="string")i=e;else throw new Error("STRLANGDIR: lexical form must be a string literal");let s;if(t instanceof bt.Literal)s=t.value;else if(typeof t=="string")s=t;else throw new Error("STRLANGDIR: language tag must be a string literal");if(s==="")throw new Error("STRLANGDIR: language tag cannot be empty");let a;if(r instanceof bt.Literal)a=r.value.toLowerCase();else throw new Error("STRLANGDIR: direction must be a string literal");if(a!=="ltr"&&a!=="rtl")throw new Error(`STRLANGDIR: invalid direction '${a}'. Must be 'ltr' or 'rtl'`);return new bt.Literal(i,void 0,s,a)}static uuid(){let e=(0,f1.v4)();return new Nr.IRI(`urn:uuid:${e}`)}static struuid(){let e=(0,f1.v4)();return new bt.Literal(e)}static triple(e,t,r){if(e===void 0)throw new Error("TRIPLE: subject is undefined");if(t===void 0)throw new Error("TRIPLE: predicate is undefined");if(r===void 0)throw new Error("TRIPLE: object is undefined");if(e instanceof bt.Literal)throw new Error("TRIPLE: subject must be IRI, BlankNode, or QuotedTriple, got Literal");if(!(t instanceof Nr.IRI)){let c=t instanceof bt.Literal?"Literal":t instanceof mi.BlankNode?"BlankNode":t instanceof Bc.QuotedTriple?"QuotedTriple":typeof t;throw new Error(`TRIPLE: predicate must be IRI, got ${c}`)}let i=e,s=t,a=r;return new Bc.QuotedTriple(i,s,a)}static subject(e){if(e===void 0)throw new Error("SUBJECT: argument is undefined");if(!(e instanceof Bc.QuotedTriple)){let t=e instanceof Nr.IRI?"IRI":e instanceof bt.Literal?"Literal":e instanceof mi.BlankNode?"BlankNode":typeof e;throw new Error(`SUBJECT: argument must be QuotedTriple, got ${t}`)}return e.subject}static predicate(e){if(e===void 0)throw new Error("PREDICATE: argument is undefined");if(!(e instanceof Bc.QuotedTriple)){let t=e instanceof Nr.IRI?"IRI":e instanceof bt.Literal?"Literal":e instanceof mi.BlankNode?"BlankNode":typeof e;throw new Error(`PREDICATE: argument must be QuotedTriple, got ${t}`)}return e.predicate}static object(e){if(e===void 0)throw new Error("OBJECT: argument is undefined");if(!(e instanceof Bc.QuotedTriple)){let t=e instanceof Nr.IRI?"IRI":e instanceof bt.Literal?"Literal":e instanceof mi.BlankNode?"BlankNode":typeof e;throw new Error(`OBJECT: argument must be QuotedTriple, got ${t}`)}return e.object}};fp.RDFTermFunctions=d1});var Y3=S(dp=>{"use strict";Object.defineProperty(dp,"__esModule",{value:!0});dp.HashFunctions=void 0;var h1=class{static{o(this,"HashFunctions")}static md5(e){return require("crypto").createHash("md5").update(e).digest("hex")}static sha1(e){return require("crypto").createHash("sha1").update(e).digest("hex")}static sha256(e){return require("crypto").createHash("sha256").update(e).digest("hex")}static sha384(e){return require("crypto").createHash("sha384").update(e).digest("hex")}static sha512(e){return require("crypto").createHash("sha512").update(e).digest("hex")}};dp.HashFunctions=h1});var pp=S(hp=>{"use strict";Object.defineProperty(hp,"__esModule",{value:!0});hp.BuiltInFunctions=void 0;var ur=W3(),Na=G3(),oe=cp(),qc=Q3(),Pt=K3(),zu=Y3(),p1=class{static{o(this,"BuiltInFunctions")}static str(...e){return ur.StringFunctions.str(...e)}static lang(...e){return ur.StringFunctions.lang(...e)}static langdir(...e){return ur.StringFunctions.langdir(...e)}static langMatches(...e){return ur.StringFunctions.langMatches(...e)}static regex(...e){return ur.StringFunctions.regex(...e)}static contains(...e){return ur.StringFunctions.contains(...e)}static strStarts(...e){return ur.StringFunctions.strStarts(...e)}static strEnds(...e){return ur.StringFunctions.strEnds(...e)}static strlen(...e){return ur.StringFunctions.strlen(...e)}static ucase(...e){return ur.StringFunctions.ucase(...e)}static lcase(...e){return ur.StringFunctions.lcase(...e)}static substr(...e){return ur.StringFunctions.substr(...e)}static strBefore(...e){return ur.StringFunctions.strBefore(...e)}static strAfter(...e){return ur.StringFunctions.strAfter(...e)}static concat(...e){return ur.StringFunctions.concat(...e)}static replace(...e){return ur.StringFunctions.replace(...e)}static encodeForUri(...e){return ur.StringFunctions.encodeForUri(...e)}static normalize(...e){return ur.StringFunctions.normalize(...e)}static fold(...e){return ur.StringFunctions.fold(...e)}static abs(...e){return Na.MathFunctions.abs(...e)}static round(...e){return Na.MathFunctions.round(...e)}static ceil(...e){return Na.MathFunctions.ceil(...e)}static floor(...e){return Na.MathFunctions.floor(...e)}static rand(){return Na.MathFunctions.rand()}static msToMinutes(...e){return Na.MathFunctions.msToMinutes(...e)}static msToHours(...e){return Na.MathFunctions.msToHours(...e)}static msToSeconds(...e){return Na.MathFunctions.msToSeconds(...e)}static parseDate(...e){return oe.DateTimeFunctions.parseDate(...e)}static dateBefore(...e){return oe.DateTimeFunctions.dateBefore(...e)}static dateAfter(...e){return oe.DateTimeFunctions.dateAfter(...e)}static dateInRange(...e){return oe.DateTimeFunctions.dateInRange(...e)}static dateDiffMinutes(...e){return oe.DateTimeFunctions.dateDiffMinutes(...e)}static dateDiffHours(...e){return oe.DateTimeFunctions.dateDiffHours(...e)}static year(...e){return oe.DateTimeFunctions.year(...e)}static month(...e){return oe.DateTimeFunctions.month(...e)}static day(...e){return oe.DateTimeFunctions.day(...e)}static hours(...e){return oe.DateTimeFunctions.hours(...e)}static minutes(...e){return oe.DateTimeFunctions.minutes(...e)}static seconds(...e){return oe.DateTimeFunctions.seconds(...e)}static timezone(...e){return oe.DateTimeFunctions.timezone(...e)}static tz(...e){return oe.DateTimeFunctions.tz(...e)}static now(){return oe.DateTimeFunctions.now()}static parseDayTimeDuration(...e){return oe.DateTimeFunctions.parseDayTimeDuration(...e)}static formatDayTimeDuration(...e){return oe.DateTimeFunctions.formatDayTimeDuration(...e)}static xsdDayTimeDuration(...e){return oe.DateTimeFunctions.xsdDayTimeDuration(...e)}static compareDurations(...e){return oe.DateTimeFunctions.compareDurations(...e)}static isDayTimeDuration(...e){return oe.DateTimeFunctions.isDayTimeDuration(...e)}static isDate(...e){return oe.DateTimeFunctions.isDate(...e)}static dateDiff(...e){return oe.DateTimeFunctions.dateDiff(...e)}static dateTimeDiff(...e){return oe.DateTimeFunctions.dateTimeDiff(...e)}static dateTimeAdd(...e){return oe.DateTimeFunctions.dateTimeAdd(...e)}static dateTimeSubtract(...e){return oe.DateTimeFunctions.dateTimeSubtract(...e)}static dateAdd(...e){return oe.DateTimeFunctions.dateAdd(...e)}static dateSubtract(...e){return oe.DateTimeFunctions.dateSubtract(...e)}static parseYearMonthDuration(...e){return oe.DateTimeFunctions.parseYearMonthDuration(...e)}static isYearMonthDuration(...e){return oe.DateTimeFunctions.isYearMonthDuration(...e)}static dateTimeAddYearMonth(...e){return oe.DateTimeFunctions.dateTimeAddYearMonth(...e)}static dateTimeSubtractYearMonth(...e){return oe.DateTimeFunctions.dateTimeSubtractYearMonth(...e)}static dateAddYearMonth(...e){return oe.DateTimeFunctions.dateAddYearMonth(...e)}static dateSubtractYearMonth(...e){return oe.DateTimeFunctions.dateSubtractYearMonth(...e)}static durationAdd(...e){return oe.DateTimeFunctions.durationAdd(...e)}static durationSubtract(...e){return oe.DateTimeFunctions.durationSubtract(...e)}static durationMultiply(...e){return oe.DateTimeFunctions.durationMultiply(...e)}static durationDivide(...e){return oe.DateTimeFunctions.durationDivide(...e)}static formatYearMonthDuration(...e){return oe.DateTimeFunctions.formatYearMonthDuration(...e)}static yearMonthDurationAdd(...e){return oe.DateTimeFunctions.yearMonthDurationAdd(...e)}static yearMonthDurationSubtract(...e){return oe.DateTimeFunctions.yearMonthDurationSubtract(...e)}static durationYears(...e){return oe.DateTimeFunctions.durationYears(...e)}static durationMonths(...e){return oe.DateTimeFunctions.durationMonths(...e)}static durationToDays(...e){return oe.DateTimeFunctions.durationToDays(...e)}static durationToHours(...e){return oe.DateTimeFunctions.durationToHours(...e)}static durationToMinutes(...e){return oe.DateTimeFunctions.durationToMinutes(...e)}static durationToSeconds(...e){return oe.DateTimeFunctions.durationToSeconds(...e)}static durationDays(...e){return oe.DateTimeFunctions.durationDays(...e)}static durationHours(...e){return oe.DateTimeFunctions.durationHours(...e)}static durationMinutes(...e){return oe.DateTimeFunctions.durationMinutes(...e)}static durationSeconds(...e){return oe.DateTimeFunctions.durationSeconds(...e)}static adjust(...e){return oe.DateTimeFunctions.adjust(...e)}static isTime(...e){return oe.DateTimeFunctions.isTime(...e)}static timeDiff(...e){return oe.DateTimeFunctions.timeDiff(...e)}static compare(...e){return qc.LogicalFunctions.compare(...e)}static logicalAnd(...e){return qc.LogicalFunctions.logicalAnd(...e)}static logicalOr(...e){return qc.LogicalFunctions.logicalOr(...e)}static logicalNot(...e){return qc.LogicalFunctions.logicalNot(...e)}static coalesce(...e){return qc.LogicalFunctions.coalesce(...e)}static if(...e){return qc.LogicalFunctions.if(...e)}static datatype(...e){return Pt.RDFTermFunctions.datatype(...e)}static bound(...e){return Pt.RDFTermFunctions.bound(...e)}static isIRI(...e){return Pt.RDFTermFunctions.isIRI(...e)}static isBlank(...e){return Pt.RDFTermFunctions.isBlank(...e)}static isLiteral(...e){return Pt.RDFTermFunctions.isLiteral(...e)}static isTriple(...e){return Pt.RDFTermFunctions.isTriple(...e)}static isNumeric(...e){return Pt.RDFTermFunctions.isNumeric(...e)}static hasLangdir(...e){return Pt.RDFTermFunctions.hasLangdir(...e)}static sameTerm(...e){return Pt.RDFTermFunctions.sameTerm(...e)}static iri(...e){return Pt.RDFTermFunctions.iri(...e)}static uri(...e){return Pt.RDFTermFunctions.uri(...e)}static bnode(...e){return Pt.RDFTermFunctions.bnode(...e)}static strdt(...e){return Pt.RDFTermFunctions.strdt(...e)}static strlang(...e){return Pt.RDFTermFunctions.strlang(...e)}static strlangdir(...e){return Pt.RDFTermFunctions.strlangdir(...e)}static uuid(){return Pt.RDFTermFunctions.uuid()}static struuid(){return Pt.RDFTermFunctions.struuid()}static xsdDateTime(...e){return Pt.RDFTermFunctions.xsdDateTime(...e)}static xsdInteger(...e){return Pt.RDFTermFunctions.xsdInteger(...e)}static xsdDecimal(...e){return Pt.RDFTermFunctions.xsdDecimal(...e)}static triple(...e){return Pt.RDFTermFunctions.triple(...e)}static subject(...e){return Pt.RDFTermFunctions.subject(...e)}static predicate(...e){return Pt.RDFTermFunctions.predicate(...e)}static object(...e){return Pt.RDFTermFunctions.object(...e)}static md5(...e){return zu.HashFunctions.md5(...e)}static sha1(...e){return zu.HashFunctions.sha1(...e)}static sha256(...e){return zu.HashFunctions.sha256(...e)}static sha384(...e){return zu.HashFunctions.sha384(...e)}static sha512(...e){return zu.HashFunctions.sha512(...e)}};hp.BuiltInFunctions=p1});var Hu=S(us=>{"use strict";Object.defineProperty(us,"__esModule",{value:!0});us.ExoQLBudgetExceededError=us.ExoQLCycleError=us.ExoQLEvalDisabledError=us.ExoQLForbiddenKeywordError=void 0;var m1=class extends Error{static{o(this,"ExoQLForbiddenKeywordError")}constructor(e,t){super(t??`ExoQLForbiddenKeywordError: keyword "${e}" is not permitted by the exoql__Query AST allowlist`),this.name="ExoQLForbiddenKeywordError",this.keyword=e}};us.ExoQLForbiddenKeywordError=m1;var g1=class extends Error{static{o(this,"ExoQLEvalDisabledError")}constructor(e){super(e??"ExoQLEvalDisabledError: exoql.eval.enabled is false (default). Flip the feature flag to opt in."),this.name="ExoQLEvalDisabledError"}};us.ExoQLEvalDisabledError=g1;var y1=class extends Error{static{o(this,"ExoQLCycleError")}constructor(e,t){super(t??`ExoQLCycleError: cycle detected in nested exo:eval invocations: ${e.join(" \u2192 ")}`),this.name="ExoQLCycleError",this.path=e}};us.ExoQLCycleError=y1;var _1=class extends Error{static{o(this,"ExoQLBudgetExceededError")}constructor(e,t,r,i){super(i??`ExoQLBudgetExceededError: ${e} budget exceeded (limit=${t}, observed=${r})`),this.name="ExoQLBudgetExceededError",this.budget=e,this.limit=t,this.observed=r}};us.ExoQLBudgetExceededError=_1});var sA=S(j=>{"use strict";Object.defineProperty(j,"__esModule",{value:!0});j.functionHandlers=void 0;var M=pp();j.functionHandlers=new Map;j.functionHandlers.set("str",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.str(t)});j.functionHandlers.set("lang",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.lang(t)});j.functionHandlers.set("langmatches",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.langMatches(t,r)});j.functionHandlers.set("contains",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.contains(t,r)});j.functionHandlers.set("strstarts",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.strStarts(t,r)});j.functionHandlers.set("strends",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.strEnds(t,r)});j.functionHandlers.set("strlen",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.strlen(t)});j.functionHandlers.set("ucase",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.ucase(t)});j.functionHandlers.set("lcase",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.lcase(t)});j.functionHandlers.set("substr",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=Number(e.evaluateExpression(n[1],e.solution));if(n[2]){let i=Number(e.evaluateExpression(n[2],e.solution));return M.BuiltInFunctions.substr(t,r,i)}return M.BuiltInFunctions.substr(t,r)});j.functionHandlers.set("strbefore",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.strBefore(t,r)});j.functionHandlers.set("strafter",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.strAfter(t,r)});j.functionHandlers.set("concat",(n,e)=>{let t=n.map(r=>e.getStringValue(e.evaluateExpression(r,e.solution)));return M.BuiltInFunctions.concat(...t)});j.functionHandlers.set("replace",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=e.getStringValue(e.evaluateExpression(n[2],e.solution)),s=n[3]?e.getStringValue(e.evaluateExpression(n[3],e.solution)):void 0;return M.BuiltInFunctions.replace(t,r,i,s)});j.functionHandlers.set("regex",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=n[2]?e.getStringValue(e.evaluateExpression(n[2],e.solution)):void 0;return M.BuiltInFunctions.regex(t,r,i)});j.functionHandlers.set("encode_for_uri",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.encodeForUri(t)});j.functionHandlers.set("datatype",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.datatype(t).value});j.functionHandlers.set("bound",(n,e)=>{let t=n[0];if(t.type==="variable"&&t.name){let r=e.solution.get(t.name);return M.BuiltInFunctions.bound(r)}return!0});var X3=o((n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.isIRI(t)},"isIriHandler");j.functionHandlers.set("isiri",X3);j.functionHandlers.set("isuri",X3);j.functionHandlers.set("isblank",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.isBlank(t)});j.functionHandlers.set("isliteral",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.isLiteral(t)});j.functionHandlers.set("isnumeric",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.isNumeric(t)});j.functionHandlers.set("haslangdir",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.hasLangdir(t)});j.functionHandlers.set("istriple",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.isTriple(t)});j.functionHandlers.set("sameterm",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution),r=e.getTermFromExpression(n[1],e.solution);return M.BuiltInFunctions.sameTerm(t,r)});j.functionHandlers.set("abs",(n,e)=>{let t=Number(e.getStringValue(e.evaluateExpression(n[0],e.solution)));return M.BuiltInFunctions.abs(t)});j.functionHandlers.set("round",(n,e)=>{let t=Number(e.getStringValue(e.evaluateExpression(n[0],e.solution)));return M.BuiltInFunctions.round(t)});j.functionHandlers.set("ceil",(n,e)=>{let t=Number(e.getStringValue(e.evaluateExpression(n[0],e.solution)));return M.BuiltInFunctions.ceil(t)});j.functionHandlers.set("floor",(n,e)=>{let t=Number(e.getStringValue(e.evaluateExpression(n[0],e.solution)));return M.BuiltInFunctions.floor(t)});j.functionHandlers.set("rand",()=>M.BuiltInFunctions.rand());j.functionHandlers.set("parsedate",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.parseDate(t)});j.functionHandlers.set("datebefore",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.dateBefore(t,r)});j.functionHandlers.set("dateafter",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.dateAfter(t,r)});j.functionHandlers.set("dateinrange",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=e.getStringValue(e.evaluateExpression(n[2],e.solution));return M.BuiltInFunctions.dateInRange(t,r,i)});j.functionHandlers.set("datediffminutes",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.dateDiffMinutes(t,r)});j.functionHandlers.set("datediffhours",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution));return M.BuiltInFunctions.dateDiffHours(t,r)});var Wc=o((n,e,t)=>(r,i)=>{let s=i.evaluateExpression(r[0],i.solution);return e&&i.isYearMonthDurationValue(s)?e(s):t&&i.isDayTimeDurationValue(s)?t(s):n(i.getStringValue(s))},"createDateTimeAccessor"),J3=Wc(M.BuiltInFunctions.year.bind(M.BuiltInFunctions),M.BuiltInFunctions.durationYears.bind(M.BuiltInFunctions),null);j.functionHandlers.set("year",J3);j.functionHandlers.set("years",J3);var Z3=Wc(M.BuiltInFunctions.month.bind(M.BuiltInFunctions),M.BuiltInFunctions.durationMonths.bind(M.BuiltInFunctions),null);j.functionHandlers.set("month",Z3);j.functionHandlers.set("months",Z3);var eA=Wc(M.BuiltInFunctions.day.bind(M.BuiltInFunctions),null,M.BuiltInFunctions.durationDays.bind(M.BuiltInFunctions));j.functionHandlers.set("day",eA);j.functionHandlers.set("days",eA);j.functionHandlers.set("hours",Wc(M.BuiltInFunctions.hours.bind(M.BuiltInFunctions),null,M.BuiltInFunctions.durationHours.bind(M.BuiltInFunctions)));j.functionHandlers.set("minutes",Wc(M.BuiltInFunctions.minutes.bind(M.BuiltInFunctions),null,M.BuiltInFunctions.durationMinutes.bind(M.BuiltInFunctions)));j.functionHandlers.set("seconds",Wc(M.BuiltInFunctions.seconds.bind(M.BuiltInFunctions),null,M.BuiltInFunctions.durationSeconds.bind(M.BuiltInFunctions)));j.functionHandlers.set("timezone",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.timezone(t)});j.functionHandlers.set("tz",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.tz(t)});j.functionHandlers.set("adjust",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution),r=n.length>1?e.evaluateExpression(n[1],e.solution):void 0;return M.BuiltInFunctions.adjust(t,r)});j.functionHandlers.set("now",()=>M.BuiltInFunctions.now());var tA=o((n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.xsdDateTime(e.getStringValue(t))},"dateTimeHandler");j.functionHandlers.set("datetime",tA);j.functionHandlers.set("xsd:datetime",tA);var rA=o((n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.xsdInteger(e.getStringValue(t))},"integerHandler");j.functionHandlers.set("integer",rA);j.functionHandlers.set("xsd:integer",rA);var nA=o((n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.xsdDecimal(e.getStringValue(t))},"decimalHandler");j.functionHandlers.set("decimal",nA);j.functionHandlers.set("xsd:decimal",nA);var iA=o((n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.xsdDayTimeDuration(e.getStringValue(t))},"dayTimeDurationHandler");j.functionHandlers.set("daytimeduration",iA);j.functionHandlers.set("xsd:daytimeduration",iA);j.functionHandlers.set("durationtodays",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationToDays(t)});j.functionHandlers.set("durationtohours",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationToHours(t)});j.functionHandlers.set("durationtominutes",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationToMinutes(t)});j.functionHandlers.set("durationtoseconds",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationToSeconds(t)});j.functionHandlers.set("durationdays",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationDays(t)});j.functionHandlers.set("durationhours",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationHours(t)});j.functionHandlers.set("durationminutes",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationMinutes(t)});j.functionHandlers.set("durationseconds",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationSeconds(t)});j.functionHandlers.set("durationyears",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationYears(t)});j.functionHandlers.set("durationmonths",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution);return M.BuiltInFunctions.durationMonths(t)});j.functionHandlers.set("datetimediff",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution),r=e.evaluateExpression(n[1],e.solution);return M.BuiltInFunctions.dateTimeDiff(t,r)});j.functionHandlers.set("datetimeadd",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution),r=e.evaluateExpression(n[1],e.solution);return M.BuiltInFunctions.dateTimeAdd(t,r)});j.functionHandlers.set("datetimesubtract",(n,e)=>{let t=e.evaluateExpression(n[0],e.solution),r=e.evaluateExpression(n[1],e.solution);return M.BuiltInFunctions.dateTimeSubtract(t,r)});j.functionHandlers.set("mstominutes",(n,e)=>{let t=Number(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.msToMinutes(t)});j.functionHandlers.set("mstohours",(n,e)=>{let t=Number(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.msToHours(t)});j.functionHandlers.set("mstoseconds",(n,e)=>{let t=Number(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.msToSeconds(t)});j.functionHandlers.set("md5",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.md5(t)});j.functionHandlers.set("sha1",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.sha1(t)});j.functionHandlers.set("sha256",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.sha256(t)});j.functionHandlers.set("sha384",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.sha384(t)});j.functionHandlers.set("sha512",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution));return M.BuiltInFunctions.sha512(t)});j.functionHandlers.set("subject",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.subject(t)});j.functionHandlers.set("predicate",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.predicate(t)});j.functionHandlers.set("object",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution);return M.BuiltInFunctions.object(t)});j.functionHandlers.set("triple",(n,e)=>{let t=e.getTermFromExpression(n[0],e.solution),r=e.getTermFromExpression(n[1],e.solution),i=e.getTermFromExpression(n[2],e.solution);return M.BuiltInFunctions.triple(t,r,i)});j.functionHandlers.set("days_between",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=new Date(t),s=new Date(r);return Math.floor((s.getTime()-i.getTime())/(1440*60*1e3))});j.functionHandlers.set("minutes_between",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=new Date(t),s=new Date(r);return Math.floor((s.getTime()-i.getTime())/(60*1e3))});j.functionHandlers.set("hours_between",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=new Date(t);return(new Date(r).getTime()-i.getTime())/(3600*1e3)});j.functionHandlers.set("age_days",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=new Date(t);return Math.floor((new Date().getTime()-r.getTime())/(1440*60*1e3))});j.functionHandlers.set("week_number",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=new Date(t),i=new Date(Date.UTC(r.getFullYear(),r.getMonth(),r.getDate()));i.setUTCDate(i.getUTCDate()+4-(i.getUTCDay()||7));let s=new Date(Date.UTC(i.getUTCFullYear(),0,1));return Math.ceil(((i.getTime()-s.getTime())/(1440*60*1e3)+1)/7)});j.functionHandlers.set("format_date",(n,e)=>{let t=e.getStringValue(e.evaluateExpression(n[0],e.solution)),r=e.getStringValue(e.evaluateExpression(n[1],e.solution)),i=new Date(t);return r.replace("YYYY",String(i.getFullYear())).replace("MM",String(i.getMonth()+1).padStart(2,"0")).replace("DD",String(i.getDate()).padStart(2,"0")).replace("HH",String(i.getHours()).padStart(2,"0")).replace("mm",String(i.getMinutes()).padStart(2,"0")).replace("ss",String(i.getSeconds()).padStart(2,"0"))});j.functionHandlers.set("exo:eval",()=>{let{ExoQLEvalDisabledError:n}=Hu();throw new n})});var mp=S(Gc=>{"use strict";Object.defineProperty(Gc,"__esModule",{value:!0});Gc.FilterExecutor=Gc.FilterExecutorError=void 0;var yt=pp(),c9=sA(),S1=Ae(),fs=De(),_r=class extends Error{static{o(this,"FilterExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="FilterExecutorError"}};Gc.FilterExecutorError=_r;var b1=class{static{o(this,"FilterExecutor")}constructor(){this.existsEvaluator=null,this.tripleStore=null,this.uuidCache=new Map}setExistsEvaluator(e){this.existsEvaluator=e}setTripleStore(e){this.tripleStore=e,this.uuidCache.clear()}async*execute(e,t){let r=this.expressionContainsExists(e.expression);for await(let i of t)try{let s;r?s=await this.evaluateExpressionAsync(e.expression,i):s=this.evaluateExpression(e.expression,i),s===!0&&(yield i)}catch{continue}}expressionContainsExists(e){if(!e||typeof e!="object")return!1;if(e.type==="exists")return!0;if(e.type==="logical")return e.operands.some(t=>this.expressionContainsExists(t));if(e.type==="comparison"){let t=e;return this.expressionContainsExists(t.left)||this.expressionContainsExists(t.right)}if(e.type==="arithmetic"){let t=e;return this.expressionContainsExists(t.left)||this.expressionContainsExists(t.right)}if(e.type==="in"){let t=e;return this.expressionContainsExists(t.expression)||t.list.some(r=>this.expressionContainsExists(r))}if(e.type==="function"||e.type==="functionCall"){let t=e;return Array.isArray(t.args)?t.args.some(r=>this.expressionContainsExists(r)):!1}return!1}async executeAll(e,t){let r=[];async function*i(){for(let s of t)yield s}o(i,"generator");for await(let s of this.execute(e,i()))r.push(s);return r}evaluateExpression(e,t){let r=e;if("termType"in e)switch(r.termType){case"Variable":return t.get(r.value);case"Literal":{let i=r.value,s=r.datatype,a=typeof s=="string"?s:s?.value;return a&&i.length>0&&this.shouldPreserveDatatype(a)?new fs.Literal(i,new S1.IRI(a)):i}case"NamedNode":return r.value;default:throw new _r(`Unsupported termType: ${String(r.termType)}`)}switch(e.type){case"comparison":return this.evaluateComparison(e,t);case"logical":return this.evaluateLogical(e,t);case"arithmetic":return this.evaluateArithmetic(e,t);case"function":case"functionCall":return this.evaluateFunction(e,t);case"variable":return t.get(e.name);case"literal":{let i=e;return i.datatype&&i.value.length>0&&this.shouldPreserveDatatype(i.datatype)?new fs.Literal(i.value,new S1.IRI(i.datatype)):i.value}case"in":return this.evaluateIn(e,t);case"exists":throw new _r("EXISTS expressions require async evaluation. Use evaluateExpressionAsync instead.");default:throw new _r(`Unsupported expression type: ${e.type}`)}}async evaluateExpressionAsync(e,t){if(!this.expressionContainsExists(e))return this.evaluateExpression(e,t);if(e.type==="exists")return this.evaluateExists(e,t);if(e.type==="logical")return this.evaluateLogicalAsync(e,t);if(e.type==="comparison"){let r=e,i=await this.evaluateExpressionAsync(r.left,t),s=await this.evaluateExpressionAsync(r.right,t);return yt.BuiltInFunctions.compare(i,s,r.operator)}return e.type==="in"?this.evaluateInAsync(e,t):e.type==="function"||e.type==="functionCall"?this.evaluateFunctionAsync(e,t):this.evaluateExpression(e,t)}async evaluateExists(e,t){if(!this.existsEvaluator)throw new _r("EXISTS evaluator not set. Call setExistsEvaluator before evaluating EXISTS expressions.");let r=await this.existsEvaluator(e.pattern,t);return e.negated?!r:r}async evaluateLogicalAsync(e,t){if(e.operator==="!"){let i=await this.evaluateExpressionAsync(e.operands[0],t);return yt.BuiltInFunctions.logicalNot(i)}let r=[];for(let i of e.operands){let s=await this.evaluateExpressionAsync(i,t);r.push(s)}if(e.operator==="&&")return yt.BuiltInFunctions.logicalAnd(r);if(e.operator==="||")return yt.BuiltInFunctions.logicalOr(r);throw new _r(`Unknown logical operator: ${String(e.operator)}`)}async evaluateInAsync(e,t){let r=await this.evaluateExpressionAsync(e.expression,t),i=!1;for(let s of e.list){let a=await this.evaluateExpressionAsync(s,t);if(yt.BuiltInFunctions.compare(r,a,"=")){i=!0;break}}return e.negated?!i:i}async evaluateFunctionAsync(e,t){let r=e,i=this.extractFunctionName(r.function),s=r.args??[];if(i==="if"){if(s.length!==3)throw new _r("IF requires exactly 3 arguments");let l=await this.evaluateExpressionAsync(s[0],t);return this.toBoolean(l)?this.evaluateExpressionAsync(s[1],t):this.evaluateExpressionAsync(s[2],t)}if(i==="coalesce"){for(let l of s)try{let u=await this.evaluateExpressionAsync(l,t);if(u!=null)return u}catch{continue}return}let a=[];for(let l of s){let u=await this.evaluateExpressionAsync(l,t);a.push(this.wrapAsLiteralExpression(u))}let c={...r,args:a};return this.evaluateFunction(c,t)}wrapAsLiteralExpression(e){return e==null?{type:"literal",value:""}:typeof e=="object"&&"termType"in e?e:e instanceof S1.IRI||e instanceof fs.Literal?{type:"literal",value:e.value}:typeof e=="number"||typeof e=="boolean"||typeof e=="string"?{type:"literal",value:e}:{type:"literal",value:String(e)}}evaluateComparison(e,t){let r=this.evaluateExpression(e.left,t),i=this.evaluateExpression(e.right,t);return yt.BuiltInFunctions.compare(r,i,e.operator)}evaluateLogical(e,t){if(e.operator==="!"){let i=this.evaluateExpression(e.operands[0],t);return yt.BuiltInFunctions.logicalNot(i)}let r=e.operands.map(i=>this.evaluateExpression(i,t));if(e.operator==="&&")return yt.BuiltInFunctions.logicalAnd(r);if(e.operator==="||")return yt.BuiltInFunctions.logicalOr(r);throw new _r(`Unknown logical operator: ${String(e.operator)}`)}evaluateIn(e,t){let r=this.evaluateExpression(e.expression,t),i=e.list.some(s=>{let a=this.evaluateExpression(s,t);return yt.BuiltInFunctions.compare(r,a,"=")});return e.negated?!i:i}evaluateArithmetic(e,t){let r=this.evaluateExpression(e.left,t),i=this.evaluateExpression(e.right,t);if(e.operator==="-"&&this.isDateValue(r)&&this.isDateValue(i))return yt.BuiltInFunctions.dateDiff(r,i);if(e.operator==="-"&&this.isTimeValue(r)&&this.isTimeValue(i))return yt.BuiltInFunctions.timeDiff(r,i);if(e.operator==="-"&&this.isDateTimeValue(r)&&this.isDateTimeValue(i))return yt.BuiltInFunctions.dateTimeDiff(r,i);if(e.operator==="+"&&this.isDateValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.dateAdd(r,i);if(e.operator==="-"&&this.isDateValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.dateSubtract(r,i);if(e.operator==="+"&&this.isDateValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.dateAddYearMonth(r,i);if(e.operator==="-"&&this.isDateValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.dateSubtractYearMonth(r,i);if(e.operator==="+"&&this.isDateTimeValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.dateTimeAdd(r,i);if(e.operator==="-"&&this.isDateTimeValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.dateTimeSubtract(r,i);if(e.operator==="+"&&this.isDateTimeValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.dateTimeAddYearMonth(r,i);if(e.operator==="-"&&this.isDateTimeValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.dateTimeSubtractYearMonth(r,i);if(e.operator==="+"&&this.isDayTimeDurationValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.durationAdd(r,i);if(e.operator==="-"&&this.isDayTimeDurationValue(r)&&this.isDayTimeDurationValue(i))return yt.BuiltInFunctions.durationSubtract(r,i);if(e.operator==="*"&&this.isDayTimeDurationValue(r)&&!this.isDayTimeDurationValue(i)){let c=this.toNumericValue(i);return yt.BuiltInFunctions.durationMultiply(r,c)}if(e.operator==="*"&&!this.isDayTimeDurationValue(r)&&this.isDayTimeDurationValue(i)){let c=this.toNumericValue(r);return yt.BuiltInFunctions.durationMultiply(i,c)}if(e.operator==="/"&&this.isDayTimeDurationValue(r)&&!this.isDayTimeDurationValue(i)){let c=this.toNumericValue(i);if(c===0)throw new _r("Division by zero");return yt.BuiltInFunctions.durationDivide(r,c)}if(e.operator==="+"&&this.isYearMonthDurationValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.yearMonthDurationAdd(r,i);if(e.operator==="-"&&this.isYearMonthDurationValue(r)&&this.isYearMonthDurationValue(i))return yt.BuiltInFunctions.yearMonthDurationSubtract(r,i);let s=this.toNumericValue(r),a=this.toNumericValue(i);switch(e.operator){case"+":return s+a;case"-":return s-a;case"*":return s*a;case"/":if(a===0)throw new _r("Division by zero");return s/a;default:throw new _r(`Unknown arithmetic operator: ${String(e.operator)}`)}}shouldPreserveDatatype(e){return e==="http://www.w3.org/2001/XMLSchema#dateTime"||e==="http://www.w3.org/2001/XMLSchema#date"||e==="http://www.w3.org/2001/XMLSchema#time"||e==="http://www.w3.org/2001/XMLSchema#dayTimeDuration"||e==="http://www.w3.org/2001/XMLSchema#yearMonthDuration"||e==="http://www.w3.org/2001/XMLSchema#duration"}isDayTimeDurationValue(e){return e instanceof fs.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#dayTimeDuration":!1}isYearMonthDurationValue(e){return e instanceof fs.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#yearMonthDuration":!1}toNumericValue(e){if(typeof e=="number")return e;if(e instanceof fs.Literal){let t=e.datatype?.value||"";if(t.includes("#integer")||t.includes("#decimal")||t.includes("#double")||t.includes("#float")){let i=parseFloat(e.value);if(!isNaN(i))return i}let r=parseFloat(e.value);if(!isNaN(r))return r}if(typeof e=="string"){let t=parseFloat(e);if(!isNaN(t))return t}if(e&&typeof e=="object"&&"value"in e){let t=parseFloat(String(e.value));if(!isNaN(t))return t}throw new _r(`Cannot convert to number: ${e}`)}isDateTimeValue(e){if(e instanceof fs.Literal){let t=e.datatype?.value||"";return t.includes("#dateTime")||t.includes("#date")?!0:/^\d{4}-\d{2}-\d{2}(T|\s)/.test(e.value)}return typeof e=="string"?/^\d{4}-\d{2}-\d{2}(T|\s)/.test(e):!1}isDateValue(e){return e instanceof fs.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#date":!1}isTimeValue(e){return e instanceof fs.Literal?(e.datatype?.value||"")==="http://www.w3.org/2001/XMLSchema#time":!1}evaluateFunction(e,t){let r=e,i=this.extractFunctionName(r.function),s=this.evaluateSpecialFunction(i,r.args,t);if(s!==void 0)return s.value;let a=c9.functionHandlers.get(i);if(!a)throw new _r(`Unknown function: ${i}`);let c={evaluateExpression:o((l,u)=>this.evaluateExpression(l,u),"evaluateExpression"),getTermFromExpression:o((l,u)=>this.getTermFromExpression(l,u),"getTermFromExpression"),getStringValue:o(l=>this.getStringValue(l),"getStringValue"),solution:t,isYearMonthDurationValue:o(l=>this.isYearMonthDurationValue(l),"isYearMonthDurationValue"),isDayTimeDurationValue:o(l=>this.isDayTimeDurationValue(l),"isDayTimeDurationValue")};return a(r.args,c)}extractFunctionName(e){if(typeof e=="string")return e.toLowerCase();if(e&&typeof e=="object"&&"value"in e){let t=e.value;return((t.includes("#")?t.split("#").pop():t.split("/").pop())||t).toLowerCase()}throw new _r(`Unknown function format: ${String(e)}`)}evaluateSpecialFunction(e,t,r){switch(e){case"coalesce":for(let i of t)try{let s=this.evaluateExpression(i,r);if(s!=null)return{value:s}}catch{continue}return{value:void 0};case"if":{if(!t||t.length!==3)throw new _r("IF requires exactly 3 arguments");let i=this.evaluateExpression(t[0],r);return{value:this.toBoolean(i)?this.evaluateExpression(t[1],r):this.evaluateExpression(t[2],r)}}case"byuuid":return{value:this.evaluateByUUID({type:"function",function:"byuuid",args:t},r)};default:return}}getTermFromExpression(e,t){let r=e;if(r.type==="variable"&&r.name)return t.get(r.name)}getStringValue(e){return e==null?"":typeof e=="object"&&"value"in e?String(e.value):String(e)}toBoolean(e){if(typeof e=="boolean")return e;if(typeof e=="number")return!isNaN(e)&&e!==0;if(typeof e=="string")return e.length>0;if(e instanceof fs.Literal){let t=e.datatype?.value||"";if(t.includes("#boolean"))return e.value==="true"||e.value==="1";if(t.includes("#integer")||t.includes("#decimal")||t.includes("#double")||t.includes("#float")){let r=parseFloat(e.value);return!isNaN(r)&&r!==0}return e.value.length>0}return!!e}evaluateByUUID(e,t){if(!e.args||e.args.length!==1)throw new _r("exo:byUUID requires exactly 1 argument (UUID string)");let r=this.evaluateExpression(e.args[0],t),i=this.getStringValue(r);if(!i)return;let s=i.toLowerCase();if(this.uuidCache.has(s))return this.uuidCache.get(s)??void 0;if(!this.tripleStore){this.uuidCache.set(s,null);return}if(this.tripleStore.findSubjectsByUUIDSync){let a=this.tripleStore.findSubjectsByUUIDSync(s);if(a.length===0){this.uuidCache.set(s,null);return}let c=a[0];return this.uuidCache.set(s,c),c}this.uuidCache.set(s,null)}cacheUUIDResult(e,t){let r=e.toLowerCase();this.uuidCache.set(r,t)}getCachedUUID(e){let t=e.toLowerCase();if(this.uuidCache.has(t))return this.uuidCache.get(t)}};Gc.FilterExecutor=b1});var w1=S(gp=>{"use strict";Object.defineProperty(gp,"__esModule",{value:!0});gp.OptionalExecutor=void 0;var v1=class{static{o(this,"OptionalExecutor")}async*execute(e,t){let r=[];for await(let s of e)r.push(s);let i=[];for await(let s of t)i.push(s);yield*this.hashJoin(r,i)}async executeAll(e,t){let r=[];for(let i of this.hashJoin(e,t))r.push(i);return r}*hashJoin(e,t){if(e.length===0)return;if(t.length===0){yield*e;return}let r=new Set;for(let l of e)for(let u of l.variables())r.add(u);let i=new Set;for(let l of t)for(let u of l.variables())i.add(u);let s=[];for(let l of r)i.has(l)&&s.push(l);if(s.sort(),s.length===0){yield*this.nestedLoopJoin(e,t);return}let a="\0",c=new Map;for(let l of t){let u=this.computeHashKey(l,s,a),f=c.get(u);f||(f=[],c.set(u,f)),f.push(l)}for(let l of e){let u=this.computeHashKey(l,s,a),f=c.get(u),d=!1;if(f)for(let h of f){let p=l.merge(h);p!==null&&(yield p,d=!0)}d||(yield l)}}computeHashKey(e,t,r){let i=[];for(let s of t){let a=e.get(s);i.push(a!==void 0?a.toString():"UNBOUND")}return i.join(r)}*nestedLoopJoin(e,t){for(let r of e){let i=!1;for(let s of t){let a=r.merge(s);a!==null&&(yield a,i=!0)}i||(yield r)}}};gp.OptionalExecutor=v1});var T1=S(yp=>{"use strict";Object.defineProperty(yp,"__esModule",{value:!0});yp.UnionExecutor=void 0;var E1=class{static{o(this,"UnionExecutor")}async*execute(e,t){let r=new Set;for await(let i of e){let s=this.getSolutionKey(i);r.has(s)||(r.add(s),yield i)}for await(let i of t){let s=this.getSolutionKey(i);r.has(s)||(r.add(s),yield i)}}async executeAll(e,t){let r=[];async function*i(){for(let a of e)yield a}o(i,"generateLeft");async function*s(){for(let a of t)yield a}o(s,"generateRight");for await(let a of this.execute(i(),s()))r.push(a);return r}getSolutionKey(e){let t=e.toJSON();return Object.keys(t).sort().map(i=>`${i}=${t[i]}`).join("|")}};yp.UnionExecutor=E1});var aA=S(_p=>{"use strict";Object.defineProperty(_p,"__esModule",{value:!0});_p.MinusExecutor=void 0;var A1=class{static{o(this,"MinusExecutor")}async*execute(e,t){let r=[];for await(let s of e)r.push(s);let i=[];for await(let s of t)i.push(s);for(let s of r){let a=!1;for(let c of i)if(this.areCompatible(s,c)){a=!0;break}a||(yield s)}}async executeAll(e,t){let r=[];async function*i(){for(let a of e)yield a}o(i,"generateLeft");async function*s(){for(let a of t)yield a}o(s,"generateRight");for await(let a of this.execute(i(),s()))r.push(a);return r}areCompatible(e,t){let r=e.variables(),i=new Set(t.variables()),s=r.filter(a=>i.has(a));if(s.length===0)return!1;for(let a of s){let c=e.get(a),l=t.get(a);if(c===void 0||l===void 0||c.toString()!==l.toString())return!1}return!0}};_p.MinusExecutor=A1});var cA=S(zc=>{"use strict";Object.defineProperty(zc,"__esModule",{value:!0});zc.ValuesExecutor=zc.ValuesExecutorError=void 0;var l9=ls(),oA=Ae(),u9=De(),Sp=class extends Error{static{o(this,"ValuesExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="ValuesExecutorError"}};zc.ValuesExecutorError=Sp;var x1=class{static{o(this,"ValuesExecutor")}async*execute(e){if(e.bindings.length!==0)for(let t of e.bindings)yield this.createSolutionMapping(t)}async executeAll(e){let t=[];for await(let r of this.execute(e))t.push(r);return t}createSolutionMapping(e){let t=new l9.SolutionMapping;for(let[r,i]of Object.entries(e)){let s=this.toRDFTerm(i);t.set(r,s)}return t}toRDFTerm(e){if(e.type==="iri")return new oA.IRI(e.value);if(e.type==="literal")return new u9.Literal(e.value,e.datatype?new oA.IRI(e.datatype):void 0,e.language,e.direction);throw new Sp(`Unknown term type: ${e.type}`)}};zc.ValuesExecutor=x1});var I1=S(Qc=>{"use strict";Object.defineProperty(Qc,"__esModule",{value:!0});Qc.CustomAggregateRegistry=Qc.CustomAggregateError=void 0;var Hc=class extends Error{static{o(this,"CustomAggregateError")}constructor(e,t){super(e),this.iri=t,this.name="CustomAggregateError"}};Qc.CustomAggregateError=Hc;var bp=class n{static{o(this,"CustomAggregateRegistry")}constructor(){this.aggregates=new Map}static getInstance(){return n.instance||(n.instance=new n),n.instance}static resetInstance(){n.instance&&n.instance.clear(),n.instance=null}register(e,t){if(!e||typeof e!="string")throw new Hc("Aggregate IRI must be a non-empty string");if(!t||typeof t.init!="function"||typeof t.step!="function"||typeof t.finalize!="function")throw new Hc("Aggregate must implement init(), step(), and finalize() methods",e);if(this.aggregates.has(e))throw new Hc(`Aggregate with IRI "${e}" is already registered`,e);this.aggregates.set(e,t)}unregister(e){return this.aggregates.delete(e)}get(e){return this.aggregates.get(e)}has(e){return this.aggregates.has(e)}getRegisteredIris(){return Array.from(this.aggregates.keys())}clear(){this.aggregates.clear()}get size(){return this.aggregates.size}};Qc.CustomAggregateRegistry=bp;bp.instance=null});var C1=S(Ze=>{"use strict";Object.defineProperty(Ze,"__esModule",{value:!0});Ze.BUILT_IN_AGGREGATES=Ze.modeAggregate=Ze.stddevAggregate=Ze.varianceAggregate=Ze.medianAggregate=Ze.EXO_AGGREGATE_NS=void 0;Ze.getNumericValue=vp;Ze.createDecimalLiteral=gi;Ze.createDoubleLiteral=h9;Ze.createPercentileAggregate=Po;var Fo=De(),Kc=Ae(),f9=new Kc.IRI("http://www.w3.org/2001/XMLSchema#decimal"),d9=new Kc.IRI("http://www.w3.org/2001/XMLSchema#double");Ze.EXO_AGGREGATE_NS="https://exocortex.my/ontology/agg#";function vp(n){return n==null?NaN:typeof n=="number"?n:typeof n=="string"?parseFloat(n):n instanceof Fo.Literal?parseFloat(n.value):n instanceof Kc.IRI?NaN:typeof n=="boolean"?n?1:0:NaN}o(vp,"getNumericValue");function gi(n){return new Fo.Literal(String(n),f9)}o(gi,"createDecimalLiteral");function h9(n){return new Fo.Literal(String(n),d9)}o(h9,"createDoubleLiteral");Ze.medianAggregate={init(){return{values:[]}},step(n,e){let t=n,r=vp(e);isNaN(r)||t.values.push(r)},finalize(n){let e=n,{values:t}=e;if(t.length===0)return gi(0);let r=[...t].sort((a,c)=>a-c),i=Math.floor(r.length/2),s=r.length%2!==0?r[i]:(r[i-1]+r[i])/2;return gi(s)}};Ze.varianceAggregate={init(){return{values:[]}},step(n,e){let t=n,r=vp(e);isNaN(r)||t.values.push(r)},finalize(n){let e=n,{values:t}=e;if(t.length===0)return gi(0);let r=t.reduce((s,a)=>s+a,0)/t.length,i=t.reduce((s,a)=>s+Math.pow(a-r,2),0)/t.length;return gi(i)}};Ze.stddevAggregate={init(){return{values:[]}},step(n,e){Ze.varianceAggregate.step(n,e)},finalize(n){let e=n,{values:t}=e;if(t.length===0)return gi(0);let r=t.reduce((s,a)=>s+a,0)/t.length,i=t.reduce((s,a)=>s+Math.pow(a-r,2),0)/t.length;return gi(Math.sqrt(i))}};Ze.modeAggregate={init(){return{counts:new Map,values:new Map}},step(n,e){if(e==null)return;let t=n,r=String(e instanceof Fo.Literal||e instanceof Kc.IRI?e.value:e),i=t.counts.get(r)||0;t.counts.set(r,i+1),t.values.set(r,e)},finalize(n){let e=n;if(e.counts.size===0)return new Fo.Literal(" ",new Kc.IRI("http://www.w3.org/2001/XMLSchema#string"));let t="",r=0;for(let[a,c]of e.counts)c>r&&(r=c,t=a);let i=e.values.get(t);if(i instanceof Fo.Literal)return i;let s=parseFloat(t);return isNaN(s)?new Fo.Literal(t,new Kc.IRI("http://www.w3.org/2001/XMLSchema#string")):gi(s)}};function Po(n){let e=Math.max(0,Math.min(100,n))/100;return{init(){return{values:[],percentile:e}},step(t,r){let i=t,s=vp(r);isNaN(s)||i.values.push(s)},finalize(t){let r=t,{values:i}=r;if(i.length===0)return gi(0);let s=[...i].sort((d,h)=>d-h),a=r.percentile*(s.length-1),c=Math.floor(a),l=Math.ceil(a);if(c===l)return gi(s[c]);let u=a-c,f=s[c]*(1-u)+s[l]*u;return gi(f)}}}o(Po,"createPercentileAggregate");Ze.BUILT_IN_AGGREGATES={[`${Ze.EXO_AGGREGATE_NS}median`]:Ze.medianAggregate,[`${Ze.EXO_AGGREGATE_NS}variance`]:Ze.varianceAggregate,[`${Ze.EXO_AGGREGATE_NS}stddev`]:Ze.stddevAggregate,[`${Ze.EXO_AGGREGATE_NS}mode`]:Ze.modeAggregate,[`${Ze.EXO_AGGREGATE_NS}percentile25`]:Po(25),[`${Ze.EXO_AGGREGATE_NS}percentile50`]:Po(50),[`${Ze.EXO_AGGREGATE_NS}percentile75`]:Po(75),[`${Ze.EXO_AGGREGATE_NS}percentile90`]:Po(90),[`${Ze.EXO_AGGREGATE_NS}percentile95`]:Po(95),[`${Ze.EXO_AGGREGATE_NS}percentile99`]:Po(99)}});var fA=S(Yc=>{"use strict";Object.defineProperty(Yc,"__esModule",{value:!0});Yc.AggregateExecutor=Yc.AggregateExecutorError=void 0;var fr=De(),O1=Ae(),p9=mp(),m9=I1(),g9=C1(),lA=new O1.IRI("http://www.w3.org/2001/XMLSchema#integer"),Do=new O1.IRI("http://www.w3.org/2001/XMLSchema#decimal"),ds=new O1.IRI("http://www.w3.org/2001/XMLSchema#string");function uA(n){return typeof n=="object"&&n.type==="custom"}o(uA,"isCustomAggregation");var Qu=class extends Error{static{o(this,"AggregateExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="AggregateExecutorError"}};Yc.AggregateExecutorError=Qu;var R1=class{static{o(this,"AggregateExecutor")}constructor(){this.filterExecutor=new p9.FilterExecutor}execute(e,t){let r=this.groupSolutions(t,e.variables),i=[];for(let[s,a]of r.entries()){let c=new Map;for(let f of e.variables)if(a.length>0){let d=a[0].get(f);d&&c.set(f,d)}for(let f of e.aggregates){let d=this.computeAggregate(f.expression,a);c.set(f.variable,d)}let{SolutionMapping:l}=ls(),u=new l;for(let[f,d]of c.entries())u.set(f,d);i.push(u)}if(i.length===0&&e.aggregates.length>0){let s=this.createEmptyAggregateResult(e);s&&i.push(s)}return i}groupSolutions(e,t){let r=new Map;if(t.length===0)return r.set("",e),r;for(let i of e){let s=this.computeGroupKey(i,t),a=r.get(s);a?a.push(i):r.set(s,[i])}return r}computeGroupKey(e,t){return t.map(r=>{let i=e.get(r);return i?this.termToString(i):""}).join("|")}termToString(e){if(e&&typeof e=="object"){if("value"in e)return String(e.value);if("id"in e)return String(e.id)}return String(e)}computeAggregate(e,t){if(uA(e.aggregation))return this.computeCustomAggregate(e,t);let r=this.extractValues(e,t),i=e.aggregation;switch(i){case"count":{let s=this.computeCount(r,e.distinct);return new fr.Literal(String(s),lA)}case"sum":{let s=this.computeSum(r);return new fr.Literal(String(s),Do)}case"avg":{let s=this.computeAvg(r);return new fr.Literal(String(s),Do)}case"min":{let s=this.computeMin(r);return s===void 0?new fr.Literal("",ds):typeof s=="number"?new fr.Literal(String(s),Do):new fr.Literal(String(s),ds)}case"max":{let s=this.computeMax(r);return s===void 0?new fr.Literal("",ds):typeof s=="number"?new fr.Literal(String(s),Do):new fr.Literal(String(s),ds)}case"group_concat":{let s=this.computeGroupConcat(r,e.separator||" ",e.distinct);return new fr.Literal(s||" ",ds)}case"sample":{let s=this.computeSample(r,e.distinct);return s===void 0?new fr.Literal(" ",ds):typeof s=="number"?new fr.Literal(String(s),Do):new fr.Literal(String(s),ds)}default:{let s=i;throw new Qu(`Unknown aggregation function: ${s}`)}}}computeCustomAggregate(e,t){let i=e.aggregation.iri,a=m9.CustomAggregateRegistry.getInstance().get(i);if(a||(a=g9.BUILT_IN_AGGREGATES[i]),!a)throw new Qu(`Unknown custom aggregate function: ${i}. Register it with CustomAggregateRegistry.getInstance().register() or use a built-in aggregate.`);let c=a.init();for(let l of t){let u=null;if(e.expression){let f=this.evaluateExpression(e.expression,l);f!==void 0&&(u=f)}else u=1;a.step(c,u)}return a.finalize(c)}extractValues(e,t){if(!e.expression)return t.map(()=>1);let r=[];for(let i of t){let s=this.evaluateExpression(e.expression,i);s!=null&&r.push(s)}return r}evaluateExpression(e,t){if(e.type==="variable"){let r=t.get(e.name);return r==null?void 0:typeof r=="number"||typeof r=="string"||typeof r=="boolean"?r:typeof r=="object"&&"value"in r?r.value:r}if(e.type==="literal")return e.value;try{return this.filterExecutor.evaluateExpression(e,t)}catch{return}}computeCount(e,t){return t?new Set(e.map(r=>String(r))).size:e.length}computeSum(e){return e.map(r=>parseFloat(String(r))).filter(r=>!isNaN(r)).reduce((r,i)=>r+i,0)}computeAvg(e){let t=e.map(r=>parseFloat(String(r))).filter(r=>!isNaN(r));return t.length===0?0:t.reduce((r,i)=>r+i,0)/t.length}computeMin(e){if(e.length===0)return;let t=e.map(i=>parseFloat(String(i))).filter(i=>!isNaN(i));if(t.length>0)return Math.min(...t);let r=e.map(i=>String(i));return r.reduce((i,s)=>s<i?s:i,r[0])}computeMax(e){if(e.length===0)return;let t=e.map(i=>parseFloat(String(i))).filter(i=>!isNaN(i));if(t.length>0)return Math.max(...t);let r=e.map(i=>String(i));return r.reduce((i,s)=>s>i?s:i,r[0])}computeGroupConcat(e,t,r){let i=e.map(s=>String(s));return r&&(i=[...new Set(i)]),i.join(t)}computeSample(e,t){if(e.length===0)return;if(t){let s=[...new Set(e.map(l=>String(l)))];if(s.length===0)return;let a=s[0],c=parseFloat(a);return isNaN(c)?a:c}let r=e[0];if(typeof r=="number")return r;let i=parseFloat(String(r));return isNaN(i)?String(r):i}createEmptyAggregateResult(e){let{SolutionMapping:t}=ls(),r=new t;for(let i of e.aggregates){let s=i.expression.aggregation;if(uA(s)){r.set(i.variable,new fr.Literal("0",Do));continue}switch(s){case"count":r.set(i.variable,new fr.Literal("0",lA));break;case"sum":case"avg":r.set(i.variable,new fr.Literal("0",Do));break;case"group_concat":r.set(i.variable,new fr.Literal(" ",ds));break;case"min":case"max":case"sample":r.set(i.variable,new fr.Literal("",ds));break;default:r.set(i.variable,new fr.Literal("",ds))}}return r}};Yc.AggregateExecutor=R1});var N1=S(wp=>{"use strict";Object.defineProperty(wp,"__esModule",{value:!0});wp.ConstructExecutor=void 0;var y9=Kn(),No=Ae(),P1=De(),F1=Vt(),_9=Au(),D1=class{static{o(this,"ConstructExecutor")}async execute(e,t){let r=[],i=new Set;for(let s of t)for(let a of e)try{let c=this.instantiateTriple(a,s),l=`${c.subject.toString()}|${c.predicate.toString()}|${c.object.toString()}`;i.has(l)||(i.add(l),r.push(c))}catch{continue}return r}instantiateTriple(e,t){if(this.isPropertyPath(e.predicate))throw new Error("Property paths are not supported in CONSTRUCT templates");let r=this.instantiateElement(e.subject,t),i=this.instantiateElement(e.predicate,t),s=this.instantiateElement(e.object,t);return new y9.Triple(r,i,s)}isPropertyPath(e){return e.type==="path"}instantiateElement(e,t){if(e.type==="variable"){let r=t.get(e.value);if(!r)throw new Error(`Unbound variable: ${e.value}`);return r}if(e.type==="iri")return new No.IRI(e.value);if(e.type==="literal")return new P1.Literal(e.value,e.datatype?new No.IRI(e.datatype):void 0,e.language);if(e.type==="blank")return new F1.BlankNode(e.value);if(e.type==="quoted")return this.instantiateQuotedTriple(e,t);throw new Error(`Unknown element type: ${e.type}`)}instantiateQuotedTriple(e,t){let r=this.instantiateQuotedSubject(e.subject,t),i=this.instantiateQuotedPredicate(e.predicate,t),s=this.instantiateQuotedObject(e.object,t);return new _9.QuotedTriple(r,i,s)}instantiateQuotedSubject(e,t){if(e.type==="variable"){let r=t.get(e.value);if(!r)throw new Error(`Unbound variable in quoted triple subject: ${e.value}`);if(r instanceof P1.Literal)throw new Error("Literals cannot appear in quoted triple subject position");return r}if(e.type==="iri")return new No.IRI(e.value);if(e.type==="blank")return new F1.BlankNode(e.value);if(e.type==="quoted")return this.instantiateQuotedTriple(e,t);throw new Error(`Invalid element type for quoted triple subject: ${e.type}`)}instantiateQuotedPredicate(e,t){if(e.type==="variable"){let r=t.get(e.value);if(!r)throw new Error(`Unbound variable in quoted triple predicate: ${e.value}`);if(!(r instanceof No.IRI))throw new Error("Quoted triple predicate must be an IRI");return r}return new No.IRI(e.value)}instantiateQuotedObject(e,t){if(e.type==="variable"){let i=t.get(e.value);if(!i)throw new Error(`Unbound variable in quoted triple object: ${e.value}`);return i}if(e.type==="iri")return new No.IRI(e.value);if(e.type==="blank")return new F1.BlankNode(e.value);if(e.type==="literal")return new P1.Literal(e.value,e.datatype?new No.IRI(e.datatype):void 0,e.language);if(e.type==="quoted")return this.instantiateQuotedTriple(e,t);let r=e;throw new Error(`Invalid element type for quoted triple object: ${r.type}`)}};wp.ConstructExecutor=D1});var hA=S(Xc=>{"use strict";Object.defineProperty(Xc,"__esModule",{value:!0});Xc.ServiceExecutor=Xc.ServiceExecutorError=void 0;var S9=ls(),dA=Ae(),b9=De(),v9=Vt(),Lo=class extends Error{static{o(this,"ServiceExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="ServiceExecutorError"}};Xc.ServiceExecutorError=Lo;var L1=class{static{o(this,"ServiceExecutor")}constructor(e={}){this.timeout=e.timeout??3e4,this.httpClient=e.httpClient??((t,r)=>fetch(t,r)),this.maxRetries=e.maxRetries??2,this.retryDelay=e.retryDelay??1e3}async*execute(e,t){try{let r=t(e.pattern),i=await this.executeRemoteQuery(e.endpoint,r);for(let s of i)yield s}catch(r){if(e.silent)return;throw r}}async executeRemoteQuery(e,t){let r;for(let i=0;i<=this.maxRetries;i++)try{let s=new AbortController,a=setTimeout(()=>s.abort(),this.timeout);try{let c=await this.httpClient(e,{method:"POST",headers:{"Content-Type":"application/sparql-query",Accept:"application/sparql-results+json"},body:t,signal:s.signal});if(!c.ok)throw new Lo(`Remote SPARQL endpoint returned ${c.status}: ${c.statusText}`);let l=await c.json();return this.parseJsonResults(l)}finally{clearTimeout(a)}}catch(s){if(r=s instanceof Error?s:new Error(String(s)),this.isRetryableError(r)&&i<this.maxRetries){await this.delay(this.retryDelay);continue}throw new Lo(`Failed to query remote SPARQL endpoint ${e}: ${r.message}`,r)}throw new Lo(`Failed to query remote SPARQL endpoint ${e} after ${this.maxRetries+1} attempts`,r)}parseJsonResults(e){return!e.results||!Array.isArray(e.results.bindings)?[]:e.results.bindings.map(t=>this.parseBinding(t))}parseBinding(e){let t=new S9.SolutionMapping;for(let[r,i]of Object.entries(e)){let s=this.parseRDFTerm(i);t.set(r,s)}return t}parseRDFTerm(e){switch(e.type){case"uri":return new dA.IRI(e.value);case"literal":{let t=e.datatype?new dA.IRI(e.datatype):void 0;return new b9.Literal(e.value,t,e["xml:lang"])}case"bnode":return new v9.BlankNode(e.value);default:throw new Lo(`Unknown RDF term type: ${e.type}`)}}isRetryableError(e){let t=e.message.toLowerCase();return!!(e.name==="AbortError"||t.includes("network")||t.includes("econnreset")||t.includes("econnrefused")||t.includes("etimedout")||t.includes("returned 5"))}delay(e){return new Promise(t=>setTimeout(t,e))}};Xc.ServiceExecutor=L1});var mA=S(Jc=>{"use strict";Object.defineProperty(Jc,"__esModule",{value:!0});Jc.GraphExecutor=Jc.GraphExecutorError=void 0;var pA=Ae(),Ep=class extends Error{static{o(this,"GraphExecutorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="GraphExecutorError"}};Jc.GraphExecutorError=Ep;var k1=class{static{o(this,"GraphExecutor")}constructor(e){this.tripleStore=e}async*execute(e,t,r){let i=e.name;if(i.type==="iri")yield*this.executeWithGraph(e.pattern,i,t);else if(i.type==="variable")yield*this.executeWithGraphVariable(e,i,t,r);else throw new Ep(`Invalid graph name type: ${i.type}`)}async*executeWithGraph(e,t,r){let i=new pA.IRI(t.value);this.tripleStore.hasGraph&&!await this.tripleStore.hasGraph(i)||(yield*r(e,i))}async*executeWithGraphVariable(e,t,r,i){if(i){let a=i.get(t.value);if(a&&a instanceof pA.IRI){yield*this.executeWithGraph(e.pattern,{type:"iri",value:a.value},r);return}}if(!this.tripleStore.getNamedGraphs)return;let s=await this.tripleStore.getNamedGraphs();for(let a of s)for await(let c of r(e.pattern,a)){let l=c.clone();l.set(t.value,a),yield l}}};Jc.GraphExecutor=k1});var gA=S(el=>{"use strict";Object.defineProperty(el,"__esModule",{value:!0});el.SPARQLGenerator=el.SPARQLGeneratorError=void 0;var Zc=class extends Error{static{o(this,"SPARQLGeneratorError")}constructor(e,t){super(e,t?{cause:t}:void 0),this.name="SPARQLGeneratorError"}};el.SPARQLGeneratorError=Zc;var M1=class{static{o(this,"SPARQLGenerator")}collectVariables(e){let t=new Set;return this.collectVariablesFromOperation(e,t),t}generateSelect(e){let t=this.collectVariables(e),r=t.size>0?Array.from(t).map(s=>`?${s}`).join(" "):"*",i=this.generateWhereClause(e);return`SELECT ${r} WHERE {
49
49
  ${i}
50
50
  }`}generateWhereClause(e,t=2){let r=" ".repeat(t);switch(e.type){case"bgp":return this.generateBGP(e,t);case"filter":return`${this.generateWhereClause(e.input,t)}
51
51
  ${r}FILTER(${this.generateExpression(e.expression)})`;case"join":return`${this.generateWhereClause(e.left,t)}
@@ -88,7 +88,7 @@ ${Object.entries(t).map(([a,c])=>this.serializeValue(a,c)).join(`
88
88
  ${r}`}return`${e}: ${String(t)}`}escapeRegex(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}};Cp.FrontmatterService=Xu;Xu.FRONTMATTER_REGEX=/^---\n([\s\S]*?)\n---/;Xu.IRI_PREFIX_MAP={"https://exocortex.my/ontology/ems#":"ems__","https://exocortex.my/ontology/exo#":"exo__","https://exocortex.my/ontology/exocmd#":"exocmd__","https://exocortex.my/ontology/ims#":"ims__","https://exocortex.my/ontology/ztlk#":"ztlk__","https://exocortex.my/ontology/ptms#":"ptms__","https://exocortex.my/ontology/lit#":"lit__","https://exocortex.my/ontology/inbox#":"inbox__","https://exocortex.my/ontology/pmbok#":"pmbok__"}});var Wr=S(Rp=>{"use strict";Object.defineProperty(Rp,"__esModule",{value:!0});Rp.DateFormatter=void 0;var z1=class n{static{o(this,"DateFormatter")}static toISOTimestamp(e){return e.toISOString().replace(/\.\d{3}Z$/,"Z")}static toLocalTimestamp(e){let t=e.getFullYear(),r=String(e.getMonth()+1).padStart(2,"0"),i=String(e.getDate()).padStart(2,"0"),s=String(e.getHours()).padStart(2,"0"),a=String(e.getMinutes()).padStart(2,"0"),c=String(e.getSeconds()).padStart(2,"0");return`${t}-${r}-${i}T${s}:${a}:${c}`}static toDateWikilink(e){let t=e.getFullYear(),r=String(e.getMonth()+1).padStart(2,"0"),i=String(e.getDate()).padStart(2,"0");return`"[[${t}-${r}-${i}]]"`}static getTodayWikilink(){return n.toDateWikilink(new Date)}static toDateString(e){let t=e.getFullYear(),r=String(e.getMonth()+1).padStart(2,"0"),i=String(e.getDate()).padStart(2,"0");return`${t}-${r}-${i}`}static parseWikilink(e){let r=e.replace(/^["']|["']$/g,"").match(/\[\[(\d{4}-\d{2}-\d{2})\]\]/);return r?r[1]:null}static addDays(e,t){let r=new Date(e);return r.setDate(r.getDate()+t),r}static isSameDay(e,t){return e.getFullYear()===t.getFullYear()&&e.getMonth()===t.getMonth()&&e.getDate()===t.getDate()}static getTodayStartTimestamp(){let e=new Date;return e.setHours(0,0,0,0),n.toLocalTimestamp(e)}static toTimestampAtStartOfDay(e){let t=e.split("-").map(Number);if(t.length!==3||t.some(isNaN))throw new Error(`Invalid date format: ${e}. Expected YYYY-MM-DD`);let[r,i,s]=t,a=new Date(r,i-1,s,0,0,0,0);if(isNaN(a.getTime()))throw new Error(`Invalid date values: ${e}`);return n.toLocalTimestamp(a)}static normalizeTimestamp(e){if(/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$/.test(e))return e;let t=new Date(e);if(isNaN(t.getTime()))throw new Error(`Invalid timestamp format: ${e}`);return n.toISOTimestamp(t)}static isISOTimestamp(e){return/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$/.test(e)}};Rp.DateFormatter=z1});var La=S(Op=>{"use strict";Object.defineProperty(Op,"__esModule",{value:!0});Op.LoggingService=void 0;var Ju=class{static{o(this,"LoggingService")}static setVerbose(e){this.isVerbose=e}static setDevelopmentMode(e){this.isDevelopment=e}static checkIsDevelopment(){return this.isDevelopment!==void 0?this.isDevelopment:typeof process<"u"?(this.isDevelopment=!1,this.isDevelopment):(this.isDevelopment=!1,this.isDevelopment)}static debug(e,t){this.isVerbose&&console.debug(`[Exocortex] ${e}`,t??"")}static info(e,t){console.log(`[Exocortex] ${e}`,t??"")}static warn(e,t){console.warn(`[Exocortex] ${e}`,t??"")}static error(e,t,r){let i=this.checkIsDevelopment(),s=r?` [${r}]`:"";if(i){let a=t?.stack?`
89
89
  Stack trace:
90
90
  ${t.stack}`:"";console.error(`[Exocortex ERROR]${s} ${e}${a}`,t??"")}else{let a=t?.message?`
91
- Details: ${t.message}`:"";console.error(`[Exocortex ERROR]${s} ${e}${a}`)}}};Op.LoggingService=Ju;Ju.isVerbose=!1;Ju.isDevelopment=void 0});var wA=S(_i=>{"use strict";var a5=_i&&_i.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},o5=_i&&_i.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},Pp;Object.defineProperty(_i,"__esModule",{value:!0});_i.GroundingExecutor=_i.ServiceRegistry=void 0;var c5=le(),l5=En(),Lo=_c(),u5=Zn(),f5=Wr(),d5=La();function h5(n){if(!n)return;let e=n.match(/^"?\[\[([^\]|]+)(?:\|[^\]]*)?\]\]"?$/);return e?e[1]:n}o(h5,"extractClassFromTargetValue");var Fp=class{static{o(this,"ServiceRegistry")}constructor(){this.services=new Map}register(e,t){this.services.set(e,t)}get(e){return this.services.get(e)}has(e){return this.services.has(e)}getRegisteredIds(){return Array.from(this.services.keys())}};_i.ServiceRegistry=Fp;var vA=20,Dp=Pp=class{static{o(this,"GroundingExecutor")}constructor(e,t,r){this.frontmatterService=new u5.FrontmatterService,this.fileReader=e,this.fileWriter=t,this.serviceRegistry=r}async execute(e,t,r,i){try{switch(e.type){case Lo.GroundingType.PROPERTY_SET:return await this.executePropertySet(e,t,r,i);case Lo.GroundingType.PROPERTY_DELETE:return await this.executePropertyDelete(e,r);case Lo.GroundingType.COMPOSITE:return await this.executeComposite(e,t,r,i,0);case Lo.GroundingType.SERVICE_CALL:return await this.executeServiceCall(e,t,r,i);case Lo.GroundingType.CREATE_INSTANCE:return await this.executeCreateInstance(e,t,r,i);case Lo.GroundingType.SPARQL_UPDATE:return{success:!1,error:"sparql_update grounding not yet implemented. Use property_set/property_delete instead."};default:return{success:!1,error:`Unknown grounding type: ${e.type}`}}}catch(s){return{success:!1,error:s instanceof Error?s.message:String(s)}}}async executePropertySet(e,t,r,i){if(!e.targetProperty)return{success:!1,error:"property_set requires targetProperty"};if(e.targetValue===void 0)return{success:!1,error:"property_set requires targetValue"};if(/\$(input|value)\b/.test(e.targetValue)&&(i===void 0||i.value===void 0||i.value===null))return{success:!1,error:"property_set: targetValue contains $input/$value placeholder but no userInput.value provided"};let a=this.substituteVariables(e.targetValue,t,i),c=await this.fileReader.readFile(r),l=this.frontmatterService.updateProperty(c,e.targetProperty,a);return await this.fileWriter.updateFile(r,l),{success:!0}}async executePropertyDelete(e,t){if(!e.targetProperty)return{success:!1,error:"property_delete requires targetProperty"};let r=await this.fileReader.readFile(t),i=this.frontmatterService.removeProperty(r,e.targetProperty);return await this.fileWriter.updateFile(t,i),{success:!0}}async executeComposite(e,t,r,i,s){if(s>=vA)return{success:!1,error:`Composite grounding exceeded maximum depth of ${vA}`};let a=e.steps??[];if(a.length===0)return{success:!0};let c;try{c=await this.fileReader.readFile(r)}catch{}let l=[];try{for(let u=0;u<a.length;u++){let f=a[u],d=await this.executeStep(f,t,r,i,s+1);if(!d.success)return await this.rollback(c,r,l),{success:!1,error:`Composite step ${u} failed: ${d.error}`};l.push(u)}return{success:!0}}catch(u){return await this.rollback(c,r,l),{success:!1,error:`Composite execution failed: ${u instanceof Error?u.message:String(u)}`}}}async executeServiceCall(e,t,r,i){let s=e.targetProperty;if(!s)return{success:!1,error:"service_call requires targetProperty as serviceId"};if(s==="convertToTask")return await this.executeConvertToTask(r);if(s==="updateProperty"){let l=h5(e.targetValue);if(l==="ems__Task")return await this.executeConvertToTask(r);if(l==="ems__Project")return await this.executeConvertToProject(r)}let a=this.serviceRegistry.get(s);if(!a)return{success:!1,error:`Service not found: "${s}". Registered services: ${this.serviceRegistry.getRegisteredIds().join(", ")||"none"}`};let c=i;if(e.targetValue)try{let l=this.substituteVariables(e.targetValue,t,i),u=JSON.parse(l);typeof u=="object"&&u!==null&&(c={...u,...i??{}})}catch{}return await a.execute(t,c),{success:!0}}async executeConvertToTask(e){let t=await this.fileReader.readFile(e),r=this.frontmatterService.updateProperty(t,"exo__Instance_class",'["[[ems__Task]]"]');return await this.fileWriter.updateFile(e,r),{success:!0}}async executeConvertToProject(e){let t=await this.fileReader.readFile(e),r=this.frontmatterService.updateProperty(t,"exo__Instance_class",'["[[ems__Project]]"]');return await this.fileWriter.updateFile(e,r),{success:!0}}async executeCreateInstance(e,t,r,i){if(!e.targetFolder)return{success:!1,error:"create_instance requires targetFolder"};let s=(0,l5.v4)(),a=i?.label??"Untitled",c={exo__Asset_uid:s,exo__Asset_createdAt:new Date().toISOString(),exo__Asset_label:a};if(a!=="Untitled"&&(c.aliases=[a]),e.targetClass&&(c.exo__Instance_class=[`"[[${e.targetClass}]]"`]),e.targetPrototype&&(c.exo__Asset_prototype=`"[[${e.targetPrototype}]]"`),i)for(let[f,d]of Object.entries(i))f!=="label"&&d!=null&&(c[f]=d);if(t&&r){let f;try{f=await this.fileReader.readFile(r)}catch(h){return{success:!1,error:`create_instance: failed to read $target file "${r}": ${h instanceof Error?h.message:String(h)}`}}let d=this.frontmatterService.parseObject(f);if(d)for(let[h,p]of Object.entries(d))Pp.CREATE_INSTANCE_BLACKLIST.has(h)||c[h]===void 0&&(c[h]=this.reformatCopiedValue(p))}if(t){let f=e.linkBackProperty??"exo__Asset_source",d=Pp.extractBacklinkTarget(t,r);c[f]=`"[[${d}]]"`}let l=this.frontmatterService.createFrontmatter("",c),u=`${e.targetFolder}/${s}.md`;return await this.fileWriter.createFile(u,l),{success:!0}}reformatCopiedValue(e){return Array.isArray(e)?e.map(t=>this.reformatWikilink(t)):this.reformatWikilink(e)}reformatWikilink(e){return e.startsWith('"[[')&&e.endsWith(']]"')?e:e.startsWith("[[")&&e.endsWith("]]")?`"${e}"`:e}async executeStep(e,t,r,i,s){return e.type===Lo.GroundingType.COMPOSITE?this.executeComposite(e,t,r,i,s):this.execute(e,t,r,i)}async rollback(e,t,r){if(e!==void 0)try{await this.fileWriter.updateFile(t,e)}catch(i){d5.LoggingService.error(`[GroundingExecutor] Rollback failed for ${t}`,i instanceof Error?i:new Error(String(i)))}}substituteVariables(e,t,r){let i=new Date,s=i.toISOString(),a=f5.DateFormatter.toLocalTimestamp(i),c=s.slice(0,10),l=e.replace(/\$target/g,t).replace(/\$nowLocal/g,a).replace(/\$now/g,s).replace(/\$today/g,c);if(r?.value!==void 0&&r.value!==null){let u=String(r.value);l=l.replace(/\$input\b/g,u).replace(/\$value\b/g,u)}return l}static extractBacklinkTarget(e,t){if(t)return t.replace(/\.md$/i,"").replace(/^\/+/,"");if(e){let r=e.match(/^obsidian:\/\/vault\/(.+?)(?:\.md)?(?:\?|#|$)/i);if(r&&r[1])try{return decodeURIComponent(r[1])}catch{return r[1]}}return e}};_i.GroundingExecutor=Dp;Dp.CREATE_INSTANCE_BLACKLIST=new Set(["exo__Asset_uid","exo__Asset_createdAt","exo__Asset_updatedAt","exo__Instance_class","exo__Asset_label","aliases","ems__Effort_status","ems__Effort_startTimestamp","ems__Effort_endTimestamp","ems__Effort_resolutionTimestamp"]);_i.GroundingExecutor=Dp=Pp=a5([(0,c5.injectable)(),o5("design:paramtypes",[Object,Object,Fp])],Dp)});var Zu=S(Xs=>{"use strict";var p5=Xs&&Xs.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},m5=Xs&&Xs.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Xs,"__esModule",{value:!0});Xs.WorkflowEngine=void 0;var g5=le(),H1=class{static{o(this,"WorkflowEngine")}constructor(e){this.definition=e}getAvailableTransitions(e){return this.definition.transitions.filter(t=>t.from===e&&!t.isRollback)}getRollbackTransitions(e){return this.definition.transitions.filter(t=>t.from===e&&t.isRollback)}getAllTransitions(e){return this.definition.transitions.filter(t=>t.from===e)}canTransition(e,t){return this.definition.transitions.some(r=>r.from===e&&r.to===t)}getPreviousStatus(e){return this.definition.transitions.find(r=>r.from===e&&r.isRollback)?.to??null}getNextStates(e){return this.getAvailableTransitions(e).map(t=>t.to)}isTerminalState(e){return this.definition.terminalStates.includes(e)}isInitialState(e){return this.definition.initialState===e}getTimestampsForStatus(e){return this.definition.states.find(r=>r.status===e)?.timestampOnEnter??[]}getTransition(e,t){return this.definition.transitions.find(r=>r.from===e&&r.to===t)}getOrderedStates(){return this.definition.states.map(e=>e.status)}getDefinition(){return this.definition}validate(){let e=[],t=new Set(this.definition.states.map(i=>i.status));this.definition.states.length===0&&e.push("Workflow must have at least one state"),t.has(this.definition.initialState)||e.push(`Initial state "${this.definition.initialState}" is not in the states list`);for(let i of this.definition.terminalStates)t.has(i)||e.push(`Terminal state "${i}" is not in the states list`);for(let i of this.definition.transitions)t.has(i.from)||e.push(`Transition "${i.label}" references unknown source state "${i.from}"`),t.has(i.to)||e.push(`Transition "${i.label}" references unknown target state "${i.to}"`);for(let i of this.definition.states){if(this.definition.terminalStates.includes(i.status))continue;this.definition.transitions.filter(a=>a.from===i.status&&!a.isRollback).length===0&&e.push(`State "${i.status}" has no outgoing forward transitions (dead end)`)}let r=new Set;for(let i of this.definition.transitions){let s=`${i.from}\u2192${i.to}`;r.has(s)&&e.push(`Duplicate transition: ${s}`),r.add(s)}return{valid:e.length===0,errors:e}}};Xs.WorkflowEngine=H1;Xs.WorkflowEngine=H1=p5([(0,g5.injectable)(),m5("design:paramtypes",[Object])],H1)});var EA=S(hs=>{"use strict";Object.defineProperty(hs,"__esModule",{value:!0});hs.EFFORT_WORKFLOW_PROPERTY=hs.WorkflowTransitionProperty=hs.WorkflowStateProperty=hs.WorkflowProperty=void 0;hs.WorkflowProperty={TARGET_CLASS:"ems__Workflow_targetClass",INITIAL_STATE:"ems__Workflow_initialState",TERMINAL_STATES:"ems__Workflow_terminalStates",IS_DEFAULT:"ems__Workflow_isDefault"};hs.WorkflowStateProperty={WORKFLOW:"ems__WorkflowState_workflow",STATUS:"ems__WorkflowState_status",ORDER:"ems__WorkflowState_order",OPTIONAL:"ems__WorkflowState_optional",TIMESTAMP_ON_ENTER:"ems__WorkflowState_timestampOnEnter",BADGE_COLOR:"ems__WorkflowState_badgeColor"};hs.WorkflowTransitionProperty={WORKFLOW:"ems__WorkflowTransition_workflow",FROM:"ems__WorkflowTransition_from",TO:"ems__WorkflowTransition_to",LABEL:"ems__WorkflowTransition_label",ICON:"ems__WorkflowTransition_icon",IS_ROLLBACK:"ems__WorkflowTransition_isRollback"};hs.EFFORT_WORKFLOW_PROPERTY="ems__Effort_workflow"});var ps=S(Np=>{"use strict";Object.defineProperty(Np,"__esModule",{value:!0});Np.MetadataHelpers=void 0;var Q1=class{static{o(this,"MetadataHelpers")}static findAllReferencingProperties(e,t){let r=[];for(let[i,s]of Object.entries(e))this.containsReference(s,t)&&r.push(i);return r}static findReferencingProperty(e,t){for(let[r,i]of Object.entries(e))if(this.containsReference(i,t))return r}static containsReference(e,t){if(!e)return!1;let r=t.replace(/\.md$/,"");if(typeof e=="string"){let i=/\[\[([^\[\]]+)\]\]/g,s;for(;(s=i.exec(e))!==null;){let c=s[1].split("|")[0].trim();if(c===r||c.endsWith(`/${r}`))return!0}return!1}return Array.isArray(e)?e.some(i=>this.containsReference(i,t)):!1}static isAssetArchived(e){let t=e?.exo__Asset_isArchived;if(t!=null){if(t===!0||t===1)return!0;if(typeof t=="string"){let i=t.toLowerCase().trim();if(i==="true"||i==="yes"||i==="1")return!0}if(typeof t=="boolean")return t}let r=e?.archived;if(r==null)return!1;if(typeof r=="boolean")return r;if(typeof r=="number")return r!==0;if(typeof r=="string"){let i=r.toLowerCase().trim();return i==="true"||i==="yes"||i==="1"}return!1}static getPropertyValue(e,t){return t==="Name"||t==="title"?e.title:t==="created"?e.created:t==="modified"?e.modified:t==="path"?e.path:e.metadata?.[t]}static ensureQuoted(e){return!e||e==='""'?'""':e.startsWith('"')&&e.endsWith('"')?e:`"${e}"`}static buildFileContent(e,t){let r=Object.entries(e).map(([a,c])=>{if(Array.isArray(c)){let l=c.map(u=>` - ${u}`).join(`
91
+ Details: ${t.message}`:"";console.error(`[Exocortex ERROR]${s} ${e}${a}`)}}};Op.LoggingService=Ju;Ju.isVerbose=!1;Ju.isDevelopment=void 0});var wA=S(_i=>{"use strict";var a5=_i&&_i.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},o5=_i&&_i.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},Pp;Object.defineProperty(_i,"__esModule",{value:!0});_i.GroundingExecutor=_i.ServiceRegistry=void 0;var c5=le(),l5=En(),ka=_c(),u5=Zn(),f5=Wr(),d5=La();function h5(n){if(!n)return;let e=n.match(/^"?\[\[([^\]|]+)(?:\|[^\]]*)?\]\]"?$/);return e?e[1]:n}o(h5,"extractClassFromTargetValue");var Fp=class{static{o(this,"ServiceRegistry")}constructor(){this.services=new Map}register(e,t){this.services.set(e,t)}get(e){return this.services.get(e)}has(e){return this.services.has(e)}getRegisteredIds(){return Array.from(this.services.keys())}};_i.ServiceRegistry=Fp;var vA=20,Dp=Pp=class{static{o(this,"GroundingExecutor")}constructor(e,t,r){this.frontmatterService=new u5.FrontmatterService,this.fileReader=e,this.fileWriter=t,this.serviceRegistry=r}async execute(e,t,r,i){try{switch(e.type){case ka.GroundingType.PROPERTY_SET:return await this.executePropertySet(e,t,r,i);case ka.GroundingType.PROPERTY_DELETE:return await this.executePropertyDelete(e,r);case ka.GroundingType.COMPOSITE:return await this.executeComposite(e,t,r,i,0);case ka.GroundingType.SERVICE_CALL:return await this.executeServiceCall(e,t,r,i);case ka.GroundingType.CREATE_INSTANCE:return await this.executeCreateInstance(e,t,r,i);case ka.GroundingType.PROPERTY_APPEND:return await this.executePropertyAppend(e,t,r,i);case ka.GroundingType.SPARQL_UPDATE:return{success:!1,error:"sparql_update grounding not yet implemented. Use property_set/property_delete instead."};default:return{success:!1,error:`Unknown grounding type: ${e.type}`}}}catch(s){return{success:!1,error:s instanceof Error?s.message:String(s)}}}async executePropertySet(e,t,r,i){if(!e.targetProperty)return{success:!1,error:"property_set requires targetProperty"};if(e.targetValue===void 0)return{success:!1,error:"property_set requires targetValue"};if(/\$(input|value)\b/.test(e.targetValue)&&(i===void 0||i.value===void 0||i.value===null))return{success:!1,error:"property_set: targetValue contains $input/$value placeholder but no userInput.value provided"};let a=this.substituteVariables(e.targetValue,t,i),c=await this.fileReader.readFile(r),l=this.frontmatterService.updateProperty(c,e.targetProperty,a);return await this.fileWriter.updateFile(r,l),{success:!0}}async executePropertyDelete(e,t){if(!e.targetProperty)return{success:!1,error:"property_delete requires targetProperty"};let r=await this.fileReader.readFile(t),i=this.frontmatterService.removeProperty(r,e.targetProperty);return await this.fileWriter.updateFile(t,i),{success:!0}}async executeComposite(e,t,r,i,s){if(s>=vA)return{success:!1,error:`Composite grounding exceeded maximum depth of ${vA}`};let a=e.steps??[];if(a.length===0)return{success:!0};let c;try{c=await this.fileReader.readFile(r)}catch{}let l=[];try{for(let u=0;u<a.length;u++){let f=a[u],d=await this.executeStep(f,t,r,i,s+1);if(!d.success)return await this.rollback(c,r,l),{success:!1,error:`Composite step ${u} failed: ${d.error}`};l.push(u)}return{success:!0}}catch(u){return await this.rollback(c,r,l),{success:!1,error:`Composite execution failed: ${u instanceof Error?u.message:String(u)}`}}}async executeServiceCall(e,t,r,i){let s=e.targetProperty;if(!s)return{success:!1,error:"service_call requires targetProperty as serviceId"};if(s==="convertToTask")return await this.executeConvertToTask(r);if(s==="updateProperty"){let l=h5(e.targetValue);if(l==="ems__Task")return await this.executeConvertToTask(r);if(l==="ems__Project")return await this.executeConvertToProject(r)}let a=this.serviceRegistry.get(s);if(!a)return{success:!1,error:`Service not found: "${s}". Registered services: ${this.serviceRegistry.getRegisteredIds().join(", ")||"none"}`};let c=i;if(e.targetValue)try{let l=this.substituteVariables(e.targetValue,t,i),u=JSON.parse(l);typeof u=="object"&&u!==null&&(c={...u,...i??{}})}catch{}return await a.execute(t,c),{success:!0}}async executeConvertToTask(e){let t=await this.fileReader.readFile(e),r=this.frontmatterService.updateProperty(t,"exo__Instance_class",'["[[ems__Task]]"]');return await this.fileWriter.updateFile(e,r),{success:!0}}async executeConvertToProject(e){let t=await this.fileReader.readFile(e),r=this.frontmatterService.updateProperty(t,"exo__Instance_class",'["[[ems__Project]]"]');return await this.fileWriter.updateFile(e,r),{success:!0}}async executeCreateInstance(e,t,r,i){if(!e.targetFolder)return{success:!1,error:"create_instance requires targetFolder"};let s=(0,l5.v4)(),a=i?.label??"Untitled",c={exo__Asset_uid:s,exo__Asset_createdAt:new Date().toISOString(),exo__Asset_label:a};if(a!=="Untitled"&&(c.aliases=[a]),e.targetClass&&(c.exo__Instance_class=[`"[[${e.targetClass}]]"`]),e.targetPrototype&&(c.exo__Asset_prototype=`"[[${e.targetPrototype}]]"`),i)for(let[f,d]of Object.entries(i))f!=="label"&&d!=null&&(c[f]=d);if(t&&r){let f;try{f=await this.fileReader.readFile(r)}catch(h){return{success:!1,error:`create_instance: failed to read $target file "${r}": ${h instanceof Error?h.message:String(h)}`}}let d=this.frontmatterService.parseObject(f);if(d)for(let[h,p]of Object.entries(d))Pp.CREATE_INSTANCE_BLACKLIST.has(h)||c[h]===void 0&&(c[h]=this.reformatCopiedValue(p))}if(t){let f=e.linkBackProperty??"exo__Asset_source",d=Pp.extractBacklinkTarget(t,r);c[f]=`"[[${d}]]"`}let l=this.frontmatterService.createFrontmatter("",c),u=`${e.targetFolder}/${s}.md`;return await this.fileWriter.createFile(u,l),{success:!0}}reformatCopiedValue(e){return Array.isArray(e)?e.map(t=>this.reformatWikilink(t)):this.reformatWikilink(e)}reformatWikilink(e){return e.startsWith('"[[')&&e.endsWith(']]"')?e:e.startsWith("[[")&&e.endsWith("]]")?`"${e}"`:e}async executeStep(e,t,r,i,s){return e.type===ka.GroundingType.COMPOSITE?this.executeComposite(e,t,r,i,s):this.execute(e,t,r,i)}async rollback(e,t,r){if(e!==void 0)try{await this.fileWriter.updateFile(t,e)}catch(i){d5.LoggingService.error(`[GroundingExecutor] Rollback failed for ${t}`,i instanceof Error?i:new Error(String(i)))}}substituteVariables(e,t,r,i){let s=new Date,a=s.toISOString(),c=f5.DateFormatter.toLocalTimestamp(s),l=a.slice(0,10),u=e.replace(/\$target\.([A-Za-z_][\w]*)/g,(f,d)=>{if(!i)throw new Error(`$target.${d} substitution requires target frontmatter context; none was supplied (asset IRI: ${t})`);let h=i[d];if(h==null)throw new Error(`$target.${d} is undefined on asset ${t}`);if(Array.isArray(h))throw new Error(`$target.${d} resolved to an array on asset ${t}; only scalar properties are supported for substitution`);return String(h).replace(/^["'](.*)["']$/,"$1")});if(u=u.replace(/\$target/g,t).replace(/\$nowLocal/g,c).replace(/\$now/g,a).replace(/\$today/g,l),r?.value!==void 0&&r.value!==null){let f=String(r.value);u=u.replace(/\$input\b/g,f).replace(/\$value\b/g,f)}return u}async executePropertyAppend(e,t,r,i){if(!e.targetProperty)return{success:!1,error:"property_append requires targetProperty"};if(e.targetValue===void 0)return{success:!1,error:"property_append requires targetValue"};let s=await this.fileReader.readFile(r),a=this.frontmatterService.parseObject(s)??{},c=this.substituteVariables(e.targetValue,t,i,a),l=a[e.targetProperty],u=Array.isArray(l)?l:l!==void 0?[String(l)]:[],f=o(y=>y.replace(/^["'](.*)["']$/,"$1"),"stripQuotes"),d=new Set(u.map(f)),h;if(d.has(f(c)))h=u;else{let y=`"${f(c)}"`;h=[...u,y]}let p=this.frontmatterService.updateProperty(s,e.targetProperty,h);return await this.fileWriter.updateFile(r,p),{success:!0}}static extractBacklinkTarget(e,t){if(t)return t.replace(/\.md$/i,"").replace(/^\/+/,"");if(e){let r=e.match(/^obsidian:\/\/vault\/(.+?)(?:\.md)?(?:\?|#|$)/i);if(r&&r[1])try{return decodeURIComponent(r[1])}catch{return r[1]}}return e}};_i.GroundingExecutor=Dp;Dp.CREATE_INSTANCE_BLACKLIST=new Set(["exo__Asset_uid","exo__Asset_createdAt","exo__Asset_updatedAt","exo__Instance_class","exo__Asset_label","aliases","ems__Effort_status","ems__Effort_startTimestamp","ems__Effort_endTimestamp","ems__Effort_resolutionTimestamp"]);_i.GroundingExecutor=Dp=Pp=a5([(0,c5.injectable)(),o5("design:paramtypes",[Object,Object,Fp])],Dp)});var Zu=S(Xs=>{"use strict";var p5=Xs&&Xs.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},m5=Xs&&Xs.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Xs,"__esModule",{value:!0});Xs.WorkflowEngine=void 0;var g5=le(),H1=class{static{o(this,"WorkflowEngine")}constructor(e){this.definition=e}getAvailableTransitions(e){return this.definition.transitions.filter(t=>t.from===e&&!t.isRollback)}getRollbackTransitions(e){return this.definition.transitions.filter(t=>t.from===e&&t.isRollback)}getAllTransitions(e){return this.definition.transitions.filter(t=>t.from===e)}canTransition(e,t){return this.definition.transitions.some(r=>r.from===e&&r.to===t)}getPreviousStatus(e){return this.definition.transitions.find(r=>r.from===e&&r.isRollback)?.to??null}getNextStates(e){return this.getAvailableTransitions(e).map(t=>t.to)}isTerminalState(e){return this.definition.terminalStates.includes(e)}isInitialState(e){return this.definition.initialState===e}getTimestampsForStatus(e){return this.definition.states.find(r=>r.status===e)?.timestampOnEnter??[]}getTransition(e,t){return this.definition.transitions.find(r=>r.from===e&&r.to===t)}getOrderedStates(){return this.definition.states.map(e=>e.status)}getDefinition(){return this.definition}validate(){let e=[],t=new Set(this.definition.states.map(i=>i.status));this.definition.states.length===0&&e.push("Workflow must have at least one state"),t.has(this.definition.initialState)||e.push(`Initial state "${this.definition.initialState}" is not in the states list`);for(let i of this.definition.terminalStates)t.has(i)||e.push(`Terminal state "${i}" is not in the states list`);for(let i of this.definition.transitions)t.has(i.from)||e.push(`Transition "${i.label}" references unknown source state "${i.from}"`),t.has(i.to)||e.push(`Transition "${i.label}" references unknown target state "${i.to}"`);for(let i of this.definition.states){if(this.definition.terminalStates.includes(i.status))continue;this.definition.transitions.filter(a=>a.from===i.status&&!a.isRollback).length===0&&e.push(`State "${i.status}" has no outgoing forward transitions (dead end)`)}let r=new Set;for(let i of this.definition.transitions){let s=`${i.from}\u2192${i.to}`;r.has(s)&&e.push(`Duplicate transition: ${s}`),r.add(s)}return{valid:e.length===0,errors:e}}};Xs.WorkflowEngine=H1;Xs.WorkflowEngine=H1=p5([(0,g5.injectable)(),m5("design:paramtypes",[Object])],H1)});var EA=S(hs=>{"use strict";Object.defineProperty(hs,"__esModule",{value:!0});hs.EFFORT_WORKFLOW_PROPERTY=hs.WorkflowTransitionProperty=hs.WorkflowStateProperty=hs.WorkflowProperty=void 0;hs.WorkflowProperty={TARGET_CLASS:"ems__Workflow_targetClass",INITIAL_STATE:"ems__Workflow_initialState",TERMINAL_STATES:"ems__Workflow_terminalStates",IS_DEFAULT:"ems__Workflow_isDefault"};hs.WorkflowStateProperty={WORKFLOW:"ems__WorkflowState_workflow",STATUS:"ems__WorkflowState_status",ORDER:"ems__WorkflowState_order",OPTIONAL:"ems__WorkflowState_optional",TIMESTAMP_ON_ENTER:"ems__WorkflowState_timestampOnEnter",BADGE_COLOR:"ems__WorkflowState_badgeColor"};hs.WorkflowTransitionProperty={WORKFLOW:"ems__WorkflowTransition_workflow",FROM:"ems__WorkflowTransition_from",TO:"ems__WorkflowTransition_to",LABEL:"ems__WorkflowTransition_label",ICON:"ems__WorkflowTransition_icon",IS_ROLLBACK:"ems__WorkflowTransition_isRollback"};hs.EFFORT_WORKFLOW_PROPERTY="ems__Effort_workflow"});var ps=S(Np=>{"use strict";Object.defineProperty(Np,"__esModule",{value:!0});Np.MetadataHelpers=void 0;var Q1=class{static{o(this,"MetadataHelpers")}static findAllReferencingProperties(e,t){let r=[];for(let[i,s]of Object.entries(e))this.containsReference(s,t)&&r.push(i);return r}static findReferencingProperty(e,t){for(let[r,i]of Object.entries(e))if(this.containsReference(i,t))return r}static containsReference(e,t){if(!e)return!1;let r=t.replace(/\.md$/,"");if(typeof e=="string"){let i=/\[\[([^\[\]]+)\]\]/g,s;for(;(s=i.exec(e))!==null;){let c=s[1].split("|")[0].trim();if(c===r||c.endsWith(`/${r}`))return!0}return!1}return Array.isArray(e)?e.some(i=>this.containsReference(i,t)):!1}static isAssetArchived(e){let t=e?.exo__Asset_isArchived;if(t!=null){if(t===!0||t===1)return!0;if(typeof t=="string"){let i=t.toLowerCase().trim();if(i==="true"||i==="yes"||i==="1")return!0}if(typeof t=="boolean")return t}let r=e?.archived;if(r==null)return!1;if(typeof r=="boolean")return r;if(typeof r=="number")return r!==0;if(typeof r=="string"){let i=r.toLowerCase().trim();return i==="true"||i==="yes"||i==="1"}return!1}static getPropertyValue(e,t){return t==="Name"||t==="title"?e.title:t==="created"?e.created:t==="modified"?e.modified:t==="path"?e.path:e.metadata?.[t]}static ensureQuoted(e){return!e||e==='""'?'""':e.startsWith('"')&&e.endsWith('"')?e:`"${e}"`}static buildFileContent(e,t){let r=Object.entries(e).map(([a,c])=>{if(Array.isArray(c)){let l=c.map(u=>` - ${u}`).join(`
92
92
  `);return`${a}:
93
93
  ${l}`}return`${a}: ${c}`}).join(`
94
94
  `),i=t;if(i===void 0){let a=e.exo__Asset_label;typeof a=="string"&&a.trim()!==""&&(i=`# ${a}`)}let s=i?`
@@ -97,7 +97,7 @@ ${i}
97
97
  `;return`---
98
98
  ${r}
99
99
  ---
100
- ${s}`}};Np.MetadataHelpers=Q1});var AA=S(ko=>{"use strict";Object.defineProperty(ko,"__esModule",{value:!0});ko.TASK_DEFAULT_WORKFLOW=ko.PROJECT_DEFAULT_WORKFLOW=void 0;ko.buildWorkflowAssetContent=y5;var TA=En(),ef=Eu(),ve=yc(),Gr=EA(),K1=ps();ko.PROJECT_DEFAULT_WORKFLOW={id:"a1b2c3d4-1111-4000-a000-000000000001",name:"Project Default Workflow",targetClass:ef.AssetClass.PROJECT,initialState:ve.EffortStatus.DRAFT,terminalStates:[ve.EffortStatus.DONE,ve.EffortStatus.TRASHED],isDefault:!0,states:[{status:ve.EffortStatus.DRAFT,order:1,optional:!1,timestampOnEnter:[]},{status:ve.EffortStatus.BACKLOG,order:2,optional:!1,timestampOnEnter:[]},{status:ve.EffortStatus.ANALYSIS,order:3,optional:!0,timestampOnEnter:[]},{status:ve.EffortStatus.TODO,order:4,optional:!0,timestampOnEnter:[]},{status:ve.EffortStatus.DOING,order:5,optional:!1,timestampOnEnter:["ems__Effort_startTimestamp"]},{status:ve.EffortStatus.DONE,order:6,optional:!1,timestampOnEnter:["ems__Effort_endTimestamp","ems__Effort_resolutionTimestamp"]},{status:ve.EffortStatus.TRASHED,order:7,optional:!1,timestampOnEnter:["ems__Effort_resolutionTimestamp"]}],transitions:[{from:ve.EffortStatus.DRAFT,to:ve.EffortStatus.BACKLOG,label:"\u2192 Backlog",isRollback:!1},{from:ve.EffortStatus.BACKLOG,to:ve.EffortStatus.ANALYSIS,label:"\u2192 Analysis",isRollback:!1},{from:ve.EffortStatus.ANALYSIS,to:ve.EffortStatus.TODO,label:"\u2192 ToDo",isRollback:!1},{from:ve.EffortStatus.TODO,to:ve.EffortStatus.DOING,label:"\u25B6 Start",isRollback:!1},{from:ve.EffortStatus.DOING,to:ve.EffortStatus.DONE,label:"\u2713 Done",isRollback:!1},{from:ve.EffortStatus.BACKLOG,to:ve.EffortStatus.DRAFT,label:"\u2190 Draft",isRollback:!0},{from:ve.EffortStatus.ANALYSIS,to:ve.EffortStatus.BACKLOG,label:"\u2190 Backlog",isRollback:!0},{from:ve.EffortStatus.TODO,to:ve.EffortStatus.ANALYSIS,label:"\u2190 Analysis",isRollback:!0},{from:ve.EffortStatus.DOING,to:ve.EffortStatus.TODO,label:"\u2190 ToDo",isRollback:!0},{from:ve.EffortStatus.DONE,to:ve.EffortStatus.DOING,label:"\u2190 Doing",isRollback:!0}]};ko.TASK_DEFAULT_WORKFLOW={id:"a1b2c3d4-2222-4000-a000-000000000002",name:"Task Default Workflow",targetClass:ef.AssetClass.TASK,initialState:ve.EffortStatus.DRAFT,terminalStates:[ve.EffortStatus.DONE,ve.EffortStatus.TRASHED],isDefault:!0,states:[{status:ve.EffortStatus.DRAFT,order:1,optional:!1,timestampOnEnter:[]},{status:ve.EffortStatus.BACKLOG,order:2,optional:!1,timestampOnEnter:[]},{status:ve.EffortStatus.DOING,order:3,optional:!1,timestampOnEnter:["ems__Effort_startTimestamp"]},{status:ve.EffortStatus.DONE,order:4,optional:!1,timestampOnEnter:["ems__Effort_endTimestamp","ems__Effort_resolutionTimestamp"]},{status:ve.EffortStatus.TRASHED,order:5,optional:!1,timestampOnEnter:["ems__Effort_resolutionTimestamp"]}],transitions:[{from:ve.EffortStatus.DRAFT,to:ve.EffortStatus.BACKLOG,label:"\u2192 Backlog",isRollback:!1},{from:ve.EffortStatus.BACKLOG,to:ve.EffortStatus.DOING,label:"\u25B6 Start",isRollback:!1},{from:ve.EffortStatus.DOING,to:ve.EffortStatus.DONE,label:"\u2713 Done",isRollback:!1},{from:ve.EffortStatus.BACKLOG,to:ve.EffortStatus.DRAFT,label:"\u2190 Draft",isRollback:!0},{from:ve.EffortStatus.DOING,to:ve.EffortStatus.BACKLOG,label:"\u2190 Backlog",isRollback:!0},{from:ve.EffortStatus.DONE,to:ve.EffortStatus.DOING,label:"\u2190 Doing",isRollback:!0}]};function y5(n){let e=new Date().toISOString(),t=[],r=n.id,i={exo__Asset_uid:r,exo__Asset_label:`"${n.name}"`,exo__Asset_createdAt:e,exo__Instance_class:ef.AssetClass.WORKFLOW,[Gr.WorkflowProperty.TARGET_CLASS]:`"[[${n.targetClass}]]"`,[Gr.WorkflowProperty.INITIAL_STATE]:`"[[${n.initialState}]]"`,[Gr.WorkflowProperty.TERMINAL_STATES]:n.terminalStates.map(s=>`"[[${s}]]"`),[Gr.WorkflowProperty.IS_DEFAULT]:n.isDefault};t.push({filename:`${r}.md`,content:K1.MetadataHelpers.buildFileContent(i)});for(let s of n.states){let a=(0,TA.v4)(),c={exo__Asset_uid:a,exo__Asset_label:`"${n.name} - ${s.status}"`,exo__Asset_createdAt:e,exo__Instance_class:ef.AssetClass.WORKFLOW_STATE,[Gr.WorkflowStateProperty.WORKFLOW]:`"[[${r}]]"`,[Gr.WorkflowStateProperty.STATUS]:`"[[${s.status}]]"`,[Gr.WorkflowStateProperty.ORDER]:s.order,[Gr.WorkflowStateProperty.OPTIONAL]:s.optional};s.timestampOnEnter.length>0&&(c[Gr.WorkflowStateProperty.TIMESTAMP_ON_ENTER]=s.timestampOnEnter),s.badgeColor&&(c[Gr.WorkflowStateProperty.BADGE_COLOR]=`"${s.badgeColor}"`),t.push({filename:`${a}.md`,content:K1.MetadataHelpers.buildFileContent(c)})}for(let s of n.transitions){let a=(0,TA.v4)(),c={exo__Asset_uid:a,exo__Asset_label:`"${n.name} - ${s.label}"`,exo__Asset_createdAt:e,exo__Instance_class:ef.AssetClass.WORKFLOW_TRANSITION,[Gr.WorkflowTransitionProperty.WORKFLOW]:`"[[${r}]]"`,[Gr.WorkflowTransitionProperty.FROM]:`"[[${s.from}]]"`,[Gr.WorkflowTransitionProperty.TO]:`"[[${s.to}]]"`,[Gr.WorkflowTransitionProperty.LABEL]:`"${s.label}"`,[Gr.WorkflowTransitionProperty.IS_ROLLBACK]:s.isRollback};s.icon&&(c[Gr.WorkflowTransitionProperty.ICON]=`"${s.icon}"`),t.push({filename:`${a}.md`,content:K1.MetadataHelpers.buildFileContent(c)})}return t}o(y5,"buildWorkflowAssetContent")});var X1=S(Js=>{"use strict";var _5=Js&&Js.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},S5=Js&&Js.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Js,"__esModule",{value:!0});Js.WorkflowResolver=void 0;var b5=le(),tf=Ae(),fn=De(),vt=or(),Mo=Eu(),Lp=yc(),xA=AA(),Y1=class{static{o(this,"WorkflowResolver")}constructor(e){this.tripleStore=e,this.cache=new Map}async resolveForClass(e){let t=`class:${e}`,r=this.cache.get(t);if(r)return r;let s=await this.findDefaultWorkflow(e)??this.getHardcodedFallback(e);return this.cache.set(t,s),s}async resolveForAsset(e,t){let r=await this.tripleStore.match(e,vt.Namespace.EMS.term("Effort_workflow"),void 0);if(r.length>0){let i=r[0].object;if(i instanceof tf.IRI){let s=await this.loadWorkflowBySubject(i);if(s)return s}}return this.resolveForClass(t)}invalidateCache(){this.cache.clear()}async findDefaultWorkflow(e){let t=await this.tripleStore.match(void 0,vt.Namespace.RDF.term("type"),vt.Namespace.EMS.term("Workflow"));for(let r of t){let i=r.subject;if(!(!(await this.tripleStore.match(i,vt.Namespace.EMS.term("Workflow_targetClass"),void 0)).some(u=>{let f=u.object;return f instanceof tf.IRI?f.value.endsWith(e.replace(/^ems__/,"")):f instanceof fn.Literal?this.normalizeWikilink(f.value)===e:!1})||!(await this.tripleStore.match(i,vt.Namespace.EMS.term("Workflow_isDefault"),void 0)).some(u=>{let f=u.object instanceof fn.Literal?u.object.value:"";return f==="true"||f==="1"})))return this.loadWorkflowBySubject(i)}return null}async loadWorkflowBySubject(e){let t=await this.tripleStore.match(e,vt.Namespace.EXO.term("Asset_label"),void 0),r=t.length>0&&t[0].object instanceof fn.Literal?t[0].object.value:"Unknown Workflow",i=await this.tripleStore.match(e,vt.Namespace.EXO.term("Asset_uid"),void 0),s=i.length>0&&i[0].object instanceof fn.Literal?i[0].object.value:e.value,a=await this.tripleStore.match(e,vt.Namespace.EMS.term("Workflow_targetClass"),void 0),c=this.resolveAssetClass(a),l=await this.tripleStore.match(e,vt.Namespace.EMS.term("Workflow_initialState"),void 0),u=this.resolveEffortStatus(l)??Lp.EffortStatus.DRAFT,f=await this.tripleStore.match(e,vt.Namespace.EMS.term("Workflow_terminalStates"),void 0),d=this.resolveEffortStatuses(f),p=(await this.tripleStore.match(e,vt.Namespace.EMS.term("Workflow_isDefault"),void 0)).some(w=>{let v=w.object instanceof fn.Literal?w.object.value:"";return v==="true"||v==="1"}),y=await this.loadStates(e),b=await this.loadTransitions(e);return y.length===0&&b.length===0?null:{id:s,name:r,targetClass:c,states:y,transitions:b,initialState:u,terminalStates:d.length>0?d:[Lp.EffortStatus.DONE,Lp.EffortStatus.TRASHED],isDefault:p}}async loadStates(e){let t=await this.tripleStore.match(void 0,vt.Namespace.RDF.term("type"),vt.Namespace.EMS.term("WorkflowState")),r=[];for(let i of t){let s=i.subject;if(!(await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_workflow"),void 0)).some(T=>this.isSameSubject(T.object,e)))continue;let l=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_status"),void 0),u=this.resolveEffortStatus(l);if(!u)continue;let f=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_order"),void 0),d=f.length>0&&f[0].object instanceof fn.Literal&&parseInt(f[0].object.value,10)||0,p=(await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_optional"),void 0)).some(T=>{let C=T.object instanceof fn.Literal?T.object.value:"";return C==="true"||C==="1"}),b=(await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_timestampOnEnter"),void 0)).map(T=>T.object instanceof fn.Literal?T.object.value:"").filter(T=>T.length>0),w=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_badgeColor"),void 0),v=w.length>0&&w[0].object instanceof fn.Literal?w[0].object.value:void 0;r.push({status:u,order:d,optional:p,timestampOnEnter:b,badgeColor:v})}return r.sort((i,s)=>i.order-s.order)}async loadTransitions(e){let t=await this.tripleStore.match(void 0,vt.Namespace.RDF.term("type"),vt.Namespace.EMS.term("WorkflowTransition")),r=[];for(let i of t){let s=i.subject;if(!(await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_workflow"),void 0)).some(T=>this.isSameSubject(T.object,e)))continue;let l=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_from"),void 0),u=this.resolveEffortStatus(l),f=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_to"),void 0),d=this.resolveEffortStatus(f);if(!u||!d)continue;let h=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_label"),void 0),p=h.length>0&&h[0].object instanceof fn.Literal?h[0].object.value:`${u} \u2192 ${d}`,y=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_icon"),void 0),b=y.length>0&&y[0].object instanceof fn.Literal?y[0].object.value:void 0,v=(await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_isRollback"),void 0)).some(T=>{let C=T.object instanceof fn.Literal?T.object.value:"";return C==="true"||C==="1"});r.push({from:u,to:d,label:p,icon:b,isRollback:v})}return r}normalizeWikilink(e){return e.replace(/["'[\]]/g,"").trim()}resolveAssetClass(e){if(e.length===0)return Mo.AssetClass.TASK;let t=e[0].object;if(t instanceof tf.IRI){let i=`ems__${t.value.split("#").pop()??""}`;return Object.values(Mo.AssetClass).includes(i)?i:Mo.AssetClass.TASK}if(t instanceof fn.Literal){let r=this.normalizeWikilink(t.value);return Object.values(Mo.AssetClass).includes(r)?r:Mo.AssetClass.TASK}return Mo.AssetClass.TASK}resolveEffortStatus(e){if(e.length===0)return null;let t=e[0].object,r;if(t instanceof tf.IRI)r=`ems__${t.value.split("#").pop()??""}`;else if(t instanceof fn.Literal)r=this.normalizeWikilink(t.value);else return null;return Object.values(Lp.EffortStatus).includes(r)?r:null}resolveEffortStatuses(e){return e.map(t=>this.resolveEffortStatus([t])).filter(t=>t!==null)}isSameSubject(e,t){if(e instanceof tf.IRI)return e.value===t.value;if(e instanceof fn.Literal){let r=this.normalizeWikilink(e.value);return t.value.includes(r)}return!1}getHardcodedFallback(e){return e===Mo.AssetClass.PROJECT?{...xA.PROJECT_DEFAULT_WORKFLOW}:{...xA.TASK_DEFAULT_WORKFLOW}}};Js.WorkflowResolver=Y1;Js.WorkflowResolver=Y1=_5([(0,b5.injectable)(),S5("design:paramtypes",[Object])],Y1)});var tS=S(ka=>{"use strict";Object.defineProperty(ka,"__esModule",{value:!0});ka.TransactionError=ka.TripleNotFoundError=ka.TripleAlreadyExistsError=void 0;var J1=class extends Error{static{o(this,"TripleAlreadyExistsError")}constructor(e){super(`Triple already exists: ${e.toString()}`),this.name="TripleAlreadyExistsError"}};ka.TripleAlreadyExistsError=J1;var Z1=class extends Error{static{o(this,"TripleNotFoundError")}constructor(e){super(`Triple not found: ${e.toString()}`),this.name="TripleNotFoundError"}};ka.TripleNotFoundError=Z1;var eS=class extends Error{static{o(this,"TransactionError")}constructor(e){super(e),this.name="TransactionError"}};ka.TransactionError=eS});var Mp=S(kp=>{"use strict";Object.defineProperty(kp,"__esModule",{value:!0});kp.LRUCache=void 0;var rS=class{static{o(this,"LRUCache")}constructor(e){this.maxSize=e,this.cache=new Map}get(e){let t=this.cache.get(e);return t!==void 0&&(this.cache.delete(e),this.cache.set(e,t)),t}set(e,t){if(this.cache.has(e))this.cache.delete(e);else if(this.cache.size>=this.maxSize){let r=this.cache.keys().next().value;r!==void 0&&this.cache.delete(r)}this.cache.set(e,t)}clear(){this.cache.clear()}size(){return this.cache.size}};kp.LRUCache=rS});var sS=S($p=>{"use strict";Object.defineProperty($p,"__esModule",{value:!0});$p.InMemoryTripleStore=void 0;var Ma=tS(),jp=Ae(),v5=Vt(),w5=De(),E5=or(),T5=Mp(),A5=E5.Namespace.XSD.term("string").value,x5=/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/gi,il="__default__",nS=class n{static{o(this,"InMemoryTripleStore")}constructor(){this.triples=new Map,this.spo=new Map,this.sop=new Map,this.pso=new Map,this.pos=new Map,this.osp=new Map,this.ops=new Map,this.queryCache=new T5.LRUCache(1e3),this.uuidIndex=new Map,this.namedGraphs=new Map}async add(e){let t=this.getTripleKey(e);if(this.triples.has(t))return;this.triples.set(t,e);let r=this.getNodeKey(e.subject),i=this.getNodeKey(e.predicate),s=this.getNodeKey(e.object);this.addToIndex(this.spo,r,i,s),this.addToIndex(this.sop,r,s,i),this.addToIndex(this.pso,i,r,s),this.addToIndex(this.pos,i,s,r),this.addToIndex(this.osp,s,r,i),this.addToIndex(this.ops,s,i,r),this.addToUUIDIndex(e.subject),this.queryCache.clear()}async remove(e){let t=this.getTripleKey(e);if(!this.triples.has(t))return!1;this.triples.delete(t);let r=this.getNodeKey(e.subject),i=this.getNodeKey(e.predicate),s=this.getNodeKey(e.object);return this.removeFromIndex(this.spo,r,i,s),this.removeFromIndex(this.sop,r,s,i),this.removeFromIndex(this.pso,i,r,s),this.removeFromIndex(this.pos,i,s,r),this.removeFromIndex(this.osp,s,r,i),this.removeFromIndex(this.ops,s,i,r),this.queryCache.clear(),!0}async has(e){let t=this.getTripleKey(e);return this.triples.has(t)}async match(e,t,r){let i=this.getMatchCacheKey(e,t,r),s=this.queryCache.get(i);if(s!==void 0)return s;let a;return!e&&!t&&!r?a=Array.from(this.triples.values()):e&&t&&r?a=this.matchSPO(e,t,r):e&&t?a=this.matchSP(e,t):e&&r?a=this.matchSO(e,r):t&&r?a=this.matchPO(t,r):e?a=this.matchS(e):t?a=this.matchP(t):r?a=this.matchO(r):a=[],this.queryCache.set(i,a),a}async addAll(e){for(let t of e)await this.add(t)}async removeAll(e){let t=0;for(let r of e)await this.remove(r)&&t++;return t}async clear(){this.triples.clear(),this.spo.clear(),this.sop.clear(),this.pso.clear(),this.pos.clear(),this.osp.clear(),this.ops.clear(),this.uuidIndex.clear(),this.queryCache.clear()}async count(){return this.triples.size}async subjects(){let e=new Set;for(let t of this.triples.values())e.add(t.subject);return Array.from(e)}async predicates(){let e=new Set;for(let t of this.triples.values())e.add(t.predicate);return Array.from(e)}async objects(){let e=new Set;for(let t of this.triples.values())e.add(t.object);return Array.from(e)}async beginTransaction(){return new iS(this)}async findSubjectsByUUID(e){return this.findSubjectsByUUIDSync(e)}findSubjectsByUUIDSync(e){let t=e.toLowerCase(),r=this.uuidIndex.get(t);if(!r||r.size===0)return[];let i=[];for(let s of r)this.spo.has(`i:${s}`)&&i.push(new jp.IRI(s));return i}addToUUIDIndex(e){if(!(e instanceof jp.IRI))return;let t=e.value,r=t.match(x5);if(r)for(let i of r){let s=i.toLowerCase();this.uuidIndex.has(s)||this.uuidIndex.set(s,new Set),this.uuidIndex.get(s).add(t)}}matchSPO(e,t,r){let i=this.getNodeKey(e),s=this.getNodeKey(t),a=this.getNodeKey(r),c=this.spo.get(i);if(!c)return[];let l=c.get(s);if(!l)return[];if(l.has(a)){let u=this.buildTripleKey(i,s,a),f=this.triples.get(u);return f?[f]:[]}return[]}matchSP(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.spo.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(r,i,c))):[]}matchSO(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.sop.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(r,c,i))):[]}matchPO(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.pos.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(c,r,i))):[]}matchS(e){let t=this.getNodeKey(e),r=this.spo.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(t,s,c));return this.getTriplesByKeys(i)}matchP(e){let t=this.getNodeKey(e),r=this.pso.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(s,t,c));return this.getTriplesByKeys(i)}matchO(e){let t=this.getNodeKey(e),r=this.osp.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(s,c,t));return this.getTriplesByKeys(i)}getTriplesByKeys(e){let t=[];for(let r of e){let i=this.triples.get(r);i&&t.push(i)}return t}addToIndex(e,t,r,i){e.has(t)||e.set(t,new Map);let s=e.get(t);s.has(r)||s.set(r,new Set),s.get(r).add(i)}removeFromIndex(e,t,r,i){let s=e.get(t);if(!s)return;let a=s.get(r);a&&(a.delete(i),a.size===0&&s.delete(r),s.size===0&&e.delete(t))}getTripleKey(e){let t=this.getNodeKey(e.subject),r=this.getNodeKey(e.predicate),i=this.getNodeKey(e.object);return this.buildTripleKey(t,r,i)}buildTripleKey(e,t,r){return`${e}|${t}|${r}`}getNodeKey(e){if(e instanceof jp.IRI)return`i:${e.value}`;if(e instanceof v5.BlankNode)return`b:${e.id}`;if(e instanceof w5.Literal){let t=`l:${e.value}`;return e.datatype&&e.datatype.value!==A5?t+=`^^${e.datatype.value}`:e.language&&(t+=`@${e.language}`),t}return""}getMatchCacheKey(e,t,r){let i=e?this.getNodeKey(e):"?",s=t?this.getNodeKey(t):"?",a=r?this.getNodeKey(r):"?";return`${i}|${s}|${a}`}getGraphKey(e){return e?e.value:il}getOrCreateGraphStore(e){let t=this.getGraphKey(e);return t===il?this:(this.namedGraphs.has(t)||this.namedGraphs.set(t,new n),this.namedGraphs.get(t))}async addToGraph(e,t){await this.getOrCreateGraphStore(t).add(e)}async removeFromGraph(e,t){let r=this.getGraphKey(t);if(r===il)return this.remove(e);let i=this.namedGraphs.get(r);return i?i.remove(e):!1}async matchInGraph(e,t,r,i){let s=this.getGraphKey(i);if(s===il)return this.match(e,t,r);let a=this.namedGraphs.get(s);return a?a.match(e,t,r):[]}async getNamedGraphs(){return Array.from(this.namedGraphs.keys()).map(e=>new jp.IRI(e))}async hasGraph(e){let t=this.namedGraphs.get(e.value);return t?await t.count()>0:!1}async clearGraph(e){let t=this.getGraphKey(e);if(t===il){await this.clear();return}let r=this.namedGraphs.get(t);r&&(await r.clear(),this.namedGraphs.delete(t))}async countInGraph(e){let t=this.getGraphKey(e);if(t===il)return this.count();let r=this.namedGraphs.get(t);return r?r.count():0}};$p.InMemoryTripleStore=nS;var iS=class{static{o(this,"InMemoryTransaction")}constructor(e){this.store=e,this.operations=[],this.committed=!1,this.rolledBack=!1}async add(e){if(this.committed)throw new Ma.TransactionError("Transaction already committed");if(this.rolledBack)throw new Ma.TransactionError("Transaction already rolled back");this.operations.push({type:"add",triple:e})}async remove(e){if(this.committed)throw new Ma.TransactionError("Transaction already committed");if(this.rolledBack)throw new Ma.TransactionError("Transaction already rolled back");return this.operations.push({type:"remove",triple:e}),!0}async commit(){if(this.committed)throw new Ma.TransactionError("Transaction already committed");if(this.rolledBack)throw new Ma.TransactionError("Transaction already rolled back");for(let e of this.operations)e.type==="add"?await this.store.add(e.triple):await this.store.remove(e.triple);this.committed=!0,this.operations=[]}async rollback(){if(this.committed)throw new Ma.TransactionError("Transaction already committed");if(this.rolledBack)throw new Ma.TransactionError("Transaction already rolled back");this.operations=[],this.rolledBack=!0}}});var Up=S(Zs=>{"use strict";var I5=Zs&&Zs.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},C5=Zs&&Zs.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Zs,"__esModule",{value:!0});Zs.EffortStatusWorkflow=void 0;var R5=le(),Vp=kn(),O5=Zu(),P5=X1(),F5=sS(),aS=class{static{o(this,"EffortStatusWorkflow")}constructor(){this.resolver=new P5.WorkflowResolver(new F5.InMemoryTripleStore)}getPreviousStatus(e,t){let r=this.normalizeStatus(e),i=this.resolveDefinition(t),s=new O5.WorkflowEngine(i);if(s.isInitialState(r))return null;let a=s.getPreviousStatus(r);if(a!==null)return this.wrapStatus(a)}normalizeStatus(e){return e.replace(/["'[\]]/g,"").trim()}wrapStatus(e){return`"[[${e}]]"`}resolveDefinition(e){return this.hasInstanceClass(e,Vp.AssetClass.TASK)||this.hasInstanceClass(e,Vp.AssetClass.MEETING)?this.resolver.getHardcodedFallback(Vp.AssetClass.TASK):this.resolver.getHardcodedFallback(Vp.AssetClass.PROJECT)}hasInstanceClass(e,t){return e?(Array.isArray(e)?e:[e]).some(i=>i.replace(/["'[\]]/g,"").trim()===t):!1}};Zs.EffortStatusWorkflow=aS;Zs.EffortStatusWorkflow=aS=I5([(0,R5.injectable)(),C5("design:paramtypes",[])],aS)});var wt=S(Bp=>{"use strict";Object.defineProperty(Bp,"__esModule",{value:!0});Bp.DI_TOKENS=void 0;Bp.DI_TOKENS={IFileSystemAdapter:Symbol.for("IFileSystemAdapter"),IVaultAdapter:Symbol.for("IVaultAdapter"),IVaultContext:Symbol.for("IVaultContext"),IMultiVaultManager:Symbol.for("IMultiVaultManager"),ILogger:Symbol.for("ILogger"),IEventBus:Symbol.for("IEventBus"),IConfiguration:Symbol.for("IConfiguration"),INotificationService:Symbol.for("INotificationService"),AreaCreationService:Symbol.for("AreaCreationService"),ClassCreationService:Symbol.for("ClassCreationService"),ConceptCreationService:Symbol.for("ConceptCreationService"),FleetingNoteCreationService:Symbol.for("FleetingNoteCreationService"),SupervisionCreationService:Symbol.for("SupervisionCreationService"),GenericAssetCreationService:Symbol.for("GenericAssetCreationService"),DynamicFrontmatterGenerator:Symbol.for("DynamicFrontmatterGenerator"),AlgorithmExtractor:Symbol.for("AlgorithmExtractor"),TaskStatusService:Symbol.for("TaskStatusService"),EffortStatusWorkflow:Symbol.for("EffortStatusWorkflow"),StatusTimestampService:Symbol.for("StatusTimestampService"),PropertyCleanupService:Symbol.for("PropertyCleanupService"),FolderRepairService:Symbol.for("FolderRepairService"),LabelToAliasService:Symbol.for("LabelToAliasService"),RenameToUidService:Symbol.for("RenameToUidService"),PlanningService:Symbol.for("PlanningService"),EffortVotingService:Symbol.for("EffortVotingService"),SessionEventService:Symbol.for("SessionEventService"),CriticalityZoneService:Symbol.for("CriticalityZoneService"),AssetConversionService:Symbol.for("AssetConversionService"),NoteToRDFConverter:Symbol.for("NoteToRDFConverter"),IVaultSettings:Symbol.for("IVaultSettings"),AreaHierarchyBuilder:Symbol.for("AreaHierarchyBuilder"),URIConstructionService:Symbol.for("URIConstructionService"),ClassHierarchyResolver:Symbol.for("ClassHierarchyResolver")}});var qp=S(Si=>{"use strict";var D5=Si&&Si.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},N5=Si&&Si.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},L5=Si&&Si.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Si,"__esModule",{value:!0});Si.StatusTimestampService=void 0;var IA=le(),k5=Zn(),sl=Wr(),M5=wt(),oS=class{static{o(this,"StatusTimestampService")}constructor(e){this.vault=e,this.frontmatterService=new k5.FrontmatterService}async addStartTimestamp(e){let t=await this.vault.read(e),r=sl.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_startTimestamp",r);await this.vault.modify(e,i)}async addEndTimestamp(e,t){let r=await this.vault.read(e),i=t||new Date,s=sl.DateFormatter.toLocalTimestamp(i),a=this.frontmatterService.updateProperty(r,"ems__Effort_endTimestamp",s);await this.vault.modify(e,a)}async addResolutionTimestamp(e){let t=await this.vault.read(e),r=sl.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_resolutionTimestamp",r);await this.vault.modify(e,i)}async addReviewTimestamp(e){let t=await this.vault.read(e),r=sl.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_lastReviewTimestamp",r);await this.vault.modify(e,i)}async addEndAndResolutionTimestamps(e,t){let r=await this.vault.read(e),i=t||new Date,s=sl.DateFormatter.toLocalTimestamp(i),a=this.frontmatterService.updateProperty(r,"ems__Effort_endTimestamp",s);a=this.frontmatterService.updateProperty(a,"ems__Effort_resolutionTimestamp",s),await this.vault.modify(e,a)}async removeStartTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_startTimestamp");await this.vault.modify(e,r)}async removeEndTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_endTimestamp");await this.vault.modify(e,r)}async removeResolutionTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_resolutionTimestamp");await this.vault.modify(e,r)}async removeEndAndResolutionTimestamps(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_endTimestamp");r=this.frontmatterService.removeProperty(r,"ems__Effort_resolutionTimestamp"),await this.vault.modify(e,r)}async shiftPlannedEndTimestamp(e,t){let r=await this.vault.read(e),i=this.frontmatterService.parse(r);if(!i.exists)return;let s=this.frontmatterService.getPropertyValue(i.content,"ems__Effort_plannedEndTimestamp");if(!s)return;let a=new Date(s.replace(/["']/g,""));if(isNaN(a.getTime()))return;let c=new Date(a.getTime()+t),l=sl.DateFormatter.toLocalTimestamp(c),u=this.frontmatterService.updateProperty(r,"ems__Effort_plannedEndTimestamp",l);await this.vault.modify(e,u)}};Si.StatusTimestampService=oS;Si.StatusTimestampService=oS=D5([(0,IA.injectable)(),L5(0,(0,IA.inject)(M5.DI_TOKENS.IVaultAdapter)),N5("design:paramtypes",[Object])],oS)});var lS=S(bi=>{"use strict";var j5=bi&&bi.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},$5=bi&&bi.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},V5=bi&&bi.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(bi,"__esModule",{value:!0});bi.TaskStatusService=void 0;var CA=le(),U5=Zn(),jo=Wr(),B5=Up(),q5=qp(),W5=wt(),cS=class{static{o(this,"TaskStatusService")}constructor(e,t,r){this.vault=e,this.workflow=t,this.timestampService=r,this.frontmatterService=new U5.FrontmatterService}async setDraftStatus(e){await this.updateStatus(e,"ems__EffortStatusDraft")}async moveToBacklog(e){await this.updateStatus(e,"ems__EffortStatusBacklog")}async moveToAnalysis(e){await this.updateStatus(e,"ems__EffortStatusAnalysis")}async moveToToDo(e){await this.updateStatus(e,"ems__EffortStatusToDo")}async startEffort(e){let t=await this.vault.read(e),r=jo.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_status",'"[[ems__EffortStatusDoing]]"');i=this.frontmatterService.updateProperty(i,"ems__Effort_startTimestamp",r),await this.vault.modify(e,i)}async markTaskAsDone(e){let t=await this.vault.read(e),r=jo.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_status",'"[[ems__EffortStatusDone]]"');i=this.frontmatterService.updateProperty(i,"ems__Effort_endTimestamp",r),i=this.frontmatterService.updateProperty(i,"ems__Effort_resolutionTimestamp",r),await this.vault.modify(e,i)}async syncEffortEndTimestamp(e,t){await this.timestampService.addEndAndResolutionTimestamps(e,t)}async shiftPlannedEndTimestamp(e,t){await this.timestampService.shiftPlannedEndTimestamp(e,t)}async trashEffort(e,t){let r=await this.vault.read(e),i=jo.DateFormatter.toLocalTimestamp(new Date),s=this.frontmatterService.updateProperty(r,"ems__Effort_status",'"[[ems__EffortStatusTrashed]]"');s=this.frontmatterService.updateProperty(s,"ems__Effort_resolutionTimestamp",i),t&&(s=this.appendTrashReason(s,t)),await this.vault.modify(e,s)}appendTrashReason(e,t){let r=`
100
+ ${s}`}};Np.MetadataHelpers=Q1});var AA=S(ko=>{"use strict";Object.defineProperty(ko,"__esModule",{value:!0});ko.TASK_DEFAULT_WORKFLOW=ko.PROJECT_DEFAULT_WORKFLOW=void 0;ko.buildWorkflowAssetContent=y5;var TA=En(),ef=Eu(),ve=yc(),Gr=EA(),K1=ps();ko.PROJECT_DEFAULT_WORKFLOW={id:"a1b2c3d4-1111-4000-a000-000000000001",name:"Project Default Workflow",targetClass:ef.AssetClass.PROJECT,initialState:ve.EffortStatus.DRAFT,terminalStates:[ve.EffortStatus.DONE,ve.EffortStatus.TRASHED],isDefault:!0,states:[{status:ve.EffortStatus.DRAFT,order:1,optional:!1,timestampOnEnter:[]},{status:ve.EffortStatus.BACKLOG,order:2,optional:!1,timestampOnEnter:[]},{status:ve.EffortStatus.ANALYSIS,order:3,optional:!0,timestampOnEnter:[]},{status:ve.EffortStatus.TODO,order:4,optional:!0,timestampOnEnter:[]},{status:ve.EffortStatus.DOING,order:5,optional:!1,timestampOnEnter:["ems__Effort_startTimestamp"]},{status:ve.EffortStatus.DONE,order:6,optional:!1,timestampOnEnter:["ems__Effort_endTimestamp","ems__Effort_resolutionTimestamp"]},{status:ve.EffortStatus.TRASHED,order:7,optional:!1,timestampOnEnter:["ems__Effort_resolutionTimestamp"]}],transitions:[{from:ve.EffortStatus.DRAFT,to:ve.EffortStatus.BACKLOG,label:"\u2192 Backlog",isRollback:!1},{from:ve.EffortStatus.BACKLOG,to:ve.EffortStatus.ANALYSIS,label:"\u2192 Analysis",isRollback:!1},{from:ve.EffortStatus.ANALYSIS,to:ve.EffortStatus.TODO,label:"\u2192 ToDo",isRollback:!1},{from:ve.EffortStatus.TODO,to:ve.EffortStatus.DOING,label:"\u25B6 Start",isRollback:!1},{from:ve.EffortStatus.DOING,to:ve.EffortStatus.DONE,label:"\u2713 Done",isRollback:!1},{from:ve.EffortStatus.BACKLOG,to:ve.EffortStatus.DRAFT,label:"\u2190 Draft",isRollback:!0},{from:ve.EffortStatus.ANALYSIS,to:ve.EffortStatus.BACKLOG,label:"\u2190 Backlog",isRollback:!0},{from:ve.EffortStatus.TODO,to:ve.EffortStatus.ANALYSIS,label:"\u2190 Analysis",isRollback:!0},{from:ve.EffortStatus.DOING,to:ve.EffortStatus.TODO,label:"\u2190 ToDo",isRollback:!0},{from:ve.EffortStatus.DONE,to:ve.EffortStatus.DOING,label:"\u2190 Doing",isRollback:!0}]};ko.TASK_DEFAULT_WORKFLOW={id:"a1b2c3d4-2222-4000-a000-000000000002",name:"Task Default Workflow",targetClass:ef.AssetClass.TASK,initialState:ve.EffortStatus.DRAFT,terminalStates:[ve.EffortStatus.DONE,ve.EffortStatus.TRASHED],isDefault:!0,states:[{status:ve.EffortStatus.DRAFT,order:1,optional:!1,timestampOnEnter:[]},{status:ve.EffortStatus.BACKLOG,order:2,optional:!1,timestampOnEnter:[]},{status:ve.EffortStatus.DOING,order:3,optional:!1,timestampOnEnter:["ems__Effort_startTimestamp"]},{status:ve.EffortStatus.DONE,order:4,optional:!1,timestampOnEnter:["ems__Effort_endTimestamp","ems__Effort_resolutionTimestamp"]},{status:ve.EffortStatus.TRASHED,order:5,optional:!1,timestampOnEnter:["ems__Effort_resolutionTimestamp"]}],transitions:[{from:ve.EffortStatus.DRAFT,to:ve.EffortStatus.BACKLOG,label:"\u2192 Backlog",isRollback:!1},{from:ve.EffortStatus.BACKLOG,to:ve.EffortStatus.DOING,label:"\u25B6 Start",isRollback:!1},{from:ve.EffortStatus.DOING,to:ve.EffortStatus.DONE,label:"\u2713 Done",isRollback:!1},{from:ve.EffortStatus.BACKLOG,to:ve.EffortStatus.DRAFT,label:"\u2190 Draft",isRollback:!0},{from:ve.EffortStatus.DOING,to:ve.EffortStatus.BACKLOG,label:"\u2190 Backlog",isRollback:!0},{from:ve.EffortStatus.DONE,to:ve.EffortStatus.DOING,label:"\u2190 Doing",isRollback:!0}]};function y5(n){let e=new Date().toISOString(),t=[],r=n.id,i={exo__Asset_uid:r,exo__Asset_label:`"${n.name}"`,exo__Asset_createdAt:e,exo__Instance_class:ef.AssetClass.WORKFLOW,[Gr.WorkflowProperty.TARGET_CLASS]:`"[[${n.targetClass}]]"`,[Gr.WorkflowProperty.INITIAL_STATE]:`"[[${n.initialState}]]"`,[Gr.WorkflowProperty.TERMINAL_STATES]:n.terminalStates.map(s=>`"[[${s}]]"`),[Gr.WorkflowProperty.IS_DEFAULT]:n.isDefault};t.push({filename:`${r}.md`,content:K1.MetadataHelpers.buildFileContent(i)});for(let s of n.states){let a=(0,TA.v4)(),c={exo__Asset_uid:a,exo__Asset_label:`"${n.name} - ${s.status}"`,exo__Asset_createdAt:e,exo__Instance_class:ef.AssetClass.WORKFLOW_STATE,[Gr.WorkflowStateProperty.WORKFLOW]:`"[[${r}]]"`,[Gr.WorkflowStateProperty.STATUS]:`"[[${s.status}]]"`,[Gr.WorkflowStateProperty.ORDER]:s.order,[Gr.WorkflowStateProperty.OPTIONAL]:s.optional};s.timestampOnEnter.length>0&&(c[Gr.WorkflowStateProperty.TIMESTAMP_ON_ENTER]=s.timestampOnEnter),s.badgeColor&&(c[Gr.WorkflowStateProperty.BADGE_COLOR]=`"${s.badgeColor}"`),t.push({filename:`${a}.md`,content:K1.MetadataHelpers.buildFileContent(c)})}for(let s of n.transitions){let a=(0,TA.v4)(),c={exo__Asset_uid:a,exo__Asset_label:`"${n.name} - ${s.label}"`,exo__Asset_createdAt:e,exo__Instance_class:ef.AssetClass.WORKFLOW_TRANSITION,[Gr.WorkflowTransitionProperty.WORKFLOW]:`"[[${r}]]"`,[Gr.WorkflowTransitionProperty.FROM]:`"[[${s.from}]]"`,[Gr.WorkflowTransitionProperty.TO]:`"[[${s.to}]]"`,[Gr.WorkflowTransitionProperty.LABEL]:`"${s.label}"`,[Gr.WorkflowTransitionProperty.IS_ROLLBACK]:s.isRollback};s.icon&&(c[Gr.WorkflowTransitionProperty.ICON]=`"${s.icon}"`),t.push({filename:`${a}.md`,content:K1.MetadataHelpers.buildFileContent(c)})}return t}o(y5,"buildWorkflowAssetContent")});var X1=S(Js=>{"use strict";var _5=Js&&Js.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},S5=Js&&Js.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Js,"__esModule",{value:!0});Js.WorkflowResolver=void 0;var b5=le(),tf=Ae(),fn=De(),vt=or(),Mo=Eu(),Lp=yc(),xA=AA(),Y1=class{static{o(this,"WorkflowResolver")}constructor(e){this.tripleStore=e,this.cache=new Map}async resolveForClass(e){let t=`class:${e}`,r=this.cache.get(t);if(r)return r;let s=await this.findDefaultWorkflow(e)??this.getHardcodedFallback(e);return this.cache.set(t,s),s}async resolveForAsset(e,t){let r=await this.tripleStore.match(e,vt.Namespace.EMS.term("Effort_workflow"),void 0);if(r.length>0){let i=r[0].object;if(i instanceof tf.IRI){let s=await this.loadWorkflowBySubject(i);if(s)return s}}return this.resolveForClass(t)}invalidateCache(){this.cache.clear()}async findDefaultWorkflow(e){let t=await this.tripleStore.match(void 0,vt.Namespace.RDF.term("type"),vt.Namespace.EMS.term("Workflow"));for(let r of t){let i=r.subject;if(!(!(await this.tripleStore.match(i,vt.Namespace.EMS.term("Workflow_targetClass"),void 0)).some(u=>{let f=u.object;return f instanceof tf.IRI?f.value.endsWith(e.replace(/^ems__/,"")):f instanceof fn.Literal?this.normalizeWikilink(f.value)===e:!1})||!(await this.tripleStore.match(i,vt.Namespace.EMS.term("Workflow_isDefault"),void 0)).some(u=>{let f=u.object instanceof fn.Literal?u.object.value:"";return f==="true"||f==="1"})))return this.loadWorkflowBySubject(i)}return null}async loadWorkflowBySubject(e){let t=await this.tripleStore.match(e,vt.Namespace.EXO.term("Asset_label"),void 0),r=t.length>0&&t[0].object instanceof fn.Literal?t[0].object.value:"Unknown Workflow",i=await this.tripleStore.match(e,vt.Namespace.EXO.term("Asset_uid"),void 0),s=i.length>0&&i[0].object instanceof fn.Literal?i[0].object.value:e.value,a=await this.tripleStore.match(e,vt.Namespace.EMS.term("Workflow_targetClass"),void 0),c=this.resolveAssetClass(a),l=await this.tripleStore.match(e,vt.Namespace.EMS.term("Workflow_initialState"),void 0),u=this.resolveEffortStatus(l)??Lp.EffortStatus.DRAFT,f=await this.tripleStore.match(e,vt.Namespace.EMS.term("Workflow_terminalStates"),void 0),d=this.resolveEffortStatuses(f),p=(await this.tripleStore.match(e,vt.Namespace.EMS.term("Workflow_isDefault"),void 0)).some(w=>{let v=w.object instanceof fn.Literal?w.object.value:"";return v==="true"||v==="1"}),y=await this.loadStates(e),b=await this.loadTransitions(e);return y.length===0&&b.length===0?null:{id:s,name:r,targetClass:c,states:y,transitions:b,initialState:u,terminalStates:d.length>0?d:[Lp.EffortStatus.DONE,Lp.EffortStatus.TRASHED],isDefault:p}}async loadStates(e){let t=await this.tripleStore.match(void 0,vt.Namespace.RDF.term("type"),vt.Namespace.EMS.term("WorkflowState")),r=[];for(let i of t){let s=i.subject;if(!(await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_workflow"),void 0)).some(T=>this.isSameSubject(T.object,e)))continue;let l=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_status"),void 0),u=this.resolveEffortStatus(l);if(!u)continue;let f=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_order"),void 0),d=f.length>0&&f[0].object instanceof fn.Literal&&parseInt(f[0].object.value,10)||0,p=(await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_optional"),void 0)).some(T=>{let C=T.object instanceof fn.Literal?T.object.value:"";return C==="true"||C==="1"}),b=(await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_timestampOnEnter"),void 0)).map(T=>T.object instanceof fn.Literal?T.object.value:"").filter(T=>T.length>0),w=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowState_badgeColor"),void 0),v=w.length>0&&w[0].object instanceof fn.Literal?w[0].object.value:void 0;r.push({status:u,order:d,optional:p,timestampOnEnter:b,badgeColor:v})}return r.sort((i,s)=>i.order-s.order)}async loadTransitions(e){let t=await this.tripleStore.match(void 0,vt.Namespace.RDF.term("type"),vt.Namespace.EMS.term("WorkflowTransition")),r=[];for(let i of t){let s=i.subject;if(!(await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_workflow"),void 0)).some(T=>this.isSameSubject(T.object,e)))continue;let l=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_from"),void 0),u=this.resolveEffortStatus(l),f=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_to"),void 0),d=this.resolveEffortStatus(f);if(!u||!d)continue;let h=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_label"),void 0),p=h.length>0&&h[0].object instanceof fn.Literal?h[0].object.value:`${u} \u2192 ${d}`,y=await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_icon"),void 0),b=y.length>0&&y[0].object instanceof fn.Literal?y[0].object.value:void 0,v=(await this.tripleStore.match(s,vt.Namespace.EMS.term("WorkflowTransition_isRollback"),void 0)).some(T=>{let C=T.object instanceof fn.Literal?T.object.value:"";return C==="true"||C==="1"});r.push({from:u,to:d,label:p,icon:b,isRollback:v})}return r}normalizeWikilink(e){return e.replace(/["'[\]]/g,"").trim()}resolveAssetClass(e){if(e.length===0)return Mo.AssetClass.TASK;let t=e[0].object;if(t instanceof tf.IRI){let i=`ems__${t.value.split("#").pop()??""}`;return Object.values(Mo.AssetClass).includes(i)?i:Mo.AssetClass.TASK}if(t instanceof fn.Literal){let r=this.normalizeWikilink(t.value);return Object.values(Mo.AssetClass).includes(r)?r:Mo.AssetClass.TASK}return Mo.AssetClass.TASK}resolveEffortStatus(e){if(e.length===0)return null;let t=e[0].object,r;if(t instanceof tf.IRI)r=`ems__${t.value.split("#").pop()??""}`;else if(t instanceof fn.Literal)r=this.normalizeWikilink(t.value);else return null;return Object.values(Lp.EffortStatus).includes(r)?r:null}resolveEffortStatuses(e){return e.map(t=>this.resolveEffortStatus([t])).filter(t=>t!==null)}isSameSubject(e,t){if(e instanceof tf.IRI)return e.value===t.value;if(e instanceof fn.Literal){let r=this.normalizeWikilink(e.value);return t.value.includes(r)}return!1}getHardcodedFallback(e){return e===Mo.AssetClass.PROJECT?{...xA.PROJECT_DEFAULT_WORKFLOW}:{...xA.TASK_DEFAULT_WORKFLOW}}};Js.WorkflowResolver=Y1;Js.WorkflowResolver=Y1=_5([(0,b5.injectable)(),S5("design:paramtypes",[Object])],Y1)});var tS=S(Ma=>{"use strict";Object.defineProperty(Ma,"__esModule",{value:!0});Ma.TransactionError=Ma.TripleNotFoundError=Ma.TripleAlreadyExistsError=void 0;var J1=class extends Error{static{o(this,"TripleAlreadyExistsError")}constructor(e){super(`Triple already exists: ${e.toString()}`),this.name="TripleAlreadyExistsError"}};Ma.TripleAlreadyExistsError=J1;var Z1=class extends Error{static{o(this,"TripleNotFoundError")}constructor(e){super(`Triple not found: ${e.toString()}`),this.name="TripleNotFoundError"}};Ma.TripleNotFoundError=Z1;var eS=class extends Error{static{o(this,"TransactionError")}constructor(e){super(e),this.name="TransactionError"}};Ma.TransactionError=eS});var Mp=S(kp=>{"use strict";Object.defineProperty(kp,"__esModule",{value:!0});kp.LRUCache=void 0;var rS=class{static{o(this,"LRUCache")}constructor(e){this.maxSize=e,this.cache=new Map}get(e){let t=this.cache.get(e);return t!==void 0&&(this.cache.delete(e),this.cache.set(e,t)),t}set(e,t){if(this.cache.has(e))this.cache.delete(e);else if(this.cache.size>=this.maxSize){let r=this.cache.keys().next().value;r!==void 0&&this.cache.delete(r)}this.cache.set(e,t)}clear(){this.cache.clear()}size(){return this.cache.size}};kp.LRUCache=rS});var sS=S($p=>{"use strict";Object.defineProperty($p,"__esModule",{value:!0});$p.InMemoryTripleStore=void 0;var ja=tS(),jp=Ae(),v5=Vt(),w5=De(),E5=or(),T5=Mp(),A5=E5.Namespace.XSD.term("string").value,x5=/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/gi,il="__default__",nS=class n{static{o(this,"InMemoryTripleStore")}constructor(){this.triples=new Map,this.spo=new Map,this.sop=new Map,this.pso=new Map,this.pos=new Map,this.osp=new Map,this.ops=new Map,this.queryCache=new T5.LRUCache(1e3),this.uuidIndex=new Map,this.namedGraphs=new Map}async add(e){let t=this.getTripleKey(e);if(this.triples.has(t))return;this.triples.set(t,e);let r=this.getNodeKey(e.subject),i=this.getNodeKey(e.predicate),s=this.getNodeKey(e.object);this.addToIndex(this.spo,r,i,s),this.addToIndex(this.sop,r,s,i),this.addToIndex(this.pso,i,r,s),this.addToIndex(this.pos,i,s,r),this.addToIndex(this.osp,s,r,i),this.addToIndex(this.ops,s,i,r),this.addToUUIDIndex(e.subject),this.queryCache.clear()}async remove(e){let t=this.getTripleKey(e);if(!this.triples.has(t))return!1;this.triples.delete(t);let r=this.getNodeKey(e.subject),i=this.getNodeKey(e.predicate),s=this.getNodeKey(e.object);return this.removeFromIndex(this.spo,r,i,s),this.removeFromIndex(this.sop,r,s,i),this.removeFromIndex(this.pso,i,r,s),this.removeFromIndex(this.pos,i,s,r),this.removeFromIndex(this.osp,s,r,i),this.removeFromIndex(this.ops,s,i,r),this.queryCache.clear(),!0}async has(e){let t=this.getTripleKey(e);return this.triples.has(t)}async match(e,t,r){let i=this.getMatchCacheKey(e,t,r),s=this.queryCache.get(i);if(s!==void 0)return s;let a;return!e&&!t&&!r?a=Array.from(this.triples.values()):e&&t&&r?a=this.matchSPO(e,t,r):e&&t?a=this.matchSP(e,t):e&&r?a=this.matchSO(e,r):t&&r?a=this.matchPO(t,r):e?a=this.matchS(e):t?a=this.matchP(t):r?a=this.matchO(r):a=[],this.queryCache.set(i,a),a}async addAll(e){for(let t of e)await this.add(t)}async removeAll(e){let t=0;for(let r of e)await this.remove(r)&&t++;return t}async clear(){this.triples.clear(),this.spo.clear(),this.sop.clear(),this.pso.clear(),this.pos.clear(),this.osp.clear(),this.ops.clear(),this.uuidIndex.clear(),this.queryCache.clear()}async count(){return this.triples.size}async subjects(){let e=new Set;for(let t of this.triples.values())e.add(t.subject);return Array.from(e)}async predicates(){let e=new Set;for(let t of this.triples.values())e.add(t.predicate);return Array.from(e)}async objects(){let e=new Set;for(let t of this.triples.values())e.add(t.object);return Array.from(e)}async beginTransaction(){return new iS(this)}async findSubjectsByUUID(e){return this.findSubjectsByUUIDSync(e)}findSubjectsByUUIDSync(e){let t=e.toLowerCase(),r=this.uuidIndex.get(t);if(!r||r.size===0)return[];let i=[];for(let s of r)this.spo.has(`i:${s}`)&&i.push(new jp.IRI(s));return i}addToUUIDIndex(e){if(!(e instanceof jp.IRI))return;let t=e.value,r=t.match(x5);if(r)for(let i of r){let s=i.toLowerCase();this.uuidIndex.has(s)||this.uuidIndex.set(s,new Set),this.uuidIndex.get(s).add(t)}}matchSPO(e,t,r){let i=this.getNodeKey(e),s=this.getNodeKey(t),a=this.getNodeKey(r),c=this.spo.get(i);if(!c)return[];let l=c.get(s);if(!l)return[];if(l.has(a)){let u=this.buildTripleKey(i,s,a),f=this.triples.get(u);return f?[f]:[]}return[]}matchSP(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.spo.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(r,i,c))):[]}matchSO(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.sop.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(r,c,i))):[]}matchPO(e,t){let r=this.getNodeKey(e),i=this.getNodeKey(t),s=this.pos.get(r);if(!s)return[];let a=s.get(i);return a?this.getTriplesByKeys(Array.from(a).map(c=>this.buildTripleKey(c,r,i))):[]}matchS(e){let t=this.getNodeKey(e),r=this.spo.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(t,s,c));return this.getTriplesByKeys(i)}matchP(e){let t=this.getNodeKey(e),r=this.pso.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(s,t,c));return this.getTriplesByKeys(i)}matchO(e){let t=this.getNodeKey(e),r=this.osp.get(t);if(!r)return[];let i=[];for(let[s,a]of r.entries())for(let c of a)i.push(this.buildTripleKey(s,c,t));return this.getTriplesByKeys(i)}getTriplesByKeys(e){let t=[];for(let r of e){let i=this.triples.get(r);i&&t.push(i)}return t}addToIndex(e,t,r,i){e.has(t)||e.set(t,new Map);let s=e.get(t);s.has(r)||s.set(r,new Set),s.get(r).add(i)}removeFromIndex(e,t,r,i){let s=e.get(t);if(!s)return;let a=s.get(r);a&&(a.delete(i),a.size===0&&s.delete(r),s.size===0&&e.delete(t))}getTripleKey(e){let t=this.getNodeKey(e.subject),r=this.getNodeKey(e.predicate),i=this.getNodeKey(e.object);return this.buildTripleKey(t,r,i)}buildTripleKey(e,t,r){return`${e}|${t}|${r}`}getNodeKey(e){if(e instanceof jp.IRI)return`i:${e.value}`;if(e instanceof v5.BlankNode)return`b:${e.id}`;if(e instanceof w5.Literal){let t=`l:${e.value}`;return e.datatype&&e.datatype.value!==A5?t+=`^^${e.datatype.value}`:e.language&&(t+=`@${e.language}`),t}return""}getMatchCacheKey(e,t,r){let i=e?this.getNodeKey(e):"?",s=t?this.getNodeKey(t):"?",a=r?this.getNodeKey(r):"?";return`${i}|${s}|${a}`}getGraphKey(e){return e?e.value:il}getOrCreateGraphStore(e){let t=this.getGraphKey(e);return t===il?this:(this.namedGraphs.has(t)||this.namedGraphs.set(t,new n),this.namedGraphs.get(t))}async addToGraph(e,t){await this.getOrCreateGraphStore(t).add(e)}async removeFromGraph(e,t){let r=this.getGraphKey(t);if(r===il)return this.remove(e);let i=this.namedGraphs.get(r);return i?i.remove(e):!1}async matchInGraph(e,t,r,i){let s=this.getGraphKey(i);if(s===il)return this.match(e,t,r);let a=this.namedGraphs.get(s);return a?a.match(e,t,r):[]}async getNamedGraphs(){return Array.from(this.namedGraphs.keys()).map(e=>new jp.IRI(e))}async hasGraph(e){let t=this.namedGraphs.get(e.value);return t?await t.count()>0:!1}async clearGraph(e){let t=this.getGraphKey(e);if(t===il){await this.clear();return}let r=this.namedGraphs.get(t);r&&(await r.clear(),this.namedGraphs.delete(t))}async countInGraph(e){let t=this.getGraphKey(e);if(t===il)return this.count();let r=this.namedGraphs.get(t);return r?r.count():0}};$p.InMemoryTripleStore=nS;var iS=class{static{o(this,"InMemoryTransaction")}constructor(e){this.store=e,this.operations=[],this.committed=!1,this.rolledBack=!1}async add(e){if(this.committed)throw new ja.TransactionError("Transaction already committed");if(this.rolledBack)throw new ja.TransactionError("Transaction already rolled back");this.operations.push({type:"add",triple:e})}async remove(e){if(this.committed)throw new ja.TransactionError("Transaction already committed");if(this.rolledBack)throw new ja.TransactionError("Transaction already rolled back");return this.operations.push({type:"remove",triple:e}),!0}async commit(){if(this.committed)throw new ja.TransactionError("Transaction already committed");if(this.rolledBack)throw new ja.TransactionError("Transaction already rolled back");for(let e of this.operations)e.type==="add"?await this.store.add(e.triple):await this.store.remove(e.triple);this.committed=!0,this.operations=[]}async rollback(){if(this.committed)throw new ja.TransactionError("Transaction already committed");if(this.rolledBack)throw new ja.TransactionError("Transaction already rolled back");this.operations=[],this.rolledBack=!0}}});var Up=S(Zs=>{"use strict";var I5=Zs&&Zs.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},C5=Zs&&Zs.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Zs,"__esModule",{value:!0});Zs.EffortStatusWorkflow=void 0;var R5=le(),Vp=kn(),O5=Zu(),P5=X1(),F5=sS(),aS=class{static{o(this,"EffortStatusWorkflow")}constructor(){this.resolver=new P5.WorkflowResolver(new F5.InMemoryTripleStore)}getPreviousStatus(e,t){let r=this.normalizeStatus(e),i=this.resolveDefinition(t),s=new O5.WorkflowEngine(i);if(s.isInitialState(r))return null;let a=s.getPreviousStatus(r);if(a!==null)return this.wrapStatus(a)}normalizeStatus(e){return e.replace(/["'[\]]/g,"").trim()}wrapStatus(e){return`"[[${e}]]"`}resolveDefinition(e){return this.hasInstanceClass(e,Vp.AssetClass.TASK)||this.hasInstanceClass(e,Vp.AssetClass.MEETING)?this.resolver.getHardcodedFallback(Vp.AssetClass.TASK):this.resolver.getHardcodedFallback(Vp.AssetClass.PROJECT)}hasInstanceClass(e,t){return e?(Array.isArray(e)?e:[e]).some(i=>i.replace(/["'[\]]/g,"").trim()===t):!1}};Zs.EffortStatusWorkflow=aS;Zs.EffortStatusWorkflow=aS=I5([(0,R5.injectable)(),C5("design:paramtypes",[])],aS)});var wt=S(Bp=>{"use strict";Object.defineProperty(Bp,"__esModule",{value:!0});Bp.DI_TOKENS=void 0;Bp.DI_TOKENS={IFileSystemAdapter:Symbol.for("IFileSystemAdapter"),IVaultAdapter:Symbol.for("IVaultAdapter"),IVaultContext:Symbol.for("IVaultContext"),IMultiVaultManager:Symbol.for("IMultiVaultManager"),ILogger:Symbol.for("ILogger"),IEventBus:Symbol.for("IEventBus"),IConfiguration:Symbol.for("IConfiguration"),INotificationService:Symbol.for("INotificationService"),AreaCreationService:Symbol.for("AreaCreationService"),ClassCreationService:Symbol.for("ClassCreationService"),ConceptCreationService:Symbol.for("ConceptCreationService"),FleetingNoteCreationService:Symbol.for("FleetingNoteCreationService"),SupervisionCreationService:Symbol.for("SupervisionCreationService"),GenericAssetCreationService:Symbol.for("GenericAssetCreationService"),DynamicFrontmatterGenerator:Symbol.for("DynamicFrontmatterGenerator"),AlgorithmExtractor:Symbol.for("AlgorithmExtractor"),TaskStatusService:Symbol.for("TaskStatusService"),EffortStatusWorkflow:Symbol.for("EffortStatusWorkflow"),StatusTimestampService:Symbol.for("StatusTimestampService"),PropertyCleanupService:Symbol.for("PropertyCleanupService"),FolderRepairService:Symbol.for("FolderRepairService"),LabelToAliasService:Symbol.for("LabelToAliasService"),RenameToUidService:Symbol.for("RenameToUidService"),PlanningService:Symbol.for("PlanningService"),EffortVotingService:Symbol.for("EffortVotingService"),SessionEventService:Symbol.for("SessionEventService"),CriticalityZoneService:Symbol.for("CriticalityZoneService"),AssetConversionService:Symbol.for("AssetConversionService"),NoteToRDFConverter:Symbol.for("NoteToRDFConverter"),IVaultSettings:Symbol.for("IVaultSettings"),AreaHierarchyBuilder:Symbol.for("AreaHierarchyBuilder"),URIConstructionService:Symbol.for("URIConstructionService"),ClassHierarchyResolver:Symbol.for("ClassHierarchyResolver")}});var qp=S(Si=>{"use strict";var D5=Si&&Si.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},N5=Si&&Si.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},L5=Si&&Si.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Si,"__esModule",{value:!0});Si.StatusTimestampService=void 0;var IA=le(),k5=Zn(),sl=Wr(),M5=wt(),oS=class{static{o(this,"StatusTimestampService")}constructor(e){this.vault=e,this.frontmatterService=new k5.FrontmatterService}async addStartTimestamp(e){let t=await this.vault.read(e),r=sl.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_startTimestamp",r);await this.vault.modify(e,i)}async addEndTimestamp(e,t){let r=await this.vault.read(e),i=t||new Date,s=sl.DateFormatter.toLocalTimestamp(i),a=this.frontmatterService.updateProperty(r,"ems__Effort_endTimestamp",s);await this.vault.modify(e,a)}async addResolutionTimestamp(e){let t=await this.vault.read(e),r=sl.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_resolutionTimestamp",r);await this.vault.modify(e,i)}async addReviewTimestamp(e){let t=await this.vault.read(e),r=sl.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_lastReviewTimestamp",r);await this.vault.modify(e,i)}async addEndAndResolutionTimestamps(e,t){let r=await this.vault.read(e),i=t||new Date,s=sl.DateFormatter.toLocalTimestamp(i),a=this.frontmatterService.updateProperty(r,"ems__Effort_endTimestamp",s);a=this.frontmatterService.updateProperty(a,"ems__Effort_resolutionTimestamp",s),await this.vault.modify(e,a)}async removeStartTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_startTimestamp");await this.vault.modify(e,r)}async removeEndTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_endTimestamp");await this.vault.modify(e,r)}async removeResolutionTimestamp(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_resolutionTimestamp");await this.vault.modify(e,r)}async removeEndAndResolutionTimestamps(e){let t=await this.vault.read(e),r=this.frontmatterService.removeProperty(t,"ems__Effort_endTimestamp");r=this.frontmatterService.removeProperty(r,"ems__Effort_resolutionTimestamp"),await this.vault.modify(e,r)}async shiftPlannedEndTimestamp(e,t){let r=await this.vault.read(e),i=this.frontmatterService.parse(r);if(!i.exists)return;let s=this.frontmatterService.getPropertyValue(i.content,"ems__Effort_plannedEndTimestamp");if(!s)return;let a=new Date(s.replace(/["']/g,""));if(isNaN(a.getTime()))return;let c=new Date(a.getTime()+t),l=sl.DateFormatter.toLocalTimestamp(c),u=this.frontmatterService.updateProperty(r,"ems__Effort_plannedEndTimestamp",l);await this.vault.modify(e,u)}};Si.StatusTimestampService=oS;Si.StatusTimestampService=oS=D5([(0,IA.injectable)(),L5(0,(0,IA.inject)(M5.DI_TOKENS.IVaultAdapter)),N5("design:paramtypes",[Object])],oS)});var lS=S(bi=>{"use strict";var j5=bi&&bi.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},$5=bi&&bi.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},V5=bi&&bi.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(bi,"__esModule",{value:!0});bi.TaskStatusService=void 0;var CA=le(),U5=Zn(),jo=Wr(),B5=Up(),q5=qp(),W5=wt(),cS=class{static{o(this,"TaskStatusService")}constructor(e,t,r){this.vault=e,this.workflow=t,this.timestampService=r,this.frontmatterService=new U5.FrontmatterService}async setDraftStatus(e){await this.updateStatus(e,"ems__EffortStatusDraft")}async moveToBacklog(e){await this.updateStatus(e,"ems__EffortStatusBacklog")}async moveToAnalysis(e){await this.updateStatus(e,"ems__EffortStatusAnalysis")}async moveToToDo(e){await this.updateStatus(e,"ems__EffortStatusToDo")}async startEffort(e){let t=await this.vault.read(e),r=jo.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_status",'"[[ems__EffortStatusDoing]]"');i=this.frontmatterService.updateProperty(i,"ems__Effort_startTimestamp",r),await this.vault.modify(e,i)}async markTaskAsDone(e){let t=await this.vault.read(e),r=jo.DateFormatter.toLocalTimestamp(new Date),i=this.frontmatterService.updateProperty(t,"ems__Effort_status",'"[[ems__EffortStatusDone]]"');i=this.frontmatterService.updateProperty(i,"ems__Effort_endTimestamp",r),i=this.frontmatterService.updateProperty(i,"ems__Effort_resolutionTimestamp",r),await this.vault.modify(e,i)}async syncEffortEndTimestamp(e,t){await this.timestampService.addEndAndResolutionTimestamps(e,t)}async shiftPlannedEndTimestamp(e,t){await this.timestampService.shiftPlannedEndTimestamp(e,t)}async trashEffort(e,t){let r=await this.vault.read(e),i=jo.DateFormatter.toLocalTimestamp(new Date),s=this.frontmatterService.updateProperty(r,"ems__Effort_status",'"[[ems__EffortStatusTrashed]]"');s=this.frontmatterService.updateProperty(s,"ems__Effort_resolutionTimestamp",i),t&&(s=this.appendTrashReason(s,t)),await this.vault.modify(e,s)}appendTrashReason(e,t){let r=`
101
101
 
102
102
  ## Trash Reason
103
103
 
@@ -214,7 +214,7 @@ ${s}`}return`${r}: ${i}`}).join(`
214
214
  `,a=await this.sparqlService.query(s);return this.buildEnumValues(a)}buildEnumValues(e){let t=[],r=new Set;for(let i of e){let s=this.getBindingValue(i,"instance");if(!s||r.has(s))continue;r.add(s);let a=this.getBindingValue(i,"label")??s,l=`[[${this.fromFullIRI(s)}]]`;t.push({value:l,label:a})}return t}buildRankProperty(e){let t=e.match(/^([a-z]+)__(.+)$/);if(!t)return null;let[,r,i]=t;return`${r}__${i}_rank`}normalizeClassName(e){return e.replace(/\[\[|\]\]/g,"").trim()}getBindingValue(e,t){let r=e.get(t);if(r!=null)return String(r)}toFullIRI(e){if(e.startsWith("http://")||e.startsWith("https://"))return e;let t=e.match(/^([a-z]+)__(.+)$/);if(t){let[,r,i]=t;return`https://exocortex.my/ontology/${r}#${i}`}return e}fromFullIRI(e){let t=e.match(/https:\/\/exocortex\.my\/ontology\/([a-z]+)#(.+)$/);if(t){let[,r,i]=t;return`${r}__${i}`}return e}};aa.EnumValueResolver=YS;aa.EnumValueResolver=YS=v7([(0,E7.injectable)(),w7("design:paramtypes",[Object,Object])],YS)});var JS=S(Di=>{"use strict";var T7=Di&&Di.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},A7=Di&&Di.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},x7=Di&&Di.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Di,"__esModule",{value:!0});Di.AssetConversionService=void 0;var ex=le(),tx=kn(),I7=Zn(),zp=La(),C7=wt(),XS=class{static{o(this,"AssetConversionService")}constructor(e){this.vault=e,this.frontmatterService=new I7.FrontmatterService}async convertTaskToProject(e){try{let t=await this.vault.read(e),r=this.removeInstanceClassProperty(t);return r=this.frontmatterService.updateProperty(r,"exo__Instance_class",`["[[${tx.AssetClass.PROJECT}]]"]`),await this.vault.modify(e,r),zp.LoggingService.info(`Converted Task to Project: ${e.basename} (${e.path})`),e}catch(t){let r=`Failed to convert Task to Project: ${e.path}`;throw zp.LoggingService.error(r,t instanceof Error?t:void 0),new Error(r)}}async convertProjectToTask(e){try{let t=await this.vault.read(e),r=this.removeInstanceClassProperty(t);return r=this.frontmatterService.updateProperty(r,"exo__Instance_class",`["[[${tx.AssetClass.TASK}]]"]`),await this.vault.modify(e,r),zp.LoggingService.info(`Converted Project to Task: ${e.basename} (${e.path})`),e}catch(t){let r=`Failed to convert Project to Task: ${e.path}`;throw zp.LoggingService.error(r,t instanceof Error?t:void 0),new Error(r)}}removeInstanceClassProperty(e){let t=this.frontmatterService.parse(e);if(!t.exists)return e;let r=/^exo__Instance_class:.*$(\n -.*$)*/gm,i=t.content.replace(r,"").replace(/\n\n+/g,`
215
215
  `).trim();return e.replace(/^---\n[\s\S]*?\n---/,`---
216
216
  ${i}
217
- ---`)}};Di.AssetConversionService=XS;Di.AssetConversionService=XS=T7([(0,ex.injectable)(),x7(0,(0,ex.inject)(C7.DI_TOKENS.IVaultAdapter)),A7("design:paramtypes",[Object])],XS)});var tb=S(Ni=>{"use strict";var R7=Ni&&Ni.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},O7=Ni&&Ni.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},rx=Ni&&Ni.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Ni,"__esModule",{value:!0});Ni.SessionEventService=void 0;var ZS=le(),P7=En(),nx=kn(),F7=Wr(),D7=ps(),ix=wt(),eb=class{static{o(this,"SessionEventService")}constructor(e,t){this.vault=e,this.vaultSettings=t,this.folderPathCache=null}async createSessionStartEvent(e){return this.createSessionEvent(e,nx.AssetClass.SESSION_START_EVENT)}async createSessionEndEvent(e){return this.createSessionEvent(e,nx.AssetClass.SESSION_END_EVENT)}getSessionEventFolder(){if(this.folderPathCache!==null)return this.folderPathCache;let e=this.vault.getDefaultNewFileParent();return this.folderPathCache=e?.path||"",this.folderPathCache}async createSessionEvent(e,t){let r=(0,P7.v4)(),i=F7.DateFormatter.toLocalTimestamp(new Date),s={exo__Asset_uid:r,exo__Asset_createdAt:i,exo__Asset_isDefinedBy:this.vaultSettings.getOwnerIdentity(),exo__Instance_class:[`"[[${t}]]"`],ems__SessionEvent_timestamp:i,ems__Session_area:`"[[${e}]]"`},a=D7.MetadataHelpers.buildFileContent(s),c=this.getSessionEventFolder();c&&!await this.vault.exists(c)&&await this.vault.createFolder(c);let l=c?`${c}/${r}.md`:`${r}.md`;return await this.vault.create(l,a)}};Ni.SessionEventService=eb;Ni.SessionEventService=eb=R7([(0,ZS.injectable)(),rx(0,(0,ZS.inject)(ix.DI_TOKENS.IVaultAdapter)),rx(1,(0,ZS.inject)(ix.DI_TOKENS.IVaultSettings)),O7("design:paramtypes",[Object,Object])],eb)});var ib=S(Li=>{"use strict";var N7=Li&&Li.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},L7=Li&&Li.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},sx=Li&&Li.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Li,"__esModule",{value:!0});Li.URIConstructionService=void 0;var rb=le(),ax=wt(),k7=Tc(),nb=class{static{o(this,"URIConstructionService")}constructor(e,t=k7.NullLogger){this.fileSystem=e,this.logger=t,this.defaultOntologyURL="https://exocortex.my/default/",this.strictValidation=!0}configure(e){e?.defaultOntologyURL&&(this.defaultOntologyURL=e.defaultOntologyURL),e?.strictValidation!==void 0&&(this.strictValidation=e.strictValidation)}async constructAssetURI(e){let t=this.extractUID(e);if(!t){if(this.strictValidation)throw new Error(`Asset missing exo__Asset_uid: ${e.path}`);return this.logger.warn(`Asset ${e.path} missing UID, using filename fallback`),this.constructFallbackURI(e)}let r=await this.resolveOntologyURL(e);if(!this.validateOntologyURL(r))throw new Error(`Invalid ontology URL: ${r}`);return`${r.endsWith("/")?r:`${r}/`}${t}`}validateOntologyURL(e){if(!e)return!1;try{let t=new URL(e);return t.protocol==="http:"||t.protocol==="https:"}catch{return!1}}async resolveOntologyURL(e){let t=e.frontmatter?.exo__Asset_isDefinedBy;if(!t||typeof t!="string")return this.defaultOntologyURL;let r=this.extractWikiLink(t),i=r,s=await this.fileSystem.fileExists(r);return!s&&!r.endsWith(".md")&&(i=`${r}.md`,s=await this.fileSystem.fileExists(i)),s?(await this.fileSystem.getFileMetadata(i))?.exo__Ontology_url||this.defaultOntologyURL:(this.logger.warn(`Ontology file not found: ${r}, using default`),this.defaultOntologyURL)}extractUID(e){let t=e.frontmatter?.exo__Asset_uid;return typeof t=="string"?t:null}extractWikiLink(e){return e.replace(/^\[\[|\]\]$/g,"")}constructFallbackURI(e){let t=e.path.split("/").pop()?.replace(".md","")||"unknown";return`${this.defaultOntologyURL}${t}`}};Li.URIConstructionService=nb;Li.URIConstructionService=nb=N7([(0,rb.injectable)(),sx(0,(0,rb.inject)(ax.DI_TOKENS.IFileSystemAdapter)),sx(1,(0,rb.inject)(ax.DI_TOKENS.ILogger)),L7("design:paramtypes",[Object,Object])],nb)});var ab=S(ki=>{"use strict";var M7=ki&&ki.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},j7=ki&&ki.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},$7=ki&&ki.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(ki,"__esModule",{value:!0});ki.GenericAssetCreationService=void 0;var ox=le(),V7=En(),nf=Wr(),U7=ps(),B7=wt(),ms=oh(),sb=class{static{o(this,"GenericAssetCreationService")}constructor(e){this.vault=e}async createAsset(e,t){let r=(0,V7.v4)(),i=`${r}.md`,s=this.generateFrontmatter(e,t||[],r),a=U7.MetadataHelpers.buildFileContent(s),c=e.folderPath||this.getDefaultFolderPath(e);this.vault.getAbstractFileByPath(c)||await this.vault.createFolder(c);let u=c?`${c}/${i}`:i;return await this.vault.create(u,a)}generateFrontmatter(e,t,r){let i=new Date,s={},a=new Map;for(let c of t)a.set(c.name,c.fieldType);if(s.exo__Asset_uid=r,s.exo__Asset_createdAt=nf.DateFormatter.toLocalTimestamp(i),s.exo__Instance_class=[this.formatWikilink(e.className)],e.label&&e.label.trim()!==""){let c=e.label.trim();s.exo__Asset_label=c,s.aliases=[c]}if(e.parentFile&&e.parentMetadata&&this.inheritParentContext(s,e),e.propertyValues)for(let[c,l]of Object.entries(e.propertyValues)){if(c==="exo__Asset_uid"||c==="exo__Asset_createdAt"||c==="exo__Instance_class"||c==="exo__Asset_label"||c==="aliases"||l==null)continue;let u=a.get(c);s[c]=this.formatValue(l,u)}return s}inheritParentContext(e,t){let r=t.parentMetadata||{},i=t.parentFile?.basename;if(t.className==="ems__Task"||t.className.startsWith("ems__Task")){let s=r.exo__Instance_class,c=this.isAreaClass(s)?"ems__Effort_area":"ems__Effort_parent";e[c]=i?this.formatWikilink(i):null}if(t.className==="ems__Project"||t.className.startsWith("ems__Project")){let s=r.exo__Instance_class,c=this.isAreaClass(s)?"ems__Effort_area":"ems__Effort_parent";e[c]=i?this.formatWikilink(i):null}if(r.exo__Asset_isDefinedBy){let s=r.exo__Asset_isDefinedBy;e.exo__Asset_isDefinedBy=typeof s=="string"?this.formatWikilink(s):s}}isAreaClass(e){return e?(Array.isArray(e)?e:[e]).some(r=>String(r).includes("Area")||String(r).includes("ems__Area")):!1}getDefaultFolderPath(e){if(e.parentFile?.parent?.path)return e.parentFile.parent.path;let t={ems__Task:"tasks",ems__Project:"projects",ems__Area:"areas",ems__Meeting:"meetings",exo__Event:"events",ims__Concept:"concepts"};if(t[e.className])return t[e.className];for(let[r,i]of Object.entries(t))if(e.className.startsWith(r))return i;return"assets"}formatValue(e,t){if(e==null)return null;if(!t)return this.formatInferredValue(e);switch(t){case ms.PropertyFieldType.Text:return String(e);case ms.PropertyFieldType.Wikilink:case ms.PropertyFieldType.Reference:case ms.PropertyFieldType.StatusSelect:case ms.PropertyFieldType.SizeSelect:return this.formatWikilink(String(e));case ms.PropertyFieldType.Number:return typeof e=="number"?e:Number(e)||0;case ms.PropertyFieldType.Boolean:return this.formatBoolean(e);case ms.PropertyFieldType.Date:case ms.PropertyFieldType.DateTime:case ms.PropertyFieldType.Timestamp:return this.formatTimestamp(e);default:return String(e)}}formatInferredValue(e){return typeof e=="boolean"||typeof e=="number"?e:e instanceof Date?nf.DateFormatter.toLocalTimestamp(e):typeof e=="string"?e.startsWith("[[")||e.startsWith('"[[')?this.formatWikilink(e):e:String(e)}formatWikilink(e){return e.startsWith('"[[')&&e.endsWith(']]"')?e:e.startsWith("[[")&&e.endsWith("]]")?`"${e}"`:`"[[${e}]]"`}formatBoolean(e){if(typeof e=="boolean")return e;if(typeof e=="string"){let t=e.toLowerCase().trim();return t==="true"||t==="yes"||t==="1"}return typeof e=="number"?e!==0:!!e}formatTimestamp(e){if(e instanceof Date)return nf.DateFormatter.toLocalTimestamp(e);if(typeof e=="string"){if(/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}$/.test(e))return e;if(/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$/.test(e))return e.replace("Z","");let t=new Date(e);return isNaN(t.getTime())?e:nf.DateFormatter.toLocalTimestamp(t)}if(typeof e=="number"){let t=new Date(e);if(!isNaN(t.getTime()))return nf.DateFormatter.toLocalTimestamp(t)}return String(e)}};ki.GenericAssetCreationService=sb;ki.GenericAssetCreationService=sb=M7([(0,ox.injectable)(),$7(0,(0,ox.inject)(B7.DI_TOKENS.IVaultAdapter)),j7("design:paramtypes",[Object])],sb)});var lx=S(Mi=>{"use strict";var q7=Mi&&Mi.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},W7=Mi&&Mi.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},G7=Mi&&Mi.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Mi,"__esModule",{value:!0});Mi.ArchiveAssetService=void 0;var cx=le(),z7=wt(),H7=Zn(),ob=class{static{o(this,"ArchiveAssetService")}constructor(e){this.vault=e,this.frontmatterService=new H7.FrontmatterService}async archiveAsset(e){let t=await this.vault.read(e),r=this.frontmatterService.updateProperty(t,"archived","true");r=this.frontmatterService.removeProperty(r,"aliases"),r!==t&&await this.vault.modify(e,r)}};Mi.ArchiveAssetService=ob;Mi.ArchiveAssetService=ob=q7([(0,cx.injectable)(),G7(0,(0,cx.inject)(z7.DI_TOKENS.IVaultAdapter)),W7("design:paramtypes",[Object])],ob)});var fx=S(ji=>{"use strict";var Q7=ji&&ji.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},K7=ji&&ji.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},Y7=ji&&ji.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(ji,"__esModule",{value:!0});ji.FixMissingLabelService=void 0;var ux=le(),X7=wt(),J7=Zn(),cb=class{static{o(this,"FixMissingLabelService")}constructor(e){this.vault=e,this.frontmatterService=new J7.FrontmatterService}async fixMissingLabel(e){let t=await this.vault.read(e);if(this.hasNonEmptyLabel(t))return;let r=this.frontmatterService.updateProperty(t,"exo__Asset_label",e.basename);r!==t&&await this.vault.modify(e,r)}hasNonEmptyLabel(e){let t=this.frontmatterService.parse(e);if(!t.exists)return!1;let r=t.content.match(/^exo__Asset_label:\s*(.*)$/m);if(!r)return!1;let i=r[1].trim();return!(i===""||i==='""'||i==="''")}};ji.FixMissingLabelService=cb;ji.FixMissingLabelService=cb=Q7([(0,ux.injectable)(),Y7(0,(0,ux.inject)(X7.DI_TOKENS.IVaultAdapter)),K7("design:paramtypes",[Object])],cb)});var dx=S(oa=>{"use strict";var Z7=oa&&oa.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},e8=oa&&oa.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(oa,"__esModule",{value:!0});oa.GraphQueryService=void 0;var t8=le(),sf=Ae(),r8=De(),ja=or(),n8=t0(),gs={INSTANCE_CLASS:ja.Namespace.EXO.term("Instance_class"),ASSET_LABEL:ja.Namespace.EXO.term("Asset_label"),ASSET_PROTOTYPE:ja.Namespace.EXO.term("Asset_prototype"),ASSET_IS_ARCHIVED:ja.Namespace.EXO.term("Asset_isArchived"),EFFORT_PARENT:ja.Namespace.EMS.term("Effort_parent"),REFERENCES:ja.Namespace.EXO.term("references"),REFERENCED_BY:ja.Namespace.EXO.term("referencedBy"),RDF_TYPE:ja.Namespace.RDF.term("type")},lb=class{static{o(this,"GraphQueryService")}constructor(e,t={},r){this.subscribers=new Set,this.nodeCache=new Map,this.lastCacheUpdate=0,this.tripleStore=e,this.logger=r,this.config={defaultLimit:t.defaultLimit??100,maxLimit:t.maxLimit??1e4,defaultDepth:t.defaultDepth??2,maxDepth:t.maxDepth??10,includeArchivedByDefault:t.includeArchivedByDefault??!1,cacheTTL:t.cacheTTL??3e4}}async loadGraphData(e={}){let t=Date.now(),r=await this.loadNodes(e),i=await this.loadEdges(r,e),s=this.computeStats(r,i),a=Date.now()-t;return a>100&&r.length>0&&this.logger?.debug(`GraphQueryService: loaded ${r.length} nodes in ${a}ms (${(a/r.length).toFixed(2)}ms/node)`),{nodes:r,edges:i,stats:s,lastUpdated:Date.now(),version:1}}async loadNodesIncremental(e={}){let t=Math.min(e.limit??this.config.defaultLimit,this.config.maxLimit),r=e.offset??0,i=await this.loadNodes({...e,limit:t+1,offset:r}),s=i.length>t,a=s?i.slice(0,t):i,c=await this.loadEdges(a,e);return{nodes:a,edges:c,hasMore:s,totalCount:void 0,cursor:s?String(r+t):void 0}}async loadConnectedNodes(e,t={}){let r=Math.min(t.depth??this.config.defaultDepth,this.config.maxDepth),i=Math.min(t.limit??this.config.maxLimit,this.config.maxLimit),s=new Set,a=[{id:e,currentDepth:0}],c=[];for(;a.length>0&&c.length<i;){let u=a.shift();if(!u)break;let{id:f,currentDepth:d}=u;if(s.has(f))continue;s.add(f);let h=await this.getNodeById(f,t);if(h&&(c.push(h),d<r)){let p=await this.getConnectedNodeIds(f);for(let y of p)s.has(y)||a.push({id:y,currentDepth:d+1})}}let l=await this.loadEdges(c,t);return{nodes:c,edges:l,hasMore:a.length>0,totalCount:s.size+a.length}}async getNodeById(e,t={}){let r=this.getCachedNode(e);if(r)return{...r};let i=this.idToIRI(e),s=await this.tripleStore.match(i,void 0,void 0);if(s.length===0)return null;let a=this.triplesToNode(e,s,t);return a&&this.cacheNode(a),a}subscribe(e){return this.subscribers.add(e),{unsubscribe:o(()=>{this.subscribers.delete(e)},"unsubscribe")}}notifyChange(e){for(let t of this.subscribers)try{t(e)}catch(r){this.logger?.error("GraphQueryService: error in subscriber callback",r instanceof Error?r:new Error(String(r)))}this.invalidateCache()}async getStats(){let e=await this.loadNodes({includeArchived:!0}),t=await this.loadEdges(e,{});return this.computeStats(e,t)}clearCache(){this.nodeCache.clear(),this.lastCacheUpdate=0}async loadNodes(e){let t=e.includeArchived??this.config.includeArchivedByDefault,r=e.limit??this.config.maxLimit,i=e.offset??0,s=await this.tripleStore.match(void 0,gs.INSTANCE_CLASS,void 0),a=s;if(e.classes&&e.classes.length>0){let p=new Set(e.classes);a=s.filter(y=>{let b=this.getObjectValue(y.object);return b&&p.has(b)})}let c=new Set;for(let p of a)c.add(this.subjectToId(p.subject));let f=Array.from(c).slice(i,i+r).map(p=>this.getNodeById(p,e));return(await Promise.all(f)).filter(p=>!(!p||!t&&p.isArchived))}async loadEdges(e,t){let r=new Set(e.map(a=>a.id)),i=[],s=new Set;for(let a of e){let c=this.idToIRI(a.id),l=await this.tripleStore.match(c,void 0,void 0);for(let u of l){let f=this.tripleToEdge(a.id,u,r);f&&f.id&&!s.has(f.id)&&(!t.edgeTypes||t.edgeTypes.includes(f.type))&&(s.add(f.id),i.push(f))}}return i}async getConnectedNodeIds(e){let t=this.idToIRI(e),r=[],i=await this.tripleStore.match(t,void 0,void 0);for(let a of i){let c=this.objectToId(a.object);c&&r.push(c)}let s=await this.tripleStore.match(void 0,void 0,t);for(let a of s)r.push(this.subjectToId(a.subject));return[...new Set(r)]}triplesToNode(e,t,r){let i={},s,a,c,l,u=!1;for(let h of t){let p=h.predicate.value,y=this.getObjectValue(h.object);if(p===gs.INSTANCE_CLASS.value)s=y;else if(p===gs.ASSET_LABEL.value)a=y;else if(p===gs.ASSET_PROTOTYPE.value)c=this.objectToId(h.object)??y;else if(p===gs.EFFORT_PARENT.value)l=this.objectToId(h.object)??y;else if(p===gs.ASSET_IS_ARCHIVED.value)u=y==="true"||y==="1";else{let b=this.predicateToPropertyName(p);b&&(i[b]=y)}}if(u&&!(r.includeArchived??this.config.includeArchivedByDefault))return null;let f=this.idToPath(e),d=a??this.pathToTitle(f);return{id:e,path:f,title:d,label:d,assetClass:s,isArchived:u,uri:e.startsWith("http")?e:void 0,prototype:c,parent:l,properties:Object.keys(i).length>0?i:void 0}}tripleToEdge(e,t,r){let i=t.predicate.value,s=this.objectToId(t.object);if(!s||!r.has(s)||s===e)return null;let a=this.predicateToEdgeType(i);if(!a)return null;let c=(0,n8.createEdgeId)(e,s,a,i),l=this.predicateToLabel(i);return{id:c,source:e,target:s,type:a,predicate:i,label:l}}predicateToEdgeType(e){return e===gs.EFFORT_PARENT.value?"hierarchy":e===gs.ASSET_PROTOTYPE.value?"prototype":e===gs.REFERENCES.value?"forward-link":e===gs.REFERENCED_BY.value?"backlink":e.includes("Asset_")||e.includes("Instance_")?null:"semantic"}predicateToLabel(e){let t=e.lastIndexOf("#"),r=e.lastIndexOf("/"),i=Math.max(t,r);return i>=0?e.substring(i+1):e}predicateToPropertyName(e){return this.predicateToLabel(e).replace(/_/g,"__").replace(/#/g,"_")}computeStats(e,t){let r={},i={backlink:0,"forward-link":0,hierarchy:0,prototype:0,semantic:0,reference:0};for(let c of e){let l=c.assetClass??"unknown";r[l]=(r[l]??0)+1}for(let c of t)i[c.type]=(i[c.type]??0)+1;let s=new Map,a=new Map;for(let c of t)a.set(c.source,(a.get(c.source)??0)+1),s.set(c.target,(s.get(c.target)??0)+1);for(let c of e)c.inDegree=s.get(c.id)??0,c.outDegree=a.get(c.id)??0,c.weight=c.inDegree+c.outDegree;return{nodeCount:e.length,edgeCount:t.length,nodesByClass:r,edgesByType:i,computedAt:Date.now()}}idToIRI(e){return e.startsWith("http://")||e.startsWith("https://")?new sf.IRI(e):new sf.IRI(`obsidian://vault/${encodeURIComponent(e)}`)}subjectToId(e){if(e instanceof sf.IRI){let t=e.value;return t.startsWith("obsidian://vault/")?decodeURIComponent(t.replace("obsidian://vault/","")):t}return e.toString()}objectToId(e){if(e instanceof sf.IRI){let t=e.value;return t.startsWith("obsidian://vault/")?decodeURIComponent(t.replace("obsidian://vault/","")):t}return null}getObjectValue(e){if(e instanceof r8.Literal||e instanceof sf.IRI)return e.value}idToPath(e){if(e.startsWith("obsidian://vault/"))return decodeURIComponent(e.replace("obsidian://vault/",""));if(e.startsWith("http://")||e.startsWith("https://")){let t=e.match(/\/([^/]+\.md)$/);if(t)return t[1]}return e}pathToTitle(e){return(e.split("/").pop()??e).replace(/\.md$/,"")}getCachedNode(e){return Date.now()-this.lastCacheUpdate>this.config.cacheTTL?(this.clearCache(),null):this.nodeCache.get(e)??null}cacheNode(e){this.nodeCache.set(e.id,e),this.lastCacheUpdate===0&&(this.lastCacheUpdate=Date.now())}invalidateCache(){this.clearCache()}};oa.GraphQueryService=lb;oa.GraphQueryService=lb=Z7([(0,t8.injectable)(),e8("design:paramtypes",[Object,Object,Object])],lb)});var px=S(ca=>{"use strict";var i8=ca&&ca.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},s8=ca&&ca.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(ca,"__esModule",{value:!0});ca.TypeRegistry=void 0;var a8=le(),ys=Ae(),hx=Vt(),o8=De(),c8=La(),ht=r0(),ub=class{static{o(this,"TypeRegistry")}constructor(e=null,t={}){this.nodeTypes=new Map,this.edgeTypes=new Map,this.typeHierarchy=new Map,this.subscribers=new Set,this.discoveryComplete=!1,this.tripleStore=e,this.config={autoDiscoverTypes:t.autoDiscoverTypes??!0,includeBuiltInStyles:t.includeBuiltInStyles??!0,styleResolution:t.styleResolution??{mergeStyles:!0,inheritParentStyles:!0,defaultNodeStyle:ht.DEFAULT_NODE_STYLE,defaultEdgeStyle:ht.DEFAULT_EDGE_STYLE},maxInheritanceDepth:t.maxInheritanceDepth??10},this.config.includeBuiltInStyles&&this.registerBuiltInTypes()}registerNodeType(e){let r=this.nodeTypes.get(e.uri)?"type-updated":"type-added";this.nodeTypes.set(e.uri,e),e.parentTypes&&e.parentTypes.length>0&&this.typeHierarchy.set(e.uri,e.parentTypes),this.emit({type:r,typeUri:e.uri,definition:e})}registerEdgeType(e){let r=this.edgeTypes.get(e.uri)?"type-updated":"type-added";this.edgeTypes.set(e.uri,e),this.emit({type:r,typeUri:e.uri,definition:e})}unregisterType(e){let t=this.nodeTypes.delete(e),r=this.edgeTypes.delete(e);this.typeHierarchy.delete(e),(t||r)&&this.emit({type:"type-removed",typeUri:e})}getNodeType(e){return this.nodeTypes.get(e)}getEdgeType(e){return this.edgeTypes.get(e)}getAllNodeTypes(){return Array.from(this.nodeTypes.values())}getAllEdgeTypes(){return Array.from(this.edgeTypes.values())}getParentTypes(e,t=this.config.maxInheritanceDepth){let r=[],i=new Set,s=[{uri:e,currentDepth:0}];for(;s.length>0;){let a=s.shift();if(!a)break;let{uri:c,currentDepth:l}=a;if(i.has(c)||(i.add(c),l>=t))continue;let u=this.typeHierarchy.get(c)??[];for(let f of u)i.has(f)||(r.push(f),s.push({uri:f,currentDepth:l+1}))}return r}getChildTypes(e){let t=[];for(let[r,i]of this.typeHierarchy)i.includes(e)&&t.push(r);return t}isSubtypeOf(e,t){return e===t?!0:this.getParentTypes(e).includes(t)}resolveNodeType(e){let t=[],r="unknown",i="custom";if(e.assetClass){let c=this.normalizeTypeUri(e.assetClass);t.push(c),r=c,i="exo:Instance_class"}let s=e.properties?.[ht.RDF_TYPE_PREDICATES.RDF_TYPE];s&&!t.includes(s)&&(t.push(s),r==="unknown"&&(r=s,i="rdf:type"));for(let c of[...t]){let l=this.getParentTypes(c);for(let u of l)t.includes(u)||t.push(u)}let a=this.resolveNodeStyle(t);return{primaryType:r,types:t,resolvedStyle:a,source:i}}resolveEdgeType(e){let t=e.predicate??e.type,r=e.predicate?"rdf:type":"custom",i=this.resolveEdgeStyle(t);return{primaryType:t,resolvedStyle:i,source:r}}resolveNodeStyle(e){let{mergeStyles:t,defaultNodeStyle:r}=this.config.styleResolution,i={...r},s=[];for(let a of e){let c=this.nodeTypes.get(a);c&&s.push(c)}if(s.sort((a,c)=>a.priority-c.priority),t)for(let a of s)i=(0,ht.mergeNodeStyles)(i,a.style);else if(s.length>0){let a=s[s.length-1];i=(0,ht.mergeNodeStyles)(i,a.style)}return i}resolveEdgeStyle(e){let{defaultEdgeStyle:t}=this.config.styleResolution,r={...t},i=this.edgeTypes.get(e);return i&&(r=(0,ht.mergeEdgeStyles)(r,i.style)),r}filterNodes(e,t){return e.filter(r=>{let i=this.resolveNodeType(r);return!(t.includeNodeTypes&&t.includeNodeTypes.length>0&&!t.includeNodeTypes.some(a=>i.types.includes(a)||t.includeInferred&&this.isSubtypeOf(i.primaryType,a))||t.excludeNodeTypes&&t.excludeNodeTypes.length>0&&t.excludeNodeTypes.some(a=>i.types.includes(a)||t.includeInferred&&this.isSubtypeOf(i.primaryType,a))||!t.includeDeprecated&&this.nodeTypes.get(i.primaryType)?.deprecated)})}filterEdges(e,t){return e.filter(r=>{let i=r.predicate??r.type;return!(t.includeEdgeTypes&&t.includeEdgeTypes.length>0&&!t.includeEdgeTypes.includes(i)||t.excludeEdgeTypes&&t.excludeEdgeTypes.length>0&&t.excludeEdgeTypes.includes(i))})}groupNodesByType(e,t,r={}){let{groupByNodeType:i=!0,groupByParentType:s=!1,groupLevel:a=0,maxGroups:c=20,customGroupFn:l}=r,u=new Map;for(let h of e){let p=this.resolveNodeType(h),y;if(l?y=l(p.types):s&&p.types.length>a?y=p.types[a]??p.primaryType:i?y=p.primaryType:y="all",!u.has(y)){let v=this.nodeTypes.get(y)?.label??(0,ht.extractLocalName)(y);u.set(y,{nodeIds:new Set,label:v})}let b=u.get(y);b&&b.nodeIds.add(h.id)}let f=Array.from(u.entries()).map(([h,p])=>({id:h,label:p.label,nodeIds:Array.from(p.nodeIds)}));if(f.length>c){f.sort((y,b)=>b.nodeIds.length-y.nodeIds.length);let h=f.slice(0,c-1),p=f.slice(c-1).flatMap(y=>y.nodeIds);h.push({id:"other",label:"Other",nodeIds:p}),f=h}let d=new Map;for(let h of f)for(let p of h.nodeIds)d.set(p,h.id);return f.map((h,p)=>{let y=new Set(h.nodeIds),b=[],w=[];for(let C of t){let L=y.has(C.source),V=y.has(C.target);L&&V?C.id&&b.push(C.id):(L||V)&&C.id&&w.push(C.id)}let T=`hsl(${p*137.5%360}, 70%, 50%)`;return{id:h.id,label:h.label,nodeIds:h.nodeIds,internalEdgeIds:b,externalEdgeIds:w,color:T,stats:{nodeCount:h.nodeIds.length,internalEdgeCount:b.length,externalEdgeCount:w.length}}})}validateTypes(e,t){let r=[],i=[];for(let s of e){let a=this.resolveNodeType(s);if(a.primaryType!=="unknown"){let c=this.nodeTypes.get(a.primaryType);!c&&a.source!=="inferred"&&i.push({code:"UNREGISTERED_NODE_TYPE",message:`Node type "${a.primaryType}" is not registered`,elementId:s.id,suggestion:"Register the type with registerNodeType()"}),c?.deprecated&&i.push({code:"DEPRECATED_NODE_TYPE",message:`Node uses deprecated type "${a.primaryType}"`,elementId:s.id,suggestion:"Migrate to a non-deprecated type"})}else i.push({code:"MISSING_NODE_TYPE",message:"Node has no type information",elementId:s.id,suggestion:"Add exo:Instance_class or rdf:type to the node"})}for(let s of t){let a=s.predicate??s.type,c=this.edgeTypes.get(a);if(c?.domain&&c.domain.length>0){let l=e.find(u=>u.id===s.source);if(l){let u=this.resolveNodeType(l);c.domain.some(d=>u.types.includes(d))||r.push({code:"DOMAIN_VIOLATION",message:"Edge source does not match expected domain",elementId:s.id,expected:c.domain,actual:u.types})}}if(c?.range&&c.range.length>0){let l=e.find(u=>u.id===s.target);if(l){let u=this.resolveNodeType(l);c.range.some(d=>u.types.includes(d))||r.push({code:"RANGE_VIOLATION",message:"Edge target does not match expected range",elementId:s.id,expected:c.range,actual:u.types})}}}return{valid:r.length===0,errors:r,warnings:i}}async discoverTypes(){if(!this.tripleStore||this.discoveryComplete)return;let e=await this.tripleStore.match(void 0,new ys.IRI(ht.RDF_TYPE_PREDICATES.RDF_TYPE),void 0);for(let r of e){let i=this.getObjectValue(r.object);if(i&&(0,ht.isClassType)(i)){let s=this.getSubjectValue(r.subject);s&&await this.discoverNodeType(s)}}let t=await this.tripleStore.match(void 0,new ys.IRI(ht.RDF_TYPE_PREDICATES.RDFS_SUBCLASS_OF),void 0);for(let r of t){let i=this.getSubjectValue(r.subject),s=this.getObjectValue(r.object);if(i&&s){let a=this.typeHierarchy.get(i)??[];if(!a.includes(s)){a.push(s),this.typeHierarchy.set(i,a);let c=this.nodeTypes.get(i);c&&(c.parentTypes=a)}}}this.discoveryComplete=!0,this.emit({type:"hierarchy-updated",rootTypes:this.getRootTypes()})}subscribe(e){return this.subscribers.add(e),()=>this.subscribers.delete(e)}clear(){this.nodeTypes.clear(),this.edgeTypes.clear(),this.typeHierarchy.clear(),this.discoveryComplete=!1,this.config.includeBuiltInStyles&&this.registerBuiltInTypes()}registerBuiltInTypes(){for(let[e,t]of Object.entries(ht.BUILT_IN_NODE_STYLES))this.nodeTypes.set(e,{uri:e,label:(0,ht.extractLocalName)(e),source:"custom",style:(0,ht.mergeNodeStyles)(ht.DEFAULT_NODE_STYLE,t),priority:1});for(let[e,t]of Object.entries(ht.BUILT_IN_EDGE_STYLES))this.edgeTypes.set(e,{uri:e,label:(0,ht.extractLocalName)(e),source:"custom",style:(0,ht.mergeEdgeStyles)(ht.DEFAULT_EDGE_STYLE,t),priority:1})}async discoverNodeType(e){if(this.nodeTypes.has(e)||!this.tripleStore)return;let t=await this.tripleStore.match(new ys.IRI(e),new ys.IRI(ht.RDF_TYPE_PREDICATES.RDFS_LABEL),void 0),r=await this.tripleStore.match(new ys.IRI(e),new ys.IRI(ht.RDF_TYPE_PREDICATES.RDFS_COMMENT),void 0),i=t.length>0?this.getObjectValue(t[0].object)??(0,ht.extractLocalName)(e):(0,ht.extractLocalName)(e),s=r.length>0?this.getObjectValue(r[0].object):void 0,a="rdfs:Class",c=await this.tripleStore.match(new ys.IRI(e),new ys.IRI(ht.RDF_TYPE_PREDICATES.RDF_TYPE),void 0);for(let f of c)if(this.getObjectValue(f.object)===ht.RDF_TYPE_PREDICATES.OWL_CLASS){a="owl:Class";break}let l=ht.BUILT_IN_NODE_STYLES[e]??ht.BUILT_IN_NODE_STYLES[(0,ht.extractLocalName)(e)],u={uri:e,label:i,description:s,source:a,style:(0,ht.mergeNodeStyles)(ht.DEFAULT_NODE_STYLE,l??{}),priority:1};this.registerNodeType(u)}normalizeTypeUri(e){let t=e.match(/^\[\[(.+?)\]\]$/);return t?t[1]:e}getSubjectValue(e){if(e instanceof ys.IRI)return e.value;if(e instanceof hx.BlankNode)return`_:${e.id}`;if(typeof e=="object"&&e!==null&&"termType"in e)return e.toString()}getObjectValue(e){if(e instanceof o8.Literal||e instanceof ys.IRI)return e.value;if(e instanceof hx.BlankNode)return`_:${e.id}`}getRootTypes(){let e=new Set;for(let r of this.typeHierarchy.values())for(let i of r)e.add(i);let t=[];for(let r of this.nodeTypes.keys()){let i=this.typeHierarchy.get(r);(!i||i.length===0)&&e.has(r)&&t.push(r)}return t}emit(e){for(let t of this.subscribers)try{t(e)}catch(r){c8.LoggingService.error("TypeRegistry: error in subscriber callback",r instanceof Error?r:new Error(String(r)))}}};ca.TypeRegistry=ub;ca.TypeRegistry=ub=i8([(0,a8.injectable)(),s8("design:paramtypes",[Object,Object])],ub)});var fb=S(U=>{"use strict";Object.defineProperty(U,"__esModule",{value:!0});U.SPARQL_TEMPLATES=U.KNOWN_CLASSES=U.KNOWN_PROTOTYPES=U.EFFORT_STATUSES=U.ASSET_CLASSES=U.PREDICATES=U.SPARQL_PREFIXES=void 0;U.findClassByTerm=l8;U.getTemplateByName=u8;U.findMatchingTemplates=f8;U.fillTemplate=d8;U.validateParameters=h8;U.SPARQL_PREFIXES=`PREFIX exo: <https://exocortex.my/ontology/exo#>
217
+ ---`)}};Di.AssetConversionService=XS;Di.AssetConversionService=XS=T7([(0,ex.injectable)(),x7(0,(0,ex.inject)(C7.DI_TOKENS.IVaultAdapter)),A7("design:paramtypes",[Object])],XS)});var tb=S(Ni=>{"use strict";var R7=Ni&&Ni.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},O7=Ni&&Ni.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},rx=Ni&&Ni.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Ni,"__esModule",{value:!0});Ni.SessionEventService=void 0;var ZS=le(),P7=En(),nx=kn(),F7=Wr(),D7=ps(),ix=wt(),eb=class{static{o(this,"SessionEventService")}constructor(e,t){this.vault=e,this.vaultSettings=t,this.folderPathCache=null}async createSessionStartEvent(e){return this.createSessionEvent(e,nx.AssetClass.SESSION_START_EVENT)}async createSessionEndEvent(e){return this.createSessionEvent(e,nx.AssetClass.SESSION_END_EVENT)}getSessionEventFolder(){if(this.folderPathCache!==null)return this.folderPathCache;let e=this.vault.getDefaultNewFileParent();return this.folderPathCache=e?.path||"",this.folderPathCache}async createSessionEvent(e,t){let r=(0,P7.v4)(),i=F7.DateFormatter.toLocalTimestamp(new Date),s={exo__Asset_uid:r,exo__Asset_createdAt:i,exo__Asset_isDefinedBy:this.vaultSettings.getOwnerIdentity(),exo__Instance_class:[`"[[${t}]]"`],ems__SessionEvent_timestamp:i,ems__Session_area:`"[[${e}]]"`},a=D7.MetadataHelpers.buildFileContent(s),c=this.getSessionEventFolder();c&&!await this.vault.exists(c)&&await this.vault.createFolder(c);let l=c?`${c}/${r}.md`:`${r}.md`;return await this.vault.create(l,a)}};Ni.SessionEventService=eb;Ni.SessionEventService=eb=R7([(0,ZS.injectable)(),rx(0,(0,ZS.inject)(ix.DI_TOKENS.IVaultAdapter)),rx(1,(0,ZS.inject)(ix.DI_TOKENS.IVaultSettings)),O7("design:paramtypes",[Object,Object])],eb)});var ib=S(Li=>{"use strict";var N7=Li&&Li.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},L7=Li&&Li.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},sx=Li&&Li.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Li,"__esModule",{value:!0});Li.URIConstructionService=void 0;var rb=le(),ax=wt(),k7=Tc(),nb=class{static{o(this,"URIConstructionService")}constructor(e,t=k7.NullLogger){this.fileSystem=e,this.logger=t,this.defaultOntologyURL="https://exocortex.my/default/",this.strictValidation=!0}configure(e){e?.defaultOntologyURL&&(this.defaultOntologyURL=e.defaultOntologyURL),e?.strictValidation!==void 0&&(this.strictValidation=e.strictValidation)}async constructAssetURI(e){let t=this.extractUID(e);if(!t){if(this.strictValidation)throw new Error(`Asset missing exo__Asset_uid: ${e.path}`);return this.logger.warn(`Asset ${e.path} missing UID, using filename fallback`),this.constructFallbackURI(e)}let r=await this.resolveOntologyURL(e);if(!this.validateOntologyURL(r))throw new Error(`Invalid ontology URL: ${r}`);return`${r.endsWith("/")?r:`${r}/`}${t}`}validateOntologyURL(e){if(!e)return!1;try{let t=new URL(e);return t.protocol==="http:"||t.protocol==="https:"}catch{return!1}}async resolveOntologyURL(e){let t=e.frontmatter?.exo__Asset_isDefinedBy;if(!t||typeof t!="string")return this.defaultOntologyURL;let r=this.extractWikiLink(t),i=r,s=await this.fileSystem.fileExists(r);return!s&&!r.endsWith(".md")&&(i=`${r}.md`,s=await this.fileSystem.fileExists(i)),s?(await this.fileSystem.getFileMetadata(i))?.exo__Ontology_url||this.defaultOntologyURL:(this.logger.warn(`Ontology file not found: ${r}, using default`),this.defaultOntologyURL)}extractUID(e){let t=e.frontmatter?.exo__Asset_uid;return typeof t=="string"?t:null}extractWikiLink(e){return e.replace(/^\[\[|\]\]$/g,"")}constructFallbackURI(e){let t=e.path.split("/").pop()?.replace(".md","")||"unknown";return`${this.defaultOntologyURL}${t}`}};Li.URIConstructionService=nb;Li.URIConstructionService=nb=N7([(0,rb.injectable)(),sx(0,(0,rb.inject)(ax.DI_TOKENS.IFileSystemAdapter)),sx(1,(0,rb.inject)(ax.DI_TOKENS.ILogger)),L7("design:paramtypes",[Object,Object])],nb)});var ab=S(ki=>{"use strict";var M7=ki&&ki.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},j7=ki&&ki.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},$7=ki&&ki.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(ki,"__esModule",{value:!0});ki.GenericAssetCreationService=void 0;var ox=le(),V7=En(),nf=Wr(),U7=ps(),B7=wt(),ms=oh(),sb=class{static{o(this,"GenericAssetCreationService")}constructor(e){this.vault=e}async createAsset(e,t){let r=(0,V7.v4)(),i=`${r}.md`,s=this.generateFrontmatter(e,t||[],r),a=U7.MetadataHelpers.buildFileContent(s),c=e.folderPath||this.getDefaultFolderPath(e);this.vault.getAbstractFileByPath(c)||await this.vault.createFolder(c);let u=c?`${c}/${i}`:i;return await this.vault.create(u,a)}generateFrontmatter(e,t,r){let i=new Date,s={},a=new Map;for(let c of t)a.set(c.name,c.fieldType);if(s.exo__Asset_uid=r,s.exo__Asset_createdAt=nf.DateFormatter.toLocalTimestamp(i),s.exo__Instance_class=[this.formatWikilink(e.className)],e.label&&e.label.trim()!==""){let c=e.label.trim();s.exo__Asset_label=c,s.aliases=[c]}if(e.parentFile&&e.parentMetadata&&this.inheritParentContext(s,e),e.propertyValues)for(let[c,l]of Object.entries(e.propertyValues)){if(c==="exo__Asset_uid"||c==="exo__Asset_createdAt"||c==="exo__Instance_class"||c==="exo__Asset_label"||c==="aliases"||l==null)continue;let u=a.get(c);s[c]=this.formatValue(l,u)}return s}inheritParentContext(e,t){let r=t.parentMetadata||{},i=t.parentFile?.basename;if(t.className==="ems__Task"||t.className.startsWith("ems__Task")){let s=r.exo__Instance_class,c=this.isAreaClass(s)?"ems__Effort_area":"ems__Effort_parent";e[c]=i?this.formatWikilink(i):null}if(t.className==="ems__Project"||t.className.startsWith("ems__Project")){let s=r.exo__Instance_class,c=this.isAreaClass(s)?"ems__Effort_area":"ems__Effort_parent";e[c]=i?this.formatWikilink(i):null}if(r.exo__Asset_isDefinedBy){let s=r.exo__Asset_isDefinedBy;e.exo__Asset_isDefinedBy=typeof s=="string"?this.formatWikilink(s):s}}isAreaClass(e){return e?(Array.isArray(e)?e:[e]).some(r=>String(r).includes("Area")||String(r).includes("ems__Area")):!1}getDefaultFolderPath(e){if(e.parentFile?.parent?.path)return e.parentFile.parent.path;let t={ems__Task:"tasks",ems__Project:"projects",ems__Area:"areas",ems__Meeting:"meetings",exo__Event:"events",ims__Concept:"concepts"};if(t[e.className])return t[e.className];for(let[r,i]of Object.entries(t))if(e.className.startsWith(r))return i;return"assets"}formatValue(e,t){if(e==null)return null;if(!t)return this.formatInferredValue(e);switch(t){case ms.PropertyFieldType.Text:return String(e);case ms.PropertyFieldType.Wikilink:case ms.PropertyFieldType.Reference:case ms.PropertyFieldType.StatusSelect:case ms.PropertyFieldType.SizeSelect:return this.formatWikilink(String(e));case ms.PropertyFieldType.Number:return typeof e=="number"?e:Number(e)||0;case ms.PropertyFieldType.Boolean:return this.formatBoolean(e);case ms.PropertyFieldType.Date:case ms.PropertyFieldType.DateTime:case ms.PropertyFieldType.Timestamp:return this.formatTimestamp(e);default:return String(e)}}formatInferredValue(e){return typeof e=="boolean"||typeof e=="number"?e:e instanceof Date?nf.DateFormatter.toLocalTimestamp(e):typeof e=="string"?e.startsWith("[[")||e.startsWith('"[[')?this.formatWikilink(e):e:String(e)}formatWikilink(e){return e.startsWith('"[[')&&e.endsWith(']]"')?e:e.startsWith("[[")&&e.endsWith("]]")?`"${e}"`:`"[[${e}]]"`}formatBoolean(e){if(typeof e=="boolean")return e;if(typeof e=="string"){let t=e.toLowerCase().trim();return t==="true"||t==="yes"||t==="1"}return typeof e=="number"?e!==0:!!e}formatTimestamp(e){if(e instanceof Date)return nf.DateFormatter.toLocalTimestamp(e);if(typeof e=="string"){if(/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}$/.test(e))return e;if(/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$/.test(e))return e.replace("Z","");let t=new Date(e);return isNaN(t.getTime())?e:nf.DateFormatter.toLocalTimestamp(t)}if(typeof e=="number"){let t=new Date(e);if(!isNaN(t.getTime()))return nf.DateFormatter.toLocalTimestamp(t)}return String(e)}};ki.GenericAssetCreationService=sb;ki.GenericAssetCreationService=sb=M7([(0,ox.injectable)(),$7(0,(0,ox.inject)(B7.DI_TOKENS.IVaultAdapter)),j7("design:paramtypes",[Object])],sb)});var lx=S(Mi=>{"use strict";var q7=Mi&&Mi.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},W7=Mi&&Mi.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},G7=Mi&&Mi.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Mi,"__esModule",{value:!0});Mi.ArchiveAssetService=void 0;var cx=le(),z7=wt(),H7=Zn(),ob=class{static{o(this,"ArchiveAssetService")}constructor(e){this.vault=e,this.frontmatterService=new H7.FrontmatterService}async archiveAsset(e){let t=await this.vault.read(e),r=this.frontmatterService.updateProperty(t,"archived","true");r=this.frontmatterService.removeProperty(r,"aliases"),r!==t&&await this.vault.modify(e,r)}};Mi.ArchiveAssetService=ob;Mi.ArchiveAssetService=ob=q7([(0,cx.injectable)(),G7(0,(0,cx.inject)(z7.DI_TOKENS.IVaultAdapter)),W7("design:paramtypes",[Object])],ob)});var fx=S(ji=>{"use strict";var Q7=ji&&ji.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},K7=ji&&ji.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},Y7=ji&&ji.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(ji,"__esModule",{value:!0});ji.FixMissingLabelService=void 0;var ux=le(),X7=wt(),J7=Zn(),cb=class{static{o(this,"FixMissingLabelService")}constructor(e){this.vault=e,this.frontmatterService=new J7.FrontmatterService}async fixMissingLabel(e){let t=await this.vault.read(e);if(this.hasNonEmptyLabel(t))return;let r=this.frontmatterService.updateProperty(t,"exo__Asset_label",e.basename);r!==t&&await this.vault.modify(e,r)}hasNonEmptyLabel(e){let t=this.frontmatterService.parse(e);if(!t.exists)return!1;let r=t.content.match(/^exo__Asset_label:\s*(.*)$/m);if(!r)return!1;let i=r[1].trim();return!(i===""||i==='""'||i==="''")}};ji.FixMissingLabelService=cb;ji.FixMissingLabelService=cb=Q7([(0,ux.injectable)(),Y7(0,(0,ux.inject)(X7.DI_TOKENS.IVaultAdapter)),K7("design:paramtypes",[Object])],cb)});var dx=S(oa=>{"use strict";var Z7=oa&&oa.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},e8=oa&&oa.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(oa,"__esModule",{value:!0});oa.GraphQueryService=void 0;var t8=le(),sf=Ae(),r8=De(),$a=or(),n8=t0(),gs={INSTANCE_CLASS:$a.Namespace.EXO.term("Instance_class"),ASSET_LABEL:$a.Namespace.EXO.term("Asset_label"),ASSET_PROTOTYPE:$a.Namespace.EXO.term("Asset_prototype"),ASSET_IS_ARCHIVED:$a.Namespace.EXO.term("Asset_isArchived"),EFFORT_PARENT:$a.Namespace.EMS.term("Effort_parent"),REFERENCES:$a.Namespace.EXO.term("references"),REFERENCED_BY:$a.Namespace.EXO.term("referencedBy"),RDF_TYPE:$a.Namespace.RDF.term("type")},lb=class{static{o(this,"GraphQueryService")}constructor(e,t={},r){this.subscribers=new Set,this.nodeCache=new Map,this.lastCacheUpdate=0,this.tripleStore=e,this.logger=r,this.config={defaultLimit:t.defaultLimit??100,maxLimit:t.maxLimit??1e4,defaultDepth:t.defaultDepth??2,maxDepth:t.maxDepth??10,includeArchivedByDefault:t.includeArchivedByDefault??!1,cacheTTL:t.cacheTTL??3e4}}async loadGraphData(e={}){let t=Date.now(),r=await this.loadNodes(e),i=await this.loadEdges(r,e),s=this.computeStats(r,i),a=Date.now()-t;return a>100&&r.length>0&&this.logger?.debug(`GraphQueryService: loaded ${r.length} nodes in ${a}ms (${(a/r.length).toFixed(2)}ms/node)`),{nodes:r,edges:i,stats:s,lastUpdated:Date.now(),version:1}}async loadNodesIncremental(e={}){let t=Math.min(e.limit??this.config.defaultLimit,this.config.maxLimit),r=e.offset??0,i=await this.loadNodes({...e,limit:t+1,offset:r}),s=i.length>t,a=s?i.slice(0,t):i,c=await this.loadEdges(a,e);return{nodes:a,edges:c,hasMore:s,totalCount:void 0,cursor:s?String(r+t):void 0}}async loadConnectedNodes(e,t={}){let r=Math.min(t.depth??this.config.defaultDepth,this.config.maxDepth),i=Math.min(t.limit??this.config.maxLimit,this.config.maxLimit),s=new Set,a=[{id:e,currentDepth:0}],c=[];for(;a.length>0&&c.length<i;){let u=a.shift();if(!u)break;let{id:f,currentDepth:d}=u;if(s.has(f))continue;s.add(f);let h=await this.getNodeById(f,t);if(h&&(c.push(h),d<r)){let p=await this.getConnectedNodeIds(f);for(let y of p)s.has(y)||a.push({id:y,currentDepth:d+1})}}let l=await this.loadEdges(c,t);return{nodes:c,edges:l,hasMore:a.length>0,totalCount:s.size+a.length}}async getNodeById(e,t={}){let r=this.getCachedNode(e);if(r)return{...r};let i=this.idToIRI(e),s=await this.tripleStore.match(i,void 0,void 0);if(s.length===0)return null;let a=this.triplesToNode(e,s,t);return a&&this.cacheNode(a),a}subscribe(e){return this.subscribers.add(e),{unsubscribe:o(()=>{this.subscribers.delete(e)},"unsubscribe")}}notifyChange(e){for(let t of this.subscribers)try{t(e)}catch(r){this.logger?.error("GraphQueryService: error in subscriber callback",r instanceof Error?r:new Error(String(r)))}this.invalidateCache()}async getStats(){let e=await this.loadNodes({includeArchived:!0}),t=await this.loadEdges(e,{});return this.computeStats(e,t)}clearCache(){this.nodeCache.clear(),this.lastCacheUpdate=0}async loadNodes(e){let t=e.includeArchived??this.config.includeArchivedByDefault,r=e.limit??this.config.maxLimit,i=e.offset??0,s=await this.tripleStore.match(void 0,gs.INSTANCE_CLASS,void 0),a=s;if(e.classes&&e.classes.length>0){let p=new Set(e.classes);a=s.filter(y=>{let b=this.getObjectValue(y.object);return b&&p.has(b)})}let c=new Set;for(let p of a)c.add(this.subjectToId(p.subject));let f=Array.from(c).slice(i,i+r).map(p=>this.getNodeById(p,e));return(await Promise.all(f)).filter(p=>!(!p||!t&&p.isArchived))}async loadEdges(e,t){let r=new Set(e.map(a=>a.id)),i=[],s=new Set;for(let a of e){let c=this.idToIRI(a.id),l=await this.tripleStore.match(c,void 0,void 0);for(let u of l){let f=this.tripleToEdge(a.id,u,r);f&&f.id&&!s.has(f.id)&&(!t.edgeTypes||t.edgeTypes.includes(f.type))&&(s.add(f.id),i.push(f))}}return i}async getConnectedNodeIds(e){let t=this.idToIRI(e),r=[],i=await this.tripleStore.match(t,void 0,void 0);for(let a of i){let c=this.objectToId(a.object);c&&r.push(c)}let s=await this.tripleStore.match(void 0,void 0,t);for(let a of s)r.push(this.subjectToId(a.subject));return[...new Set(r)]}triplesToNode(e,t,r){let i={},s,a,c,l,u=!1;for(let h of t){let p=h.predicate.value,y=this.getObjectValue(h.object);if(p===gs.INSTANCE_CLASS.value)s=y;else if(p===gs.ASSET_LABEL.value)a=y;else if(p===gs.ASSET_PROTOTYPE.value)c=this.objectToId(h.object)??y;else if(p===gs.EFFORT_PARENT.value)l=this.objectToId(h.object)??y;else if(p===gs.ASSET_IS_ARCHIVED.value)u=y==="true"||y==="1";else{let b=this.predicateToPropertyName(p);b&&(i[b]=y)}}if(u&&!(r.includeArchived??this.config.includeArchivedByDefault))return null;let f=this.idToPath(e),d=a??this.pathToTitle(f);return{id:e,path:f,title:d,label:d,assetClass:s,isArchived:u,uri:e.startsWith("http")?e:void 0,prototype:c,parent:l,properties:Object.keys(i).length>0?i:void 0}}tripleToEdge(e,t,r){let i=t.predicate.value,s=this.objectToId(t.object);if(!s||!r.has(s)||s===e)return null;let a=this.predicateToEdgeType(i);if(!a)return null;let c=(0,n8.createEdgeId)(e,s,a,i),l=this.predicateToLabel(i);return{id:c,source:e,target:s,type:a,predicate:i,label:l}}predicateToEdgeType(e){return e===gs.EFFORT_PARENT.value?"hierarchy":e===gs.ASSET_PROTOTYPE.value?"prototype":e===gs.REFERENCES.value?"forward-link":e===gs.REFERENCED_BY.value?"backlink":e.includes("Asset_")||e.includes("Instance_")?null:"semantic"}predicateToLabel(e){let t=e.lastIndexOf("#"),r=e.lastIndexOf("/"),i=Math.max(t,r);return i>=0?e.substring(i+1):e}predicateToPropertyName(e){return this.predicateToLabel(e).replace(/_/g,"__").replace(/#/g,"_")}computeStats(e,t){let r={},i={backlink:0,"forward-link":0,hierarchy:0,prototype:0,semantic:0,reference:0};for(let c of e){let l=c.assetClass??"unknown";r[l]=(r[l]??0)+1}for(let c of t)i[c.type]=(i[c.type]??0)+1;let s=new Map,a=new Map;for(let c of t)a.set(c.source,(a.get(c.source)??0)+1),s.set(c.target,(s.get(c.target)??0)+1);for(let c of e)c.inDegree=s.get(c.id)??0,c.outDegree=a.get(c.id)??0,c.weight=c.inDegree+c.outDegree;return{nodeCount:e.length,edgeCount:t.length,nodesByClass:r,edgesByType:i,computedAt:Date.now()}}idToIRI(e){return e.startsWith("http://")||e.startsWith("https://")?new sf.IRI(e):new sf.IRI(`obsidian://vault/${encodeURIComponent(e)}`)}subjectToId(e){if(e instanceof sf.IRI){let t=e.value;return t.startsWith("obsidian://vault/")?decodeURIComponent(t.replace("obsidian://vault/","")):t}return e.toString()}objectToId(e){if(e instanceof sf.IRI){let t=e.value;return t.startsWith("obsidian://vault/")?decodeURIComponent(t.replace("obsidian://vault/","")):t}return null}getObjectValue(e){if(e instanceof r8.Literal||e instanceof sf.IRI)return e.value}idToPath(e){if(e.startsWith("obsidian://vault/"))return decodeURIComponent(e.replace("obsidian://vault/",""));if(e.startsWith("http://")||e.startsWith("https://")){let t=e.match(/\/([^/]+\.md)$/);if(t)return t[1]}return e}pathToTitle(e){return(e.split("/").pop()??e).replace(/\.md$/,"")}getCachedNode(e){return Date.now()-this.lastCacheUpdate>this.config.cacheTTL?(this.clearCache(),null):this.nodeCache.get(e)??null}cacheNode(e){this.nodeCache.set(e.id,e),this.lastCacheUpdate===0&&(this.lastCacheUpdate=Date.now())}invalidateCache(){this.clearCache()}};oa.GraphQueryService=lb;oa.GraphQueryService=lb=Z7([(0,t8.injectable)(),e8("design:paramtypes",[Object,Object,Object])],lb)});var px=S(ca=>{"use strict";var i8=ca&&ca.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},s8=ca&&ca.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(ca,"__esModule",{value:!0});ca.TypeRegistry=void 0;var a8=le(),ys=Ae(),hx=Vt(),o8=De(),c8=La(),ht=r0(),ub=class{static{o(this,"TypeRegistry")}constructor(e=null,t={}){this.nodeTypes=new Map,this.edgeTypes=new Map,this.typeHierarchy=new Map,this.subscribers=new Set,this.discoveryComplete=!1,this.tripleStore=e,this.config={autoDiscoverTypes:t.autoDiscoverTypes??!0,includeBuiltInStyles:t.includeBuiltInStyles??!0,styleResolution:t.styleResolution??{mergeStyles:!0,inheritParentStyles:!0,defaultNodeStyle:ht.DEFAULT_NODE_STYLE,defaultEdgeStyle:ht.DEFAULT_EDGE_STYLE},maxInheritanceDepth:t.maxInheritanceDepth??10},this.config.includeBuiltInStyles&&this.registerBuiltInTypes()}registerNodeType(e){let r=this.nodeTypes.get(e.uri)?"type-updated":"type-added";this.nodeTypes.set(e.uri,e),e.parentTypes&&e.parentTypes.length>0&&this.typeHierarchy.set(e.uri,e.parentTypes),this.emit({type:r,typeUri:e.uri,definition:e})}registerEdgeType(e){let r=this.edgeTypes.get(e.uri)?"type-updated":"type-added";this.edgeTypes.set(e.uri,e),this.emit({type:r,typeUri:e.uri,definition:e})}unregisterType(e){let t=this.nodeTypes.delete(e),r=this.edgeTypes.delete(e);this.typeHierarchy.delete(e),(t||r)&&this.emit({type:"type-removed",typeUri:e})}getNodeType(e){return this.nodeTypes.get(e)}getEdgeType(e){return this.edgeTypes.get(e)}getAllNodeTypes(){return Array.from(this.nodeTypes.values())}getAllEdgeTypes(){return Array.from(this.edgeTypes.values())}getParentTypes(e,t=this.config.maxInheritanceDepth){let r=[],i=new Set,s=[{uri:e,currentDepth:0}];for(;s.length>0;){let a=s.shift();if(!a)break;let{uri:c,currentDepth:l}=a;if(i.has(c)||(i.add(c),l>=t))continue;let u=this.typeHierarchy.get(c)??[];for(let f of u)i.has(f)||(r.push(f),s.push({uri:f,currentDepth:l+1}))}return r}getChildTypes(e){let t=[];for(let[r,i]of this.typeHierarchy)i.includes(e)&&t.push(r);return t}isSubtypeOf(e,t){return e===t?!0:this.getParentTypes(e).includes(t)}resolveNodeType(e){let t=[],r="unknown",i="custom";if(e.assetClass){let c=this.normalizeTypeUri(e.assetClass);t.push(c),r=c,i="exo:Instance_class"}let s=e.properties?.[ht.RDF_TYPE_PREDICATES.RDF_TYPE];s&&!t.includes(s)&&(t.push(s),r==="unknown"&&(r=s,i="rdf:type"));for(let c of[...t]){let l=this.getParentTypes(c);for(let u of l)t.includes(u)||t.push(u)}let a=this.resolveNodeStyle(t);return{primaryType:r,types:t,resolvedStyle:a,source:i}}resolveEdgeType(e){let t=e.predicate??e.type,r=e.predicate?"rdf:type":"custom",i=this.resolveEdgeStyle(t);return{primaryType:t,resolvedStyle:i,source:r}}resolveNodeStyle(e){let{mergeStyles:t,defaultNodeStyle:r}=this.config.styleResolution,i={...r},s=[];for(let a of e){let c=this.nodeTypes.get(a);c&&s.push(c)}if(s.sort((a,c)=>a.priority-c.priority),t)for(let a of s)i=(0,ht.mergeNodeStyles)(i,a.style);else if(s.length>0){let a=s[s.length-1];i=(0,ht.mergeNodeStyles)(i,a.style)}return i}resolveEdgeStyle(e){let{defaultEdgeStyle:t}=this.config.styleResolution,r={...t},i=this.edgeTypes.get(e);return i&&(r=(0,ht.mergeEdgeStyles)(r,i.style)),r}filterNodes(e,t){return e.filter(r=>{let i=this.resolveNodeType(r);return!(t.includeNodeTypes&&t.includeNodeTypes.length>0&&!t.includeNodeTypes.some(a=>i.types.includes(a)||t.includeInferred&&this.isSubtypeOf(i.primaryType,a))||t.excludeNodeTypes&&t.excludeNodeTypes.length>0&&t.excludeNodeTypes.some(a=>i.types.includes(a)||t.includeInferred&&this.isSubtypeOf(i.primaryType,a))||!t.includeDeprecated&&this.nodeTypes.get(i.primaryType)?.deprecated)})}filterEdges(e,t){return e.filter(r=>{let i=r.predicate??r.type;return!(t.includeEdgeTypes&&t.includeEdgeTypes.length>0&&!t.includeEdgeTypes.includes(i)||t.excludeEdgeTypes&&t.excludeEdgeTypes.length>0&&t.excludeEdgeTypes.includes(i))})}groupNodesByType(e,t,r={}){let{groupByNodeType:i=!0,groupByParentType:s=!1,groupLevel:a=0,maxGroups:c=20,customGroupFn:l}=r,u=new Map;for(let h of e){let p=this.resolveNodeType(h),y;if(l?y=l(p.types):s&&p.types.length>a?y=p.types[a]??p.primaryType:i?y=p.primaryType:y="all",!u.has(y)){let v=this.nodeTypes.get(y)?.label??(0,ht.extractLocalName)(y);u.set(y,{nodeIds:new Set,label:v})}let b=u.get(y);b&&b.nodeIds.add(h.id)}let f=Array.from(u.entries()).map(([h,p])=>({id:h,label:p.label,nodeIds:Array.from(p.nodeIds)}));if(f.length>c){f.sort((y,b)=>b.nodeIds.length-y.nodeIds.length);let h=f.slice(0,c-1),p=f.slice(c-1).flatMap(y=>y.nodeIds);h.push({id:"other",label:"Other",nodeIds:p}),f=h}let d=new Map;for(let h of f)for(let p of h.nodeIds)d.set(p,h.id);return f.map((h,p)=>{let y=new Set(h.nodeIds),b=[],w=[];for(let C of t){let L=y.has(C.source),V=y.has(C.target);L&&V?C.id&&b.push(C.id):(L||V)&&C.id&&w.push(C.id)}let T=`hsl(${p*137.5%360}, 70%, 50%)`;return{id:h.id,label:h.label,nodeIds:h.nodeIds,internalEdgeIds:b,externalEdgeIds:w,color:T,stats:{nodeCount:h.nodeIds.length,internalEdgeCount:b.length,externalEdgeCount:w.length}}})}validateTypes(e,t){let r=[],i=[];for(let s of e){let a=this.resolveNodeType(s);if(a.primaryType!=="unknown"){let c=this.nodeTypes.get(a.primaryType);!c&&a.source!=="inferred"&&i.push({code:"UNREGISTERED_NODE_TYPE",message:`Node type "${a.primaryType}" is not registered`,elementId:s.id,suggestion:"Register the type with registerNodeType()"}),c?.deprecated&&i.push({code:"DEPRECATED_NODE_TYPE",message:`Node uses deprecated type "${a.primaryType}"`,elementId:s.id,suggestion:"Migrate to a non-deprecated type"})}else i.push({code:"MISSING_NODE_TYPE",message:"Node has no type information",elementId:s.id,suggestion:"Add exo:Instance_class or rdf:type to the node"})}for(let s of t){let a=s.predicate??s.type,c=this.edgeTypes.get(a);if(c?.domain&&c.domain.length>0){let l=e.find(u=>u.id===s.source);if(l){let u=this.resolveNodeType(l);c.domain.some(d=>u.types.includes(d))||r.push({code:"DOMAIN_VIOLATION",message:"Edge source does not match expected domain",elementId:s.id,expected:c.domain,actual:u.types})}}if(c?.range&&c.range.length>0){let l=e.find(u=>u.id===s.target);if(l){let u=this.resolveNodeType(l);c.range.some(d=>u.types.includes(d))||r.push({code:"RANGE_VIOLATION",message:"Edge target does not match expected range",elementId:s.id,expected:c.range,actual:u.types})}}}return{valid:r.length===0,errors:r,warnings:i}}async discoverTypes(){if(!this.tripleStore||this.discoveryComplete)return;let e=await this.tripleStore.match(void 0,new ys.IRI(ht.RDF_TYPE_PREDICATES.RDF_TYPE),void 0);for(let r of e){let i=this.getObjectValue(r.object);if(i&&(0,ht.isClassType)(i)){let s=this.getSubjectValue(r.subject);s&&await this.discoverNodeType(s)}}let t=await this.tripleStore.match(void 0,new ys.IRI(ht.RDF_TYPE_PREDICATES.RDFS_SUBCLASS_OF),void 0);for(let r of t){let i=this.getSubjectValue(r.subject),s=this.getObjectValue(r.object);if(i&&s){let a=this.typeHierarchy.get(i)??[];if(!a.includes(s)){a.push(s),this.typeHierarchy.set(i,a);let c=this.nodeTypes.get(i);c&&(c.parentTypes=a)}}}this.discoveryComplete=!0,this.emit({type:"hierarchy-updated",rootTypes:this.getRootTypes()})}subscribe(e){return this.subscribers.add(e),()=>this.subscribers.delete(e)}clear(){this.nodeTypes.clear(),this.edgeTypes.clear(),this.typeHierarchy.clear(),this.discoveryComplete=!1,this.config.includeBuiltInStyles&&this.registerBuiltInTypes()}registerBuiltInTypes(){for(let[e,t]of Object.entries(ht.BUILT_IN_NODE_STYLES))this.nodeTypes.set(e,{uri:e,label:(0,ht.extractLocalName)(e),source:"custom",style:(0,ht.mergeNodeStyles)(ht.DEFAULT_NODE_STYLE,t),priority:1});for(let[e,t]of Object.entries(ht.BUILT_IN_EDGE_STYLES))this.edgeTypes.set(e,{uri:e,label:(0,ht.extractLocalName)(e),source:"custom",style:(0,ht.mergeEdgeStyles)(ht.DEFAULT_EDGE_STYLE,t),priority:1})}async discoverNodeType(e){if(this.nodeTypes.has(e)||!this.tripleStore)return;let t=await this.tripleStore.match(new ys.IRI(e),new ys.IRI(ht.RDF_TYPE_PREDICATES.RDFS_LABEL),void 0),r=await this.tripleStore.match(new ys.IRI(e),new ys.IRI(ht.RDF_TYPE_PREDICATES.RDFS_COMMENT),void 0),i=t.length>0?this.getObjectValue(t[0].object)??(0,ht.extractLocalName)(e):(0,ht.extractLocalName)(e),s=r.length>0?this.getObjectValue(r[0].object):void 0,a="rdfs:Class",c=await this.tripleStore.match(new ys.IRI(e),new ys.IRI(ht.RDF_TYPE_PREDICATES.RDF_TYPE),void 0);for(let f of c)if(this.getObjectValue(f.object)===ht.RDF_TYPE_PREDICATES.OWL_CLASS){a="owl:Class";break}let l=ht.BUILT_IN_NODE_STYLES[e]??ht.BUILT_IN_NODE_STYLES[(0,ht.extractLocalName)(e)],u={uri:e,label:i,description:s,source:a,style:(0,ht.mergeNodeStyles)(ht.DEFAULT_NODE_STYLE,l??{}),priority:1};this.registerNodeType(u)}normalizeTypeUri(e){let t=e.match(/^\[\[(.+?)\]\]$/);return t?t[1]:e}getSubjectValue(e){if(e instanceof ys.IRI)return e.value;if(e instanceof hx.BlankNode)return`_:${e.id}`;if(typeof e=="object"&&e!==null&&"termType"in e)return e.toString()}getObjectValue(e){if(e instanceof o8.Literal||e instanceof ys.IRI)return e.value;if(e instanceof hx.BlankNode)return`_:${e.id}`}getRootTypes(){let e=new Set;for(let r of this.typeHierarchy.values())for(let i of r)e.add(i);let t=[];for(let r of this.nodeTypes.keys()){let i=this.typeHierarchy.get(r);(!i||i.length===0)&&e.has(r)&&t.push(r)}return t}emit(e){for(let t of this.subscribers)try{t(e)}catch(r){c8.LoggingService.error("TypeRegistry: error in subscriber callback",r instanceof Error?r:new Error(String(r)))}}};ca.TypeRegistry=ub;ca.TypeRegistry=ub=i8([(0,a8.injectable)(),s8("design:paramtypes",[Object,Object])],ub)});var fb=S(U=>{"use strict";Object.defineProperty(U,"__esModule",{value:!0});U.SPARQL_TEMPLATES=U.KNOWN_CLASSES=U.KNOWN_PROTOTYPES=U.EFFORT_STATUSES=U.ASSET_CLASSES=U.PREDICATES=U.SPARQL_PREFIXES=void 0;U.findClassByTerm=l8;U.getTemplateByName=u8;U.findMatchingTemplates=f8;U.fillTemplate=d8;U.validateParameters=h8;U.SPARQL_PREFIXES=`PREFIX exo: <https://exocortex.my/ontology/exo#>
218
218
  PREFIX ems: <https://exocortex.my/ontology/ems#>
219
219
  PREFIX ims: <https://exocortex.my/ontology/ims#>
220
220
  PREFIX gtd: <https://exocortex.my/ontology/gtd#>
@@ -374,7 +374,7 @@ LIMIT ${this.config.defaultLimit}`,s="\u041D\u0435 \u0443\u0434\u0430\u043B\u043
374
374
  `,i=this.composePrefixes(t),s=this.serializePrefixes(i,r),a=this.nTriplesSerializer.serialize(e,{newline:r}).trimEnd();return s?a?`${s}${r}${r}${a}${r}`:`${s}${r}`:a?`${a}${r}`:""}serializePrefixes(e,t){let r=Object.entries(e);return r.length===0?"":r.map(([i,s])=>`@prefix ${i}: <${s}> .`).join(t)}composePrefixes(e){return e.includeDefaultPrefixes??!0?{...U8,...e.prefixes??{}}:{...e.prefixes??{}}}serializeTriplesOnly(e,t){return this.nTriplesSerializer.serializeChunk(e,t).trimEnd()}};Xp.TurtleSerializer=wb});var Rx=S(Jp=>{"use strict";Object.defineProperty(Jp,"__esModule",{value:!0});Jp.JSONLDSerializer=void 0;var Ix=Ae(),Cx=Vt(),B8=De(),ll=or(),q8={rdf:ll.Namespace.RDF.iri.value,rdfs:ll.Namespace.RDFS.iri.value,owl:ll.Namespace.OWL.iri.value,xsd:ll.Namespace.XSD.iri.value,exo:ll.Namespace.EXO.iri.value,ems:ll.Namespace.EMS.iri.value},Eb=class{static{o(this,"JSONLDSerializer")}toDocument(e,t={}){let r={...q8,...t.context??{}},i=new Map;for(let s of e){let a=this.subjectToId(s.subject),c=this.compactIri(s.predicate.value,r),l=this.objectToJSONLD(s.object,r),u=i.get(a)??{"@id":a},f=u[c];f===void 0?u[c]=l:Array.isArray(f)?f.push(l):u[c]=[f,l],i.set(a,u)}return{"@context":r,"@graph":Array.from(i.values())}}serialize(e,t={}){let r=this.toDocument(e,t),i=t.pretty?t.indent??2:void 0;return JSON.stringify(r,null,i)}subjectToId(e){return e instanceof Ix.IRI?e.value:e instanceof Cx.BlankNode?`_:${e.id}`:String(e)}compactIri(e,t){for(let[r,i]of Object.entries(t))if(e.startsWith(i)){let s=e.slice(i.length);if(s.length>0)return`${r}:${s}`}return e}objectToJSONLD(e,t){if(e instanceof Ix.IRI)return{"@id":e.value};if(e instanceof Cx.BlankNode)return{"@id":`_:${e.id}`};if(e instanceof B8.Literal){let r={"@value":e.value};return e.datatype?r["@type"]=this.compactIri(e.datatype.value,t):e.language&&(r["@language"]=e.language,e.hasDirection()&&e.direction&&(r["@direction"]=e.direction)),r}return e}};Jp.JSONLDSerializer=Eb});var xb=S(Zp=>{"use strict";Object.defineProperty(Zp,"__esModule",{value:!0});Zp.NTriplesParser=void 0;var W8=Kn(),Ox=Ae(),Tb=De(),G8=Vt(),ul=or(),z8={rdf:ul.Namespace.RDF.iri.value,rdfs:ul.Namespace.RDFS.iri.value,owl:ul.Namespace.OWL.iri.value,xsd:ul.Namespace.XSD.iri.value,exo:ul.Namespace.EXO.iri.value,ems:ul.Namespace.EMS.iri.value},Ab=class{static{o(this,"NTriplesParser")}parse(e,t={}){let r={prefixes:{...z8,...t.prefixes??{}},strict:t.strict??!1},i=[];return e.split(/\r?\n/).forEach((a,c)=>{let l=a.trim();!l||l.startsWith("#")||i.push(this.parseLine(l,c+1,r))}),i}parseLine(e,t,r){if(!e.endsWith("."))throw new Error(`Invalid RDF statement at line ${t}: missing '.' terminator`);let s=e.slice(0,-1).trim(),a=this.parseSubject(s,t,r);s=a.rest.trim();let c=this.parsePredicate(s,t,r);s=c.rest.trim();let l=this.parseObject(s,t,r);if(s=l.rest.trim(),s.length>0)throw new Error(`Unexpected tokens after object at line ${t}`);return new W8.Triple(a.node,c.node,l.node)}parseSubject(e,t,r){return e.startsWith("<")?this.consumeIRI(e,t,r):e.startsWith("_:")?this.consumeBlankNode(e,t):this.consumePrefixedName(e,t,r)}parsePredicate(e,t,r){return e.startsWith("<")?this.consumeIRI(e,t,r):this.consumePrefixedName(e,t,r)}parseObject(e,t,r){return e.startsWith("<")?this.consumeIRI(e,t,r):e.startsWith("_:")?this.consumeBlankNode(e,t):e.startsWith('"')?this.consumeLiteral(e,t,r):this.consumePrefixedName(e,t,r)}consumePrefixedName(e,t,r){let i=e.match(/^([a-zA-Z_][\w-]*):([^\s]+)(?:\s+(.*))?$/);if(!i)throw new Error(`Invalid token at line ${t}: ${e}`);let[,s,a,c]=i,l=r.prefixes[s];if(!l)throw new Error(`Unknown prefix "${s}" at line ${t}`);return{node:new Ox.IRI(`${l}${a}`),rest:(c??"").trimStart()}}consumeIRI(e,t,r){let i=this.findClosingBracket(e,"<",">");if(i===-1)throw new Error(`Invalid IRI at line ${t}`);let s=e.slice(1,i),a=new Ox.IRI(s),c=e.slice(i+1).trimStart();return{node:a,rest:c}}consumeBlankNode(e,t){let r=e.match(/^_:(\w+)(?:\s+(.*))?$/);if(!r)throw new Error(`Invalid blank node identifier at line ${t}`);let[,i,s]=r;return{node:new G8.BlankNode(i),rest:(s??"").trimStart()}}consumeLiteral(e,t,r){let{value:i,rest:s}=this.consumeQuotedString(e,t),a=s.trimStart();if(a.startsWith("^^")){a=a.slice(2).trimStart();let c=a.startsWith("<")?this.consumeIRI(a,t,r):this.consumePrefixedName(a,t,r);return{node:new Tb.Literal(i,c.node),rest:c.rest}}if(a.startsWith("@")){let c=a.match(/^@([a-zA-Z-]+)(?:\s+(.*))?$/);if(!c)throw new Error(`Invalid language tag at line ${t}`);let[,l,u]=c;return{node:new Tb.Literal(i,void 0,l),rest:(u??"").trimStart()}}return{node:new Tb.Literal(i),rest:a}}consumeQuotedString(e,t){if(!e.startsWith('"'))throw new Error(`Expected quoted string at line ${t}`);let r="";for(let i=1;i<e.length;i++){let s=e[i];if(s==="\\"){if(i+1>=e.length)throw new Error(`Invalid escape sequence at line ${t}`);let a=e[i+1];switch(a){case"t":r+=" ",i+=1;break;case"b":r+="\b",i+=1;break;case"n":r+=`
375
375
  `,i+=1;break;case"r":r+="\r",i+=1;break;case"f":r+="\f",i+=1;break;case'"':r+='"',i+=1;break;case"\\":r+="\\",i+=1;break;case"u":{let c=e.slice(i+2,i+6);if(c.length!==4||!/^[0-9a-fA-F]{4}$/.test(c))throw new Error(`Invalid \\u escape at line ${t}`);r+=String.fromCharCode(parseInt(c,16)),i+=5;break}case"U":{let c=e.slice(i+2,i+10);if(c.length!==8||!/^[0-9a-fA-F]{8}$/.test(c))throw new Error(`Invalid \\U escape at line ${t}`);r+=String.fromCodePoint(parseInt(c,16)),i+=9;break}default:throw new Error(`Unknown escape sequence \\${a} at line ${t}`)}continue}if(s==='"'){let a=e.slice(i+1);return{value:r,rest:a}}r+=s}throw new Error(`Unterminated string literal at line ${t}`)}findClosingBracket(e,t,r){let i=0;for(let s=0;s<e.length;s++){let a=e[s];if(a===t){i++;continue}if(a===r&&(i--,i===0))return s}return-1}};Zp.NTriplesParser=Ab});var Px=S(em=>{"use strict";Object.defineProperty(em,"__esModule",{value:!0});em.TurtleParser=void 0;var fl=or(),H8=xb(),Q8={rdf:fl.Namespace.RDF.iri.value,rdfs:fl.Namespace.RDFS.iri.value,owl:fl.Namespace.OWL.iri.value,xsd:fl.Namespace.XSD.iri.value,exo:fl.Namespace.EXO.iri.value,ems:fl.Namespace.EMS.iri.value},K8=/^@prefix\s+([a-zA-Z_][\w-]*):\s*<([^>]+)>\s*\.$/,Ib=class{static{o(this,"TurtleParser")}constructor(){this.nTriplesParser=new H8.NTriplesParser}parse(e,t={}){let r={...Q8,...t.prefixes??{}},i=this.collectStatements(e),s=[];return i.forEach(({statement:a,lineNumber:c})=>{if(this.isPrefixStatement(a)){let u=a.match(K8);if(!u)throw new Error(`Invalid prefix declaration at line ${c}`);let[,f,d]=u;r[f]=d;return}if(a.includes(";")||a.includes(","))throw new Error(`Complex Turtle statements with ';' or ',' are not supported (line ${c})`);let l=this.normalizeShortcuts(a);s.push(this.nTriplesParser.parseLine(l,c,{prefixes:r,strict:!1}))}),s}collectStatements(e){let t=e.split(/\r?\n/),r=[],i="",s=0;if(t.forEach((a,c)=>{let l=a.trim();!l||l.startsWith("#")||(i||(s=c+1),i=i?`${i} ${l}`:l,l.endsWith(".")&&(r.push({statement:i,lineNumber:s}),i=""))}),i)throw new Error(`Unterminated Turtle statement near line ${s}`);return r}isPrefixStatement(e){return e.startsWith("@prefix")}normalizeShortcuts(e){return e.includes(" a ")?e.replace(/\sa\s/g," rdf:type "):e}};em.TurtleParser=Ib});var Fx=S(tm=>{"use strict";Object.defineProperty(tm,"__esModule",{value:!0});tm.RDFSerializer=void 0;var dl=Kn(),qo=Ae(),Wo=De(),Cb=Vt(),_s=or(),Y8=xx(),X8=vb(),J8=Rx(),Z8=Px(),e$=xb(),t$=1024,r$=`
376
376
  `,n$={rdf:_s.Namespace.RDF.iri.value,rdfs:_s.Namespace.RDFS.iri.value,owl:_s.Namespace.OWL.iri.value,xsd:_s.Namespace.XSD.iri.value,exo:_s.Namespace.EXO.iri.value,ems:_s.Namespace.EMS.iri.value},Rb=class{static{o(this,"RDFSerializer")}constructor(e){this.store=e,this.turtleSerializer=new Y8.TurtleSerializer,this.nTriplesSerializer=new X8.NTriplesSerializer,this.jsonldSerializer=new J8.JSONLDSerializer,this.turtleParser=new Z8.TurtleParser,this.nTriplesParser=new e$.NTriplesParser}async serialize(e,t={}){let r=await this.store.match();return this.serializeTriples(r,e,t)}serializeTriples(e,t,r={}){switch(t){case"turtle":return this.turtleSerializer.serialize(e,{prefixes:r.prefixes,includeDefaultPrefixes:r.includeDefaultPrefixes,newline:r.newline});case"n-triples":return this.nTriplesSerializer.serialize(e,{newline:r.newline});case"json-ld":return this.jsonldSerializer.serialize(e,{context:r.prefixes,pretty:r.pretty,indent:r.indent});default:throw new Error(`Unsupported serialization format: ${t}`)}}stream(e,t={}){let r=t.newline??r$,i=t.batchSize??t$,s=t.includeDefaultPrefixes,a=t.prefixes,c=this,l=!1,u=[],f=[],d=0,h=o(async()=>{if(!l){if(f=await c.store.match(),e==="json-ld"){let y=c.jsonldSerializer.toDocument(f,{context:a,pretty:!1});u.push(...c.buildJsonLdChunks(y))}else if(e==="turtle"){let y=c.turtleSerializer.serializePrefixes(c.composePrefixes(a,s),r);y&&u.push(`${y}${r}${r}`)}l=!0}},"ensureInitialized");return{async next(){if(await h(),u.length>0)return{value:u.shift(),done:!1};if(e==="json-ld")return{value:void 0,done:!0};if(d>=f.length)return{value:void 0,done:!0};let y=f.slice(d,d+i);d+=y.length;let b="";if(e==="turtle"){let w=c.turtleSerializer.serializeTriplesOnly(y,r);w&&(b=`${w}${r}`)}else e==="n-triples"&&(b=c.nTriplesSerializer.serializeChunk(y,r));return b?{value:b,done:!1}:this.next()},async return(){return u=[],f=[],d=0,{value:void 0,done:!0}},[Symbol.asyncIterator](){return this}}}async load(e,t,r={}){let i=this.parse(e,t,r);return r.mode!=="append"&&await this.store.clear(),await this.store.addAll(i),i.length}parse(e,t,r={}){switch(t){case"turtle":return this.turtleParser.parse(e,this.buildTurtleParseOptions(r));case"n-triples":return this.nTriplesParser.parse(e,this.buildNTriplesParseOptions(r));case"json-ld":return this.parseJsonLd(e,r);default:throw new Error(`Unsupported serialization format: ${t}`)}}buildTurtleParseOptions(e){return{prefixes:this.composePrefixes(e.prefixes,!0),strict:e.strict}}buildNTriplesParseOptions(e){return{prefixes:this.composePrefixes(e.prefixes,!0),strict:e.strict}}composePrefixes(e,t){return t??!0?{...n$,...e??{}}:{...e??{}}}parseJsonLd(e,t){let r;try{r=JSON.parse(e)}catch(u){throw new Error(`Invalid JSON-LD document: ${u.message}`)}let i=this.composePrefixes(t.prefixes,!0),s=this.extractContext(r),a={...i,...s},c=this.extractGraph(r),l=[];return c.forEach((u,f)=>{if(!u||typeof u!="object"||Array.isArray(u))throw new Error(`Invalid JSON-LD node at index ${f}`);let d=this.parseSubjectFromNode(u,a,f),h=Object.entries(u);for(let[p,y]of h){if(p==="@id"||p==="@context")continue;if(p==="@type"){this.collectTypeTriples(d,y,l,a);continue}let b=this.expandTerm(p,a),w=new qo.IRI(b);this.collectTriplesForValue(d,w,y,l,a)}}),l}extractContext(e){if(!e||typeof e!="object"||Array.isArray(e))return{};let t=e["@context"];if(!t||typeof t!="object"||Array.isArray(t))return{};let r={};return Object.entries(t).forEach(([i,s])=>{typeof s=="string"&&(r[i]=s)}),r}extractGraph(e){if(Array.isArray(e))return e;if(!e||typeof e!="object")return[];let t=e["@graph"];return Array.isArray(t)?t:[e]}parseSubjectFromNode(e,t,r){let i=e["@id"];if(typeof i=="string"){if(i.startsWith("_:"))return new Cb.BlankNode(i.slice(2));if(this.isAbsoluteIri(i))return new qo.IRI(i);let s=this.expandTerm(i,t);return new qo.IRI(s)}return new Cb.BlankNode(`jsonld_${r}`)}collectTypeTriples(e,t,r,i){let s=_s.Namespace.RDF.term("type");(Array.isArray(t)?t:[t]).forEach(c=>{if(typeof c!="string")throw new Error("Invalid @type value in JSON-LD node");let l=this.expandTerm(c,i);r.push(new dl.Triple(e,s,new qo.IRI(l)))})}collectTriplesForValue(e,t,r,i,s){if(r!=null){if(Array.isArray(r)){r.forEach(a=>this.collectTriplesForValue(e,t,a,i,s));return}if(typeof r=="object"){let a=r;if(typeof a["@id"]=="string"){let c=this.parseIdNode(a["@id"],s);i.push(new dl.Triple(e,t,c));return}if(a["@value"]!==void 0){let c=this.parseLiteralObject(a,s);i.push(new dl.Triple(e,t,c));return}}if(typeof r=="string"){i.push(new dl.Triple(e,t,new Wo.Literal(r)));return}if(typeof r=="number"){let a=Number.isInteger(r)?_s.Namespace.XSD.term("integer"):_s.Namespace.XSD.term("decimal");i.push(new dl.Triple(e,t,new Wo.Literal(r.toString(),a)));return}if(typeof r=="boolean"){let a=_s.Namespace.XSD.term("boolean");i.push(new dl.Triple(e,t,new Wo.Literal(r.toString(),a)));return}throw new Error("Unsupported JSON-LD value encountered")}}parseIdNode(e,t){if(e.startsWith("_:"))return new Cb.BlankNode(e.slice(2));if(this.isAbsoluteIri(e))return new qo.IRI(e);let r=this.expandTerm(e,t);return new qo.IRI(r)}parseLiteralObject(e,t){let r=e["@value"];if(typeof r!="string")throw new Error("JSON-LD literal values must be strings");if(typeof e["@language"]=="string"){let i=e["@direction"];return i==="ltr"||i==="rtl"?new Wo.Literal(r,void 0,e["@language"],i):new Wo.Literal(r,void 0,e["@language"])}if(typeof e["@type"]=="string"){let i=this.expandTerm(e["@type"],t);return new Wo.Literal(r,new qo.IRI(i))}return new Wo.Literal(r)}expandTerm(e,t){if(this.isAbsoluteIri(e))return e;let r=e.indexOf(":");if(r>0){let s=e.slice(0,r),a=e.slice(r+1),c=t[s];if(!c)throw new Error(`Unknown prefix "${s}" in JSON-LD document`);return`${c}${a}`}let i=t["@vocab"];if(i)return`${i}${e}`;throw new Error(`Unable to expand JSON-LD term "${e}"`)}isAbsoluteIri(e){return/^[a-z][a-z0-9+.-]*:/i.test(e)}buildJsonLdChunks(e){let t=[],r=JSON.stringify(e["@context"]);return t.push(`{"@context":${r},"@graph":[`),e["@graph"].forEach((i,s)=>{let a=JSON.stringify(i);s>0?t.push(`,${a}`):t.push(a)}),t.push(`]}
377
- `),t}};tm.RDFSerializer=Rb});var Ob=S(hl=>{"use strict";Object.defineProperty(hl,"__esModule",{value:!0});hl.OBSIDIAN_VAULT_SCHEME=void 0;hl.vaultPathToIRI=i$;hl.OBSIDIAN_VAULT_SCHEME="obsidian://vault/";function i$(n){let e=n.startsWith("./")?n.slice(2):n;return`${hl.OBSIDIAN_VAULT_SCHEME}${encodeURI(e)}`}o(i$,"vaultPathToIRI")});var Fb=S(rm=>{"use strict";Object.defineProperty(rm,"__esModule",{value:!0});rm.RDFVocabularyMapper=void 0;var Zt=Kn(),Dx=Ae(),K=or(),Pb=class{static{o(this,"RDFVocabularyMapper")}constructor(){this.propertyMappings=new Map([["exo__Instance_class",K.Namespace.RDF.term("type")],["exo__Asset_isDefinedBy",K.Namespace.RDFS.term("isDefinedBy")],["exo__Class_superClass",K.Namespace.RDFS.term("subClassOf")],["exo__Property_range",K.Namespace.RDFS.term("range")],["exo__Property_domain",K.Namespace.RDFS.term("domain")],["exo__Property_superProperty",K.Namespace.RDFS.term("subPropertyOf")]])}generateClassHierarchyTriples(){let e=[];return e.push(new Zt.Triple(K.Namespace.EXO.term("Asset"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.RDFS.term("Resource"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Class"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.RDFS.term("Class"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Property"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.RDF.term("Property"))),e.push(new Zt.Triple(K.Namespace.EMS.term("Task"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EMS.term("Project"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EMS.term("Area"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EMS.term("Workflow"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EMS.term("WorkflowState"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EMS.term("WorkflowTransition"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EXOCMD.term("Command"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EXOCMD.term("Precondition"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EXOCMD.term("Grounding"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EXOCMD.term("CommandBinding"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e}generatePropertyHierarchyTriples(){let e=[];return e.push(new Zt.Triple(K.Namespace.EXO.term("Instance_class"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDF.term("type"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Asset_isDefinedBy"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDFS.term("isDefinedBy"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Class_superClass"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDFS.term("subClassOf"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Property_range"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDFS.term("range"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Property_domain"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDFS.term("domain"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Property_superProperty"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDFS.term("subPropertyOf"))),e}generateMappedTriple(e,t,r){let i=this.propertyMappings.get(t);if(!i)return null;let s;if(r instanceof Dx.IRI)s=r;else{let a=r.match(/^(ems|exo|exocmd)__(.+)$/);if(a){let[,c,l]=a;s=(c==="ems"?K.Namespace.EMS:c==="exocmd"?K.Namespace.EXOCMD:K.Namespace.EXO).term(l)}else s=new Dx.IRI(r)}return new Zt.Triple(e,i,s)}hasMappingFor(e){return this.propertyMappings.has(e)}};rm.RDFVocabularyMapper=Pb});var Nx=S(im=>{"use strict";Object.defineProperty(im,"__esModule",{value:!0});im.RDFSInferenceEngine=void 0;var s$=Kn(),nm=Ae(),Db=class{static{o(this,"RDFSInferenceEngine")}async materialize(e){let t=await e.predicates(),r=t.find(d=>d.value.includes("Class_superClass")),i=t.find(d=>d.value.includes("Instance_class"));if(!r||!i)return 0;let s=await this.buildDirectParentMap(e,r);if(s.size===0)return 0;let a=this.computeAllAncestors(s),c=await e.count(),l=await e.match(void 0,i),u=[];for(let d of l)if(d.object instanceof nm.IRI){let h=a.get(d.object.value);if(h)for(let p of h)u.push(new s$.Triple(d.subject,i,new nm.IRI(p)))}return u.length>0&&await e.addAll(u),await e.count()-c}async buildDirectParentMap(e,t){let r=await e.match(void 0,t),i=new Map;for(let s of r)if(s.subject instanceof nm.IRI&&s.object instanceof nm.IRI){let a=s.subject.value,c=s.object.value;i.has(a)||i.set(a,new Set),i.get(a).add(c)}return i}computeAllAncestors(e){let t=new Map;for(let r of e.keys())t.has(r)||t.set(r,this.computeAncestorsBFS(r,e));return t}computeAncestorsBFS(e,t){let r=new Set,i=new Set,s=[],a=t.get(e);if(a)for(let c of a)s.push(c);for(;s.length>0;){let c=s.shift();if(i.has(c))continue;i.add(c),r.add(c);let l=t.get(c);if(l)for(let u of l)i.has(u)||s.push(u)}return r}};im.RDFSInferenceEngine=Db});var kb=S(Go=>{"use strict";var a$=Go&&Go.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s};Object.defineProperty(Go,"__esModule",{value:!0});Go.NonInheritablePropertyRegistry=void 0;var o$=le(),Lx=Ae(),kx=De(),Nb=or(),Lb=class{static{o(this,"NonInheritablePropertyRegistry")}constructor(){this.nonInheritableIRIs=new Set,this.initialized=!1}async initialize(e){this.nonInheritableIRIs.clear();try{let t=await e.predicates(),r=t.find(c=>c.value.includes("Instance_class"));if(!r){this.initialized=!0;return}let i=await this.findNonInheritableClassIRI(e,t);if(!i){this.initialized=!0;return}let s=await e.match(void 0,r,i);if(s.length===0){this.initialized=!0;return}let a=t.find(c=>c.value.includes("Asset_label"));if(!a){this.initialized=!0;return}for(let c of s){let l=await e.match(c.subject,a,void 0);for(let u of l)if(u.object instanceof kx.Literal){let f=u.object.value,d=this.propertyKeyToIRI(f);d&&this.nonInheritableIRIs.add(d)}}}catch{}this.initialized=!0}isNonInheritable(e){return this.nonInheritableIRIs.has(e)}get size(){return this.nonInheritableIRIs.size}get isInitialized(){return this.initialized}async findNonInheritableClassIRI(e,t){let r=t.find(a=>a.value.includes("Asset_label"));if(!r)return null;let i=await e.match(void 0,r,new kx.Literal("exo__NonInheritableProperty"));if(i.length>0&&i[0].subject instanceof Lx.IRI)return i[0].subject;let s=t.find(a=>a.value.includes("Instance_class"));if(s){let a=await e.match(void 0,s,void 0);for(let c of a)if(c.object instanceof Lx.IRI&&c.object.value.includes("NonInheritableProperty"))return c.object}return null}propertyKeyToIRI(e){return e.startsWith("exo__")?Nb.Namespace.EXO.term(e.substring(5)).value:e.startsWith("ems__")?Nb.Namespace.EMS.term(e.substring(5)).value:e.startsWith("exocmd__")?Nb.Namespace.EXOCMD.term(e.substring(8)).value:null}};Go.NonInheritablePropertyRegistry=Lb;Go.NonInheritablePropertyRegistry=Lb=a$([(0,o$.injectable)()],Lb)});var $b=S(zo=>{"use strict";var c$=zo&&zo.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s};Object.defineProperty(zo,"__esModule",{value:!0});zo.PropertyCardinalityRegistry=void 0;var l$=le(),Mx=Ae(),jx=De(),Mb=or(),jb=class{static{o(this,"PropertyCardinalityRegistry")}constructor(){this.multiValuedIRIs=new Set,this.initialized=!1}async initialize(e){this.multiValuedIRIs.clear();try{let t=await e.predicates(),r=t.find(c=>c.value.includes("Property_cardinality"));if(!r){this.initialized=!0;return}let i=await this.findMultipleCardinalityIRI(e,t);if(!i){this.initialized=!0;return}let s=await e.match(void 0,r,i);if(s.length===0){this.initialized=!0;return}let a=t.find(c=>c.value.includes("Asset_label"));if(!a){this.initialized=!0;return}for(let c of s){let l=await e.match(c.subject,a,void 0);for(let u of l)if(u.object instanceof jx.Literal){let f=u.object.value,d=this.propertyKeyToIRI(f);d&&this.multiValuedIRIs.add(d)}}}catch{}this.initialized=!0}isMultiValued(e){return this.multiValuedIRIs.has(e)}get size(){return this.multiValuedIRIs.size}get isInitialized(){return this.initialized}async findMultipleCardinalityIRI(e,t){let r=t.find(a=>a.value.includes("Asset_label"));if(!r)return null;let i=await e.match(void 0,r,new jx.Literal("exo__PropertyCardinalityMultiple"));if(i.length>0&&i[0].subject instanceof Mx.IRI)return i[0].subject;let s=t.find(a=>a.value.includes("Instance_class"));if(s){let a=await e.match(void 0,s,void 0);for(let c of a)if(c.object instanceof Mx.IRI&&c.object.value.includes("PropertyCardinalityMultiple"))return c.object}return null}propertyKeyToIRI(e){return e.startsWith("exo__")?Mb.Namespace.EXO.term(e.substring(5)).value:e.startsWith("ems__")?Mb.Namespace.EMS.term(e.substring(5)).value:e.startsWith("exocmd__")?Mb.Namespace.EXOCMD.term(e.substring(8)).value:null}};zo.PropertyCardinalityRegistry=jb;zo.PropertyCardinalityRegistry=jb=c$([(0,l$.injectable)()],jb)});var Bb=S(Sr=>{"use strict";var u$=Sr&&Sr.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},f$=Sr&&Sr.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Sr,"__esModule",{value:!0});Sr.PrototypeChainMaterializer=Sr.MAX_PROTOTYPE_DEPTH=Sr.INFERRED_GRAPH=void 0;Sr.inferredGraphForDepth=Vb;var d$=le(),$x=Kn(),$a=Ae(),h$=kb(),p$=$b();Sr.INFERRED_GRAPH=new $a.IRI("https://exocortex.my/ontology/exo#inferred");var m$="https://exocortex.my/ontology/exo#inferred/";function Vb(n){return new $a.IRI(`${m$}${n}`)}o(Vb,"inferredGraphForDepth");Sr.MAX_PROTOTYPE_DEPTH=10;var Ub=class{static{o(this,"PrototypeChainMaterializer")}constructor(e,t){this.registry=e,this.cardinalityRegistry=t??null}async materialize(e){let r=(await e.predicates()).find(c=>c.value.includes("Asset_prototype"));if(!r)return 0;let i=await e.match(void 0,r,void 0);if(i.length===0)return 0;let s=new Map;for(let c of i)if(c.subject instanceof $a.IRI&&c.object instanceof $a.IRI){let l=c.subject.value,u=c.object.value;l!==u&&s.set(l,c.object)}if(s.size===0)return 0;let a=0;for(let[c]of s){let l=new $a.IRI(c),u=this.resolveChain(c,s);if(u.length===0)continue;let f=await e.match(l,void 0,void 0),d=new Set,h=new Map;for(let p of f)if(d.add(p.predicate.value),this.isMultiValued(p.predicate.value)){let y=p.object instanceof $a.IRI?p.object.value:String(p.object),b=h.get(p.predicate.value);b||(b=new Set,h.set(p.predicate.value,b)),b.add(y)}for(let p=0;p<u.length;p++){let y=u[p],b=p+1,w=new $a.IRI(y),v=await e.match(w,void 0,void 0),T=new Set;if(e.matchInGraph){let C=await e.matchInGraph(w,void 0,void 0,Sr.INFERRED_GRAPH);for(let L of C)T.add(L.predicate.value)}for(let C of v){let L=C.predicate.value;if(this.registry.isNonInheritable(L)||T.has(L))continue;if(d.has(L)&&this.isMultiValued(L)){let ae=C.object instanceof $a.IRI?C.object.value:String(C.object);if(h.get(L)?.has(ae))continue;let B=h.get(L);B||(B=new Set,h.set(L,B)),B.add(ae);let F=new $x.Triple(l,C.predicate,C.object);await e.add(F),e.addToGraph&&(await e.addToGraph(F,Sr.INFERRED_GRAPH),await e.addToGraph(F,Vb(b))),a++;continue}if(d.has(L))continue;let V=new $x.Triple(l,C.predicate,C.object);await e.add(V),e.addToGraph&&(await e.addToGraph(V,Sr.INFERRED_GRAPH),await e.addToGraph(V,Vb(b))),d.add(L),a++}}}return a}isMultiValued(e){return this.cardinalityRegistry?this.cardinalityRegistry.isMultiValued(e):!1}resolveChain(e,t){let r=[],i=new Set;i.add(e);let s=[],a=t.get(e);for(a&&s.push(a.value);s.length>0&&r.length<Sr.MAX_PROTOTYPE_DEPTH;){let c=s.shift();if(c===void 0)break;if(i.has(c))continue;i.add(c),r.push(c);let l=t.get(c);l&&!i.has(l.value)&&s.push(l.value)}return r}};Sr.PrototypeChainMaterializer=Ub;Sr.PrototypeChainMaterializer=Ub=u$([(0,d$.injectable)(),f$("design:paramtypes",[h$.NonInheritablePropertyRegistry,p$.PropertyCardinalityRegistry])],Ub)});var Wb=S(dr=>{"use strict";var g$=dr&&dr.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},y$=dr&&dr.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(dr,"__esModule",{value:!0});dr.SourceAnnotator=dr.DEPTH_VARIABLE=dr.SOURCE_VARIABLE=void 0;var _$=le(),pl=De(),S$=Ae(),sm=Bb();dr.SOURCE_VARIABLE="_source";dr.DEPTH_VARIABLE="_depth";var qb=class{static{o(this,"SourceAnnotator")}constructor(e){this.tripleStore=e}async annotate(e,t,r,i){if(!this.tripleStore.matchInGraph)return e.map(a=>{let c=a.clone();return c.set(dr.SOURCE_VARIABLE,new pl.Literal("own")),c});let s=[];for(let a of e){let c=a.get(t),l=a.get(r),u=a.get(i),f=a.clone();if(!c||!l||!u)f.set(dr.SOURCE_VARIABLE,new pl.Literal("own"));else{let d=await this.determineSource(c,l,u);f.set(dr.SOURCE_VARIABLE,new pl.Literal(d))}s.push(f)}return s}async annotateSingle(e,t,r,i){return(await this.annotate([e],t,r,i))[0]}async determineSource(e,t,r){return this.tripleStore.matchInGraph&&(await this.tripleStore.matchInGraph(e,t,r,sm.INFERRED_GRAPH)).length>0?"inherited":"own"}async getInheritanceDepth(e,t,r){if(!this.tripleStore.matchInGraph)return 0;for(let i=1;i<=sm.MAX_PROTOTYPE_DEPTH;i++){let s=(0,sm.inferredGraphForDepth)(i);if((await this.tripleStore.matchInGraph(e,t,r,s)).length>0)return i}return 0}async annotateBySubject(e,t){if(!this.tripleStore.matchInGraph)return e.map(s=>{let a=s.clone();return a.set(dr.SOURCE_VARIABLE,new pl.Literal("own")),a});let r=[],i=new Map;for(let s of e){let a=s.get(t),c=s.clone();if(!a||!(a instanceof S$.IRI))c.set(dr.SOURCE_VARIABLE,new pl.Literal("own"));else{let l=a.value;if(!i.has(l)){let f=await this.tripleStore.matchInGraph(a,void 0,void 0,sm.INFERRED_GRAPH);i.set(l,f.length>0?"inherited":"own")}let u=i.get(l)??"own";c.set(dr.SOURCE_VARIABLE,new pl.Literal(u))}r.push(c)}return r}};dr.SourceAnnotator=qb;dr.SourceAnnotator=qb=g$([(0,_$.injectable)(),y$("design:paramtypes",[Object])],qb)});var zb=S(Ui=>{"use strict";var b$=Ui&&Ui.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},v$=Ui&&Ui.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},Vx=Ui&&Ui.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Ui,"__esModule",{value:!0});Ui.NoteToRDFConverter=void 0;var Gb=le(),hr=Kn(),Va=Ae(),dn=De(),Ux=Vt(),zt=or(),Bx=wt(),w$=Fb(),E$=Tc(),qx=Ob(),Cn=M0(),T$=new Set(["archived","draft","pinned"]),ml=class{static{o(this,"NoteToRDFConverter")}constructor(e,t=E$.NullLogger){this.vault=e,this.logger=t,this.BODY_WIKILINK_PATTERN=/(?<!!)\[\[([^\]|]+)(?:\|[^\]]+)?\]\]/g,this.pendingExtraTriples=[],this.vocabularyMapper=new w$.RDFVocabularyMapper}async convertNote(e){let t=this.vault.getFrontmatter(e);return t?Cn.Exo003Parser.isExo003Format(t)?this.convertExo003Note(e,t):this.convertLegacyNote(e,t):[]}async convertLegacyNote(e,t){this.pendingExtraTriples=[];let r=[],i=this.notePathToIRI(e.path),s=zt.Namespace.EXO.term("Asset_fileName");r.push(new hr.Triple(i,s,new dn.Literal(e.basename)));for(let[f,d]of Object.entries(t)){let h=T$.has(f)?`exo__Asset_${f}`:f;if(!this.isExocortexProperty(h))continue;let p=this.propertyKeyToIRI(h),y=Array.isArray(d)?d:[d];for(let b of y)if(!(f==="exo__Asset_label"&&typeof b=="string"&&b.trim()===""))if(f==="exo__Instance_class"){let w=this.valueToClassURI(b);r.push(new hr.Triple(i,p,w))}else{let w=await this.valueToRDFObject(b,e,p);for(let v of w)if(r.push(new hr.Triple(i,p,v)),this.vocabularyMapper.hasMappingFor(f)&&v instanceof Va.IRI){let T=this.vocabularyMapper.generateMappedTriple(i,f,v);T&&r.push(T)}}if(f==="exo__Instance_class")for(let b of y){let w=this.valueToClassURI(b);if(w instanceof Va.IRI){let v=zt.Namespace.RDF.term("type");r.push(new hr.Triple(i,v,w))}}if(f==="exo__Asset_label"){let b=zt.Namespace.RDFS.term("label");for(let w of y)typeof w=="string"&&w.length>0&&r.push(new hr.Triple(i,b,new dn.Literal(w)))}}let a="exo__Instance_class"in t||"exo__Asset_uid"in t,c=t.exo__Asset_label,l="exo__Asset_label"in t&&c!==null&&c!==void 0&&!(typeof c=="string"&&c.trim()==="")&&!(Array.isArray(c)&&c.length===0);if(a&&!l){let f=zt.Namespace.RDFS.term("label"),d=zt.Namespace.EXO.term("Asset_label"),h=new dn.Literal(e.basename);r.push(new hr.Triple(i,f,h)),r.push(new hr.Triple(i,d,h))}r.push(...this.pendingExtraTriples),this.pendingExtraTriples=[];let u=await this.convertBodyWikilinks(e,i);return r.push(...u),r}async convertExo003Note(e,t){let r=Cn.Exo003Parser.parse(t);if(!r.success||!r.metadata)return[];let i=r.metadata,s=[];switch(i.metadata){case Cn.Exo003MetadataType.Namespace:break;case Cn.Exo003MetadataType.Anchor:s.push(...this.convertExo003Anchor(e,i));break;case Cn.Exo003MetadataType.BlankNode:s.push(...this.convertExo003BlankNode(e,i));break;case Cn.Exo003MetadataType.Statement:s.push(...this.convertExo003Statement(e,i));break;case Cn.Exo003MetadataType.Body:s.push(...await this.convertExo003Body(e,i));break}return s}convertExo003Anchor(e,t){let r=this.notePathToIRI(e.path),i=new Va.IRI(t.uri);return[new hr.Triple(r,zt.Namespace.OWL.term("sameAs"),i),new hr.Triple(i,zt.Namespace.OWL.term("sameAs"),r)]}convertExo003BlankNode(e,t){let r=this.notePathToIRI(e.path),i=t.uri.replace(/[^a-zA-Z0-9_-]/g,"_");return[new hr.Triple(r,zt.Namespace.OWL.term("sameAs"),new Ux.BlankNode(i))]}convertExo003Statement(e,t){let r=[];try{let i=this.createExo003ReferenceResolver(e),s=Cn.Exo003Parser.toTriple(t,i);r.push(s);let a=this.notePathToIRI(e.path);r.push(new hr.Triple(a,zt.Namespace.RDF.term("value"),s.subject))}catch{}return r}async convertExo003Body(e,t){let r=[];try{let i=await this.vault.read(e),s=this.extractBodyContent(i),a=this.createExo003ReferenceResolver(e),c=a(t.subject),l=a(t.predicate);if(c.type==="literal")throw new Error("Body subject cannot be a literal");if(l.type!=="iri")throw new Error("Body predicate must be an IRI");let u=c.type==="iri"?new Va.IRI(c.value):new Ux.BlankNode(c.value),f=new Va.IRI(l.value),d=Cn.Exo003Parser.toLiteral(t,s.trim());r.push(new hr.Triple(u,f,d));let h=this.notePathToIRI(e.path);r.push(new hr.Triple(h,zt.Namespace.RDF.term("value"),u))}catch{}return r}createExo003ReferenceResolver(e){return t=>{let r=this.extractWikilink(t),i=r||t,s=this.vault.getFirstLinkpathDest(i,e.path);if(s){let a=this.vault.getFrontmatter(s);if(a&&Cn.Exo003Parser.isExo003Format(a)){let c=Cn.Exo003Parser.parse(a);if(c.success&&c.metadata){let l=c.metadata;if(l.metadata===Cn.Exo003MetadataType.Anchor||l.metadata===Cn.Exo003MetadataType.Namespace)return{type:"iri",value:l.uri};if(l.metadata===Cn.Exo003MetadataType.BlankNode)return{type:"blank",value:l.uri.replace(/[^a-zA-Z0-9_-]/g,"_")}}}return{type:"iri",value:this.notePathToIRI(s.path).value}}return!r&&t.includes("://")?{type:"iri",value:t}:{type:"literal",value:t}}}async convertVault(){return(await this.convertVaultWithValidation({strict:!1})).triples}async convertVaultWithValidation(e={}){let t=this.vault.getAllFiles(),r=[],i=[],s=e.strict??!1;for(let a of t)try{let c=this.vault.getFrontmatter(a),l=c?this.validateExocortexAsset(c,a.basename):null;if(l){if(s)throw new Error(`Invariant violation in "${a.path}": ${l.message}`);i.push({path:a.path,reason:`Invariant violation: ${l.message}`}),this.logger.warn(`Skipping file with invariant violation: ${a.path}`,{code:l.code,property:l.property,reason:l.message});continue}let u=await this.convertNote(a);r.push(...u)}catch(c){let l=c instanceof Error?c.message:String(c);if(s)throw new Error(`Invalid IRI for file "${a.path}": ${l}`);i.push({path:a.path,reason:`Invalid IRI: ${l}`}),this.logger.warn(`Skipping file with invalid IRI: ${a.path}`,{reason:l})}return{triples:r,skippedFiles:i,summary:{total:t.length,indexed:t.length-i.length,skipped:i.length}}}static inferLabelFromBasename(e){return zt.Namespace.fromPropertyKey(e)!==null?e:null}validateExocortexAsset(e,t){let r=o(d=>d==null?!0:typeof d=="string"?d.trim()==="":Array.isArray(d)?d.length===0||d.every(r):!1,"isEmpty");if(!("exo__Instance_class"in e||"exo__Asset_uid"in e))return null;let s=["exo__Asset_uid","exo__Asset_isDefinedBy","exo__Instance_class"];for(let d of s){if(!(d in e))return{code:"MISSING_PROPERTY",property:d,message:`Required property "${d}" is missing`};if(r(e[d]))return{code:"EMPTY_PROPERTY",property:d,message:`Required property "${d}" is empty`}}let a=["ems__Effort_status","ems__Effort_parent","ems__Effort_lockedBy","ems__Effort_lockExpires","exo__Asset_updatedAt","ems__Effort_startTimestamp"];for(let d of a)if(d in e&&r(e[d]))return{code:"EMPTY_OPTIONAL_PROPERTY",property:d,message:`Optional property "${d}" is present but empty`};let c=e.exo__Instance_class,l=Array.isArray(c)?c:[c],u=null,f=!1;for(let d of l){if(typeof d!="string")continue;let h=this.removeQuotes(d),y=(this.extractWikilink(h)??h).trim();/^[a-z][a-zA-Z0-9]*__/.test(y)&&/[\s()]/.test(y)?u||(u={candidate:d}):f=!0}return u&&!f?{code:"INVALID_INSTANCE_CLASS_IRI",property:"exo__Instance_class",message:`Invalid Instance_class IRI: "${u.candidate}"`}:null}async validateVault(){let e=this.vault.getAllFiles(),t=[];for(let r of e){let i=(0,qx.vaultPathToIRI)(r.path);Va.IRI.isValidIRI(i)||t.push({path:r.path,reason:`Path "${r.path}" cannot be converted to a valid IRI`})}return t}notePathToIRI(e){return new Va.IRI((0,qx.vaultPathToIRI)(e))}isExocortexProperty(e){return zt.Namespace.fromPropertyKey(e)!==null}propertyKeyToIRI(e){let t=zt.Namespace.fromPropertyKey(e);if(!t)throw new Error(`Invalid property key: ${e}`);return t.namespace.term(t.localName)}emitTypeTripleForEnumInstance(e,t){let r=this.vault.getFrontmatter(t);if(!r)return;let i=r.exo__Instance_class,s=Array.isArray(i)?i[0]:i;if(typeof s!="string")return;let a=this.valueToClassURI(s);a instanceof Va.IRI&&(this.pendingExtraTriples.push(new hr.Triple(e,zt.Namespace.RDF.term("type"),a)),this.pendingExtraTriples.push(new hr.Triple(e,zt.Namespace.EXO.term("Instance_class"),a)))}async valueToRDFObject(e,t,r){if(typeof e=="string"){let i=this.removeQuotes(e),s=this.extractWikilink(i);if(s){let a=this.vault.getFirstLinkpathDest(s,t.path);if(a){let l=this.notePathToIRI(a.path),u=s.includes("|")?s.split("|")[0]:s;if(this.isUUID(u)){let d=new dn.Literal(u),h=this.expandClassValue(a.basename);if(h)return this.emitTypeTripleForEnumInstance(h,a),[h];let p=this.vault.getFrontmatter(a);if(p){let b=p.exo__Asset_label;if(typeof b=="string"){let w=this.expandClassValue(b);if(w)return this.emitTypeTripleForEnumInstance(w,a),[w]}}return r?.value.endsWith("#Asset_prototype")||r?.value.endsWith("/Asset_prototype")?[l,d]:[l]}let f=this.expandClassValue(a.basename);return f?(this.emitTypeTripleForEnumInstance(f,a),[f]):[l]}if(this.isClassReference(s)){let l=this.expandClassValue(s);if(l)return[l]}let c=s.includes("|")?s.split("|")[0]:s;return this.isUUID(c)?[this.notePathToIRI(`${c}.md`)]:[new dn.Literal(i)]}if(this.isClassReference(i)){let a=this.expandClassValue(i);if(a)return[a]}return this.isISO8601DateTime(i)?[new dn.Literal(i,zt.Namespace.XSD.term("dateTime"))]:[new dn.Literal(i)]}return typeof e=="boolean"?[new dn.Literal(e.toString())]:typeof e=="number"?[new dn.Literal(e.toString(),zt.Namespace.XSD.term("decimal"))]:e instanceof Date?[new dn.Literal(e.toISOString(),zt.Namespace.XSD.term("dateTime"))]:[new dn.Literal(String(e))]}isISO8601DateTime(e){return/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{1,3})?(Z|[+-]\d{2}:\d{2})?$/.test(e)}removeQuotes(e){let t=e.trim();return t.startsWith('"')&&t.endsWith('"')||t.startsWith("'")&&t.endsWith("'")?t.substring(1,t.length-1):e}extractWikilink(e){let t=e.match(/^\[\[([^\]]+)\]\]$/);if(!t)return null;let r=t[1];return r.includes("|")?r.split("|")[0]:r}extractWikilinkAlias(e){let t=e.match(/^\[\[([^\]]+)\]\]$/);if(!t)return null;let r=t[1],i=r.indexOf("|");return i>=0?r.substring(i+1).trim():null}valueToClassURI(e){if(typeof e!="string")return new dn.Literal(String(e));let t=this.removeQuotes(e),i=this.extractWikilink(t)||t,s=this.expandClassValue(i);if(s)return s;let a=this.extractWikilinkAlias(t);if(a){let c=this.expandClassValue(a);if(c)return c}if(this.isUUID(i)){let c=this.vault.getFirstLinkpathDest(i,"");if(c){let l=this.expandClassValue(c.basename);if(l)return l;let u=this.vault.getFrontmatter(c);if(u){let f=u.exo__Asset_label;if(typeof f=="string"){let d=this.expandClassValue(f);if(d)return d}}}}return new dn.Literal(t)}isClassReference(e){return/\s/.test(e)?!1:zt.Namespace.fromPropertyKey(e)!==null}isUUID(e){return/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(e)}expandClassValue(e){let t=this.removeQuotes(e),r=zt.Namespace.fromPropertyKey(t);return!r||/[\s()]/.test(r.localName)?null:r.namespace.term(r.localName)}extractBodyContent(e){let t=/^---\r?\n[\s\S]*?\r?\n---\r?\n?/;return e.replace(t,"")}extractBodyWikilinks(e){let t=new Set,r,i=new RegExp(this.BODY_WIKILINK_PATTERN.source,"g");for(;(r=i.exec(e))!==null;)r[1]&&t.add(r[1]);return Array.from(t)}async convertBodyWikilinks(e,t){let r=[];try{let i=await this.vault.read(e),s=this.extractBodyContent(i),a=this.extractBodyWikilinks(s),c=zt.Namespace.EXO.term("Asset_bodyLink");for(let l of a){let u=this.vault.getFirstLinkpathDest(l,e.path);if(u){let f=this.notePathToIRI(u.path);r.push(new hr.Triple(t,c,f))}else if(this.isClassReference(l)){let f=this.expandClassValue(l);f?r.push(new hr.Triple(t,c,f)):r.push(new hr.Triple(t,c,new dn.Literal(l)))}else r.push(new hr.Triple(t,c,new dn.Literal(l)))}}catch{}return r}};Ui.NoteToRDFConverter=ml;ml.SkippedFileInfo=class{constructor(n,e){this.path=n,this.reason=e}};ml.VaultValidationResult=class{constructor(n,e,t){this.triples=n,this.skippedFiles=e,this.summary=t}};ml.VaultValidationOptions=class{constructor(n=!1){this.strict=n}};Ui.NoteToRDFConverter=ml=b$([(0,Gb.injectable)(),Vx(0,(0,Gb.inject)(Bx.DI_TOKENS.IVaultAdapter)),Vx(1,(0,Gb.inject)(Bx.DI_TOKENS.ILogger)),v$("design:paramtypes",[Object,Object])],ml)});var Qb=S(am=>{"use strict";Object.defineProperty(am,"__esModule",{value:!0});am.FilterContainsOptimizer=void 0;var A$=Ae(),x$=/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i,Hb=class{static{o(this,"FilterContainsOptimizer")}constructor(){this.tripleStore=null,this.lastOptimizationHints=[]}setTripleStore(e){this.tripleStore=e}getLastOptimizationHints(){return this.lastOptimizationHints}clearHints(){this.lastOptimizationHints=[]}async optimize(e){return this.clearHints(),this.optimizeRecursive(e)}optimizeSync(e,t){return this.clearHints(),this.optimizeSyncRecursive(e,t)}async optimizeRecursive(e){return e.type==="filter"?this.optimizeFilter(e):e.type==="join"?{type:"join",left:await this.optimizeRecursive(e.left),right:await this.optimizeRecursive(e.right)}:e.type==="leftjoin"?{...e,left:await this.optimizeRecursive(e.left),right:await this.optimizeRecursive(e.right)}:e.type==="union"?{type:"union",left:await this.optimizeRecursive(e.left),right:await this.optimizeRecursive(e.right)}:e.type==="minus"?{...e,left:await this.optimizeRecursive(e.left),right:await this.optimizeRecursive(e.right)}:e.type==="project"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="orderby"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="slice"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="distinct"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="reduced"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="group"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="extend"?{...e,input:await this.optimizeRecursive(e.input)}:e}optimizeSyncRecursive(e,t){return e.type==="filter"?this.optimizeFilterSync(e,t):e.type==="join"?{type:"join",left:this.optimizeSyncRecursive(e.left,t),right:this.optimizeSyncRecursive(e.right,t)}:e.type==="leftjoin"?{...e,left:this.optimizeSyncRecursive(e.left,t),right:this.optimizeSyncRecursive(e.right,t)}:e.type==="union"?{type:"union",left:this.optimizeSyncRecursive(e.left,t),right:this.optimizeSyncRecursive(e.right,t)}:e.type==="minus"?{...e,left:this.optimizeSyncRecursive(e.left,t),right:this.optimizeSyncRecursive(e.right,t)}:e.type==="project"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="orderby"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="slice"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="distinct"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="reduced"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="group"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="extend"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e}async optimizeFilter(e){let t=this.detectContainsUUIDPattern(e.expression);if(!t)return{type:"filter",expression:e.expression,input:await this.optimizeRecursive(e.input)};let r=[];return this.tripleStore&&(r=await this.findSubjectsContainingUUID(t.uuid)),this.rewriteFilter(e,t,r)}optimizeFilterSync(e,t){let r=this.detectContainsUUIDPattern(e.expression);if(!r)return{type:"filter",expression:e.expression,input:this.optimizeSyncRecursive(e.input,t)};let i=t?t.filter(s=>s.includes(r.uuid)):[];return this.rewriteFilter(e,r,i)}rewriteFilter(e,t,r){if(this.lastOptimizationHints.push({type:"uuid-index-lookup",originalPattern:`FILTER(CONTAINS(STR(?${t.variable}), "${t.uuid}"))`,suggestedRewrite:r.length===1?`VALUES ?${t.variable} { <${r[0]}> }`:r.length>1?`VALUES ?${t.variable} { ${r.map(i=>`<${i}>`).join(" ")} }`:"No matching URIs found for UUID",estimatedSpeedup:r.length>0?"O(n) \u2192 O(1)":"N/A",matchedUri:r.length===1?r[0]:void 0}),r.length===0)return{type:"filter",expression:e.expression,input:this.optimizeSyncRecursive(e.input)};if(r.length===1){let i=this.injectSubjectConstraint(e.input,t.variable,r[0]);if(i!==e.input)return i}return this.createValuesJoin(e,t,r)}detectContainsUUIDPattern(e){if(e.type==="function"||e.type==="functionCall"){let t=e;if((typeof t.function=="string"?t.function.toLowerCase():t.function?.value?.toLowerCase()??"")==="contains"&&t.args.length===2)return this.analyzeContainsArgs(t.args[0],t.args[1],e)}if(e.type==="logical"&&e.operator==="&&")for(let t of e.operands){let r=this.detectContainsUUIDPattern(t);if(r)return r}return null}analyzeContainsArgs(e,t,r){let i=null;if(e.type==="function"||e.type==="functionCall"){let s=e;if((typeof s.function=="string"?s.function.toLowerCase():s.function?.value?.toLowerCase()??"")==="str"&&s.args.length===1){let c=s.args[0];c.type==="variable"&&(i=c.name)}}if(!i&&e.type==="variable"&&(i=e.name),!i)return null;if(t.type==="literal"){let c=String(t.value).match(x$);if(c)return{variable:i,uuid:c[0].toLowerCase(),originalExpression:r}}return null}async findSubjectsContainingUUID(e){if(!this.tripleStore)return[];if(this.tripleStore.findSubjectsByUUID)return(await this.tripleStore.findSubjectsByUUID(e)).map(s=>s.value);let t=await this.tripleStore.subjects(),r=[];for(let i of t)i instanceof A$.IRI&&i.value.toLowerCase().includes(e.toLowerCase())&&r.push(i.value);return r}injectSubjectConstraint(e,t,r){if(e.type==="bgp"){let i=e.triples.map(a=>a.subject.type==="variable"&&a.subject.value===t?{...a,subject:{type:"iri",value:r}}:a);if(i.some((a,c)=>a.subject!==e.triples[c].subject))return{type:"bgp",triples:i}}if(e.type==="join"){let i=this.injectSubjectConstraint(e.left,t,r),s=this.injectSubjectConstraint(e.right,t,r);if(i!==e.left||s!==e.right)return{type:"join",left:i,right:s}}if(e.type==="filter"){let i=this.injectSubjectConstraint(e.input,t,r);if(i!==e.input)return{...e,input:i}}return e}createValuesJoin(e,t,r){return{type:"join",left:{type:"values",variables:[t.variable],bindings:r.map(a=>({[t.variable]:{type:"iri",value:a}}))},right:this.optimizeSyncRecursive(e.input)}}analyzeQuery(e){let t=[];return this.analyzeRecursive(e,t),t}analyzeRecursive(e,t){if(e.type==="filter"){let r=this.detectContainsUUIDPattern(e.expression);r&&t.push({type:"uuid-index-lookup",originalPattern:`FILTER(CONTAINS(STR(?${r.variable}), "${r.uuid}"))`,suggestedRewrite:`Use --optimize flag or rewrite as VALUES ?${r.variable} { <uri-containing-uuid> }`,estimatedSpeedup:"O(n) \u2192 O(1) with UUID index lookup"}),this.analyzeRecursive(e.input,t);return}e.type==="join"?(this.analyzeRecursive(e.left,t),this.analyzeRecursive(e.right,t)):e.type==="leftjoin"?(this.analyzeRecursive(e.left,t),this.analyzeRecursive(e.right,t)):e.type==="union"?(this.analyzeRecursive(e.left,t),this.analyzeRecursive(e.right,t)):e.type==="minus"?(this.analyzeRecursive(e.left,t),this.analyzeRecursive(e.right,t)):e.type==="project"?this.analyzeRecursive(e.input,t):e.type==="orderby"?this.analyzeRecursive(e.input,t):e.type==="slice"?this.analyzeRecursive(e.input,t):e.type==="distinct"?this.analyzeRecursive(e.input,t):e.type==="reduced"?this.analyzeRecursive(e.input,t):e.type==="group"?this.analyzeRecursive(e.input,t):e.type==="extend"&&this.analyzeRecursive(e.input,t)}};am.FilterContainsOptimizer=Hb});var Wx=S(om=>{"use strict";Object.defineProperty(om,"__esModule",{value:!0});om.AlgebraOptimizer=void 0;var I$=Qb(),Kb=class{static{o(this,"AlgebraOptimizer")}constructor(){this.stats=new Map,this.tripleStore=null,this.filterContainsOptimizer=new I$.FilterContainsOptimizer}setTripleStore(e){this.tripleStore=e,this.filterContainsOptimizer.setTripleStore(e)}getOptimizationHints(){return this.filterContainsOptimizer.getLastOptimizationHints()}analyzeQuery(e){return this.filterContainsOptimizer.analyzeQuery(e)}optimize(e){let t=e;return t=this.eliminateEmptyBGPInFilterJoin(t),t=this.filterPushDown(t),t=this.joinReordering(t),t}async optimizeAsync(e){let t=e;return t=this.eliminateEmptyBGPInFilterJoin(t),this.tripleStore&&(t=await this.filterContainsOptimizer.optimize(t)),t=this.filterPushDown(t),t=this.joinReordering(t),t}optimizeWithSubjects(e,t){let r=e;return r=this.eliminateEmptyBGPInFilterJoin(r),r=this.filterContainsOptimizer.optimizeSync(r,t),r=this.filterPushDown(r),r=this.joinReordering(r),r}eliminateEmptyBGPInFilterJoin(e){if(e.type==="join"){if(e.left.type==="filter"){let t=e.left;if(t.input.type==="bgp"&&t.input.triples.length===0)return{type:"filter",expression:t.expression,input:this.eliminateEmptyBGPInFilterJoin(e.right)}}if(e.right.type==="filter"){let t=e.right;if(t.input.type==="bgp"&&t.input.triples.length===0)return{type:"filter",expression:t.expression,input:this.eliminateEmptyBGPInFilterJoin(e.left)}}return{type:"join",left:this.eliminateEmptyBGPInFilterJoin(e.left),right:this.eliminateEmptyBGPInFilterJoin(e.right)}}return e.type==="filter"?{...e,input:this.eliminateEmptyBGPInFilterJoin(e.input)}:e.type==="leftjoin"?{...e,left:this.eliminateEmptyBGPInFilterJoin(e.left),right:this.eliminateEmptyBGPInFilterJoin(e.right)}:e.type==="union"?{...e,left:this.eliminateEmptyBGPInFilterJoin(e.left),right:this.eliminateEmptyBGPInFilterJoin(e.right)}:e.type==="minus"?{...e,left:this.eliminateEmptyBGPInFilterJoin(e.left),right:this.eliminateEmptyBGPInFilterJoin(e.right)}:e.type==="project"?{...e,input:this.eliminateEmptyBGPInFilterJoin(e.input)}:e.type==="orderby"?{...e,input:this.eliminateEmptyBGPInFilterJoin(e.input)}:e.type==="slice"?{...e,input:this.eliminateEmptyBGPInFilterJoin(e.input)}:e.type==="distinct"?{...e,input:this.eliminateEmptyBGPInFilterJoin(e.input)}:e}filterPushDown(e){return e.type==="filter"?this.pushDownFilter(e):e.type==="join"?{type:"join",left:this.filterPushDown(e.left),right:this.filterPushDown(e.right)}:e.type==="leftjoin"?{...e,left:this.filterPushDown(e.left),right:this.filterPushDown(e.right)}:e.type==="union"?{type:"union",left:this.filterPushDown(e.left),right:this.filterPushDown(e.right)}:e.type==="minus"?{...e,left:this.filterPushDown(e.left),right:this.filterPushDown(e.right)}:e.type==="project"?{...e,input:this.filterPushDown(e.input)}:e.type==="orderby"?{...e,input:this.filterPushDown(e.input)}:e.type==="slice"?{...e,input:this.filterPushDown(e.input)}:e.type==="distinct"?{...e,input:this.filterPushDown(e.input)}:e}pushDownFilter(e){let t=e.input;if(t.type==="join"){let r=this.getFilterVariables(e.expression),i=this.getOperationVariables(t.left),s=this.getOperationVariables(t.right),a=r.every(l=>i.has(l)),c=r.every(l=>s.has(l));return a&&!c?{type:"join",left:{type:"filter",expression:e.expression,input:this.filterPushDown(t.left)},right:this.filterPushDown(t.right)}:c&&!a?{type:"join",left:this.filterPushDown(t.left),right:{type:"filter",expression:e.expression,input:this.filterPushDown(t.right)}}:{type:"filter",expression:e.expression,input:{type:"join",left:this.filterPushDown(t.left),right:this.filterPushDown(t.right)}}}return t.type==="union"?{type:"union",left:{type:"filter",expression:e.expression,input:this.filterPushDown(t.left)},right:{type:"filter",expression:e.expression,input:this.filterPushDown(t.right)}}:{type:"filter",expression:e.expression,input:this.filterPushDown(t)}}getFilterVariables(e){let t=[];if(e.type==="variable")t.push(e.name);else if(e.type==="comparison")t.push(...this.getFilterVariables(e.left)),t.push(...this.getFilterVariables(e.right));else if(e.type==="logical")for(let r of e.operands)t.push(...this.getFilterVariables(r));else if(e.type==="function")for(let r of e.args)t.push(...this.getFilterVariables(r));return Array.from(new Set(t))}getOperationVariables(e){let t=new Set;if(e.type==="bgp")for(let r of e.triples)r.subject.type==="variable"&&t.add(r.subject.value),r.predicate.type==="variable"&&t.add(r.predicate.value),r.object.type==="variable"&&t.add(r.object.value);else if(e.type==="join"){let r=this.getOperationVariables(e.left),i=this.getOperationVariables(e.right);return new Set([...r,...i])}else{if(e.type==="filter")return this.getOperationVariables(e.input);if(e.type==="leftjoin"){let r=this.getOperationVariables(e.left),i=this.getOperationVariables(e.right);return new Set([...r,...i])}else if(e.type==="union"){let r=this.getOperationVariables(e.left),i=this.getOperationVariables(e.right);return new Set([...r,...i])}else{if(e.type==="minus")return this.getOperationVariables(e.left);if(e.type==="project")return new Set(e.variables)}}return t}joinReordering(e){return e.type==="join"?this.reorderJoin(e):e.type==="filter"?{...e,input:this.joinReordering(e.input)}:e.type==="leftjoin"?{...e,left:this.joinReordering(e.left),right:this.joinReordering(e.right)}:e.type==="union"?{...e,left:this.joinReordering(e.left),right:this.joinReordering(e.right)}:e.type==="minus"?{...e,left:this.joinReordering(e.left),right:this.joinReordering(e.right)}:e.type==="project"?{...e,input:this.joinReordering(e.input)}:e.type==="orderby"?{...e,input:this.joinReordering(e.input)}:e.type==="slice"?{...e,input:this.joinReordering(e.input)}:e.type==="distinct"?{...e,input:this.joinReordering(e.input)}:e}reorderJoin(e){let t=this.isConstrained(e.left),r=this.isConstrained(e.right);if(r&&!t)return{type:"join",left:this.joinReordering(e.right),right:this.joinReordering(e.left)};if(t&&!r)return{type:"join",left:this.joinReordering(e.left),right:this.joinReordering(e.right)};let i=this.estimateCost(e.left);return this.estimateCost(e.right)<i?{type:"join",left:this.joinReordering(e.right),right:this.joinReordering(e.left)}:{type:"join",left:this.joinReordering(e.left),right:this.joinReordering(e.right)}}isConstrained(e){return e.type==="values"?!0:e.type==="bgp"?e.triples.some(t=>t.object.type!=="variable"||t.subject.type!=="variable"):e.type==="filter"?this.isConstrained(e.input):e.type==="join"?this.isConstrained(e.left)||this.isConstrained(e.right):e.type==="union"?this.isConstrained(e.left)&&this.isConstrained(e.right):!1}estimateCost(e){if(e.type==="bgp"){let t=0;for(let r of e.triples){let i=10;r.subject.type==="variable"&&(i*=10),r.predicate.type==="variable"&&(i*=20),r.object.type==="variable"&&(i*=5),t+=i}return t}if(e.type==="filter")return this.estimateCost(e.input)*.3;if(e.type==="join"){let t=this.estimateCost(e.left),r=this.estimateCost(e.right);return e.left.type==="values"||e.right.type==="values"?Math.min(t,r)*2:t*r}if(e.type==="leftjoin")return this.estimateCost(e.left)+this.estimateCost(e.right)*.5;if(e.type==="union")return this.estimateCost(e.left)+this.estimateCost(e.right);if(e.type==="values"){let t=e.bindings;return Array.isArray(t)?t.length*5:10}return e.type==="minus"?this.estimateCost(e.left)+this.estimateCost(e.right)*.3:100}setStatistics(e,t){this.stats.set(e,t)}getStatistics(e){return this.stats.get(e)}};om.AlgebraOptimizer=Kb});var Gx=S(cm=>{"use strict";Object.defineProperty(cm,"__esModule",{value:!0});cm.AlgebraSerializer=void 0;var Yb=class{static{o(this,"AlgebraSerializer")}toString(e,t=0){let r=" ".repeat(t);switch(e.type){case"bgp":return`${r}BGP [
377
+ `),t}};tm.RDFSerializer=Rb});var Ob=S(hl=>{"use strict";Object.defineProperty(hl,"__esModule",{value:!0});hl.OBSIDIAN_VAULT_SCHEME=void 0;hl.vaultPathToIRI=i$;hl.OBSIDIAN_VAULT_SCHEME="obsidian://vault/";function i$(n){let e=n.startsWith("./")?n.slice(2):n;return`${hl.OBSIDIAN_VAULT_SCHEME}${encodeURI(e)}`}o(i$,"vaultPathToIRI")});var Fb=S(rm=>{"use strict";Object.defineProperty(rm,"__esModule",{value:!0});rm.RDFVocabularyMapper=void 0;var Zt=Kn(),Dx=Ae(),K=or(),Pb=class{static{o(this,"RDFVocabularyMapper")}constructor(){this.propertyMappings=new Map([["exo__Instance_class",K.Namespace.RDF.term("type")],["exo__Asset_isDefinedBy",K.Namespace.RDFS.term("isDefinedBy")],["exo__Class_superClass",K.Namespace.RDFS.term("subClassOf")],["exo__Property_range",K.Namespace.RDFS.term("range")],["exo__Property_domain",K.Namespace.RDFS.term("domain")],["exo__Property_superProperty",K.Namespace.RDFS.term("subPropertyOf")]])}generateClassHierarchyTriples(){let e=[];return e.push(new Zt.Triple(K.Namespace.EXO.term("Asset"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.RDFS.term("Resource"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Class"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.RDFS.term("Class"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Property"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.RDF.term("Property"))),e.push(new Zt.Triple(K.Namespace.EMS.term("Task"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EMS.term("Project"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EMS.term("Area"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EMS.term("Workflow"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EMS.term("WorkflowState"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EMS.term("WorkflowTransition"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EXOCMD.term("Command"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EXOCMD.term("Precondition"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EXOCMD.term("Grounding"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e.push(new Zt.Triple(K.Namespace.EXOCMD.term("CommandBinding"),K.Namespace.RDFS.term("subClassOf"),K.Namespace.EXO.term("Asset"))),e}generatePropertyHierarchyTriples(){let e=[];return e.push(new Zt.Triple(K.Namespace.EXO.term("Instance_class"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDF.term("type"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Asset_isDefinedBy"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDFS.term("isDefinedBy"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Class_superClass"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDFS.term("subClassOf"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Property_range"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDFS.term("range"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Property_domain"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDFS.term("domain"))),e.push(new Zt.Triple(K.Namespace.EXO.term("Property_superProperty"),K.Namespace.RDFS.term("subPropertyOf"),K.Namespace.RDFS.term("subPropertyOf"))),e}generateMappedTriple(e,t,r){let i=this.propertyMappings.get(t);if(!i)return null;let s;if(r instanceof Dx.IRI)s=r;else{let a=r.match(/^(ems|exo|exocmd)__(.+)$/);if(a){let[,c,l]=a;s=(c==="ems"?K.Namespace.EMS:c==="exocmd"?K.Namespace.EXOCMD:K.Namespace.EXO).term(l)}else s=new Dx.IRI(r)}return new Zt.Triple(e,i,s)}hasMappingFor(e){return this.propertyMappings.has(e)}};rm.RDFVocabularyMapper=Pb});var Nx=S(im=>{"use strict";Object.defineProperty(im,"__esModule",{value:!0});im.RDFSInferenceEngine=void 0;var s$=Kn(),nm=Ae(),Db=class{static{o(this,"RDFSInferenceEngine")}async materialize(e){let t=await e.predicates(),r=t.find(d=>d.value.includes("Class_superClass")),i=t.find(d=>d.value.includes("Instance_class"));if(!r||!i)return 0;let s=await this.buildDirectParentMap(e,r);if(s.size===0)return 0;let a=this.computeAllAncestors(s),c=await e.count(),l=await e.match(void 0,i),u=[];for(let d of l)if(d.object instanceof nm.IRI){let h=a.get(d.object.value);if(h)for(let p of h)u.push(new s$.Triple(d.subject,i,new nm.IRI(p)))}return u.length>0&&await e.addAll(u),await e.count()-c}async buildDirectParentMap(e,t){let r=await e.match(void 0,t),i=new Map;for(let s of r)if(s.subject instanceof nm.IRI&&s.object instanceof nm.IRI){let a=s.subject.value,c=s.object.value;i.has(a)||i.set(a,new Set),i.get(a).add(c)}return i}computeAllAncestors(e){let t=new Map;for(let r of e.keys())t.has(r)||t.set(r,this.computeAncestorsBFS(r,e));return t}computeAncestorsBFS(e,t){let r=new Set,i=new Set,s=[],a=t.get(e);if(a)for(let c of a)s.push(c);for(;s.length>0;){let c=s.shift();if(i.has(c))continue;i.add(c),r.add(c);let l=t.get(c);if(l)for(let u of l)i.has(u)||s.push(u)}return r}};im.RDFSInferenceEngine=Db});var kb=S(Go=>{"use strict";var a$=Go&&Go.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s};Object.defineProperty(Go,"__esModule",{value:!0});Go.NonInheritablePropertyRegistry=void 0;var o$=le(),Lx=Ae(),kx=De(),Nb=or(),Lb=class{static{o(this,"NonInheritablePropertyRegistry")}constructor(){this.nonInheritableIRIs=new Set,this.initialized=!1}async initialize(e){this.nonInheritableIRIs.clear();try{let t=await e.predicates(),r=t.find(c=>c.value.includes("Instance_class"));if(!r){this.initialized=!0;return}let i=await this.findNonInheritableClassIRI(e,t);if(!i){this.initialized=!0;return}let s=await e.match(void 0,r,i);if(s.length===0){this.initialized=!0;return}let a=t.find(c=>c.value.includes("Asset_label"));if(!a){this.initialized=!0;return}for(let c of s){let l=await e.match(c.subject,a,void 0);for(let u of l)if(u.object instanceof kx.Literal){let f=u.object.value,d=this.propertyKeyToIRI(f);d&&this.nonInheritableIRIs.add(d)}}}catch{}this.initialized=!0}isNonInheritable(e){return this.nonInheritableIRIs.has(e)}get size(){return this.nonInheritableIRIs.size}get isInitialized(){return this.initialized}async findNonInheritableClassIRI(e,t){let r=t.find(a=>a.value.includes("Asset_label"));if(!r)return null;let i=await e.match(void 0,r,new kx.Literal("exo__NonInheritableProperty"));if(i.length>0&&i[0].subject instanceof Lx.IRI)return i[0].subject;let s=t.find(a=>a.value.includes("Instance_class"));if(s){let a=await e.match(void 0,s,void 0);for(let c of a)if(c.object instanceof Lx.IRI&&c.object.value.includes("NonInheritableProperty"))return c.object}return null}propertyKeyToIRI(e){return e.startsWith("exo__")?Nb.Namespace.EXO.term(e.substring(5)).value:e.startsWith("ems__")?Nb.Namespace.EMS.term(e.substring(5)).value:e.startsWith("exocmd__")?Nb.Namespace.EXOCMD.term(e.substring(8)).value:null}};Go.NonInheritablePropertyRegistry=Lb;Go.NonInheritablePropertyRegistry=Lb=a$([(0,o$.injectable)()],Lb)});var $b=S(zo=>{"use strict";var c$=zo&&zo.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s};Object.defineProperty(zo,"__esModule",{value:!0});zo.PropertyCardinalityRegistry=void 0;var l$=le(),Mx=Ae(),jx=De(),Mb=or(),jb=class{static{o(this,"PropertyCardinalityRegistry")}constructor(){this.multiValuedIRIs=new Set,this.initialized=!1}async initialize(e){this.multiValuedIRIs.clear();try{let t=await e.predicates(),r=t.find(c=>c.value.includes("Property_cardinality"));if(!r){this.initialized=!0;return}let i=await this.findMultipleCardinalityIRI(e,t);if(!i){this.initialized=!0;return}let s=await e.match(void 0,r,i);if(s.length===0){this.initialized=!0;return}let a=t.find(c=>c.value.includes("Asset_label"));if(!a){this.initialized=!0;return}for(let c of s){let l=await e.match(c.subject,a,void 0);for(let u of l)if(u.object instanceof jx.Literal){let f=u.object.value,d=this.propertyKeyToIRI(f);d&&this.multiValuedIRIs.add(d)}}}catch{}this.initialized=!0}isMultiValued(e){return this.multiValuedIRIs.has(e)}get size(){return this.multiValuedIRIs.size}get isInitialized(){return this.initialized}async findMultipleCardinalityIRI(e,t){let r=t.find(a=>a.value.includes("Asset_label"));if(!r)return null;let i=await e.match(void 0,r,new jx.Literal("exo__PropertyCardinalityMultiple"));if(i.length>0&&i[0].subject instanceof Mx.IRI)return i[0].subject;let s=t.find(a=>a.value.includes("Instance_class"));if(s){let a=await e.match(void 0,s,void 0);for(let c of a)if(c.object instanceof Mx.IRI&&c.object.value.includes("PropertyCardinalityMultiple"))return c.object}return null}propertyKeyToIRI(e){return e.startsWith("exo__")?Mb.Namespace.EXO.term(e.substring(5)).value:e.startsWith("ems__")?Mb.Namespace.EMS.term(e.substring(5)).value:e.startsWith("exocmd__")?Mb.Namespace.EXOCMD.term(e.substring(8)).value:null}};zo.PropertyCardinalityRegistry=jb;zo.PropertyCardinalityRegistry=jb=c$([(0,l$.injectable)()],jb)});var Bb=S(Sr=>{"use strict";var u$=Sr&&Sr.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},f$=Sr&&Sr.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(Sr,"__esModule",{value:!0});Sr.PrototypeChainMaterializer=Sr.MAX_PROTOTYPE_DEPTH=Sr.INFERRED_GRAPH=void 0;Sr.inferredGraphForDepth=Vb;var d$=le(),$x=Kn(),Va=Ae(),h$=kb(),p$=$b();Sr.INFERRED_GRAPH=new Va.IRI("https://exocortex.my/ontology/exo#inferred");var m$="https://exocortex.my/ontology/exo#inferred/";function Vb(n){return new Va.IRI(`${m$}${n}`)}o(Vb,"inferredGraphForDepth");Sr.MAX_PROTOTYPE_DEPTH=10;var Ub=class{static{o(this,"PrototypeChainMaterializer")}constructor(e,t){this.registry=e,this.cardinalityRegistry=t??null}async materialize(e){let r=(await e.predicates()).find(c=>c.value.includes("Asset_prototype"));if(!r)return 0;let i=await e.match(void 0,r,void 0);if(i.length===0)return 0;let s=new Map;for(let c of i)if(c.subject instanceof Va.IRI&&c.object instanceof Va.IRI){let l=c.subject.value,u=c.object.value;l!==u&&s.set(l,c.object)}if(s.size===0)return 0;let a=0;for(let[c]of s){let l=new Va.IRI(c),u=this.resolveChain(c,s);if(u.length===0)continue;let f=await e.match(l,void 0,void 0),d=new Set,h=new Map;for(let p of f)if(d.add(p.predicate.value),this.isMultiValued(p.predicate.value)){let y=p.object instanceof Va.IRI?p.object.value:String(p.object),b=h.get(p.predicate.value);b||(b=new Set,h.set(p.predicate.value,b)),b.add(y)}for(let p=0;p<u.length;p++){let y=u[p],b=p+1,w=new Va.IRI(y),v=await e.match(w,void 0,void 0),T=new Set;if(e.matchInGraph){let C=await e.matchInGraph(w,void 0,void 0,Sr.INFERRED_GRAPH);for(let L of C)T.add(L.predicate.value)}for(let C of v){let L=C.predicate.value;if(this.registry.isNonInheritable(L)||T.has(L))continue;if(d.has(L)&&this.isMultiValued(L)){let ae=C.object instanceof Va.IRI?C.object.value:String(C.object);if(h.get(L)?.has(ae))continue;let B=h.get(L);B||(B=new Set,h.set(L,B)),B.add(ae);let F=new $x.Triple(l,C.predicate,C.object);await e.add(F),e.addToGraph&&(await e.addToGraph(F,Sr.INFERRED_GRAPH),await e.addToGraph(F,Vb(b))),a++;continue}if(d.has(L))continue;let V=new $x.Triple(l,C.predicate,C.object);await e.add(V),e.addToGraph&&(await e.addToGraph(V,Sr.INFERRED_GRAPH),await e.addToGraph(V,Vb(b))),d.add(L),a++}}}return a}isMultiValued(e){return this.cardinalityRegistry?this.cardinalityRegistry.isMultiValued(e):!1}resolveChain(e,t){let r=[],i=new Set;i.add(e);let s=[],a=t.get(e);for(a&&s.push(a.value);s.length>0&&r.length<Sr.MAX_PROTOTYPE_DEPTH;){let c=s.shift();if(c===void 0)break;if(i.has(c))continue;i.add(c),r.push(c);let l=t.get(c);l&&!i.has(l.value)&&s.push(l.value)}return r}};Sr.PrototypeChainMaterializer=Ub;Sr.PrototypeChainMaterializer=Ub=u$([(0,d$.injectable)(),f$("design:paramtypes",[h$.NonInheritablePropertyRegistry,p$.PropertyCardinalityRegistry])],Ub)});var Wb=S(dr=>{"use strict";var g$=dr&&dr.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},y$=dr&&dr.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(dr,"__esModule",{value:!0});dr.SourceAnnotator=dr.DEPTH_VARIABLE=dr.SOURCE_VARIABLE=void 0;var _$=le(),pl=De(),S$=Ae(),sm=Bb();dr.SOURCE_VARIABLE="_source";dr.DEPTH_VARIABLE="_depth";var qb=class{static{o(this,"SourceAnnotator")}constructor(e){this.tripleStore=e}async annotate(e,t,r,i){if(!this.tripleStore.matchInGraph)return e.map(a=>{let c=a.clone();return c.set(dr.SOURCE_VARIABLE,new pl.Literal("own")),c});let s=[];for(let a of e){let c=a.get(t),l=a.get(r),u=a.get(i),f=a.clone();if(!c||!l||!u)f.set(dr.SOURCE_VARIABLE,new pl.Literal("own"));else{let d=await this.determineSource(c,l,u);f.set(dr.SOURCE_VARIABLE,new pl.Literal(d))}s.push(f)}return s}async annotateSingle(e,t,r,i){return(await this.annotate([e],t,r,i))[0]}async determineSource(e,t,r){return this.tripleStore.matchInGraph&&(await this.tripleStore.matchInGraph(e,t,r,sm.INFERRED_GRAPH)).length>0?"inherited":"own"}async getInheritanceDepth(e,t,r){if(!this.tripleStore.matchInGraph)return 0;for(let i=1;i<=sm.MAX_PROTOTYPE_DEPTH;i++){let s=(0,sm.inferredGraphForDepth)(i);if((await this.tripleStore.matchInGraph(e,t,r,s)).length>0)return i}return 0}async annotateBySubject(e,t){if(!this.tripleStore.matchInGraph)return e.map(s=>{let a=s.clone();return a.set(dr.SOURCE_VARIABLE,new pl.Literal("own")),a});let r=[],i=new Map;for(let s of e){let a=s.get(t),c=s.clone();if(!a||!(a instanceof S$.IRI))c.set(dr.SOURCE_VARIABLE,new pl.Literal("own"));else{let l=a.value;if(!i.has(l)){let f=await this.tripleStore.matchInGraph(a,void 0,void 0,sm.INFERRED_GRAPH);i.set(l,f.length>0?"inherited":"own")}let u=i.get(l)??"own";c.set(dr.SOURCE_VARIABLE,new pl.Literal(u))}r.push(c)}return r}};dr.SourceAnnotator=qb;dr.SourceAnnotator=qb=g$([(0,_$.injectable)(),y$("design:paramtypes",[Object])],qb)});var zb=S(Ui=>{"use strict";var b$=Ui&&Ui.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},v$=Ui&&Ui.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)},Vx=Ui&&Ui.__param||function(n,e){return function(t,r){e(t,r,n)}};Object.defineProperty(Ui,"__esModule",{value:!0});Ui.NoteToRDFConverter=void 0;var Gb=le(),hr=Kn(),Ua=Ae(),dn=De(),Ux=Vt(),zt=or(),Bx=wt(),w$=Fb(),E$=Tc(),qx=Ob(),Cn=M0(),T$=new Set(["archived","draft","pinned"]),ml=class{static{o(this,"NoteToRDFConverter")}constructor(e,t=E$.NullLogger){this.vault=e,this.logger=t,this.BODY_WIKILINK_PATTERN=/(?<!!)\[\[([^\]|]+)(?:\|[^\]]+)?\]\]/g,this.pendingExtraTriples=[],this.vocabularyMapper=new w$.RDFVocabularyMapper}async convertNote(e){let t=this.vault.getFrontmatter(e);return t?Cn.Exo003Parser.isExo003Format(t)?this.convertExo003Note(e,t):this.convertLegacyNote(e,t):[]}async convertLegacyNote(e,t){this.pendingExtraTriples=[];let r=[],i=this.notePathToIRI(e.path),s=zt.Namespace.EXO.term("Asset_fileName");r.push(new hr.Triple(i,s,new dn.Literal(e.basename)));for(let[f,d]of Object.entries(t)){let h=T$.has(f)?`exo__Asset_${f}`:f;if(!this.isExocortexProperty(h))continue;let p=this.propertyKeyToIRI(h),y=Array.isArray(d)?d:[d];for(let b of y)if(!(f==="exo__Asset_label"&&typeof b=="string"&&b.trim()===""))if(f==="exo__Instance_class"){let w=this.valueToClassURI(b);r.push(new hr.Triple(i,p,w))}else{let w=await this.valueToRDFObject(b,e,p);for(let v of w)if(r.push(new hr.Triple(i,p,v)),this.vocabularyMapper.hasMappingFor(f)&&v instanceof Ua.IRI){let T=this.vocabularyMapper.generateMappedTriple(i,f,v);T&&r.push(T)}}if(f==="exo__Instance_class")for(let b of y){let w=this.valueToClassURI(b);if(w instanceof Ua.IRI){let v=zt.Namespace.RDF.term("type");r.push(new hr.Triple(i,v,w))}}if(f==="exo__Asset_label"){let b=zt.Namespace.RDFS.term("label");for(let w of y)typeof w=="string"&&w.length>0&&r.push(new hr.Triple(i,b,new dn.Literal(w)))}}let a="exo__Instance_class"in t||"exo__Asset_uid"in t,c=t.exo__Asset_label,l="exo__Asset_label"in t&&c!==null&&c!==void 0&&!(typeof c=="string"&&c.trim()==="")&&!(Array.isArray(c)&&c.length===0);if(a&&!l){let f=zt.Namespace.RDFS.term("label"),d=zt.Namespace.EXO.term("Asset_label"),h=new dn.Literal(e.basename);r.push(new hr.Triple(i,f,h)),r.push(new hr.Triple(i,d,h))}r.push(...this.pendingExtraTriples),this.pendingExtraTriples=[];let u=await this.convertBodyWikilinks(e,i);return r.push(...u),r}async convertExo003Note(e,t){let r=Cn.Exo003Parser.parse(t);if(!r.success||!r.metadata)return[];let i=r.metadata,s=[];switch(i.metadata){case Cn.Exo003MetadataType.Namespace:break;case Cn.Exo003MetadataType.Anchor:s.push(...this.convertExo003Anchor(e,i));break;case Cn.Exo003MetadataType.BlankNode:s.push(...this.convertExo003BlankNode(e,i));break;case Cn.Exo003MetadataType.Statement:s.push(...this.convertExo003Statement(e,i));break;case Cn.Exo003MetadataType.Body:s.push(...await this.convertExo003Body(e,i));break}return s}convertExo003Anchor(e,t){let r=this.notePathToIRI(e.path),i=new Ua.IRI(t.uri);return[new hr.Triple(r,zt.Namespace.OWL.term("sameAs"),i),new hr.Triple(i,zt.Namespace.OWL.term("sameAs"),r)]}convertExo003BlankNode(e,t){let r=this.notePathToIRI(e.path),i=t.uri.replace(/[^a-zA-Z0-9_-]/g,"_");return[new hr.Triple(r,zt.Namespace.OWL.term("sameAs"),new Ux.BlankNode(i))]}convertExo003Statement(e,t){let r=[];try{let i=this.createExo003ReferenceResolver(e),s=Cn.Exo003Parser.toTriple(t,i);r.push(s);let a=this.notePathToIRI(e.path);r.push(new hr.Triple(a,zt.Namespace.RDF.term("value"),s.subject))}catch{}return r}async convertExo003Body(e,t){let r=[];try{let i=await this.vault.read(e),s=this.extractBodyContent(i),a=this.createExo003ReferenceResolver(e),c=a(t.subject),l=a(t.predicate);if(c.type==="literal")throw new Error("Body subject cannot be a literal");if(l.type!=="iri")throw new Error("Body predicate must be an IRI");let u=c.type==="iri"?new Ua.IRI(c.value):new Ux.BlankNode(c.value),f=new Ua.IRI(l.value),d=Cn.Exo003Parser.toLiteral(t,s.trim());r.push(new hr.Triple(u,f,d));let h=this.notePathToIRI(e.path);r.push(new hr.Triple(h,zt.Namespace.RDF.term("value"),u))}catch{}return r}createExo003ReferenceResolver(e){return t=>{let r=this.extractWikilink(t),i=r||t,s=this.vault.getFirstLinkpathDest(i,e.path);if(s){let a=this.vault.getFrontmatter(s);if(a&&Cn.Exo003Parser.isExo003Format(a)){let c=Cn.Exo003Parser.parse(a);if(c.success&&c.metadata){let l=c.metadata;if(l.metadata===Cn.Exo003MetadataType.Anchor||l.metadata===Cn.Exo003MetadataType.Namespace)return{type:"iri",value:l.uri};if(l.metadata===Cn.Exo003MetadataType.BlankNode)return{type:"blank",value:l.uri.replace(/[^a-zA-Z0-9_-]/g,"_")}}}return{type:"iri",value:this.notePathToIRI(s.path).value}}return!r&&t.includes("://")?{type:"iri",value:t}:{type:"literal",value:t}}}async convertVault(){return(await this.convertVaultWithValidation({strict:!1})).triples}async convertVaultWithValidation(e={}){let t=this.vault.getAllFiles(),r=[],i=[],s=e.strict??!1;for(let a of t)try{let c=this.vault.getFrontmatter(a),l=c?this.validateExocortexAsset(c,a.basename):null;if(l){if(s)throw new Error(`Invariant violation in "${a.path}": ${l.message}`);i.push({path:a.path,reason:`Invariant violation: ${l.message}`}),this.logger.warn(`Skipping file with invariant violation: ${a.path}`,{code:l.code,property:l.property,reason:l.message});continue}let u=await this.convertNote(a);r.push(...u)}catch(c){let l=c instanceof Error?c.message:String(c);if(s)throw new Error(`Invalid IRI for file "${a.path}": ${l}`);i.push({path:a.path,reason:`Invalid IRI: ${l}`}),this.logger.warn(`Skipping file with invalid IRI: ${a.path}`,{reason:l})}return{triples:r,skippedFiles:i,summary:{total:t.length,indexed:t.length-i.length,skipped:i.length}}}static inferLabelFromBasename(e){return zt.Namespace.fromPropertyKey(e)!==null?e:null}validateExocortexAsset(e,t){let r=o(d=>d==null?!0:typeof d=="string"?d.trim()==="":Array.isArray(d)?d.length===0||d.every(r):!1,"isEmpty");if(!("exo__Instance_class"in e||"exo__Asset_uid"in e))return null;let s=["exo__Asset_uid","exo__Asset_isDefinedBy","exo__Instance_class"];for(let d of s){if(!(d in e))return{code:"MISSING_PROPERTY",property:d,message:`Required property "${d}" is missing`};if(r(e[d]))return{code:"EMPTY_PROPERTY",property:d,message:`Required property "${d}" is empty`}}let a=["ems__Effort_status","ems__Effort_parent","ems__Effort_lockedBy","ems__Effort_lockExpires","exo__Asset_updatedAt","ems__Effort_startTimestamp"];for(let d of a)if(d in e&&r(e[d]))return{code:"EMPTY_OPTIONAL_PROPERTY",property:d,message:`Optional property "${d}" is present but empty`};let c=e.exo__Instance_class,l=Array.isArray(c)?c:[c],u=null,f=!1;for(let d of l){if(typeof d!="string")continue;let h=this.removeQuotes(d),y=(this.extractWikilink(h)??h).trim();/^[a-z][a-zA-Z0-9]*__/.test(y)&&/[\s()]/.test(y)?u||(u={candidate:d}):f=!0}return u&&!f?{code:"INVALID_INSTANCE_CLASS_IRI",property:"exo__Instance_class",message:`Invalid Instance_class IRI: "${u.candidate}"`}:null}async validateVault(){let e=this.vault.getAllFiles(),t=[];for(let r of e){let i=(0,qx.vaultPathToIRI)(r.path);Ua.IRI.isValidIRI(i)||t.push({path:r.path,reason:`Path "${r.path}" cannot be converted to a valid IRI`})}return t}notePathToIRI(e){return new Ua.IRI((0,qx.vaultPathToIRI)(e))}isExocortexProperty(e){return zt.Namespace.fromPropertyKey(e)!==null}propertyKeyToIRI(e){let t=zt.Namespace.fromPropertyKey(e);if(!t)throw new Error(`Invalid property key: ${e}`);return t.namespace.term(t.localName)}emitTypeTripleForEnumInstance(e,t){let r=this.vault.getFrontmatter(t);if(!r)return;let i=r.exo__Instance_class,s=Array.isArray(i)?i[0]:i;if(typeof s!="string")return;let a=this.valueToClassURI(s);a instanceof Ua.IRI&&(this.pendingExtraTriples.push(new hr.Triple(e,zt.Namespace.RDF.term("type"),a)),this.pendingExtraTriples.push(new hr.Triple(e,zt.Namespace.EXO.term("Instance_class"),a)))}async valueToRDFObject(e,t,r){if(typeof e=="string"){let i=this.removeQuotes(e),s=this.extractWikilink(i);if(s){let a=this.vault.getFirstLinkpathDest(s,t.path);if(a){let l=this.notePathToIRI(a.path),u=s.includes("|")?s.split("|")[0]:s;if(this.isUUID(u)){let d=new dn.Literal(u),h=this.expandClassValue(a.basename);if(h)return this.emitTypeTripleForEnumInstance(h,a),[h];let p=this.vault.getFrontmatter(a);if(p){let b=p.exo__Asset_label;if(typeof b=="string"){let w=this.expandClassValue(b);if(w)return this.emitTypeTripleForEnumInstance(w,a),[w]}}return r?.value.endsWith("#Asset_prototype")||r?.value.endsWith("/Asset_prototype")?[l,d]:[l]}let f=this.expandClassValue(a.basename);return f?(this.emitTypeTripleForEnumInstance(f,a),[f]):[l]}if(this.isClassReference(s)){let l=this.expandClassValue(s);if(l)return[l]}let c=s.includes("|")?s.split("|")[0]:s;return this.isUUID(c)?[this.notePathToIRI(`${c}.md`)]:[new dn.Literal(i)]}if(this.isClassReference(i)){let a=this.expandClassValue(i);if(a)return[a]}return this.isISO8601DateTime(i)?[new dn.Literal(i,zt.Namespace.XSD.term("dateTime"))]:[new dn.Literal(i)]}return typeof e=="boolean"?[new dn.Literal(e.toString())]:typeof e=="number"?[new dn.Literal(e.toString(),zt.Namespace.XSD.term("decimal"))]:e instanceof Date?[new dn.Literal(e.toISOString(),zt.Namespace.XSD.term("dateTime"))]:[new dn.Literal(String(e))]}isISO8601DateTime(e){return/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{1,3})?(Z|[+-]\d{2}:\d{2})?$/.test(e)}removeQuotes(e){let t=e.trim();return t.startsWith('"')&&t.endsWith('"')||t.startsWith("'")&&t.endsWith("'")?t.substring(1,t.length-1):e}extractWikilink(e){let t=e.match(/^\[\[([^\]]+)\]\]$/);if(!t)return null;let r=t[1];return r.includes("|")?r.split("|")[0]:r}extractWikilinkAlias(e){let t=e.match(/^\[\[([^\]]+)\]\]$/);if(!t)return null;let r=t[1],i=r.indexOf("|");return i>=0?r.substring(i+1).trim():null}valueToClassURI(e){if(typeof e!="string")return new dn.Literal(String(e));let t=this.removeQuotes(e),i=this.extractWikilink(t)||t,s=this.expandClassValue(i);if(s)return s;let a=this.extractWikilinkAlias(t);if(a){let c=this.expandClassValue(a);if(c)return c}if(this.isUUID(i)){let c=this.vault.getFirstLinkpathDest(i,"");if(c){let l=this.expandClassValue(c.basename);if(l)return l;let u=this.vault.getFrontmatter(c);if(u){let f=u.exo__Asset_label;if(typeof f=="string"){let d=this.expandClassValue(f);if(d)return d}}}}return new dn.Literal(t)}isClassReference(e){return/\s/.test(e)?!1:zt.Namespace.fromPropertyKey(e)!==null}isUUID(e){return/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(e)}expandClassValue(e){let t=this.removeQuotes(e),r=zt.Namespace.fromPropertyKey(t);return!r||/[\s()]/.test(r.localName)?null:r.namespace.term(r.localName)}extractBodyContent(e){let t=/^---\r?\n[\s\S]*?\r?\n---\r?\n?/;return e.replace(t,"")}extractBodyWikilinks(e){let t=new Set,r,i=new RegExp(this.BODY_WIKILINK_PATTERN.source,"g");for(;(r=i.exec(e))!==null;)r[1]&&t.add(r[1]);return Array.from(t)}async convertBodyWikilinks(e,t){let r=[];try{let i=await this.vault.read(e),s=this.extractBodyContent(i),a=this.extractBodyWikilinks(s),c=zt.Namespace.EXO.term("Asset_bodyLink");for(let l of a){let u=this.vault.getFirstLinkpathDest(l,e.path);if(u){let f=this.notePathToIRI(u.path);r.push(new hr.Triple(t,c,f))}else if(this.isClassReference(l)){let f=this.expandClassValue(l);f?r.push(new hr.Triple(t,c,f)):r.push(new hr.Triple(t,c,new dn.Literal(l)))}else r.push(new hr.Triple(t,c,new dn.Literal(l)))}}catch{}return r}};Ui.NoteToRDFConverter=ml;ml.SkippedFileInfo=class{constructor(n,e){this.path=n,this.reason=e}};ml.VaultValidationResult=class{constructor(n,e,t){this.triples=n,this.skippedFiles=e,this.summary=t}};ml.VaultValidationOptions=class{constructor(n=!1){this.strict=n}};Ui.NoteToRDFConverter=ml=b$([(0,Gb.injectable)(),Vx(0,(0,Gb.inject)(Bx.DI_TOKENS.IVaultAdapter)),Vx(1,(0,Gb.inject)(Bx.DI_TOKENS.ILogger)),v$("design:paramtypes",[Object,Object])],ml)});var Qb=S(am=>{"use strict";Object.defineProperty(am,"__esModule",{value:!0});am.FilterContainsOptimizer=void 0;var A$=Ae(),x$=/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i,Hb=class{static{o(this,"FilterContainsOptimizer")}constructor(){this.tripleStore=null,this.lastOptimizationHints=[]}setTripleStore(e){this.tripleStore=e}getLastOptimizationHints(){return this.lastOptimizationHints}clearHints(){this.lastOptimizationHints=[]}async optimize(e){return this.clearHints(),this.optimizeRecursive(e)}optimizeSync(e,t){return this.clearHints(),this.optimizeSyncRecursive(e,t)}async optimizeRecursive(e){return e.type==="filter"?this.optimizeFilter(e):e.type==="join"?{type:"join",left:await this.optimizeRecursive(e.left),right:await this.optimizeRecursive(e.right)}:e.type==="leftjoin"?{...e,left:await this.optimizeRecursive(e.left),right:await this.optimizeRecursive(e.right)}:e.type==="union"?{type:"union",left:await this.optimizeRecursive(e.left),right:await this.optimizeRecursive(e.right)}:e.type==="minus"?{...e,left:await this.optimizeRecursive(e.left),right:await this.optimizeRecursive(e.right)}:e.type==="project"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="orderby"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="slice"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="distinct"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="reduced"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="group"?{...e,input:await this.optimizeRecursive(e.input)}:e.type==="extend"?{...e,input:await this.optimizeRecursive(e.input)}:e}optimizeSyncRecursive(e,t){return e.type==="filter"?this.optimizeFilterSync(e,t):e.type==="join"?{type:"join",left:this.optimizeSyncRecursive(e.left,t),right:this.optimizeSyncRecursive(e.right,t)}:e.type==="leftjoin"?{...e,left:this.optimizeSyncRecursive(e.left,t),right:this.optimizeSyncRecursive(e.right,t)}:e.type==="union"?{type:"union",left:this.optimizeSyncRecursive(e.left,t),right:this.optimizeSyncRecursive(e.right,t)}:e.type==="minus"?{...e,left:this.optimizeSyncRecursive(e.left,t),right:this.optimizeSyncRecursive(e.right,t)}:e.type==="project"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="orderby"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="slice"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="distinct"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="reduced"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="group"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e.type==="extend"?{...e,input:this.optimizeSyncRecursive(e.input,t)}:e}async optimizeFilter(e){let t=this.detectContainsUUIDPattern(e.expression);if(!t)return{type:"filter",expression:e.expression,input:await this.optimizeRecursive(e.input)};let r=[];return this.tripleStore&&(r=await this.findSubjectsContainingUUID(t.uuid)),this.rewriteFilter(e,t,r)}optimizeFilterSync(e,t){let r=this.detectContainsUUIDPattern(e.expression);if(!r)return{type:"filter",expression:e.expression,input:this.optimizeSyncRecursive(e.input,t)};let i=t?t.filter(s=>s.includes(r.uuid)):[];return this.rewriteFilter(e,r,i)}rewriteFilter(e,t,r){if(this.lastOptimizationHints.push({type:"uuid-index-lookup",originalPattern:`FILTER(CONTAINS(STR(?${t.variable}), "${t.uuid}"))`,suggestedRewrite:r.length===1?`VALUES ?${t.variable} { <${r[0]}> }`:r.length>1?`VALUES ?${t.variable} { ${r.map(i=>`<${i}>`).join(" ")} }`:"No matching URIs found for UUID",estimatedSpeedup:r.length>0?"O(n) \u2192 O(1)":"N/A",matchedUri:r.length===1?r[0]:void 0}),r.length===0)return{type:"filter",expression:e.expression,input:this.optimizeSyncRecursive(e.input)};if(r.length===1){let i=this.injectSubjectConstraint(e.input,t.variable,r[0]);if(i!==e.input)return i}return this.createValuesJoin(e,t,r)}detectContainsUUIDPattern(e){if(e.type==="function"||e.type==="functionCall"){let t=e;if((typeof t.function=="string"?t.function.toLowerCase():t.function?.value?.toLowerCase()??"")==="contains"&&t.args.length===2)return this.analyzeContainsArgs(t.args[0],t.args[1],e)}if(e.type==="logical"&&e.operator==="&&")for(let t of e.operands){let r=this.detectContainsUUIDPattern(t);if(r)return r}return null}analyzeContainsArgs(e,t,r){let i=null;if(e.type==="function"||e.type==="functionCall"){let s=e;if((typeof s.function=="string"?s.function.toLowerCase():s.function?.value?.toLowerCase()??"")==="str"&&s.args.length===1){let c=s.args[0];c.type==="variable"&&(i=c.name)}}if(!i&&e.type==="variable"&&(i=e.name),!i)return null;if(t.type==="literal"){let c=String(t.value).match(x$);if(c)return{variable:i,uuid:c[0].toLowerCase(),originalExpression:r}}return null}async findSubjectsContainingUUID(e){if(!this.tripleStore)return[];if(this.tripleStore.findSubjectsByUUID)return(await this.tripleStore.findSubjectsByUUID(e)).map(s=>s.value);let t=await this.tripleStore.subjects(),r=[];for(let i of t)i instanceof A$.IRI&&i.value.toLowerCase().includes(e.toLowerCase())&&r.push(i.value);return r}injectSubjectConstraint(e,t,r){if(e.type==="bgp"){let i=e.triples.map(a=>a.subject.type==="variable"&&a.subject.value===t?{...a,subject:{type:"iri",value:r}}:a);if(i.some((a,c)=>a.subject!==e.triples[c].subject))return{type:"bgp",triples:i}}if(e.type==="join"){let i=this.injectSubjectConstraint(e.left,t,r),s=this.injectSubjectConstraint(e.right,t,r);if(i!==e.left||s!==e.right)return{type:"join",left:i,right:s}}if(e.type==="filter"){let i=this.injectSubjectConstraint(e.input,t,r);if(i!==e.input)return{...e,input:i}}return e}createValuesJoin(e,t,r){return{type:"join",left:{type:"values",variables:[t.variable],bindings:r.map(a=>({[t.variable]:{type:"iri",value:a}}))},right:this.optimizeSyncRecursive(e.input)}}analyzeQuery(e){let t=[];return this.analyzeRecursive(e,t),t}analyzeRecursive(e,t){if(e.type==="filter"){let r=this.detectContainsUUIDPattern(e.expression);r&&t.push({type:"uuid-index-lookup",originalPattern:`FILTER(CONTAINS(STR(?${r.variable}), "${r.uuid}"))`,suggestedRewrite:`Use --optimize flag or rewrite as VALUES ?${r.variable} { <uri-containing-uuid> }`,estimatedSpeedup:"O(n) \u2192 O(1) with UUID index lookup"}),this.analyzeRecursive(e.input,t);return}e.type==="join"?(this.analyzeRecursive(e.left,t),this.analyzeRecursive(e.right,t)):e.type==="leftjoin"?(this.analyzeRecursive(e.left,t),this.analyzeRecursive(e.right,t)):e.type==="union"?(this.analyzeRecursive(e.left,t),this.analyzeRecursive(e.right,t)):e.type==="minus"?(this.analyzeRecursive(e.left,t),this.analyzeRecursive(e.right,t)):e.type==="project"?this.analyzeRecursive(e.input,t):e.type==="orderby"?this.analyzeRecursive(e.input,t):e.type==="slice"?this.analyzeRecursive(e.input,t):e.type==="distinct"?this.analyzeRecursive(e.input,t):e.type==="reduced"?this.analyzeRecursive(e.input,t):e.type==="group"?this.analyzeRecursive(e.input,t):e.type==="extend"&&this.analyzeRecursive(e.input,t)}};am.FilterContainsOptimizer=Hb});var Wx=S(om=>{"use strict";Object.defineProperty(om,"__esModule",{value:!0});om.AlgebraOptimizer=void 0;var I$=Qb(),Kb=class{static{o(this,"AlgebraOptimizer")}constructor(){this.stats=new Map,this.tripleStore=null,this.filterContainsOptimizer=new I$.FilterContainsOptimizer}setTripleStore(e){this.tripleStore=e,this.filterContainsOptimizer.setTripleStore(e)}getOptimizationHints(){return this.filterContainsOptimizer.getLastOptimizationHints()}analyzeQuery(e){return this.filterContainsOptimizer.analyzeQuery(e)}optimize(e){let t=e;return t=this.eliminateEmptyBGPInFilterJoin(t),t=this.filterPushDown(t),t=this.joinReordering(t),t}async optimizeAsync(e){let t=e;return t=this.eliminateEmptyBGPInFilterJoin(t),this.tripleStore&&(t=await this.filterContainsOptimizer.optimize(t)),t=this.filterPushDown(t),t=this.joinReordering(t),t}optimizeWithSubjects(e,t){let r=e;return r=this.eliminateEmptyBGPInFilterJoin(r),r=this.filterContainsOptimizer.optimizeSync(r,t),r=this.filterPushDown(r),r=this.joinReordering(r),r}eliminateEmptyBGPInFilterJoin(e){if(e.type==="join"){if(e.left.type==="filter"){let t=e.left;if(t.input.type==="bgp"&&t.input.triples.length===0)return{type:"filter",expression:t.expression,input:this.eliminateEmptyBGPInFilterJoin(e.right)}}if(e.right.type==="filter"){let t=e.right;if(t.input.type==="bgp"&&t.input.triples.length===0)return{type:"filter",expression:t.expression,input:this.eliminateEmptyBGPInFilterJoin(e.left)}}return{type:"join",left:this.eliminateEmptyBGPInFilterJoin(e.left),right:this.eliminateEmptyBGPInFilterJoin(e.right)}}return e.type==="filter"?{...e,input:this.eliminateEmptyBGPInFilterJoin(e.input)}:e.type==="leftjoin"?{...e,left:this.eliminateEmptyBGPInFilterJoin(e.left),right:this.eliminateEmptyBGPInFilterJoin(e.right)}:e.type==="union"?{...e,left:this.eliminateEmptyBGPInFilterJoin(e.left),right:this.eliminateEmptyBGPInFilterJoin(e.right)}:e.type==="minus"?{...e,left:this.eliminateEmptyBGPInFilterJoin(e.left),right:this.eliminateEmptyBGPInFilterJoin(e.right)}:e.type==="project"?{...e,input:this.eliminateEmptyBGPInFilterJoin(e.input)}:e.type==="orderby"?{...e,input:this.eliminateEmptyBGPInFilterJoin(e.input)}:e.type==="slice"?{...e,input:this.eliminateEmptyBGPInFilterJoin(e.input)}:e.type==="distinct"?{...e,input:this.eliminateEmptyBGPInFilterJoin(e.input)}:e}filterPushDown(e){return e.type==="filter"?this.pushDownFilter(e):e.type==="join"?{type:"join",left:this.filterPushDown(e.left),right:this.filterPushDown(e.right)}:e.type==="leftjoin"?{...e,left:this.filterPushDown(e.left),right:this.filterPushDown(e.right)}:e.type==="union"?{type:"union",left:this.filterPushDown(e.left),right:this.filterPushDown(e.right)}:e.type==="minus"?{...e,left:this.filterPushDown(e.left),right:this.filterPushDown(e.right)}:e.type==="project"?{...e,input:this.filterPushDown(e.input)}:e.type==="orderby"?{...e,input:this.filterPushDown(e.input)}:e.type==="slice"?{...e,input:this.filterPushDown(e.input)}:e.type==="distinct"?{...e,input:this.filterPushDown(e.input)}:e}pushDownFilter(e){let t=e.input;if(t.type==="join"){let r=this.getFilterVariables(e.expression),i=this.getOperationVariables(t.left),s=this.getOperationVariables(t.right),a=r.every(l=>i.has(l)),c=r.every(l=>s.has(l));return a&&!c?{type:"join",left:{type:"filter",expression:e.expression,input:this.filterPushDown(t.left)},right:this.filterPushDown(t.right)}:c&&!a?{type:"join",left:this.filterPushDown(t.left),right:{type:"filter",expression:e.expression,input:this.filterPushDown(t.right)}}:{type:"filter",expression:e.expression,input:{type:"join",left:this.filterPushDown(t.left),right:this.filterPushDown(t.right)}}}return t.type==="union"?{type:"union",left:{type:"filter",expression:e.expression,input:this.filterPushDown(t.left)},right:{type:"filter",expression:e.expression,input:this.filterPushDown(t.right)}}:{type:"filter",expression:e.expression,input:this.filterPushDown(t)}}getFilterVariables(e){let t=[];if(e.type==="variable")t.push(e.name);else if(e.type==="comparison")t.push(...this.getFilterVariables(e.left)),t.push(...this.getFilterVariables(e.right));else if(e.type==="logical")for(let r of e.operands)t.push(...this.getFilterVariables(r));else if(e.type==="function")for(let r of e.args)t.push(...this.getFilterVariables(r));return Array.from(new Set(t))}getOperationVariables(e){let t=new Set;if(e.type==="bgp")for(let r of e.triples)r.subject.type==="variable"&&t.add(r.subject.value),r.predicate.type==="variable"&&t.add(r.predicate.value),r.object.type==="variable"&&t.add(r.object.value);else if(e.type==="join"){let r=this.getOperationVariables(e.left),i=this.getOperationVariables(e.right);return new Set([...r,...i])}else{if(e.type==="filter")return this.getOperationVariables(e.input);if(e.type==="leftjoin"){let r=this.getOperationVariables(e.left),i=this.getOperationVariables(e.right);return new Set([...r,...i])}else if(e.type==="union"){let r=this.getOperationVariables(e.left),i=this.getOperationVariables(e.right);return new Set([...r,...i])}else{if(e.type==="minus")return this.getOperationVariables(e.left);if(e.type==="project")return new Set(e.variables)}}return t}joinReordering(e){return e.type==="join"?this.reorderJoin(e):e.type==="filter"?{...e,input:this.joinReordering(e.input)}:e.type==="leftjoin"?{...e,left:this.joinReordering(e.left),right:this.joinReordering(e.right)}:e.type==="union"?{...e,left:this.joinReordering(e.left),right:this.joinReordering(e.right)}:e.type==="minus"?{...e,left:this.joinReordering(e.left),right:this.joinReordering(e.right)}:e.type==="project"?{...e,input:this.joinReordering(e.input)}:e.type==="orderby"?{...e,input:this.joinReordering(e.input)}:e.type==="slice"?{...e,input:this.joinReordering(e.input)}:e.type==="distinct"?{...e,input:this.joinReordering(e.input)}:e}reorderJoin(e){let t=this.isConstrained(e.left),r=this.isConstrained(e.right);if(r&&!t)return{type:"join",left:this.joinReordering(e.right),right:this.joinReordering(e.left)};if(t&&!r)return{type:"join",left:this.joinReordering(e.left),right:this.joinReordering(e.right)};let i=this.estimateCost(e.left);return this.estimateCost(e.right)<i?{type:"join",left:this.joinReordering(e.right),right:this.joinReordering(e.left)}:{type:"join",left:this.joinReordering(e.left),right:this.joinReordering(e.right)}}isConstrained(e){return e.type==="values"?!0:e.type==="bgp"?e.triples.some(t=>t.object.type!=="variable"||t.subject.type!=="variable"):e.type==="filter"?this.isConstrained(e.input):e.type==="join"?this.isConstrained(e.left)||this.isConstrained(e.right):e.type==="union"?this.isConstrained(e.left)&&this.isConstrained(e.right):!1}estimateCost(e){if(e.type==="bgp"){let t=0;for(let r of e.triples){let i=10;r.subject.type==="variable"&&(i*=10),r.predicate.type==="variable"&&(i*=20),r.object.type==="variable"&&(i*=5),t+=i}return t}if(e.type==="filter")return this.estimateCost(e.input)*.3;if(e.type==="join"){let t=this.estimateCost(e.left),r=this.estimateCost(e.right);return e.left.type==="values"||e.right.type==="values"?Math.min(t,r)*2:t*r}if(e.type==="leftjoin")return this.estimateCost(e.left)+this.estimateCost(e.right)*.5;if(e.type==="union")return this.estimateCost(e.left)+this.estimateCost(e.right);if(e.type==="values"){let t=e.bindings;return Array.isArray(t)?t.length*5:10}return e.type==="minus"?this.estimateCost(e.left)+this.estimateCost(e.right)*.3:100}setStatistics(e,t){this.stats.set(e,t)}getStatistics(e){return this.stats.get(e)}};om.AlgebraOptimizer=Kb});var Gx=S(cm=>{"use strict";Object.defineProperty(cm,"__esModule",{value:!0});cm.AlgebraSerializer=void 0;var Yb=class{static{o(this,"AlgebraSerializer")}toString(e,t=0){let r=" ".repeat(t);switch(e.type){case"bgp":return`${r}BGP [
378
378
  ${e.triples.map(u=>`${r} ${this.tripleToString(u)}`).join(`
379
379
  `)}
380
380
  ${r}]`;case"filter":return`${r}Filter(
@@ -410,7 +410,7 @@ ${r})`;default:return`${r}Unknown(${e.type})`}}tripleToString(e){return`${this.e
410
410
  `)}termToXML(e){return e instanceof mm.IRI?`<uri>${this.escapeXML(e.value)}</uri>`:e instanceof gm.BlankNode?`<bnode>${this.escapeXML(e.id)}</bnode>`:e instanceof pm.Literal?this.literalToXML(e):`<literal>${this.escapeXML(String(e))}</literal>`}literalToXML(e){let t=this.escapeXML(e.value);if(e.datatype)return`<literal datatype="${this.escapeXML(e.datatype.value)}">${t}</literal>`;if(e.language){let r=`xml:lang="${this.escapeXML(e.language)}"`;return e.hasDirection()&&e.direction&&(r+=` direction="${e.direction}"`),`<literal ${r}>${t}</literal>`}return`<literal>${t}</literal>`}serializeCSV(e,t={}){let r=new Set;for(let a of e)for(let c of a.variables())r.add(c);let i=t.variables??Array.from(r).sort(),s=[];s.push(i.map(a=>this.escapeCSV(a)).join(","));for(let a of e){let c=i.map(l=>{let u=a.get(l);return u===void 0?"":this.escapeCSV(this.termToCSV(u))});s.push(c.join(","))}return s.join(`
411
411
  `)}termToCSV(e){return e instanceof mm.IRI?e.value:e instanceof gm.BlankNode?`_:${e.id}`:e instanceof pm.Literal?this.literalToCSV(e):String(e)}literalToCSV(e){if(e.datatype)return`${e.value}^^<${e.datatype.value}>`;if(e.language){let t=e.language;return e.hasDirection()&&e.direction&&(t+=`--${e.direction}`),`${e.value}@${t}`}return e.value}serializeTurtle(e,t={}){let r=new Set;for(let a of e)for(let c of a.variables())r.add(c);let i=t.variables??Array.from(r).sort(),s=[];s.push(`# SPARQL Results - ${e.length} solution(s)`),s.push(`# Variables: ${i.join(", ")}`),s.push("");for(let a=0;a<e.length;a++){let c=e[a];s.push(`# Solution ${a+1}`);for(let l of i){let u=c.get(l);u!==void 0&&s.push(`?${l} = ${this.termToTurtle(u)}`)}s.push("")}return s.join(`
412
412
  `).trimEnd()}termToTurtle(e){return e instanceof mm.IRI?`<${e.value}>`:e instanceof gm.BlankNode?`_:${e.id}`:e instanceof pm.Literal?e.toString():`"${String(e)}"`}escapeXML(e){return e.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&apos;")}escapeCSV(e){return e.includes(",")||e.includes('"')||e.includes(`
413
- `)?`"${e.replace(/"/g,'""')}"`:e}};ym.ResultSerializer=nv});var rI=S(_l=>{"use strict";Object.defineProperty(_l,"__esModule",{value:!0});_l.FileAlreadyExistsError=_l.FileNotFoundError=void 0;var iv=class extends Error{static{o(this,"FileNotFoundError")}constructor(e){super(`File not found: ${e}`),this.name="FileNotFoundError"}};_l.FileNotFoundError=iv;var sv=class extends Error{static{o(this,"FileAlreadyExistsError")}constructor(e){super(`File already exists: ${e}`),this.name="FileAlreadyExistsError"}};_l.FileAlreadyExistsError=sv});var ov=S(br=>{"use strict";var k$=br&&br.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},M$=br&&br.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(br,"__esModule",{value:!0});br.VaultSettings=br.DEFAULT_FLEETING_NOTE_CLASS_UID=br.DEFAULT_INBOX_FOLDER=br.DEFAULT_OWNER_IDENTITY=void 0;var j$=le();br.DEFAULT_OWNER_IDENTITY='"[[!kitelev]]"';br.DEFAULT_INBOX_FOLDER="01 Inbox";br.DEFAULT_FLEETING_NOTE_CLASS_UID="fca0a931-a01f-48e4-b72a-4af206c94bc7";var av=class{static{o(this,"VaultSettings")}constructor(e){this.ownerIdentity=e?.ownerIdentity??br.DEFAULT_OWNER_IDENTITY,this.defaultInboxFolder=e?.defaultInboxFolder??br.DEFAULT_INBOX_FOLDER,this.fleetingNoteClassUID=e?.fleetingNoteClassUID??br.DEFAULT_FLEETING_NOTE_CLASS_UID}getOwnerIdentity(){return this.ownerIdentity}getDefaultInboxFolder(){return this.defaultInboxFolder}getFleetingNoteClassUID(){return this.fleetingNoteClassUID}};br.VaultSettings=av;br.VaultSettings=av=k$([(0,j$.injectable)(),M$("design:paramtypes",[Object])],av)});var nI=S(Ua=>{"use strict";Object.defineProperty(Ua,"__esModule",{value:!0});Ua.container=void 0;Ua.registerCoreServices=lV;Ua.createChildContainer=uV;Ua.getContainer=fV;Ua.resetContainer=dV;Pd();var lf=le();Object.defineProperty(Ua,"container",{enumerable:!0,get:o(function(){return lf.container},"get")});var Ct=wt(),$$=qS(),V$=GS(),U$=DS(),B$=hS(),q$=lS(),W$=Up(),G$=qp(),z$=CS(),H$=OS(),Q$=LS(),K$=xS(),Y$=HS(),X$=tb(),J$=JS(),Z$=yS(),eV=SS(),tV=US(),rV=jS(),nV=zb(),iV=mS(),sV=ib(),aV=ab(),oV=_b(),cV=ov();function lV(n){let e=n||lf.container;e.registerSingleton(Ct.DI_TOKENS.DynamicFrontmatterGenerator,$$.DynamicFrontmatterGenerator),e.registerSingleton(Ct.DI_TOKENS.AlgorithmExtractor,V$.AlgorithmExtractor),e.isRegistered(Ct.DI_TOKENS.IVaultSettings)||e.register(Ct.DI_TOKENS.IVaultSettings,{useValue:new cV.VaultSettings}),e.registerSingleton(Ct.DI_TOKENS.EffortStatusWorkflow,W$.EffortStatusWorkflow),e.registerSingleton(Ct.DI_TOKENS.StatusTimestampService,G$.StatusTimestampService),e.registerSingleton(Ct.DI_TOKENS.TaskStatusService,q$.TaskStatusService),e.registerSingleton(Ct.DI_TOKENS.AreaCreationService,B$.AreaCreationService),e.registerSingleton(Ct.DI_TOKENS.ClassCreationService,Z$.ClassCreationService),e.registerSingleton(Ct.DI_TOKENS.ConceptCreationService,eV.ConceptCreationService),e.registerSingleton(Ct.DI_TOKENS.FleetingNoteCreationService,tV.FleetingNoteCreationService),e.registerSingleton(Ct.DI_TOKENS.SupervisionCreationService,rV.SupervisionCreationService),e.registerSingleton(Ct.DI_TOKENS.GenericAssetCreationService,aV.GenericAssetCreationService),e.registerSingleton(Ct.DI_TOKENS.PropertyCleanupService,U$.PropertyCleanupService),e.registerSingleton(Ct.DI_TOKENS.FolderRepairService,z$.FolderRepairService),e.registerSingleton(Ct.DI_TOKENS.LabelToAliasService,H$.LabelToAliasService),e.registerSingleton(Ct.DI_TOKENS.RenameToUidService,Q$.RenameToUidService),e.registerSingleton(Ct.DI_TOKENS.PlanningService,Y$.PlanningService),e.registerSingleton(Ct.DI_TOKENS.EffortVotingService,K$.EffortVotingService),e.registerSingleton(Ct.DI_TOKENS.SessionEventService,X$.SessionEventService),e.registerSingleton(Ct.DI_TOKENS.AssetConversionService,J$.AssetConversionService),e.registerSingleton(Ct.DI_TOKENS.NoteToRDFConverter,nV.NoteToRDFConverter),e.registerSingleton(Ct.DI_TOKENS.AreaHierarchyBuilder,iV.AreaHierarchyBuilder),e.registerSingleton(Ct.DI_TOKENS.URIConstructionService,sV.URIConstructionService),e.registerSingleton(Ct.DI_TOKENS.CriticalityZoneService,oV.CriticalityZoneService)}o(lV,"registerCoreServices");function uV(){return lf.container.createChildContainer()}o(uV,"createChildContainer");function fV(){return lf.container}o(fV,"getContainer");function dV(){lf.container.reset()}o(dV,"resetContainer")});var cv=S(Sl=>{"use strict";Object.defineProperty(Sl,"__esModule",{value:!0});Sl.DEFAULT_COLORS=Sl.NODE_FLAGS=void 0;Sl.NODE_FLAGS={PINNED:1,VISIBLE:2,SELECTED:4,HOVERED:8,ARCHIVED:16,SEARCH_MATCH:32,HIGHLIGHTED:64};Sl.DEFAULT_COLORS={NODE:1251006975,NODE_SELECTED:4290840575,NODE_HOVERED:1723558655,EDGE:2576980479,EDGE_SELECTED:4288151807,EDGE_HIERARCHY:2619846911}});var uv=S(_m=>{"use strict";Object.defineProperty(_m,"__esModule",{value:!0});_m.StringTable=void 0;var lv=class n{static{o(this,"StringTable")}constructor(e){if(this.stringToIndex=new Map,this.strings=[],this.memoryBytes=0,e)for(let t of e)this.intern(t)}intern(e){let t=this.stringToIndex.get(e);if(t!==void 0)return t;let r=this.strings.length;return this.strings.push(e),this.stringToIndex.set(e,r),this.memoryBytes+=e.length*2+50,r}getIndex(e){return this.stringToIndex.get(e)??-1}getString(e){if(e<0||e>=this.strings.length)throw new RangeError(`StringTable index out of bounds: ${e}`);return this.strings[e]}has(e){return this.stringToIndex.has(e)}hasIndex(e){return e>=0&&e<this.strings.length}get size(){return this.strings.length}getMemoryBytes(){return this.memoryBytes}*entries(){for(let e=0;e<this.strings.length;e++)yield[e,this.strings[e]]}*values(){for(let e of this.strings)yield e}toArray(){return[...this.strings]}clear(){this.stringToIndex.clear(),this.strings=[],this.memoryBytes=0}static fromJSON(e){return new n(e)}toJSON(){return this.strings}internAll(e){return e.map(t=>this.intern(t))}getStrings(e){return e.map(t=>this.getString(t))}search(e){let t=typeof e=="string"?new RegExp(e):e,r=[];for(let i=0;i<this.strings.length;i++)t.test(this.strings[i])&&r.push([i,this.strings[i]]);return r}getStats(){let e=this.strings.reduce((t,r)=>t+r.length,0);return{count:this.strings.length,memoryBytes:this.memoryBytes,avgStringLength:this.strings.length>0?e/this.strings.length:0}}};_m.StringTable=lv});var iI=S(bm=>{"use strict";Object.defineProperty(bm,"__esModule",{value:!0});bm.CompactGraphStore=void 0;var Sm=uv(),Rn=cv(),hV={initialNodeCapacity:1e4,initialEdgeCapacity:5e4,growthFactor:2,maxCapacity:1e6};function fv(n,e){if(n===void 0)return e;if(typeof n=="number")return n;if(n.startsWith("#")){let t=n.slice(1);if(t.length===6)return parseInt(t,16)<<8|255;if(t.length===8)return parseInt(t,16)}return e}o(fv,"parseColor");var dv=class{static{o(this,"CompactGraphStore")}constructor(e){this.nodeCount=0,this.edgeCount=0,this.nodeIdToIndex=new Map,this.indexToNodeId=[],this.edgeIdToIndex=new Map,this.config={...hV,...e},this.nodeCapacity=this.config.initialNodeCapacity,this.edgeCapacity=this.config.initialEdgeCapacity,this.nodes=this.allocateNodeArrays(this.nodeCapacity),this.edges=this.allocateEdgeArrays(this.edgeCapacity),this.uriTable=new Sm.StringTable,this.labelTable=new Sm.StringTable,this.typeTable=new Sm.StringTable,this.predicateTable=new Sm.StringTable}allocateNodeArrays(e){return{positions:new Float32Array(e*2),radii:new Float32Array(e),colors:new Uint32Array(e),types:new Uint16Array(e),flags:new Uint8Array(e)}}allocateEdgeArrays(e){return{sourceIndices:new Uint32Array(e),targetIndices:new Uint32Array(e),predicateIndices:new Uint16Array(e),widths:new Float32Array(e),colors:new Uint32Array(e)}}resizeNodeArrays(e){if(e<=this.nodeCapacity)return;if(e>this.config.maxCapacity)throw new Error(`Cannot resize beyond max capacity (${this.config.maxCapacity})`);let t=this.allocateNodeArrays(e);t.positions.set(this.nodes.positions.subarray(0,this.nodeCount*2)),t.radii.set(this.nodes.radii.subarray(0,this.nodeCount)),t.colors.set(this.nodes.colors.subarray(0,this.nodeCount)),t.types.set(this.nodes.types.subarray(0,this.nodeCount)),t.flags.set(this.nodes.flags.subarray(0,this.nodeCount)),this.nodes=t,this.nodeCapacity=e}resizeEdgeArrays(e){if(e<=this.edgeCapacity)return;if(e>this.config.maxCapacity)throw new Error(`Cannot resize beyond max capacity (${this.config.maxCapacity})`);let t=this.allocateEdgeArrays(e);t.sourceIndices.set(this.edges.sourceIndices.subarray(0,this.edgeCount)),t.targetIndices.set(this.edges.targetIndices.subarray(0,this.edgeCount)),t.predicateIndices.set(this.edges.predicateIndices.subarray(0,this.edgeCount)),t.widths.set(this.edges.widths.subarray(0,this.edgeCount)),t.colors.set(this.edges.colors.subarray(0,this.edgeCount)),this.edges=t,this.edgeCapacity=e}ensureNodeCapacity(e){let t=this.nodeCount+e;if(t>this.nodeCapacity){let r=Math.max(t,Math.floor(this.nodeCapacity*this.config.growthFactor));this.resizeNodeArrays(r)}}ensureEdgeCapacity(e){let t=this.edgeCount+e;if(t>this.edgeCapacity){let r=Math.max(t,Math.floor(this.edgeCapacity*this.config.growthFactor));this.resizeEdgeArrays(r)}}addNode(e){let t=this.nodeIdToIndex.get(e.id);if(t!==void 0)return this.updateNodeAt(t,e),t;this.ensureNodeCapacity(1);let r=this.nodeCount++,i=r*2;this.nodes.positions[i]=e.x??Math.random()*1e3-500,this.nodes.positions[i+1]=e.y??Math.random()*1e3-500,this.nodes.radii[r]=e.radius??8,this.nodes.colors[r]=fv(e.color,Rn.DEFAULT_COLORS.NODE),e.assetClass?this.nodes.types[r]=this.typeTable.intern(e.assetClass):this.nodes.types[r]=0;let s=Rn.NODE_FLAGS.VISIBLE;return e.isPinned&&(s|=Rn.NODE_FLAGS.PINNED),e.isArchived&&(s|=Rn.NODE_FLAGS.ARCHIVED),this.nodes.flags[r]=s,this.nodeIdToIndex.set(e.id,r),this.indexToNodeId[r]=e.id,this.uriTable.intern(e.id),e.label&&this.labelTable.intern(e.label),r}updateNodeAt(e,t){let r=e*2;t.x!==void 0&&(this.nodes.positions[r]=t.x),t.y!==void 0&&(this.nodes.positions[r+1]=t.y),t.radius!==void 0&&(this.nodes.radii[e]=t.radius),t.color!==void 0&&(this.nodes.colors[e]=fv(t.color,Rn.DEFAULT_COLORS.NODE)),t.assetClass!==void 0&&(this.nodes.types[e]=this.typeTable.intern(t.assetClass));let i=this.nodes.flags[e];t.isPinned!==void 0&&(i=t.isPinned?i|Rn.NODE_FLAGS.PINNED:i&~Rn.NODE_FLAGS.PINNED),t.isArchived!==void 0&&(i=t.isArchived?i|Rn.NODE_FLAGS.ARCHIVED:i&~Rn.NODE_FLAGS.ARCHIVED),this.nodes.flags[e]=i}addEdge(e){let t=this.nodeIdToIndex.get(e.sourceId),r=this.nodeIdToIndex.get(e.targetId);if(t===void 0||r===void 0)return-1;let i=`${e.sourceId}->${e.targetId}:${e.predicate??"link"}`,s=this.edgeIdToIndex.get(i);if(s!==void 0)return s;this.ensureEdgeCapacity(1);let a=this.edgeCount++;return this.edges.sourceIndices[a]=t,this.edges.targetIndices[a]=r,this.edges.widths[a]=e.width??1,this.edges.colors[a]=fv(e.color,Rn.DEFAULT_COLORS.EDGE),e.predicate?this.edges.predicateIndices[a]=this.predicateTable.intern(e.predicate):this.edges.predicateIndices[a]=0,this.edgeIdToIndex.set(i,a),a}addNodes(e){return this.ensureNodeCapacity(e.length),e.map(t=>this.addNode(t))}addEdges(e){return this.ensureEdgeCapacity(e.length),e.map(t=>this.addEdge(t))}loadChunk(e){let r=this.addNodes(e.nodes).filter(a=>a>=0).length,s=this.addEdges(e.edges).filter(a=>a>=0).length;return{nodesAdded:r,edgesAdded:s}}getNodePosition(e){let t=this.nodeIdToIndex.get(e);if(t===void 0)return null;let r=t*2;return{x:this.nodes.positions[r],y:this.nodes.positions[r+1]}}getNodePositionByIndex(e){let t=e*2;return{x:this.nodes.positions[t],y:this.nodes.positions[t+1]}}setNodePosition(e,t,r){let i=this.nodeIdToIndex.get(e);if(i===void 0)return!1;let s=i*2;return this.nodes.positions[s]=t,this.nodes.positions[s+1]=r,!0}setNodePositionByIndex(e,t,r){let i=e*2;this.nodes.positions[i]=t,this.nodes.positions[i+1]=r}updateNodePositions(e){let t=0;for(let[r,i]of e)this.setNodePosition(r,i.x,i.y)&&t++;return t}applyNodeUpdates(e){let t=performance.now(),r=0;for(let i of e){let s=i.index;if(!(s<0||s>=this.nodeCount)){if(i.x!==void 0||i.y!==void 0){let a=s*2;i.x!==void 0&&(this.nodes.positions[a]=i.x),i.y!==void 0&&(this.nodes.positions[a+1]=i.y)}i.radius!==void 0&&(this.nodes.radii[s]=i.radius),i.color!==void 0&&(this.nodes.colors[s]=i.color),i.setFlags!==void 0&&(this.nodes.flags[s]|=i.setFlags),i.clearFlags!==void 0&&(this.nodes.flags[s]&=~i.clearFlags),r++}}return{nodesUpdated:r,edgesUpdated:0,timeMs:performance.now()-t}}getNodeFlags(e){let t=this.nodeIdToIndex.get(e);return t===void 0?0:this.nodes.flags[t]}setNodeFlag(e,t){let r=this.nodeIdToIndex.get(e);return r===void 0?!1:(this.nodes.flags[r]|=t,!0)}clearNodeFlag(e,t){let r=this.nodeIdToIndex.get(e);return r===void 0?!1:(this.nodes.flags[r]&=~t,!0)}hasNodeFlag(e,t){return(this.getNodeFlags(e)&t)!==0}selectNode(e){return this.setNodeFlag(e,Rn.NODE_FLAGS.SELECTED)}deselectNode(e){return this.clearNodeFlag(e,Rn.NODE_FLAGS.SELECTED)}clearSelection(){for(let e=0;e<this.nodeCount;e++)this.nodes.flags[e]&=~Rn.NODE_FLAGS.SELECTED}getSelectedNodeIds(){let e=[];for(let t=0;t<this.nodeCount;t++)this.nodes.flags[t]&Rn.NODE_FLAGS.SELECTED&&e.push(this.indexToNodeId[t]);return e}getNodeId(e){return this.indexToNodeId[e]}getNodeIndex(e){return this.nodeIdToIndex.get(e)}hasNode(e){return this.nodeIdToIndex.has(e)}getNodeCount(){return this.nodeCount}getEdgeCount(){return this.edgeCount}getNodeEdges(e){let t=this.nodeIdToIndex.get(e);if(t===void 0)return[];let r=[];for(let i=0;i<this.edgeCount;i++)this.edges.sourceIndices[i]===t?r.push({edgeIndex:i,isSource:!0}):this.edges.targetIndices[i]===t&&r.push({edgeIndex:i,isSource:!1});return r}getNeighbors(e){let t=this.nodeIdToIndex.get(e);if(t===void 0)return[];let r=new Set;for(let i=0;i<this.edgeCount;i++)if(this.edges.sourceIndices[i]===t){let s=this.edges.targetIndices[i];r.add(this.indexToNodeId[s])}else if(this.edges.targetIndices[i]===t){let s=this.edges.sourceIndices[i];r.add(this.indexToNodeId[s])}return Array.from(r)}getRawArrays(){return{nodes:this.nodes,edges:this.edges,nodeCount:this.nodeCount,edgeCount:this.edgeCount}}getPositionsArray(){return this.nodes.positions.subarray(0,this.nodeCount*2)}getMemoryStats(){let e=this.nodeCapacity*2*4+this.nodeCapacity*4+this.nodeCapacity*4+this.nodeCapacity*2+this.nodeCapacity,t=this.edgeCapacity*4+this.edgeCapacity*4+this.edgeCapacity*2+this.edgeCapacity*4+this.edgeCapacity*4,r=this.uriTable.getMemoryBytes()+this.labelTable.getMemoryBytes()+this.typeTable.getMemoryBytes()+this.predicateTable.getMemoryBytes();return{nodeCount:this.nodeCount,edgeCount:this.edgeCount,nodeCapacity:this.nodeCapacity,edgeCapacity:this.edgeCapacity,nodeMemoryBytes:e,edgeMemoryBytes:t,stringTableBytes:r,totalBytes:e+t+r,internedStringCount:this.uriTable.size+this.labelTable.size+this.typeTable.size+this.predicateTable.size}}clear(){this.nodeCount=0,this.edgeCount=0,this.nodeIdToIndex.clear(),this.indexToNodeId=[],this.edgeIdToIndex.clear(),this.uriTable.clear(),this.labelTable.clear(),this.typeTable.clear(),this.predicateTable.clear(),this.nodeCapacity=this.config.initialNodeCapacity,this.edgeCapacity=this.config.initialEdgeCapacity,this.nodes=this.allocateNodeArrays(this.nodeCapacity),this.edges=this.allocateEdgeArrays(this.edgeCapacity)}getTypeTable(){return this.typeTable}getLabelTable(){return this.labelTable}getUriTable(){return this.uriTable}getPredicateTable(){return this.predicateTable}};bm.CompactGraphStore=dv});var sI=S(vl=>{"use strict";Object.defineProperty(vl,"__esModule",{value:!0});vl.MemoryPool=void 0;vl.getGlobalPool=mV;vl.resetGlobalPool=gV;var pV={maxPooledArrays:16,sizeBuckets:[64,256,1024,4096,16384,65536,262144],autoCleanup:!0,maxPoolMemory:50*1024*1024},vm=class{static{o(this,"MemoryPool")}constructor(e){this.float32Pool=new Map,this.uint32Pool=new Map,this.uint16Pool=new Map,this.uint8Pool=new Map,this.stats={poolHits:0,poolMisses:0,pooledArrays:0,pooledMemory:0,returned:0,rejected:0},this.config={...pV,...e};for(let t of this.config.sizeBuckets)this.float32Pool.set(t,[]),this.uint32Pool.set(t,[]),this.uint16Pool.set(t,[]),this.uint8Pool.set(t,[])}getBucketSize(e){for(let t of this.config.sizeBuckets)if(t>=e)return t;return e}getFloat32(e){let t=this.getBucketSize(e),r=this.float32Pool.get(t);if(r&&r.length>0){this.stats.poolHits++,this.stats.pooledArrays--,this.stats.pooledMemory-=t*4;let i=r.pop();return i.fill(0),i}return this.stats.poolMisses++,new Float32Array(t)}getUint32(e){let t=this.getBucketSize(e),r=this.uint32Pool.get(t);if(r&&r.length>0){this.stats.poolHits++,this.stats.pooledArrays--,this.stats.pooledMemory-=t*4;let i=r.pop();return i.fill(0),i}return this.stats.poolMisses++,new Uint32Array(t)}getUint16(e){let t=this.getBucketSize(e),r=this.uint16Pool.get(t);if(r&&r.length>0){this.stats.poolHits++,this.stats.pooledArrays--,this.stats.pooledMemory-=t*2;let i=r.pop();return i.fill(0),i}return this.stats.poolMisses++,new Uint16Array(t)}getUint8(e){let t=this.getBucketSize(e),r=this.uint8Pool.get(t);if(r&&r.length>0){this.stats.poolHits++,this.stats.pooledArrays--,this.stats.pooledMemory-=t;let i=r.pop();return i.fill(0),i}return this.stats.poolMisses++,new Uint8Array(t)}releaseFloat32(e){this.releaseToPool(this.float32Pool,e,4)}releaseUint32(e){this.releaseToPool(this.uint32Pool,e,4)}releaseUint16(e){this.releaseToPool(this.uint16Pool,e,2)}releaseUint8(e){this.releaseToPool(this.uint8Pool,e,1)}releaseToPool(e,t,r){let i=t.length,s=e.get(i);if(s&&s.length<this.config.maxPooledArrays){if(this.config.autoCleanup&&this.stats.pooledMemory+i*r>this.config.maxPoolMemory){this.stats.rejected++;return}s.push(t),this.stats.returned++,this.stats.pooledArrays++,this.stats.pooledMemory+=i*r}else this.stats.rejected++}getStats(){return{...this.stats}}getHitRatio(){let e=this.stats.poolHits+this.stats.poolMisses;return e>0?this.stats.poolHits/e:0}clear(){for(let e of this.float32Pool.values())e.length=0;for(let e of this.uint32Pool.values())e.length=0;for(let e of this.uint16Pool.values())e.length=0;for(let e of this.uint8Pool.values())e.length=0;this.stats.pooledArrays=0,this.stats.pooledMemory=0}cleanup(e){if(this.stats.pooledMemory<=e)return;let t=[...this.config.sizeBuckets].sort((r,i)=>i-r);for(let r of t){if(this.stats.pooledMemory<=e)break;for(let[i,s]of[[this.float32Pool,4],[this.uint32Pool,4],[this.uint16Pool,2],[this.uint8Pool,1]]){let a=i.get(r);if(a)for(;a.length>0&&this.stats.pooledMemory>e;)a.pop(),this.stats.pooledArrays--,this.stats.pooledMemory-=r*s}}}resetStats(){this.stats.poolHits=0,this.stats.poolMisses=0,this.stats.returned=0,this.stats.rejected=0}};vl.MemoryPool=vm;var bl=null;function mV(){return bl||(bl=new vm),bl}o(mV,"getGlobalPool");function gV(){bl&&bl.clear(),bl=null}o(gV,"resetGlobalPool")});var aI=S(uf=>{"use strict";Object.defineProperty(uf,"__esModule",{value:!0});uf.StreamingLoader=void 0;uf.createStreamingSource=_V;var yV={chunkSize:1e3,chunkDelay:0,autoResolveEdges:!0,maxConcurrency:1},hv=class{static{o(this,"StreamingLoader")}constructor(e,t){this.state="idle",this.pendingEdges=[],this.nodesLoaded=0,this.edgesLoaded=0,this.chunksProcessed=0,this.progressCallbacks=[],this.abortController=null,this.store=e,this.config={...yV,...t}}getState(){return this.state}getProgress(){let e=this.totalChunks!==void 0&&this.totalChunks>0?this.chunksProcessed/this.totalChunks:0;return{currentChunk:this.chunksProcessed,totalChunks:this.totalChunks,nodesLoaded:this.nodesLoaded,edgesLoaded:this.edgesLoaded,progress:e,isComplete:this.state==="completed"}}onProgress(e){return this.progressCallbacks.push(e),()=>{let t=this.progressCallbacks.indexOf(e);t>=0&&this.progressCallbacks.splice(t,1)}}notifyProgress(){let e=this.getProgress();for(let t of this.progressCallbacks)t(e)}loadChunk(e){if(this.state==="error")throw new Error("Loader is in error state");this.state="loading",e.totalChunks!==void 0&&(this.totalChunks=e.totalChunks);for(let t of e.nodes)this.store.addNode(t),this.nodesLoaded++;for(let t of e.edges)this.store.addEdge(t)>=0?this.edgesLoaded++:this.pendingEdges.push(t);this.chunksProcessed++,e.isLast&&this.finishLoading(),this.notifyProgress()}finishLoading(){if(this.config.autoResolveEdges&&this.pendingEdges.length>0){for(let e of this.pendingEdges)this.store.addEdge(e)>=0&&this.edgesLoaded++;this.pendingEdges=[]}this.state="completed",this.notifyProgress()}async loadFromIterator(e){this.reset(),this.state="loading",this.abortController=new AbortController;try{for await(let r of e){if(this.abortController.signal.aborted){this.state="paused";return}this.loadChunk(r),this.config.chunkDelay>0&&await this.delay(this.config.chunkDelay)}this.state!=="completed"&&this.finishLoading()}catch(t){throw this.state="error",t}finally{this.abortController=null}}async loadFromArrays(e,t){let r=this.createChunks(e,t);await this.loadFromIterator(this.arrayToAsyncIterator(r))}createChunks(e,t){let r=[],{chunkSize:i}=this.config,s=Math.ceil(e.length/i),a=Array(s).fill(null).map(()=>[]);for(let c of t){let l=e.findIndex(u=>u.id===c.sourceId);if(l>=0){let u=Math.floor(l/i);a[u].push(c)}}for(let c=0;c<s;c++){let l=c*i,u=Math.min(l+i,e.length);r.push({chunkIndex:c,totalChunks:s,nodes:e.slice(l,u),edges:a[c],isLast:c===s-1})}return r}async*arrayToAsyncIterator(e){for(let t of e)yield t}delay(e){return new Promise(t=>setTimeout(t,e))}cancel(){this.abortController&&this.abortController.abort(),this.state="paused"}reset(){this.state="idle",this.pendingEdges=[],this.nodesLoaded=0,this.edgesLoaded=0,this.chunksProcessed=0,this.totalChunks=void 0,this.abortController=null}getPendingEdgeCount(){return this.pendingEdges.length}getStats(){return{state:this.state,nodesLoaded:this.nodesLoaded,edgesLoaded:this.edgesLoaded,chunksProcessed:this.chunksProcessed,totalChunks:this.totalChunks,pendingEdges:this.pendingEdges.length,storeStats:this.store.getMemoryStats()}}};uf.StreamingLoader=hv;async function*_V(n,e,t=1e3){let r=0,i=0,s;for(;;){let a=await e(n,r,t);if(a.totalCount!==void 0&&s===void 0&&(s=Math.ceil(a.totalCount/t)),yield{chunkIndex:i,totalChunks:s,nodes:a.nodes,edges:a.edges,isLast:!a.hasMore},!a.hasMore)break;r+=t,i++}}o(_V,"createStreamingSource")});var lI=S(er=>{"use strict";Object.defineProperty(er,"__esModule",{value:!0});er.createStreamingSource=er.StreamingLoader=er.resetGlobalPool=er.getGlobalPool=er.MemoryPool=er.CompactGraphStore=er.StringTable=er.DEFAULT_COLORS=er.NODE_FLAGS=void 0;var oI=cv();Object.defineProperty(er,"NODE_FLAGS",{enumerable:!0,get:o(function(){return oI.NODE_FLAGS},"get")});Object.defineProperty(er,"DEFAULT_COLORS",{enumerable:!0,get:o(function(){return oI.DEFAULT_COLORS},"get")});var SV=uv();Object.defineProperty(er,"StringTable",{enumerable:!0,get:o(function(){return SV.StringTable},"get")});var bV=iI();Object.defineProperty(er,"CompactGraphStore",{enumerable:!0,get:o(function(){return bV.CompactGraphStore},"get")});var pv=sI();Object.defineProperty(er,"MemoryPool",{enumerable:!0,get:o(function(){return pv.MemoryPool},"get")});Object.defineProperty(er,"getGlobalPool",{enumerable:!0,get:o(function(){return pv.getGlobalPool},"get")});Object.defineProperty(er,"resetGlobalPool",{enumerable:!0,get:o(function(){return pv.resetGlobalPool},"get")});var cI=aI();Object.defineProperty(er,"StreamingLoader",{enumerable:!0,get:o(function(){return cI.StreamingLoader},"get")});Object.defineProperty(er,"createStreamingSource",{enumerable:!0,get:o(function(){return cI.createStreamingSource},"get")})});var uI=S(tr=>{"use strict";Object.defineProperty(tr,"__esModule",{value:!0});tr.ExoQLError=tr.ExoQL=tr.ExoQLBudgetExceededError=tr.ExoQLCycleError=tr.ExoQLEvalDisabledError=tr.ExoQLForbiddenKeywordError=tr.DEFAULT_EVAL_CONFIG=tr.validateExoQLAllowlist=tr.evaluateWithExoEval=void 0;var vV=Nc(),wV=kc(),EV=rl(),mv=Wb(),TV=De(),AV=G1();Object.defineProperty(tr,"evaluateWithExoEval",{enumerable:!0,get:o(function(){return AV.evaluateWithExoEval},"get")});var xV=B1();Object.defineProperty(tr,"validateExoQLAllowlist",{enumerable:!0,get:o(function(){return xV.validateExoQLAllowlist},"get")});var IV=q1();Object.defineProperty(tr,"DEFAULT_EVAL_CONFIG",{enumerable:!0,get:o(function(){return IV.DEFAULT_EVAL_CONFIG},"get")});var wm=Hu();Object.defineProperty(tr,"ExoQLForbiddenKeywordError",{enumerable:!0,get:o(function(){return wm.ExoQLForbiddenKeywordError},"get")});Object.defineProperty(tr,"ExoQLEvalDisabledError",{enumerable:!0,get:o(function(){return wm.ExoQLEvalDisabledError},"get")});Object.defineProperty(tr,"ExoQLCycleError",{enumerable:!0,get:o(function(){return wm.ExoQLCycleError},"get")});Object.defineProperty(tr,"ExoQLBudgetExceededError",{enumerable:!0,get:o(function(){return wm.ExoQLBudgetExceededError},"get")});var gv=class n{static{o(this,"ExoQL")}static async query(e,t,r){let{algebra:i,executor:s}=n.prepare(e,t,r);return s.executeAll(i)}static async ask(e,t,r){let{algebra:i,executor:s}=n.prepare(e,t,r);if(!s.isAskQuery(i))throw new ff("ExoQL.ask() requires an ASK query");return s.executeAsk(i)}static async construct(e,t,r){let{algebra:i,executor:s}=n.prepare(e,t,r);if(!s.isConstructQuery(i))throw new ff("ExoQL.construct() requires a CONSTRUCT query");return s.executeConstruct(i)}static async queryOwn(e,t,r,i){let s=await n.query(e,t,i);if(s.length===0)return[];let a=r?.subjectVar??"s",c=r?.predicateVar??"p",l=r?.objectVar??"o";return(await new mv.SourceAnnotator(t).annotate(s,a,c,l)).filter(d=>{let h=d.get(mv.SOURCE_VARIABLE);return h instanceof TV.Literal&&h.value==="own"})}static async isOwn(e,t,r,i){return await new mv.SourceAnnotator(i).determineSource(e,t,r)==="own"}static prepare(e,t,r){let i=new vV.ExoQLParser,s=new wV.ExoQLAlgebraTranslator,a=i.parse(e),c=s.translate(a),l=new EV.ExoQLQueryExecutor(t,r);return{algebra:c,executor:l}}};tr.ExoQL=gv;var ff=class extends Error{static{o(this,"ExoQLError")}constructor(e){super(e),this.name="ExoQLError"}};tr.ExoQLError=ff});var df=S(ri=>{"use strict";Object.defineProperty(ri,"__esModule",{value:!0});ri.RELATION_COLUMN_SET_CLASS_UID=ri.RELATION_COLUMN_SET_CLASS_IRI=void 0;ri.normalizeRef=yv;ri.createRelationColumnSetFromFrontmatter=RV;ri.isRelationColumnSet=OV;ri.isRelationColumnSetFrontmatter=FV;var fI=qs();function yv(n){if(typeof n!="string")return null;let e=fI.WikiLinkHelpers.normalize(n);return e.length>0?e:null}o(yv,"normalizeRef");function _v(n){return n==null?[]:Array.isArray(n)?n.filter(e=>typeof e=="string"):typeof n=="string"?[n]:[]}o(_v,"toStringArray");function CV(n){let e=n.lastIndexOf("/"),t=e>=0?n.slice(e+1):n,r=t.lastIndexOf(".");return r>=0?t.slice(0,r):t}o(CV,"basenameFromPath");function RV(n,e){let t=e.warn??(()=>{}),r=e.sourcePath;if(!n||typeof n!="object")return t(`RelationColumnSet: missing frontmatter at ${r}`),null;let i=n.exo__Asset_uid,s=typeof i=="string"?i.trim():"";if(s.length===0)return t(`RelationColumnSet: exo__Asset_uid missing at ${r}`),null;let a=_v(n.ui__RelationColumnSet_targetClass),c=[];for(let w of a){let v=yv(w);v!==null&&c.push(v)}let l=c.length>0?c:null,u=yv(n.ui__RelationColumnSet_referencingProperty);if(l===null&&u===null)return t(`RelationColumnSet ${s}: at least one of targetClass / referencingProperty required (${r})`),null;let f=_v(n.ui__RelationColumnSet_columns),d=[];for(let w of f){let v=fI.WikiLinkHelpers.normalize(w);v.length>0&&d.push(v)}if(d.length===0)return t(`RelationColumnSet ${s}: columns array must contain at least one entry (${r})`),null;let h=n.ui__RelationColumnSet_label,p=typeof h=="string"&&h.trim().length>0?h.trim():CV(r),y=n.ui__RelationColumnSet_priority,b=0;if(typeof y=="number"&&Number.isFinite(y))b=y;else if(typeof y=="string"){let w=Number.parseFloat(y);Number.isFinite(w)&&(b=w)}return{uid:s,label:p,targetClasses:l,referencingProperty:u,columns:d,priority:b,sourcePath:r}}o(RV,"createRelationColumnSetFromFrontmatter");function OV(n){if(!n||typeof n!="object")return!1;let e=n;return!(typeof e.uid!="string"||e.uid.length===0||typeof e.label!="string"||e.targetClasses!==null&&(!Array.isArray(e.targetClasses)||e.targetClasses.some(t=>typeof t!="string"))||e.referencingProperty!==null&&typeof e.referencingProperty!="string"||!Array.isArray(e.columns)||e.columns.length===0||e.columns.some(t=>typeof t!="string")||typeof e.priority!="number"||!Number.isFinite(e.priority)||typeof e.sourcePath!="string")}o(OV,"isRelationColumnSet");ri.RELATION_COLUMN_SET_CLASS_IRI="ui__RelationColumnSet";ri.RELATION_COLUMN_SET_CLASS_UID="97fc9862-c886-4d86-9a60-e0cf9d778575";function PV(n){let e=n.trim();if(e.length===0)return[];let t=e.match(/^\[\[([^\]]+)\]\]$/);return(t?t[1]:e).split("|").map(s=>s.trim()).filter(s=>s.length>0)}o(PV,"extractClassIdentifiers");function FV(n){if(!n)return!1;let e=n.exo__Instance_class,t=_v(e);for(let r of t)for(let i of PV(r))if(i===ri.RELATION_COLUMN_SET_CLASS_IRI||i===ri.RELATION_COLUMN_SET_CLASS_UID)return!0;return!1}o(FV,"isRelationColumnSetFrontmatter")});var hI=S(Bi=>{"use strict";Object.defineProperty(Bi,"__esModule",{value:!0});Bi.LAYOUT_CLASS_UID=Bi.LAYOUT_CLASS_IRI=void 0;Bi.createLayoutFromFrontmatter=jV;Bi.isLayout=$V;Bi.isLayoutFrontmatter=UV;var DV=qs(),NV=df();Bi.LAYOUT_CLASS_IRI="exo__Layout";Bi.LAYOUT_CLASS_UID="08d00289-a5c8-4df1-8885-40a00a014004";function dI(n){return n==null?[]:Array.isArray(n)?n.filter(e=>typeof e=="string"):typeof n=="string"?[n]:[]}o(dI,"toStringArray");function LV(n){let e=n.lastIndexOf("/"),t=e>=0?n.slice(e+1):n,r=t.lastIndexOf(".");return r>=0?t.slice(0,r):t}o(LV,"basenameFromPath");function kV(n,e){if(typeof n=="boolean")return n;if(typeof n=="string"){let t=n.trim().toLowerCase();if(t==="true")return!0;if(t==="false")return!1}return e}o(kV,"parseBoolean");function MV(n){if(typeof n=="number"&&Number.isFinite(n))return n;if(typeof n=="string"){let e=Number.parseFloat(n);if(Number.isFinite(e))return e}return 0}o(MV,"parsePriority");function jV(n,e){let t=e.warn??(()=>{}),r=e.sourcePath;if(!n||typeof n!="object")return t(`Layout: missing frontmatter at ${r}`),null;let i=n.exo__Asset_uid,s=typeof i=="string"?i.trim():"";if(s.length===0)return t(`Layout: exo__Asset_uid missing at ${r}`),null;let a=(0,NV.normalizeRef)(n.exo__Layout_targetClass);if(a===null)return t(`Layout ${s}: exo__Layout_targetClass required (${r})`),null;let c=dI(n.exo__Layout_blocks),l=[];for(let p of c){let y=DV.WikiLinkHelpers.normalize(p);y.length>0&&l.push(y)}if(l.length===0)return t(`Layout ${s}: exo__Layout_blocks must contain at least one block (${r})`),null;let u=n.exo__Asset_label,f=typeof u=="string"&&u.trim().length>0?u.trim():LV(r),d=MV(n.exo__Layout_priority),h=kV(n.exo__Layout_coexistsWithDefault,!1);return{uid:s,label:f,targetClass:a,blocks:l,priority:d,coexistsWithDefault:h,sourcePath:r}}o(jV,"createLayoutFromFrontmatter");function $V(n){if(!n||typeof n!="object")return!1;let e=n;return!(typeof e.uid!="string"||e.uid.length===0||typeof e.label!="string"||typeof e.targetClass!="string"||e.targetClass.length===0||!Array.isArray(e.blocks)||e.blocks.length===0||e.blocks.some(t=>typeof t!="string")||typeof e.priority!="number"||!Number.isFinite(e.priority)||typeof e.coexistsWithDefault!="boolean"||typeof e.sourcePath!="string")}o($V,"isLayout");function VV(n){let e=n.trim();if(e.length===0)return[];let t=e.match(/^\[\[([^\]]+)\]\]$/);return(t?t[1]:e).split("|").map(i=>i.trim()).filter(i=>i.length>0)}o(VV,"extractClassIdentifiers");function UV(n){if(!n)return!1;let e=dI(n.exo__Instance_class);for(let t of e)for(let r of VV(t))if(r===Bi.LAYOUT_CLASS_IRI||r===Bi.LAYOUT_CLASS_UID)return!0;return!1}o(UV,"isLayoutFrontmatter")});var gI=S(Ut=>{"use strict";Object.defineProperty(Ut,"__esModule",{value:!0});Ut.BACKLINKS_TABLE_BLOCK_CLASS_UID=Ut.BACKLINKS_TABLE_BLOCK_CLASS_IRI=Ut.PROPERTIES_BLOCK_CLASS_UID=Ut.PROPERTIES_BLOCK_CLASS_IRI=void 0;Ut.createLayoutBlockFromFrontmatter=HV;Ut.isLayoutBlockFrontmatter=QV;Ut.isPropertiesBlock=KV;Ut.isBacklinksTableBlock=YV;var BV=qs(),Sv=df();Ut.PROPERTIES_BLOCK_CLASS_IRI="exo__PropertiesBlock";Ut.PROPERTIES_BLOCK_CLASS_UID="fd039b3c-ed2b-41c2-a42e-bbfcdd074bfe";Ut.BACKLINKS_TABLE_BLOCK_CLASS_IRI="exo__BacklinksTableBlock";Ut.BACKLINKS_TABLE_BLOCK_CLASS_UID="2e868956-d81e-43fd-9817-1addde9cb311";function pI(n){return n==null?[]:Array.isArray(n)?n.filter(e=>typeof e=="string"):typeof n=="string"?[n]:[]}o(pI,"toStringArray");function qV(n){let e=n.lastIndexOf("/"),t=e>=0?n.slice(e+1):n,r=t.lastIndexOf(".");return r>=0?t.slice(0,r):t}o(qV,"basenameFromPath");function mI(n,e){if(typeof n=="boolean")return n;if(typeof n=="string"){let t=n.trim().toLowerCase();if(t==="true")return!0;if(t==="false")return!1}return e}o(mI,"parseBoolean");function WV(n){if(typeof n=="number"&&Number.isFinite(n)&&Number.isInteger(n))return n;if(typeof n=="string"){let e=Number.parseInt(n,10);if(Number.isFinite(e))return e}return null}o(WV,"parseInteger");function GV(n){let e=n.trim();if(e.length===0)return[];let t=e.match(/^\[\[([^\]]+)\]\]$/);return(t?t[1]:e).split("|").map(i=>i.trim()).filter(i=>i.length>0)}o(GV,"extractClassIdentifiers");function Em(n,e,t){let r=pI(n.exo__Instance_class);for(let i of r)for(let s of GV(i))if(s===e||s===t)return!0;return!1}o(Em,"classOf");function zV(n,e){let t=e.warn??(()=>{}),r=n.exo__Asset_uid,i=typeof r=="string"?r.trim():"";if(i.length===0)return t(`LayoutBlock: exo__Asset_uid missing at ${e.sourcePath}`),null;let s=n.exo__LayoutBlock_title,a=n.exo__Asset_label,c=typeof s=="string"&&s.trim().length>0?s.trim():typeof a=="string"&&a.trim().length>0?a.trim():qV(e.sourcePath),l=mI(n.exo__LayoutBlock_collapsed,!1);return{uid:i,title:c,collapsed:l,sourcePath:e.sourcePath}}o(zV,"extractBase");function HV(n,e){let t=e.warn??(()=>{});if(!n||typeof n!="object")return t(`LayoutBlock: missing frontmatter at ${e.sourcePath}`),null;let r=zV(n,e);if(r===null)return null;if(Em(n,Ut.PROPERTIES_BLOCK_CLASS_IRI,Ut.PROPERTIES_BLOCK_CLASS_UID))return{...r,kind:"properties"};if(Em(n,Ut.BACKLINKS_TABLE_BLOCK_CLASS_IRI,Ut.BACKLINKS_TABLE_BLOCK_CLASS_UID)){let i=(0,Sv.normalizeRef)(n.exo__BacklinksTableBlock_rowClass),s=(0,Sv.normalizeRef)(n.exo__BacklinksTableBlock_referencingProperty);if(i===null||s===null)return t(`BacklinksTableBlock ${r.uid}: rowClass and referencingProperty required (${e.sourcePath})`),null;let a=pI(n.exo__BacklinksTableBlock_columns),c=[];for(let p of a){let y=BV.WikiLinkHelpers.normalize(p);y.length>0&&c.push(y)}let l=(0,Sv.normalizeRef)(n.exo__BacklinksTableBlock_sortBy),u=n.exo__BacklinksTableBlock_sortOrder,f=typeof u=="string"&&u.trim().toLowerCase()==="desc"?"desc":"asc",d=WV(n.exo__BacklinksTableBlock_limit),h=mI(n.exo__BacklinksTableBlock_showArchived,!1);return{...r,kind:"backlinks-table",rowClass:i,referencingProperty:s,columns:c,sortBy:l,sortOrder:f,limit:d,showArchived:h}}return t(`LayoutBlock ${r.uid}: unknown block class at ${e.sourcePath} \u2014 expected exo__PropertiesBlock or exo__BacklinksTableBlock`),null}o(HV,"createLayoutBlockFromFrontmatter");function QV(n){return n?Em(n,Ut.PROPERTIES_BLOCK_CLASS_IRI,Ut.PROPERTIES_BLOCK_CLASS_UID)||Em(n,Ut.BACKLINKS_TABLE_BLOCK_CLASS_IRI,Ut.BACKLINKS_TABLE_BLOCK_CLASS_UID):!1}o(QV,"isLayoutBlockFrontmatter");function KV(n){return n.kind==="properties"}o(KV,"isPropertiesBlock");function YV(n){return n.kind==="backlinks-table"}o(YV,"isBacklinksTableBlock")});var Tm=S(Me=>{"use strict";Object.defineProperty(Me,"__esModule",{value:!0});Me.isPropertiesBlock=Me.isLayoutBlockFrontmatter=Me.isBacklinksTableBlock=Me.createLayoutBlockFromFrontmatter=Me.PROPERTIES_BLOCK_CLASS_UID=Me.PROPERTIES_BLOCK_CLASS_IRI=Me.BACKLINKS_TABLE_BLOCK_CLASS_UID=Me.BACKLINKS_TABLE_BLOCK_CLASS_IRI=Me.isLayoutFrontmatter=Me.isLayout=Me.createLayoutFromFrontmatter=Me.LAYOUT_CLASS_UID=Me.LAYOUT_CLASS_IRI=Me.normalizeRef=Me.isRelationColumnSetFrontmatter=Me.isRelationColumnSet=Me.createRelationColumnSetFromFrontmatter=Me.RELATION_COLUMN_SET_CLASS_UID=Me.RELATION_COLUMN_SET_CLASS_IRI=void 0;var wl=df();Object.defineProperty(Me,"RELATION_COLUMN_SET_CLASS_IRI",{enumerable:!0,get:o(function(){return wl.RELATION_COLUMN_SET_CLASS_IRI},"get")});Object.defineProperty(Me,"RELATION_COLUMN_SET_CLASS_UID",{enumerable:!0,get:o(function(){return wl.RELATION_COLUMN_SET_CLASS_UID},"get")});Object.defineProperty(Me,"createRelationColumnSetFromFrontmatter",{enumerable:!0,get:o(function(){return wl.createRelationColumnSetFromFrontmatter},"get")});Object.defineProperty(Me,"isRelationColumnSet",{enumerable:!0,get:o(function(){return wl.isRelationColumnSet},"get")});Object.defineProperty(Me,"isRelationColumnSetFrontmatter",{enumerable:!0,get:o(function(){return wl.isRelationColumnSetFrontmatter},"get")});Object.defineProperty(Me,"normalizeRef",{enumerable:!0,get:o(function(){return wl.normalizeRef},"get")});var hf=hI();Object.defineProperty(Me,"LAYOUT_CLASS_IRI",{enumerable:!0,get:o(function(){return hf.LAYOUT_CLASS_IRI},"get")});Object.defineProperty(Me,"LAYOUT_CLASS_UID",{enumerable:!0,get:o(function(){return hf.LAYOUT_CLASS_UID},"get")});Object.defineProperty(Me,"createLayoutFromFrontmatter",{enumerable:!0,get:o(function(){return hf.createLayoutFromFrontmatter},"get")});Object.defineProperty(Me,"isLayout",{enumerable:!0,get:o(function(){return hf.isLayout},"get")});Object.defineProperty(Me,"isLayoutFrontmatter",{enumerable:!0,get:o(function(){return hf.isLayoutFrontmatter},"get")});var Ba=gI();Object.defineProperty(Me,"BACKLINKS_TABLE_BLOCK_CLASS_IRI",{enumerable:!0,get:o(function(){return Ba.BACKLINKS_TABLE_BLOCK_CLASS_IRI},"get")});Object.defineProperty(Me,"BACKLINKS_TABLE_BLOCK_CLASS_UID",{enumerable:!0,get:o(function(){return Ba.BACKLINKS_TABLE_BLOCK_CLASS_UID},"get")});Object.defineProperty(Me,"PROPERTIES_BLOCK_CLASS_IRI",{enumerable:!0,get:o(function(){return Ba.PROPERTIES_BLOCK_CLASS_IRI},"get")});Object.defineProperty(Me,"PROPERTIES_BLOCK_CLASS_UID",{enumerable:!0,get:o(function(){return Ba.PROPERTIES_BLOCK_CLASS_UID},"get")});Object.defineProperty(Me,"createLayoutBlockFromFrontmatter",{enumerable:!0,get:o(function(){return Ba.createLayoutBlockFromFrontmatter},"get")});Object.defineProperty(Me,"isBacklinksTableBlock",{enumerable:!0,get:o(function(){return Ba.isBacklinksTableBlock},"get")});Object.defineProperty(Me,"isLayoutBlockFrontmatter",{enumerable:!0,get:o(function(){return Ba.isLayoutBlockFrontmatter},"get")});Object.defineProperty(Me,"isPropertiesBlock",{enumerable:!0,get:o(function(){return Ba.isPropertiesBlock},"get")})});var _I=S(Am=>{"use strict";Object.defineProperty(Am,"__esModule",{value:!0});Am.RelationColumnSetResolver=void 0;var yI=df(),XV={warn:o(()=>{},"warn")},bv=class{static{o(this,"RelationColumnSetResolver")}constructor(e,t={}){this.provider=e,this.logger=t.logger??XV}resolve(e,t){if(!e||e.length===0)return null;let r=t!=null?(0,yI.normalizeRef)(t):null,i=this.provider();if(i.length===0)return null;for(let s of e){let a=(0,yI.normalizeRef)(s);if(a===null)continue;if(r!==null){let l=this.filterTier1(i,a,r);if(l.length>0)return this.tiebreak(l,1)}let c=this.filterTier2(i,a);if(c.length>0)return this.tiebreak(c,2);if(r!==null){let l=this.filterTier3(i,r);if(l.length>0)return this.tiebreak(l,3)}}return null}filterTier1(e,t,r){let i=[];for(let s of e)s.targetClasses!==null&&s.referencingProperty===r&&s.targetClasses.includes(t)&&i.push(s);return i}filterTier2(e,t){let r=[];for(let i of e)i.targetClasses!==null&&i.referencingProperty===null&&i.targetClasses.includes(t)&&r.push(i);return r}filterTier3(e,t){let r=[];for(let i of e)i.targetClasses===null&&i.referencingProperty===t&&r.push(i);return r}tiebreak(e,t){let r=e.slice().sort((s,a)=>{let c=a.priority-s.priority;return c!==0?c:s.uid.localeCompare(a.uid)}),i=r[0];if(r.length>1){let s=i.priority,a=r.filter(c=>c.priority===s);if(a.length>1){let c=a.slice(1).map(l=>l.uid).join(", ");this.logger.warn(`RelationColumnSetResolver: tier=${t} priority=${s} collision \u2014 selected ${i.uid}; tied losers: ${c}`)}}return i}};Am.RelationColumnSetResolver=bv});var SI=S(xm=>{"use strict";Object.defineProperty(xm,"__esModule",{value:!0});xm.RelationColumnSetResolver=void 0;var JV=_I();Object.defineProperty(xm,"RelationColumnSetResolver",{enumerable:!0,get:o(function(){return JV.RelationColumnSetResolver},"get")})});var vI=S(pf=>{"use strict";Object.defineProperty(pf,"__esModule",{value:!0});pf.LayoutSelector=void 0;pf.selectByPriority=bI;var ZV=qs(),vv=class{static{o(this,"LayoutSelector")}constructor(e){this.source=e}resolve(e){if(!Array.isArray(e)||e.length===0)return null;let t=this.source.all;if(t.length===0)return null;for(let r of e){if(typeof r!="string")continue;let i=ZV.WikiLinkHelpers.normalize(r);if(i.length===0)continue;let s=t.filter(a=>a.targetClass===i);if(s.length!==0)return bI(s)}return null}};pf.LayoutSelector=vv;function bI(n){if(n.length===0)throw new Error("selectByPriority: expected at least one candidate");return n.length===1?n[0]:[...n].sort((t,r)=>t.priority!==r.priority?r.priority-t.priority:t.uid<r.uid?-1:t.uid>r.uid?1:0)[0]}o(bI,"selectByPriority")});var Ss=S(Im=>{"use strict";Object.defineProperty(Im,"__esModule",{value:!0});Im.ErrorCode=void 0;var wI;(function(n){n[n.INVALID_INPUT=1e3]="INVALID_INPUT",n[n.INVALID_FORMAT=1001]="INVALID_FORMAT",n[n.MISSING_REQUIRED_FIELD=1002]="MISSING_REQUIRED_FIELD",n[n.INVALID_SCHEMA=1003]="INVALID_SCHEMA",n[n.NETWORK_ERROR=2e3]="NETWORK_ERROR",n[n.REQUEST_TIMEOUT=2001]="REQUEST_TIMEOUT",n[n.CONNECTION_FAILED=2002]="CONNECTION_FAILED",n[n.FILE_READ_ERROR=2003]="FILE_READ_ERROR",n[n.FILE_WRITE_ERROR=2004]="FILE_WRITE_ERROR",n[n.INVALID_STATE=3e3]="INVALID_STATE",n[n.INVALID_TRANSITION=3001]="INVALID_TRANSITION",n[n.OPERATION_FAILED=3002]="OPERATION_FAILED",n[n.CONCURRENT_MODIFICATION=3003]="CONCURRENT_MODIFICATION",n[n.PERMISSION_DENIED=4e3]="PERMISSION_DENIED",n[n.UNAUTHORIZED=4001]="UNAUTHORIZED",n[n.FORBIDDEN=4003]="FORBIDDEN",n[n.NOT_FOUND=5e3]="NOT_FOUND",n[n.RESOURCE_EXHAUSTED=5001]="RESOURCE_EXHAUSTED",n[n.ALREADY_EXISTS=5002]="ALREADY_EXISTS",n[n.UNKNOWN_ERROR=9e3]="UNKNOWN_ERROR",n[n.INTERNAL_ERROR=9001]="INTERNAL_ERROR"})(wI||(Im.ErrorCode=wI={}))});var bs=S(Cm=>{"use strict";Object.defineProperty(Cm,"__esModule",{value:!0});Cm.ApplicationError=void 0;var wv=class extends Error{static{o(this,"ApplicationError")}constructor(e,t){super(e),this.name=this.constructor.name,this.context=t,this.timestamp=new Date,Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}format(){let e=`\u274C ${this.name}: ${this.message}`;if(this.guidance&&(e+=`
413
+ `)?`"${e.replace(/"/g,'""')}"`:e}};ym.ResultSerializer=nv});var rI=S(_l=>{"use strict";Object.defineProperty(_l,"__esModule",{value:!0});_l.FileAlreadyExistsError=_l.FileNotFoundError=void 0;var iv=class extends Error{static{o(this,"FileNotFoundError")}constructor(e){super(`File not found: ${e}`),this.name="FileNotFoundError"}};_l.FileNotFoundError=iv;var sv=class extends Error{static{o(this,"FileAlreadyExistsError")}constructor(e){super(`File already exists: ${e}`),this.name="FileAlreadyExistsError"}};_l.FileAlreadyExistsError=sv});var ov=S(br=>{"use strict";var k$=br&&br.__decorate||function(n,e,t,r){var i=arguments.length,s=i<3?e:r===null?r=Object.getOwnPropertyDescriptor(e,t):r,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(n,e,t,r);else for(var c=n.length-1;c>=0;c--)(a=n[c])&&(s=(i<3?a(s):i>3?a(e,t,s):a(e,t))||s);return i>3&&s&&Object.defineProperty(e,t,s),s},M$=br&&br.__metadata||function(n,e){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,e)};Object.defineProperty(br,"__esModule",{value:!0});br.VaultSettings=br.DEFAULT_FLEETING_NOTE_CLASS_UID=br.DEFAULT_INBOX_FOLDER=br.DEFAULT_OWNER_IDENTITY=void 0;var j$=le();br.DEFAULT_OWNER_IDENTITY='"[[!kitelev]]"';br.DEFAULT_INBOX_FOLDER="01 Inbox";br.DEFAULT_FLEETING_NOTE_CLASS_UID="fca0a931-a01f-48e4-b72a-4af206c94bc7";var av=class{static{o(this,"VaultSettings")}constructor(e){this.ownerIdentity=e?.ownerIdentity??br.DEFAULT_OWNER_IDENTITY,this.defaultInboxFolder=e?.defaultInboxFolder??br.DEFAULT_INBOX_FOLDER,this.fleetingNoteClassUID=e?.fleetingNoteClassUID??br.DEFAULT_FLEETING_NOTE_CLASS_UID}getOwnerIdentity(){return this.ownerIdentity}getDefaultInboxFolder(){return this.defaultInboxFolder}getFleetingNoteClassUID(){return this.fleetingNoteClassUID}};br.VaultSettings=av;br.VaultSettings=av=k$([(0,j$.injectable)(),M$("design:paramtypes",[Object])],av)});var nI=S(Ba=>{"use strict";Object.defineProperty(Ba,"__esModule",{value:!0});Ba.container=void 0;Ba.registerCoreServices=lV;Ba.createChildContainer=uV;Ba.getContainer=fV;Ba.resetContainer=dV;Pd();var lf=le();Object.defineProperty(Ba,"container",{enumerable:!0,get:o(function(){return lf.container},"get")});var Ct=wt(),$$=qS(),V$=GS(),U$=DS(),B$=hS(),q$=lS(),W$=Up(),G$=qp(),z$=CS(),H$=OS(),Q$=LS(),K$=xS(),Y$=HS(),X$=tb(),J$=JS(),Z$=yS(),eV=SS(),tV=US(),rV=jS(),nV=zb(),iV=mS(),sV=ib(),aV=ab(),oV=_b(),cV=ov();function lV(n){let e=n||lf.container;e.registerSingleton(Ct.DI_TOKENS.DynamicFrontmatterGenerator,$$.DynamicFrontmatterGenerator),e.registerSingleton(Ct.DI_TOKENS.AlgorithmExtractor,V$.AlgorithmExtractor),e.isRegistered(Ct.DI_TOKENS.IVaultSettings)||e.register(Ct.DI_TOKENS.IVaultSettings,{useValue:new cV.VaultSettings}),e.registerSingleton(Ct.DI_TOKENS.EffortStatusWorkflow,W$.EffortStatusWorkflow),e.registerSingleton(Ct.DI_TOKENS.StatusTimestampService,G$.StatusTimestampService),e.registerSingleton(Ct.DI_TOKENS.TaskStatusService,q$.TaskStatusService),e.registerSingleton(Ct.DI_TOKENS.AreaCreationService,B$.AreaCreationService),e.registerSingleton(Ct.DI_TOKENS.ClassCreationService,Z$.ClassCreationService),e.registerSingleton(Ct.DI_TOKENS.ConceptCreationService,eV.ConceptCreationService),e.registerSingleton(Ct.DI_TOKENS.FleetingNoteCreationService,tV.FleetingNoteCreationService),e.registerSingleton(Ct.DI_TOKENS.SupervisionCreationService,rV.SupervisionCreationService),e.registerSingleton(Ct.DI_TOKENS.GenericAssetCreationService,aV.GenericAssetCreationService),e.registerSingleton(Ct.DI_TOKENS.PropertyCleanupService,U$.PropertyCleanupService),e.registerSingleton(Ct.DI_TOKENS.FolderRepairService,z$.FolderRepairService),e.registerSingleton(Ct.DI_TOKENS.LabelToAliasService,H$.LabelToAliasService),e.registerSingleton(Ct.DI_TOKENS.RenameToUidService,Q$.RenameToUidService),e.registerSingleton(Ct.DI_TOKENS.PlanningService,Y$.PlanningService),e.registerSingleton(Ct.DI_TOKENS.EffortVotingService,K$.EffortVotingService),e.registerSingleton(Ct.DI_TOKENS.SessionEventService,X$.SessionEventService),e.registerSingleton(Ct.DI_TOKENS.AssetConversionService,J$.AssetConversionService),e.registerSingleton(Ct.DI_TOKENS.NoteToRDFConverter,nV.NoteToRDFConverter),e.registerSingleton(Ct.DI_TOKENS.AreaHierarchyBuilder,iV.AreaHierarchyBuilder),e.registerSingleton(Ct.DI_TOKENS.URIConstructionService,sV.URIConstructionService),e.registerSingleton(Ct.DI_TOKENS.CriticalityZoneService,oV.CriticalityZoneService)}o(lV,"registerCoreServices");function uV(){return lf.container.createChildContainer()}o(uV,"createChildContainer");function fV(){return lf.container}o(fV,"getContainer");function dV(){lf.container.reset()}o(dV,"resetContainer")});var cv=S(Sl=>{"use strict";Object.defineProperty(Sl,"__esModule",{value:!0});Sl.DEFAULT_COLORS=Sl.NODE_FLAGS=void 0;Sl.NODE_FLAGS={PINNED:1,VISIBLE:2,SELECTED:4,HOVERED:8,ARCHIVED:16,SEARCH_MATCH:32,HIGHLIGHTED:64};Sl.DEFAULT_COLORS={NODE:1251006975,NODE_SELECTED:4290840575,NODE_HOVERED:1723558655,EDGE:2576980479,EDGE_SELECTED:4288151807,EDGE_HIERARCHY:2619846911}});var uv=S(_m=>{"use strict";Object.defineProperty(_m,"__esModule",{value:!0});_m.StringTable=void 0;var lv=class n{static{o(this,"StringTable")}constructor(e){if(this.stringToIndex=new Map,this.strings=[],this.memoryBytes=0,e)for(let t of e)this.intern(t)}intern(e){let t=this.stringToIndex.get(e);if(t!==void 0)return t;let r=this.strings.length;return this.strings.push(e),this.stringToIndex.set(e,r),this.memoryBytes+=e.length*2+50,r}getIndex(e){return this.stringToIndex.get(e)??-1}getString(e){if(e<0||e>=this.strings.length)throw new RangeError(`StringTable index out of bounds: ${e}`);return this.strings[e]}has(e){return this.stringToIndex.has(e)}hasIndex(e){return e>=0&&e<this.strings.length}get size(){return this.strings.length}getMemoryBytes(){return this.memoryBytes}*entries(){for(let e=0;e<this.strings.length;e++)yield[e,this.strings[e]]}*values(){for(let e of this.strings)yield e}toArray(){return[...this.strings]}clear(){this.stringToIndex.clear(),this.strings=[],this.memoryBytes=0}static fromJSON(e){return new n(e)}toJSON(){return this.strings}internAll(e){return e.map(t=>this.intern(t))}getStrings(e){return e.map(t=>this.getString(t))}search(e){let t=typeof e=="string"?new RegExp(e):e,r=[];for(let i=0;i<this.strings.length;i++)t.test(this.strings[i])&&r.push([i,this.strings[i]]);return r}getStats(){let e=this.strings.reduce((t,r)=>t+r.length,0);return{count:this.strings.length,memoryBytes:this.memoryBytes,avgStringLength:this.strings.length>0?e/this.strings.length:0}}};_m.StringTable=lv});var iI=S(bm=>{"use strict";Object.defineProperty(bm,"__esModule",{value:!0});bm.CompactGraphStore=void 0;var Sm=uv(),Rn=cv(),hV={initialNodeCapacity:1e4,initialEdgeCapacity:5e4,growthFactor:2,maxCapacity:1e6};function fv(n,e){if(n===void 0)return e;if(typeof n=="number")return n;if(n.startsWith("#")){let t=n.slice(1);if(t.length===6)return parseInt(t,16)<<8|255;if(t.length===8)return parseInt(t,16)}return e}o(fv,"parseColor");var dv=class{static{o(this,"CompactGraphStore")}constructor(e){this.nodeCount=0,this.edgeCount=0,this.nodeIdToIndex=new Map,this.indexToNodeId=[],this.edgeIdToIndex=new Map,this.config={...hV,...e},this.nodeCapacity=this.config.initialNodeCapacity,this.edgeCapacity=this.config.initialEdgeCapacity,this.nodes=this.allocateNodeArrays(this.nodeCapacity),this.edges=this.allocateEdgeArrays(this.edgeCapacity),this.uriTable=new Sm.StringTable,this.labelTable=new Sm.StringTable,this.typeTable=new Sm.StringTable,this.predicateTable=new Sm.StringTable}allocateNodeArrays(e){return{positions:new Float32Array(e*2),radii:new Float32Array(e),colors:new Uint32Array(e),types:new Uint16Array(e),flags:new Uint8Array(e)}}allocateEdgeArrays(e){return{sourceIndices:new Uint32Array(e),targetIndices:new Uint32Array(e),predicateIndices:new Uint16Array(e),widths:new Float32Array(e),colors:new Uint32Array(e)}}resizeNodeArrays(e){if(e<=this.nodeCapacity)return;if(e>this.config.maxCapacity)throw new Error(`Cannot resize beyond max capacity (${this.config.maxCapacity})`);let t=this.allocateNodeArrays(e);t.positions.set(this.nodes.positions.subarray(0,this.nodeCount*2)),t.radii.set(this.nodes.radii.subarray(0,this.nodeCount)),t.colors.set(this.nodes.colors.subarray(0,this.nodeCount)),t.types.set(this.nodes.types.subarray(0,this.nodeCount)),t.flags.set(this.nodes.flags.subarray(0,this.nodeCount)),this.nodes=t,this.nodeCapacity=e}resizeEdgeArrays(e){if(e<=this.edgeCapacity)return;if(e>this.config.maxCapacity)throw new Error(`Cannot resize beyond max capacity (${this.config.maxCapacity})`);let t=this.allocateEdgeArrays(e);t.sourceIndices.set(this.edges.sourceIndices.subarray(0,this.edgeCount)),t.targetIndices.set(this.edges.targetIndices.subarray(0,this.edgeCount)),t.predicateIndices.set(this.edges.predicateIndices.subarray(0,this.edgeCount)),t.widths.set(this.edges.widths.subarray(0,this.edgeCount)),t.colors.set(this.edges.colors.subarray(0,this.edgeCount)),this.edges=t,this.edgeCapacity=e}ensureNodeCapacity(e){let t=this.nodeCount+e;if(t>this.nodeCapacity){let r=Math.max(t,Math.floor(this.nodeCapacity*this.config.growthFactor));this.resizeNodeArrays(r)}}ensureEdgeCapacity(e){let t=this.edgeCount+e;if(t>this.edgeCapacity){let r=Math.max(t,Math.floor(this.edgeCapacity*this.config.growthFactor));this.resizeEdgeArrays(r)}}addNode(e){let t=this.nodeIdToIndex.get(e.id);if(t!==void 0)return this.updateNodeAt(t,e),t;this.ensureNodeCapacity(1);let r=this.nodeCount++,i=r*2;this.nodes.positions[i]=e.x??Math.random()*1e3-500,this.nodes.positions[i+1]=e.y??Math.random()*1e3-500,this.nodes.radii[r]=e.radius??8,this.nodes.colors[r]=fv(e.color,Rn.DEFAULT_COLORS.NODE),e.assetClass?this.nodes.types[r]=this.typeTable.intern(e.assetClass):this.nodes.types[r]=0;let s=Rn.NODE_FLAGS.VISIBLE;return e.isPinned&&(s|=Rn.NODE_FLAGS.PINNED),e.isArchived&&(s|=Rn.NODE_FLAGS.ARCHIVED),this.nodes.flags[r]=s,this.nodeIdToIndex.set(e.id,r),this.indexToNodeId[r]=e.id,this.uriTable.intern(e.id),e.label&&this.labelTable.intern(e.label),r}updateNodeAt(e,t){let r=e*2;t.x!==void 0&&(this.nodes.positions[r]=t.x),t.y!==void 0&&(this.nodes.positions[r+1]=t.y),t.radius!==void 0&&(this.nodes.radii[e]=t.radius),t.color!==void 0&&(this.nodes.colors[e]=fv(t.color,Rn.DEFAULT_COLORS.NODE)),t.assetClass!==void 0&&(this.nodes.types[e]=this.typeTable.intern(t.assetClass));let i=this.nodes.flags[e];t.isPinned!==void 0&&(i=t.isPinned?i|Rn.NODE_FLAGS.PINNED:i&~Rn.NODE_FLAGS.PINNED),t.isArchived!==void 0&&(i=t.isArchived?i|Rn.NODE_FLAGS.ARCHIVED:i&~Rn.NODE_FLAGS.ARCHIVED),this.nodes.flags[e]=i}addEdge(e){let t=this.nodeIdToIndex.get(e.sourceId),r=this.nodeIdToIndex.get(e.targetId);if(t===void 0||r===void 0)return-1;let i=`${e.sourceId}->${e.targetId}:${e.predicate??"link"}`,s=this.edgeIdToIndex.get(i);if(s!==void 0)return s;this.ensureEdgeCapacity(1);let a=this.edgeCount++;return this.edges.sourceIndices[a]=t,this.edges.targetIndices[a]=r,this.edges.widths[a]=e.width??1,this.edges.colors[a]=fv(e.color,Rn.DEFAULT_COLORS.EDGE),e.predicate?this.edges.predicateIndices[a]=this.predicateTable.intern(e.predicate):this.edges.predicateIndices[a]=0,this.edgeIdToIndex.set(i,a),a}addNodes(e){return this.ensureNodeCapacity(e.length),e.map(t=>this.addNode(t))}addEdges(e){return this.ensureEdgeCapacity(e.length),e.map(t=>this.addEdge(t))}loadChunk(e){let r=this.addNodes(e.nodes).filter(a=>a>=0).length,s=this.addEdges(e.edges).filter(a=>a>=0).length;return{nodesAdded:r,edgesAdded:s}}getNodePosition(e){let t=this.nodeIdToIndex.get(e);if(t===void 0)return null;let r=t*2;return{x:this.nodes.positions[r],y:this.nodes.positions[r+1]}}getNodePositionByIndex(e){let t=e*2;return{x:this.nodes.positions[t],y:this.nodes.positions[t+1]}}setNodePosition(e,t,r){let i=this.nodeIdToIndex.get(e);if(i===void 0)return!1;let s=i*2;return this.nodes.positions[s]=t,this.nodes.positions[s+1]=r,!0}setNodePositionByIndex(e,t,r){let i=e*2;this.nodes.positions[i]=t,this.nodes.positions[i+1]=r}updateNodePositions(e){let t=0;for(let[r,i]of e)this.setNodePosition(r,i.x,i.y)&&t++;return t}applyNodeUpdates(e){let t=performance.now(),r=0;for(let i of e){let s=i.index;if(!(s<0||s>=this.nodeCount)){if(i.x!==void 0||i.y!==void 0){let a=s*2;i.x!==void 0&&(this.nodes.positions[a]=i.x),i.y!==void 0&&(this.nodes.positions[a+1]=i.y)}i.radius!==void 0&&(this.nodes.radii[s]=i.radius),i.color!==void 0&&(this.nodes.colors[s]=i.color),i.setFlags!==void 0&&(this.nodes.flags[s]|=i.setFlags),i.clearFlags!==void 0&&(this.nodes.flags[s]&=~i.clearFlags),r++}}return{nodesUpdated:r,edgesUpdated:0,timeMs:performance.now()-t}}getNodeFlags(e){let t=this.nodeIdToIndex.get(e);return t===void 0?0:this.nodes.flags[t]}setNodeFlag(e,t){let r=this.nodeIdToIndex.get(e);return r===void 0?!1:(this.nodes.flags[r]|=t,!0)}clearNodeFlag(e,t){let r=this.nodeIdToIndex.get(e);return r===void 0?!1:(this.nodes.flags[r]&=~t,!0)}hasNodeFlag(e,t){return(this.getNodeFlags(e)&t)!==0}selectNode(e){return this.setNodeFlag(e,Rn.NODE_FLAGS.SELECTED)}deselectNode(e){return this.clearNodeFlag(e,Rn.NODE_FLAGS.SELECTED)}clearSelection(){for(let e=0;e<this.nodeCount;e++)this.nodes.flags[e]&=~Rn.NODE_FLAGS.SELECTED}getSelectedNodeIds(){let e=[];for(let t=0;t<this.nodeCount;t++)this.nodes.flags[t]&Rn.NODE_FLAGS.SELECTED&&e.push(this.indexToNodeId[t]);return e}getNodeId(e){return this.indexToNodeId[e]}getNodeIndex(e){return this.nodeIdToIndex.get(e)}hasNode(e){return this.nodeIdToIndex.has(e)}getNodeCount(){return this.nodeCount}getEdgeCount(){return this.edgeCount}getNodeEdges(e){let t=this.nodeIdToIndex.get(e);if(t===void 0)return[];let r=[];for(let i=0;i<this.edgeCount;i++)this.edges.sourceIndices[i]===t?r.push({edgeIndex:i,isSource:!0}):this.edges.targetIndices[i]===t&&r.push({edgeIndex:i,isSource:!1});return r}getNeighbors(e){let t=this.nodeIdToIndex.get(e);if(t===void 0)return[];let r=new Set;for(let i=0;i<this.edgeCount;i++)if(this.edges.sourceIndices[i]===t){let s=this.edges.targetIndices[i];r.add(this.indexToNodeId[s])}else if(this.edges.targetIndices[i]===t){let s=this.edges.sourceIndices[i];r.add(this.indexToNodeId[s])}return Array.from(r)}getRawArrays(){return{nodes:this.nodes,edges:this.edges,nodeCount:this.nodeCount,edgeCount:this.edgeCount}}getPositionsArray(){return this.nodes.positions.subarray(0,this.nodeCount*2)}getMemoryStats(){let e=this.nodeCapacity*2*4+this.nodeCapacity*4+this.nodeCapacity*4+this.nodeCapacity*2+this.nodeCapacity,t=this.edgeCapacity*4+this.edgeCapacity*4+this.edgeCapacity*2+this.edgeCapacity*4+this.edgeCapacity*4,r=this.uriTable.getMemoryBytes()+this.labelTable.getMemoryBytes()+this.typeTable.getMemoryBytes()+this.predicateTable.getMemoryBytes();return{nodeCount:this.nodeCount,edgeCount:this.edgeCount,nodeCapacity:this.nodeCapacity,edgeCapacity:this.edgeCapacity,nodeMemoryBytes:e,edgeMemoryBytes:t,stringTableBytes:r,totalBytes:e+t+r,internedStringCount:this.uriTable.size+this.labelTable.size+this.typeTable.size+this.predicateTable.size}}clear(){this.nodeCount=0,this.edgeCount=0,this.nodeIdToIndex.clear(),this.indexToNodeId=[],this.edgeIdToIndex.clear(),this.uriTable.clear(),this.labelTable.clear(),this.typeTable.clear(),this.predicateTable.clear(),this.nodeCapacity=this.config.initialNodeCapacity,this.edgeCapacity=this.config.initialEdgeCapacity,this.nodes=this.allocateNodeArrays(this.nodeCapacity),this.edges=this.allocateEdgeArrays(this.edgeCapacity)}getTypeTable(){return this.typeTable}getLabelTable(){return this.labelTable}getUriTable(){return this.uriTable}getPredicateTable(){return this.predicateTable}};bm.CompactGraphStore=dv});var sI=S(vl=>{"use strict";Object.defineProperty(vl,"__esModule",{value:!0});vl.MemoryPool=void 0;vl.getGlobalPool=mV;vl.resetGlobalPool=gV;var pV={maxPooledArrays:16,sizeBuckets:[64,256,1024,4096,16384,65536,262144],autoCleanup:!0,maxPoolMemory:50*1024*1024},vm=class{static{o(this,"MemoryPool")}constructor(e){this.float32Pool=new Map,this.uint32Pool=new Map,this.uint16Pool=new Map,this.uint8Pool=new Map,this.stats={poolHits:0,poolMisses:0,pooledArrays:0,pooledMemory:0,returned:0,rejected:0},this.config={...pV,...e};for(let t of this.config.sizeBuckets)this.float32Pool.set(t,[]),this.uint32Pool.set(t,[]),this.uint16Pool.set(t,[]),this.uint8Pool.set(t,[])}getBucketSize(e){for(let t of this.config.sizeBuckets)if(t>=e)return t;return e}getFloat32(e){let t=this.getBucketSize(e),r=this.float32Pool.get(t);if(r&&r.length>0){this.stats.poolHits++,this.stats.pooledArrays--,this.stats.pooledMemory-=t*4;let i=r.pop();return i.fill(0),i}return this.stats.poolMisses++,new Float32Array(t)}getUint32(e){let t=this.getBucketSize(e),r=this.uint32Pool.get(t);if(r&&r.length>0){this.stats.poolHits++,this.stats.pooledArrays--,this.stats.pooledMemory-=t*4;let i=r.pop();return i.fill(0),i}return this.stats.poolMisses++,new Uint32Array(t)}getUint16(e){let t=this.getBucketSize(e),r=this.uint16Pool.get(t);if(r&&r.length>0){this.stats.poolHits++,this.stats.pooledArrays--,this.stats.pooledMemory-=t*2;let i=r.pop();return i.fill(0),i}return this.stats.poolMisses++,new Uint16Array(t)}getUint8(e){let t=this.getBucketSize(e),r=this.uint8Pool.get(t);if(r&&r.length>0){this.stats.poolHits++,this.stats.pooledArrays--,this.stats.pooledMemory-=t;let i=r.pop();return i.fill(0),i}return this.stats.poolMisses++,new Uint8Array(t)}releaseFloat32(e){this.releaseToPool(this.float32Pool,e,4)}releaseUint32(e){this.releaseToPool(this.uint32Pool,e,4)}releaseUint16(e){this.releaseToPool(this.uint16Pool,e,2)}releaseUint8(e){this.releaseToPool(this.uint8Pool,e,1)}releaseToPool(e,t,r){let i=t.length,s=e.get(i);if(s&&s.length<this.config.maxPooledArrays){if(this.config.autoCleanup&&this.stats.pooledMemory+i*r>this.config.maxPoolMemory){this.stats.rejected++;return}s.push(t),this.stats.returned++,this.stats.pooledArrays++,this.stats.pooledMemory+=i*r}else this.stats.rejected++}getStats(){return{...this.stats}}getHitRatio(){let e=this.stats.poolHits+this.stats.poolMisses;return e>0?this.stats.poolHits/e:0}clear(){for(let e of this.float32Pool.values())e.length=0;for(let e of this.uint32Pool.values())e.length=0;for(let e of this.uint16Pool.values())e.length=0;for(let e of this.uint8Pool.values())e.length=0;this.stats.pooledArrays=0,this.stats.pooledMemory=0}cleanup(e){if(this.stats.pooledMemory<=e)return;let t=[...this.config.sizeBuckets].sort((r,i)=>i-r);for(let r of t){if(this.stats.pooledMemory<=e)break;for(let[i,s]of[[this.float32Pool,4],[this.uint32Pool,4],[this.uint16Pool,2],[this.uint8Pool,1]]){let a=i.get(r);if(a)for(;a.length>0&&this.stats.pooledMemory>e;)a.pop(),this.stats.pooledArrays--,this.stats.pooledMemory-=r*s}}}resetStats(){this.stats.poolHits=0,this.stats.poolMisses=0,this.stats.returned=0,this.stats.rejected=0}};vl.MemoryPool=vm;var bl=null;function mV(){return bl||(bl=new vm),bl}o(mV,"getGlobalPool");function gV(){bl&&bl.clear(),bl=null}o(gV,"resetGlobalPool")});var aI=S(uf=>{"use strict";Object.defineProperty(uf,"__esModule",{value:!0});uf.StreamingLoader=void 0;uf.createStreamingSource=_V;var yV={chunkSize:1e3,chunkDelay:0,autoResolveEdges:!0,maxConcurrency:1},hv=class{static{o(this,"StreamingLoader")}constructor(e,t){this.state="idle",this.pendingEdges=[],this.nodesLoaded=0,this.edgesLoaded=0,this.chunksProcessed=0,this.progressCallbacks=[],this.abortController=null,this.store=e,this.config={...yV,...t}}getState(){return this.state}getProgress(){let e=this.totalChunks!==void 0&&this.totalChunks>0?this.chunksProcessed/this.totalChunks:0;return{currentChunk:this.chunksProcessed,totalChunks:this.totalChunks,nodesLoaded:this.nodesLoaded,edgesLoaded:this.edgesLoaded,progress:e,isComplete:this.state==="completed"}}onProgress(e){return this.progressCallbacks.push(e),()=>{let t=this.progressCallbacks.indexOf(e);t>=0&&this.progressCallbacks.splice(t,1)}}notifyProgress(){let e=this.getProgress();for(let t of this.progressCallbacks)t(e)}loadChunk(e){if(this.state==="error")throw new Error("Loader is in error state");this.state="loading",e.totalChunks!==void 0&&(this.totalChunks=e.totalChunks);for(let t of e.nodes)this.store.addNode(t),this.nodesLoaded++;for(let t of e.edges)this.store.addEdge(t)>=0?this.edgesLoaded++:this.pendingEdges.push(t);this.chunksProcessed++,e.isLast&&this.finishLoading(),this.notifyProgress()}finishLoading(){if(this.config.autoResolveEdges&&this.pendingEdges.length>0){for(let e of this.pendingEdges)this.store.addEdge(e)>=0&&this.edgesLoaded++;this.pendingEdges=[]}this.state="completed",this.notifyProgress()}async loadFromIterator(e){this.reset(),this.state="loading",this.abortController=new AbortController;try{for await(let r of e){if(this.abortController.signal.aborted){this.state="paused";return}this.loadChunk(r),this.config.chunkDelay>0&&await this.delay(this.config.chunkDelay)}this.state!=="completed"&&this.finishLoading()}catch(t){throw this.state="error",t}finally{this.abortController=null}}async loadFromArrays(e,t){let r=this.createChunks(e,t);await this.loadFromIterator(this.arrayToAsyncIterator(r))}createChunks(e,t){let r=[],{chunkSize:i}=this.config,s=Math.ceil(e.length/i),a=Array(s).fill(null).map(()=>[]);for(let c of t){let l=e.findIndex(u=>u.id===c.sourceId);if(l>=0){let u=Math.floor(l/i);a[u].push(c)}}for(let c=0;c<s;c++){let l=c*i,u=Math.min(l+i,e.length);r.push({chunkIndex:c,totalChunks:s,nodes:e.slice(l,u),edges:a[c],isLast:c===s-1})}return r}async*arrayToAsyncIterator(e){for(let t of e)yield t}delay(e){return new Promise(t=>setTimeout(t,e))}cancel(){this.abortController&&this.abortController.abort(),this.state="paused"}reset(){this.state="idle",this.pendingEdges=[],this.nodesLoaded=0,this.edgesLoaded=0,this.chunksProcessed=0,this.totalChunks=void 0,this.abortController=null}getPendingEdgeCount(){return this.pendingEdges.length}getStats(){return{state:this.state,nodesLoaded:this.nodesLoaded,edgesLoaded:this.edgesLoaded,chunksProcessed:this.chunksProcessed,totalChunks:this.totalChunks,pendingEdges:this.pendingEdges.length,storeStats:this.store.getMemoryStats()}}};uf.StreamingLoader=hv;async function*_V(n,e,t=1e3){let r=0,i=0,s;for(;;){let a=await e(n,r,t);if(a.totalCount!==void 0&&s===void 0&&(s=Math.ceil(a.totalCount/t)),yield{chunkIndex:i,totalChunks:s,nodes:a.nodes,edges:a.edges,isLast:!a.hasMore},!a.hasMore)break;r+=t,i++}}o(_V,"createStreamingSource")});var lI=S(er=>{"use strict";Object.defineProperty(er,"__esModule",{value:!0});er.createStreamingSource=er.StreamingLoader=er.resetGlobalPool=er.getGlobalPool=er.MemoryPool=er.CompactGraphStore=er.StringTable=er.DEFAULT_COLORS=er.NODE_FLAGS=void 0;var oI=cv();Object.defineProperty(er,"NODE_FLAGS",{enumerable:!0,get:o(function(){return oI.NODE_FLAGS},"get")});Object.defineProperty(er,"DEFAULT_COLORS",{enumerable:!0,get:o(function(){return oI.DEFAULT_COLORS},"get")});var SV=uv();Object.defineProperty(er,"StringTable",{enumerable:!0,get:o(function(){return SV.StringTable},"get")});var bV=iI();Object.defineProperty(er,"CompactGraphStore",{enumerable:!0,get:o(function(){return bV.CompactGraphStore},"get")});var pv=sI();Object.defineProperty(er,"MemoryPool",{enumerable:!0,get:o(function(){return pv.MemoryPool},"get")});Object.defineProperty(er,"getGlobalPool",{enumerable:!0,get:o(function(){return pv.getGlobalPool},"get")});Object.defineProperty(er,"resetGlobalPool",{enumerable:!0,get:o(function(){return pv.resetGlobalPool},"get")});var cI=aI();Object.defineProperty(er,"StreamingLoader",{enumerable:!0,get:o(function(){return cI.StreamingLoader},"get")});Object.defineProperty(er,"createStreamingSource",{enumerable:!0,get:o(function(){return cI.createStreamingSource},"get")})});var uI=S(tr=>{"use strict";Object.defineProperty(tr,"__esModule",{value:!0});tr.ExoQLError=tr.ExoQL=tr.ExoQLBudgetExceededError=tr.ExoQLCycleError=tr.ExoQLEvalDisabledError=tr.ExoQLForbiddenKeywordError=tr.DEFAULT_EVAL_CONFIG=tr.validateExoQLAllowlist=tr.evaluateWithExoEval=void 0;var vV=Nc(),wV=kc(),EV=rl(),mv=Wb(),TV=De(),AV=G1();Object.defineProperty(tr,"evaluateWithExoEval",{enumerable:!0,get:o(function(){return AV.evaluateWithExoEval},"get")});var xV=B1();Object.defineProperty(tr,"validateExoQLAllowlist",{enumerable:!0,get:o(function(){return xV.validateExoQLAllowlist},"get")});var IV=q1();Object.defineProperty(tr,"DEFAULT_EVAL_CONFIG",{enumerable:!0,get:o(function(){return IV.DEFAULT_EVAL_CONFIG},"get")});var wm=Hu();Object.defineProperty(tr,"ExoQLForbiddenKeywordError",{enumerable:!0,get:o(function(){return wm.ExoQLForbiddenKeywordError},"get")});Object.defineProperty(tr,"ExoQLEvalDisabledError",{enumerable:!0,get:o(function(){return wm.ExoQLEvalDisabledError},"get")});Object.defineProperty(tr,"ExoQLCycleError",{enumerable:!0,get:o(function(){return wm.ExoQLCycleError},"get")});Object.defineProperty(tr,"ExoQLBudgetExceededError",{enumerable:!0,get:o(function(){return wm.ExoQLBudgetExceededError},"get")});var gv=class n{static{o(this,"ExoQL")}static async query(e,t,r){let{algebra:i,executor:s}=n.prepare(e,t,r);return s.executeAll(i)}static async ask(e,t,r){let{algebra:i,executor:s}=n.prepare(e,t,r);if(!s.isAskQuery(i))throw new ff("ExoQL.ask() requires an ASK query");return s.executeAsk(i)}static async construct(e,t,r){let{algebra:i,executor:s}=n.prepare(e,t,r);if(!s.isConstructQuery(i))throw new ff("ExoQL.construct() requires a CONSTRUCT query");return s.executeConstruct(i)}static async queryOwn(e,t,r,i){let s=await n.query(e,t,i);if(s.length===0)return[];let a=r?.subjectVar??"s",c=r?.predicateVar??"p",l=r?.objectVar??"o";return(await new mv.SourceAnnotator(t).annotate(s,a,c,l)).filter(d=>{let h=d.get(mv.SOURCE_VARIABLE);return h instanceof TV.Literal&&h.value==="own"})}static async isOwn(e,t,r,i){return await new mv.SourceAnnotator(i).determineSource(e,t,r)==="own"}static prepare(e,t,r){let i=new vV.ExoQLParser,s=new wV.ExoQLAlgebraTranslator,a=i.parse(e),c=s.translate(a),l=new EV.ExoQLQueryExecutor(t,r);return{algebra:c,executor:l}}};tr.ExoQL=gv;var ff=class extends Error{static{o(this,"ExoQLError")}constructor(e){super(e),this.name="ExoQLError"}};tr.ExoQLError=ff});var df=S(ri=>{"use strict";Object.defineProperty(ri,"__esModule",{value:!0});ri.RELATION_COLUMN_SET_CLASS_UID=ri.RELATION_COLUMN_SET_CLASS_IRI=void 0;ri.normalizeRef=yv;ri.createRelationColumnSetFromFrontmatter=RV;ri.isRelationColumnSet=OV;ri.isRelationColumnSetFrontmatter=FV;var fI=qs();function yv(n){if(typeof n!="string")return null;let e=fI.WikiLinkHelpers.normalize(n);return e.length>0?e:null}o(yv,"normalizeRef");function _v(n){return n==null?[]:Array.isArray(n)?n.filter(e=>typeof e=="string"):typeof n=="string"?[n]:[]}o(_v,"toStringArray");function CV(n){let e=n.lastIndexOf("/"),t=e>=0?n.slice(e+1):n,r=t.lastIndexOf(".");return r>=0?t.slice(0,r):t}o(CV,"basenameFromPath");function RV(n,e){let t=e.warn??(()=>{}),r=e.sourcePath;if(!n||typeof n!="object")return t(`RelationColumnSet: missing frontmatter at ${r}`),null;let i=n.exo__Asset_uid,s=typeof i=="string"?i.trim():"";if(s.length===0)return t(`RelationColumnSet: exo__Asset_uid missing at ${r}`),null;let a=_v(n.ui__RelationColumnSet_targetClass),c=[];for(let w of a){let v=yv(w);v!==null&&c.push(v)}let l=c.length>0?c:null,u=yv(n.ui__RelationColumnSet_referencingProperty);if(l===null&&u===null)return t(`RelationColumnSet ${s}: at least one of targetClass / referencingProperty required (${r})`),null;let f=_v(n.ui__RelationColumnSet_columns),d=[];for(let w of f){let v=fI.WikiLinkHelpers.normalize(w);v.length>0&&d.push(v)}if(d.length===0)return t(`RelationColumnSet ${s}: columns array must contain at least one entry (${r})`),null;let h=n.ui__RelationColumnSet_label,p=typeof h=="string"&&h.trim().length>0?h.trim():CV(r),y=n.ui__RelationColumnSet_priority,b=0;if(typeof y=="number"&&Number.isFinite(y))b=y;else if(typeof y=="string"){let w=Number.parseFloat(y);Number.isFinite(w)&&(b=w)}return{uid:s,label:p,targetClasses:l,referencingProperty:u,columns:d,priority:b,sourcePath:r}}o(RV,"createRelationColumnSetFromFrontmatter");function OV(n){if(!n||typeof n!="object")return!1;let e=n;return!(typeof e.uid!="string"||e.uid.length===0||typeof e.label!="string"||e.targetClasses!==null&&(!Array.isArray(e.targetClasses)||e.targetClasses.some(t=>typeof t!="string"))||e.referencingProperty!==null&&typeof e.referencingProperty!="string"||!Array.isArray(e.columns)||e.columns.length===0||e.columns.some(t=>typeof t!="string")||typeof e.priority!="number"||!Number.isFinite(e.priority)||typeof e.sourcePath!="string")}o(OV,"isRelationColumnSet");ri.RELATION_COLUMN_SET_CLASS_IRI="ui__RelationColumnSet";ri.RELATION_COLUMN_SET_CLASS_UID="97fc9862-c886-4d86-9a60-e0cf9d778575";function PV(n){let e=n.trim();if(e.length===0)return[];let t=e.match(/^\[\[([^\]]+)\]\]$/);return(t?t[1]:e).split("|").map(s=>s.trim()).filter(s=>s.length>0)}o(PV,"extractClassIdentifiers");function FV(n){if(!n)return!1;let e=n.exo__Instance_class,t=_v(e);for(let r of t)for(let i of PV(r))if(i===ri.RELATION_COLUMN_SET_CLASS_IRI||i===ri.RELATION_COLUMN_SET_CLASS_UID)return!0;return!1}o(FV,"isRelationColumnSetFrontmatter")});var hI=S(Bi=>{"use strict";Object.defineProperty(Bi,"__esModule",{value:!0});Bi.LAYOUT_CLASS_UID=Bi.LAYOUT_CLASS_IRI=void 0;Bi.createLayoutFromFrontmatter=jV;Bi.isLayout=$V;Bi.isLayoutFrontmatter=UV;var DV=qs(),NV=df();Bi.LAYOUT_CLASS_IRI="exo__Layout";Bi.LAYOUT_CLASS_UID="08d00289-a5c8-4df1-8885-40a00a014004";function dI(n){return n==null?[]:Array.isArray(n)?n.filter(e=>typeof e=="string"):typeof n=="string"?[n]:[]}o(dI,"toStringArray");function LV(n){let e=n.lastIndexOf("/"),t=e>=0?n.slice(e+1):n,r=t.lastIndexOf(".");return r>=0?t.slice(0,r):t}o(LV,"basenameFromPath");function kV(n,e){if(typeof n=="boolean")return n;if(typeof n=="string"){let t=n.trim().toLowerCase();if(t==="true")return!0;if(t==="false")return!1}return e}o(kV,"parseBoolean");function MV(n){if(typeof n=="number"&&Number.isFinite(n))return n;if(typeof n=="string"){let e=Number.parseFloat(n);if(Number.isFinite(e))return e}return 0}o(MV,"parsePriority");function jV(n,e){let t=e.warn??(()=>{}),r=e.sourcePath;if(!n||typeof n!="object")return t(`Layout: missing frontmatter at ${r}`),null;let i=n.exo__Asset_uid,s=typeof i=="string"?i.trim():"";if(s.length===0)return t(`Layout: exo__Asset_uid missing at ${r}`),null;let a=(0,NV.normalizeRef)(n.exo__Layout_targetClass);if(a===null)return t(`Layout ${s}: exo__Layout_targetClass required (${r})`),null;let c=dI(n.exo__Layout_blocks),l=[];for(let p of c){let y=DV.WikiLinkHelpers.normalize(p);y.length>0&&l.push(y)}if(l.length===0)return t(`Layout ${s}: exo__Layout_blocks must contain at least one block (${r})`),null;let u=n.exo__Asset_label,f=typeof u=="string"&&u.trim().length>0?u.trim():LV(r),d=MV(n.exo__Layout_priority),h=kV(n.exo__Layout_coexistsWithDefault,!1);return{uid:s,label:f,targetClass:a,blocks:l,priority:d,coexistsWithDefault:h,sourcePath:r}}o(jV,"createLayoutFromFrontmatter");function $V(n){if(!n||typeof n!="object")return!1;let e=n;return!(typeof e.uid!="string"||e.uid.length===0||typeof e.label!="string"||typeof e.targetClass!="string"||e.targetClass.length===0||!Array.isArray(e.blocks)||e.blocks.length===0||e.blocks.some(t=>typeof t!="string")||typeof e.priority!="number"||!Number.isFinite(e.priority)||typeof e.coexistsWithDefault!="boolean"||typeof e.sourcePath!="string")}o($V,"isLayout");function VV(n){let e=n.trim();if(e.length===0)return[];let t=e.match(/^\[\[([^\]]+)\]\]$/);return(t?t[1]:e).split("|").map(i=>i.trim()).filter(i=>i.length>0)}o(VV,"extractClassIdentifiers");function UV(n){if(!n)return!1;let e=dI(n.exo__Instance_class);for(let t of e)for(let r of VV(t))if(r===Bi.LAYOUT_CLASS_IRI||r===Bi.LAYOUT_CLASS_UID)return!0;return!1}o(UV,"isLayoutFrontmatter")});var gI=S(Ut=>{"use strict";Object.defineProperty(Ut,"__esModule",{value:!0});Ut.BACKLINKS_TABLE_BLOCK_CLASS_UID=Ut.BACKLINKS_TABLE_BLOCK_CLASS_IRI=Ut.PROPERTIES_BLOCK_CLASS_UID=Ut.PROPERTIES_BLOCK_CLASS_IRI=void 0;Ut.createLayoutBlockFromFrontmatter=HV;Ut.isLayoutBlockFrontmatter=QV;Ut.isPropertiesBlock=KV;Ut.isBacklinksTableBlock=YV;var BV=qs(),Sv=df();Ut.PROPERTIES_BLOCK_CLASS_IRI="exo__PropertiesBlock";Ut.PROPERTIES_BLOCK_CLASS_UID="fd039b3c-ed2b-41c2-a42e-bbfcdd074bfe";Ut.BACKLINKS_TABLE_BLOCK_CLASS_IRI="exo__BacklinksTableBlock";Ut.BACKLINKS_TABLE_BLOCK_CLASS_UID="2e868956-d81e-43fd-9817-1addde9cb311";function pI(n){return n==null?[]:Array.isArray(n)?n.filter(e=>typeof e=="string"):typeof n=="string"?[n]:[]}o(pI,"toStringArray");function qV(n){let e=n.lastIndexOf("/"),t=e>=0?n.slice(e+1):n,r=t.lastIndexOf(".");return r>=0?t.slice(0,r):t}o(qV,"basenameFromPath");function mI(n,e){if(typeof n=="boolean")return n;if(typeof n=="string"){let t=n.trim().toLowerCase();if(t==="true")return!0;if(t==="false")return!1}return e}o(mI,"parseBoolean");function WV(n){if(typeof n=="number"&&Number.isFinite(n)&&Number.isInteger(n))return n;if(typeof n=="string"){let e=Number.parseInt(n,10);if(Number.isFinite(e))return e}return null}o(WV,"parseInteger");function GV(n){let e=n.trim();if(e.length===0)return[];let t=e.match(/^\[\[([^\]]+)\]\]$/);return(t?t[1]:e).split("|").map(i=>i.trim()).filter(i=>i.length>0)}o(GV,"extractClassIdentifiers");function Em(n,e,t){let r=pI(n.exo__Instance_class);for(let i of r)for(let s of GV(i))if(s===e||s===t)return!0;return!1}o(Em,"classOf");function zV(n,e){let t=e.warn??(()=>{}),r=n.exo__Asset_uid,i=typeof r=="string"?r.trim():"";if(i.length===0)return t(`LayoutBlock: exo__Asset_uid missing at ${e.sourcePath}`),null;let s=n.exo__LayoutBlock_title,a=n.exo__Asset_label,c=typeof s=="string"&&s.trim().length>0?s.trim():typeof a=="string"&&a.trim().length>0?a.trim():qV(e.sourcePath),l=mI(n.exo__LayoutBlock_collapsed,!1);return{uid:i,title:c,collapsed:l,sourcePath:e.sourcePath}}o(zV,"extractBase");function HV(n,e){let t=e.warn??(()=>{});if(!n||typeof n!="object")return t(`LayoutBlock: missing frontmatter at ${e.sourcePath}`),null;let r=zV(n,e);if(r===null)return null;if(Em(n,Ut.PROPERTIES_BLOCK_CLASS_IRI,Ut.PROPERTIES_BLOCK_CLASS_UID))return{...r,kind:"properties"};if(Em(n,Ut.BACKLINKS_TABLE_BLOCK_CLASS_IRI,Ut.BACKLINKS_TABLE_BLOCK_CLASS_UID)){let i=(0,Sv.normalizeRef)(n.exo__BacklinksTableBlock_rowClass),s=(0,Sv.normalizeRef)(n.exo__BacklinksTableBlock_referencingProperty);if(i===null||s===null)return t(`BacklinksTableBlock ${r.uid}: rowClass and referencingProperty required (${e.sourcePath})`),null;let a=pI(n.exo__BacklinksTableBlock_columns),c=[];for(let p of a){let y=BV.WikiLinkHelpers.normalize(p);y.length>0&&c.push(y)}let l=(0,Sv.normalizeRef)(n.exo__BacklinksTableBlock_sortBy),u=n.exo__BacklinksTableBlock_sortOrder,f=typeof u=="string"&&u.trim().toLowerCase()==="desc"?"desc":"asc",d=WV(n.exo__BacklinksTableBlock_limit),h=mI(n.exo__BacklinksTableBlock_showArchived,!1);return{...r,kind:"backlinks-table",rowClass:i,referencingProperty:s,columns:c,sortBy:l,sortOrder:f,limit:d,showArchived:h}}return t(`LayoutBlock ${r.uid}: unknown block class at ${e.sourcePath} \u2014 expected exo__PropertiesBlock or exo__BacklinksTableBlock`),null}o(HV,"createLayoutBlockFromFrontmatter");function QV(n){return n?Em(n,Ut.PROPERTIES_BLOCK_CLASS_IRI,Ut.PROPERTIES_BLOCK_CLASS_UID)||Em(n,Ut.BACKLINKS_TABLE_BLOCK_CLASS_IRI,Ut.BACKLINKS_TABLE_BLOCK_CLASS_UID):!1}o(QV,"isLayoutBlockFrontmatter");function KV(n){return n.kind==="properties"}o(KV,"isPropertiesBlock");function YV(n){return n.kind==="backlinks-table"}o(YV,"isBacklinksTableBlock")});var Tm=S(Me=>{"use strict";Object.defineProperty(Me,"__esModule",{value:!0});Me.isPropertiesBlock=Me.isLayoutBlockFrontmatter=Me.isBacklinksTableBlock=Me.createLayoutBlockFromFrontmatter=Me.PROPERTIES_BLOCK_CLASS_UID=Me.PROPERTIES_BLOCK_CLASS_IRI=Me.BACKLINKS_TABLE_BLOCK_CLASS_UID=Me.BACKLINKS_TABLE_BLOCK_CLASS_IRI=Me.isLayoutFrontmatter=Me.isLayout=Me.createLayoutFromFrontmatter=Me.LAYOUT_CLASS_UID=Me.LAYOUT_CLASS_IRI=Me.normalizeRef=Me.isRelationColumnSetFrontmatter=Me.isRelationColumnSet=Me.createRelationColumnSetFromFrontmatter=Me.RELATION_COLUMN_SET_CLASS_UID=Me.RELATION_COLUMN_SET_CLASS_IRI=void 0;var wl=df();Object.defineProperty(Me,"RELATION_COLUMN_SET_CLASS_IRI",{enumerable:!0,get:o(function(){return wl.RELATION_COLUMN_SET_CLASS_IRI},"get")});Object.defineProperty(Me,"RELATION_COLUMN_SET_CLASS_UID",{enumerable:!0,get:o(function(){return wl.RELATION_COLUMN_SET_CLASS_UID},"get")});Object.defineProperty(Me,"createRelationColumnSetFromFrontmatter",{enumerable:!0,get:o(function(){return wl.createRelationColumnSetFromFrontmatter},"get")});Object.defineProperty(Me,"isRelationColumnSet",{enumerable:!0,get:o(function(){return wl.isRelationColumnSet},"get")});Object.defineProperty(Me,"isRelationColumnSetFrontmatter",{enumerable:!0,get:o(function(){return wl.isRelationColumnSetFrontmatter},"get")});Object.defineProperty(Me,"normalizeRef",{enumerable:!0,get:o(function(){return wl.normalizeRef},"get")});var hf=hI();Object.defineProperty(Me,"LAYOUT_CLASS_IRI",{enumerable:!0,get:o(function(){return hf.LAYOUT_CLASS_IRI},"get")});Object.defineProperty(Me,"LAYOUT_CLASS_UID",{enumerable:!0,get:o(function(){return hf.LAYOUT_CLASS_UID},"get")});Object.defineProperty(Me,"createLayoutFromFrontmatter",{enumerable:!0,get:o(function(){return hf.createLayoutFromFrontmatter},"get")});Object.defineProperty(Me,"isLayout",{enumerable:!0,get:o(function(){return hf.isLayout},"get")});Object.defineProperty(Me,"isLayoutFrontmatter",{enumerable:!0,get:o(function(){return hf.isLayoutFrontmatter},"get")});var qa=gI();Object.defineProperty(Me,"BACKLINKS_TABLE_BLOCK_CLASS_IRI",{enumerable:!0,get:o(function(){return qa.BACKLINKS_TABLE_BLOCK_CLASS_IRI},"get")});Object.defineProperty(Me,"BACKLINKS_TABLE_BLOCK_CLASS_UID",{enumerable:!0,get:o(function(){return qa.BACKLINKS_TABLE_BLOCK_CLASS_UID},"get")});Object.defineProperty(Me,"PROPERTIES_BLOCK_CLASS_IRI",{enumerable:!0,get:o(function(){return qa.PROPERTIES_BLOCK_CLASS_IRI},"get")});Object.defineProperty(Me,"PROPERTIES_BLOCK_CLASS_UID",{enumerable:!0,get:o(function(){return qa.PROPERTIES_BLOCK_CLASS_UID},"get")});Object.defineProperty(Me,"createLayoutBlockFromFrontmatter",{enumerable:!0,get:o(function(){return qa.createLayoutBlockFromFrontmatter},"get")});Object.defineProperty(Me,"isBacklinksTableBlock",{enumerable:!0,get:o(function(){return qa.isBacklinksTableBlock},"get")});Object.defineProperty(Me,"isLayoutBlockFrontmatter",{enumerable:!0,get:o(function(){return qa.isLayoutBlockFrontmatter},"get")});Object.defineProperty(Me,"isPropertiesBlock",{enumerable:!0,get:o(function(){return qa.isPropertiesBlock},"get")})});var _I=S(Am=>{"use strict";Object.defineProperty(Am,"__esModule",{value:!0});Am.RelationColumnSetResolver=void 0;var yI=df(),XV={warn:o(()=>{},"warn")},bv=class{static{o(this,"RelationColumnSetResolver")}constructor(e,t={}){this.provider=e,this.logger=t.logger??XV}resolve(e,t){if(!e||e.length===0)return null;let r=t!=null?(0,yI.normalizeRef)(t):null,i=this.provider();if(i.length===0)return null;for(let s of e){let a=(0,yI.normalizeRef)(s);if(a===null)continue;if(r!==null){let l=this.filterTier1(i,a,r);if(l.length>0)return this.tiebreak(l,1)}let c=this.filterTier2(i,a);if(c.length>0)return this.tiebreak(c,2);if(r!==null){let l=this.filterTier3(i,r);if(l.length>0)return this.tiebreak(l,3)}}return null}filterTier1(e,t,r){let i=[];for(let s of e)s.targetClasses!==null&&s.referencingProperty===r&&s.targetClasses.includes(t)&&i.push(s);return i}filterTier2(e,t){let r=[];for(let i of e)i.targetClasses!==null&&i.referencingProperty===null&&i.targetClasses.includes(t)&&r.push(i);return r}filterTier3(e,t){let r=[];for(let i of e)i.targetClasses===null&&i.referencingProperty===t&&r.push(i);return r}tiebreak(e,t){let r=e.slice().sort((s,a)=>{let c=a.priority-s.priority;return c!==0?c:s.uid.localeCompare(a.uid)}),i=r[0];if(r.length>1){let s=i.priority,a=r.filter(c=>c.priority===s);if(a.length>1){let c=a.slice(1).map(l=>l.uid).join(", ");this.logger.warn(`RelationColumnSetResolver: tier=${t} priority=${s} collision \u2014 selected ${i.uid}; tied losers: ${c}`)}}return i}};Am.RelationColumnSetResolver=bv});var SI=S(xm=>{"use strict";Object.defineProperty(xm,"__esModule",{value:!0});xm.RelationColumnSetResolver=void 0;var JV=_I();Object.defineProperty(xm,"RelationColumnSetResolver",{enumerable:!0,get:o(function(){return JV.RelationColumnSetResolver},"get")})});var vI=S(pf=>{"use strict";Object.defineProperty(pf,"__esModule",{value:!0});pf.LayoutSelector=void 0;pf.selectByPriority=bI;var ZV=qs(),vv=class{static{o(this,"LayoutSelector")}constructor(e){this.source=e}resolve(e){if(!Array.isArray(e)||e.length===0)return null;let t=this.source.all;if(t.length===0)return null;for(let r of e){if(typeof r!="string")continue;let i=ZV.WikiLinkHelpers.normalize(r);if(i.length===0)continue;let s=t.filter(a=>a.targetClass===i);if(s.length!==0)return bI(s)}return null}};pf.LayoutSelector=vv;function bI(n){if(n.length===0)throw new Error("selectByPriority: expected at least one candidate");return n.length===1?n[0]:[...n].sort((t,r)=>t.priority!==r.priority?r.priority-t.priority:t.uid<r.uid?-1:t.uid>r.uid?1:0)[0]}o(bI,"selectByPriority")});var Ss=S(Im=>{"use strict";Object.defineProperty(Im,"__esModule",{value:!0});Im.ErrorCode=void 0;var wI;(function(n){n[n.INVALID_INPUT=1e3]="INVALID_INPUT",n[n.INVALID_FORMAT=1001]="INVALID_FORMAT",n[n.MISSING_REQUIRED_FIELD=1002]="MISSING_REQUIRED_FIELD",n[n.INVALID_SCHEMA=1003]="INVALID_SCHEMA",n[n.NETWORK_ERROR=2e3]="NETWORK_ERROR",n[n.REQUEST_TIMEOUT=2001]="REQUEST_TIMEOUT",n[n.CONNECTION_FAILED=2002]="CONNECTION_FAILED",n[n.FILE_READ_ERROR=2003]="FILE_READ_ERROR",n[n.FILE_WRITE_ERROR=2004]="FILE_WRITE_ERROR",n[n.INVALID_STATE=3e3]="INVALID_STATE",n[n.INVALID_TRANSITION=3001]="INVALID_TRANSITION",n[n.OPERATION_FAILED=3002]="OPERATION_FAILED",n[n.CONCURRENT_MODIFICATION=3003]="CONCURRENT_MODIFICATION",n[n.PERMISSION_DENIED=4e3]="PERMISSION_DENIED",n[n.UNAUTHORIZED=4001]="UNAUTHORIZED",n[n.FORBIDDEN=4003]="FORBIDDEN",n[n.NOT_FOUND=5e3]="NOT_FOUND",n[n.RESOURCE_EXHAUSTED=5001]="RESOURCE_EXHAUSTED",n[n.ALREADY_EXISTS=5002]="ALREADY_EXISTS",n[n.UNKNOWN_ERROR=9e3]="UNKNOWN_ERROR",n[n.INTERNAL_ERROR=9001]="INTERNAL_ERROR"})(wI||(Im.ErrorCode=wI={}))});var bs=S(Cm=>{"use strict";Object.defineProperty(Cm,"__esModule",{value:!0});Cm.ApplicationError=void 0;var wv=class extends Error{static{o(this,"ApplicationError")}constructor(e,t){super(e),this.name=this.constructor.name,this.context=t,this.timestamp=new Date,Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}format(){let e=`\u274C ${this.name}: ${this.message}`;if(this.guidance&&(e+=`
414
414
 
415
415
  \u{1F4A1} ${this.guidance}`),this.context&&Object.keys(this.context).length>0){e+=`
416
416
 
@@ -454,28 +454,28 @@ To resolve:
454
454
  \u2022 Contact support if the issue persists`}};Lm.ServiceError=Rv});var OI=S(rr=>{"use strict";Object.defineProperty(rr,"__esModule",{value:!0});rr.ServiceError=rr.ResourceExhaustedError=rr.NotFoundError=rr.PermissionError=rr.StateTransitionError=rr.NetworkError=rr.ValidationError=rr.ApplicationError=rr.ErrorCode=void 0;var pU=Ss();Object.defineProperty(rr,"ErrorCode",{enumerable:!0,get:o(function(){return pU.ErrorCode},"get")});var mU=bs();Object.defineProperty(rr,"ApplicationError",{enumerable:!0,get:o(function(){return mU.ApplicationError},"get")});var gU=EI();Object.defineProperty(rr,"ValidationError",{enumerable:!0,get:o(function(){return gU.ValidationError},"get")});var yU=TI();Object.defineProperty(rr,"NetworkError",{enumerable:!0,get:o(function(){return yU.NetworkError},"get")});var _U=AI();Object.defineProperty(rr,"StateTransitionError",{enumerable:!0,get:o(function(){return _U.StateTransitionError},"get")});var SU=xI();Object.defineProperty(rr,"PermissionError",{enumerable:!0,get:o(function(){return SU.PermissionError},"get")});var bU=II();Object.defineProperty(rr,"NotFoundError",{enumerable:!0,get:o(function(){return bU.NotFoundError},"get")});var vU=CI();Object.defineProperty(rr,"ResourceExhaustedError",{enumerable:!0,get:o(function(){return vU.ResourceExhaustedError},"get")});var wU=RI();Object.defineProperty(rr,"ServiceError",{enumerable:!0,get:o(function(){return wU.ServiceError},"get")})});var Pv=S(km=>{"use strict";Object.defineProperty(km,"__esModule",{value:!0});km.ShapeRegistry=void 0;var Ov=class{static{o(this,"ShapeRegistry")}constructor(){this.shapes=new Map}get(e){return this.shapes.get(e)}register(e){this.shapes.set(e.propertyIRI,e)}getAll(){return Array.from(this.shapes.values())}get size(){return this.shapes.size}};km.ShapeRegistry=Ov});var kv=S(vs=>{"use strict";var EU=vs&&vs.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),TU=vs&&vs.__setModuleDefault||(Object.create?(function(n,e){Object.defineProperty(n,"default",{enumerable:!0,value:e})}):function(n,e){n.default=e}),Fv=vs&&vs.__importStar||(function(){var n=o(function(e){return n=Object.getOwnPropertyNames||function(t){var r=[];for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(r[r.length]=i);return r},n(e)},"ownKeys");return function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r=n(e),i=0;i<r.length;i++)r[i]!=="default"&&EU(t,e,r[i]);return TU(t,e),t}})();Object.defineProperty(vs,"__esModule",{value:!0});vs.ShapeLoader=void 0;var Dv=Pv(),El=Ae(),Nv=De(),On=or(),Mm="http://www.w3.org/ns/shacl#",AU="http://www.w3.org/2001/XMLSchema#",Qce=[["exo__",On.Namespace.EXO],["ems__",On.Namespace.EMS],["exocmd__",On.Namespace.EXOCMD],["ims__",On.Namespace.IMS],["ztlk__",On.Namespace.ZTLK],["ptms__",On.Namespace.PTMS],["lit__",On.Namespace.LIT],["inbox__",On.Namespace.INBOX],["pmbok__",On.Namespace.PMBOK]],Lv=class n{static{o(this,"ShapeLoader")}static async loadFromVaultFS(e){let{readdir:t,readFile:r}=await Promise.resolve().then(()=>Fv(require("fs/promises"))),i=await Promise.resolve().then(()=>Fv(require("path"))),s=new Dv.ShapeRegistry;return await n.scanDir(e,s,{readdir:t,readFile:r,path:i}),s}static async loadFromRDFGraph(e){let t=new Dv.ShapeRegistry,r=On.Namespace.EXO,i=On.Namespace.RDFS,s=On.Namespace.RDF,[a,c]=await Promise.all([e.match(void 0,s.term("type"),r.term("ObjectProperty")),e.match(void 0,s.term("type"),r.term("Property"))]),l=new Set;for(let u of[...a,...c])u.subject instanceof El.IRI&&l.add(u.subject.value);for(let u of l){let f=new El.IRI(u),[d,h,p,y,b,w]=await Promise.all([e.match(f,i.term("domain"),void 0),e.match(f,i.term("range"),void 0),e.match(f,r.term("Property_cardinality"),void 0),e.match(f,r.term("Property_severity"),void 0),e.match(f,r.term("Asset_label"),void 0),e.match(f,r.term("Property_minCount"),void 0)]);if(d.length===0)continue;let v=b[0]?.object;if(!(v instanceof Nv.Literal))continue;let T=n.labelToIRI(v.value);if(!T)continue;let C=d.map(k=>k.object instanceof El.IRI?k.object.value:null).filter(k=>k!==null),L=h.map(k=>k.object instanceof El.IRI?k.object.value:null).filter(k=>k!==null),V=n.cardinalityFromIRI(p[0]?.object instanceof El.IRI?p[0].object.value:void 0),ae=n.severityFromValue(y[0]?.object instanceof Nv.Literal||y[0]?.object instanceof El.IRI?y[0].object.value:void 0),$=w[0]?.object,B=$ instanceof Nv.Literal?parseInt($.value,10):NaN,F=isNaN(B)?void 0:B;t.register({propertyIRI:T,domain:C,range:L.length>0?L:void 0,cardinality:V,severity:ae,minCount:F})}return t}static async loadFromShapeJSON(e){let{readFile:t}=await Promise.resolve().then(()=>Fv(require("fs/promises"))),r=await t(e,"utf-8"),i=JSON.parse(r),s=new Dv.ShapeRegistry;for(let a of Object.values(i.shapes))s.register(a);return s}static async scanDir(e,t,r){let i;try{i=await r.readdir(e,{withFileTypes:!0})}catch{return}for(let s of i){let a=r.path.join(e,s.name);if(s.isDirectory())await n.scanDir(a,t,r);else if(s.isFile()&&s.name.endsWith(".md"))try{await n.processFile(a,t,r.readFile,r.path)}catch{}}}static async processFile(e,t,r,i){let s;try{s=await r(e,"utf-8")}catch{return}let a=n.parseFrontmatter(s);if(!a||!n.asArray(a.exo__Instance_class).some($=>{let B=n.extractWikilinkRef($);return B==="exo__Property"||B==="exo__ObjectProperty"||B?.includes("|exo__Property")||B?.includes("|exo__ObjectProperty")}))return;let u=null,f=a.exo__Asset_label;if(typeof f=="string"&&f.trim().length>0)u=f.trim();else if(i){let $=i.basename(e,".md");On.Namespace.fromPropertyKey($)&&(u=$)}if(!u)return;let d=n.labelToIRI(u);if(!d)return;let h=a.exo__Property_domain,p=a.exo__Property_range,y=a.exo__Property_cardinality,b=a.exo__Property_severity,w=a.exo__Property_minCount,v=n.asArray(h).map($=>n.wikilinkToIRI($)).filter($=>$!==null);if(v.length===0)return;let T=n.asArray(p).map($=>n.wikilinkToIRI($)).filter($=>$!==null),C=n.cardinalityFromLabel(typeof y=="string"?y:void 0),L=n.severityFromValue(typeof b=="string"?b:void 0),V=typeof w=="string"?parseInt(w,10):void 0,ae=V!==void 0&&!isNaN(V)?V:void 0;t.register({propertyIRI:d,domain:v,range:T.length>0?T:void 0,cardinality:C,severity:L,minCount:ae})}static parseFrontmatter(e){let t=/^---\r?\n([\s\S]*?)\r?\n---/.exec(e);if(!t)return null;let r=t[1],i={},s=r.split(/\r?\n/),a=null,c=null;for(let l of s){let u=/^ {2}- (.*)$/.exec(l);if(u){a&&c&&c.push(u[1].trim());continue}a&&c&&(i[a]=c,a=null,c=null);let f=/^([^:]+):\s*(.*)$/.exec(l);if(!f)continue;let d=f[1].trim(),h=f[2].trim();h===""?(a=d,c=[]):i[d]=h}return a&&c&&(i[a]=c),i}static labelToIRI(e){let t=On.Namespace.fromPropertyKey(e);return t?t.namespace.term(t.localName).value:null}static extractWikilinkRef(e){let t=e.replace(/^["']|["']$/g,""),r=/\[\[([^\]]+)\]\]/.exec(t);return r?r[1]:t}static wikilinkToIRI(e){let t=n.extractWikilinkRef(e);if(!t)return null;let r=t.split("|"),i=r.length>1?[r[1],r[0]]:[r[0]];for(let s of i){let a=n.labelToIRI(s.trim());if(a)return a}return t.startsWith("http")?t:t.startsWith("sh:")?Mm+t.substring(3):t.startsWith("xsd:")?AU+t.substring(4):null}static asArray(e){return Array.isArray(e)?e.map(String):typeof e=="string"?[e]:[]}static cardinalityFromIRI(e){if(e){if(e.endsWith("PropertyCardinalitySingle"))return"Single";if(e.endsWith("PropertyCardinalityMultiple"))return"Multiple"}}static cardinalityFromLabel(e){if(!e)return;let t=n.extractWikilinkRef(e)??e,r=t.split("|").pop()??t;if(r.includes("Single"))return"Single";if(r.includes("Multiple"))return"Multiple"}static severityFromValue(e){return!e||e.includes("Violation")||e===Mm+"Violation"?"sh:Violation":e.includes("Warning")||e===Mm+"Warning"?"sh:Warning":e.includes("Info")||e===Mm+"Info"?"sh:Info":"sh:Violation"}};vs.ShapeLoader=Lv});var jv=S(mf=>{"use strict";Object.defineProperty(mf,"__esModule",{value:!0});mf.ShapeRegistry=void 0;mf.validate=PU;var Mv=class{static{o(this,"ShapeRegistry")}constructor(e=[],t="https://exocortex.my/ontology/exo#Instance_class"){this.shapeMap=new Map(e.map(r=>[r.propertyIRI,r])),this.typePredicateIRI=t}getShape(e){return this.shapeMap.get(e)}getAllShapes(){return Array.from(this.shapeMap.values())}hasShape(e){return this.shapeMap.has(e)}};mf.ShapeRegistry=Mv;var xU="http://www.w3.org/1999/02/22-rdf-syntax-ns#type",IU=["http://www.w3.org/2001/XMLSchema#","http://www.w3.org/1999/02/22-rdf-syntax-ns#","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2002/07/owl#","http://www.w3.org/2004/02/skos/core#","http://purl.org/dc/elements/1.1/","http://purl.org/dc/terms/","http://xmlns.com/foaf/0.1/","https://schema.org/","https://exocortex.my/ontology/xsd#","https://exocortex.my/ontology/rdf#","https://exocortex.my/ontology/rdfs#","https://exocortex.my/ontology/owl#","https://exocortex.my/ontology/skos#"];function CU(n){return IU.some(e=>n.startsWith(e))}o(CU,"isExternalOntologyIRI");var RU=["http://www.w3.org/2001/XMLSchema#","https://exocortex.my/ontology/xsd#"];function OU(n){return RU.some(e=>n.startsWith(e))}o(OU,"isXSDDatatypeIRI");function PU(n,e,t,r){let i=new Map,s=new Map;for(let l of n){let{subject:u,predicate:f,object:d}=l;if(u.type!=="iri"||f.type!=="iri"||d.type!=="iri"&&d.type!=="literal")continue;let h=u.value,p=f.value,y=d;if(p===e.typePredicateIRI||p===xU){if(y.type==="iri"){let w=i.get(h)??[];w.push(y.value),i.set(h,w)}}else{let w=s.get(h);w||(w=new Map,s.set(h,w));let v=w.get(p)??[];v.push(y),w.set(p,v)}}let a=[],c=new Set([...i.keys(),...s.keys()]);for(let l of c){let u=i.get(l)??[],f=s.get(l)??new Map;for(let d of e.getAllShapes()){if(!(d.domain.length===0||d.domain.some(y=>u.some(b=>b===y||t.isSubClassOf(b,y)))))continue;let p=f.get(d.propertyIRI)??[];if(d.minCount!==void 0&&d.minCount>0&&p.length<d.minCount){a.push({focusNode:l,propertyPath:d.propertyIRI,severity:d.severity,message:d.message??`sh:minCount violation: expected at least ${d.minCount} value(s) for <${d.propertyIRI}>`});continue}if(p.length!==0){if(d.cardinality==="Single"&&p.length>1){a.push({focusNode:l,propertyPath:d.propertyIRI,severity:d.severity,message:d.message??`sh:maxCount violation: expected at most 1 value for <${d.propertyIRI}>, got ${p.length}`});continue}if(d.range&&d.range.length>0){for(let y of p)if(y.type==="iri"){if(CU(y.value))continue;let b=i.get(y.value)??[];d.range.some(v=>b.some(T=>T===v||t.isSubClassOf(T,v)))||a.push({focusNode:l,propertyPath:d.propertyIRI,severity:d.severity,message:d.message??`sh:class violation: <${y.value}> does not conform to expected class ${d.range.join(" | ")}`,actualValue:y.value,expectedRange:d.range.join(" | ")})}else if(y.type==="literal"){let b=d.range.filter(T=>OU(T));if(b.length===0)continue;let w=y.datatype??"http://www.w3.org/2001/XMLSchema#string";b.some(T=>T===w)||a.push({focusNode:l,propertyPath:d.propertyIRI,severity:d.severity,message:d.message??`sh:datatype violation: literal "${y.value}" has datatype <${w}>, expected ${b.join(" | ")}`,actualValue:y.value,expectedRange:b.join(" | ")})}}}}}if(r?.closedWorldMode)for(let l of c){let u=s.get(l)??new Map;for(let f of u.keys())e.hasShape(f)||a.push({focusNode:l,propertyPath:f,severity:"sh:Warning",message:`Unknown property: <${f}> has no registered shape`})}return a.sort((l,u)=>{let f=l.focusNode.localeCompare(u.focusNode);return f!==0?f:l.propertyPath.localeCompare(u.propertyPath)}),{conforms:!a.some(l=>l.severity==="sh:Violation"),violations:a}}o(PU,"validate")});var PI=S(jm=>{"use strict";Object.defineProperty(jm,"__esModule",{value:!0});jm.ApplicationErrorHandler=void 0;var $v=bs(),FU=Ss(),DU=La(),Vv=class{static{o(this,"ApplicationErrorHandler")}constructor(e={},t,r){this.logger=t,this.notifier=r,this.telemetryHooks=new Set,this.retryConfig={maxRetries:e.maxRetries??3,initialDelayMs:e.initialDelayMs??1e3,backoffMultiplier:e.backoffMultiplier??2,maxDelayMs:e.maxDelayMs??1e4}}handle(e,t){let r=this.ensureApplicationError(e,t);return this.notifier&&this.notifier.error(r.message),this.callTelemetryHooks("onError",r,t),this.formatError(r)}async executeWithRetry(e,t){let r,i=0;for(;i<=this.retryConfig.maxRetries;)try{return await e()}catch(s){if(r=this.ensureApplicationError(s,t),!r.retriable||i>=this.retryConfig.maxRetries)throw this.callTelemetryHooks("onError",r,t),i>=this.retryConfig.maxRetries&&r.retriable&&this.callTelemetryHooks("onRetryExhausted",r,i+1),r;let a=this.calculateDelay(i);this.callTelemetryHooks("onRetry",r,i+1,a),this.logger?.debug(`Retrying after ${a}ms (attempt ${i+1}/${this.retryConfig.maxRetries})`),await this.sleep(a),i++}throw r}registerTelemetryHook(e){this.telemetryHooks.add(e)}unregisterTelemetryHook(e){this.telemetryHooks.delete(e)}ensureApplicationError(e,t){if(e instanceof $v.ApplicationError){if(t){let i=e,s={...e.context,...t};return new class extends $v.ApplicationError{constructor(){super(...arguments),this.code=i.code,this.retriable=i.retriable,this.guidance=i.guidance}}(e.message,s)}return e}return new class extends $v.ApplicationError{static{o(this,"UnknownError")}constructor(s,a){super(s,{originalError:a.name,...t}),this.code=FU.ErrorCode.UNKNOWN_ERROR,this.retriable=!1,this.guidance="An unexpected error occurred"}}(e.message,e)}formatError(e){let t=[];return t.push(`\u274C ${e.name}: ${e.message}`),e.guidance&&t.push(`\u{1F4A1} ${e.guidance}`),e.context&&Object.keys(e.context).length>0&&t.push(`Context: ${JSON.stringify(e.context,null,2)}`),t.join(`
455
455
  `)}calculateDelay(e){let t=this.retryConfig.initialDelayMs*Math.pow(this.retryConfig.backoffMultiplier,e);return Math.min(t,this.retryConfig.maxDelayMs)}sleep(e){return new Promise(t=>setTimeout(t,e))}callTelemetryHooks(e,...t){for(let r of this.telemetryHooks)try{let i=r[e];i&&i.apply(r,t)}catch(i){DU.LoggingService.error("Error in telemetry hook",i instanceof Error?i:new Error(String(i)))}}};jm.ApplicationErrorHandler=Vv});var FI=S($m=>{"use strict";Object.defineProperty($m,"__esModule",{value:!0});$m.ApplicationErrorHandler=void 0;var NU=PI();Object.defineProperty($m,"ApplicationErrorHandler",{enumerable:!0,get:o(function(){return NU.ApplicationErrorHandler},"get")})});var Bv=S(Vm=>{"use strict";Object.defineProperty(Vm,"__esModule",{value:!0});Vm.ClassHierarchy=void 0;var LU="http://www.w3.org/2000/01/rdf-schema#subClassOf",Uv=class{static{o(this,"ClassHierarchy")}constructor(e){this.adjacency=new Map;for(let t of e){if(t.predicate.type!=="iri"||t.predicate.value!==LU||t.subject.type!=="iri"||t.object.type!=="iri")continue;let r=t.subject.value,i=t.object.value,s=this.adjacency.get(r);s||(s=new Set,this.adjacency.set(r,s)),s.add(i)}}isSubClassOf(e,t){if(e===t)return!0;let r=new Set,i=[e];for(;i.length>0;){let s=i.shift();if(s===void 0)break;if(r.has(s))continue;r.add(s);let a=this.adjacency.get(s);if(a)for(let c of a){if(c===t)return!0;r.has(c)||i.push(c)}}return!1}getAncestors(e){let t=new Set,r=new Set,i=[e];for(;i.length>0;){let s=i.shift();if(s===void 0)break;if(r.has(s))continue;r.add(s);let a=this.adjacency.get(s);if(a)for(let c of a)t.add(c),r.has(c)||i.push(c)}return t}};Vm.ClassHierarchy=Uv});var NI=S(ws=>{"use strict";Object.defineProperty(ws,"__esModule",{value:!0});ws.ValidatorDaemon=ws.IDLE_TIMEOUT_MS=ws.DEFAULT_SOCKET_PATH=void 0;var DI=jv(),kU=kv(),MU=Bv();ws.DEFAULT_SOCKET_PATH=`${process.env.HOME??process.env.USERPROFILE??"/tmp"}/.cache/exocortex/validator.sock`;ws.IDLE_TIMEOUT_MS=300*1e3;var qv=class{static{o(this,"ValidatorDaemon")}constructor(e=ws.DEFAULT_SOCKET_PATH,t=ws.IDLE_TIMEOUT_MS){this.registryCache=new Map,this.server=null,this.idleTimer=null,this.socketPath=e,this.idleTimeoutMs=t}async start(){let e=require("net"),t=require("fs/promises"),r=require("path");await t.mkdir(r.dirname(this.socketPath),{recursive:!0});try{await t.unlink(this.socketPath)}catch{}this.server=e.createServer(a=>{this.handleConnection(a)});let i=this.server;await new Promise((a,c)=>{i.on("error",c),i.listen(this.socketPath,a)}),this.resetIdleTimer();let s=o(()=>{this.stop()},"handleSignal");process.once("SIGTERM",s),process.once("SIGINT",s)}async stop(){if(this.idleTimer!==null&&(clearTimeout(this.idleTimer),this.idleTimer=null),!this.server)return;let e=this.server;this.server=null,await new Promise(t=>{e.close(()=>t())})}resetIdleTimer(){this.idleTimer!==null&&clearTimeout(this.idleTimer),this.idleTimer=setTimeout(()=>{process.exit(0)},this.idleTimeoutMs)}handleConnection(e){let t="";e.setEncoding("utf-8"),e.on("data",r=>{t+=r;let i=t.split(`
456
456
  `);t=i.pop()??"";for(let s of i){let a=s.trim();a&&this.handleRequest(a,e)}}),e.on("error",()=>{e.destroy()})}async handleRequest(e,t){this.resetIdleTimer();let r;try{let i=JSON.parse(e),s=await this.getRegistry(i.registryPath),a=new MU.ClassHierarchy(i.subclassTriples??[]);r={report:(0,DI.validate)(i.triples,s,a,{closedWorldMode:i.closedWorldMode})}}catch(i){r={error:i instanceof Error?i.message:String(i)}}t.destroyed||t.write(JSON.stringify(r)+`
457
- `)}async getRegistry(e){let t=this.registryCache.get(e);if(t)return t;let r=await kU.ShapeLoader.loadFromShapeJSON(e),i=new DI.ShapeRegistry(r.getAll());return this.registryCache.set(e,i),i}};ws.ValidatorDaemon=qv});var nr=S(m=>{"use strict";var jU=m&&m.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),ni=m&&m.__exportStar||function(n,e){for(var t in n)t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&jU(e,n,t)};Object.defineProperty(m,"__esModule",{value:!0});m.RenameToUidService=m.PropertyCleanupService=m.LoggingService=m.LabelToAliasService=m.FolderRepairService=m.EffortVotingService=m.WorkflowCommandAdapter=m.VisibilityGenerator=m.InstantiationRuleResolver=m.WorkflowResolver=m.WorkflowEngine=m.EffortStatusWorkflow=m.ConceptCreationService=m.ClassCreationService=m.AreaHierarchyBuilder=m.AreaCreationService=m.TaskStatusService=m.ServiceRegistry=m.GroundingExecutor=m.PreconditionEvaluator=m.CommandResolver=m.extractPropertyLabel=m.uriToPropertyName=m.propertyNameToUri=m.rangeToFieldType=m.PropertyFieldType=m.isCommandBindingFrontmatter=m.isGroundingFrontmatter=m.isPreconditionFrontmatter=m.isCommandFrontmatter=m.isStyleSource=m.isLabelClass=m.isCommandVariant=m.STYLE_SOURCE_VALUES=m.LABEL_CLASS_VALUES=m.COMMAND_VARIANT_VALUES=m.CommandBindingStyleProperty=m.CommandBindingProperty=m.GroundingProperty=m.PreconditionProperty=m.CommandProperty=m.GroundingType=m.getEffortStatusLabel=m.isTrashedStatus=m.isDoneStatus=m.normalizeEffortStatus=m.EFFORT_STATUS_OPTIONS=m.STATUS_NAME_TO_WIKILINK=m.STATUS_NAME_TO_ENUM=m.EFFORT_STATUS_CONFIG=void 0;m.InMemoryTripleStore=m.OBSIDIAN_VAULT_SCHEME=m.vaultPathToIRI=m.NullLogger=m.RDFSerializer=m.FilenameValidator=m.EffortSortingHelpers=m.MetadataExtractor=m.MetadataHelpers=m.WikiLinkHelpers=m.DateFormatter=m.FrontmatterService=m.CriticalityZoneUUIDs=m.CriticalityZoneService=m.DailyReviewService=m.DEFAULT_AUTOCOMPLETE_CONFIG=m.AutocompleteService=m.TrendDetectionService=m.AnalyticsService=m.getTemplateByName=m.validateParameters=m.fillTemplate=m.findMatchingTemplates=m.findClassByTerm=m.KNOWN_CLASSES=m.KNOWN_PROTOTYPES=m.EFFORT_STATUSES=m.ASSET_CLASSES=m.PREDICATES=m.SPARQL_PREFIXES=m.SPARQL_TEMPLATES=m.DEFAULT_NL_TO_SPARQL_CONFIG=m.NLToSPARQLService=m.TypeRegistry=m.GraphQueryService=m.FixMissingLabelService=m.ArchiveAssetService=m.GenericAssetCreationService=m.URIConstructionService=m.SessionEventService=m.AssetConversionService=m.EnumValueResolver=m.ClassHierarchyResolver=m.PropertySchemaResolver=m.PlanningService=m.AlgorithmExtractor=m.DynamicFrontmatterGenerator=m.FleetingNoteCreationService=m.SupervisionCreationService=m.StatusTimestampService=void 0;m.createSPARQLResultCache=m.SPARQLResultCache=m.QueryPlanCache=m.createDoubleLiteral=m.createDecimalLiteral=m.getNumericValue=m.createPercentileAggregate=m.modeAggregate=m.stddevAggregate=m.varianceAggregate=m.medianAggregate=m.EXO_AGGREGATE_NS=m.BUILT_IN_AGGREGATES=m.CustomAggregateError=m.CustomAggregateRegistry=m.AggregateFunctions=m.BuiltInFunctions=m.SolutionMapping=m.UpdateExecutorError=m.UpdateExecutor=m.QueryExecutor=m.ExoQLQueryExecutor=m.DescribeExecutor=m.ConstructExecutor=m.UnionExecutor=m.OptionalExecutor=m.FilterExecutor=m.BGPExecutor=m.AlgebraSerializer=m.AlgebraOptimizer=m.AlgebraTranslator=m.ExoQLAlgebraTranslator=m.DescribeOptionsTransformerError=m.DescribeOptionsTransformer=m.SPARQLParseError=m.SPARQLParser=m.ExoQLParser=m.NoteToRDFConverter=m.SOURCE_VARIABLE=m.SourceAnnotator=m.INFERRED_GRAPH=m.PrototypeChainMaterializer=m.PropertyCardinalityRegistry=m.NonInheritablePropertyRegistry=m.RDFSInferenceEngine=m.RDFVocabularyMapper=m.DomainTriple=m.DomainBlankNode=m.DomainLiteral=m.DomainIRI=void 0;m.createLayoutBlockFromFrontmatter=m.PROPERTIES_BLOCK_CLASS_UID=m.PROPERTIES_BLOCK_CLASS_IRI=m.BACKLINKS_TABLE_BLOCK_CLASS_UID=m.BACKLINKS_TABLE_BLOCK_CLASS_IRI=m.isLayoutFrontmatter=m.isLayout=m.createLayoutFromFrontmatter=m.LAYOUT_CLASS_UID=m.LAYOUT_CLASS_IRI=m.RelationColumnSetResolver=m.normalizeRelationColumnSetRef=m.isRelationColumnSetFrontmatter=m.isRelationColumnSet=m.createRelationColumnSetFromFrontmatter=m.RELATION_COLUMN_SET_CLASS_UID=m.RELATION_COLUMN_SET_CLASS_IRI=m.ExoQLError=m.ExoQL=m.createStreamingSource=m.StreamingLoader=m.resetGlobalPool=m.getGlobalPool=m.MemoryPool=m.CompactGraphStore=m.StringTable=m.DEFAULT_COLORS=m.NODE_FLAGS=m.container=m.resetContainer=m.getContainer=m.createChildContainer=m.registerCoreServices=m.DI_TOKENS=m.DEFAULT_FLEETING_NOTE_CLASS_UID=m.DEFAULT_INBOX_FOLDER=m.DEFAULT_OWNER_IDENTITY=m.VaultSettings=m.TransactionError=m.TripleNotFoundError=m.TripleAlreadyExistsError=m.FileAlreadyExistsError=m.FileNotFoundError=m.FilterContainsOptimizer=m.VaultPrefixTransformer=m.CaseWhenTransformerError=m.CaseWhenTransformer=m.ResultSerializer=m.createIncrementalIndexer=m.IncrementalIndexer=void 0;m.TripleClassHierarchy=m.IDLE_TIMEOUT_MS=m.DEFAULT_SOCKET_PATH=m.ValidatorDaemon=m.ShaclShapeRegistry=m.shaclValidate=m.Namespace=m.ShapeRegistry=m.ShapeLoader=m.selectByPriority=m.LayoutSelector=m.isPropertiesBlock=m.isLayoutBlockFrontmatter=m.isBacklinksTableBlock=void 0;ni(Eu(),m);ni(yc(),m);var qa=Jy();Object.defineProperty(m,"EFFORT_STATUS_CONFIG",{enumerable:!0,get:o(function(){return qa.EFFORT_STATUS_CONFIG},"get")});Object.defineProperty(m,"STATUS_NAME_TO_ENUM",{enumerable:!0,get:o(function(){return qa.STATUS_NAME_TO_ENUM},"get")});Object.defineProperty(m,"STATUS_NAME_TO_WIKILINK",{enumerable:!0,get:o(function(){return qa.STATUS_NAME_TO_WIKILINK},"get")});Object.defineProperty(m,"EFFORT_STATUS_OPTIONS",{enumerable:!0,get:o(function(){return qa.EFFORT_STATUS_OPTIONS},"get")});Object.defineProperty(m,"normalizeEffortStatus",{enumerable:!0,get:o(function(){return qa.normalizeEffortStatus},"get")});Object.defineProperty(m,"isDoneStatus",{enumerable:!0,get:o(function(){return qa.isDoneStatus},"get")});Object.defineProperty(m,"isTrashedStatus",{enumerable:!0,get:o(function(){return qa.isTrashedStatus},"get")});Object.defineProperty(m,"getEffortStatusLabel",{enumerable:!0,get:o(function(){return qa.getEffortStatusLabel},"get")});var $U=_c();Object.defineProperty(m,"GroundingType",{enumerable:!0,get:o(function(){return $U.GroundingType},"get")});var gf=Zy();Object.defineProperty(m,"CommandProperty",{enumerable:!0,get:o(function(){return gf.CommandProperty},"get")});Object.defineProperty(m,"PreconditionProperty",{enumerable:!0,get:o(function(){return gf.PreconditionProperty},"get")});Object.defineProperty(m,"GroundingProperty",{enumerable:!0,get:o(function(){return gf.GroundingProperty},"get")});Object.defineProperty(m,"CommandBindingProperty",{enumerable:!0,get:o(function(){return gf.CommandBindingProperty},"get")});Object.defineProperty(m,"CommandBindingStyleProperty",{enumerable:!0,get:o(function(){return gf.CommandBindingStyleProperty},"get")});var Tl=e0();Object.defineProperty(m,"COMMAND_VARIANT_VALUES",{enumerable:!0,get:o(function(){return Tl.COMMAND_VARIANT_VALUES},"get")});Object.defineProperty(m,"LABEL_CLASS_VALUES",{enumerable:!0,get:o(function(){return Tl.LABEL_CLASS_VALUES},"get")});Object.defineProperty(m,"STYLE_SOURCE_VALUES",{enumerable:!0,get:o(function(){return Tl.STYLE_SOURCE_VALUES},"get")});Object.defineProperty(m,"isCommandVariant",{enumerable:!0,get:o(function(){return Tl.isCommandVariant},"get")});Object.defineProperty(m,"isLabelClass",{enumerable:!0,get:o(function(){return Tl.isLabelClass},"get")});Object.defineProperty(m,"isStyleSource",{enumerable:!0,get:o(function(){return Tl.isStyleSource},"get")});var Um=Q2();Object.defineProperty(m,"isCommandFrontmatter",{enumerable:!0,get:o(function(){return Um.isCommandFrontmatter},"get")});Object.defineProperty(m,"isPreconditionFrontmatter",{enumerable:!0,get:o(function(){return Um.isPreconditionFrontmatter},"get")});Object.defineProperty(m,"isGroundingFrontmatter",{enumerable:!0,get:o(function(){return Um.isGroundingFrontmatter},"get")});Object.defineProperty(m,"isCommandBindingFrontmatter",{enumerable:!0,get:o(function(){return Um.isCommandBindingFrontmatter},"get")});ni(K2(),m);ni(Y2(),m);ni(t0(),m);ni(r0(),m);ni(J2(),m);ni(tT(),m);ni(M0(),m);ni(qT(),m);var LI=oh();Object.defineProperty(m,"PropertyFieldType",{enumerable:!0,get:o(function(){return LI.PropertyFieldType},"get")});Object.defineProperty(m,"rangeToFieldType",{enumerable:!0,get:o(function(){return LI.rangeToFieldType},"get")});var Wv=U0();Object.defineProperty(m,"propertyNameToUri",{enumerable:!0,get:o(function(){return Wv.propertyNameToUri},"get")});Object.defineProperty(m,"uriToPropertyName",{enumerable:!0,get:o(function(){return Wv.uriToPropertyName},"get")});Object.defineProperty(m,"extractPropertyLabel",{enumerable:!0,get:o(function(){return Wv.extractPropertyLabel},"get")});var VU=_A();Object.defineProperty(m,"CommandResolver",{enumerable:!0,get:o(function(){return VU.CommandResolver},"get")});var UU=bA();Object.defineProperty(m,"PreconditionEvaluator",{enumerable:!0,get:o(function(){return UU.PreconditionEvaluator},"get")});var kI=wA();Object.defineProperty(m,"GroundingExecutor",{enumerable:!0,get:o(function(){return kI.GroundingExecutor},"get")});Object.defineProperty(m,"ServiceRegistry",{enumerable:!0,get:o(function(){return kI.ServiceRegistry},"get")});var BU=lS();Object.defineProperty(m,"TaskStatusService",{enumerable:!0,get:o(function(){return BU.TaskStatusService},"get")});var qU=hS();Object.defineProperty(m,"AreaCreationService",{enumerable:!0,get:o(function(){return qU.AreaCreationService},"get")});var WU=mS();Object.defineProperty(m,"AreaHierarchyBuilder",{enumerable:!0,get:o(function(){return WU.AreaHierarchyBuilder},"get")});var GU=yS();Object.defineProperty(m,"ClassCreationService",{enumerable:!0,get:o(function(){return GU.ClassCreationService},"get")});var zU=SS();Object.defineProperty(m,"ConceptCreationService",{enumerable:!0,get:o(function(){return zU.ConceptCreationService},"get")});var HU=Up();Object.defineProperty(m,"EffortStatusWorkflow",{enumerable:!0,get:o(function(){return HU.EffortStatusWorkflow},"get")});var QU=Zu();Object.defineProperty(m,"WorkflowEngine",{enumerable:!0,get:o(function(){return QU.WorkflowEngine},"get")});var KU=X1();Object.defineProperty(m,"WorkflowResolver",{enumerable:!0,get:o(function(){return KU.WorkflowResolver},"get")});var YU=kA();Object.defineProperty(m,"InstantiationRuleResolver",{enumerable:!0,get:o(function(){return YU.InstantiationRuleResolver},"get")});var XU=MA();Object.defineProperty(m,"VisibilityGenerator",{enumerable:!0,get:o(function(){return XU.VisibilityGenerator},"get")});var JU=jA();Object.defineProperty(m,"WorkflowCommandAdapter",{enumerable:!0,get:o(function(){return JU.WorkflowCommandAdapter},"get")});var ZU=xS();Object.defineProperty(m,"EffortVotingService",{enumerable:!0,get:o(function(){return ZU.EffortVotingService},"get")});var eB=CS();Object.defineProperty(m,"FolderRepairService",{enumerable:!0,get:o(function(){return eB.FolderRepairService},"get")});var tB=OS();Object.defineProperty(m,"LabelToAliasService",{enumerable:!0,get:o(function(){return tB.LabelToAliasService},"get")});var rB=La();Object.defineProperty(m,"LoggingService",{enumerable:!0,get:o(function(){return rB.LoggingService},"get")});var nB=DS();Object.defineProperty(m,"PropertyCleanupService",{enumerable:!0,get:o(function(){return nB.PropertyCleanupService},"get")});var iB=LS();Object.defineProperty(m,"RenameToUidService",{enumerable:!0,get:o(function(){return iB.RenameToUidService},"get")});var sB=qp();Object.defineProperty(m,"StatusTimestampService",{enumerable:!0,get:o(function(){return sB.StatusTimestampService},"get")});var aB=jS();Object.defineProperty(m,"SupervisionCreationService",{enumerable:!0,get:o(function(){return aB.SupervisionCreationService},"get")});var oB=US();Object.defineProperty(m,"FleetingNoteCreationService",{enumerable:!0,get:o(function(){return oB.FleetingNoteCreationService},"get")});var cB=qS();Object.defineProperty(m,"DynamicFrontmatterGenerator",{enumerable:!0,get:o(function(){return cB.DynamicFrontmatterGenerator},"get")});var lB=GS();Object.defineProperty(m,"AlgorithmExtractor",{enumerable:!0,get:o(function(){return lB.AlgorithmExtractor},"get")});var uB=HS();Object.defineProperty(m,"PlanningService",{enumerable:!0,get:o(function(){return uB.PlanningService},"get")});var fB=XA();Object.defineProperty(m,"PropertySchemaResolver",{enumerable:!0,get:o(function(){return fB.PropertySchemaResolver},"get")});var dB=JA();Object.defineProperty(m,"ClassHierarchyResolver",{enumerable:!0,get:o(function(){return dB.ClassHierarchyResolver},"get")});var hB=ZA();Object.defineProperty(m,"EnumValueResolver",{enumerable:!0,get:o(function(){return hB.EnumValueResolver},"get")});var pB=JS();Object.defineProperty(m,"AssetConversionService",{enumerable:!0,get:o(function(){return pB.AssetConversionService},"get")});var mB=tb();Object.defineProperty(m,"SessionEventService",{enumerable:!0,get:o(function(){return mB.SessionEventService},"get")});var gB=ib();Object.defineProperty(m,"URIConstructionService",{enumerable:!0,get:o(function(){return gB.URIConstructionService},"get")});var yB=ab();Object.defineProperty(m,"GenericAssetCreationService",{enumerable:!0,get:o(function(){return yB.GenericAssetCreationService},"get")});var _B=lx();Object.defineProperty(m,"ArchiveAssetService",{enumerable:!0,get:o(function(){return _B.ArchiveAssetService},"get")});var SB=fx();Object.defineProperty(m,"FixMissingLabelService",{enumerable:!0,get:o(function(){return SB.FixMissingLabelService},"get")});var bB=dx();Object.defineProperty(m,"GraphQueryService",{enumerable:!0,get:o(function(){return bB.GraphQueryService},"get")});var vB=px();Object.defineProperty(m,"TypeRegistry",{enumerable:!0,get:o(function(){return vB.TypeRegistry},"get")});var MI=mx();Object.defineProperty(m,"NLToSPARQLService",{enumerable:!0,get:o(function(){return MI.NLToSPARQLService},"get")});Object.defineProperty(m,"DEFAULT_NL_TO_SPARQL_CONFIG",{enumerable:!0,get:o(function(){return MI.DEFAULT_NL_TO_SPARQL_CONFIG},"get")});var ii=fb();Object.defineProperty(m,"SPARQL_TEMPLATES",{enumerable:!0,get:o(function(){return ii.SPARQL_TEMPLATES},"get")});Object.defineProperty(m,"SPARQL_PREFIXES",{enumerable:!0,get:o(function(){return ii.SPARQL_PREFIXES},"get")});Object.defineProperty(m,"PREDICATES",{enumerable:!0,get:o(function(){return ii.PREDICATES},"get")});Object.defineProperty(m,"ASSET_CLASSES",{enumerable:!0,get:o(function(){return ii.ASSET_CLASSES},"get")});Object.defineProperty(m,"EFFORT_STATUSES",{enumerable:!0,get:o(function(){return ii.EFFORT_STATUSES},"get")});Object.defineProperty(m,"KNOWN_PROTOTYPES",{enumerable:!0,get:o(function(){return ii.KNOWN_PROTOTYPES},"get")});Object.defineProperty(m,"KNOWN_CLASSES",{enumerable:!0,get:o(function(){return ii.KNOWN_CLASSES},"get")});Object.defineProperty(m,"findClassByTerm",{enumerable:!0,get:o(function(){return ii.findClassByTerm},"get")});Object.defineProperty(m,"findMatchingTemplates",{enumerable:!0,get:o(function(){return ii.findMatchingTemplates},"get")});Object.defineProperty(m,"fillTemplate",{enumerable:!0,get:o(function(){return ii.fillTemplate},"get")});Object.defineProperty(m,"validateParameters",{enumerable:!0,get:o(function(){return ii.validateParameters},"get")});Object.defineProperty(m,"getTemplateByName",{enumerable:!0,get:o(function(){return ii.getTemplateByName},"get")});var wB=yx();Object.defineProperty(m,"AnalyticsService",{enumerable:!0,get:o(function(){return wB.AnalyticsService},"get")});var EB=_x();Object.defineProperty(m,"TrendDetectionService",{enumerable:!0,get:o(function(){return EB.TrendDetectionService},"get")});var jI=bx();Object.defineProperty(m,"AutocompleteService",{enumerable:!0,get:o(function(){return jI.AutocompleteService},"get")});Object.defineProperty(m,"DEFAULT_AUTOCOMPLETE_CONFIG",{enumerable:!0,get:o(function(){return jI.DEFAULT_AUTOCOMPLETE_CONFIG},"get")});var TB=wx();Object.defineProperty(m,"DailyReviewService",{enumerable:!0,get:o(function(){return TB.DailyReviewService},"get")});var $I=_b();Object.defineProperty(m,"CriticalityZoneService",{enumerable:!0,get:o(function(){return $I.CriticalityZoneService},"get")});Object.defineProperty(m,"CriticalityZoneUUIDs",{enumerable:!0,get:o(function(){return $I.CriticalityZoneUUIDs},"get")});var AB=Zn();Object.defineProperty(m,"FrontmatterService",{enumerable:!0,get:o(function(){return AB.FrontmatterService},"get")});var xB=Wr();Object.defineProperty(m,"DateFormatter",{enumerable:!0,get:o(function(){return xB.DateFormatter},"get")});var IB=qs();Object.defineProperty(m,"WikiLinkHelpers",{enumerable:!0,get:o(function(){return IB.WikiLinkHelpers},"get")});var CB=ps();Object.defineProperty(m,"MetadataHelpers",{enumerable:!0,get:o(function(){return CB.MetadataHelpers},"get")});var RB=fS();Object.defineProperty(m,"MetadataExtractor",{enumerable:!0,get:o(function(){return RB.MetadataExtractor},"get")});var OB=Tx();Object.defineProperty(m,"EffortSortingHelpers",{enumerable:!0,get:o(function(){return OB.EffortSortingHelpers},"get")});var PB=Ax();Object.defineProperty(m,"FilenameValidator",{enumerable:!0,get:o(function(){return PB.FilenameValidator},"get")});var FB=Fx();Object.defineProperty(m,"RDFSerializer",{enumerable:!0,get:o(function(){return FB.RDFSerializer},"get")});var DB=Tc();Object.defineProperty(m,"NullLogger",{enumerable:!0,get:o(function(){return DB.NullLogger},"get")});var VI=Ob();Object.defineProperty(m,"vaultPathToIRI",{enumerable:!0,get:o(function(){return VI.vaultPathToIRI},"get")});Object.defineProperty(m,"OBSIDIAN_VAULT_SCHEME",{enumerable:!0,get:o(function(){return VI.OBSIDIAN_VAULT_SCHEME},"get")});var NB=sS();Object.defineProperty(m,"InMemoryTripleStore",{enumerable:!0,get:o(function(){return NB.InMemoryTripleStore},"get")});var LB=Ae();Object.defineProperty(m,"DomainIRI",{enumerable:!0,get:o(function(){return LB.IRI},"get")});var kB=De();Object.defineProperty(m,"DomainLiteral",{enumerable:!0,get:o(function(){return kB.Literal},"get")});var MB=Vt();Object.defineProperty(m,"DomainBlankNode",{enumerable:!0,get:o(function(){return MB.BlankNode},"get")});var jB=Kn();Object.defineProperty(m,"DomainTriple",{enumerable:!0,get:o(function(){return jB.Triple},"get")});var $B=Fb();Object.defineProperty(m,"RDFVocabularyMapper",{enumerable:!0,get:o(function(){return $B.RDFVocabularyMapper},"get")});var VB=Nx();Object.defineProperty(m,"RDFSInferenceEngine",{enumerable:!0,get:o(function(){return VB.RDFSInferenceEngine},"get")});var UB=kb();Object.defineProperty(m,"NonInheritablePropertyRegistry",{enumerable:!0,get:o(function(){return UB.NonInheritablePropertyRegistry},"get")});var BB=$b();Object.defineProperty(m,"PropertyCardinalityRegistry",{enumerable:!0,get:o(function(){return BB.PropertyCardinalityRegistry},"get")});var UI=Bb();Object.defineProperty(m,"PrototypeChainMaterializer",{enumerable:!0,get:o(function(){return UI.PrototypeChainMaterializer},"get")});Object.defineProperty(m,"INFERRED_GRAPH",{enumerable:!0,get:o(function(){return UI.INFERRED_GRAPH},"get")});var BI=Wb();Object.defineProperty(m,"SourceAnnotator",{enumerable:!0,get:o(function(){return BI.SourceAnnotator},"get")});Object.defineProperty(m,"SOURCE_VARIABLE",{enumerable:!0,get:o(function(){return BI.SOURCE_VARIABLE},"get")});var qB=zb();Object.defineProperty(m,"NoteToRDFConverter",{enumerable:!0,get:o(function(){return qB.NoteToRDFConverter},"get")});var Gv=Nc();Object.defineProperty(m,"ExoQLParser",{enumerable:!0,get:o(function(){return Gv.ExoQLParser},"get")});Object.defineProperty(m,"SPARQLParser",{enumerable:!0,get:o(function(){return Gv.SPARQLParser},"get")});Object.defineProperty(m,"SPARQLParseError",{enumerable:!0,get:o(function(){return Gv.SPARQLParseError},"get")});var qI=$_();Object.defineProperty(m,"DescribeOptionsTransformer",{enumerable:!0,get:o(function(){return qI.DescribeOptionsTransformer},"get")});Object.defineProperty(m,"DescribeOptionsTransformerError",{enumerable:!0,get:o(function(){return qI.DescribeOptionsTransformerError},"get")});var WI=kc();Object.defineProperty(m,"ExoQLAlgebraTranslator",{enumerable:!0,get:o(function(){return WI.ExoQLAlgebraTranslator},"get")});Object.defineProperty(m,"AlgebraTranslator",{enumerable:!0,get:o(function(){return WI.AlgebraTranslator},"get")});var WB=Wx();Object.defineProperty(m,"AlgebraOptimizer",{enumerable:!0,get:o(function(){return WB.AlgebraOptimizer},"get")});var GB=Gx();Object.defineProperty(m,"AlgebraSerializer",{enumerable:!0,get:o(function(){return GB.AlgebraSerializer},"get")});var zB=n1();Object.defineProperty(m,"BGPExecutor",{enumerable:!0,get:o(function(){return zB.BGPExecutor},"get")});var HB=mp();Object.defineProperty(m,"FilterExecutor",{enumerable:!0,get:o(function(){return HB.FilterExecutor},"get")});var QB=w1();Object.defineProperty(m,"OptionalExecutor",{enumerable:!0,get:o(function(){return QB.OptionalExecutor},"get")});var KB=T1();Object.defineProperty(m,"UnionExecutor",{enumerable:!0,get:o(function(){return KB.UnionExecutor},"get")});var YB=N1();Object.defineProperty(m,"ConstructExecutor",{enumerable:!0,get:o(function(){return YB.ConstructExecutor},"get")});var XB=Hx();Object.defineProperty(m,"DescribeExecutor",{enumerable:!0,get:o(function(){return XB.DescribeExecutor},"get")});var GI=rl();Object.defineProperty(m,"ExoQLQueryExecutor",{enumerable:!0,get:o(function(){return GI.ExoQLQueryExecutor},"get")});Object.defineProperty(m,"QueryExecutor",{enumerable:!0,get:o(function(){return GI.QueryExecutor},"get")});var zI=Kx();Object.defineProperty(m,"UpdateExecutor",{enumerable:!0,get:o(function(){return zI.UpdateExecutor},"get")});Object.defineProperty(m,"UpdateExecutorError",{enumerable:!0,get:o(function(){return zI.UpdateExecutorError},"get")});var JB=ls();Object.defineProperty(m,"SolutionMapping",{enumerable:!0,get:o(function(){return JB.SolutionMapping},"get")});var ZB=pp();Object.defineProperty(m,"BuiltInFunctions",{enumerable:!0,get:o(function(){return ZB.BuiltInFunctions},"get")});var eq=Xx();Object.defineProperty(m,"AggregateFunctions",{enumerable:!0,get:o(function(){return eq.AggregateFunctions},"get")});var HI=I1();Object.defineProperty(m,"CustomAggregateRegistry",{enumerable:!0,get:o(function(){return HI.CustomAggregateRegistry},"get")});Object.defineProperty(m,"CustomAggregateError",{enumerable:!0,get:o(function(){return HI.CustomAggregateError},"get")});var Es=C1();Object.defineProperty(m,"BUILT_IN_AGGREGATES",{enumerable:!0,get:o(function(){return Es.BUILT_IN_AGGREGATES},"get")});Object.defineProperty(m,"EXO_AGGREGATE_NS",{enumerable:!0,get:o(function(){return Es.EXO_AGGREGATE_NS},"get")});Object.defineProperty(m,"medianAggregate",{enumerable:!0,get:o(function(){return Es.medianAggregate},"get")});Object.defineProperty(m,"varianceAggregate",{enumerable:!0,get:o(function(){return Es.varianceAggregate},"get")});Object.defineProperty(m,"stddevAggregate",{enumerable:!0,get:o(function(){return Es.stddevAggregate},"get")});Object.defineProperty(m,"modeAggregate",{enumerable:!0,get:o(function(){return Es.modeAggregate},"get")});Object.defineProperty(m,"createPercentileAggregate",{enumerable:!0,get:o(function(){return Es.createPercentileAggregate},"get")});Object.defineProperty(m,"getNumericValue",{enumerable:!0,get:o(function(){return Es.getNumericValue},"get")});Object.defineProperty(m,"createDecimalLiteral",{enumerable:!0,get:o(function(){return Es.createDecimalLiteral},"get")});Object.defineProperty(m,"createDoubleLiteral",{enumerable:!0,get:o(function(){return Es.createDoubleLiteral},"get")});var tq=Jx();Object.defineProperty(m,"QueryPlanCache",{enumerable:!0,get:o(function(){return tq.QueryPlanCache},"get")});var QI=Zx();Object.defineProperty(m,"SPARQLResultCache",{enumerable:!0,get:o(function(){return QI.SPARQLResultCache},"get")});Object.defineProperty(m,"createSPARQLResultCache",{enumerable:!0,get:o(function(){return QI.createSPARQLResultCache},"get")});var KI=eI();Object.defineProperty(m,"IncrementalIndexer",{enumerable:!0,get:o(function(){return KI.IncrementalIndexer},"get")});Object.defineProperty(m,"createIncrementalIndexer",{enumerable:!0,get:o(function(){return KI.createIncrementalIndexer},"get")});var rq=tI();Object.defineProperty(m,"ResultSerializer",{enumerable:!0,get:o(function(){return rq.ResultSerializer},"get")});var YI=k_();Object.defineProperty(m,"CaseWhenTransformer",{enumerable:!0,get:o(function(){return YI.CaseWhenTransformer},"get")});Object.defineProperty(m,"CaseWhenTransformerError",{enumerable:!0,get:o(function(){return YI.CaseWhenTransformerError},"get")});var nq=q_();Object.defineProperty(m,"VaultPrefixTransformer",{enumerable:!0,get:o(function(){return nq.VaultPrefixTransformer},"get")});var iq=Qb();Object.defineProperty(m,"FilterContainsOptimizer",{enumerable:!0,get:o(function(){return iq.FilterContainsOptimizer},"get")});var XI=rI();Object.defineProperty(m,"FileNotFoundError",{enumerable:!0,get:o(function(){return XI.FileNotFoundError},"get")});Object.defineProperty(m,"FileAlreadyExistsError",{enumerable:!0,get:o(function(){return XI.FileAlreadyExistsError},"get")});var zv=tS();Object.defineProperty(m,"TripleAlreadyExistsError",{enumerable:!0,get:o(function(){return zv.TripleAlreadyExistsError},"get")});Object.defineProperty(m,"TripleNotFoundError",{enumerable:!0,get:o(function(){return zv.TripleNotFoundError},"get")});Object.defineProperty(m,"TransactionError",{enumerable:!0,get:o(function(){return zv.TransactionError},"get")});var Bm=ov();Object.defineProperty(m,"VaultSettings",{enumerable:!0,get:o(function(){return Bm.VaultSettings},"get")});Object.defineProperty(m,"DEFAULT_OWNER_IDENTITY",{enumerable:!0,get:o(function(){return Bm.DEFAULT_OWNER_IDENTITY},"get")});Object.defineProperty(m,"DEFAULT_INBOX_FOLDER",{enumerable:!0,get:o(function(){return Bm.DEFAULT_INBOX_FOLDER},"get")});Object.defineProperty(m,"DEFAULT_FLEETING_NOTE_CLASS_UID",{enumerable:!0,get:o(function(){return Bm.DEFAULT_FLEETING_NOTE_CLASS_UID},"get")});var sq=wt();Object.defineProperty(m,"DI_TOKENS",{enumerable:!0,get:o(function(){return sq.DI_TOKENS},"get")});var yf=nI();Object.defineProperty(m,"registerCoreServices",{enumerable:!0,get:o(function(){return yf.registerCoreServices},"get")});Object.defineProperty(m,"createChildContainer",{enumerable:!0,get:o(function(){return yf.createChildContainer},"get")});Object.defineProperty(m,"getContainer",{enumerable:!0,get:o(function(){return yf.getContainer},"get")});Object.defineProperty(m,"resetContainer",{enumerable:!0,get:o(function(){return yf.resetContainer},"get")});Object.defineProperty(m,"container",{enumerable:!0,get:o(function(){return yf.container},"get")});var la=lI();Object.defineProperty(m,"NODE_FLAGS",{enumerable:!0,get:o(function(){return la.NODE_FLAGS},"get")});Object.defineProperty(m,"DEFAULT_COLORS",{enumerable:!0,get:o(function(){return la.DEFAULT_COLORS},"get")});Object.defineProperty(m,"StringTable",{enumerable:!0,get:o(function(){return la.StringTable},"get")});Object.defineProperty(m,"CompactGraphStore",{enumerable:!0,get:o(function(){return la.CompactGraphStore},"get")});Object.defineProperty(m,"MemoryPool",{enumerable:!0,get:o(function(){return la.MemoryPool},"get")});Object.defineProperty(m,"getGlobalPool",{enumerable:!0,get:o(function(){return la.getGlobalPool},"get")});Object.defineProperty(m,"resetGlobalPool",{enumerable:!0,get:o(function(){return la.resetGlobalPool},"get")});Object.defineProperty(m,"StreamingLoader",{enumerable:!0,get:o(function(){return la.StreamingLoader},"get")});Object.defineProperty(m,"createStreamingSource",{enumerable:!0,get:o(function(){return la.createStreamingSource},"get")});var JI=uI();Object.defineProperty(m,"ExoQL",{enumerable:!0,get:o(function(){return JI.ExoQL},"get")});Object.defineProperty(m,"ExoQLError",{enumerable:!0,get:o(function(){return JI.ExoQLError},"get")});var Al=Tm();Object.defineProperty(m,"RELATION_COLUMN_SET_CLASS_IRI",{enumerable:!0,get:o(function(){return Al.RELATION_COLUMN_SET_CLASS_IRI},"get")});Object.defineProperty(m,"RELATION_COLUMN_SET_CLASS_UID",{enumerable:!0,get:o(function(){return Al.RELATION_COLUMN_SET_CLASS_UID},"get")});Object.defineProperty(m,"createRelationColumnSetFromFrontmatter",{enumerable:!0,get:o(function(){return Al.createRelationColumnSetFromFrontmatter},"get")});Object.defineProperty(m,"isRelationColumnSet",{enumerable:!0,get:o(function(){return Al.isRelationColumnSet},"get")});Object.defineProperty(m,"isRelationColumnSetFrontmatter",{enumerable:!0,get:o(function(){return Al.isRelationColumnSetFrontmatter},"get")});Object.defineProperty(m,"normalizeRelationColumnSetRef",{enumerable:!0,get:o(function(){return Al.normalizeRef},"get")});var aq=SI();Object.defineProperty(m,"RelationColumnSetResolver",{enumerable:!0,get:o(function(){return aq.RelationColumnSetResolver},"get")});var _f=Tm();Object.defineProperty(m,"LAYOUT_CLASS_IRI",{enumerable:!0,get:o(function(){return _f.LAYOUT_CLASS_IRI},"get")});Object.defineProperty(m,"LAYOUT_CLASS_UID",{enumerable:!0,get:o(function(){return _f.LAYOUT_CLASS_UID},"get")});Object.defineProperty(m,"createLayoutFromFrontmatter",{enumerable:!0,get:o(function(){return _f.createLayoutFromFrontmatter},"get")});Object.defineProperty(m,"isLayout",{enumerable:!0,get:o(function(){return _f.isLayout},"get")});Object.defineProperty(m,"isLayoutFrontmatter",{enumerable:!0,get:o(function(){return _f.isLayoutFrontmatter},"get")});var Wa=Tm();Object.defineProperty(m,"BACKLINKS_TABLE_BLOCK_CLASS_IRI",{enumerable:!0,get:o(function(){return Wa.BACKLINKS_TABLE_BLOCK_CLASS_IRI},"get")});Object.defineProperty(m,"BACKLINKS_TABLE_BLOCK_CLASS_UID",{enumerable:!0,get:o(function(){return Wa.BACKLINKS_TABLE_BLOCK_CLASS_UID},"get")});Object.defineProperty(m,"PROPERTIES_BLOCK_CLASS_IRI",{enumerable:!0,get:o(function(){return Wa.PROPERTIES_BLOCK_CLASS_IRI},"get")});Object.defineProperty(m,"PROPERTIES_BLOCK_CLASS_UID",{enumerable:!0,get:o(function(){return Wa.PROPERTIES_BLOCK_CLASS_UID},"get")});Object.defineProperty(m,"createLayoutBlockFromFrontmatter",{enumerable:!0,get:o(function(){return Wa.createLayoutBlockFromFrontmatter},"get")});Object.defineProperty(m,"isBacklinksTableBlock",{enumerable:!0,get:o(function(){return Wa.isBacklinksTableBlock},"get")});Object.defineProperty(m,"isLayoutBlockFrontmatter",{enumerable:!0,get:o(function(){return Wa.isLayoutBlockFrontmatter},"get")});Object.defineProperty(m,"isPropertiesBlock",{enumerable:!0,get:o(function(){return Wa.isPropertiesBlock},"get")});var ZI=vI();Object.defineProperty(m,"LayoutSelector",{enumerable:!0,get:o(function(){return ZI.LayoutSelector},"get")});Object.defineProperty(m,"selectByPriority",{enumerable:!0,get:o(function(){return ZI.selectByPriority},"get")});ni(OI(),m);var oq=kv();Object.defineProperty(m,"ShapeLoader",{enumerable:!0,get:o(function(){return oq.ShapeLoader},"get")});var cq=Pv();Object.defineProperty(m,"ShapeRegistry",{enumerable:!0,get:o(function(){return cq.ShapeRegistry},"get")});var lq=or();Object.defineProperty(m,"Namespace",{enumerable:!0,get:o(function(){return lq.Namespace},"get")});var eC=jv();Object.defineProperty(m,"shaclValidate",{enumerable:!0,get:o(function(){return eC.validate},"get")});Object.defineProperty(m,"ShaclShapeRegistry",{enumerable:!0,get:o(function(){return eC.ShapeRegistry},"get")});ni(FI(),m);var Hv=NI();Object.defineProperty(m,"ValidatorDaemon",{enumerable:!0,get:o(function(){return Hv.ValidatorDaemon},"get")});Object.defineProperty(m,"DEFAULT_SOCKET_PATH",{enumerable:!0,get:o(function(){return Hv.DEFAULT_SOCKET_PATH},"get")});Object.defineProperty(m,"IDLE_TIMEOUT_MS",{enumerable:!0,get:o(function(){return Hv.IDLE_TIMEOUT_MS},"get")});var uq=Bv();Object.defineProperty(m,"TripleClassHierarchy",{enumerable:!0,get:o(function(){return uq.ClassHierarchy},"get")})});var vr=S(Qv=>{"use strict";Qv.fromCallback=function(n){return Object.defineProperty(function(...e){if(typeof e[e.length-1]=="function")n.apply(this,e);else return new Promise((t,r)=>{e.push((i,s)=>i!=null?r(i):t(s)),n.apply(this,e)})},"name",{value:n.name})};Qv.fromPromise=function(n){return Object.defineProperty(function(...e){let t=e[e.length-1];if(typeof t!="function")return n.apply(this,e);e.pop(),n.apply(this,e).then(r=>t(null,r),t)},"name",{value:n.name})}});var rC=S((dle,tC)=>{var Ga=require("constants"),fq=process.cwd,qm=null,dq=process.env.GRACEFUL_FS_PLATFORM||process.platform;process.cwd=function(){return qm||(qm=fq.call(process)),qm};try{process.cwd()}catch{}typeof process.chdir=="function"&&(Kv=process.chdir,process.chdir=function(n){qm=null,Kv.call(process,n)},Object.setPrototypeOf&&Object.setPrototypeOf(process.chdir,Kv));var Kv;tC.exports=hq;function hq(n){Ga.hasOwnProperty("O_SYMLINK")&&process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)&&e(n),n.lutimes||t(n),n.chown=s(n.chown),n.fchown=s(n.fchown),n.lchown=s(n.lchown),n.chmod=r(n.chmod),n.fchmod=r(n.fchmod),n.lchmod=r(n.lchmod),n.chownSync=a(n.chownSync),n.fchownSync=a(n.fchownSync),n.lchownSync=a(n.lchownSync),n.chmodSync=i(n.chmodSync),n.fchmodSync=i(n.fchmodSync),n.lchmodSync=i(n.lchmodSync),n.stat=c(n.stat),n.fstat=c(n.fstat),n.lstat=c(n.lstat),n.statSync=l(n.statSync),n.fstatSync=l(n.fstatSync),n.lstatSync=l(n.lstatSync),n.chmod&&!n.lchmod&&(n.lchmod=function(f,d,h){h&&process.nextTick(h)},n.lchmodSync=function(){}),n.chown&&!n.lchown&&(n.lchown=function(f,d,h,p){p&&process.nextTick(p)},n.lchownSync=function(){}),dq==="win32"&&(n.rename=typeof n.rename!="function"?n.rename:(function(f){function d(h,p,y){var b=Date.now(),w=0;f(h,p,o(function v(T){if(T&&(T.code==="EACCES"||T.code==="EPERM"||T.code==="EBUSY")&&Date.now()-b<6e4){setTimeout(function(){n.stat(p,function(C,L){C&&C.code==="ENOENT"?f(h,p,v):y(T)})},w),w<100&&(w+=10);return}y&&y(T)},"CB"))}return o(d,"rename"),Object.setPrototypeOf&&Object.setPrototypeOf(d,f),d})(n.rename)),n.read=typeof n.read!="function"?n.read:(function(f){function d(h,p,y,b,w,v){var T;if(v&&typeof v=="function"){var C=0;T=o(function(L,V,ae){if(L&&L.code==="EAGAIN"&&C<10)return C++,f.call(n,h,p,y,b,w,T);v.apply(this,arguments)},"callback")}return f.call(n,h,p,y,b,w,T)}return o(d,"read"),Object.setPrototypeOf&&Object.setPrototypeOf(d,f),d})(n.read),n.readSync=typeof n.readSync!="function"?n.readSync:(function(f){return function(d,h,p,y,b){for(var w=0;;)try{return f.call(n,d,h,p,y,b)}catch(v){if(v.code==="EAGAIN"&&w<10){w++;continue}throw v}}})(n.readSync);function e(f){f.lchmod=function(d,h,p){f.open(d,Ga.O_WRONLY|Ga.O_SYMLINK,h,function(y,b){if(y){p&&p(y);return}f.fchmod(b,h,function(w){f.close(b,function(v){p&&p(w||v)})})})},f.lchmodSync=function(d,h){var p=f.openSync(d,Ga.O_WRONLY|Ga.O_SYMLINK,h),y=!0,b;try{b=f.fchmodSync(p,h),y=!1}finally{if(y)try{f.closeSync(p)}catch{}else f.closeSync(p)}return b}}o(e,"patchLchmod");function t(f){Ga.hasOwnProperty("O_SYMLINK")&&f.futimes?(f.lutimes=function(d,h,p,y){f.open(d,Ga.O_SYMLINK,function(b,w){if(b){y&&y(b);return}f.futimes(w,h,p,function(v){f.close(w,function(T){y&&y(v||T)})})})},f.lutimesSync=function(d,h,p){var y=f.openSync(d,Ga.O_SYMLINK),b,w=!0;try{b=f.futimesSync(y,h,p),w=!1}finally{if(w)try{f.closeSync(y)}catch{}else f.closeSync(y)}return b}):f.futimes&&(f.lutimes=function(d,h,p,y){y&&process.nextTick(y)},f.lutimesSync=function(){})}o(t,"patchLutimes");function r(f){return f&&function(d,h,p){return f.call(n,d,h,function(y){u(y)&&(y=null),p&&p.apply(this,arguments)})}}o(r,"chmodFix");function i(f){return f&&function(d,h){try{return f.call(n,d,h)}catch(p){if(!u(p))throw p}}}o(i,"chmodFixSync");function s(f){return f&&function(d,h,p,y){return f.call(n,d,h,p,function(b){u(b)&&(b=null),y&&y.apply(this,arguments)})}}o(s,"chownFix");function a(f){return f&&function(d,h,p){try{return f.call(n,d,h,p)}catch(y){if(!u(y))throw y}}}o(a,"chownFixSync");function c(f){return f&&function(d,h,p){typeof h=="function"&&(p=h,h=null);function y(b,w){w&&(w.uid<0&&(w.uid+=4294967296),w.gid<0&&(w.gid+=4294967296)),p&&p.apply(this,arguments)}return o(y,"callback"),h?f.call(n,d,h,y):f.call(n,d,y)}}o(c,"statFix");function l(f){return f&&function(d,h){var p=h?f.call(n,d,h):f.call(n,d);return p&&(p.uid<0&&(p.uid+=4294967296),p.gid<0&&(p.gid+=4294967296)),p}}o(l,"statFixSync");function u(f){if(!f||f.code==="ENOSYS")return!0;var d=!process.getuid||process.getuid()!==0;return!!(d&&(f.code==="EINVAL"||f.code==="EPERM"))}o(u,"chownErOk")}o(hq,"patch")});var sC=S((ple,iC)=>{var nC=require("stream").Stream;iC.exports=pq;function pq(n){return{ReadStream:e,WriteStream:t};function e(r,i){if(!(this instanceof e))return new e(r,i);nC.call(this);var s=this;this.path=r,this.fd=null,this.readable=!0,this.paused=!1,this.flags="r",this.mode=438,this.bufferSize=64*1024,i=i||{};for(var a=Object.keys(i),c=0,l=a.length;c<l;c++){var u=a[c];this[u]=i[u]}if(this.encoding&&this.setEncoding(this.encoding),this.start!==void 0){if(typeof this.start!="number")throw TypeError("start must be a Number");if(this.end===void 0)this.end=1/0;else if(typeof this.end!="number")throw TypeError("end must be a Number");if(this.start>this.end)throw new Error("start must be <= end");this.pos=this.start}if(this.fd!==null){process.nextTick(function(){s._read()});return}n.open(this.path,this.flags,this.mode,function(f,d){if(f){s.emit("error",f),s.readable=!1;return}s.fd=d,s.emit("open",d),s._read()})}function t(r,i){if(!(this instanceof t))return new t(r,i);nC.call(this),this.path=r,this.fd=null,this.writable=!0,this.flags="w",this.encoding="binary",this.mode=438,this.bytesWritten=0,i=i||{};for(var s=Object.keys(i),a=0,c=s.length;a<c;a++){var l=s[a];this[l]=i[l]}if(this.start!==void 0){if(typeof this.start!="number")throw TypeError("start must be a Number");if(this.start<0)throw new Error("start must be >= zero");this.pos=this.start}this.busy=!1,this._queue=[],this.fd===null&&(this._open=n.open,this._queue.push([this._open,this.path,this.flags,this.mode,void 0]),this.flush())}}o(pq,"legacy")});var oC=S((gle,aC)=>{"use strict";aC.exports=gq;var mq=Object.getPrototypeOf||function(n){return n.__proto__};function gq(n){if(n===null||typeof n!="object")return n;if(n instanceof Object)var e={__proto__:mq(n)};else var e=Object.create(null);return Object.getOwnPropertyNames(n).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}),e}o(gq,"clone")});var Il=S((_le,Jv)=>{var Mt=require("fs"),yq=rC(),_q=sC(),Sq=oC(),Wm=require("util"),kr,zm;typeof Symbol=="function"&&typeof Symbol.for=="function"?(kr=Symbol.for("graceful-fs.queue"),zm=Symbol.for("graceful-fs.previous")):(kr="___graceful-fs.queue",zm="___graceful-fs.previous");function bq(){}o(bq,"noop");function uC(n,e){Object.defineProperty(n,kr,{get:o(function(){return e},"get")})}o(uC,"publishQueue");var Ho=bq;Wm.debuglog?Ho=Wm.debuglog("gfs4"):/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")&&(Ho=o(function(){var n=Wm.format.apply(Wm,arguments);n="GFS4: "+n.split(/\n/).join(`
458
- GFS4: `),console.error(n)},"debug"));Mt[kr]||(cC=global[kr]||[],uC(Mt,cC),Mt.close=(function(n){function e(t,r){return n.call(Mt,t,function(i){i||lC(),typeof r=="function"&&r.apply(this,arguments)})}return o(e,"close"),Object.defineProperty(e,zm,{value:n}),e})(Mt.close),Mt.closeSync=(function(n){function e(t){n.apply(Mt,arguments),lC()}return o(e,"closeSync"),Object.defineProperty(e,zm,{value:n}),e})(Mt.closeSync),/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")&&process.on("exit",function(){Ho(Mt[kr]),require("assert").equal(Mt[kr].length,0)}));var cC;global[kr]||uC(global,Mt[kr]);Jv.exports=Yv(Sq(Mt));process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH&&!Mt.__patched&&(Jv.exports=Yv(Mt),Mt.__patched=!0);function Yv(n){yq(n),n.gracefulify=Yv,n.createReadStream=V,n.createWriteStream=ae;var e=n.readFile;n.readFile=t;function t(F,k,ee){return typeof k=="function"&&(ee=k,k=null),Ke(F,k,ee);function Ke(at,Ot,ot,lt){return e(at,Ot,function(Xe){Xe&&(Xe.code==="EMFILE"||Xe.code==="ENFILE")?xl([Ke,[at,Ot,ot],Xe,lt||Date.now(),Date.now()]):typeof ot=="function"&&ot.apply(this,arguments)})}o(Ke,"go$readFile")}o(t,"readFile");var r=n.writeFile;n.writeFile=i;function i(F,k,ee,Ke){return typeof ee=="function"&&(Ke=ee,ee=null),at(F,k,ee,Ke);function at(Ot,ot,lt,Xe,ne){return r(Ot,ot,lt,function(q){q&&(q.code==="EMFILE"||q.code==="ENFILE")?xl([at,[Ot,ot,lt,Xe],q,ne||Date.now(),Date.now()]):typeof Xe=="function"&&Xe.apply(this,arguments)})}o(at,"go$writeFile")}o(i,"writeFile");var s=n.appendFile;s&&(n.appendFile=a);function a(F,k,ee,Ke){return typeof ee=="function"&&(Ke=ee,ee=null),at(F,k,ee,Ke);function at(Ot,ot,lt,Xe,ne){return s(Ot,ot,lt,function(q){q&&(q.code==="EMFILE"||q.code==="ENFILE")?xl([at,[Ot,ot,lt,Xe],q,ne||Date.now(),Date.now()]):typeof Xe=="function"&&Xe.apply(this,arguments)})}o(at,"go$appendFile")}o(a,"appendFile");var c=n.copyFile;c&&(n.copyFile=l);function l(F,k,ee,Ke){return typeof ee=="function"&&(Ke=ee,ee=0),at(F,k,ee,Ke);function at(Ot,ot,lt,Xe,ne){return c(Ot,ot,lt,function(q){q&&(q.code==="EMFILE"||q.code==="ENFILE")?xl([at,[Ot,ot,lt,Xe],q,ne||Date.now(),Date.now()]):typeof Xe=="function"&&Xe.apply(this,arguments)})}o(at,"go$copyFile")}o(l,"copyFile");var u=n.readdir;n.readdir=d;var f=/^v[0-5]\./;function d(F,k,ee){typeof k=="function"&&(ee=k,k=null);var Ke=f.test(process.version)?o(function(ot,lt,Xe,ne){return u(ot,at(ot,lt,Xe,ne))},"go$readdir"):o(function(ot,lt,Xe,ne){return u(ot,lt,at(ot,lt,Xe,ne))},"go$readdir");return Ke(F,k,ee);function at(Ot,ot,lt,Xe){return function(ne,q){ne&&(ne.code==="EMFILE"||ne.code==="ENFILE")?xl([Ke,[Ot,ot,lt],ne,Xe||Date.now(),Date.now()]):(q&&q.sort&&q.sort(),typeof lt=="function"&&lt.call(this,ne,q))}}}if(o(d,"readdir"),process.version.substr(0,4)==="v0.8"){var h=_q(n);v=h.ReadStream,C=h.WriteStream}var p=n.ReadStream;p&&(v.prototype=Object.create(p.prototype),v.prototype.open=T);var y=n.WriteStream;y&&(C.prototype=Object.create(y.prototype),C.prototype.open=L),Object.defineProperty(n,"ReadStream",{get:o(function(){return v},"get"),set:o(function(F){v=F},"set"),enumerable:!0,configurable:!0}),Object.defineProperty(n,"WriteStream",{get:o(function(){return C},"get"),set:o(function(F){C=F},"set"),enumerable:!0,configurable:!0});var b=v;Object.defineProperty(n,"FileReadStream",{get:o(function(){return b},"get"),set:o(function(F){b=F},"set"),enumerable:!0,configurable:!0});var w=C;Object.defineProperty(n,"FileWriteStream",{get:o(function(){return w},"get"),set:o(function(F){w=F},"set"),enumerable:!0,configurable:!0});function v(F,k){return this instanceof v?(p.apply(this,arguments),this):v.apply(Object.create(v.prototype),arguments)}o(v,"ReadStream");function T(){var F=this;B(F.path,F.flags,F.mode,function(k,ee){k?(F.autoClose&&F.destroy(),F.emit("error",k)):(F.fd=ee,F.emit("open",ee),F.read())})}o(T,"ReadStream$open");function C(F,k){return this instanceof C?(y.apply(this,arguments),this):C.apply(Object.create(C.prototype),arguments)}o(C,"WriteStream");function L(){var F=this;B(F.path,F.flags,F.mode,function(k,ee){k?(F.destroy(),F.emit("error",k)):(F.fd=ee,F.emit("open",ee))})}o(L,"WriteStream$open");function V(F,k){return new n.ReadStream(F,k)}o(V,"createReadStream");function ae(F,k){return new n.WriteStream(F,k)}o(ae,"createWriteStream");var $=n.open;n.open=B;function B(F,k,ee,Ke){return typeof ee=="function"&&(Ke=ee,ee=null),at(F,k,ee,Ke);function at(Ot,ot,lt,Xe,ne){return $(Ot,ot,lt,function(q,ut){q&&(q.code==="EMFILE"||q.code==="ENFILE")?xl([at,[Ot,ot,lt,Xe],q,ne||Date.now(),Date.now()]):typeof Xe=="function"&&Xe.apply(this,arguments)})}o(at,"go$open")}return o(B,"open"),n}o(Yv,"patch");function xl(n){Ho("ENQUEUE",n[0].name,n[1]),Mt[kr].push(n),Xv()}o(xl,"enqueue");var Gm;function lC(){for(var n=Date.now(),e=0;e<Mt[kr].length;++e)Mt[kr][e].length>2&&(Mt[kr][e][3]=n,Mt[kr][e][4]=n);Xv()}o(lC,"resetQueue");function Xv(){if(clearTimeout(Gm),Gm=void 0,Mt[kr].length!==0){var n=Mt[kr].shift(),e=n[0],t=n[1],r=n[2],i=n[3],s=n[4];if(i===void 0)Ho("RETRY",e.name,t),e.apply(null,t);else if(Date.now()-i>=6e4){Ho("TIMEOUT",e.name,t);var a=t.pop();typeof a=="function"&&a.call(null,r)}else{var c=Date.now()-s,l=Math.max(s-i,1),u=Math.min(l*1.2,100);c>=u?(Ho("RETRY",e.name,t),e.apply(null,t.concat([i]))):Mt[kr].push(n)}Gm===void 0&&(Gm=setTimeout(Xv,0))}}o(Xv,"retry")});var pn=S(ua=>{"use strict";var fC=vr().fromCallback,hn=Il(),vq=["access","appendFile","chmod","chown","close","copyFile","cp","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","glob","lchmod","lchown","lutimes","link","lstat","mkdir","mkdtemp","open","opendir","readdir","readFile","readlink","realpath","rename","rm","rmdir","stat","statfs","symlink","truncate","unlink","utimes","writeFile"].filter(n=>typeof hn[n]=="function");Object.assign(ua,hn);vq.forEach(n=>{ua[n]=fC(hn[n])});ua.exists=function(n,e){return typeof e=="function"?hn.exists(n,e):new Promise(t=>hn.exists(n,t))};ua.read=function(n,e,t,r,i,s){return typeof s=="function"?hn.read(n,e,t,r,i,s):new Promise((a,c)=>{hn.read(n,e,t,r,i,(l,u,f)=>{if(l)return c(l);a({bytesRead:u,buffer:f})})})};ua.write=function(n,e,...t){return typeof t[t.length-1]=="function"?hn.write(n,e,...t):new Promise((r,i)=>{hn.write(n,e,...t,(s,a,c)=>{if(s)return i(s);r({bytesWritten:a,buffer:c})})})};ua.readv=function(n,e,...t){return typeof t[t.length-1]=="function"?hn.readv(n,e,...t):new Promise((r,i)=>{hn.readv(n,e,...t,(s,a,c)=>{if(s)return i(s);r({bytesRead:a,buffers:c})})})};ua.writev=function(n,e,...t){return typeof t[t.length-1]=="function"?hn.writev(n,e,...t):new Promise((r,i)=>{hn.writev(n,e,...t,(s,a,c)=>{if(s)return i(s);r({bytesWritten:a,buffers:c})})})};typeof hn.realpath.native=="function"?ua.realpath.native=fC(hn.realpath.native):process.emitWarning("fs.realpath.native is not a function. Is fs being monkey-patched?","Warning","fs-extra-WARN0003")});var hC=S((vle,dC)=>{"use strict";var wq=require("path");dC.exports.checkPath=o(function(e){if(process.platform==="win32"&&/[<>:"|?*]/.test(e.replace(wq.parse(e).root,""))){let r=new Error(`Path contains invalid characters: ${e}`);throw r.code="EINVAL",r}},"checkPath")});var yC=S((Ele,Zv)=>{"use strict";var pC=pn(),{checkPath:mC}=hC(),gC=o(n=>{let e={mode:511};return typeof n=="number"?n:{...e,...n}.mode},"getMode");Zv.exports.makeDir=async(n,e)=>(mC(n),pC.mkdir(n,{mode:gC(e),recursive:!0}));Zv.exports.makeDirSync=(n,e)=>(mC(n),pC.mkdirSync(n,{mode:gC(e),recursive:!0}))});var qi=S((Ale,_C)=>{"use strict";var Eq=vr().fromPromise,{makeDir:Tq,makeDirSync:ew}=yC(),tw=Eq(Tq);_C.exports={mkdirs:tw,mkdirsSync:ew,mkdirp:tw,mkdirpSync:ew,ensureDir:tw,ensureDirSync:ew}});var za=S((xle,bC)=>{"use strict";var Aq=vr().fromPromise,SC=pn();function xq(n){return SC.access(n).then(()=>!0).catch(()=>!1)}o(xq,"pathExists");bC.exports={pathExists:Aq(xq),pathExistsSync:SC.existsSync}});var rw=S((Cle,vC)=>{"use strict";var Cl=pn(),Iq=vr().fromPromise;async function Cq(n,e,t){let r=await Cl.open(n,"r+"),i=null;try{await Cl.futimes(r,e,t)}finally{try{await Cl.close(r)}catch(s){i=s}}if(i)throw i}o(Cq,"utimesMillis");function Rq(n,e,t){let r=Cl.openSync(n,"r+");return Cl.futimesSync(r,e,t),Cl.closeSync(r)}o(Rq,"utimesMillisSync");vC.exports={utimesMillis:Iq(Cq),utimesMillisSync:Rq}});var Qo=S((Ole,AC)=>{"use strict";var Rl=pn(),wr=require("path"),wC=vr().fromPromise;function Oq(n,e,t){let r=t.dereference?i=>Rl.stat(i,{bigint:!0}):i=>Rl.lstat(i,{bigint:!0});return Promise.all([r(n),r(e).catch(i=>{if(i.code==="ENOENT")return null;throw i})]).then(([i,s])=>({srcStat:i,destStat:s}))}o(Oq,"getStats");function Pq(n,e,t){let r,i=t.dereference?a=>Rl.statSync(a,{bigint:!0}):a=>Rl.lstatSync(a,{bigint:!0}),s=i(n);try{r=i(e)}catch(a){if(a.code==="ENOENT")return{srcStat:s,destStat:null};throw a}return{srcStat:s,destStat:r}}o(Pq,"getStatsSync");async function Fq(n,e,t,r){let{srcStat:i,destStat:s}=await Oq(n,e,r);if(s){if(Sf(i,s)){let a=wr.basename(n),c=wr.basename(e);if(t==="move"&&a!==c&&a.toLowerCase()===c.toLowerCase())return{srcStat:i,destStat:s,isChangingCase:!0};throw new Error("Source and destination must not be the same.")}if(i.isDirectory()&&!s.isDirectory())throw new Error(`Cannot overwrite non-directory '${e}' with directory '${n}'.`);if(!i.isDirectory()&&s.isDirectory())throw new Error(`Cannot overwrite directory '${e}' with non-directory '${n}'.`)}if(i.isDirectory()&&nw(n,e))throw new Error(Hm(n,e,t));return{srcStat:i,destStat:s}}o(Fq,"checkPaths");function Dq(n,e,t,r){let{srcStat:i,destStat:s}=Pq(n,e,r);if(s){if(Sf(i,s)){let a=wr.basename(n),c=wr.basename(e);if(t==="move"&&a!==c&&a.toLowerCase()===c.toLowerCase())return{srcStat:i,destStat:s,isChangingCase:!0};throw new Error("Source and destination must not be the same.")}if(i.isDirectory()&&!s.isDirectory())throw new Error(`Cannot overwrite non-directory '${e}' with directory '${n}'.`);if(!i.isDirectory()&&s.isDirectory())throw new Error(`Cannot overwrite directory '${e}' with non-directory '${n}'.`)}if(i.isDirectory()&&nw(n,e))throw new Error(Hm(n,e,t));return{srcStat:i,destStat:s}}o(Dq,"checkPathsSync");async function EC(n,e,t,r){let i=wr.resolve(wr.dirname(n)),s=wr.resolve(wr.dirname(t));if(s===i||s===wr.parse(s).root)return;let a;try{a=await Rl.stat(s,{bigint:!0})}catch(c){if(c.code==="ENOENT")return;throw c}if(Sf(e,a))throw new Error(Hm(n,t,r));return EC(n,e,s,r)}o(EC,"checkParentPaths");function TC(n,e,t,r){let i=wr.resolve(wr.dirname(n)),s=wr.resolve(wr.dirname(t));if(s===i||s===wr.parse(s).root)return;let a;try{a=Rl.statSync(s,{bigint:!0})}catch(c){if(c.code==="ENOENT")return;throw c}if(Sf(e,a))throw new Error(Hm(n,t,r));return TC(n,e,s,r)}o(TC,"checkParentPathsSync");function Sf(n,e){return e.ino!==void 0&&e.dev!==void 0&&e.ino===n.ino&&e.dev===n.dev}o(Sf,"areIdentical");function nw(n,e){let t=wr.resolve(n).split(wr.sep).filter(i=>i),r=wr.resolve(e).split(wr.sep).filter(i=>i);return t.every((i,s)=>r[s]===i)}o(nw,"isSrcSubdir");function Hm(n,e,t){return`Cannot ${t} '${n}' to a subdirectory of itself, '${e}'.`}o(Hm,"errMsg");AC.exports={checkPaths:wC(Fq),checkPathsSync:Dq,checkParentPaths:wC(EC),checkParentPathsSync:TC,isSrcSubdir:nw,areIdentical:Sf}});var IC=S((Fle,xC)=>{"use strict";async function Nq(n,e){let t=[];for await(let r of n)t.push(e(r).then(()=>null,i=>i??new Error("unknown error")));await Promise.all(t.map(r=>r.then(i=>{if(i!==null)throw i})))}o(Nq,"asyncIteratorConcurrentProcess");xC.exports={asyncIteratorConcurrentProcess:Nq}});var FC=S((Nle,PC)=>{"use strict";var Qr=pn(),bf=require("path"),{mkdirs:Lq}=qi(),{pathExists:kq}=za(),{utimesMillis:Mq}=rw(),vf=Qo(),{asyncIteratorConcurrentProcess:jq}=IC();async function $q(n,e,t={}){typeof t=="function"&&(t={filter:t}),t.clobber="clobber"in t?!!t.clobber:!0,t.overwrite="overwrite"in t?!!t.overwrite:t.clobber,t.preserveTimestamps&&process.arch==="ia32"&&process.emitWarning(`Using the preserveTimestamps option in 32-bit node is not recommended;
457
+ `)}async getRegistry(e){let t=this.registryCache.get(e);if(t)return t;let r=await kU.ShapeLoader.loadFromShapeJSON(e),i=new DI.ShapeRegistry(r.getAll());return this.registryCache.set(e,i),i}};ws.ValidatorDaemon=qv});var nr=S(m=>{"use strict";var jU=m&&m.__createBinding||(Object.create?(function(n,e,t,r){r===void 0&&(r=t);var i=Object.getOwnPropertyDescriptor(e,t);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[t]},"get")}),Object.defineProperty(n,r,i)}):(function(n,e,t,r){r===void 0&&(r=t),n[r]=e[t]})),ni=m&&m.__exportStar||function(n,e){for(var t in n)t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&jU(e,n,t)};Object.defineProperty(m,"__esModule",{value:!0});m.RenameToUidService=m.PropertyCleanupService=m.LoggingService=m.LabelToAliasService=m.FolderRepairService=m.EffortVotingService=m.WorkflowCommandAdapter=m.VisibilityGenerator=m.InstantiationRuleResolver=m.WorkflowResolver=m.WorkflowEngine=m.EffortStatusWorkflow=m.ConceptCreationService=m.ClassCreationService=m.AreaHierarchyBuilder=m.AreaCreationService=m.TaskStatusService=m.ServiceRegistry=m.GroundingExecutor=m.PreconditionEvaluator=m.CommandResolver=m.extractPropertyLabel=m.uriToPropertyName=m.propertyNameToUri=m.rangeToFieldType=m.PropertyFieldType=m.isCommandBindingFrontmatter=m.isGroundingFrontmatter=m.isPreconditionFrontmatter=m.isCommandFrontmatter=m.isStyleSource=m.isLabelClass=m.isCommandVariant=m.STYLE_SOURCE_VALUES=m.LABEL_CLASS_VALUES=m.COMMAND_VARIANT_VALUES=m.CommandBindingStyleProperty=m.CommandBindingProperty=m.GroundingProperty=m.PreconditionProperty=m.CommandProperty=m.GroundingType=m.getEffortStatusLabel=m.isTrashedStatus=m.isDoneStatus=m.normalizeEffortStatus=m.EFFORT_STATUS_OPTIONS=m.STATUS_NAME_TO_WIKILINK=m.STATUS_NAME_TO_ENUM=m.EFFORT_STATUS_CONFIG=void 0;m.InMemoryTripleStore=m.OBSIDIAN_VAULT_SCHEME=m.vaultPathToIRI=m.NullLogger=m.RDFSerializer=m.FilenameValidator=m.EffortSortingHelpers=m.MetadataExtractor=m.MetadataHelpers=m.WikiLinkHelpers=m.DateFormatter=m.FrontmatterService=m.CriticalityZoneUUIDs=m.CriticalityZoneService=m.DailyReviewService=m.DEFAULT_AUTOCOMPLETE_CONFIG=m.AutocompleteService=m.TrendDetectionService=m.AnalyticsService=m.getTemplateByName=m.validateParameters=m.fillTemplate=m.findMatchingTemplates=m.findClassByTerm=m.KNOWN_CLASSES=m.KNOWN_PROTOTYPES=m.EFFORT_STATUSES=m.ASSET_CLASSES=m.PREDICATES=m.SPARQL_PREFIXES=m.SPARQL_TEMPLATES=m.DEFAULT_NL_TO_SPARQL_CONFIG=m.NLToSPARQLService=m.TypeRegistry=m.GraphQueryService=m.FixMissingLabelService=m.ArchiveAssetService=m.GenericAssetCreationService=m.URIConstructionService=m.SessionEventService=m.AssetConversionService=m.EnumValueResolver=m.ClassHierarchyResolver=m.PropertySchemaResolver=m.PlanningService=m.AlgorithmExtractor=m.DynamicFrontmatterGenerator=m.FleetingNoteCreationService=m.SupervisionCreationService=m.StatusTimestampService=void 0;m.createSPARQLResultCache=m.SPARQLResultCache=m.QueryPlanCache=m.createDoubleLiteral=m.createDecimalLiteral=m.getNumericValue=m.createPercentileAggregate=m.modeAggregate=m.stddevAggregate=m.varianceAggregate=m.medianAggregate=m.EXO_AGGREGATE_NS=m.BUILT_IN_AGGREGATES=m.CustomAggregateError=m.CustomAggregateRegistry=m.AggregateFunctions=m.BuiltInFunctions=m.SolutionMapping=m.UpdateExecutorError=m.UpdateExecutor=m.QueryExecutor=m.ExoQLQueryExecutor=m.DescribeExecutor=m.ConstructExecutor=m.UnionExecutor=m.OptionalExecutor=m.FilterExecutor=m.BGPExecutor=m.AlgebraSerializer=m.AlgebraOptimizer=m.AlgebraTranslator=m.ExoQLAlgebraTranslator=m.DescribeOptionsTransformerError=m.DescribeOptionsTransformer=m.SPARQLParseError=m.SPARQLParser=m.ExoQLParser=m.NoteToRDFConverter=m.SOURCE_VARIABLE=m.SourceAnnotator=m.INFERRED_GRAPH=m.PrototypeChainMaterializer=m.PropertyCardinalityRegistry=m.NonInheritablePropertyRegistry=m.RDFSInferenceEngine=m.RDFVocabularyMapper=m.DomainTriple=m.DomainBlankNode=m.DomainLiteral=m.DomainIRI=void 0;m.createLayoutBlockFromFrontmatter=m.PROPERTIES_BLOCK_CLASS_UID=m.PROPERTIES_BLOCK_CLASS_IRI=m.BACKLINKS_TABLE_BLOCK_CLASS_UID=m.BACKLINKS_TABLE_BLOCK_CLASS_IRI=m.isLayoutFrontmatter=m.isLayout=m.createLayoutFromFrontmatter=m.LAYOUT_CLASS_UID=m.LAYOUT_CLASS_IRI=m.RelationColumnSetResolver=m.normalizeRelationColumnSetRef=m.isRelationColumnSetFrontmatter=m.isRelationColumnSet=m.createRelationColumnSetFromFrontmatter=m.RELATION_COLUMN_SET_CLASS_UID=m.RELATION_COLUMN_SET_CLASS_IRI=m.ExoQLError=m.ExoQL=m.createStreamingSource=m.StreamingLoader=m.resetGlobalPool=m.getGlobalPool=m.MemoryPool=m.CompactGraphStore=m.StringTable=m.DEFAULT_COLORS=m.NODE_FLAGS=m.container=m.resetContainer=m.getContainer=m.createChildContainer=m.registerCoreServices=m.DI_TOKENS=m.DEFAULT_FLEETING_NOTE_CLASS_UID=m.DEFAULT_INBOX_FOLDER=m.DEFAULT_OWNER_IDENTITY=m.VaultSettings=m.TransactionError=m.TripleNotFoundError=m.TripleAlreadyExistsError=m.FileAlreadyExistsError=m.FileNotFoundError=m.FilterContainsOptimizer=m.VaultPrefixTransformer=m.CaseWhenTransformerError=m.CaseWhenTransformer=m.ResultSerializer=m.createIncrementalIndexer=m.IncrementalIndexer=void 0;m.TripleClassHierarchy=m.IDLE_TIMEOUT_MS=m.DEFAULT_SOCKET_PATH=m.ValidatorDaemon=m.ShaclShapeRegistry=m.shaclValidate=m.Namespace=m.ShapeRegistry=m.ShapeLoader=m.selectByPriority=m.LayoutSelector=m.isPropertiesBlock=m.isLayoutBlockFrontmatter=m.isBacklinksTableBlock=void 0;ni(Eu(),m);ni(yc(),m);var Wa=Jy();Object.defineProperty(m,"EFFORT_STATUS_CONFIG",{enumerable:!0,get:o(function(){return Wa.EFFORT_STATUS_CONFIG},"get")});Object.defineProperty(m,"STATUS_NAME_TO_ENUM",{enumerable:!0,get:o(function(){return Wa.STATUS_NAME_TO_ENUM},"get")});Object.defineProperty(m,"STATUS_NAME_TO_WIKILINK",{enumerable:!0,get:o(function(){return Wa.STATUS_NAME_TO_WIKILINK},"get")});Object.defineProperty(m,"EFFORT_STATUS_OPTIONS",{enumerable:!0,get:o(function(){return Wa.EFFORT_STATUS_OPTIONS},"get")});Object.defineProperty(m,"normalizeEffortStatus",{enumerable:!0,get:o(function(){return Wa.normalizeEffortStatus},"get")});Object.defineProperty(m,"isDoneStatus",{enumerable:!0,get:o(function(){return Wa.isDoneStatus},"get")});Object.defineProperty(m,"isTrashedStatus",{enumerable:!0,get:o(function(){return Wa.isTrashedStatus},"get")});Object.defineProperty(m,"getEffortStatusLabel",{enumerable:!0,get:o(function(){return Wa.getEffortStatusLabel},"get")});var $U=_c();Object.defineProperty(m,"GroundingType",{enumerable:!0,get:o(function(){return $U.GroundingType},"get")});var gf=Zy();Object.defineProperty(m,"CommandProperty",{enumerable:!0,get:o(function(){return gf.CommandProperty},"get")});Object.defineProperty(m,"PreconditionProperty",{enumerable:!0,get:o(function(){return gf.PreconditionProperty},"get")});Object.defineProperty(m,"GroundingProperty",{enumerable:!0,get:o(function(){return gf.GroundingProperty},"get")});Object.defineProperty(m,"CommandBindingProperty",{enumerable:!0,get:o(function(){return gf.CommandBindingProperty},"get")});Object.defineProperty(m,"CommandBindingStyleProperty",{enumerable:!0,get:o(function(){return gf.CommandBindingStyleProperty},"get")});var Tl=e0();Object.defineProperty(m,"COMMAND_VARIANT_VALUES",{enumerable:!0,get:o(function(){return Tl.COMMAND_VARIANT_VALUES},"get")});Object.defineProperty(m,"LABEL_CLASS_VALUES",{enumerable:!0,get:o(function(){return Tl.LABEL_CLASS_VALUES},"get")});Object.defineProperty(m,"STYLE_SOURCE_VALUES",{enumerable:!0,get:o(function(){return Tl.STYLE_SOURCE_VALUES},"get")});Object.defineProperty(m,"isCommandVariant",{enumerable:!0,get:o(function(){return Tl.isCommandVariant},"get")});Object.defineProperty(m,"isLabelClass",{enumerable:!0,get:o(function(){return Tl.isLabelClass},"get")});Object.defineProperty(m,"isStyleSource",{enumerable:!0,get:o(function(){return Tl.isStyleSource},"get")});var Um=Q2();Object.defineProperty(m,"isCommandFrontmatter",{enumerable:!0,get:o(function(){return Um.isCommandFrontmatter},"get")});Object.defineProperty(m,"isPreconditionFrontmatter",{enumerable:!0,get:o(function(){return Um.isPreconditionFrontmatter},"get")});Object.defineProperty(m,"isGroundingFrontmatter",{enumerable:!0,get:o(function(){return Um.isGroundingFrontmatter},"get")});Object.defineProperty(m,"isCommandBindingFrontmatter",{enumerable:!0,get:o(function(){return Um.isCommandBindingFrontmatter},"get")});ni(K2(),m);ni(Y2(),m);ni(t0(),m);ni(r0(),m);ni(J2(),m);ni(tT(),m);ni(M0(),m);ni(qT(),m);var LI=oh();Object.defineProperty(m,"PropertyFieldType",{enumerable:!0,get:o(function(){return LI.PropertyFieldType},"get")});Object.defineProperty(m,"rangeToFieldType",{enumerable:!0,get:o(function(){return LI.rangeToFieldType},"get")});var Wv=U0();Object.defineProperty(m,"propertyNameToUri",{enumerable:!0,get:o(function(){return Wv.propertyNameToUri},"get")});Object.defineProperty(m,"uriToPropertyName",{enumerable:!0,get:o(function(){return Wv.uriToPropertyName},"get")});Object.defineProperty(m,"extractPropertyLabel",{enumerable:!0,get:o(function(){return Wv.extractPropertyLabel},"get")});var VU=_A();Object.defineProperty(m,"CommandResolver",{enumerable:!0,get:o(function(){return VU.CommandResolver},"get")});var UU=bA();Object.defineProperty(m,"PreconditionEvaluator",{enumerable:!0,get:o(function(){return UU.PreconditionEvaluator},"get")});var kI=wA();Object.defineProperty(m,"GroundingExecutor",{enumerable:!0,get:o(function(){return kI.GroundingExecutor},"get")});Object.defineProperty(m,"ServiceRegistry",{enumerable:!0,get:o(function(){return kI.ServiceRegistry},"get")});var BU=lS();Object.defineProperty(m,"TaskStatusService",{enumerable:!0,get:o(function(){return BU.TaskStatusService},"get")});var qU=hS();Object.defineProperty(m,"AreaCreationService",{enumerable:!0,get:o(function(){return qU.AreaCreationService},"get")});var WU=mS();Object.defineProperty(m,"AreaHierarchyBuilder",{enumerable:!0,get:o(function(){return WU.AreaHierarchyBuilder},"get")});var GU=yS();Object.defineProperty(m,"ClassCreationService",{enumerable:!0,get:o(function(){return GU.ClassCreationService},"get")});var zU=SS();Object.defineProperty(m,"ConceptCreationService",{enumerable:!0,get:o(function(){return zU.ConceptCreationService},"get")});var HU=Up();Object.defineProperty(m,"EffortStatusWorkflow",{enumerable:!0,get:o(function(){return HU.EffortStatusWorkflow},"get")});var QU=Zu();Object.defineProperty(m,"WorkflowEngine",{enumerable:!0,get:o(function(){return QU.WorkflowEngine},"get")});var KU=X1();Object.defineProperty(m,"WorkflowResolver",{enumerable:!0,get:o(function(){return KU.WorkflowResolver},"get")});var YU=kA();Object.defineProperty(m,"InstantiationRuleResolver",{enumerable:!0,get:o(function(){return YU.InstantiationRuleResolver},"get")});var XU=MA();Object.defineProperty(m,"VisibilityGenerator",{enumerable:!0,get:o(function(){return XU.VisibilityGenerator},"get")});var JU=jA();Object.defineProperty(m,"WorkflowCommandAdapter",{enumerable:!0,get:o(function(){return JU.WorkflowCommandAdapter},"get")});var ZU=xS();Object.defineProperty(m,"EffortVotingService",{enumerable:!0,get:o(function(){return ZU.EffortVotingService},"get")});var eB=CS();Object.defineProperty(m,"FolderRepairService",{enumerable:!0,get:o(function(){return eB.FolderRepairService},"get")});var tB=OS();Object.defineProperty(m,"LabelToAliasService",{enumerable:!0,get:o(function(){return tB.LabelToAliasService},"get")});var rB=La();Object.defineProperty(m,"LoggingService",{enumerable:!0,get:o(function(){return rB.LoggingService},"get")});var nB=DS();Object.defineProperty(m,"PropertyCleanupService",{enumerable:!0,get:o(function(){return nB.PropertyCleanupService},"get")});var iB=LS();Object.defineProperty(m,"RenameToUidService",{enumerable:!0,get:o(function(){return iB.RenameToUidService},"get")});var sB=qp();Object.defineProperty(m,"StatusTimestampService",{enumerable:!0,get:o(function(){return sB.StatusTimestampService},"get")});var aB=jS();Object.defineProperty(m,"SupervisionCreationService",{enumerable:!0,get:o(function(){return aB.SupervisionCreationService},"get")});var oB=US();Object.defineProperty(m,"FleetingNoteCreationService",{enumerable:!0,get:o(function(){return oB.FleetingNoteCreationService},"get")});var cB=qS();Object.defineProperty(m,"DynamicFrontmatterGenerator",{enumerable:!0,get:o(function(){return cB.DynamicFrontmatterGenerator},"get")});var lB=GS();Object.defineProperty(m,"AlgorithmExtractor",{enumerable:!0,get:o(function(){return lB.AlgorithmExtractor},"get")});var uB=HS();Object.defineProperty(m,"PlanningService",{enumerable:!0,get:o(function(){return uB.PlanningService},"get")});var fB=XA();Object.defineProperty(m,"PropertySchemaResolver",{enumerable:!0,get:o(function(){return fB.PropertySchemaResolver},"get")});var dB=JA();Object.defineProperty(m,"ClassHierarchyResolver",{enumerable:!0,get:o(function(){return dB.ClassHierarchyResolver},"get")});var hB=ZA();Object.defineProperty(m,"EnumValueResolver",{enumerable:!0,get:o(function(){return hB.EnumValueResolver},"get")});var pB=JS();Object.defineProperty(m,"AssetConversionService",{enumerable:!0,get:o(function(){return pB.AssetConversionService},"get")});var mB=tb();Object.defineProperty(m,"SessionEventService",{enumerable:!0,get:o(function(){return mB.SessionEventService},"get")});var gB=ib();Object.defineProperty(m,"URIConstructionService",{enumerable:!0,get:o(function(){return gB.URIConstructionService},"get")});var yB=ab();Object.defineProperty(m,"GenericAssetCreationService",{enumerable:!0,get:o(function(){return yB.GenericAssetCreationService},"get")});var _B=lx();Object.defineProperty(m,"ArchiveAssetService",{enumerable:!0,get:o(function(){return _B.ArchiveAssetService},"get")});var SB=fx();Object.defineProperty(m,"FixMissingLabelService",{enumerable:!0,get:o(function(){return SB.FixMissingLabelService},"get")});var bB=dx();Object.defineProperty(m,"GraphQueryService",{enumerable:!0,get:o(function(){return bB.GraphQueryService},"get")});var vB=px();Object.defineProperty(m,"TypeRegistry",{enumerable:!0,get:o(function(){return vB.TypeRegistry},"get")});var MI=mx();Object.defineProperty(m,"NLToSPARQLService",{enumerable:!0,get:o(function(){return MI.NLToSPARQLService},"get")});Object.defineProperty(m,"DEFAULT_NL_TO_SPARQL_CONFIG",{enumerable:!0,get:o(function(){return MI.DEFAULT_NL_TO_SPARQL_CONFIG},"get")});var ii=fb();Object.defineProperty(m,"SPARQL_TEMPLATES",{enumerable:!0,get:o(function(){return ii.SPARQL_TEMPLATES},"get")});Object.defineProperty(m,"SPARQL_PREFIXES",{enumerable:!0,get:o(function(){return ii.SPARQL_PREFIXES},"get")});Object.defineProperty(m,"PREDICATES",{enumerable:!0,get:o(function(){return ii.PREDICATES},"get")});Object.defineProperty(m,"ASSET_CLASSES",{enumerable:!0,get:o(function(){return ii.ASSET_CLASSES},"get")});Object.defineProperty(m,"EFFORT_STATUSES",{enumerable:!0,get:o(function(){return ii.EFFORT_STATUSES},"get")});Object.defineProperty(m,"KNOWN_PROTOTYPES",{enumerable:!0,get:o(function(){return ii.KNOWN_PROTOTYPES},"get")});Object.defineProperty(m,"KNOWN_CLASSES",{enumerable:!0,get:o(function(){return ii.KNOWN_CLASSES},"get")});Object.defineProperty(m,"findClassByTerm",{enumerable:!0,get:o(function(){return ii.findClassByTerm},"get")});Object.defineProperty(m,"findMatchingTemplates",{enumerable:!0,get:o(function(){return ii.findMatchingTemplates},"get")});Object.defineProperty(m,"fillTemplate",{enumerable:!0,get:o(function(){return ii.fillTemplate},"get")});Object.defineProperty(m,"validateParameters",{enumerable:!0,get:o(function(){return ii.validateParameters},"get")});Object.defineProperty(m,"getTemplateByName",{enumerable:!0,get:o(function(){return ii.getTemplateByName},"get")});var wB=yx();Object.defineProperty(m,"AnalyticsService",{enumerable:!0,get:o(function(){return wB.AnalyticsService},"get")});var EB=_x();Object.defineProperty(m,"TrendDetectionService",{enumerable:!0,get:o(function(){return EB.TrendDetectionService},"get")});var jI=bx();Object.defineProperty(m,"AutocompleteService",{enumerable:!0,get:o(function(){return jI.AutocompleteService},"get")});Object.defineProperty(m,"DEFAULT_AUTOCOMPLETE_CONFIG",{enumerable:!0,get:o(function(){return jI.DEFAULT_AUTOCOMPLETE_CONFIG},"get")});var TB=wx();Object.defineProperty(m,"DailyReviewService",{enumerable:!0,get:o(function(){return TB.DailyReviewService},"get")});var $I=_b();Object.defineProperty(m,"CriticalityZoneService",{enumerable:!0,get:o(function(){return $I.CriticalityZoneService},"get")});Object.defineProperty(m,"CriticalityZoneUUIDs",{enumerable:!0,get:o(function(){return $I.CriticalityZoneUUIDs},"get")});var AB=Zn();Object.defineProperty(m,"FrontmatterService",{enumerable:!0,get:o(function(){return AB.FrontmatterService},"get")});var xB=Wr();Object.defineProperty(m,"DateFormatter",{enumerable:!0,get:o(function(){return xB.DateFormatter},"get")});var IB=qs();Object.defineProperty(m,"WikiLinkHelpers",{enumerable:!0,get:o(function(){return IB.WikiLinkHelpers},"get")});var CB=ps();Object.defineProperty(m,"MetadataHelpers",{enumerable:!0,get:o(function(){return CB.MetadataHelpers},"get")});var RB=fS();Object.defineProperty(m,"MetadataExtractor",{enumerable:!0,get:o(function(){return RB.MetadataExtractor},"get")});var OB=Tx();Object.defineProperty(m,"EffortSortingHelpers",{enumerable:!0,get:o(function(){return OB.EffortSortingHelpers},"get")});var PB=Ax();Object.defineProperty(m,"FilenameValidator",{enumerable:!0,get:o(function(){return PB.FilenameValidator},"get")});var FB=Fx();Object.defineProperty(m,"RDFSerializer",{enumerable:!0,get:o(function(){return FB.RDFSerializer},"get")});var DB=Tc();Object.defineProperty(m,"NullLogger",{enumerable:!0,get:o(function(){return DB.NullLogger},"get")});var VI=Ob();Object.defineProperty(m,"vaultPathToIRI",{enumerable:!0,get:o(function(){return VI.vaultPathToIRI},"get")});Object.defineProperty(m,"OBSIDIAN_VAULT_SCHEME",{enumerable:!0,get:o(function(){return VI.OBSIDIAN_VAULT_SCHEME},"get")});var NB=sS();Object.defineProperty(m,"InMemoryTripleStore",{enumerable:!0,get:o(function(){return NB.InMemoryTripleStore},"get")});var LB=Ae();Object.defineProperty(m,"DomainIRI",{enumerable:!0,get:o(function(){return LB.IRI},"get")});var kB=De();Object.defineProperty(m,"DomainLiteral",{enumerable:!0,get:o(function(){return kB.Literal},"get")});var MB=Vt();Object.defineProperty(m,"DomainBlankNode",{enumerable:!0,get:o(function(){return MB.BlankNode},"get")});var jB=Kn();Object.defineProperty(m,"DomainTriple",{enumerable:!0,get:o(function(){return jB.Triple},"get")});var $B=Fb();Object.defineProperty(m,"RDFVocabularyMapper",{enumerable:!0,get:o(function(){return $B.RDFVocabularyMapper},"get")});var VB=Nx();Object.defineProperty(m,"RDFSInferenceEngine",{enumerable:!0,get:o(function(){return VB.RDFSInferenceEngine},"get")});var UB=kb();Object.defineProperty(m,"NonInheritablePropertyRegistry",{enumerable:!0,get:o(function(){return UB.NonInheritablePropertyRegistry},"get")});var BB=$b();Object.defineProperty(m,"PropertyCardinalityRegistry",{enumerable:!0,get:o(function(){return BB.PropertyCardinalityRegistry},"get")});var UI=Bb();Object.defineProperty(m,"PrototypeChainMaterializer",{enumerable:!0,get:o(function(){return UI.PrototypeChainMaterializer},"get")});Object.defineProperty(m,"INFERRED_GRAPH",{enumerable:!0,get:o(function(){return UI.INFERRED_GRAPH},"get")});var BI=Wb();Object.defineProperty(m,"SourceAnnotator",{enumerable:!0,get:o(function(){return BI.SourceAnnotator},"get")});Object.defineProperty(m,"SOURCE_VARIABLE",{enumerable:!0,get:o(function(){return BI.SOURCE_VARIABLE},"get")});var qB=zb();Object.defineProperty(m,"NoteToRDFConverter",{enumerable:!0,get:o(function(){return qB.NoteToRDFConverter},"get")});var Gv=Nc();Object.defineProperty(m,"ExoQLParser",{enumerable:!0,get:o(function(){return Gv.ExoQLParser},"get")});Object.defineProperty(m,"SPARQLParser",{enumerable:!0,get:o(function(){return Gv.SPARQLParser},"get")});Object.defineProperty(m,"SPARQLParseError",{enumerable:!0,get:o(function(){return Gv.SPARQLParseError},"get")});var qI=$_();Object.defineProperty(m,"DescribeOptionsTransformer",{enumerable:!0,get:o(function(){return qI.DescribeOptionsTransformer},"get")});Object.defineProperty(m,"DescribeOptionsTransformerError",{enumerable:!0,get:o(function(){return qI.DescribeOptionsTransformerError},"get")});var WI=kc();Object.defineProperty(m,"ExoQLAlgebraTranslator",{enumerable:!0,get:o(function(){return WI.ExoQLAlgebraTranslator},"get")});Object.defineProperty(m,"AlgebraTranslator",{enumerable:!0,get:o(function(){return WI.AlgebraTranslator},"get")});var WB=Wx();Object.defineProperty(m,"AlgebraOptimizer",{enumerable:!0,get:o(function(){return WB.AlgebraOptimizer},"get")});var GB=Gx();Object.defineProperty(m,"AlgebraSerializer",{enumerable:!0,get:o(function(){return GB.AlgebraSerializer},"get")});var zB=n1();Object.defineProperty(m,"BGPExecutor",{enumerable:!0,get:o(function(){return zB.BGPExecutor},"get")});var HB=mp();Object.defineProperty(m,"FilterExecutor",{enumerable:!0,get:o(function(){return HB.FilterExecutor},"get")});var QB=w1();Object.defineProperty(m,"OptionalExecutor",{enumerable:!0,get:o(function(){return QB.OptionalExecutor},"get")});var KB=T1();Object.defineProperty(m,"UnionExecutor",{enumerable:!0,get:o(function(){return KB.UnionExecutor},"get")});var YB=N1();Object.defineProperty(m,"ConstructExecutor",{enumerable:!0,get:o(function(){return YB.ConstructExecutor},"get")});var XB=Hx();Object.defineProperty(m,"DescribeExecutor",{enumerable:!0,get:o(function(){return XB.DescribeExecutor},"get")});var GI=rl();Object.defineProperty(m,"ExoQLQueryExecutor",{enumerable:!0,get:o(function(){return GI.ExoQLQueryExecutor},"get")});Object.defineProperty(m,"QueryExecutor",{enumerable:!0,get:o(function(){return GI.QueryExecutor},"get")});var zI=Kx();Object.defineProperty(m,"UpdateExecutor",{enumerable:!0,get:o(function(){return zI.UpdateExecutor},"get")});Object.defineProperty(m,"UpdateExecutorError",{enumerable:!0,get:o(function(){return zI.UpdateExecutorError},"get")});var JB=ls();Object.defineProperty(m,"SolutionMapping",{enumerable:!0,get:o(function(){return JB.SolutionMapping},"get")});var ZB=pp();Object.defineProperty(m,"BuiltInFunctions",{enumerable:!0,get:o(function(){return ZB.BuiltInFunctions},"get")});var eq=Xx();Object.defineProperty(m,"AggregateFunctions",{enumerable:!0,get:o(function(){return eq.AggregateFunctions},"get")});var HI=I1();Object.defineProperty(m,"CustomAggregateRegistry",{enumerable:!0,get:o(function(){return HI.CustomAggregateRegistry},"get")});Object.defineProperty(m,"CustomAggregateError",{enumerable:!0,get:o(function(){return HI.CustomAggregateError},"get")});var Es=C1();Object.defineProperty(m,"BUILT_IN_AGGREGATES",{enumerable:!0,get:o(function(){return Es.BUILT_IN_AGGREGATES},"get")});Object.defineProperty(m,"EXO_AGGREGATE_NS",{enumerable:!0,get:o(function(){return Es.EXO_AGGREGATE_NS},"get")});Object.defineProperty(m,"medianAggregate",{enumerable:!0,get:o(function(){return Es.medianAggregate},"get")});Object.defineProperty(m,"varianceAggregate",{enumerable:!0,get:o(function(){return Es.varianceAggregate},"get")});Object.defineProperty(m,"stddevAggregate",{enumerable:!0,get:o(function(){return Es.stddevAggregate},"get")});Object.defineProperty(m,"modeAggregate",{enumerable:!0,get:o(function(){return Es.modeAggregate},"get")});Object.defineProperty(m,"createPercentileAggregate",{enumerable:!0,get:o(function(){return Es.createPercentileAggregate},"get")});Object.defineProperty(m,"getNumericValue",{enumerable:!0,get:o(function(){return Es.getNumericValue},"get")});Object.defineProperty(m,"createDecimalLiteral",{enumerable:!0,get:o(function(){return Es.createDecimalLiteral},"get")});Object.defineProperty(m,"createDoubleLiteral",{enumerable:!0,get:o(function(){return Es.createDoubleLiteral},"get")});var tq=Jx();Object.defineProperty(m,"QueryPlanCache",{enumerable:!0,get:o(function(){return tq.QueryPlanCache},"get")});var QI=Zx();Object.defineProperty(m,"SPARQLResultCache",{enumerable:!0,get:o(function(){return QI.SPARQLResultCache},"get")});Object.defineProperty(m,"createSPARQLResultCache",{enumerable:!0,get:o(function(){return QI.createSPARQLResultCache},"get")});var KI=eI();Object.defineProperty(m,"IncrementalIndexer",{enumerable:!0,get:o(function(){return KI.IncrementalIndexer},"get")});Object.defineProperty(m,"createIncrementalIndexer",{enumerable:!0,get:o(function(){return KI.createIncrementalIndexer},"get")});var rq=tI();Object.defineProperty(m,"ResultSerializer",{enumerable:!0,get:o(function(){return rq.ResultSerializer},"get")});var YI=k_();Object.defineProperty(m,"CaseWhenTransformer",{enumerable:!0,get:o(function(){return YI.CaseWhenTransformer},"get")});Object.defineProperty(m,"CaseWhenTransformerError",{enumerable:!0,get:o(function(){return YI.CaseWhenTransformerError},"get")});var nq=q_();Object.defineProperty(m,"VaultPrefixTransformer",{enumerable:!0,get:o(function(){return nq.VaultPrefixTransformer},"get")});var iq=Qb();Object.defineProperty(m,"FilterContainsOptimizer",{enumerable:!0,get:o(function(){return iq.FilterContainsOptimizer},"get")});var XI=rI();Object.defineProperty(m,"FileNotFoundError",{enumerable:!0,get:o(function(){return XI.FileNotFoundError},"get")});Object.defineProperty(m,"FileAlreadyExistsError",{enumerable:!0,get:o(function(){return XI.FileAlreadyExistsError},"get")});var zv=tS();Object.defineProperty(m,"TripleAlreadyExistsError",{enumerable:!0,get:o(function(){return zv.TripleAlreadyExistsError},"get")});Object.defineProperty(m,"TripleNotFoundError",{enumerable:!0,get:o(function(){return zv.TripleNotFoundError},"get")});Object.defineProperty(m,"TransactionError",{enumerable:!0,get:o(function(){return zv.TransactionError},"get")});var Bm=ov();Object.defineProperty(m,"VaultSettings",{enumerable:!0,get:o(function(){return Bm.VaultSettings},"get")});Object.defineProperty(m,"DEFAULT_OWNER_IDENTITY",{enumerable:!0,get:o(function(){return Bm.DEFAULT_OWNER_IDENTITY},"get")});Object.defineProperty(m,"DEFAULT_INBOX_FOLDER",{enumerable:!0,get:o(function(){return Bm.DEFAULT_INBOX_FOLDER},"get")});Object.defineProperty(m,"DEFAULT_FLEETING_NOTE_CLASS_UID",{enumerable:!0,get:o(function(){return Bm.DEFAULT_FLEETING_NOTE_CLASS_UID},"get")});var sq=wt();Object.defineProperty(m,"DI_TOKENS",{enumerable:!0,get:o(function(){return sq.DI_TOKENS},"get")});var yf=nI();Object.defineProperty(m,"registerCoreServices",{enumerable:!0,get:o(function(){return yf.registerCoreServices},"get")});Object.defineProperty(m,"createChildContainer",{enumerable:!0,get:o(function(){return yf.createChildContainer},"get")});Object.defineProperty(m,"getContainer",{enumerable:!0,get:o(function(){return yf.getContainer},"get")});Object.defineProperty(m,"resetContainer",{enumerable:!0,get:o(function(){return yf.resetContainer},"get")});Object.defineProperty(m,"container",{enumerable:!0,get:o(function(){return yf.container},"get")});var la=lI();Object.defineProperty(m,"NODE_FLAGS",{enumerable:!0,get:o(function(){return la.NODE_FLAGS},"get")});Object.defineProperty(m,"DEFAULT_COLORS",{enumerable:!0,get:o(function(){return la.DEFAULT_COLORS},"get")});Object.defineProperty(m,"StringTable",{enumerable:!0,get:o(function(){return la.StringTable},"get")});Object.defineProperty(m,"CompactGraphStore",{enumerable:!0,get:o(function(){return la.CompactGraphStore},"get")});Object.defineProperty(m,"MemoryPool",{enumerable:!0,get:o(function(){return la.MemoryPool},"get")});Object.defineProperty(m,"getGlobalPool",{enumerable:!0,get:o(function(){return la.getGlobalPool},"get")});Object.defineProperty(m,"resetGlobalPool",{enumerable:!0,get:o(function(){return la.resetGlobalPool},"get")});Object.defineProperty(m,"StreamingLoader",{enumerable:!0,get:o(function(){return la.StreamingLoader},"get")});Object.defineProperty(m,"createStreamingSource",{enumerable:!0,get:o(function(){return la.createStreamingSource},"get")});var JI=uI();Object.defineProperty(m,"ExoQL",{enumerable:!0,get:o(function(){return JI.ExoQL},"get")});Object.defineProperty(m,"ExoQLError",{enumerable:!0,get:o(function(){return JI.ExoQLError},"get")});var Al=Tm();Object.defineProperty(m,"RELATION_COLUMN_SET_CLASS_IRI",{enumerable:!0,get:o(function(){return Al.RELATION_COLUMN_SET_CLASS_IRI},"get")});Object.defineProperty(m,"RELATION_COLUMN_SET_CLASS_UID",{enumerable:!0,get:o(function(){return Al.RELATION_COLUMN_SET_CLASS_UID},"get")});Object.defineProperty(m,"createRelationColumnSetFromFrontmatter",{enumerable:!0,get:o(function(){return Al.createRelationColumnSetFromFrontmatter},"get")});Object.defineProperty(m,"isRelationColumnSet",{enumerable:!0,get:o(function(){return Al.isRelationColumnSet},"get")});Object.defineProperty(m,"isRelationColumnSetFrontmatter",{enumerable:!0,get:o(function(){return Al.isRelationColumnSetFrontmatter},"get")});Object.defineProperty(m,"normalizeRelationColumnSetRef",{enumerable:!0,get:o(function(){return Al.normalizeRef},"get")});var aq=SI();Object.defineProperty(m,"RelationColumnSetResolver",{enumerable:!0,get:o(function(){return aq.RelationColumnSetResolver},"get")});var _f=Tm();Object.defineProperty(m,"LAYOUT_CLASS_IRI",{enumerable:!0,get:o(function(){return _f.LAYOUT_CLASS_IRI},"get")});Object.defineProperty(m,"LAYOUT_CLASS_UID",{enumerable:!0,get:o(function(){return _f.LAYOUT_CLASS_UID},"get")});Object.defineProperty(m,"createLayoutFromFrontmatter",{enumerable:!0,get:o(function(){return _f.createLayoutFromFrontmatter},"get")});Object.defineProperty(m,"isLayout",{enumerable:!0,get:o(function(){return _f.isLayout},"get")});Object.defineProperty(m,"isLayoutFrontmatter",{enumerable:!0,get:o(function(){return _f.isLayoutFrontmatter},"get")});var Ga=Tm();Object.defineProperty(m,"BACKLINKS_TABLE_BLOCK_CLASS_IRI",{enumerable:!0,get:o(function(){return Ga.BACKLINKS_TABLE_BLOCK_CLASS_IRI},"get")});Object.defineProperty(m,"BACKLINKS_TABLE_BLOCK_CLASS_UID",{enumerable:!0,get:o(function(){return Ga.BACKLINKS_TABLE_BLOCK_CLASS_UID},"get")});Object.defineProperty(m,"PROPERTIES_BLOCK_CLASS_IRI",{enumerable:!0,get:o(function(){return Ga.PROPERTIES_BLOCK_CLASS_IRI},"get")});Object.defineProperty(m,"PROPERTIES_BLOCK_CLASS_UID",{enumerable:!0,get:o(function(){return Ga.PROPERTIES_BLOCK_CLASS_UID},"get")});Object.defineProperty(m,"createLayoutBlockFromFrontmatter",{enumerable:!0,get:o(function(){return Ga.createLayoutBlockFromFrontmatter},"get")});Object.defineProperty(m,"isBacklinksTableBlock",{enumerable:!0,get:o(function(){return Ga.isBacklinksTableBlock},"get")});Object.defineProperty(m,"isLayoutBlockFrontmatter",{enumerable:!0,get:o(function(){return Ga.isLayoutBlockFrontmatter},"get")});Object.defineProperty(m,"isPropertiesBlock",{enumerable:!0,get:o(function(){return Ga.isPropertiesBlock},"get")});var ZI=vI();Object.defineProperty(m,"LayoutSelector",{enumerable:!0,get:o(function(){return ZI.LayoutSelector},"get")});Object.defineProperty(m,"selectByPriority",{enumerable:!0,get:o(function(){return ZI.selectByPriority},"get")});ni(OI(),m);var oq=kv();Object.defineProperty(m,"ShapeLoader",{enumerable:!0,get:o(function(){return oq.ShapeLoader},"get")});var cq=Pv();Object.defineProperty(m,"ShapeRegistry",{enumerable:!0,get:o(function(){return cq.ShapeRegistry},"get")});var lq=or();Object.defineProperty(m,"Namespace",{enumerable:!0,get:o(function(){return lq.Namespace},"get")});var eC=jv();Object.defineProperty(m,"shaclValidate",{enumerable:!0,get:o(function(){return eC.validate},"get")});Object.defineProperty(m,"ShaclShapeRegistry",{enumerable:!0,get:o(function(){return eC.ShapeRegistry},"get")});ni(FI(),m);var Hv=NI();Object.defineProperty(m,"ValidatorDaemon",{enumerable:!0,get:o(function(){return Hv.ValidatorDaemon},"get")});Object.defineProperty(m,"DEFAULT_SOCKET_PATH",{enumerable:!0,get:o(function(){return Hv.DEFAULT_SOCKET_PATH},"get")});Object.defineProperty(m,"IDLE_TIMEOUT_MS",{enumerable:!0,get:o(function(){return Hv.IDLE_TIMEOUT_MS},"get")});var uq=Bv();Object.defineProperty(m,"TripleClassHierarchy",{enumerable:!0,get:o(function(){return uq.ClassHierarchy},"get")})});var vr=S(Qv=>{"use strict";Qv.fromCallback=function(n){return Object.defineProperty(function(...e){if(typeof e[e.length-1]=="function")n.apply(this,e);else return new Promise((t,r)=>{e.push((i,s)=>i!=null?r(i):t(s)),n.apply(this,e)})},"name",{value:n.name})};Qv.fromPromise=function(n){return Object.defineProperty(function(...e){let t=e[e.length-1];if(typeof t!="function")return n.apply(this,e);e.pop(),n.apply(this,e).then(r=>t(null,r),t)},"name",{value:n.name})}});var rC=S((dle,tC)=>{var za=require("constants"),fq=process.cwd,qm=null,dq=process.env.GRACEFUL_FS_PLATFORM||process.platform;process.cwd=function(){return qm||(qm=fq.call(process)),qm};try{process.cwd()}catch{}typeof process.chdir=="function"&&(Kv=process.chdir,process.chdir=function(n){qm=null,Kv.call(process,n)},Object.setPrototypeOf&&Object.setPrototypeOf(process.chdir,Kv));var Kv;tC.exports=hq;function hq(n){za.hasOwnProperty("O_SYMLINK")&&process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)&&e(n),n.lutimes||t(n),n.chown=s(n.chown),n.fchown=s(n.fchown),n.lchown=s(n.lchown),n.chmod=r(n.chmod),n.fchmod=r(n.fchmod),n.lchmod=r(n.lchmod),n.chownSync=a(n.chownSync),n.fchownSync=a(n.fchownSync),n.lchownSync=a(n.lchownSync),n.chmodSync=i(n.chmodSync),n.fchmodSync=i(n.fchmodSync),n.lchmodSync=i(n.lchmodSync),n.stat=c(n.stat),n.fstat=c(n.fstat),n.lstat=c(n.lstat),n.statSync=l(n.statSync),n.fstatSync=l(n.fstatSync),n.lstatSync=l(n.lstatSync),n.chmod&&!n.lchmod&&(n.lchmod=function(f,d,h){h&&process.nextTick(h)},n.lchmodSync=function(){}),n.chown&&!n.lchown&&(n.lchown=function(f,d,h,p){p&&process.nextTick(p)},n.lchownSync=function(){}),dq==="win32"&&(n.rename=typeof n.rename!="function"?n.rename:(function(f){function d(h,p,y){var b=Date.now(),w=0;f(h,p,o(function v(T){if(T&&(T.code==="EACCES"||T.code==="EPERM"||T.code==="EBUSY")&&Date.now()-b<6e4){setTimeout(function(){n.stat(p,function(C,L){C&&C.code==="ENOENT"?f(h,p,v):y(T)})},w),w<100&&(w+=10);return}y&&y(T)},"CB"))}return o(d,"rename"),Object.setPrototypeOf&&Object.setPrototypeOf(d,f),d})(n.rename)),n.read=typeof n.read!="function"?n.read:(function(f){function d(h,p,y,b,w,v){var T;if(v&&typeof v=="function"){var C=0;T=o(function(L,V,ae){if(L&&L.code==="EAGAIN"&&C<10)return C++,f.call(n,h,p,y,b,w,T);v.apply(this,arguments)},"callback")}return f.call(n,h,p,y,b,w,T)}return o(d,"read"),Object.setPrototypeOf&&Object.setPrototypeOf(d,f),d})(n.read),n.readSync=typeof n.readSync!="function"?n.readSync:(function(f){return function(d,h,p,y,b){for(var w=0;;)try{return f.call(n,d,h,p,y,b)}catch(v){if(v.code==="EAGAIN"&&w<10){w++;continue}throw v}}})(n.readSync);function e(f){f.lchmod=function(d,h,p){f.open(d,za.O_WRONLY|za.O_SYMLINK,h,function(y,b){if(y){p&&p(y);return}f.fchmod(b,h,function(w){f.close(b,function(v){p&&p(w||v)})})})},f.lchmodSync=function(d,h){var p=f.openSync(d,za.O_WRONLY|za.O_SYMLINK,h),y=!0,b;try{b=f.fchmodSync(p,h),y=!1}finally{if(y)try{f.closeSync(p)}catch{}else f.closeSync(p)}return b}}o(e,"patchLchmod");function t(f){za.hasOwnProperty("O_SYMLINK")&&f.futimes?(f.lutimes=function(d,h,p,y){f.open(d,za.O_SYMLINK,function(b,w){if(b){y&&y(b);return}f.futimes(w,h,p,function(v){f.close(w,function(T){y&&y(v||T)})})})},f.lutimesSync=function(d,h,p){var y=f.openSync(d,za.O_SYMLINK),b,w=!0;try{b=f.futimesSync(y,h,p),w=!1}finally{if(w)try{f.closeSync(y)}catch{}else f.closeSync(y)}return b}):f.futimes&&(f.lutimes=function(d,h,p,y){y&&process.nextTick(y)},f.lutimesSync=function(){})}o(t,"patchLutimes");function r(f){return f&&function(d,h,p){return f.call(n,d,h,function(y){u(y)&&(y=null),p&&p.apply(this,arguments)})}}o(r,"chmodFix");function i(f){return f&&function(d,h){try{return f.call(n,d,h)}catch(p){if(!u(p))throw p}}}o(i,"chmodFixSync");function s(f){return f&&function(d,h,p,y){return f.call(n,d,h,p,function(b){u(b)&&(b=null),y&&y.apply(this,arguments)})}}o(s,"chownFix");function a(f){return f&&function(d,h,p){try{return f.call(n,d,h,p)}catch(y){if(!u(y))throw y}}}o(a,"chownFixSync");function c(f){return f&&function(d,h,p){typeof h=="function"&&(p=h,h=null);function y(b,w){w&&(w.uid<0&&(w.uid+=4294967296),w.gid<0&&(w.gid+=4294967296)),p&&p.apply(this,arguments)}return o(y,"callback"),h?f.call(n,d,h,y):f.call(n,d,y)}}o(c,"statFix");function l(f){return f&&function(d,h){var p=h?f.call(n,d,h):f.call(n,d);return p&&(p.uid<0&&(p.uid+=4294967296),p.gid<0&&(p.gid+=4294967296)),p}}o(l,"statFixSync");function u(f){if(!f||f.code==="ENOSYS")return!0;var d=!process.getuid||process.getuid()!==0;return!!(d&&(f.code==="EINVAL"||f.code==="EPERM"))}o(u,"chownErOk")}o(hq,"patch")});var sC=S((ple,iC)=>{var nC=require("stream").Stream;iC.exports=pq;function pq(n){return{ReadStream:e,WriteStream:t};function e(r,i){if(!(this instanceof e))return new e(r,i);nC.call(this);var s=this;this.path=r,this.fd=null,this.readable=!0,this.paused=!1,this.flags="r",this.mode=438,this.bufferSize=64*1024,i=i||{};for(var a=Object.keys(i),c=0,l=a.length;c<l;c++){var u=a[c];this[u]=i[u]}if(this.encoding&&this.setEncoding(this.encoding),this.start!==void 0){if(typeof this.start!="number")throw TypeError("start must be a Number");if(this.end===void 0)this.end=1/0;else if(typeof this.end!="number")throw TypeError("end must be a Number");if(this.start>this.end)throw new Error("start must be <= end");this.pos=this.start}if(this.fd!==null){process.nextTick(function(){s._read()});return}n.open(this.path,this.flags,this.mode,function(f,d){if(f){s.emit("error",f),s.readable=!1;return}s.fd=d,s.emit("open",d),s._read()})}function t(r,i){if(!(this instanceof t))return new t(r,i);nC.call(this),this.path=r,this.fd=null,this.writable=!0,this.flags="w",this.encoding="binary",this.mode=438,this.bytesWritten=0,i=i||{};for(var s=Object.keys(i),a=0,c=s.length;a<c;a++){var l=s[a];this[l]=i[l]}if(this.start!==void 0){if(typeof this.start!="number")throw TypeError("start must be a Number");if(this.start<0)throw new Error("start must be >= zero");this.pos=this.start}this.busy=!1,this._queue=[],this.fd===null&&(this._open=n.open,this._queue.push([this._open,this.path,this.flags,this.mode,void 0]),this.flush())}}o(pq,"legacy")});var oC=S((gle,aC)=>{"use strict";aC.exports=gq;var mq=Object.getPrototypeOf||function(n){return n.__proto__};function gq(n){if(n===null||typeof n!="object")return n;if(n instanceof Object)var e={__proto__:mq(n)};else var e=Object.create(null);return Object.getOwnPropertyNames(n).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}),e}o(gq,"clone")});var Il=S((_le,Jv)=>{var Mt=require("fs"),yq=rC(),_q=sC(),Sq=oC(),Wm=require("util"),kr,zm;typeof Symbol=="function"&&typeof Symbol.for=="function"?(kr=Symbol.for("graceful-fs.queue"),zm=Symbol.for("graceful-fs.previous")):(kr="___graceful-fs.queue",zm="___graceful-fs.previous");function bq(){}o(bq,"noop");function uC(n,e){Object.defineProperty(n,kr,{get:o(function(){return e},"get")})}o(uC,"publishQueue");var Ho=bq;Wm.debuglog?Ho=Wm.debuglog("gfs4"):/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")&&(Ho=o(function(){var n=Wm.format.apply(Wm,arguments);n="GFS4: "+n.split(/\n/).join(`
458
+ GFS4: `),console.error(n)},"debug"));Mt[kr]||(cC=global[kr]||[],uC(Mt,cC),Mt.close=(function(n){function e(t,r){return n.call(Mt,t,function(i){i||lC(),typeof r=="function"&&r.apply(this,arguments)})}return o(e,"close"),Object.defineProperty(e,zm,{value:n}),e})(Mt.close),Mt.closeSync=(function(n){function e(t){n.apply(Mt,arguments),lC()}return o(e,"closeSync"),Object.defineProperty(e,zm,{value:n}),e})(Mt.closeSync),/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")&&process.on("exit",function(){Ho(Mt[kr]),require("assert").equal(Mt[kr].length,0)}));var cC;global[kr]||uC(global,Mt[kr]);Jv.exports=Yv(Sq(Mt));process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH&&!Mt.__patched&&(Jv.exports=Yv(Mt),Mt.__patched=!0);function Yv(n){yq(n),n.gracefulify=Yv,n.createReadStream=V,n.createWriteStream=ae;var e=n.readFile;n.readFile=t;function t(F,k,ee){return typeof k=="function"&&(ee=k,k=null),Ke(F,k,ee);function Ke(at,Ot,ot,lt){return e(at,Ot,function(Xe){Xe&&(Xe.code==="EMFILE"||Xe.code==="ENFILE")?xl([Ke,[at,Ot,ot],Xe,lt||Date.now(),Date.now()]):typeof ot=="function"&&ot.apply(this,arguments)})}o(Ke,"go$readFile")}o(t,"readFile");var r=n.writeFile;n.writeFile=i;function i(F,k,ee,Ke){return typeof ee=="function"&&(Ke=ee,ee=null),at(F,k,ee,Ke);function at(Ot,ot,lt,Xe,ne){return r(Ot,ot,lt,function(q){q&&(q.code==="EMFILE"||q.code==="ENFILE")?xl([at,[Ot,ot,lt,Xe],q,ne||Date.now(),Date.now()]):typeof Xe=="function"&&Xe.apply(this,arguments)})}o(at,"go$writeFile")}o(i,"writeFile");var s=n.appendFile;s&&(n.appendFile=a);function a(F,k,ee,Ke){return typeof ee=="function"&&(Ke=ee,ee=null),at(F,k,ee,Ke);function at(Ot,ot,lt,Xe,ne){return s(Ot,ot,lt,function(q){q&&(q.code==="EMFILE"||q.code==="ENFILE")?xl([at,[Ot,ot,lt,Xe],q,ne||Date.now(),Date.now()]):typeof Xe=="function"&&Xe.apply(this,arguments)})}o(at,"go$appendFile")}o(a,"appendFile");var c=n.copyFile;c&&(n.copyFile=l);function l(F,k,ee,Ke){return typeof ee=="function"&&(Ke=ee,ee=0),at(F,k,ee,Ke);function at(Ot,ot,lt,Xe,ne){return c(Ot,ot,lt,function(q){q&&(q.code==="EMFILE"||q.code==="ENFILE")?xl([at,[Ot,ot,lt,Xe],q,ne||Date.now(),Date.now()]):typeof Xe=="function"&&Xe.apply(this,arguments)})}o(at,"go$copyFile")}o(l,"copyFile");var u=n.readdir;n.readdir=d;var f=/^v[0-5]\./;function d(F,k,ee){typeof k=="function"&&(ee=k,k=null);var Ke=f.test(process.version)?o(function(ot,lt,Xe,ne){return u(ot,at(ot,lt,Xe,ne))},"go$readdir"):o(function(ot,lt,Xe,ne){return u(ot,lt,at(ot,lt,Xe,ne))},"go$readdir");return Ke(F,k,ee);function at(Ot,ot,lt,Xe){return function(ne,q){ne&&(ne.code==="EMFILE"||ne.code==="ENFILE")?xl([Ke,[Ot,ot,lt],ne,Xe||Date.now(),Date.now()]):(q&&q.sort&&q.sort(),typeof lt=="function"&&lt.call(this,ne,q))}}}if(o(d,"readdir"),process.version.substr(0,4)==="v0.8"){var h=_q(n);v=h.ReadStream,C=h.WriteStream}var p=n.ReadStream;p&&(v.prototype=Object.create(p.prototype),v.prototype.open=T);var y=n.WriteStream;y&&(C.prototype=Object.create(y.prototype),C.prototype.open=L),Object.defineProperty(n,"ReadStream",{get:o(function(){return v},"get"),set:o(function(F){v=F},"set"),enumerable:!0,configurable:!0}),Object.defineProperty(n,"WriteStream",{get:o(function(){return C},"get"),set:o(function(F){C=F},"set"),enumerable:!0,configurable:!0});var b=v;Object.defineProperty(n,"FileReadStream",{get:o(function(){return b},"get"),set:o(function(F){b=F},"set"),enumerable:!0,configurable:!0});var w=C;Object.defineProperty(n,"FileWriteStream",{get:o(function(){return w},"get"),set:o(function(F){w=F},"set"),enumerable:!0,configurable:!0});function v(F,k){return this instanceof v?(p.apply(this,arguments),this):v.apply(Object.create(v.prototype),arguments)}o(v,"ReadStream");function T(){var F=this;B(F.path,F.flags,F.mode,function(k,ee){k?(F.autoClose&&F.destroy(),F.emit("error",k)):(F.fd=ee,F.emit("open",ee),F.read())})}o(T,"ReadStream$open");function C(F,k){return this instanceof C?(y.apply(this,arguments),this):C.apply(Object.create(C.prototype),arguments)}o(C,"WriteStream");function L(){var F=this;B(F.path,F.flags,F.mode,function(k,ee){k?(F.destroy(),F.emit("error",k)):(F.fd=ee,F.emit("open",ee))})}o(L,"WriteStream$open");function V(F,k){return new n.ReadStream(F,k)}o(V,"createReadStream");function ae(F,k){return new n.WriteStream(F,k)}o(ae,"createWriteStream");var $=n.open;n.open=B;function B(F,k,ee,Ke){return typeof ee=="function"&&(Ke=ee,ee=null),at(F,k,ee,Ke);function at(Ot,ot,lt,Xe,ne){return $(Ot,ot,lt,function(q,ut){q&&(q.code==="EMFILE"||q.code==="ENFILE")?xl([at,[Ot,ot,lt,Xe],q,ne||Date.now(),Date.now()]):typeof Xe=="function"&&Xe.apply(this,arguments)})}o(at,"go$open")}return o(B,"open"),n}o(Yv,"patch");function xl(n){Ho("ENQUEUE",n[0].name,n[1]),Mt[kr].push(n),Xv()}o(xl,"enqueue");var Gm;function lC(){for(var n=Date.now(),e=0;e<Mt[kr].length;++e)Mt[kr][e].length>2&&(Mt[kr][e][3]=n,Mt[kr][e][4]=n);Xv()}o(lC,"resetQueue");function Xv(){if(clearTimeout(Gm),Gm=void 0,Mt[kr].length!==0){var n=Mt[kr].shift(),e=n[0],t=n[1],r=n[2],i=n[3],s=n[4];if(i===void 0)Ho("RETRY",e.name,t),e.apply(null,t);else if(Date.now()-i>=6e4){Ho("TIMEOUT",e.name,t);var a=t.pop();typeof a=="function"&&a.call(null,r)}else{var c=Date.now()-s,l=Math.max(s-i,1),u=Math.min(l*1.2,100);c>=u?(Ho("RETRY",e.name,t),e.apply(null,t.concat([i]))):Mt[kr].push(n)}Gm===void 0&&(Gm=setTimeout(Xv,0))}}o(Xv,"retry")});var pn=S(ua=>{"use strict";var fC=vr().fromCallback,hn=Il(),vq=["access","appendFile","chmod","chown","close","copyFile","cp","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","glob","lchmod","lchown","lutimes","link","lstat","mkdir","mkdtemp","open","opendir","readdir","readFile","readlink","realpath","rename","rm","rmdir","stat","statfs","symlink","truncate","unlink","utimes","writeFile"].filter(n=>typeof hn[n]=="function");Object.assign(ua,hn);vq.forEach(n=>{ua[n]=fC(hn[n])});ua.exists=function(n,e){return typeof e=="function"?hn.exists(n,e):new Promise(t=>hn.exists(n,t))};ua.read=function(n,e,t,r,i,s){return typeof s=="function"?hn.read(n,e,t,r,i,s):new Promise((a,c)=>{hn.read(n,e,t,r,i,(l,u,f)=>{if(l)return c(l);a({bytesRead:u,buffer:f})})})};ua.write=function(n,e,...t){return typeof t[t.length-1]=="function"?hn.write(n,e,...t):new Promise((r,i)=>{hn.write(n,e,...t,(s,a,c)=>{if(s)return i(s);r({bytesWritten:a,buffer:c})})})};ua.readv=function(n,e,...t){return typeof t[t.length-1]=="function"?hn.readv(n,e,...t):new Promise((r,i)=>{hn.readv(n,e,...t,(s,a,c)=>{if(s)return i(s);r({bytesRead:a,buffers:c})})})};ua.writev=function(n,e,...t){return typeof t[t.length-1]=="function"?hn.writev(n,e,...t):new Promise((r,i)=>{hn.writev(n,e,...t,(s,a,c)=>{if(s)return i(s);r({bytesWritten:a,buffers:c})})})};typeof hn.realpath.native=="function"?ua.realpath.native=fC(hn.realpath.native):process.emitWarning("fs.realpath.native is not a function. Is fs being monkey-patched?","Warning","fs-extra-WARN0003")});var hC=S((vle,dC)=>{"use strict";var wq=require("path");dC.exports.checkPath=o(function(e){if(process.platform==="win32"&&/[<>:"|?*]/.test(e.replace(wq.parse(e).root,""))){let r=new Error(`Path contains invalid characters: ${e}`);throw r.code="EINVAL",r}},"checkPath")});var yC=S((Ele,Zv)=>{"use strict";var pC=pn(),{checkPath:mC}=hC(),gC=o(n=>{let e={mode:511};return typeof n=="number"?n:{...e,...n}.mode},"getMode");Zv.exports.makeDir=async(n,e)=>(mC(n),pC.mkdir(n,{mode:gC(e),recursive:!0}));Zv.exports.makeDirSync=(n,e)=>(mC(n),pC.mkdirSync(n,{mode:gC(e),recursive:!0}))});var qi=S((Ale,_C)=>{"use strict";var Eq=vr().fromPromise,{makeDir:Tq,makeDirSync:ew}=yC(),tw=Eq(Tq);_C.exports={mkdirs:tw,mkdirsSync:ew,mkdirp:tw,mkdirpSync:ew,ensureDir:tw,ensureDirSync:ew}});var Ha=S((xle,bC)=>{"use strict";var Aq=vr().fromPromise,SC=pn();function xq(n){return SC.access(n).then(()=>!0).catch(()=>!1)}o(xq,"pathExists");bC.exports={pathExists:Aq(xq),pathExistsSync:SC.existsSync}});var rw=S((Cle,vC)=>{"use strict";var Cl=pn(),Iq=vr().fromPromise;async function Cq(n,e,t){let r=await Cl.open(n,"r+"),i=null;try{await Cl.futimes(r,e,t)}finally{try{await Cl.close(r)}catch(s){i=s}}if(i)throw i}o(Cq,"utimesMillis");function Rq(n,e,t){let r=Cl.openSync(n,"r+");return Cl.futimesSync(r,e,t),Cl.closeSync(r)}o(Rq,"utimesMillisSync");vC.exports={utimesMillis:Iq(Cq),utimesMillisSync:Rq}});var Qo=S((Ole,AC)=>{"use strict";var Rl=pn(),wr=require("path"),wC=vr().fromPromise;function Oq(n,e,t){let r=t.dereference?i=>Rl.stat(i,{bigint:!0}):i=>Rl.lstat(i,{bigint:!0});return Promise.all([r(n),r(e).catch(i=>{if(i.code==="ENOENT")return null;throw i})]).then(([i,s])=>({srcStat:i,destStat:s}))}o(Oq,"getStats");function Pq(n,e,t){let r,i=t.dereference?a=>Rl.statSync(a,{bigint:!0}):a=>Rl.lstatSync(a,{bigint:!0}),s=i(n);try{r=i(e)}catch(a){if(a.code==="ENOENT")return{srcStat:s,destStat:null};throw a}return{srcStat:s,destStat:r}}o(Pq,"getStatsSync");async function Fq(n,e,t,r){let{srcStat:i,destStat:s}=await Oq(n,e,r);if(s){if(Sf(i,s)){let a=wr.basename(n),c=wr.basename(e);if(t==="move"&&a!==c&&a.toLowerCase()===c.toLowerCase())return{srcStat:i,destStat:s,isChangingCase:!0};throw new Error("Source and destination must not be the same.")}if(i.isDirectory()&&!s.isDirectory())throw new Error(`Cannot overwrite non-directory '${e}' with directory '${n}'.`);if(!i.isDirectory()&&s.isDirectory())throw new Error(`Cannot overwrite directory '${e}' with non-directory '${n}'.`)}if(i.isDirectory()&&nw(n,e))throw new Error(Hm(n,e,t));return{srcStat:i,destStat:s}}o(Fq,"checkPaths");function Dq(n,e,t,r){let{srcStat:i,destStat:s}=Pq(n,e,r);if(s){if(Sf(i,s)){let a=wr.basename(n),c=wr.basename(e);if(t==="move"&&a!==c&&a.toLowerCase()===c.toLowerCase())return{srcStat:i,destStat:s,isChangingCase:!0};throw new Error("Source and destination must not be the same.")}if(i.isDirectory()&&!s.isDirectory())throw new Error(`Cannot overwrite non-directory '${e}' with directory '${n}'.`);if(!i.isDirectory()&&s.isDirectory())throw new Error(`Cannot overwrite directory '${e}' with non-directory '${n}'.`)}if(i.isDirectory()&&nw(n,e))throw new Error(Hm(n,e,t));return{srcStat:i,destStat:s}}o(Dq,"checkPathsSync");async function EC(n,e,t,r){let i=wr.resolve(wr.dirname(n)),s=wr.resolve(wr.dirname(t));if(s===i||s===wr.parse(s).root)return;let a;try{a=await Rl.stat(s,{bigint:!0})}catch(c){if(c.code==="ENOENT")return;throw c}if(Sf(e,a))throw new Error(Hm(n,t,r));return EC(n,e,s,r)}o(EC,"checkParentPaths");function TC(n,e,t,r){let i=wr.resolve(wr.dirname(n)),s=wr.resolve(wr.dirname(t));if(s===i||s===wr.parse(s).root)return;let a;try{a=Rl.statSync(s,{bigint:!0})}catch(c){if(c.code==="ENOENT")return;throw c}if(Sf(e,a))throw new Error(Hm(n,t,r));return TC(n,e,s,r)}o(TC,"checkParentPathsSync");function Sf(n,e){return e.ino!==void 0&&e.dev!==void 0&&e.ino===n.ino&&e.dev===n.dev}o(Sf,"areIdentical");function nw(n,e){let t=wr.resolve(n).split(wr.sep).filter(i=>i),r=wr.resolve(e).split(wr.sep).filter(i=>i);return t.every((i,s)=>r[s]===i)}o(nw,"isSrcSubdir");function Hm(n,e,t){return`Cannot ${t} '${n}' to a subdirectory of itself, '${e}'.`}o(Hm,"errMsg");AC.exports={checkPaths:wC(Fq),checkPathsSync:Dq,checkParentPaths:wC(EC),checkParentPathsSync:TC,isSrcSubdir:nw,areIdentical:Sf}});var IC=S((Fle,xC)=>{"use strict";async function Nq(n,e){let t=[];for await(let r of n)t.push(e(r).then(()=>null,i=>i??new Error("unknown error")));await Promise.all(t.map(r=>r.then(i=>{if(i!==null)throw i})))}o(Nq,"asyncIteratorConcurrentProcess");xC.exports={asyncIteratorConcurrentProcess:Nq}});var FC=S((Nle,PC)=>{"use strict";var Qr=pn(),bf=require("path"),{mkdirs:Lq}=qi(),{pathExists:kq}=Ha(),{utimesMillis:Mq}=rw(),vf=Qo(),{asyncIteratorConcurrentProcess:jq}=IC();async function $q(n,e,t={}){typeof t=="function"&&(t={filter:t}),t.clobber="clobber"in t?!!t.clobber:!0,t.overwrite="overwrite"in t?!!t.overwrite:t.clobber,t.preserveTimestamps&&process.arch==="ia32"&&process.emitWarning(`Using the preserveTimestamps option in 32-bit node is not recommended;
459
459
 
460
460
  see https://github.com/jprichardson/node-fs-extra/issues/269`,"Warning","fs-extra-WARN0001");let{srcStat:r,destStat:i}=await vf.checkPaths(n,e,"copy",t);if(await vf.checkParentPaths(n,r,e,"copy"),!await RC(n,e,t))return;let a=bf.dirname(e);await kq(a)||await Lq(a),await OC(i,n,e,t)}o($q,"copy");async function RC(n,e,t){return t.filter?t.filter(n,e):!0}o(RC,"runFilter");async function OC(n,e,t,r){let s=await(r.dereference?Qr.stat:Qr.lstat)(e);if(s.isDirectory())return qq(s,n,e,t,r);if(s.isFile()||s.isCharacterDevice()||s.isBlockDevice())return Vq(s,n,e,t,r);if(s.isSymbolicLink())return Wq(n,e,t,r);throw s.isSocket()?new Error(`Cannot copy a socket file: ${e}`):s.isFIFO()?new Error(`Cannot copy a FIFO pipe: ${e}`):new Error(`Unknown file: ${e}`)}o(OC,"getStatsAndPerformCopy");async function Vq(n,e,t,r,i){if(!e)return CC(n,t,r,i);if(i.overwrite)return await Qr.unlink(r),CC(n,t,r,i);if(i.errorOnExist)throw new Error(`'${r}' already exists`)}o(Vq,"onFile");async function CC(n,e,t,r){if(await Qr.copyFile(e,t),r.preserveTimestamps){Uq(n.mode)&&await Bq(t,n.mode);let i=await Qr.stat(e);await Mq(t,i.atime,i.mtime)}return Qr.chmod(t,n.mode)}o(CC,"copyFile");function Uq(n){return(n&128)===0}o(Uq,"fileIsNotWritable");function Bq(n,e){return Qr.chmod(n,e|128)}o(Bq,"makeFileWritable");async function qq(n,e,t,r,i){e||await Qr.mkdir(r),await jq(await Qr.opendir(t),async s=>{let a=bf.join(t,s.name),c=bf.join(r,s.name);if(await RC(a,c,i)){let{destStat:u}=await vf.checkPaths(a,c,"copy",i);await OC(u,a,c,i)}}),e||await Qr.chmod(r,n.mode)}o(qq,"onDir");async function Wq(n,e,t,r){let i=await Qr.readlink(e);if(r.dereference&&(i=bf.resolve(process.cwd(),i)),!n)return Qr.symlink(i,t);let s=null;try{s=await Qr.readlink(t)}catch(a){if(a.code==="EINVAL"||a.code==="UNKNOWN")return Qr.symlink(i,t);throw a}if(r.dereference&&(s=bf.resolve(process.cwd(),s)),vf.isSrcSubdir(i,s))throw new Error(`Cannot copy '${i}' to a subdirectory of itself, '${s}'.`);if(vf.isSrcSubdir(s,i))throw new Error(`Cannot overwrite '${s}' with '${i}'.`);return await Qr.unlink(t),Qr.symlink(i,t)}o(Wq,"onLink");PC.exports=$q});var MC=S((kle,kC)=>{"use strict";var mn=Il(),wf=require("path"),Gq=qi().mkdirsSync,zq=rw().utimesMillisSync,Ef=Qo();function Hq(n,e,t){typeof t=="function"&&(t={filter:t}),t=t||{},t.clobber="clobber"in t?!!t.clobber:!0,t.overwrite="overwrite"in t?!!t.overwrite:t.clobber,t.preserveTimestamps&&process.arch==="ia32"&&process.emitWarning(`Using the preserveTimestamps option in 32-bit node is not recommended;
461
461
 
462
- see https://github.com/jprichardson/node-fs-extra/issues/269`,"Warning","fs-extra-WARN0002");let{srcStat:r,destStat:i}=Ef.checkPathsSync(n,e,"copy",t);if(Ef.checkParentPathsSync(n,r,e,"copy"),t.filter&&!t.filter(n,e))return;let s=wf.dirname(e);return mn.existsSync(s)||Gq(s),DC(i,n,e,t)}o(Hq,"copySync");function DC(n,e,t,r){let s=(r.dereference?mn.statSync:mn.lstatSync)(e);if(s.isDirectory())return eW(s,n,e,t,r);if(s.isFile()||s.isCharacterDevice()||s.isBlockDevice())return Qq(s,n,e,t,r);if(s.isSymbolicLink())return nW(n,e,t,r);throw s.isSocket()?new Error(`Cannot copy a socket file: ${e}`):s.isFIFO()?new Error(`Cannot copy a FIFO pipe: ${e}`):new Error(`Unknown file: ${e}`)}o(DC,"getStats");function Qq(n,e,t,r,i){return e?Kq(n,t,r,i):NC(n,t,r,i)}o(Qq,"onFile");function Kq(n,e,t,r){if(r.overwrite)return mn.unlinkSync(t),NC(n,e,t,r);if(r.errorOnExist)throw new Error(`'${t}' already exists`)}o(Kq,"mayCopyFile");function NC(n,e,t,r){return mn.copyFileSync(e,t),r.preserveTimestamps&&Yq(n.mode,e,t),iw(t,n.mode)}o(NC,"copyFile");function Yq(n,e,t){return Xq(n)&&Jq(t,n),Zq(e,t)}o(Yq,"handleTimestamps");function Xq(n){return(n&128)===0}o(Xq,"fileIsNotWritable");function Jq(n,e){return iw(n,e|128)}o(Jq,"makeFileWritable");function iw(n,e){return mn.chmodSync(n,e)}o(iw,"setDestMode");function Zq(n,e){let t=mn.statSync(n);return zq(e,t.atime,t.mtime)}o(Zq,"setDestTimestamps");function eW(n,e,t,r,i){return e?LC(t,r,i):tW(n.mode,t,r,i)}o(eW,"onDir");function tW(n,e,t,r){return mn.mkdirSync(t),LC(e,t,r),iw(t,n)}o(tW,"mkDirAndCopy");function LC(n,e,t){let r=mn.opendirSync(n);try{let i;for(;(i=r.readSync())!==null;)rW(i.name,n,e,t)}finally{r.closeSync()}}o(LC,"copyDir");function rW(n,e,t,r){let i=wf.join(e,n),s=wf.join(t,n);if(r.filter&&!r.filter(i,s))return;let{destStat:a}=Ef.checkPathsSync(i,s,"copy",r);return DC(a,i,s,r)}o(rW,"copyDirItem");function nW(n,e,t,r){let i=mn.readlinkSync(e);if(r.dereference&&(i=wf.resolve(process.cwd(),i)),n){let s;try{s=mn.readlinkSync(t)}catch(a){if(a.code==="EINVAL"||a.code==="UNKNOWN")return mn.symlinkSync(i,t);throw a}if(r.dereference&&(s=wf.resolve(process.cwd(),s)),Ef.isSrcSubdir(i,s))throw new Error(`Cannot copy '${i}' to a subdirectory of itself, '${s}'.`);if(Ef.isSrcSubdir(s,i))throw new Error(`Cannot overwrite '${s}' with '${i}'.`);return iW(i,t)}else return mn.symlinkSync(i,t)}o(nW,"onLink");function iW(n,e){return mn.unlinkSync(e),mn.symlinkSync(n,e)}o(iW,"copyLink");kC.exports=Hq});var Qm=S((jle,jC)=>{"use strict";var sW=vr().fromPromise;jC.exports={copy:sW(FC()),copySync:MC()}});var Tf=S(($le,VC)=>{"use strict";var $C=Il(),aW=vr().fromCallback;function oW(n,e){$C.rm(n,{recursive:!0,force:!0},e)}o(oW,"remove");function cW(n){$C.rmSync(n,{recursive:!0,force:!0})}o(cW,"removeSync");VC.exports={remove:aW(oW),removeSync:cW}});var QC=S((Ule,HC)=>{"use strict";var lW=vr().fromPromise,qC=pn(),WC=require("path"),GC=qi(),zC=Tf(),UC=lW(o(async function(e){let t;try{t=await qC.readdir(e)}catch{return GC.mkdirs(e)}return Promise.all(t.map(r=>zC.remove(WC.join(e,r))))},"emptyDir"));function BC(n){let e;try{e=qC.readdirSync(n)}catch{return GC.mkdirsSync(n)}e.forEach(t=>{t=WC.join(n,t),zC.removeSync(t)})}o(BC,"emptyDirSync");HC.exports={emptyDirSync:BC,emptydirSync:BC,emptyDir:UC,emptydir:UC}});var JC=S((qle,XC)=>{"use strict";var uW=vr().fromPromise,KC=require("path"),fa=pn(),YC=qi();async function fW(n){let e;try{e=await fa.stat(n)}catch{}if(e&&e.isFile())return;let t=KC.dirname(n),r=null;try{r=await fa.stat(t)}catch(i){if(i.code==="ENOENT"){await YC.mkdirs(t),await fa.writeFile(n,"");return}else throw i}r.isDirectory()?await fa.writeFile(n,""):await fa.readdir(t)}o(fW,"createFile");function dW(n){let e;try{e=fa.statSync(n)}catch{}if(e&&e.isFile())return;let t=KC.dirname(n);try{fa.statSync(t).isDirectory()||fa.readdirSync(t)}catch(r){if(r&&r.code==="ENOENT")YC.mkdirsSync(t);else throw r}fa.writeFileSync(n,"")}o(dW,"createFileSync");XC.exports={createFile:uW(fW),createFileSync:dW}});var nR=S((Gle,rR)=>{"use strict";var hW=vr().fromPromise,ZC=require("path"),Ha=pn(),eR=qi(),{pathExists:pW}=za(),{areIdentical:tR}=Qo();async function mW(n,e){let t;try{t=await Ha.lstat(e)}catch{}let r;try{r=await Ha.lstat(n)}catch(a){throw a.message=a.message.replace("lstat","ensureLink"),a}if(t&&tR(r,t))return;let i=ZC.dirname(e);await pW(i)||await eR.mkdirs(i),await Ha.link(n,e)}o(mW,"createLink");function gW(n,e){let t;try{t=Ha.lstatSync(e)}catch{}try{let s=Ha.lstatSync(n);if(t&&tR(s,t))return}catch(s){throw s.message=s.message.replace("lstat","ensureLink"),s}let r=ZC.dirname(e);return Ha.existsSync(r)||eR.mkdirsSync(r),Ha.linkSync(n,e)}o(gW,"createLinkSync");rR.exports={createLink:hW(mW),createLinkSync:gW}});var sR=S((Hle,iR)=>{"use strict";var Qa=require("path"),Af=pn(),{pathExists:yW}=za(),_W=vr().fromPromise;async function SW(n,e){if(Qa.isAbsolute(n)){try{await Af.lstat(n)}catch(s){throw s.message=s.message.replace("lstat","ensureSymlink"),s}return{toCwd:n,toDst:n}}let t=Qa.dirname(e),r=Qa.join(t,n);if(await yW(r))return{toCwd:r,toDst:n};try{await Af.lstat(n)}catch(s){throw s.message=s.message.replace("lstat","ensureSymlink"),s}return{toCwd:n,toDst:Qa.relative(t,n)}}o(SW,"symlinkPaths");function bW(n,e){if(Qa.isAbsolute(n)){if(!Af.existsSync(n))throw new Error("absolute srcpath does not exist");return{toCwd:n,toDst:n}}let t=Qa.dirname(e),r=Qa.join(t,n);if(Af.existsSync(r))return{toCwd:r,toDst:n};if(!Af.existsSync(n))throw new Error("relative srcpath does not exist");return{toCwd:n,toDst:Qa.relative(t,n)}}o(bW,"symlinkPathsSync");iR.exports={symlinkPaths:_W(SW),symlinkPathsSync:bW}});var cR=S((Kle,oR)=>{"use strict";var aR=pn(),vW=vr().fromPromise;async function wW(n,e){if(e)return e;let t;try{t=await aR.lstat(n)}catch{return"file"}return t&&t.isDirectory()?"dir":"file"}o(wW,"symlinkType");function EW(n,e){if(e)return e;let t;try{t=aR.lstatSync(n)}catch{return"file"}return t&&t.isDirectory()?"dir":"file"}o(EW,"symlinkTypeSync");oR.exports={symlinkType:vW(wW),symlinkTypeSync:EW}});var dR=S((Xle,fR)=>{"use strict";var TW=vr().fromPromise,lR=require("path"),Ts=pn(),{mkdirs:AW,mkdirsSync:xW}=qi(),{symlinkPaths:IW,symlinkPathsSync:CW}=sR(),{symlinkType:RW,symlinkTypeSync:OW}=cR(),{pathExists:PW}=za(),{areIdentical:uR}=Qo();async function FW(n,e,t){let r;try{r=await Ts.lstat(e)}catch{}if(r&&r.isSymbolicLink()){let[c,l]=await Promise.all([Ts.stat(n),Ts.stat(e)]);if(uR(c,l))return}let i=await IW(n,e);n=i.toDst;let s=await RW(i.toCwd,t),a=lR.dirname(e);return await PW(a)||await AW(a),Ts.symlink(n,e,s)}o(FW,"createSymlink");function DW(n,e,t){let r;try{r=Ts.lstatSync(e)}catch{}if(r&&r.isSymbolicLink()){let c=Ts.statSync(n),l=Ts.statSync(e);if(uR(c,l))return}let i=CW(n,e);n=i.toDst,t=OW(i.toCwd,t);let s=lR.dirname(e);return Ts.existsSync(s)||xW(s),Ts.symlinkSync(n,e,t)}o(DW,"createSymlinkSync");fR.exports={createSymlink:TW(FW),createSymlinkSync:DW}});var bR=S((Zle,SR)=>{"use strict";var{createFile:hR,createFileSync:pR}=JC(),{createLink:mR,createLinkSync:gR}=nR(),{createSymlink:yR,createSymlinkSync:_R}=dR();SR.exports={createFile:hR,createFileSync:pR,ensureFile:hR,ensureFileSync:pR,createLink:mR,createLinkSync:gR,ensureLink:mR,ensureLinkSync:gR,createSymlink:yR,createSymlinkSync:_R,ensureSymlink:yR,ensureSymlinkSync:_R}});var Km=S((eue,vR)=>{function NW(n,{EOL:e=`
463
- `,finalEOL:t=!0,replacer:r=null,spaces:i}={}){let s=t?e:"";return JSON.stringify(n,r,i).replace(/\n/g,e)+s}o(NW,"stringify");function LW(n){return Buffer.isBuffer(n)&&(n=n.toString("utf8")),n.replace(/^\uFEFF/,"")}o(LW,"stripBom");vR.exports={stringify:NW,stripBom:LW}});var AR=S((rue,TR)=>{var Ol;try{Ol=Il()}catch{Ol=require("fs")}var Ym=vr(),{stringify:wR,stripBom:ER}=Km();async function kW(n,e={}){typeof e=="string"&&(e={encoding:e});let t=e.fs||Ol,r="throws"in e?e.throws:!0,i=await Ym.fromCallback(t.readFile)(n,e);i=ER(i);let s;try{s=JSON.parse(i,e?e.reviver:null)}catch(a){if(r)throw a.message=`${n}: ${a.message}`,a;return null}return s}o(kW,"_readFile");var MW=Ym.fromPromise(kW);function jW(n,e={}){typeof e=="string"&&(e={encoding:e});let t=e.fs||Ol,r="throws"in e?e.throws:!0;try{let i=t.readFileSync(n,e);return i=ER(i),JSON.parse(i,e.reviver)}catch(i){if(r)throw i.message=`${n}: ${i.message}`,i;return null}}o(jW,"readFileSync");async function $W(n,e,t={}){let r=t.fs||Ol,i=wR(e,t);await Ym.fromCallback(r.writeFile)(n,i,t)}o($W,"_writeFile");var VW=Ym.fromPromise($W);function UW(n,e,t={}){let r=t.fs||Ol,i=wR(e,t);return r.writeFileSync(n,i,t)}o(UW,"writeFileSync");TR.exports={readFile:MW,readFileSync:jW,writeFile:VW,writeFileSync:UW}});var IR=S((iue,xR)=>{"use strict";var Xm=AR();xR.exports={readJson:Xm.readFile,readJsonSync:Xm.readFileSync,writeJson:Xm.writeFile,writeJsonSync:Xm.writeFileSync}});var Jm=S((sue,OR)=>{"use strict";var BW=vr().fromPromise,sw=pn(),CR=require("path"),RR=qi(),qW=za().pathExists;async function WW(n,e,t="utf-8"){let r=CR.dirname(n);return await qW(r)||await RR.mkdirs(r),sw.writeFile(n,e,t)}o(WW,"outputFile");function GW(n,...e){let t=CR.dirname(n);sw.existsSync(t)||RR.mkdirsSync(t),sw.writeFileSync(n,...e)}o(GW,"outputFileSync");OR.exports={outputFile:BW(WW),outputFileSync:GW}});var FR=S((oue,PR)=>{"use strict";var{stringify:zW}=Km(),{outputFile:HW}=Jm();async function QW(n,e,t={}){let r=zW(e,t);await HW(n,r,t)}o(QW,"outputJson");PR.exports=QW});var NR=S((lue,DR)=>{"use strict";var{stringify:KW}=Km(),{outputFileSync:YW}=Jm();function XW(n,e,t){let r=KW(e,t);YW(n,r,t)}o(XW,"outputJsonSync");DR.exports=XW});var kR=S((fue,LR)=>{"use strict";var JW=vr().fromPromise,gn=IR();gn.outputJson=JW(FR());gn.outputJsonSync=NR();gn.outputJSON=gn.outputJson;gn.outputJSONSync=gn.outputJsonSync;gn.writeJSON=gn.writeJson;gn.writeJSONSync=gn.writeJsonSync;gn.readJSON=gn.readJson;gn.readJSONSync=gn.readJsonSync;LR.exports=gn});var UR=S((due,VR)=>{"use strict";var ZW=pn(),MR=require("path"),{copy:eG}=Qm(),{remove:$R}=Tf(),{mkdirp:tG}=qi(),{pathExists:rG}=za(),jR=Qo();async function nG(n,e,t={}){let r=t.overwrite||t.clobber||!1,{srcStat:i,isChangingCase:s=!1}=await jR.checkPaths(n,e,"move",t);await jR.checkParentPaths(n,i,e,"move");let a=MR.dirname(e);return MR.parse(a).root!==a&&await tG(a),iG(n,e,r,s)}o(nG,"move");async function iG(n,e,t,r){if(!r){if(t)await $R(e);else if(await rG(e))throw new Error("dest already exists.")}try{await ZW.rename(n,e)}catch(i){if(i.code!=="EXDEV")throw i;await sG(n,e,t)}}o(iG,"doRename");async function sG(n,e,t){return await eG(n,e,{overwrite:t,errorOnExist:!0,preserveTimestamps:!0}),$R(n)}o(sG,"moveAcrossDevice");VR.exports=nG});var zR=S((pue,GR)=>{"use strict";var qR=Il(),ow=require("path"),aG=Qm().copySync,WR=Tf().removeSync,oG=qi().mkdirpSync,BR=Qo();function cG(n,e,t){t=t||{};let r=t.overwrite||t.clobber||!1,{srcStat:i,isChangingCase:s=!1}=BR.checkPathsSync(n,e,"move",t);return BR.checkParentPathsSync(n,i,e,"move"),lG(e)||oG(ow.dirname(e)),uG(n,e,r,s)}o(cG,"moveSync");function lG(n){let e=ow.dirname(n);return ow.parse(e).root===e}o(lG,"isParentRoot");function uG(n,e,t,r){if(r)return aw(n,e,t);if(t)return WR(e),aw(n,e,t);if(qR.existsSync(e))throw new Error("dest already exists.");return aw(n,e,t)}o(uG,"doRename");function aw(n,e,t){try{qR.renameSync(n,e)}catch(r){if(r.code!=="EXDEV")throw r;return fG(n,e,t)}}o(aw,"rename");function fG(n,e,t){return aG(n,e,{overwrite:t,errorOnExist:!0,preserveTimestamps:!0}),WR(n)}o(fG,"moveAcrossDevice");GR.exports=cG});var QR=S((gue,HR)=>{"use strict";var dG=vr().fromPromise;HR.exports={move:dG(UR()),moveSync:zR()}});var Pl=S((yue,KR)=>{"use strict";KR.exports={...pn(),...Qm(),...QC(),...bR(),...kR(),...qi(),...QR(),...Jm(),...za(),...Tf()}});var nP=S((bue,rP)=>{"use strict";rP.exports=eP;function eP(n,e,t){n instanceof RegExp&&(n=ZO(n,t)),e instanceof RegExp&&(e=ZO(e,t));var r=tP(n,e,t);return r&&{start:r[0],end:r[1],pre:t.slice(0,r[0]),body:t.slice(r[0]+n.length,r[1]),post:t.slice(r[1]+e.length)}}o(eP,"balanced");function ZO(n,e){var t=e.match(n);return t?t[0]:null}o(ZO,"maybeMatch");eP.range=tP;function tP(n,e,t){var r,i,s,a,c,l=t.indexOf(n),u=t.indexOf(e,l+1),f=l;if(l>=0&&u>0){if(n===e)return[l,u];for(r=[],s=t.length;f>=0&&!c;)f==l?(r.push(f),l=t.indexOf(n,f+1)):r.length==1?c=[r.pop(),u]:(i=r.pop(),i<s&&(s=i,a=u),u=t.indexOf(e,f+1)),f=l<u&&l>=0?l:u;r.length&&(c=[s,a])}return c}o(tP,"range")});var fP=S((wue,uP)=>{var iP=nP();uP.exports=NH;var sP="\0SLASH"+Math.random()+"\0",aP="\0OPEN"+Math.random()+"\0",Ew="\0CLOSE"+Math.random()+"\0",oP="\0COMMA"+Math.random()+"\0",cP="\0PERIOD"+Math.random()+"\0";function ww(n){return parseInt(n,10)==n?parseInt(n,10):n.charCodeAt(0)}o(ww,"numeric");function FH(n){return n.split("\\\\").join(sP).split("\\{").join(aP).split("\\}").join(Ew).split("\\,").join(oP).split("\\.").join(cP)}o(FH,"escapeBraces");function DH(n){return n.split(sP).join("\\").split(aP).join("{").split(Ew).join("}").split(oP).join(",").split(cP).join(".")}o(DH,"unescapeBraces");function lP(n){if(!n)return[""];var e=[],t=iP("{","}",n);if(!t)return n.split(",");var r=t.pre,i=t.body,s=t.post,a=r.split(",");a[a.length-1]+="{"+i+"}";var c=lP(s);return s.length&&(a[a.length-1]+=c.shift(),a.push.apply(a,c)),e.push.apply(e,a),e}o(lP,"parseCommaParts");function NH(n){return n?(n.substr(0,2)==="{}"&&(n="\\{\\}"+n.substr(2)),Pf(FH(n),!0).map(DH)):[]}o(NH,"expandTop");function LH(n){return"{"+n+"}"}o(LH,"embrace");function kH(n){return/^-?0\d/.test(n)}o(kH,"isPadded");function MH(n,e){return n<=e}o(MH,"lte");function jH(n,e){return n>=e}o(jH,"gte");function Pf(n,e){var t=[],r=iP("{","}",n);if(!r)return[n];var i=r.pre,s=r.post.length?Pf(r.post,!1):[""];if(/\$$/.test(r.pre))for(var a=0;a<s.length;a++){var c=i+"{"+r.body+"}"+s[a];t.push(c)}else{var l=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(r.body),u=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(r.body),f=l||u,d=r.body.indexOf(",")>=0;if(!f&&!d)return r.post.match(/,(?!,).*\}/)?(n=r.pre+"{"+r.body+Ew+r.post,Pf(n)):[n];var h;if(f)h=r.body.split(/\.\./);else if(h=lP(r.body),h.length===1&&(h=Pf(h[0],!1).map(LH),h.length===1))return s.map(function(k){return r.pre+h[0]+k});var p;if(f){var y=ww(h[0]),b=ww(h[1]),w=Math.max(h[0].length,h[1].length),v=h.length==3?Math.max(Math.abs(ww(h[2])),1):1,T=MH,C=b<y;C&&(v*=-1,T=jH);var L=h.some(kH);p=[];for(var V=y;T(V,b);V+=v){var ae;if(u)ae=String.fromCharCode(V),ae==="\\"&&(ae="");else if(ae=String(V),L){var $=w-ae.length;if($>0){var B=new Array($+1).join("0");V<0?ae="-"+B+ae.slice(1):ae=B+ae}}p.push(ae)}}else{p=[];for(var F=0;F<h.length;F++)p.push.apply(p,Pf(h[F],!1))}for(var F=0;F<p.length;F++)for(var a=0;a<s.length;a++){var c=i+p[F]+s[a];(!e||f||c)&&t.push(c)}}return t}o(Pf,"expand")});var sN=S(Nn=>{"use strict";Object.defineProperty(Nn,"__esModule",{value:!0});Nn.createPathBasedTargetResolver=_a;Nn.createCreateRelatedTaskService=WX;Nn.createCreateRelatedProjectService=GX;Nn.createArchiveAssetService=zX;Nn.createCleanPropertiesService=HX;Nn.createFixMissingLabelService=QX;Nn.createRenameToUidService=KX;Nn.createRepairFolderService=YX;Nn.createPlanForEveningService=XX;Nn.createUpdatePropertyService=JX;Nn.createRemovePropertyService=ZX;Nn.createSetStatusService=eJ;function _a(n){return{resolveFile(e){let t=n.getAbstractFileByPath(`${e}.md`);if(!t||!("basename"in t))throw new Error(`Cannot resolve target file for IRI: ${e}`);return t}}}o(_a,"createPathBasedTargetResolver");function WX(n,e,t=_a(n)){return{async execute(r,i){let s=i?.label;if(!s)throw new Error("createRelatedTask requires userInput.label");let a=t.resolveFile(r),c=n.getFrontmatter(a)??{},l=a.parent?.path||"",u={ems__Effort_status:'"[[ems__EffortStatusDraft]]"'},f=i?.parentProperty;f&&a.basename&&(u[f]=`"[[${a.basename}]]"`),await e.createAsset({className:"ems__Task",label:s,folderPath:l,propertyValues:u,parentFile:a,parentMetadata:c})}}}o(WX,"createCreateRelatedTaskService");function GX(n,e,t=_a(n)){return{async execute(r,i){let s=i?.label;if(!s)throw new Error("createRelatedProject requires userInput.label");let a=t.resolveFile(r),c=n.getFrontmatter(a)??{},l=a.parent?.path||"",u={ems__Effort_status:'"[[ems__EffortStatusDraft]]"'},f=i?.parentProperty;f&&a.basename&&(u[f]=`"[[${a.basename}]]"`),await e.createAsset({className:"ems__Project",label:s,folderPath:l,propertyValues:u,parentFile:a,parentMetadata:c})}}}o(GX,"createCreateRelatedProjectService");function zX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r);await e.archiveAsset(i)}}}o(zX,"createArchiveAssetService");function HX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r);await e.cleanEmptyProperties(i)}}}o(HX,"createCleanPropertiesService");function QX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r);await e.fixMissingLabel(i)}}}o(QX,"createFixMissingLabelService");function KX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r),s=n.getFrontmatter(i)??{};await e.renameToUid(i,s)}}}o(KX,"createRenameToUidService");function YX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r),s=n.getFrontmatter(i)??{},a=await e.getExpectedFolder(i,s);if(a===null)throw new Error("repairFolder: cannot determine expected folder (missing exo__Asset_isDefinedBy or referenced asset not found)");(i.parent?.path??"")!==a&&await e.repairFolder(i,a)}}}o(YX,"createRepairFolderService");function XX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r);await e.planForEvening(i)}}}o(XX,"createPlanForEveningService");function JX(n,e,t){return{async execute(r,i){let s=i?.property,a=i?.value;if(!s)throw new Error("updateProperty requires userInput.property");if(a===void 0)throw new Error("updateProperty requires userInput.value");let c=await t.resolveTargetPath(r),l=await n.readFile(c),u=e.updateProperty(l,s,a);await n.updateFile(c,u)}}}o(JX,"createUpdatePropertyService");function ZX(n,e,t){return{async execute(r,i){let s=i?.property;if(!s)throw new Error("removeProperty requires userInput.property");let a=await t.resolveTargetPath(r),c=await n.readFile(a),l=e.removeProperty(c,s);await n.updateFile(a,l)}}}o(ZX,"createRemovePropertyService");function eJ(n,e,t){return{async execute(r,i){let s=i?.statusUID;if(!s)throw new Error("setStatus requires userInput.statusUID");let a=await t.resolveTargetPath(r),c=await n.readFile(a),l=e.updateProperty(c,"ems__Effort_status",`"[[${s}]]"`);await n.updateFile(a,l)}}}o(eJ,"createSetStatusService")});var aN=S(At=>{"use strict";Object.defineProperty(At,"__esModule",{value:!0});At.createPathBasedTargetResolver=At.createSetStatusService=At.createRemovePropertyService=At.createUpdatePropertyService=At.createPlanForEveningService=At.createRepairFolderService=At.createRenameToUidService=At.createFixMissingLabelService=At.createCleanPropertiesService=At.createArchiveAssetService=At.createCreateRelatedProjectService=At.createCreateRelatedTaskService=void 0;var di=sN();Object.defineProperty(At,"createCreateRelatedTaskService",{enumerable:!0,get:o(function(){return di.createCreateRelatedTaskService},"get")});Object.defineProperty(At,"createCreateRelatedProjectService",{enumerable:!0,get:o(function(){return di.createCreateRelatedProjectService},"get")});Object.defineProperty(At,"createArchiveAssetService",{enumerable:!0,get:o(function(){return di.createArchiveAssetService},"get")});Object.defineProperty(At,"createCleanPropertiesService",{enumerable:!0,get:o(function(){return di.createCleanPropertiesService},"get")});Object.defineProperty(At,"createFixMissingLabelService",{enumerable:!0,get:o(function(){return di.createFixMissingLabelService},"get")});Object.defineProperty(At,"createRenameToUidService",{enumerable:!0,get:o(function(){return di.createRenameToUidService},"get")});Object.defineProperty(At,"createRepairFolderService",{enumerable:!0,get:o(function(){return di.createRepairFolderService},"get")});Object.defineProperty(At,"createPlanForEveningService",{enumerable:!0,get:o(function(){return di.createPlanForEveningService},"get")});Object.defineProperty(At,"createUpdatePropertyService",{enumerable:!0,get:o(function(){return di.createUpdatePropertyService},"get")});Object.defineProperty(At,"createRemovePropertyService",{enumerable:!0,get:o(function(){return di.createRemovePropertyService},"get")});Object.defineProperty(At,"createSetStatusService",{enumerable:!0,get:o(function(){return di.createSetStatusService},"get")});Object.defineProperty(At,"createPathBasedTargetResolver",{enumerable:!0,get:o(function(){return di.createPathBasedTargetResolver},"get")})});var cJ={};Ny(cJ,{createProgram:()=>dN});module.exports=Od(cJ);var T1e=Z(Pd());var W2=Z(q2(),1),{program:RJ,createCommand:OJ,createArgument:PJ,createOption:FJ,CommanderError:DJ,InvalidArgumentError:NJ,InvalidOptionArgumentError:LJ,Command:Te,Argument:kJ,Option:MJ,Help:jJ}=W2.default;var tu=require("fs"),nd=require("path"),Bt=Z(nr());var ar=Z(Pl()),Kt=Z(require("path"));function fO(n){return typeof n>"u"||n===null}o(fO,"isNothing");function hG(n){return typeof n=="object"&&n!==null}o(hG,"isObject");function pG(n){return Array.isArray(n)?n:fO(n)?[]:[n]}o(pG,"toArray");function mG(n,e){var t,r,i,s;if(e)for(s=Object.keys(e),t=0,r=s.length;t<r;t+=1)i=s[t],n[i]=e[i];return n}o(mG,"extend");function gG(n,e){var t="",r;for(r=0;r<e;r+=1)t+=n;return t}o(gG,"repeat");function yG(n){return n===0&&Number.NEGATIVE_INFINITY===1/n}o(yG,"isNegativeZero");var _G=fO,SG=hG,bG=pG,vG=gG,wG=yG,EG=mG,pr={isNothing:_G,isObject:SG,toArray:bG,repeat:vG,isNegativeZero:wG,extend:EG};function dO(n,e){var t="",r=n.reason||"(unknown reason)";return n.mark?(n.mark.name&&(t+='in "'+n.mark.name+'" '),t+="("+(n.mark.line+1)+":"+(n.mark.column+1)+")",!e&&n.mark.snippet&&(t+=`
462
+ see https://github.com/jprichardson/node-fs-extra/issues/269`,"Warning","fs-extra-WARN0002");let{srcStat:r,destStat:i}=Ef.checkPathsSync(n,e,"copy",t);if(Ef.checkParentPathsSync(n,r,e,"copy"),t.filter&&!t.filter(n,e))return;let s=wf.dirname(e);return mn.existsSync(s)||Gq(s),DC(i,n,e,t)}o(Hq,"copySync");function DC(n,e,t,r){let s=(r.dereference?mn.statSync:mn.lstatSync)(e);if(s.isDirectory())return eW(s,n,e,t,r);if(s.isFile()||s.isCharacterDevice()||s.isBlockDevice())return Qq(s,n,e,t,r);if(s.isSymbolicLink())return nW(n,e,t,r);throw s.isSocket()?new Error(`Cannot copy a socket file: ${e}`):s.isFIFO()?new Error(`Cannot copy a FIFO pipe: ${e}`):new Error(`Unknown file: ${e}`)}o(DC,"getStats");function Qq(n,e,t,r,i){return e?Kq(n,t,r,i):NC(n,t,r,i)}o(Qq,"onFile");function Kq(n,e,t,r){if(r.overwrite)return mn.unlinkSync(t),NC(n,e,t,r);if(r.errorOnExist)throw new Error(`'${t}' already exists`)}o(Kq,"mayCopyFile");function NC(n,e,t,r){return mn.copyFileSync(e,t),r.preserveTimestamps&&Yq(n.mode,e,t),iw(t,n.mode)}o(NC,"copyFile");function Yq(n,e,t){return Xq(n)&&Jq(t,n),Zq(e,t)}o(Yq,"handleTimestamps");function Xq(n){return(n&128)===0}o(Xq,"fileIsNotWritable");function Jq(n,e){return iw(n,e|128)}o(Jq,"makeFileWritable");function iw(n,e){return mn.chmodSync(n,e)}o(iw,"setDestMode");function Zq(n,e){let t=mn.statSync(n);return zq(e,t.atime,t.mtime)}o(Zq,"setDestTimestamps");function eW(n,e,t,r,i){return e?LC(t,r,i):tW(n.mode,t,r,i)}o(eW,"onDir");function tW(n,e,t,r){return mn.mkdirSync(t),LC(e,t,r),iw(t,n)}o(tW,"mkDirAndCopy");function LC(n,e,t){let r=mn.opendirSync(n);try{let i;for(;(i=r.readSync())!==null;)rW(i.name,n,e,t)}finally{r.closeSync()}}o(LC,"copyDir");function rW(n,e,t,r){let i=wf.join(e,n),s=wf.join(t,n);if(r.filter&&!r.filter(i,s))return;let{destStat:a}=Ef.checkPathsSync(i,s,"copy",r);return DC(a,i,s,r)}o(rW,"copyDirItem");function nW(n,e,t,r){let i=mn.readlinkSync(e);if(r.dereference&&(i=wf.resolve(process.cwd(),i)),n){let s;try{s=mn.readlinkSync(t)}catch(a){if(a.code==="EINVAL"||a.code==="UNKNOWN")return mn.symlinkSync(i,t);throw a}if(r.dereference&&(s=wf.resolve(process.cwd(),s)),Ef.isSrcSubdir(i,s))throw new Error(`Cannot copy '${i}' to a subdirectory of itself, '${s}'.`);if(Ef.isSrcSubdir(s,i))throw new Error(`Cannot overwrite '${s}' with '${i}'.`);return iW(i,t)}else return mn.symlinkSync(i,t)}o(nW,"onLink");function iW(n,e){return mn.unlinkSync(e),mn.symlinkSync(n,e)}o(iW,"copyLink");kC.exports=Hq});var Qm=S((jle,jC)=>{"use strict";var sW=vr().fromPromise;jC.exports={copy:sW(FC()),copySync:MC()}});var Tf=S(($le,VC)=>{"use strict";var $C=Il(),aW=vr().fromCallback;function oW(n,e){$C.rm(n,{recursive:!0,force:!0},e)}o(oW,"remove");function cW(n){$C.rmSync(n,{recursive:!0,force:!0})}o(cW,"removeSync");VC.exports={remove:aW(oW),removeSync:cW}});var QC=S((Ule,HC)=>{"use strict";var lW=vr().fromPromise,qC=pn(),WC=require("path"),GC=qi(),zC=Tf(),UC=lW(o(async function(e){let t;try{t=await qC.readdir(e)}catch{return GC.mkdirs(e)}return Promise.all(t.map(r=>zC.remove(WC.join(e,r))))},"emptyDir"));function BC(n){let e;try{e=qC.readdirSync(n)}catch{return GC.mkdirsSync(n)}e.forEach(t=>{t=WC.join(n,t),zC.removeSync(t)})}o(BC,"emptyDirSync");HC.exports={emptyDirSync:BC,emptydirSync:BC,emptyDir:UC,emptydir:UC}});var JC=S((qle,XC)=>{"use strict";var uW=vr().fromPromise,KC=require("path"),fa=pn(),YC=qi();async function fW(n){let e;try{e=await fa.stat(n)}catch{}if(e&&e.isFile())return;let t=KC.dirname(n),r=null;try{r=await fa.stat(t)}catch(i){if(i.code==="ENOENT"){await YC.mkdirs(t),await fa.writeFile(n,"");return}else throw i}r.isDirectory()?await fa.writeFile(n,""):await fa.readdir(t)}o(fW,"createFile");function dW(n){let e;try{e=fa.statSync(n)}catch{}if(e&&e.isFile())return;let t=KC.dirname(n);try{fa.statSync(t).isDirectory()||fa.readdirSync(t)}catch(r){if(r&&r.code==="ENOENT")YC.mkdirsSync(t);else throw r}fa.writeFileSync(n,"")}o(dW,"createFileSync");XC.exports={createFile:uW(fW),createFileSync:dW}});var nR=S((Gle,rR)=>{"use strict";var hW=vr().fromPromise,ZC=require("path"),Qa=pn(),eR=qi(),{pathExists:pW}=Ha(),{areIdentical:tR}=Qo();async function mW(n,e){let t;try{t=await Qa.lstat(e)}catch{}let r;try{r=await Qa.lstat(n)}catch(a){throw a.message=a.message.replace("lstat","ensureLink"),a}if(t&&tR(r,t))return;let i=ZC.dirname(e);await pW(i)||await eR.mkdirs(i),await Qa.link(n,e)}o(mW,"createLink");function gW(n,e){let t;try{t=Qa.lstatSync(e)}catch{}try{let s=Qa.lstatSync(n);if(t&&tR(s,t))return}catch(s){throw s.message=s.message.replace("lstat","ensureLink"),s}let r=ZC.dirname(e);return Qa.existsSync(r)||eR.mkdirsSync(r),Qa.linkSync(n,e)}o(gW,"createLinkSync");rR.exports={createLink:hW(mW),createLinkSync:gW}});var sR=S((Hle,iR)=>{"use strict";var Ka=require("path"),Af=pn(),{pathExists:yW}=Ha(),_W=vr().fromPromise;async function SW(n,e){if(Ka.isAbsolute(n)){try{await Af.lstat(n)}catch(s){throw s.message=s.message.replace("lstat","ensureSymlink"),s}return{toCwd:n,toDst:n}}let t=Ka.dirname(e),r=Ka.join(t,n);if(await yW(r))return{toCwd:r,toDst:n};try{await Af.lstat(n)}catch(s){throw s.message=s.message.replace("lstat","ensureSymlink"),s}return{toCwd:n,toDst:Ka.relative(t,n)}}o(SW,"symlinkPaths");function bW(n,e){if(Ka.isAbsolute(n)){if(!Af.existsSync(n))throw new Error("absolute srcpath does not exist");return{toCwd:n,toDst:n}}let t=Ka.dirname(e),r=Ka.join(t,n);if(Af.existsSync(r))return{toCwd:r,toDst:n};if(!Af.existsSync(n))throw new Error("relative srcpath does not exist");return{toCwd:n,toDst:Ka.relative(t,n)}}o(bW,"symlinkPathsSync");iR.exports={symlinkPaths:_W(SW),symlinkPathsSync:bW}});var cR=S((Kle,oR)=>{"use strict";var aR=pn(),vW=vr().fromPromise;async function wW(n,e){if(e)return e;let t;try{t=await aR.lstat(n)}catch{return"file"}return t&&t.isDirectory()?"dir":"file"}o(wW,"symlinkType");function EW(n,e){if(e)return e;let t;try{t=aR.lstatSync(n)}catch{return"file"}return t&&t.isDirectory()?"dir":"file"}o(EW,"symlinkTypeSync");oR.exports={symlinkType:vW(wW),symlinkTypeSync:EW}});var dR=S((Xle,fR)=>{"use strict";var TW=vr().fromPromise,lR=require("path"),Ts=pn(),{mkdirs:AW,mkdirsSync:xW}=qi(),{symlinkPaths:IW,symlinkPathsSync:CW}=sR(),{symlinkType:RW,symlinkTypeSync:OW}=cR(),{pathExists:PW}=Ha(),{areIdentical:uR}=Qo();async function FW(n,e,t){let r;try{r=await Ts.lstat(e)}catch{}if(r&&r.isSymbolicLink()){let[c,l]=await Promise.all([Ts.stat(n),Ts.stat(e)]);if(uR(c,l))return}let i=await IW(n,e);n=i.toDst;let s=await RW(i.toCwd,t),a=lR.dirname(e);return await PW(a)||await AW(a),Ts.symlink(n,e,s)}o(FW,"createSymlink");function DW(n,e,t){let r;try{r=Ts.lstatSync(e)}catch{}if(r&&r.isSymbolicLink()){let c=Ts.statSync(n),l=Ts.statSync(e);if(uR(c,l))return}let i=CW(n,e);n=i.toDst,t=OW(i.toCwd,t);let s=lR.dirname(e);return Ts.existsSync(s)||xW(s),Ts.symlinkSync(n,e,t)}o(DW,"createSymlinkSync");fR.exports={createSymlink:TW(FW),createSymlinkSync:DW}});var bR=S((Zle,SR)=>{"use strict";var{createFile:hR,createFileSync:pR}=JC(),{createLink:mR,createLinkSync:gR}=nR(),{createSymlink:yR,createSymlinkSync:_R}=dR();SR.exports={createFile:hR,createFileSync:pR,ensureFile:hR,ensureFileSync:pR,createLink:mR,createLinkSync:gR,ensureLink:mR,ensureLinkSync:gR,createSymlink:yR,createSymlinkSync:_R,ensureSymlink:yR,ensureSymlinkSync:_R}});var Km=S((eue,vR)=>{function NW(n,{EOL:e=`
463
+ `,finalEOL:t=!0,replacer:r=null,spaces:i}={}){let s=t?e:"";return JSON.stringify(n,r,i).replace(/\n/g,e)+s}o(NW,"stringify");function LW(n){return Buffer.isBuffer(n)&&(n=n.toString("utf8")),n.replace(/^\uFEFF/,"")}o(LW,"stripBom");vR.exports={stringify:NW,stripBom:LW}});var AR=S((rue,TR)=>{var Ol;try{Ol=Il()}catch{Ol=require("fs")}var Ym=vr(),{stringify:wR,stripBom:ER}=Km();async function kW(n,e={}){typeof e=="string"&&(e={encoding:e});let t=e.fs||Ol,r="throws"in e?e.throws:!0,i=await Ym.fromCallback(t.readFile)(n,e);i=ER(i);let s;try{s=JSON.parse(i,e?e.reviver:null)}catch(a){if(r)throw a.message=`${n}: ${a.message}`,a;return null}return s}o(kW,"_readFile");var MW=Ym.fromPromise(kW);function jW(n,e={}){typeof e=="string"&&(e={encoding:e});let t=e.fs||Ol,r="throws"in e?e.throws:!0;try{let i=t.readFileSync(n,e);return i=ER(i),JSON.parse(i,e.reviver)}catch(i){if(r)throw i.message=`${n}: ${i.message}`,i;return null}}o(jW,"readFileSync");async function $W(n,e,t={}){let r=t.fs||Ol,i=wR(e,t);await Ym.fromCallback(r.writeFile)(n,i,t)}o($W,"_writeFile");var VW=Ym.fromPromise($W);function UW(n,e,t={}){let r=t.fs||Ol,i=wR(e,t);return r.writeFileSync(n,i,t)}o(UW,"writeFileSync");TR.exports={readFile:MW,readFileSync:jW,writeFile:VW,writeFileSync:UW}});var IR=S((iue,xR)=>{"use strict";var Xm=AR();xR.exports={readJson:Xm.readFile,readJsonSync:Xm.readFileSync,writeJson:Xm.writeFile,writeJsonSync:Xm.writeFileSync}});var Jm=S((sue,OR)=>{"use strict";var BW=vr().fromPromise,sw=pn(),CR=require("path"),RR=qi(),qW=Ha().pathExists;async function WW(n,e,t="utf-8"){let r=CR.dirname(n);return await qW(r)||await RR.mkdirs(r),sw.writeFile(n,e,t)}o(WW,"outputFile");function GW(n,...e){let t=CR.dirname(n);sw.existsSync(t)||RR.mkdirsSync(t),sw.writeFileSync(n,...e)}o(GW,"outputFileSync");OR.exports={outputFile:BW(WW),outputFileSync:GW}});var FR=S((oue,PR)=>{"use strict";var{stringify:zW}=Km(),{outputFile:HW}=Jm();async function QW(n,e,t={}){let r=zW(e,t);await HW(n,r,t)}o(QW,"outputJson");PR.exports=QW});var NR=S((lue,DR)=>{"use strict";var{stringify:KW}=Km(),{outputFileSync:YW}=Jm();function XW(n,e,t){let r=KW(e,t);YW(n,r,t)}o(XW,"outputJsonSync");DR.exports=XW});var kR=S((fue,LR)=>{"use strict";var JW=vr().fromPromise,gn=IR();gn.outputJson=JW(FR());gn.outputJsonSync=NR();gn.outputJSON=gn.outputJson;gn.outputJSONSync=gn.outputJsonSync;gn.writeJSON=gn.writeJson;gn.writeJSONSync=gn.writeJsonSync;gn.readJSON=gn.readJson;gn.readJSONSync=gn.readJsonSync;LR.exports=gn});var UR=S((due,VR)=>{"use strict";var ZW=pn(),MR=require("path"),{copy:eG}=Qm(),{remove:$R}=Tf(),{mkdirp:tG}=qi(),{pathExists:rG}=Ha(),jR=Qo();async function nG(n,e,t={}){let r=t.overwrite||t.clobber||!1,{srcStat:i,isChangingCase:s=!1}=await jR.checkPaths(n,e,"move",t);await jR.checkParentPaths(n,i,e,"move");let a=MR.dirname(e);return MR.parse(a).root!==a&&await tG(a),iG(n,e,r,s)}o(nG,"move");async function iG(n,e,t,r){if(!r){if(t)await $R(e);else if(await rG(e))throw new Error("dest already exists.")}try{await ZW.rename(n,e)}catch(i){if(i.code!=="EXDEV")throw i;await sG(n,e,t)}}o(iG,"doRename");async function sG(n,e,t){return await eG(n,e,{overwrite:t,errorOnExist:!0,preserveTimestamps:!0}),$R(n)}o(sG,"moveAcrossDevice");VR.exports=nG});var zR=S((pue,GR)=>{"use strict";var qR=Il(),ow=require("path"),aG=Qm().copySync,WR=Tf().removeSync,oG=qi().mkdirpSync,BR=Qo();function cG(n,e,t){t=t||{};let r=t.overwrite||t.clobber||!1,{srcStat:i,isChangingCase:s=!1}=BR.checkPathsSync(n,e,"move",t);return BR.checkParentPathsSync(n,i,e,"move"),lG(e)||oG(ow.dirname(e)),uG(n,e,r,s)}o(cG,"moveSync");function lG(n){let e=ow.dirname(n);return ow.parse(e).root===e}o(lG,"isParentRoot");function uG(n,e,t,r){if(r)return aw(n,e,t);if(t)return WR(e),aw(n,e,t);if(qR.existsSync(e))throw new Error("dest already exists.");return aw(n,e,t)}o(uG,"doRename");function aw(n,e,t){try{qR.renameSync(n,e)}catch(r){if(r.code!=="EXDEV")throw r;return fG(n,e,t)}}o(aw,"rename");function fG(n,e,t){return aG(n,e,{overwrite:t,errorOnExist:!0,preserveTimestamps:!0}),WR(n)}o(fG,"moveAcrossDevice");GR.exports=cG});var QR=S((gue,HR)=>{"use strict";var dG=vr().fromPromise;HR.exports={move:dG(UR()),moveSync:zR()}});var Pl=S((yue,KR)=>{"use strict";KR.exports={...pn(),...Qm(),...QC(),...bR(),...kR(),...qi(),...QR(),...Jm(),...Ha(),...Tf()}});var nP=S((bue,rP)=>{"use strict";rP.exports=eP;function eP(n,e,t){n instanceof RegExp&&(n=ZO(n,t)),e instanceof RegExp&&(e=ZO(e,t));var r=tP(n,e,t);return r&&{start:r[0],end:r[1],pre:t.slice(0,r[0]),body:t.slice(r[0]+n.length,r[1]),post:t.slice(r[1]+e.length)}}o(eP,"balanced");function ZO(n,e){var t=e.match(n);return t?t[0]:null}o(ZO,"maybeMatch");eP.range=tP;function tP(n,e,t){var r,i,s,a,c,l=t.indexOf(n),u=t.indexOf(e,l+1),f=l;if(l>=0&&u>0){if(n===e)return[l,u];for(r=[],s=t.length;f>=0&&!c;)f==l?(r.push(f),l=t.indexOf(n,f+1)):r.length==1?c=[r.pop(),u]:(i=r.pop(),i<s&&(s=i,a=u),u=t.indexOf(e,f+1)),f=l<u&&l>=0?l:u;r.length&&(c=[s,a])}return c}o(tP,"range")});var fP=S((wue,uP)=>{var iP=nP();uP.exports=NH;var sP="\0SLASH"+Math.random()+"\0",aP="\0OPEN"+Math.random()+"\0",Ew="\0CLOSE"+Math.random()+"\0",oP="\0COMMA"+Math.random()+"\0",cP="\0PERIOD"+Math.random()+"\0";function ww(n){return parseInt(n,10)==n?parseInt(n,10):n.charCodeAt(0)}o(ww,"numeric");function FH(n){return n.split("\\\\").join(sP).split("\\{").join(aP).split("\\}").join(Ew).split("\\,").join(oP).split("\\.").join(cP)}o(FH,"escapeBraces");function DH(n){return n.split(sP).join("\\").split(aP).join("{").split(Ew).join("}").split(oP).join(",").split(cP).join(".")}o(DH,"unescapeBraces");function lP(n){if(!n)return[""];var e=[],t=iP("{","}",n);if(!t)return n.split(",");var r=t.pre,i=t.body,s=t.post,a=r.split(",");a[a.length-1]+="{"+i+"}";var c=lP(s);return s.length&&(a[a.length-1]+=c.shift(),a.push.apply(a,c)),e.push.apply(e,a),e}o(lP,"parseCommaParts");function NH(n){return n?(n.substr(0,2)==="{}"&&(n="\\{\\}"+n.substr(2)),Pf(FH(n),!0).map(DH)):[]}o(NH,"expandTop");function LH(n){return"{"+n+"}"}o(LH,"embrace");function kH(n){return/^-?0\d/.test(n)}o(kH,"isPadded");function MH(n,e){return n<=e}o(MH,"lte");function jH(n,e){return n>=e}o(jH,"gte");function Pf(n,e){var t=[],r=iP("{","}",n);if(!r)return[n];var i=r.pre,s=r.post.length?Pf(r.post,!1):[""];if(/\$$/.test(r.pre))for(var a=0;a<s.length;a++){var c=i+"{"+r.body+"}"+s[a];t.push(c)}else{var l=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(r.body),u=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(r.body),f=l||u,d=r.body.indexOf(",")>=0;if(!f&&!d)return r.post.match(/,(?!,).*\}/)?(n=r.pre+"{"+r.body+Ew+r.post,Pf(n)):[n];var h;if(f)h=r.body.split(/\.\./);else if(h=lP(r.body),h.length===1&&(h=Pf(h[0],!1).map(LH),h.length===1))return s.map(function(k){return r.pre+h[0]+k});var p;if(f){var y=ww(h[0]),b=ww(h[1]),w=Math.max(h[0].length,h[1].length),v=h.length==3?Math.max(Math.abs(ww(h[2])),1):1,T=MH,C=b<y;C&&(v*=-1,T=jH);var L=h.some(kH);p=[];for(var V=y;T(V,b);V+=v){var ae;if(u)ae=String.fromCharCode(V),ae==="\\"&&(ae="");else if(ae=String(V),L){var $=w-ae.length;if($>0){var B=new Array($+1).join("0");V<0?ae="-"+B+ae.slice(1):ae=B+ae}}p.push(ae)}}else{p=[];for(var F=0;F<h.length;F++)p.push.apply(p,Pf(h[F],!1))}for(var F=0;F<p.length;F++)for(var a=0;a<s.length;a++){var c=i+p[F]+s[a];(!e||f||c)&&t.push(c)}}return t}o(Pf,"expand")});var sN=S(Nn=>{"use strict";Object.defineProperty(Nn,"__esModule",{value:!0});Nn.createPathBasedTargetResolver=_a;Nn.createCreateRelatedTaskService=WX;Nn.createCreateRelatedProjectService=GX;Nn.createArchiveAssetService=zX;Nn.createCleanPropertiesService=HX;Nn.createFixMissingLabelService=QX;Nn.createRenameToUidService=KX;Nn.createRepairFolderService=YX;Nn.createPlanForEveningService=XX;Nn.createUpdatePropertyService=JX;Nn.createRemovePropertyService=ZX;Nn.createSetStatusService=eJ;function _a(n){return{resolveFile(e){let t=n.getAbstractFileByPath(`${e}.md`);if(!t||!("basename"in t))throw new Error(`Cannot resolve target file for IRI: ${e}`);return t}}}o(_a,"createPathBasedTargetResolver");function WX(n,e,t=_a(n)){return{async execute(r,i){let s=i?.label;if(!s)throw new Error("createRelatedTask requires userInput.label");let a=t.resolveFile(r),c=n.getFrontmatter(a)??{},l=a.parent?.path||"",u={ems__Effort_status:'"[[ems__EffortStatusDraft]]"'},f=i?.parentProperty;f&&a.basename&&(u[f]=`"[[${a.basename}]]"`),await e.createAsset({className:"ems__Task",label:s,folderPath:l,propertyValues:u,parentFile:a,parentMetadata:c})}}}o(WX,"createCreateRelatedTaskService");function GX(n,e,t=_a(n)){return{async execute(r,i){let s=i?.label;if(!s)throw new Error("createRelatedProject requires userInput.label");let a=t.resolveFile(r),c=n.getFrontmatter(a)??{},l=a.parent?.path||"",u={ems__Effort_status:'"[[ems__EffortStatusDraft]]"'},f=i?.parentProperty;f&&a.basename&&(u[f]=`"[[${a.basename}]]"`),await e.createAsset({className:"ems__Project",label:s,folderPath:l,propertyValues:u,parentFile:a,parentMetadata:c})}}}o(GX,"createCreateRelatedProjectService");function zX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r);await e.archiveAsset(i)}}}o(zX,"createArchiveAssetService");function HX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r);await e.cleanEmptyProperties(i)}}}o(HX,"createCleanPropertiesService");function QX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r);await e.fixMissingLabel(i)}}}o(QX,"createFixMissingLabelService");function KX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r),s=n.getFrontmatter(i)??{};await e.renameToUid(i,s)}}}o(KX,"createRenameToUidService");function YX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r),s=n.getFrontmatter(i)??{},a=await e.getExpectedFolder(i,s);if(a===null)throw new Error("repairFolder: cannot determine expected folder (missing exo__Asset_isDefinedBy or referenced asset not found)");(i.parent?.path??"")!==a&&await e.repairFolder(i,a)}}}o(YX,"createRepairFolderService");function XX(n,e,t=_a(n)){return{async execute(r){let i=t.resolveFile(r);await e.planForEvening(i)}}}o(XX,"createPlanForEveningService");function JX(n,e,t){return{async execute(r,i){let s=i?.property,a=i?.value;if(!s)throw new Error("updateProperty requires userInput.property");if(a===void 0)throw new Error("updateProperty requires userInput.value");let c=await t.resolveTargetPath(r),l=await n.readFile(c),u=e.updateProperty(l,s,a);await n.updateFile(c,u)}}}o(JX,"createUpdatePropertyService");function ZX(n,e,t){return{async execute(r,i){let s=i?.property;if(!s)throw new Error("removeProperty requires userInput.property");let a=await t.resolveTargetPath(r),c=await n.readFile(a),l=e.removeProperty(c,s);await n.updateFile(a,l)}}}o(ZX,"createRemovePropertyService");function eJ(n,e,t){return{async execute(r,i){let s=i?.statusUID;if(!s)throw new Error("setStatus requires userInput.statusUID");let a=await t.resolveTargetPath(r),c=await n.readFile(a),l=e.updateProperty(c,"ems__Effort_status",`"[[${s}]]"`);await n.updateFile(a,l)}}}o(eJ,"createSetStatusService")});var aN=S(At=>{"use strict";Object.defineProperty(At,"__esModule",{value:!0});At.createPathBasedTargetResolver=At.createSetStatusService=At.createRemovePropertyService=At.createUpdatePropertyService=At.createPlanForEveningService=At.createRepairFolderService=At.createRenameToUidService=At.createFixMissingLabelService=At.createCleanPropertiesService=At.createArchiveAssetService=At.createCreateRelatedProjectService=At.createCreateRelatedTaskService=void 0;var di=sN();Object.defineProperty(At,"createCreateRelatedTaskService",{enumerable:!0,get:o(function(){return di.createCreateRelatedTaskService},"get")});Object.defineProperty(At,"createCreateRelatedProjectService",{enumerable:!0,get:o(function(){return di.createCreateRelatedProjectService},"get")});Object.defineProperty(At,"createArchiveAssetService",{enumerable:!0,get:o(function(){return di.createArchiveAssetService},"get")});Object.defineProperty(At,"createCleanPropertiesService",{enumerable:!0,get:o(function(){return di.createCleanPropertiesService},"get")});Object.defineProperty(At,"createFixMissingLabelService",{enumerable:!0,get:o(function(){return di.createFixMissingLabelService},"get")});Object.defineProperty(At,"createRenameToUidService",{enumerable:!0,get:o(function(){return di.createRenameToUidService},"get")});Object.defineProperty(At,"createRepairFolderService",{enumerable:!0,get:o(function(){return di.createRepairFolderService},"get")});Object.defineProperty(At,"createPlanForEveningService",{enumerable:!0,get:o(function(){return di.createPlanForEveningService},"get")});Object.defineProperty(At,"createUpdatePropertyService",{enumerable:!0,get:o(function(){return di.createUpdatePropertyService},"get")});Object.defineProperty(At,"createRemovePropertyService",{enumerable:!0,get:o(function(){return di.createRemovePropertyService},"get")});Object.defineProperty(At,"createSetStatusService",{enumerable:!0,get:o(function(){return di.createSetStatusService},"get")});Object.defineProperty(At,"createPathBasedTargetResolver",{enumerable:!0,get:o(function(){return di.createPathBasedTargetResolver},"get")})});var cJ={};Ny(cJ,{createProgram:()=>dN});module.exports=Od(cJ);var T1e=Z(Pd());var W2=Z(q2(),1),{program:RJ,createCommand:OJ,createArgument:PJ,createOption:FJ,CommanderError:DJ,InvalidArgumentError:NJ,InvalidOptionArgumentError:LJ,Command:Te,Argument:kJ,Option:MJ,Help:jJ}=W2.default;var tu=require("fs"),nd=require("path"),Bt=Z(nr());var ar=Z(Pl()),Kt=Z(require("path"));function fO(n){return typeof n>"u"||n===null}o(fO,"isNothing");function hG(n){return typeof n=="object"&&n!==null}o(hG,"isObject");function pG(n){return Array.isArray(n)?n:fO(n)?[]:[n]}o(pG,"toArray");function mG(n,e){var t,r,i,s;if(e)for(s=Object.keys(e),t=0,r=s.length;t<r;t+=1)i=s[t],n[i]=e[i];return n}o(mG,"extend");function gG(n,e){var t="",r;for(r=0;r<e;r+=1)t+=n;return t}o(gG,"repeat");function yG(n){return n===0&&Number.NEGATIVE_INFINITY===1/n}o(yG,"isNegativeZero");var _G=fO,SG=hG,bG=pG,vG=gG,wG=yG,EG=mG,pr={isNothing:_G,isObject:SG,toArray:bG,repeat:vG,isNegativeZero:wG,extend:EG};function dO(n,e){var t="",r=n.reason||"(unknown reason)";return n.mark?(n.mark.name&&(t+='in "'+n.mark.name+'" '),t+="("+(n.mark.line+1)+":"+(n.mark.column+1)+")",!e&&n.mark.snippet&&(t+=`
464
464
 
465
465
  `+n.mark.snippet),r+" "+t):r}o(dO,"formatError");function If(n,e){Error.call(this),this.name="YAMLException",this.reason=n,this.mark=e,this.message=dO(this,!1),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack||""}o(If,"YAMLException$1");If.prototype=Object.create(Error.prototype);If.prototype.constructor=If;If.prototype.toString=o(function(e){return this.name+": "+dO(this,e)},"toString");var yn=If;function cw(n,e,t,r,i){var s="",a="",c=Math.floor(i/2)-1;return r-e>c&&(s=" ... ",e=r-c+s.length),t-r>c&&(a=" ...",t=r+c-a.length),{str:s+n.slice(e,t).replace(/\t/g,"\u2192")+a,pos:r-e+s.length}}o(cw,"getLine");function lw(n,e){return pr.repeat(" ",e-n.length)+n}o(lw,"padStart");function TG(n,e){if(e=Object.create(e||null),!n.buffer)return null;e.maxLength||(e.maxLength=79),typeof e.indent!="number"&&(e.indent=1),typeof e.linesBefore!="number"&&(e.linesBefore=3),typeof e.linesAfter!="number"&&(e.linesAfter=2);for(var t=/\r?\n|\r|\0/g,r=[0],i=[],s,a=-1;s=t.exec(n.buffer);)i.push(s.index),r.push(s.index+s[0].length),n.position<=s.index&&a<0&&(a=r.length-2);a<0&&(a=r.length-1);var c="",l,u,f=Math.min(n.line+e.linesAfter,i.length).toString().length,d=e.maxLength-(e.indent+f+3);for(l=1;l<=e.linesBefore&&!(a-l<0);l++)u=cw(n.buffer,r[a-l],i[a-l],n.position-(r[a]-r[a-l]),d),c=pr.repeat(" ",e.indent)+lw((n.line-l+1).toString(),f)+" | "+u.str+`
466
466
  `+c;for(u=cw(n.buffer,r[a],i[a],n.position,d),c+=pr.repeat(" ",e.indent)+lw((n.line+1).toString(),f)+" | "+u.str+`
467
467
  `,c+=pr.repeat("-",e.indent+f+3+u.pos)+`^
468
468
  `,l=1;l<=e.linesAfter&&!(a+l>=i.length);l++)u=cw(n.buffer,r[a+l],i[a+l],n.position-(r[a]-r[a+l]),d),c+=pr.repeat(" ",e.indent)+lw((n.line+l+1).toString(),f)+" | "+u.str+`
469
469
  `;return c.replace(/\n$/,"")}o(TG,"makeSnippet");var AG=TG,xG=["kind","multi","resolve","construct","instanceOf","predicate","represent","representName","defaultStyle","styleAliases"],IG=["scalar","sequence","mapping"];function CG(n){var e={};return n!==null&&Object.keys(n).forEach(function(t){n[t].forEach(function(r){e[String(r)]=t})}),e}o(CG,"compileStyleAliases");function RG(n,e){if(e=e||{},Object.keys(e).forEach(function(t){if(xG.indexOf(t)===-1)throw new yn('Unknown option "'+t+'" is met in definition of "'+n+'" YAML type.')}),this.options=e,this.tag=n,this.kind=e.kind||null,this.resolve=e.resolve||function(){return!0},this.construct=e.construct||function(t){return t},this.instanceOf=e.instanceOf||null,this.predicate=e.predicate||null,this.represent=e.represent||null,this.representName=e.representName||null,this.defaultStyle=e.defaultStyle||null,this.multi=e.multi||!1,this.styleAliases=CG(e.styleAliases||null),IG.indexOf(this.kind)===-1)throw new yn('Unknown kind "'+this.kind+'" is specified for "'+n+'" YAML type.')}o(RG,"Type$1");var Mr=RG;function YR(n,e){var t=[];return n[e].forEach(function(r){var i=t.length;t.forEach(function(s,a){s.tag===r.tag&&s.kind===r.kind&&s.multi===r.multi&&(i=a)}),t[i]=r}),t}o(YR,"compileList");function OG(){var n={scalar:{},sequence:{},mapping:{},fallback:{},multi:{scalar:[],sequence:[],mapping:[],fallback:[]}},e,t;function r(i){i.multi?(n.multi[i.kind].push(i),n.multi.fallback.push(i)):n[i.kind][i.tag]=n.fallback[i.tag]=i}for(o(r,"collectType"),e=0,t=arguments.length;e<t;e+=1)arguments[e].forEach(r);return n}o(OG,"compileMap");function fw(n){return this.extend(n)}o(fw,"Schema$1");fw.prototype.extend=o(function(e){var t=[],r=[];if(e instanceof Mr)r.push(e);else if(Array.isArray(e))r=r.concat(e);else if(e&&(Array.isArray(e.implicit)||Array.isArray(e.explicit)))e.implicit&&(t=t.concat(e.implicit)),e.explicit&&(r=r.concat(e.explicit));else throw new yn("Schema.extend argument should be a Type, [ Type ], or a schema definition ({ implicit: [...], explicit: [...] })");t.forEach(function(s){if(!(s instanceof Mr))throw new yn("Specified list of YAML types (or a single Type object) contains a non-Type object.");if(s.loadKind&&s.loadKind!=="scalar")throw new yn("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.");if(s.multi)throw new yn("There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.")}),r.forEach(function(s){if(!(s instanceof Mr))throw new yn("Specified list of YAML types (or a single Type object) contains a non-Type object.")});var i=Object.create(fw.prototype);return i.implicit=(this.implicit||[]).concat(t),i.explicit=(this.explicit||[]).concat(r),i.compiledImplicit=YR(i,"implicit"),i.compiledExplicit=YR(i,"explicit"),i.compiledTypeMap=OG(i.compiledImplicit,i.compiledExplicit),i},"extend");var hO=fw,pO=new Mr("tag:yaml.org,2002:str",{kind:"scalar",construct:o(function(n){return n!==null?n:""},"construct")}),mO=new Mr("tag:yaml.org,2002:seq",{kind:"sequence",construct:o(function(n){return n!==null?n:[]},"construct")}),gO=new Mr("tag:yaml.org,2002:map",{kind:"mapping",construct:o(function(n){return n!==null?n:{}},"construct")}),yO=new hO({explicit:[pO,mO,gO]});function PG(n){if(n===null)return!0;var e=n.length;return e===1&&n==="~"||e===4&&(n==="null"||n==="Null"||n==="NULL")}o(PG,"resolveYamlNull");function FG(){return null}o(FG,"constructYamlNull");function DG(n){return n===null}o(DG,"isNull");var _O=new Mr("tag:yaml.org,2002:null",{kind:"scalar",resolve:PG,construct:FG,predicate:DG,represent:{canonical:o(function(){return"~"},"canonical"),lowercase:o(function(){return"null"},"lowercase"),uppercase:o(function(){return"NULL"},"uppercase"),camelcase:o(function(){return"Null"},"camelcase"),empty:o(function(){return""},"empty")},defaultStyle:"lowercase"});function NG(n){if(n===null)return!1;var e=n.length;return e===4&&(n==="true"||n==="True"||n==="TRUE")||e===5&&(n==="false"||n==="False"||n==="FALSE")}o(NG,"resolveYamlBoolean");function LG(n){return n==="true"||n==="True"||n==="TRUE"}o(LG,"constructYamlBoolean");function kG(n){return Object.prototype.toString.call(n)==="[object Boolean]"}o(kG,"isBoolean");var SO=new Mr("tag:yaml.org,2002:bool",{kind:"scalar",resolve:NG,construct:LG,predicate:kG,represent:{lowercase:o(function(n){return n?"true":"false"},"lowercase"),uppercase:o(function(n){return n?"TRUE":"FALSE"},"uppercase"),camelcase:o(function(n){return n?"True":"False"},"camelcase")},defaultStyle:"lowercase"});function MG(n){return 48<=n&&n<=57||65<=n&&n<=70||97<=n&&n<=102}o(MG,"isHexCode");function jG(n){return 48<=n&&n<=55}o(jG,"isOctCode");function $G(n){return 48<=n&&n<=57}o($G,"isDecCode");function VG(n){if(n===null)return!1;var e=n.length,t=0,r=!1,i;if(!e)return!1;if(i=n[t],(i==="-"||i==="+")&&(i=n[++t]),i==="0"){if(t+1===e)return!0;if(i=n[++t],i==="b"){for(t++;t<e;t++)if(i=n[t],i!=="_"){if(i!=="0"&&i!=="1")return!1;r=!0}return r&&i!=="_"}if(i==="x"){for(t++;t<e;t++)if(i=n[t],i!=="_"){if(!MG(n.charCodeAt(t)))return!1;r=!0}return r&&i!=="_"}if(i==="o"){for(t++;t<e;t++)if(i=n[t],i!=="_"){if(!jG(n.charCodeAt(t)))return!1;r=!0}return r&&i!=="_"}}if(i==="_")return!1;for(;t<e;t++)if(i=n[t],i!=="_"){if(!$G(n.charCodeAt(t)))return!1;r=!0}return!(!r||i==="_")}o(VG,"resolveYamlInteger");function UG(n){var e=n,t=1,r;if(e.indexOf("_")!==-1&&(e=e.replace(/_/g,"")),r=e[0],(r==="-"||r==="+")&&(r==="-"&&(t=-1),e=e.slice(1),r=e[0]),e==="0")return 0;if(r==="0"){if(e[1]==="b")return t*parseInt(e.slice(2),2);if(e[1]==="x")return t*parseInt(e.slice(2),16);if(e[1]==="o")return t*parseInt(e.slice(2),8)}return t*parseInt(e,10)}o(UG,"constructYamlInteger");function BG(n){return Object.prototype.toString.call(n)==="[object Number]"&&n%1===0&&!pr.isNegativeZero(n)}o(BG,"isInteger");var bO=new Mr("tag:yaml.org,2002:int",{kind:"scalar",resolve:VG,construct:UG,predicate:BG,represent:{binary:o(function(n){return n>=0?"0b"+n.toString(2):"-0b"+n.toString(2).slice(1)},"binary"),octal:o(function(n){return n>=0?"0o"+n.toString(8):"-0o"+n.toString(8).slice(1)},"octal"),decimal:o(function(n){return n.toString(10)},"decimal"),hexadecimal:o(function(n){return n>=0?"0x"+n.toString(16).toUpperCase():"-0x"+n.toString(16).toUpperCase().slice(1)},"hexadecimal")},defaultStyle:"decimal",styleAliases:{binary:[2,"bin"],octal:[8,"oct"],decimal:[10,"dec"],hexadecimal:[16,"hex"]}}),qG=new RegExp("^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$");function WG(n){return!(n===null||!qG.test(n)||n[n.length-1]==="_")}o(WG,"resolveYamlFloat");function GG(n){var e,t;return e=n.replace(/_/g,"").toLowerCase(),t=e[0]==="-"?-1:1,"+-".indexOf(e[0])>=0&&(e=e.slice(1)),e===".inf"?t===1?Number.POSITIVE_INFINITY:Number.NEGATIVE_INFINITY:e===".nan"?NaN:t*parseFloat(e,10)}o(GG,"constructYamlFloat");var zG=/^[-+]?[0-9]+e/;function HG(n,e){var t;if(isNaN(n))switch(e){case"lowercase":return".nan";case"uppercase":return".NAN";case"camelcase":return".NaN"}else if(Number.POSITIVE_INFINITY===n)switch(e){case"lowercase":return".inf";case"uppercase":return".INF";case"camelcase":return".Inf"}else if(Number.NEGATIVE_INFINITY===n)switch(e){case"lowercase":return"-.inf";case"uppercase":return"-.INF";case"camelcase":return"-.Inf"}else if(pr.isNegativeZero(n))return"-0.0";return t=n.toString(10),zG.test(t)?t.replace("e",".e"):t}o(HG,"representYamlFloat");function QG(n){return Object.prototype.toString.call(n)==="[object Number]"&&(n%1!==0||pr.isNegativeZero(n))}o(QG,"isFloat");var vO=new Mr("tag:yaml.org,2002:float",{kind:"scalar",resolve:WG,construct:GG,predicate:QG,represent:HG,defaultStyle:"lowercase"}),wO=yO.extend({implicit:[_O,SO,bO,vO]}),EO=wO,TO=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"),AO=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:[Tt]|[ \\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\\.([0-9]*))?(?:[ \\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?$");function KG(n){return n===null?!1:TO.exec(n)!==null||AO.exec(n)!==null}o(KG,"resolveYamlTimestamp");function YG(n){var e,t,r,i,s,a,c,l=0,u=null,f,d,h;if(e=TO.exec(n),e===null&&(e=AO.exec(n)),e===null)throw new Error("Date resolve error");if(t=+e[1],r=+e[2]-1,i=+e[3],!e[4])return new Date(Date.UTC(t,r,i));if(s=+e[4],a=+e[5],c=+e[6],e[7]){for(l=e[7].slice(0,3);l.length<3;)l+="0";l=+l}return e[9]&&(f=+e[10],d=+(e[11]||0),u=(f*60+d)*6e4,e[9]==="-"&&(u=-u)),h=new Date(Date.UTC(t,r,i,s,a,c,l)),u&&h.setTime(h.getTime()-u),h}o(YG,"constructYamlTimestamp");function XG(n){return n.toISOString()}o(XG,"representYamlTimestamp");var xO=new Mr("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:KG,construct:YG,instanceOf:Date,represent:XG});function JG(n){return n==="<<"||n===null}o(JG,"resolveYamlMerge");var IO=new Mr("tag:yaml.org,2002:merge",{kind:"scalar",resolve:JG}),gw=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=
470
- \r`;function ZG(n){if(n===null)return!1;var e,t,r=0,i=n.length,s=gw;for(t=0;t<i;t++)if(e=s.indexOf(n.charAt(t)),!(e>64)){if(e<0)return!1;r+=6}return r%8===0}o(ZG,"resolveYamlBinary");function ez(n){var e,t,r=n.replace(/[\r\n=]/g,""),i=r.length,s=gw,a=0,c=[];for(e=0;e<i;e++)e%4===0&&e&&(c.push(a>>16&255),c.push(a>>8&255),c.push(a&255)),a=a<<6|s.indexOf(r.charAt(e));return t=i%4*6,t===0?(c.push(a>>16&255),c.push(a>>8&255),c.push(a&255)):t===18?(c.push(a>>10&255),c.push(a>>2&255)):t===12&&c.push(a>>4&255),new Uint8Array(c)}o(ez,"constructYamlBinary");function tz(n){var e="",t=0,r,i,s=n.length,a=gw;for(r=0;r<s;r++)r%3===0&&r&&(e+=a[t>>18&63],e+=a[t>>12&63],e+=a[t>>6&63],e+=a[t&63]),t=(t<<8)+n[r];return i=s%3,i===0?(e+=a[t>>18&63],e+=a[t>>12&63],e+=a[t>>6&63],e+=a[t&63]):i===2?(e+=a[t>>10&63],e+=a[t>>4&63],e+=a[t<<2&63],e+=a[64]):i===1&&(e+=a[t>>2&63],e+=a[t<<4&63],e+=a[64],e+=a[64]),e}o(tz,"representYamlBinary");function rz(n){return Object.prototype.toString.call(n)==="[object Uint8Array]"}o(rz,"isBinary");var CO=new Mr("tag:yaml.org,2002:binary",{kind:"scalar",resolve:ZG,construct:ez,predicate:rz,represent:tz}),nz=Object.prototype.hasOwnProperty,iz=Object.prototype.toString;function sz(n){if(n===null)return!0;var e=[],t,r,i,s,a,c=n;for(t=0,r=c.length;t<r;t+=1){if(i=c[t],a=!1,iz.call(i)!=="[object Object]")return!1;for(s in i)if(nz.call(i,s))if(!a)a=!0;else return!1;if(!a)return!1;if(e.indexOf(s)===-1)e.push(s);else return!1}return!0}o(sz,"resolveYamlOmap");function az(n){return n!==null?n:[]}o(az,"constructYamlOmap");var RO=new Mr("tag:yaml.org,2002:omap",{kind:"sequence",resolve:sz,construct:az}),oz=Object.prototype.toString;function cz(n){if(n===null)return!0;var e,t,r,i,s,a=n;for(s=new Array(a.length),e=0,t=a.length;e<t;e+=1){if(r=a[e],oz.call(r)!=="[object Object]"||(i=Object.keys(r),i.length!==1))return!1;s[e]=[i[0],r[i[0]]]}return!0}o(cz,"resolveYamlPairs");function lz(n){if(n===null)return[];var e,t,r,i,s,a=n;for(s=new Array(a.length),e=0,t=a.length;e<t;e+=1)r=a[e],i=Object.keys(r),s[e]=[i[0],r[i[0]]];return s}o(lz,"constructYamlPairs");var OO=new Mr("tag:yaml.org,2002:pairs",{kind:"sequence",resolve:cz,construct:lz}),uz=Object.prototype.hasOwnProperty;function fz(n){if(n===null)return!0;var e,t=n;for(e in t)if(uz.call(t,e)&&t[e]!==null)return!1;return!0}o(fz,"resolveYamlSet");function dz(n){return n!==null?n:{}}o(dz,"constructYamlSet");var PO=new Mr("tag:yaml.org,2002:set",{kind:"mapping",resolve:fz,construct:dz}),yw=EO.extend({implicit:[xO,IO],explicit:[CO,RO,OO,PO]}),Ya=Object.prototype.hasOwnProperty,Zm=1,FO=2,DO=3,eg=4,uw=1,hz=2,XR=3,pz=/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,mz=/[\x85\u2028\u2029]/,gz=/[,\[\]\{\}]/,NO=/^(?:!|!!|![a-z\-]+!)$/i,LO=/^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;function JR(n){return Object.prototype.toString.call(n)}o(JR,"_class");function As(n){return n===10||n===13}o(As,"is_EOL");function Yo(n){return n===9||n===32}o(Yo,"is_WHITE_SPACE");function Pn(n){return n===9||n===32||n===10||n===13}o(Pn,"is_WS_OR_EOL");function Dl(n){return n===44||n===91||n===93||n===123||n===125}o(Dl,"is_FLOW_INDICATOR");function yz(n){var e;return 48<=n&&n<=57?n-48:(e=n|32,97<=e&&e<=102?e-97+10:-1)}o(yz,"fromHexCode");function _z(n){return n===120?2:n===117?4:n===85?8:0}o(_z,"escapedHexLen");function Sz(n){return 48<=n&&n<=57?n-48:-1}o(Sz,"fromDecimalCode");function ZR(n){return n===48?"\0":n===97?"\x07":n===98?"\b":n===116||n===9?" ":n===110?`
471
- `:n===118?"\v":n===102?"\f":n===114?"\r":n===101?"\x1B":n===32?" ":n===34?'"':n===47?"/":n===92?"\\":n===78?"\x85":n===95?"\xA0":n===76?"\u2028":n===80?"\u2029":""}o(ZR,"simpleEscapeSequence");function bz(n){return n<=65535?String.fromCharCode(n):String.fromCharCode((n-65536>>10)+55296,(n-65536&1023)+56320)}o(bz,"charFromCodepoint");function kO(n,e,t){e==="__proto__"?Object.defineProperty(n,e,{configurable:!0,enumerable:!0,writable:!0,value:t}):n[e]=t}o(kO,"setProperty");var MO=new Array(256),jO=new Array(256);for(Ko=0;Ko<256;Ko++)MO[Ko]=ZR(Ko)?1:0,jO[Ko]=ZR(Ko);var Ko;function vz(n,e){this.input=n,this.filename=e.filename||null,this.schema=e.schema||yw,this.onWarning=e.onWarning||null,this.legacy=e.legacy||!1,this.json=e.json||!1,this.listener=e.listener||null,this.implicitTypes=this.schema.compiledImplicit,this.typeMap=this.schema.compiledTypeMap,this.length=n.length,this.position=0,this.line=0,this.lineStart=0,this.lineIndent=0,this.firstTabInLine=-1,this.documents=[]}o(vz,"State$1");function $O(n,e){var t={name:n.filename,buffer:n.input.slice(0,-1),position:n.position,line:n.line,column:n.position-n.lineStart};return t.snippet=AG(t),new yn(e,t)}o($O,"generateError");function ie(n,e){throw $O(n,e)}o(ie,"throwError");function tg(n,e){n.onWarning&&n.onWarning.call(null,$O(n,e))}o(tg,"throwWarning");var eO={YAML:o(function(e,t,r){var i,s,a;e.version!==null&&ie(e,"duplication of %YAML directive"),r.length!==1&&ie(e,"YAML directive accepts exactly one argument"),i=/^([0-9]+)\.([0-9]+)$/.exec(r[0]),i===null&&ie(e,"ill-formed argument of the YAML directive"),s=parseInt(i[1],10),a=parseInt(i[2],10),s!==1&&ie(e,"unacceptable YAML version of the document"),e.version=r[0],e.checkLineBreaks=a<2,a!==1&&a!==2&&tg(e,"unsupported YAML version of the document")},"handleYamlDirective"),TAG:o(function(e,t,r){var i,s;r.length!==2&&ie(e,"TAG directive accepts exactly two arguments"),i=r[0],s=r[1],NO.test(i)||ie(e,"ill-formed tag handle (first argument) of the TAG directive"),Ya.call(e.tagMap,i)&&ie(e,'there is a previously declared suffix for "'+i+'" tag handle'),LO.test(s)||ie(e,"ill-formed tag prefix (second argument) of the TAG directive");try{s=decodeURIComponent(s)}catch{ie(e,"tag prefix is malformed: "+s)}e.tagMap[i]=s},"handleTagDirective")};function Ka(n,e,t,r){var i,s,a,c;if(e<t){if(c=n.input.slice(e,t),r)for(i=0,s=c.length;i<s;i+=1)a=c.charCodeAt(i),a===9||32<=a&&a<=1114111||ie(n,"expected valid JSON character");else pz.test(c)&&ie(n,"the stream contains non-printable characters");n.result+=c}}o(Ka,"captureSegment");function tO(n,e,t,r){var i,s,a,c;for(pr.isObject(t)||ie(n,"cannot merge mappings; the provided source object is unacceptable"),i=Object.keys(t),a=0,c=i.length;a<c;a+=1)s=i[a],Ya.call(e,s)||(kO(e,s,t[s]),r[s]=!0)}o(tO,"mergeMappings");function Nl(n,e,t,r,i,s,a,c,l){var u,f;if(Array.isArray(i))for(i=Array.prototype.slice.call(i),u=0,f=i.length;u<f;u+=1)Array.isArray(i[u])&&ie(n,"nested arrays are not supported inside keys"),typeof i=="object"&&JR(i[u])==="[object Object]"&&(i[u]="[object Object]");if(typeof i=="object"&&JR(i)==="[object Object]"&&(i="[object Object]"),i=String(i),e===null&&(e={}),r==="tag:yaml.org,2002:merge")if(Array.isArray(s))for(u=0,f=s.length;u<f;u+=1)tO(n,e,s[u],t);else tO(n,e,s,t);else!n.json&&!Ya.call(t,i)&&Ya.call(e,i)&&(n.line=a||n.line,n.lineStart=c||n.lineStart,n.position=l||n.position,ie(n,"duplicated mapping key")),kO(e,i,s),delete t[i];return e}o(Nl,"storeMappingPair");function _w(n){var e;e=n.input.charCodeAt(n.position),e===10?n.position++:e===13?(n.position++,n.input.charCodeAt(n.position)===10&&n.position++):ie(n,"a line break is expected"),n.line+=1,n.lineStart=n.position,n.firstTabInLine=-1}o(_w,"readLineBreak");function ir(n,e,t){for(var r=0,i=n.input.charCodeAt(n.position);i!==0;){for(;Yo(i);)i===9&&n.firstTabInLine===-1&&(n.firstTabInLine=n.position),i=n.input.charCodeAt(++n.position);if(e&&i===35)do i=n.input.charCodeAt(++n.position);while(i!==10&&i!==13&&i!==0);if(As(i))for(_w(n),i=n.input.charCodeAt(n.position),r++,n.lineIndent=0;i===32;)n.lineIndent++,i=n.input.charCodeAt(++n.position);else break}return t!==-1&&r!==0&&n.lineIndent<t&&tg(n,"deficient indentation"),r}o(ir,"skipSeparationSpace");function ig(n){var e=n.position,t;return t=n.input.charCodeAt(e),!!((t===45||t===46)&&t===n.input.charCodeAt(e+1)&&t===n.input.charCodeAt(e+2)&&(e+=3,t=n.input.charCodeAt(e),t===0||Pn(t)))}o(ig,"testDocumentSeparator");function Sw(n,e){e===1?n.result+=" ":e>1&&(n.result+=pr.repeat(`
472
- `,e-1))}o(Sw,"writeFoldedLines");function wz(n,e,t){var r,i,s,a,c,l,u,f,d=n.kind,h=n.result,p;if(p=n.input.charCodeAt(n.position),Pn(p)||Dl(p)||p===35||p===38||p===42||p===33||p===124||p===62||p===39||p===34||p===37||p===64||p===96||(p===63||p===45)&&(i=n.input.charCodeAt(n.position+1),Pn(i)||t&&Dl(i)))return!1;for(n.kind="scalar",n.result="",s=a=n.position,c=!1;p!==0;){if(p===58){if(i=n.input.charCodeAt(n.position+1),Pn(i)||t&&Dl(i))break}else if(p===35){if(r=n.input.charCodeAt(n.position-1),Pn(r))break}else{if(n.position===n.lineStart&&ig(n)||t&&Dl(p))break;if(As(p))if(l=n.line,u=n.lineStart,f=n.lineIndent,ir(n,!1,-1),n.lineIndent>=e){c=!0,p=n.input.charCodeAt(n.position);continue}else{n.position=a,n.line=l,n.lineStart=u,n.lineIndent=f;break}}c&&(Ka(n,s,a,!1),Sw(n,n.line-l),s=a=n.position,c=!1),Yo(p)||(a=n.position+1),p=n.input.charCodeAt(++n.position)}return Ka(n,s,a,!1),n.result?!0:(n.kind=d,n.result=h,!1)}o(wz,"readPlainScalar");function Ez(n,e){var t,r,i;if(t=n.input.charCodeAt(n.position),t!==39)return!1;for(n.kind="scalar",n.result="",n.position++,r=i=n.position;(t=n.input.charCodeAt(n.position))!==0;)if(t===39)if(Ka(n,r,n.position,!0),t=n.input.charCodeAt(++n.position),t===39)r=n.position,n.position++,i=n.position;else return!0;else As(t)?(Ka(n,r,i,!0),Sw(n,ir(n,!1,e)),r=i=n.position):n.position===n.lineStart&&ig(n)?ie(n,"unexpected end of the document within a single quoted scalar"):(n.position++,i=n.position);ie(n,"unexpected end of the stream within a single quoted scalar")}o(Ez,"readSingleQuotedScalar");function Tz(n,e){var t,r,i,s,a,c;if(c=n.input.charCodeAt(n.position),c!==34)return!1;for(n.kind="scalar",n.result="",n.position++,t=r=n.position;(c=n.input.charCodeAt(n.position))!==0;){if(c===34)return Ka(n,t,n.position,!0),n.position++,!0;if(c===92){if(Ka(n,t,n.position,!0),c=n.input.charCodeAt(++n.position),As(c))ir(n,!1,e);else if(c<256&&MO[c])n.result+=jO[c],n.position++;else if((a=_z(c))>0){for(i=a,s=0;i>0;i--)c=n.input.charCodeAt(++n.position),(a=yz(c))>=0?s=(s<<4)+a:ie(n,"expected hexadecimal character");n.result+=bz(s),n.position++}else ie(n,"unknown escape sequence");t=r=n.position}else As(c)?(Ka(n,t,r,!0),Sw(n,ir(n,!1,e)),t=r=n.position):n.position===n.lineStart&&ig(n)?ie(n,"unexpected end of the document within a double quoted scalar"):(n.position++,r=n.position)}ie(n,"unexpected end of the stream within a double quoted scalar")}o(Tz,"readDoubleQuotedScalar");function Az(n,e){var t=!0,r,i,s,a=n.tag,c,l=n.anchor,u,f,d,h,p,y=Object.create(null),b,w,v,T;if(T=n.input.charCodeAt(n.position),T===91)f=93,p=!1,c=[];else if(T===123)f=125,p=!0,c={};else return!1;for(n.anchor!==null&&(n.anchorMap[n.anchor]=c),T=n.input.charCodeAt(++n.position);T!==0;){if(ir(n,!0,e),T=n.input.charCodeAt(n.position),T===f)return n.position++,n.tag=a,n.anchor=l,n.kind=p?"mapping":"sequence",n.result=c,!0;t?T===44&&ie(n,"expected the node content, but found ','"):ie(n,"missed comma between flow collection entries"),w=b=v=null,d=h=!1,T===63&&(u=n.input.charCodeAt(n.position+1),Pn(u)&&(d=h=!0,n.position++,ir(n,!0,e))),r=n.line,i=n.lineStart,s=n.position,Ll(n,e,Zm,!1,!0),w=n.tag,b=n.result,ir(n,!0,e),T=n.input.charCodeAt(n.position),(h||n.line===r)&&T===58&&(d=!0,T=n.input.charCodeAt(++n.position),ir(n,!0,e),Ll(n,e,Zm,!1,!0),v=n.result),p?Nl(n,c,y,w,b,v,r,i,s):d?c.push(Nl(n,null,y,w,b,v,r,i,s)):c.push(b),ir(n,!0,e),T=n.input.charCodeAt(n.position),T===44?(t=!0,T=n.input.charCodeAt(++n.position)):t=!1}ie(n,"unexpected end of the stream within a flow collection")}o(Az,"readFlowCollection");function xz(n,e){var t,r,i=uw,s=!1,a=!1,c=e,l=0,u=!1,f,d;if(d=n.input.charCodeAt(n.position),d===124)r=!1;else if(d===62)r=!0;else return!1;for(n.kind="scalar",n.result="";d!==0;)if(d=n.input.charCodeAt(++n.position),d===43||d===45)uw===i?i=d===43?XR:hz:ie(n,"repeat of a chomping mode identifier");else if((f=Sz(d))>=0)f===0?ie(n,"bad explicit indentation width of a block scalar; it cannot be less than one"):a?ie(n,"repeat of an indentation width identifier"):(c=e+f-1,a=!0);else break;if(Yo(d)){do d=n.input.charCodeAt(++n.position);while(Yo(d));if(d===35)do d=n.input.charCodeAt(++n.position);while(!As(d)&&d!==0)}for(;d!==0;){for(_w(n),n.lineIndent=0,d=n.input.charCodeAt(n.position);(!a||n.lineIndent<c)&&d===32;)n.lineIndent++,d=n.input.charCodeAt(++n.position);if(!a&&n.lineIndent>c&&(c=n.lineIndent),As(d)){l++;continue}if(n.lineIndent<c){i===XR?n.result+=pr.repeat(`
470
+ \r`;function ZG(n){if(n===null)return!1;var e,t,r=0,i=n.length,s=gw;for(t=0;t<i;t++)if(e=s.indexOf(n.charAt(t)),!(e>64)){if(e<0)return!1;r+=6}return r%8===0}o(ZG,"resolveYamlBinary");function ez(n){var e,t,r=n.replace(/[\r\n=]/g,""),i=r.length,s=gw,a=0,c=[];for(e=0;e<i;e++)e%4===0&&e&&(c.push(a>>16&255),c.push(a>>8&255),c.push(a&255)),a=a<<6|s.indexOf(r.charAt(e));return t=i%4*6,t===0?(c.push(a>>16&255),c.push(a>>8&255),c.push(a&255)):t===18?(c.push(a>>10&255),c.push(a>>2&255)):t===12&&c.push(a>>4&255),new Uint8Array(c)}o(ez,"constructYamlBinary");function tz(n){var e="",t=0,r,i,s=n.length,a=gw;for(r=0;r<s;r++)r%3===0&&r&&(e+=a[t>>18&63],e+=a[t>>12&63],e+=a[t>>6&63],e+=a[t&63]),t=(t<<8)+n[r];return i=s%3,i===0?(e+=a[t>>18&63],e+=a[t>>12&63],e+=a[t>>6&63],e+=a[t&63]):i===2?(e+=a[t>>10&63],e+=a[t>>4&63],e+=a[t<<2&63],e+=a[64]):i===1&&(e+=a[t>>2&63],e+=a[t<<4&63],e+=a[64],e+=a[64]),e}o(tz,"representYamlBinary");function rz(n){return Object.prototype.toString.call(n)==="[object Uint8Array]"}o(rz,"isBinary");var CO=new Mr("tag:yaml.org,2002:binary",{kind:"scalar",resolve:ZG,construct:ez,predicate:rz,represent:tz}),nz=Object.prototype.hasOwnProperty,iz=Object.prototype.toString;function sz(n){if(n===null)return!0;var e=[],t,r,i,s,a,c=n;for(t=0,r=c.length;t<r;t+=1){if(i=c[t],a=!1,iz.call(i)!=="[object Object]")return!1;for(s in i)if(nz.call(i,s))if(!a)a=!0;else return!1;if(!a)return!1;if(e.indexOf(s)===-1)e.push(s);else return!1}return!0}o(sz,"resolveYamlOmap");function az(n){return n!==null?n:[]}o(az,"constructYamlOmap");var RO=new Mr("tag:yaml.org,2002:omap",{kind:"sequence",resolve:sz,construct:az}),oz=Object.prototype.toString;function cz(n){if(n===null)return!0;var e,t,r,i,s,a=n;for(s=new Array(a.length),e=0,t=a.length;e<t;e+=1){if(r=a[e],oz.call(r)!=="[object Object]"||(i=Object.keys(r),i.length!==1))return!1;s[e]=[i[0],r[i[0]]]}return!0}o(cz,"resolveYamlPairs");function lz(n){if(n===null)return[];var e,t,r,i,s,a=n;for(s=new Array(a.length),e=0,t=a.length;e<t;e+=1)r=a[e],i=Object.keys(r),s[e]=[i[0],r[i[0]]];return s}o(lz,"constructYamlPairs");var OO=new Mr("tag:yaml.org,2002:pairs",{kind:"sequence",resolve:cz,construct:lz}),uz=Object.prototype.hasOwnProperty;function fz(n){if(n===null)return!0;var e,t=n;for(e in t)if(uz.call(t,e)&&t[e]!==null)return!1;return!0}o(fz,"resolveYamlSet");function dz(n){return n!==null?n:{}}o(dz,"constructYamlSet");var PO=new Mr("tag:yaml.org,2002:set",{kind:"mapping",resolve:fz,construct:dz}),yw=EO.extend({implicit:[xO,IO],explicit:[CO,RO,OO,PO]}),Xa=Object.prototype.hasOwnProperty,Zm=1,FO=2,DO=3,eg=4,uw=1,hz=2,XR=3,pz=/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,mz=/[\x85\u2028\u2029]/,gz=/[,\[\]\{\}]/,NO=/^(?:!|!!|![a-z\-]+!)$/i,LO=/^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;function JR(n){return Object.prototype.toString.call(n)}o(JR,"_class");function As(n){return n===10||n===13}o(As,"is_EOL");function Yo(n){return n===9||n===32}o(Yo,"is_WHITE_SPACE");function Pn(n){return n===9||n===32||n===10||n===13}o(Pn,"is_WS_OR_EOL");function Dl(n){return n===44||n===91||n===93||n===123||n===125}o(Dl,"is_FLOW_INDICATOR");function yz(n){var e;return 48<=n&&n<=57?n-48:(e=n|32,97<=e&&e<=102?e-97+10:-1)}o(yz,"fromHexCode");function _z(n){return n===120?2:n===117?4:n===85?8:0}o(_z,"escapedHexLen");function Sz(n){return 48<=n&&n<=57?n-48:-1}o(Sz,"fromDecimalCode");function ZR(n){return n===48?"\0":n===97?"\x07":n===98?"\b":n===116||n===9?" ":n===110?`
471
+ `:n===118?"\v":n===102?"\f":n===114?"\r":n===101?"\x1B":n===32?" ":n===34?'"':n===47?"/":n===92?"\\":n===78?"\x85":n===95?"\xA0":n===76?"\u2028":n===80?"\u2029":""}o(ZR,"simpleEscapeSequence");function bz(n){return n<=65535?String.fromCharCode(n):String.fromCharCode((n-65536>>10)+55296,(n-65536&1023)+56320)}o(bz,"charFromCodepoint");function kO(n,e,t){e==="__proto__"?Object.defineProperty(n,e,{configurable:!0,enumerable:!0,writable:!0,value:t}):n[e]=t}o(kO,"setProperty");var MO=new Array(256),jO=new Array(256);for(Ko=0;Ko<256;Ko++)MO[Ko]=ZR(Ko)?1:0,jO[Ko]=ZR(Ko);var Ko;function vz(n,e){this.input=n,this.filename=e.filename||null,this.schema=e.schema||yw,this.onWarning=e.onWarning||null,this.legacy=e.legacy||!1,this.json=e.json||!1,this.listener=e.listener||null,this.implicitTypes=this.schema.compiledImplicit,this.typeMap=this.schema.compiledTypeMap,this.length=n.length,this.position=0,this.line=0,this.lineStart=0,this.lineIndent=0,this.firstTabInLine=-1,this.documents=[]}o(vz,"State$1");function $O(n,e){var t={name:n.filename,buffer:n.input.slice(0,-1),position:n.position,line:n.line,column:n.position-n.lineStart};return t.snippet=AG(t),new yn(e,t)}o($O,"generateError");function ie(n,e){throw $O(n,e)}o(ie,"throwError");function tg(n,e){n.onWarning&&n.onWarning.call(null,$O(n,e))}o(tg,"throwWarning");var eO={YAML:o(function(e,t,r){var i,s,a;e.version!==null&&ie(e,"duplication of %YAML directive"),r.length!==1&&ie(e,"YAML directive accepts exactly one argument"),i=/^([0-9]+)\.([0-9]+)$/.exec(r[0]),i===null&&ie(e,"ill-formed argument of the YAML directive"),s=parseInt(i[1],10),a=parseInt(i[2],10),s!==1&&ie(e,"unacceptable YAML version of the document"),e.version=r[0],e.checkLineBreaks=a<2,a!==1&&a!==2&&tg(e,"unsupported YAML version of the document")},"handleYamlDirective"),TAG:o(function(e,t,r){var i,s;r.length!==2&&ie(e,"TAG directive accepts exactly two arguments"),i=r[0],s=r[1],NO.test(i)||ie(e,"ill-formed tag handle (first argument) of the TAG directive"),Xa.call(e.tagMap,i)&&ie(e,'there is a previously declared suffix for "'+i+'" tag handle'),LO.test(s)||ie(e,"ill-formed tag prefix (second argument) of the TAG directive");try{s=decodeURIComponent(s)}catch{ie(e,"tag prefix is malformed: "+s)}e.tagMap[i]=s},"handleTagDirective")};function Ya(n,e,t,r){var i,s,a,c;if(e<t){if(c=n.input.slice(e,t),r)for(i=0,s=c.length;i<s;i+=1)a=c.charCodeAt(i),a===9||32<=a&&a<=1114111||ie(n,"expected valid JSON character");else pz.test(c)&&ie(n,"the stream contains non-printable characters");n.result+=c}}o(Ya,"captureSegment");function tO(n,e,t,r){var i,s,a,c;for(pr.isObject(t)||ie(n,"cannot merge mappings; the provided source object is unacceptable"),i=Object.keys(t),a=0,c=i.length;a<c;a+=1)s=i[a],Xa.call(e,s)||(kO(e,s,t[s]),r[s]=!0)}o(tO,"mergeMappings");function Nl(n,e,t,r,i,s,a,c,l){var u,f;if(Array.isArray(i))for(i=Array.prototype.slice.call(i),u=0,f=i.length;u<f;u+=1)Array.isArray(i[u])&&ie(n,"nested arrays are not supported inside keys"),typeof i=="object"&&JR(i[u])==="[object Object]"&&(i[u]="[object Object]");if(typeof i=="object"&&JR(i)==="[object Object]"&&(i="[object Object]"),i=String(i),e===null&&(e={}),r==="tag:yaml.org,2002:merge")if(Array.isArray(s))for(u=0,f=s.length;u<f;u+=1)tO(n,e,s[u],t);else tO(n,e,s,t);else!n.json&&!Xa.call(t,i)&&Xa.call(e,i)&&(n.line=a||n.line,n.lineStart=c||n.lineStart,n.position=l||n.position,ie(n,"duplicated mapping key")),kO(e,i,s),delete t[i];return e}o(Nl,"storeMappingPair");function _w(n){var e;e=n.input.charCodeAt(n.position),e===10?n.position++:e===13?(n.position++,n.input.charCodeAt(n.position)===10&&n.position++):ie(n,"a line break is expected"),n.line+=1,n.lineStart=n.position,n.firstTabInLine=-1}o(_w,"readLineBreak");function ir(n,e,t){for(var r=0,i=n.input.charCodeAt(n.position);i!==0;){for(;Yo(i);)i===9&&n.firstTabInLine===-1&&(n.firstTabInLine=n.position),i=n.input.charCodeAt(++n.position);if(e&&i===35)do i=n.input.charCodeAt(++n.position);while(i!==10&&i!==13&&i!==0);if(As(i))for(_w(n),i=n.input.charCodeAt(n.position),r++,n.lineIndent=0;i===32;)n.lineIndent++,i=n.input.charCodeAt(++n.position);else break}return t!==-1&&r!==0&&n.lineIndent<t&&tg(n,"deficient indentation"),r}o(ir,"skipSeparationSpace");function ig(n){var e=n.position,t;return t=n.input.charCodeAt(e),!!((t===45||t===46)&&t===n.input.charCodeAt(e+1)&&t===n.input.charCodeAt(e+2)&&(e+=3,t=n.input.charCodeAt(e),t===0||Pn(t)))}o(ig,"testDocumentSeparator");function Sw(n,e){e===1?n.result+=" ":e>1&&(n.result+=pr.repeat(`
472
+ `,e-1))}o(Sw,"writeFoldedLines");function wz(n,e,t){var r,i,s,a,c,l,u,f,d=n.kind,h=n.result,p;if(p=n.input.charCodeAt(n.position),Pn(p)||Dl(p)||p===35||p===38||p===42||p===33||p===124||p===62||p===39||p===34||p===37||p===64||p===96||(p===63||p===45)&&(i=n.input.charCodeAt(n.position+1),Pn(i)||t&&Dl(i)))return!1;for(n.kind="scalar",n.result="",s=a=n.position,c=!1;p!==0;){if(p===58){if(i=n.input.charCodeAt(n.position+1),Pn(i)||t&&Dl(i))break}else if(p===35){if(r=n.input.charCodeAt(n.position-1),Pn(r))break}else{if(n.position===n.lineStart&&ig(n)||t&&Dl(p))break;if(As(p))if(l=n.line,u=n.lineStart,f=n.lineIndent,ir(n,!1,-1),n.lineIndent>=e){c=!0,p=n.input.charCodeAt(n.position);continue}else{n.position=a,n.line=l,n.lineStart=u,n.lineIndent=f;break}}c&&(Ya(n,s,a,!1),Sw(n,n.line-l),s=a=n.position,c=!1),Yo(p)||(a=n.position+1),p=n.input.charCodeAt(++n.position)}return Ya(n,s,a,!1),n.result?!0:(n.kind=d,n.result=h,!1)}o(wz,"readPlainScalar");function Ez(n,e){var t,r,i;if(t=n.input.charCodeAt(n.position),t!==39)return!1;for(n.kind="scalar",n.result="",n.position++,r=i=n.position;(t=n.input.charCodeAt(n.position))!==0;)if(t===39)if(Ya(n,r,n.position,!0),t=n.input.charCodeAt(++n.position),t===39)r=n.position,n.position++,i=n.position;else return!0;else As(t)?(Ya(n,r,i,!0),Sw(n,ir(n,!1,e)),r=i=n.position):n.position===n.lineStart&&ig(n)?ie(n,"unexpected end of the document within a single quoted scalar"):(n.position++,i=n.position);ie(n,"unexpected end of the stream within a single quoted scalar")}o(Ez,"readSingleQuotedScalar");function Tz(n,e){var t,r,i,s,a,c;if(c=n.input.charCodeAt(n.position),c!==34)return!1;for(n.kind="scalar",n.result="",n.position++,t=r=n.position;(c=n.input.charCodeAt(n.position))!==0;){if(c===34)return Ya(n,t,n.position,!0),n.position++,!0;if(c===92){if(Ya(n,t,n.position,!0),c=n.input.charCodeAt(++n.position),As(c))ir(n,!1,e);else if(c<256&&MO[c])n.result+=jO[c],n.position++;else if((a=_z(c))>0){for(i=a,s=0;i>0;i--)c=n.input.charCodeAt(++n.position),(a=yz(c))>=0?s=(s<<4)+a:ie(n,"expected hexadecimal character");n.result+=bz(s),n.position++}else ie(n,"unknown escape sequence");t=r=n.position}else As(c)?(Ya(n,t,r,!0),Sw(n,ir(n,!1,e)),t=r=n.position):n.position===n.lineStart&&ig(n)?ie(n,"unexpected end of the document within a double quoted scalar"):(n.position++,r=n.position)}ie(n,"unexpected end of the stream within a double quoted scalar")}o(Tz,"readDoubleQuotedScalar");function Az(n,e){var t=!0,r,i,s,a=n.tag,c,l=n.anchor,u,f,d,h,p,y=Object.create(null),b,w,v,T;if(T=n.input.charCodeAt(n.position),T===91)f=93,p=!1,c=[];else if(T===123)f=125,p=!0,c={};else return!1;for(n.anchor!==null&&(n.anchorMap[n.anchor]=c),T=n.input.charCodeAt(++n.position);T!==0;){if(ir(n,!0,e),T=n.input.charCodeAt(n.position),T===f)return n.position++,n.tag=a,n.anchor=l,n.kind=p?"mapping":"sequence",n.result=c,!0;t?T===44&&ie(n,"expected the node content, but found ','"):ie(n,"missed comma between flow collection entries"),w=b=v=null,d=h=!1,T===63&&(u=n.input.charCodeAt(n.position+1),Pn(u)&&(d=h=!0,n.position++,ir(n,!0,e))),r=n.line,i=n.lineStart,s=n.position,Ll(n,e,Zm,!1,!0),w=n.tag,b=n.result,ir(n,!0,e),T=n.input.charCodeAt(n.position),(h||n.line===r)&&T===58&&(d=!0,T=n.input.charCodeAt(++n.position),ir(n,!0,e),Ll(n,e,Zm,!1,!0),v=n.result),p?Nl(n,c,y,w,b,v,r,i,s):d?c.push(Nl(n,null,y,w,b,v,r,i,s)):c.push(b),ir(n,!0,e),T=n.input.charCodeAt(n.position),T===44?(t=!0,T=n.input.charCodeAt(++n.position)):t=!1}ie(n,"unexpected end of the stream within a flow collection")}o(Az,"readFlowCollection");function xz(n,e){var t,r,i=uw,s=!1,a=!1,c=e,l=0,u=!1,f,d;if(d=n.input.charCodeAt(n.position),d===124)r=!1;else if(d===62)r=!0;else return!1;for(n.kind="scalar",n.result="";d!==0;)if(d=n.input.charCodeAt(++n.position),d===43||d===45)uw===i?i=d===43?XR:hz:ie(n,"repeat of a chomping mode identifier");else if((f=Sz(d))>=0)f===0?ie(n,"bad explicit indentation width of a block scalar; it cannot be less than one"):a?ie(n,"repeat of an indentation width identifier"):(c=e+f-1,a=!0);else break;if(Yo(d)){do d=n.input.charCodeAt(++n.position);while(Yo(d));if(d===35)do d=n.input.charCodeAt(++n.position);while(!As(d)&&d!==0)}for(;d!==0;){for(_w(n),n.lineIndent=0,d=n.input.charCodeAt(n.position);(!a||n.lineIndent<c)&&d===32;)n.lineIndent++,d=n.input.charCodeAt(++n.position);if(!a&&n.lineIndent>c&&(c=n.lineIndent),As(d)){l++;continue}if(n.lineIndent<c){i===XR?n.result+=pr.repeat(`
473
473
  `,s?1+l:l):i===uw&&s&&(n.result+=`
474
474
  `);break}for(r?Yo(d)?(u=!0,n.result+=pr.repeat(`
475
475
  `,s?1+l:l)):u?(u=!1,n.result+=pr.repeat(`
476
476
  `,l+1)):l===0?s&&(n.result+=" "):n.result+=pr.repeat(`
477
477
  `,l):n.result+=pr.repeat(`
478
- `,s?1+l:l),s=!0,a=!0,l=0,t=n.position;!As(d)&&d!==0;)d=n.input.charCodeAt(++n.position);Ka(n,t,n.position,!1)}return!0}o(xz,"readBlockScalar");function rO(n,e){var t,r=n.tag,i=n.anchor,s=[],a,c=!1,l;if(n.firstTabInLine!==-1)return!1;for(n.anchor!==null&&(n.anchorMap[n.anchor]=s),l=n.input.charCodeAt(n.position);l!==0&&(n.firstTabInLine!==-1&&(n.position=n.firstTabInLine,ie(n,"tab characters must not be used in indentation")),!(l!==45||(a=n.input.charCodeAt(n.position+1),!Pn(a))));){if(c=!0,n.position++,ir(n,!0,-1)&&n.lineIndent<=e){s.push(null),l=n.input.charCodeAt(n.position);continue}if(t=n.line,Ll(n,e,DO,!1,!0),s.push(n.result),ir(n,!0,-1),l=n.input.charCodeAt(n.position),(n.line===t||n.lineIndent>e)&&l!==0)ie(n,"bad indentation of a sequence entry");else if(n.lineIndent<e)break}return c?(n.tag=r,n.anchor=i,n.kind="sequence",n.result=s,!0):!1}o(rO,"readBlockSequence");function Iz(n,e,t){var r,i,s,a,c,l,u=n.tag,f=n.anchor,d={},h=Object.create(null),p=null,y=null,b=null,w=!1,v=!1,T;if(n.firstTabInLine!==-1)return!1;for(n.anchor!==null&&(n.anchorMap[n.anchor]=d),T=n.input.charCodeAt(n.position);T!==0;){if(!w&&n.firstTabInLine!==-1&&(n.position=n.firstTabInLine,ie(n,"tab characters must not be used in indentation")),r=n.input.charCodeAt(n.position+1),s=n.line,(T===63||T===58)&&Pn(r))T===63?(w&&(Nl(n,d,h,p,y,null,a,c,l),p=y=b=null),v=!0,w=!0,i=!0):w?(w=!1,i=!0):ie(n,"incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line"),n.position+=1,T=r;else{if(a=n.line,c=n.lineStart,l=n.position,!Ll(n,t,FO,!1,!0))break;if(n.line===s){for(T=n.input.charCodeAt(n.position);Yo(T);)T=n.input.charCodeAt(++n.position);if(T===58)T=n.input.charCodeAt(++n.position),Pn(T)||ie(n,"a whitespace character is expected after the key-value separator within a block mapping"),w&&(Nl(n,d,h,p,y,null,a,c,l),p=y=b=null),v=!0,w=!1,i=!1,p=n.tag,y=n.result;else if(v)ie(n,"can not read an implicit mapping pair; a colon is missed");else return n.tag=u,n.anchor=f,!0}else if(v)ie(n,"can not read a block mapping entry; a multiline key may not be an implicit key");else return n.tag=u,n.anchor=f,!0}if((n.line===s||n.lineIndent>e)&&(w&&(a=n.line,c=n.lineStart,l=n.position),Ll(n,e,eg,!0,i)&&(w?y=n.result:b=n.result),w||(Nl(n,d,h,p,y,b,a,c,l),p=y=b=null),ir(n,!0,-1),T=n.input.charCodeAt(n.position)),(n.line===s||n.lineIndent>e)&&T!==0)ie(n,"bad indentation of a mapping entry");else if(n.lineIndent<e)break}return w&&Nl(n,d,h,p,y,null,a,c,l),v&&(n.tag=u,n.anchor=f,n.kind="mapping",n.result=d),v}o(Iz,"readBlockMapping");function Cz(n){var e,t=!1,r=!1,i,s,a;if(a=n.input.charCodeAt(n.position),a!==33)return!1;if(n.tag!==null&&ie(n,"duplication of a tag property"),a=n.input.charCodeAt(++n.position),a===60?(t=!0,a=n.input.charCodeAt(++n.position)):a===33?(r=!0,i="!!",a=n.input.charCodeAt(++n.position)):i="!",e=n.position,t){do a=n.input.charCodeAt(++n.position);while(a!==0&&a!==62);n.position<n.length?(s=n.input.slice(e,n.position),a=n.input.charCodeAt(++n.position)):ie(n,"unexpected end of the stream within a verbatim tag")}else{for(;a!==0&&!Pn(a);)a===33&&(r?ie(n,"tag suffix cannot contain exclamation marks"):(i=n.input.slice(e-1,n.position+1),NO.test(i)||ie(n,"named tag handle cannot contain such characters"),r=!0,e=n.position+1)),a=n.input.charCodeAt(++n.position);s=n.input.slice(e,n.position),gz.test(s)&&ie(n,"tag suffix cannot contain flow indicator characters")}s&&!LO.test(s)&&ie(n,"tag name cannot contain such characters: "+s);try{s=decodeURIComponent(s)}catch{ie(n,"tag name is malformed: "+s)}return t?n.tag=s:Ya.call(n.tagMap,i)?n.tag=n.tagMap[i]+s:i==="!"?n.tag="!"+s:i==="!!"?n.tag="tag:yaml.org,2002:"+s:ie(n,'undeclared tag handle "'+i+'"'),!0}o(Cz,"readTagProperty");function Rz(n){var e,t;if(t=n.input.charCodeAt(n.position),t!==38)return!1;for(n.anchor!==null&&ie(n,"duplication of an anchor property"),t=n.input.charCodeAt(++n.position),e=n.position;t!==0&&!Pn(t)&&!Dl(t);)t=n.input.charCodeAt(++n.position);return n.position===e&&ie(n,"name of an anchor node must contain at least one character"),n.anchor=n.input.slice(e,n.position),!0}o(Rz,"readAnchorProperty");function Oz(n){var e,t,r;if(r=n.input.charCodeAt(n.position),r!==42)return!1;for(r=n.input.charCodeAt(++n.position),e=n.position;r!==0&&!Pn(r)&&!Dl(r);)r=n.input.charCodeAt(++n.position);return n.position===e&&ie(n,"name of an alias node must contain at least one character"),t=n.input.slice(e,n.position),Ya.call(n.anchorMap,t)||ie(n,'unidentified alias "'+t+'"'),n.result=n.anchorMap[t],ir(n,!0,-1),!0}o(Oz,"readAlias");function Ll(n,e,t,r,i){var s,a,c,l=1,u=!1,f=!1,d,h,p,y,b,w;if(n.listener!==null&&n.listener("open",n),n.tag=null,n.anchor=null,n.kind=null,n.result=null,s=a=c=eg===t||DO===t,r&&ir(n,!0,-1)&&(u=!0,n.lineIndent>e?l=1:n.lineIndent===e?l=0:n.lineIndent<e&&(l=-1)),l===1)for(;Cz(n)||Rz(n);)ir(n,!0,-1)?(u=!0,c=s,n.lineIndent>e?l=1:n.lineIndent===e?l=0:n.lineIndent<e&&(l=-1)):c=!1;if(c&&(c=u||i),(l===1||eg===t)&&(Zm===t||FO===t?b=e:b=e+1,w=n.position-n.lineStart,l===1?c&&(rO(n,w)||Iz(n,w,b))||Az(n,b)?f=!0:(a&&xz(n,b)||Ez(n,b)||Tz(n,b)?f=!0:Oz(n)?(f=!0,(n.tag!==null||n.anchor!==null)&&ie(n,"alias node should not have any properties")):wz(n,b,Zm===t)&&(f=!0,n.tag===null&&(n.tag="?")),n.anchor!==null&&(n.anchorMap[n.anchor]=n.result)):l===0&&(f=c&&rO(n,w))),n.tag===null)n.anchor!==null&&(n.anchorMap[n.anchor]=n.result);else if(n.tag==="?"){for(n.result!==null&&n.kind!=="scalar"&&ie(n,'unacceptable node kind for !<?> tag; it should be "scalar", not "'+n.kind+'"'),d=0,h=n.implicitTypes.length;d<h;d+=1)if(y=n.implicitTypes[d],y.resolve(n.result)){n.result=y.construct(n.result),n.tag=y.tag,n.anchor!==null&&(n.anchorMap[n.anchor]=n.result);break}}else if(n.tag!=="!"){if(Ya.call(n.typeMap[n.kind||"fallback"],n.tag))y=n.typeMap[n.kind||"fallback"][n.tag];else for(y=null,p=n.typeMap.multi[n.kind||"fallback"],d=0,h=p.length;d<h;d+=1)if(n.tag.slice(0,p[d].tag.length)===p[d].tag){y=p[d];break}y||ie(n,"unknown tag !<"+n.tag+">"),n.result!==null&&y.kind!==n.kind&&ie(n,"unacceptable node kind for !<"+n.tag+'> tag; it should be "'+y.kind+'", not "'+n.kind+'"'),y.resolve(n.result,n.tag)?(n.result=y.construct(n.result,n.tag),n.anchor!==null&&(n.anchorMap[n.anchor]=n.result)):ie(n,"cannot resolve a node with !<"+n.tag+"> explicit tag")}return n.listener!==null&&n.listener("close",n),n.tag!==null||n.anchor!==null||f}o(Ll,"composeNode");function Pz(n){var e=n.position,t,r,i,s=!1,a;for(n.version=null,n.checkLineBreaks=n.legacy,n.tagMap=Object.create(null),n.anchorMap=Object.create(null);(a=n.input.charCodeAt(n.position))!==0&&(ir(n,!0,-1),a=n.input.charCodeAt(n.position),!(n.lineIndent>0||a!==37));){for(s=!0,a=n.input.charCodeAt(++n.position),t=n.position;a!==0&&!Pn(a);)a=n.input.charCodeAt(++n.position);for(r=n.input.slice(t,n.position),i=[],r.length<1&&ie(n,"directive name must not be less than one character in length");a!==0;){for(;Yo(a);)a=n.input.charCodeAt(++n.position);if(a===35){do a=n.input.charCodeAt(++n.position);while(a!==0&&!As(a));break}if(As(a))break;for(t=n.position;a!==0&&!Pn(a);)a=n.input.charCodeAt(++n.position);i.push(n.input.slice(t,n.position))}a!==0&&_w(n),Ya.call(eO,r)?eO[r](n,r,i):tg(n,'unknown document directive "'+r+'"')}if(ir(n,!0,-1),n.lineIndent===0&&n.input.charCodeAt(n.position)===45&&n.input.charCodeAt(n.position+1)===45&&n.input.charCodeAt(n.position+2)===45?(n.position+=3,ir(n,!0,-1)):s&&ie(n,"directives end mark is expected"),Ll(n,n.lineIndent-1,eg,!1,!0),ir(n,!0,-1),n.checkLineBreaks&&mz.test(n.input.slice(e,n.position))&&tg(n,"non-ASCII line breaks are interpreted as content"),n.documents.push(n.result),n.position===n.lineStart&&ig(n)){n.input.charCodeAt(n.position)===46&&(n.position+=3,ir(n,!0,-1));return}if(n.position<n.length-1)ie(n,"end of the stream or a document separator is expected");else return}o(Pz,"readDocument");function VO(n,e){n=String(n),e=e||{},n.length!==0&&(n.charCodeAt(n.length-1)!==10&&n.charCodeAt(n.length-1)!==13&&(n+=`
478
+ `,s?1+l:l),s=!0,a=!0,l=0,t=n.position;!As(d)&&d!==0;)d=n.input.charCodeAt(++n.position);Ya(n,t,n.position,!1)}return!0}o(xz,"readBlockScalar");function rO(n,e){var t,r=n.tag,i=n.anchor,s=[],a,c=!1,l;if(n.firstTabInLine!==-1)return!1;for(n.anchor!==null&&(n.anchorMap[n.anchor]=s),l=n.input.charCodeAt(n.position);l!==0&&(n.firstTabInLine!==-1&&(n.position=n.firstTabInLine,ie(n,"tab characters must not be used in indentation")),!(l!==45||(a=n.input.charCodeAt(n.position+1),!Pn(a))));){if(c=!0,n.position++,ir(n,!0,-1)&&n.lineIndent<=e){s.push(null),l=n.input.charCodeAt(n.position);continue}if(t=n.line,Ll(n,e,DO,!1,!0),s.push(n.result),ir(n,!0,-1),l=n.input.charCodeAt(n.position),(n.line===t||n.lineIndent>e)&&l!==0)ie(n,"bad indentation of a sequence entry");else if(n.lineIndent<e)break}return c?(n.tag=r,n.anchor=i,n.kind="sequence",n.result=s,!0):!1}o(rO,"readBlockSequence");function Iz(n,e,t){var r,i,s,a,c,l,u=n.tag,f=n.anchor,d={},h=Object.create(null),p=null,y=null,b=null,w=!1,v=!1,T;if(n.firstTabInLine!==-1)return!1;for(n.anchor!==null&&(n.anchorMap[n.anchor]=d),T=n.input.charCodeAt(n.position);T!==0;){if(!w&&n.firstTabInLine!==-1&&(n.position=n.firstTabInLine,ie(n,"tab characters must not be used in indentation")),r=n.input.charCodeAt(n.position+1),s=n.line,(T===63||T===58)&&Pn(r))T===63?(w&&(Nl(n,d,h,p,y,null,a,c,l),p=y=b=null),v=!0,w=!0,i=!0):w?(w=!1,i=!0):ie(n,"incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line"),n.position+=1,T=r;else{if(a=n.line,c=n.lineStart,l=n.position,!Ll(n,t,FO,!1,!0))break;if(n.line===s){for(T=n.input.charCodeAt(n.position);Yo(T);)T=n.input.charCodeAt(++n.position);if(T===58)T=n.input.charCodeAt(++n.position),Pn(T)||ie(n,"a whitespace character is expected after the key-value separator within a block mapping"),w&&(Nl(n,d,h,p,y,null,a,c,l),p=y=b=null),v=!0,w=!1,i=!1,p=n.tag,y=n.result;else if(v)ie(n,"can not read an implicit mapping pair; a colon is missed");else return n.tag=u,n.anchor=f,!0}else if(v)ie(n,"can not read a block mapping entry; a multiline key may not be an implicit key");else return n.tag=u,n.anchor=f,!0}if((n.line===s||n.lineIndent>e)&&(w&&(a=n.line,c=n.lineStart,l=n.position),Ll(n,e,eg,!0,i)&&(w?y=n.result:b=n.result),w||(Nl(n,d,h,p,y,b,a,c,l),p=y=b=null),ir(n,!0,-1),T=n.input.charCodeAt(n.position)),(n.line===s||n.lineIndent>e)&&T!==0)ie(n,"bad indentation of a mapping entry");else if(n.lineIndent<e)break}return w&&Nl(n,d,h,p,y,null,a,c,l),v&&(n.tag=u,n.anchor=f,n.kind="mapping",n.result=d),v}o(Iz,"readBlockMapping");function Cz(n){var e,t=!1,r=!1,i,s,a;if(a=n.input.charCodeAt(n.position),a!==33)return!1;if(n.tag!==null&&ie(n,"duplication of a tag property"),a=n.input.charCodeAt(++n.position),a===60?(t=!0,a=n.input.charCodeAt(++n.position)):a===33?(r=!0,i="!!",a=n.input.charCodeAt(++n.position)):i="!",e=n.position,t){do a=n.input.charCodeAt(++n.position);while(a!==0&&a!==62);n.position<n.length?(s=n.input.slice(e,n.position),a=n.input.charCodeAt(++n.position)):ie(n,"unexpected end of the stream within a verbatim tag")}else{for(;a!==0&&!Pn(a);)a===33&&(r?ie(n,"tag suffix cannot contain exclamation marks"):(i=n.input.slice(e-1,n.position+1),NO.test(i)||ie(n,"named tag handle cannot contain such characters"),r=!0,e=n.position+1)),a=n.input.charCodeAt(++n.position);s=n.input.slice(e,n.position),gz.test(s)&&ie(n,"tag suffix cannot contain flow indicator characters")}s&&!LO.test(s)&&ie(n,"tag name cannot contain such characters: "+s);try{s=decodeURIComponent(s)}catch{ie(n,"tag name is malformed: "+s)}return t?n.tag=s:Xa.call(n.tagMap,i)?n.tag=n.tagMap[i]+s:i==="!"?n.tag="!"+s:i==="!!"?n.tag="tag:yaml.org,2002:"+s:ie(n,'undeclared tag handle "'+i+'"'),!0}o(Cz,"readTagProperty");function Rz(n){var e,t;if(t=n.input.charCodeAt(n.position),t!==38)return!1;for(n.anchor!==null&&ie(n,"duplication of an anchor property"),t=n.input.charCodeAt(++n.position),e=n.position;t!==0&&!Pn(t)&&!Dl(t);)t=n.input.charCodeAt(++n.position);return n.position===e&&ie(n,"name of an anchor node must contain at least one character"),n.anchor=n.input.slice(e,n.position),!0}o(Rz,"readAnchorProperty");function Oz(n){var e,t,r;if(r=n.input.charCodeAt(n.position),r!==42)return!1;for(r=n.input.charCodeAt(++n.position),e=n.position;r!==0&&!Pn(r)&&!Dl(r);)r=n.input.charCodeAt(++n.position);return n.position===e&&ie(n,"name of an alias node must contain at least one character"),t=n.input.slice(e,n.position),Xa.call(n.anchorMap,t)||ie(n,'unidentified alias "'+t+'"'),n.result=n.anchorMap[t],ir(n,!0,-1),!0}o(Oz,"readAlias");function Ll(n,e,t,r,i){var s,a,c,l=1,u=!1,f=!1,d,h,p,y,b,w;if(n.listener!==null&&n.listener("open",n),n.tag=null,n.anchor=null,n.kind=null,n.result=null,s=a=c=eg===t||DO===t,r&&ir(n,!0,-1)&&(u=!0,n.lineIndent>e?l=1:n.lineIndent===e?l=0:n.lineIndent<e&&(l=-1)),l===1)for(;Cz(n)||Rz(n);)ir(n,!0,-1)?(u=!0,c=s,n.lineIndent>e?l=1:n.lineIndent===e?l=0:n.lineIndent<e&&(l=-1)):c=!1;if(c&&(c=u||i),(l===1||eg===t)&&(Zm===t||FO===t?b=e:b=e+1,w=n.position-n.lineStart,l===1?c&&(rO(n,w)||Iz(n,w,b))||Az(n,b)?f=!0:(a&&xz(n,b)||Ez(n,b)||Tz(n,b)?f=!0:Oz(n)?(f=!0,(n.tag!==null||n.anchor!==null)&&ie(n,"alias node should not have any properties")):wz(n,b,Zm===t)&&(f=!0,n.tag===null&&(n.tag="?")),n.anchor!==null&&(n.anchorMap[n.anchor]=n.result)):l===0&&(f=c&&rO(n,w))),n.tag===null)n.anchor!==null&&(n.anchorMap[n.anchor]=n.result);else if(n.tag==="?"){for(n.result!==null&&n.kind!=="scalar"&&ie(n,'unacceptable node kind for !<?> tag; it should be "scalar", not "'+n.kind+'"'),d=0,h=n.implicitTypes.length;d<h;d+=1)if(y=n.implicitTypes[d],y.resolve(n.result)){n.result=y.construct(n.result),n.tag=y.tag,n.anchor!==null&&(n.anchorMap[n.anchor]=n.result);break}}else if(n.tag!=="!"){if(Xa.call(n.typeMap[n.kind||"fallback"],n.tag))y=n.typeMap[n.kind||"fallback"][n.tag];else for(y=null,p=n.typeMap.multi[n.kind||"fallback"],d=0,h=p.length;d<h;d+=1)if(n.tag.slice(0,p[d].tag.length)===p[d].tag){y=p[d];break}y||ie(n,"unknown tag !<"+n.tag+">"),n.result!==null&&y.kind!==n.kind&&ie(n,"unacceptable node kind for !<"+n.tag+'> tag; it should be "'+y.kind+'", not "'+n.kind+'"'),y.resolve(n.result,n.tag)?(n.result=y.construct(n.result,n.tag),n.anchor!==null&&(n.anchorMap[n.anchor]=n.result)):ie(n,"cannot resolve a node with !<"+n.tag+"> explicit tag")}return n.listener!==null&&n.listener("close",n),n.tag!==null||n.anchor!==null||f}o(Ll,"composeNode");function Pz(n){var e=n.position,t,r,i,s=!1,a;for(n.version=null,n.checkLineBreaks=n.legacy,n.tagMap=Object.create(null),n.anchorMap=Object.create(null);(a=n.input.charCodeAt(n.position))!==0&&(ir(n,!0,-1),a=n.input.charCodeAt(n.position),!(n.lineIndent>0||a!==37));){for(s=!0,a=n.input.charCodeAt(++n.position),t=n.position;a!==0&&!Pn(a);)a=n.input.charCodeAt(++n.position);for(r=n.input.slice(t,n.position),i=[],r.length<1&&ie(n,"directive name must not be less than one character in length");a!==0;){for(;Yo(a);)a=n.input.charCodeAt(++n.position);if(a===35){do a=n.input.charCodeAt(++n.position);while(a!==0&&!As(a));break}if(As(a))break;for(t=n.position;a!==0&&!Pn(a);)a=n.input.charCodeAt(++n.position);i.push(n.input.slice(t,n.position))}a!==0&&_w(n),Xa.call(eO,r)?eO[r](n,r,i):tg(n,'unknown document directive "'+r+'"')}if(ir(n,!0,-1),n.lineIndent===0&&n.input.charCodeAt(n.position)===45&&n.input.charCodeAt(n.position+1)===45&&n.input.charCodeAt(n.position+2)===45?(n.position+=3,ir(n,!0,-1)):s&&ie(n,"directives end mark is expected"),Ll(n,n.lineIndent-1,eg,!1,!0),ir(n,!0,-1),n.checkLineBreaks&&mz.test(n.input.slice(e,n.position))&&tg(n,"non-ASCII line breaks are interpreted as content"),n.documents.push(n.result),n.position===n.lineStart&&ig(n)){n.input.charCodeAt(n.position)===46&&(n.position+=3,ir(n,!0,-1));return}if(n.position<n.length-1)ie(n,"end of the stream or a document separator is expected");else return}o(Pz,"readDocument");function VO(n,e){n=String(n),e=e||{},n.length!==0&&(n.charCodeAt(n.length-1)!==10&&n.charCodeAt(n.length-1)!==13&&(n+=`
479
479
  `),n.charCodeAt(0)===65279&&(n=n.slice(1)));var t=new vz(n,e),r=n.indexOf("\0");for(r!==-1&&(t.position=r,ie(t,"null byte is not allowed in input")),t.input+="\0";t.input.charCodeAt(t.position)===32;)t.lineIndent+=1,t.position+=1;for(;t.position<t.length-1;)Pz(t);return t.documents}o(VO,"loadDocuments");function Fz(n,e,t){e!==null&&typeof e=="object"&&typeof t>"u"&&(t=e,e=null);var r=VO(n,t);if(typeof e!="function")return r;for(var i=0,s=r.length;i<s;i+=1)e(r[i])}o(Fz,"loadAll$1");function Dz(n,e){var t=VO(n,e);if(t.length!==0){if(t.length===1)return t[0];throw new yn("expected a single document in the stream, but found more")}}o(Dz,"load$1");var Nz=Fz,Lz=Dz,UO={loadAll:Nz,load:Lz},BO=Object.prototype.toString,qO=Object.prototype.hasOwnProperty,bw=65279,kz=9,Cf=10,Mz=13,jz=32,$z=33,Vz=34,dw=35,Uz=37,Bz=38,qz=39,Wz=42,WO=44,Gz=45,rg=58,zz=61,Hz=62,Qz=63,Kz=64,GO=91,zO=93,Yz=96,HO=123,Xz=124,QO=125,Kr={};Kr[0]="\\0";Kr[7]="\\a";Kr[8]="\\b";Kr[9]="\\t";Kr[10]="\\n";Kr[11]="\\v";Kr[12]="\\f";Kr[13]="\\r";Kr[27]="\\e";Kr[34]='\\"';Kr[92]="\\\\";Kr[133]="\\N";Kr[160]="\\_";Kr[8232]="\\L";Kr[8233]="\\P";var Jz=["y","Y","yes","Yes","YES","on","On","ON","n","N","no","No","NO","off","Off","OFF"],Zz=/^[-+]?[0-9_]+(?::[0-9_]+)+(?:\.[0-9_]*)?$/;function eH(n,e){var t,r,i,s,a,c,l;if(e===null)return{};for(t={},r=Object.keys(e),i=0,s=r.length;i<s;i+=1)a=r[i],c=String(e[a]),a.slice(0,2)==="!!"&&(a="tag:yaml.org,2002:"+a.slice(2)),l=n.compiledTypeMap.fallback[a],l&&qO.call(l.styleAliases,c)&&(c=l.styleAliases[c]),t[a]=c;return t}o(eH,"compileStyleMap");function tH(n){var e,t,r;if(e=n.toString(16).toUpperCase(),n<=255)t="x",r=2;else if(n<=65535)t="u",r=4;else if(n<=4294967295)t="U",r=8;else throw new yn("code point within a string may not be greater than 0xFFFFFFFF");return"\\"+t+pr.repeat("0",r-e.length)+e}o(tH,"encodeHex");var rH=1,Rf=2;function nH(n){this.schema=n.schema||yw,this.indent=Math.max(1,n.indent||2),this.noArrayIndent=n.noArrayIndent||!1,this.skipInvalid=n.skipInvalid||!1,this.flowLevel=pr.isNothing(n.flowLevel)?-1:n.flowLevel,this.styleMap=eH(this.schema,n.styles||null),this.sortKeys=n.sortKeys||!1,this.lineWidth=n.lineWidth||80,this.noRefs=n.noRefs||!1,this.noCompatMode=n.noCompatMode||!1,this.condenseFlow=n.condenseFlow||!1,this.quotingType=n.quotingType==='"'?Rf:rH,this.forceQuotes=n.forceQuotes||!1,this.replacer=typeof n.replacer=="function"?n.replacer:null,this.implicitTypes=this.schema.compiledImplicit,this.explicitTypes=this.schema.compiledExplicit,this.tag=null,this.result="",this.duplicates=[],this.usedDuplicates=null}o(nH,"State");function nO(n,e){for(var t=pr.repeat(" ",e),r=0,i=-1,s="",a,c=n.length;r<c;)i=n.indexOf(`
480
480
  `,r),i===-1?(a=n.slice(r),r=c):(a=n.slice(r,i+1),r=i+1),a.length&&a!==`
481
481
  `&&(s+=t),s+=a;return s}o(nO,"indentString");function hw(n,e){return`
@@ -491,7 +491,7 @@ GFS4: `),console.error(n)},"debug"));Mt[kr]||(cC=global[kr]||[],uC(Mt,cC),Mt.clo
491
491
  `+n.slice(i,s),i=s+1),a=c;return l+=`
492
492
  `,n.length-i>e&&a>i?l+=n.slice(i,a)+`
493
493
  `+n.slice(a+1):l+=n.slice(i),l.slice(1)}o(cO,"foldLine");function uH(n){for(var e="",t=0,r,i=0;i<n.length;t>=65536?i+=2:i++)t=xf(n,i),r=Kr[t],!r&&Of(t)?(e+=n[i],t>=65536&&(e+=n[i+1])):e+=r||tH(t);return e}o(uH,"escapeString");function fH(n,e,t){var r="",i=n.tag,s,a,c;for(s=0,a=t.length;s<a;s+=1)c=t[s],n.replacer&&(c=n.replacer.call(t,String(s),c)),(da(n,e,c,!1,!1)||typeof c>"u"&&da(n,e,null,!1,!1))&&(r!==""&&(r+=","+(n.condenseFlow?"":" ")),r+=n.dump);n.tag=i,n.dump="["+r+"]"}o(fH,"writeFlowSequence");function lO(n,e,t,r){var i="",s=n.tag,a,c,l;for(a=0,c=t.length;a<c;a+=1)l=t[a],n.replacer&&(l=n.replacer.call(t,String(a),l)),(da(n,e+1,l,!0,!0,!1,!0)||typeof l>"u"&&da(n,e+1,null,!0,!0,!1,!0))&&((!r||i!=="")&&(i+=hw(n,e)),n.dump&&Cf===n.dump.charCodeAt(0)?i+="-":i+="- ",i+=n.dump);n.tag=s,n.dump=i||"[]"}o(lO,"writeBlockSequence");function dH(n,e,t){var r="",i=n.tag,s=Object.keys(t),a,c,l,u,f;for(a=0,c=s.length;a<c;a+=1)f="",r!==""&&(f+=", "),n.condenseFlow&&(f+='"'),l=s[a],u=t[l],n.replacer&&(u=n.replacer.call(t,l,u)),da(n,e,l,!1,!1)&&(n.dump.length>1024&&(f+="? "),f+=n.dump+(n.condenseFlow?'"':"")+":"+(n.condenseFlow?"":" "),da(n,e,u,!1,!1)&&(f+=n.dump,r+=f));n.tag=i,n.dump="{"+r+"}"}o(dH,"writeFlowMapping");function hH(n,e,t,r){var i="",s=n.tag,a=Object.keys(t),c,l,u,f,d,h;if(n.sortKeys===!0)a.sort();else if(typeof n.sortKeys=="function")a.sort(n.sortKeys);else if(n.sortKeys)throw new yn("sortKeys must be a boolean or a function");for(c=0,l=a.length;c<l;c+=1)h="",(!r||i!=="")&&(h+=hw(n,e)),u=a[c],f=t[u],n.replacer&&(f=n.replacer.call(t,u,f)),da(n,e+1,u,!0,!0,!0)&&(d=n.tag!==null&&n.tag!=="?"||n.dump&&n.dump.length>1024,d&&(n.dump&&Cf===n.dump.charCodeAt(0)?h+="?":h+="? "),h+=n.dump,d&&(h+=hw(n,e)),da(n,e+1,f,!0,d)&&(n.dump&&Cf===n.dump.charCodeAt(0)?h+=":":h+=": ",h+=n.dump,i+=h));n.tag=s,n.dump=i||"{}"}o(hH,"writeBlockMapping");function uO(n,e,t){var r,i,s,a,c,l;for(i=t?n.explicitTypes:n.implicitTypes,s=0,a=i.length;s<a;s+=1)if(c=i[s],(c.instanceOf||c.predicate)&&(!c.instanceOf||typeof e=="object"&&e instanceof c.instanceOf)&&(!c.predicate||c.predicate(e))){if(t?c.multi&&c.representName?n.tag=c.representName(e):n.tag=c.tag:n.tag="?",c.represent){if(l=n.styleMap[c.tag]||c.defaultStyle,BO.call(c.represent)==="[object Function]")r=c.represent(e,l);else if(qO.call(c.represent,l))r=c.represent[l](e,l);else throw new yn("!<"+c.tag+'> tag resolver accepts not "'+l+'" style');n.dump=r}return!0}return!1}o(uO,"detectType");function da(n,e,t,r,i,s,a){n.tag=null,n.dump=t,uO(n,t,!1)||uO(n,t,!0);var c=BO.call(n.dump),l=r,u;r&&(r=n.flowLevel<0||n.flowLevel>e);var f=c==="[object Object]"||c==="[object Array]",d,h;if(f&&(d=n.duplicates.indexOf(t),h=d!==-1),(n.tag!==null&&n.tag!=="?"||h||n.indent!==2&&e>0)&&(i=!1),h&&n.usedDuplicates[d])n.dump="*ref_"+d;else{if(f&&h&&!n.usedDuplicates[d]&&(n.usedDuplicates[d]=!0),c==="[object Object]")r&&Object.keys(n.dump).length!==0?(hH(n,e,n.dump,i),h&&(n.dump="&ref_"+d+n.dump)):(dH(n,e,n.dump),h&&(n.dump="&ref_"+d+" "+n.dump));else if(c==="[object Array]")r&&n.dump.length!==0?(n.noArrayIndent&&!a&&e>0?lO(n,e-1,n.dump,i):lO(n,e,n.dump,i),h&&(n.dump="&ref_"+d+n.dump)):(fH(n,e,n.dump),h&&(n.dump="&ref_"+d+" "+n.dump));else if(c==="[object String]")n.tag!=="?"&&cH(n,n.dump,e,s,l);else{if(c==="[object Undefined]")return!1;if(n.skipInvalid)return!1;throw new yn("unacceptable kind of an object to dump "+c)}n.tag!==null&&n.tag!=="?"&&(u=encodeURI(n.tag[0]==="!"?n.tag.slice(1):n.tag).replace(/!/g,"%21"),n.tag[0]==="!"?u="!"+u:u.slice(0,18)==="tag:yaml.org,2002:"?u="!!"+u.slice(18):u="!<"+u+">",n.dump=u+" "+n.dump)}return!0}o(da,"writeNode");function pH(n,e){var t=[],r=[],i,s;for(mw(n,t,r),i=0,s=r.length;i<s;i+=1)e.duplicates.push(t[r[i]]);e.usedDuplicates=new Array(s)}o(pH,"getDuplicateReferences");function mw(n,e,t){var r,i,s;if(n!==null&&typeof n=="object")if(i=e.indexOf(n),i!==-1)t.indexOf(i)===-1&&t.push(i);else if(e.push(n),Array.isArray(n))for(i=0,s=n.length;i<s;i+=1)mw(n[i],e,t);else for(r=Object.keys(n),i=0,s=r.length;i<s;i+=1)mw(n[r[i]],e,t)}o(mw,"inspectNode");function mH(n,e){e=e||{};var t=new nH(e);t.noRefs||pH(n,t);var r=n;return t.replacer&&(r=t.replacer.call({"":r},"",r)),da(t,0,r,!0,!0)?t.dump+`
494
- `:""}o(mH,"dump$1");var gH=mH,yH={dump:gH};function vw(n,e){return function(){throw new Error("Function yaml."+n+" is removed in js-yaml 4. Use yaml."+e+" instead, which is now safe by default.")}}o(vw,"renamed");var _H=Mr,SH=hO,bH=yO,vH=wO,wH=EO,EH=yw,TH=UO.load,AH=UO.loadAll,xH=yH.dump,IH=yn,CH={binary:CO,float:vO,map:gO,null:_O,pairs:OO,set:PO,timestamp:xO,bool:SO,int:bO,merge:IO,omap:RO,seq:mO,str:pO},RH=vw("safeLoad","load"),OH=vw("safeLoadAll","loadAll"),PH=vw("safeDump","dump"),sr={Type:_H,Schema:SH,FAILSAFE_SCHEMA:bH,JSON_SCHEMA:vH,CORE_SCHEMA:wH,DEFAULT_SCHEMA:EH,load:TH,loadAll:AH,dump:xH,YAMLException:IH,types:CH,safeLoad:RH,safeLoadAll:OH,safeDump:PH};var Bw=Z(Pl()),ec=Z(require("path"));var bP=Z(fP(),1);var Ff=o(n=>{if(typeof n!="string")throw new TypeError("invalid pattern");if(n.length>65536)throw new TypeError("pattern is too long")},"assertValidPattern");var $H={"[:alnum:]":["\\p{L}\\p{Nl}\\p{Nd}",!0],"[:alpha:]":["\\p{L}\\p{Nl}",!0],"[:ascii:]":["\\x00-\\x7f",!1],"[:blank:]":["\\p{Zs}\\t",!0],"[:cntrl:]":["\\p{Cc}",!0],"[:digit:]":["\\p{Nd}",!0],"[:graph:]":["\\p{Z}\\p{C}",!0,!0],"[:lower:]":["\\p{Ll}",!0],"[:print:]":["\\p{C}",!0],"[:punct:]":["\\p{P}",!0],"[:space:]":["\\p{Z}\\t\\r\\n\\v\\f",!0],"[:upper:]":["\\p{Lu}",!0],"[:word:]":["\\p{L}\\p{Nl}\\p{Nd}\\p{Pc}",!0],"[:xdigit:]":["A-Fa-f0-9",!1]},Df=o(n=>n.replace(/[[\]\\-]/g,"\\$&"),"braceEscape"),VH=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regexpEscape"),dP=o(n=>n.join(""),"rangesToString"),hP=o((n,e)=>{let t=e;if(n.charAt(t)!=="[")throw new Error("not in a brace expression");let r=[],i=[],s=t+1,a=!1,c=!1,l=!1,u=!1,f=t,d="";e:for(;s<n.length;){let b=n.charAt(s);if((b==="!"||b==="^")&&s===t+1){u=!0,s++;continue}if(b==="]"&&a&&!l){f=s+1;break}if(a=!0,b==="\\"&&!l){l=!0,s++;continue}if(b==="["&&!l){for(let[w,[v,T,C]]of Object.entries($H))if(n.startsWith(w,s)){if(d)return["$.",!1,n.length-t,!0];s+=w.length,C?i.push(v):r.push(v),c=c||T;continue e}}if(l=!1,d){b>d?r.push(Df(d)+"-"+Df(b)):b===d&&r.push(Df(b)),d="",s++;continue}if(n.startsWith("-]",s+1)){r.push(Df(b+"-")),s+=2;continue}if(n.startsWith("-",s+1)){d=b,s+=2;continue}r.push(Df(b)),s++}if(f<s)return["",!1,0,!1];if(!r.length&&!i.length)return["$.",!1,n.length-t,!0];if(i.length===0&&r.length===1&&/^\\?.$/.test(r[0])&&!u){let b=r[0].length===2?r[0].slice(-1):r[0];return[VH(b),!1,f-t,!1]}let h="["+(u?"^":"")+dP(r)+"]",p="["+(u?"":"^")+dP(i)+"]";return[r.length&&i.length?"("+h+"|"+p+")":r.length?h:p,c,f-t,!0]},"parseClass");var Wi=o((n,{windowsPathsNoEscape:e=!1}={})=>e?n.replace(/\[([^\/\\])\]/g,"$1"):n.replace(/((?!\\).|^)\[([^\/\\])\]/g,"$1$2").replace(/\\([^\/])/g,"$1"),"unescape");var Fn,UH=new Set(["!","?","+","*","@"]),Tw=o(n=>UH.has(n),"isExtglobType"),pP=o(n=>Tw(n.type),"isExtglobAST"),BH=new Map([["!",["@"]],["?",["?","@"]],["@",["@"]],["*",["*","+","?","@"]],["+",["+","@"]]]),qH=new Map([["!",["?"]],["@",["?"]],["+",["?","*"]]]),WH=new Map([["!",["?","@"]],["?",["?","@"]],["@",["?","@"]],["*",["*","+","?","@"]],["+",["+","@","?","*"]]]),mP=new Map([["!",new Map([["!","@"]])],["?",new Map([["*","*"],["+","*"]])],["@",new Map([["!","!"],["?","?"],["@","@"],["*","*"],["+","+"]])],["+",new Map([["?","*"],["*","*"]])]]),GH="(?!(?:^|/)\\.\\.?(?:$|/))",sg="(?!\\.)",zH=new Set(["[","."]),HH=new Set(["..","."]),QH=new Set("().*{}+?[]^$\\!"),KH=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regExpEscape"),Aw="[^/]",gP=Aw+"*?",yP=Aw+"+?",Xo=class{static{o(this,"AST")}type;#e;#n;#r=!1;#t=[];#c;#_;#i;#u=!1;#s;#l;#a=!1;constructor(e,t,r={}){this.type=e,e&&(this.#n=!0),this.#c=t,this.#e=this.#c?this.#c.#e:this,this.#s=this.#e===this?r:this.#e.#s,this.#i=this.#e===this?[]:this.#e.#i,e==="!"&&!this.#e.#u&&this.#i.push(this),this.#_=this.#c?this.#c.#t.length:0}get hasMagic(){if(this.#n!==void 0)return this.#n;for(let e of this.#t)if(typeof e!="string"&&(e.type||e.hasMagic))return this.#n=!0;return this.#n}toString(){return this.#l!==void 0?this.#l:this.type?this.#l=this.type+"("+this.#t.map(e=>String(e)).join("|")+")":this.#l=this.#t.map(e=>String(e)).join("")}#p(){if(this!==this.#e)throw new Error("should only call on root");if(this.#u)return this;this.toString(),this.#u=!0;let e;for(;e=this.#i.pop();){if(e.type!=="!")continue;let t=e,r=t.#c;for(;r;){for(let i=t.#_+1;!r.type&&i<r.#t.length;i++)for(let s of e.#t){if(typeof s=="string")throw new Error("string part in extglob AST??");s.copyIn(r.#t[i])}t=r,r=t.#c}}return this}push(...e){for(let t of e)if(t!==""){if(typeof t!="string"&&!(t instanceof Fn&&t.#c===this))throw new Error("invalid part: "+t);this.#t.push(t)}}toJSON(){let e=this.type===null?this.#t.slice().map(t=>typeof t=="string"?t:t.toJSON()):[this.type,...this.#t.map(t=>t.toJSON())];return this.isStart()&&!this.type&&e.unshift([]),this.isEnd()&&(this===this.#e||this.#e.#u&&this.#c?.type==="!")&&e.push({}),e}isStart(){if(this.#e===this)return!0;if(!this.#c?.isStart())return!1;if(this.#_===0)return!0;let e=this.#c;for(let t=0;t<this.#_;t++){let r=e.#t[t];if(!(r instanceof Fn&&r.type==="!"))return!1}return!0}isEnd(){if(this.#e===this||this.#c?.type==="!")return!0;if(!this.#c?.isEnd())return!1;if(!this.type)return this.#c?.isEnd();let e=this.#c?this.#c.#t.length:0;return this.#_===e-1}copyIn(e){typeof e=="string"?this.push(e):this.push(e.clone(this))}clone(e){let t=new Fn(this.type,e);for(let r of this.#t)t.copyIn(r);return t}static#g(e,t,r,i,s){let a=i.maxExtglobRecursion??2,c=!1,l=!1,u=-1,f=!1;if(t.type===null){let b=r,w="";for(;b<e.length;){let v=e.charAt(b++);if(c||v==="\\"){c=!c,w+=v;continue}if(l){b===u+1?(v==="^"||v==="!")&&(f=!0):v==="]"&&!(b===u+2&&f)&&(l=!1),w+=v;continue}else if(v==="["){l=!0,u=b,f=!1,w+=v;continue}if(!i.noext&&Tw(v)&&e.charAt(b)==="("&&s<=a){t.push(w),w="";let C=new Fn(v,t);b=Fn.#g(e,C,b,i,s+1),t.push(C);continue}w+=v}return t.push(w),b}let d=r+1,h=new Fn(null,t),p=[],y="";for(;d<e.length;){let b=e.charAt(d++);if(c||b==="\\"){c=!c,y+=b;continue}if(l){d===u+1?(b==="^"||b==="!")&&(f=!0):b==="]"&&!(d===u+2&&f)&&(l=!1),y+=b;continue}else if(b==="["){l=!0,u=d,f=!1,y+=b;continue}if(Tw(b)&&e.charAt(d)==="("&&(s<=a||t&&t.#y(b))){let v=t&&t.#y(b)?0:1;h.push(y),y="";let T=new Fn(b,h);h.push(T),d=Fn.#g(e,T,d,i,s+v);continue}if(b==="|"){h.push(y),y="",p.push(h),h=new Fn(null,t);continue}if(b===")")return y===""&&t.#t.length===0&&(t.#a=!0),h.push(y),y="",t.push(...p,h),d;y+=b}return t.type=null,t.#n=void 0,t.#t=[e.substring(r-1)],d}#d(e){return this.#m(e,qH)}#m(e,t=BH){if(!e||typeof e!="object"||e.type!==null||e.#t.length!==1||this.type===null)return!1;let r=e.#t[0];return!r||typeof r!="object"||r.type===null?!1:this.#y(r.type,t)}#y(e,t=WH){return!!t.get(this.type)?.includes(e)}#f(e,t){let r=e.#t[0],i=new Fn(null,r,this.options);i.#t.push(""),r.push(i),this.#E(e,t)}#E(e,t){let r=e.#t[0];this.#t.splice(t,1,...r.#t);for(let i of r.#t)typeof i=="object"&&(i.#c=this);this.#l=void 0}#T(e){return!!mP.get(this.type)?.has(e)}#S(e){if(!e||typeof e!="object"||e.type!==null||e.#t.length!==1||this.type===null||this.#t.length!==1)return!1;let t=e.#t[0];return!t||typeof t!="object"||t.type===null?!1:this.#T(t.type)}#w(e){let t=mP.get(this.type),r=e.#t[0],i=t?.get(r.type);if(!i)return!1;this.#t=r.#t;for(let s of this.#t)typeof s=="object"&&(s.#c=this);this.type=i,this.#l=void 0,this.#a=!1}#b(){if(pP(this)){let e=0,t=!1;do{t=!0;for(let r=0;r<this.#t.length;r++){let i=this.#t[r];typeof i=="object"&&(i.#b(),this.#m(i)?(t=!1,this.#E(i,r)):this.#d(i)?(t=!1,this.#f(i,r)):this.#S(i)&&(t=!1,this.#w(i)))}}while(!t&&++e<10)}else for(let e of this.#t)typeof e=="object"&&e.#b();this.#l=void 0}static fromGlob(e,t={}){let r=new Fn(null,void 0,t);return Fn.#g(e,r,0,t,0),r}toMMPattern(){if(this!==this.#e)return this.#e.toMMPattern();let e=this.toString(),[t,r,i,s]=this.toRegExpSource();if(!(i||this.#n||this.#s.nocase&&!this.#s.nocaseMagicOnly&&e.toUpperCase()!==e.toLowerCase()))return r;let c=(this.#s.nocase?"i":"")+(s?"u":"");return Object.assign(new RegExp(`^${t}$`,c),{_src:t,_glob:e})}get options(){return this.#s}toRegExpSource(e){let t=e??!!this.#s.dot;if(this.#e===this&&(this.#b(),this.#p()),!pP(this)){let l=this.isStart()&&this.isEnd(),u=this.#t.map(p=>{let[y,b,w,v]=typeof p=="string"?Fn.#x(p,this.#n,l):p.toRegExpSource(e);return this.#n=this.#n||w,this.#r=this.#r||v,y}).join(""),f="";if(this.isStart()&&typeof this.#t[0]=="string"&&!(this.#t.length===1&&HH.has(this.#t[0]))){let y=zH,b=t&&y.has(u.charAt(0))||u.startsWith("\\.")&&y.has(u.charAt(2))||u.startsWith("\\.\\.")&&y.has(u.charAt(4)),w=!t&&!e&&y.has(u.charAt(0));f=b?GH:w?sg:""}let d="";return this.isEnd()&&this.#e.#u&&this.#c?.type==="!"&&(d="(?:$|\\/)"),[f+u+d,Wi(u),this.#n=!!this.#n,this.#r]}let r=this.type==="*"||this.type==="+",i=this.type==="!"?"(?:(?!(?:":"(?:",s=this.#v(t);if(this.isStart()&&this.isEnd()&&!s&&this.type!=="!"){let l=this.toString(),u=this;return u.#t=[l],u.type=null,u.#n=void 0,[l,Wi(this.toString()),!1,!1]}let a=!r||e||t||!sg?"":this.#v(!0);a===s&&(a=""),a&&(s=`(?:${s})(?:${a})*?`);let c="";if(this.type==="!"&&this.#a)c=(this.isStart()&&!t?sg:"")+yP;else{let l=this.type==="!"?"))"+(this.isStart()&&!t&&!e?sg:"")+gP+")":this.type==="@"?")":this.type==="?"?")?":this.type==="+"&&a?")":this.type==="*"&&a?")?":`)${this.type}`;c=i+s+l}return[c,Wi(s),this.#n=!!this.#n,this.#r]}#v(e){return this.#t.map(t=>{if(typeof t=="string")throw new Error("string type in extglob ast??");let[r,i,s,a]=t.toRegExpSource(e);return this.#r=this.#r||a,r}).filter(t=>!(this.isStart()&&this.isEnd())||!!t).join("|")}static#x(e,t,r=!1){let i=!1,s="",a=!1,c=!1;for(let l=0;l<e.length;l++){let u=e.charAt(l);if(i){i=!1,s+=(QH.has(u)?"\\":"")+u,c=!1;continue}if(u==="\\"){l===e.length-1?s+="\\\\":i=!0;continue}if(u==="["){let[f,d,h,p]=hP(e,l);if(h){s+=f,a=a||d,l+=h-1,t=t||p,c=!1;continue}}if(u==="*"){if(c)continue;c=!0,s+=r&&/^[*]+$/.test(e)?yP:gP,t=!0;continue}else c=!1;if(u==="?"){s+=Aw,t=!0;continue}s+=KH(u)}return[s,Wi(e),!!t,a]}};Fn=Xo;var kl=o((n,{windowsPathsNoEscape:e=!1}={})=>e?n.replace(/[?*()[\]]/g,"[$&]"):n.replace(/[?*()[\]\\]/g,"\\$&"),"escape");var jr=o((n,e,t={})=>(Ff(e),!t.nocomment&&e.charAt(0)==="#"?!1:new Un(e,t).match(n)),"minimatch"),YH=/^\*+([^+@!?\*\[\(]*)$/,XH=o(n=>e=>!e.startsWith(".")&&e.endsWith(n),"starDotExtTest"),JH=o(n=>e=>e.endsWith(n),"starDotExtTestDot"),ZH=o(n=>(n=n.toLowerCase(),e=>!e.startsWith(".")&&e.toLowerCase().endsWith(n)),"starDotExtTestNocase"),eQ=o(n=>(n=n.toLowerCase(),e=>e.toLowerCase().endsWith(n)),"starDotExtTestNocaseDot"),tQ=/^\*+\.\*+$/,rQ=o(n=>!n.startsWith(".")&&n.includes("."),"starDotStarTest"),nQ=o(n=>n!=="."&&n!==".."&&n.includes("."),"starDotStarTestDot"),iQ=/^\.\*+$/,sQ=o(n=>n!=="."&&n!==".."&&n.startsWith("."),"dotStarTest"),aQ=/^\*+$/,oQ=o(n=>n.length!==0&&!n.startsWith("."),"starTest"),cQ=o(n=>n.length!==0&&n!=="."&&n!=="..","starTestDot"),lQ=/^\?+([^+@!?\*\[\(]*)?$/,uQ=o(([n,e=""])=>{let t=vP([n]);return e?(e=e.toLowerCase(),r=>t(r)&&r.toLowerCase().endsWith(e)):t},"qmarksTestNocase"),fQ=o(([n,e=""])=>{let t=wP([n]);return e?(e=e.toLowerCase(),r=>t(r)&&r.toLowerCase().endsWith(e)):t},"qmarksTestNocaseDot"),dQ=o(([n,e=""])=>{let t=wP([n]);return e?r=>t(r)&&r.endsWith(e):t},"qmarksTestDot"),hQ=o(([n,e=""])=>{let t=vP([n]);return e?r=>t(r)&&r.endsWith(e):t},"qmarksTest"),vP=o(([n])=>{let e=n.length;return t=>t.length===e&&!t.startsWith(".")},"qmarksTestNoExt"),wP=o(([n])=>{let e=n.length;return t=>t.length===e&&t!=="."&&t!==".."},"qmarksTestNoExtDot"),EP=typeof process=="object"&&process?typeof process.env=="object"&&process.env&&process.env.__MINIMATCH_TESTING_PLATFORM__||process.platform:"posix",_P={win32:{sep:"\\"},posix:{sep:"/"}},pQ=EP==="win32"?_P.win32.sep:_P.posix.sep;jr.sep=pQ;var Ht=Symbol("globstar **");jr.GLOBSTAR=Ht;var mQ="[^/]",gQ=mQ+"*?",yQ="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",_Q="(?:(?!(?:\\/|^)\\.).)*?",SQ=o((n,e={})=>t=>jr(t,n,e),"filter");jr.filter=SQ;var si=o((n,e={})=>Object.assign({},n,e),"ext"),bQ=o(n=>{if(!n||typeof n!="object"||!Object.keys(n).length)return jr;let e=jr;return Object.assign(o((r,i,s={})=>e(r,i,si(n,s)),"m"),{Minimatch:class extends e.Minimatch{static{o(this,"Minimatch")}constructor(i,s={}){super(i,si(n,s))}static defaults(i){return e.defaults(si(n,i)).Minimatch}},AST:class extends e.AST{static{o(this,"AST")}constructor(i,s,a={}){super(i,s,si(n,a))}static fromGlob(i,s={}){return e.AST.fromGlob(i,si(n,s))}},unescape:o((r,i={})=>e.unescape(r,si(n,i)),"unescape"),escape:o((r,i={})=>e.escape(r,si(n,i)),"escape"),filter:o((r,i={})=>e.filter(r,si(n,i)),"filter"),defaults:o(r=>e.defaults(si(n,r)),"defaults"),makeRe:o((r,i={})=>e.makeRe(r,si(n,i)),"makeRe"),braceExpand:o((r,i={})=>e.braceExpand(r,si(n,i)),"braceExpand"),match:o((r,i,s={})=>e.match(r,i,si(n,s)),"match"),sep:e.sep,GLOBSTAR:Ht})},"defaults");jr.defaults=bQ;var TP=o((n,e={})=>(Ff(n),e.nobrace||!/\{(?:(?!\{).)*\}/.test(n)?[n]:(0,bP.default)(n)),"braceExpand");jr.braceExpand=TP;var vQ=o((n,e={})=>new Un(n,e).makeRe(),"makeRe");jr.makeRe=vQ;var wQ=o((n,e,t={})=>{let r=new Un(e,t);return n=n.filter(i=>r.match(i)),r.options.nonull&&!n.length&&n.push(e),n},"match");jr.match=wQ;var SP=/[?*]|[+@!]\(.*?\)|\[|\]/,EQ=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regExpEscape"),Un=class{static{o(this,"Minimatch")}options;set;pattern;windowsPathsNoEscape;nonegate;negate;comment;empty;preserveMultipleSlashes;partial;globSet;globParts;nocase;isWindows;platform;windowsNoMagicRoot;maxGlobstarRecursion;regexp;constructor(e,t={}){Ff(e),t=t||{},this.options=t,this.maxGlobstarRecursion=t.maxGlobstarRecursion??200,this.pattern=e,this.platform=t.platform||EP,this.isWindows=this.platform==="win32",this.windowsPathsNoEscape=!!t.windowsPathsNoEscape||t.allowWindowsEscape===!1,this.windowsPathsNoEscape&&(this.pattern=this.pattern.replace(/\\/g,"/")),this.preserveMultipleSlashes=!!t.preserveMultipleSlashes,this.regexp=null,this.negate=!1,this.nonegate=!!t.nonegate,this.comment=!1,this.empty=!1,this.partial=!!t.partial,this.nocase=!!this.options.nocase,this.windowsNoMagicRoot=t.windowsNoMagicRoot!==void 0?t.windowsNoMagicRoot:!!(this.isWindows&&this.nocase),this.globSet=[],this.globParts=[],this.set=[],this.make()}hasMagic(){if(this.options.magicalBraces&&this.set.length>1)return!0;for(let e of this.set)for(let t of e)if(typeof t!="string")return!0;return!1}debug(...e){}make(){let e=this.pattern,t=this.options;if(!t.nocomment&&e.charAt(0)==="#"){this.comment=!0;return}if(!e){this.empty=!0;return}this.parseNegate(),this.globSet=[...new Set(this.braceExpand())],t.debug&&(this.debug=(...s)=>console.error(...s)),this.debug(this.pattern,this.globSet);let r=this.globSet.map(s=>this.slashSplit(s));this.globParts=this.preprocess(r),this.debug(this.pattern,this.globParts);let i=this.globParts.map((s,a,c)=>{if(this.isWindows&&this.windowsNoMagicRoot){let l=s[0]===""&&s[1]===""&&(s[2]==="?"||!SP.test(s[2]))&&!SP.test(s[3]),u=/^[a-z]:/i.test(s[0]);if(l)return[...s.slice(0,4),...s.slice(4).map(f=>this.parse(f))];if(u)return[s[0],...s.slice(1).map(f=>this.parse(f))]}return s.map(l=>this.parse(l))});if(this.debug(this.pattern,i),this.set=i.filter(s=>s.indexOf(!1)===-1),this.isWindows)for(let s=0;s<this.set.length;s++){let a=this.set[s];a[0]===""&&a[1]===""&&this.globParts[s][2]==="?"&&typeof a[3]=="string"&&/^[a-z]:$/i.test(a[3])&&(a[2]="?")}this.debug(this.pattern,this.set)}preprocess(e){if(this.options.noglobstar)for(let r=0;r<e.length;r++)for(let i=0;i<e[r].length;i++)e[r][i]==="**"&&(e[r][i]="*");let{optimizationLevel:t=1}=this.options;return t>=2?(e=this.firstPhasePreProcess(e),e=this.secondPhasePreProcess(e)):t>=1?e=this.levelOneOptimize(e):e=this.adjascentGlobstarOptimize(e),e}adjascentGlobstarOptimize(e){return e.map(t=>{let r=-1;for(;(r=t.indexOf("**",r+1))!==-1;){let i=r;for(;t[i+1]==="**";)i++;i!==r&&t.splice(r,i-r)}return t})}levelOneOptimize(e){return e.map(t=>(t=t.reduce((r,i)=>{let s=r[r.length-1];return i==="**"&&s==="**"?r:i===".."&&s&&s!==".."&&s!=="."&&s!=="**"?(r.pop(),r):(r.push(i),r)},[]),t.length===0?[""]:t))}levelTwoFileOptimize(e){Array.isArray(e)||(e=this.slashSplit(e));let t=!1;do{if(t=!1,!this.preserveMultipleSlashes){for(let i=1;i<e.length-1;i++){let s=e[i];i===1&&s===""&&e[0]===""||(s==="."||s==="")&&(t=!0,e.splice(i,1),i--)}e[0]==="."&&e.length===2&&(e[1]==="."||e[1]==="")&&(t=!0,e.pop())}let r=0;for(;(r=e.indexOf("..",r+1))!==-1;){let i=e[r-1];i&&i!=="."&&i!==".."&&i!=="**"&&(t=!0,e.splice(r-1,2),r-=2)}}while(t);return e.length===0?[""]:e}firstPhasePreProcess(e){let t=!1;do{t=!1;for(let r of e){let i=-1;for(;(i=r.indexOf("**",i+1))!==-1;){let a=i;for(;r[a+1]==="**";)a++;a>i&&r.splice(i+1,a-i);let c=r[i+1],l=r[i+2],u=r[i+3];if(c!==".."||!l||l==="."||l===".."||!u||u==="."||u==="..")continue;t=!0,r.splice(i,1);let f=r.slice(0);f[i]="**",e.push(f),i--}if(!this.preserveMultipleSlashes){for(let a=1;a<r.length-1;a++){let c=r[a];a===1&&c===""&&r[0]===""||(c==="."||c==="")&&(t=!0,r.splice(a,1),a--)}r[0]==="."&&r.length===2&&(r[1]==="."||r[1]==="")&&(t=!0,r.pop())}let s=0;for(;(s=r.indexOf("..",s+1))!==-1;){let a=r[s-1];if(a&&a!=="."&&a!==".."&&a!=="**"){t=!0;let l=s===1&&r[s+1]==="**"?["."]:[];r.splice(s-1,2,...l),r.length===0&&r.push(""),s-=2}}}}while(t);return e}secondPhasePreProcess(e){for(let t=0;t<e.length-1;t++)for(let r=t+1;r<e.length;r++){let i=this.partsMatch(e[t],e[r],!this.preserveMultipleSlashes);if(i){e[t]=[],e[r]=i;break}}return e.filter(t=>t.length)}partsMatch(e,t,r=!1){let i=0,s=0,a=[],c="";for(;i<e.length&&s<t.length;)if(e[i]===t[s])a.push(c==="b"?t[s]:e[i]),i++,s++;else if(r&&e[i]==="**"&&t[s]===e[i+1])a.push(e[i]),i++;else if(r&&t[s]==="**"&&e[i]===t[s+1])a.push(t[s]),s++;else if(e[i]==="*"&&t[s]&&(this.options.dot||!t[s].startsWith("."))&&t[s]!=="**"){if(c==="b")return!1;c="a",a.push(e[i]),i++,s++}else if(t[s]==="*"&&e[i]&&(this.options.dot||!e[i].startsWith("."))&&e[i]!=="**"){if(c==="a")return!1;c="b",a.push(t[s]),i++,s++}else return!1;return e.length===t.length&&a}parseNegate(){if(this.nonegate)return;let e=this.pattern,t=!1,r=0;for(let i=0;i<e.length&&e.charAt(i)==="!";i++)t=!t,r++;r&&(this.pattern=e.slice(r)),this.negate=t}matchOne(e,t,r=!1){let i=0,s=0;if(this.isWindows){let c=typeof e[0]=="string"&&/^[a-z]:$/i.test(e[0]),l=!c&&e[0]===""&&e[1]===""&&e[2]==="?"&&/^[a-z]:$/i.test(e[3]),u=typeof t[0]=="string"&&/^[a-z]:$/i.test(t[0]),f=!u&&t[0]===""&&t[1]===""&&t[2]==="?"&&typeof t[3]=="string"&&/^[a-z]:$/i.test(t[3]),d=l?3:c?0:void 0,h=f?3:u?0:void 0;if(typeof d=="number"&&typeof h=="number"){let[p,y]=[e[d],t[h]];p.toLowerCase()===y.toLowerCase()&&(t[h]=p,s=h,i=d)}}let{optimizationLevel:a=1}=this.options;return a>=2&&(e=this.levelTwoFileOptimize(e)),t.includes(Ht)?this.#e(e,t,r,i,s):this.#r(e,t,r,i,s)}#e(e,t,r,i,s){let a=t.indexOf(Ht,s),c=t.lastIndexOf(Ht),[l,u,f]=r?[t.slice(s,a),t.slice(a+1),[]]:[t.slice(s,a),t.slice(a+1,c),t.slice(c+1)];if(l.length){let T=e.slice(i,i+l.length);if(!this.#r(T,l,r,0,0))return!1;i+=l.length}let d=0;if(f.length){if(f.length+i>e.length)return!1;let T=e.length-f.length;if(this.#r(e,f,r,T,0))d=f.length;else{if(e[e.length-1]!==""||i+f.length===e.length||(T--,!this.#r(e,f,r,T,0)))return!1;d=f.length+1}}if(!u.length){let T=!!d;for(let C=i;C<e.length-d;C++){let L=String(e[C]);if(T=!0,L==="."||L===".."||!this.options.dot&&L.startsWith("."))return!1}return r||T}let h=[[[],0]],p=h[0],y=0,b=[0];for(let T of u)T===Ht?(b.push(y),p=[[],0],h.push(p)):(p[0].push(T),y++);let w=h.length-1,v=e.length-d;for(let T of h)T[1]=v-(b[w--]+T[0].length);return!!this.#n(e,h,i,0,r,0,!!d)}#n(e,t,r,i,s,a,c){let l=t[i];if(!l){for(let d=r;d<e.length;d++){c=!0;let h=e[d];if(h==="."||h===".."||!this.options.dot&&h.startsWith("."))return!1}return c}let[u,f]=l;for(;r<=f;){if(this.#r(e.slice(0,r+u.length),u,s,r,0)&&a<this.maxGlobstarRecursion){let p=this.#n(e,t,r+u.length,i+1,s,a+1,c);if(p!==!1)return p}let h=e[r];if(h==="."||h===".."||!this.options.dot&&h.startsWith("."))return!1;r++}return s||null}#r(e,t,r,i,s){let a,c,l,u;for(a=i,c=s,u=e.length,l=t.length;a<u&&c<l;a++,c++){this.debug("matchOne loop");let f=t[c],d=e[a];if(this.debug(t,f,d),f===!1||f===Ht)return!1;let h;if(typeof f=="string"?(h=d===f,this.debug("string match",f,d,h)):(h=f.test(d),this.debug("pattern match",f,d,h)),!h)return!1}if(a===u&&c===l)return!0;if(a===u)return r;if(c===l)return a===u-1&&e[a]==="";throw new Error("wtf?")}braceExpand(){return TP(this.pattern,this.options)}parse(e){Ff(e);let t=this.options;if(e==="**")return Ht;if(e==="")return"";let r,i=null;(r=e.match(aQ))?i=t.dot?cQ:oQ:(r=e.match(YH))?i=(t.nocase?t.dot?eQ:ZH:t.dot?JH:XH)(r[1]):(r=e.match(lQ))?i=(t.nocase?t.dot?fQ:uQ:t.dot?dQ:hQ)(r):(r=e.match(tQ))?i=t.dot?nQ:rQ:(r=e.match(iQ))&&(i=sQ);let s=Xo.fromGlob(e,this.options).toMMPattern();return i&&typeof s=="object"&&Reflect.defineProperty(s,"test",{value:i}),s}makeRe(){if(this.regexp||this.regexp===!1)return this.regexp;let e=this.set;if(!e.length)return this.regexp=!1,this.regexp;let t=this.options,r=t.noglobstar?gQ:t.dot?yQ:_Q,i=new Set(t.nocase?["i"]:[]),s=e.map(l=>{let u=l.map(f=>{if(f instanceof RegExp)for(let d of f.flags.split(""))i.add(d);return typeof f=="string"?EQ(f):f===Ht?Ht:f._src});return u.forEach((f,d)=>{let h=u[d+1],p=u[d-1];f!==Ht||p===Ht||(p===void 0?h!==void 0&&h!==Ht?u[d+1]="(?:\\/|"+r+"\\/)?"+h:u[d]=r:h===void 0?u[d-1]=p+"(?:\\/|"+r+")?":h!==Ht&&(u[d-1]=p+"(?:\\/|\\/"+r+"\\/)"+h,u[d+1]=Ht))}),u.filter(f=>f!==Ht).join("/")}).join("|"),[a,c]=e.length>1?["(?:",")"]:["",""];s="^"+a+s+c+"$",this.negate&&(s="^(?!"+s+").+$");try{this.regexp=new RegExp(s,[...i].join(""))}catch{this.regexp=!1}return this.regexp}slashSplit(e){return this.preserveMultipleSlashes?e.split("/"):this.isWindows&&/^\/\/[^\/]+/.test(e)?["",...e.split(/\/+/)]:e.split(/\/+/)}match(e,t=this.partial){if(this.debug("match",e,this.pattern),this.comment)return!1;if(this.empty)return e==="";if(e==="/"&&t)return!0;let r=this.options;this.isWindows&&(e=e.split("\\").join("/"));let i=this.slashSplit(e);this.debug(this.pattern,"split",i);let s=this.set;this.debug(this.pattern,"set",s);let a=i[i.length-1];if(!a)for(let c=i.length-2;!a&&c>=0;c--)a=i[c];for(let c=0;c<s.length;c++){let l=s[c],u=i;if(r.matchBase&&l.length===1&&(u=[a]),this.matchOne(u,l,t))return r.flipNegate?!0:!this.negate}return r.flipNegate?!1:this.negate}static defaults(e){return jr.defaults(e).Minimatch}};jr.AST=Xo;jr.Minimatch=Un;jr.escape=kl;jr.unescape=Wi;var QP=require("node:url");var Ml=typeof performance=="object"&&performance&&typeof performance.now=="function"?performance:Date,xP=new Set,xw=typeof process=="object"&&process?process:{},IP=o((n,e,t,r)=>{typeof xw.emitWarning=="function"?xw.emitWarning(n,e,t,r):console.error(`[${t}] ${e}: ${n}`)},"emitWarning"),ag=globalThis.AbortController,AP=globalThis.AbortSignal;if(typeof ag>"u"){AP=class{static{o(this,"AbortSignal")}onabort;_onabort=[];reason;aborted=!1;addEventListener(r,i){this._onabort.push(i)}},ag=class{static{o(this,"AbortController")}constructor(){e()}signal=new AP;abort(r){if(!this.signal.aborted){this.signal.reason=r,this.signal.aborted=!0;for(let i of this.signal._onabort)i(r);this.signal.onabort?.(r)}}};let n=xw.env?.LRU_CACHE_IGNORE_AC_WARNING!=="1",e=o(()=>{n&&(n=!1,IP("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.","NO_ABORT_CONTROLLER","ENOTSUP",e))},"warnACPolyfill")}var TQ=o(n=>!xP.has(n),"shouldWarn");var Xa=o(n=>n&&n===Math.floor(n)&&n>0&&isFinite(n),"isPosInt"),CP=o(n=>Xa(n)?n<=Math.pow(2,8)?Uint8Array:n<=Math.pow(2,16)?Uint16Array:n<=Math.pow(2,32)?Uint32Array:n<=Number.MAX_SAFE_INTEGER?jl:null:null,"getUintArray"),jl=class extends Array{static{o(this,"ZeroArray")}constructor(e){super(e),this.fill(0)}},Iw=class n{static{o(this,"Stack")}heap;length;static#e=!1;static create(e){let t=CP(e);if(!t)return[];n.#e=!0;let r=new n(e,t);return n.#e=!1,r}constructor(e,t){if(!n.#e)throw new TypeError("instantiate Stack using Stack.create(n)");this.heap=new t(e),this.length=0}push(e){this.heap[this.length++]=e}pop(){return this.heap[--this.length]}},Nf=class n{static{o(this,"LRUCache")}#e;#n;#r;#t;#c;#_;ttl;ttlResolution;ttlAutopurge;updateAgeOnGet;updateAgeOnHas;allowStale;noDisposeOnSet;noUpdateTTL;maxEntrySize;sizeCalculation;noDeleteOnFetchRejection;noDeleteOnStaleGet;allowStaleOnFetchAbort;allowStaleOnFetchRejection;ignoreFetchAbort;#i;#u;#s;#l;#a;#p;#g;#d;#m;#y;#f;#E;#T;#S;#w;#b;#v;static unsafeExposeInternals(e){return{starts:e.#T,ttls:e.#S,sizes:e.#E,keyMap:e.#s,keyList:e.#l,valList:e.#a,next:e.#p,prev:e.#g,get head(){return e.#d},get tail(){return e.#m},free:e.#y,isBackgroundFetch:o(t=>e.#h(t),"isBackgroundFetch"),backgroundFetch:o((t,r,i,s)=>e.#j(t,r,i,s),"backgroundFetch"),moveToTail:o(t=>e.#V(t),"moveToTail"),indexes:o(t=>e.#C(t),"indexes"),rindexes:o(t=>e.#R(t),"rindexes"),isStale:o(t=>e.#A(t),"isStale")}}get max(){return this.#e}get maxSize(){return this.#n}get calculatedSize(){return this.#u}get size(){return this.#i}get fetchMethod(){return this.#c}get memoMethod(){return this.#_}get dispose(){return this.#r}get disposeAfter(){return this.#t}constructor(e){let{max:t=0,ttl:r,ttlResolution:i=1,ttlAutopurge:s,updateAgeOnGet:a,updateAgeOnHas:c,allowStale:l,dispose:u,disposeAfter:f,noDisposeOnSet:d,noUpdateTTL:h,maxSize:p=0,maxEntrySize:y=0,sizeCalculation:b,fetchMethod:w,memoMethod:v,noDeleteOnFetchRejection:T,noDeleteOnStaleGet:C,allowStaleOnFetchRejection:L,allowStaleOnFetchAbort:V,ignoreFetchAbort:ae}=e;if(t!==0&&!Xa(t))throw new TypeError("max option must be a nonnegative integer");let $=t?CP(t):Array;if(!$)throw new Error("invalid max value: "+t);if(this.#e=t,this.#n=p,this.maxEntrySize=y||this.#n,this.sizeCalculation=b,this.sizeCalculation){if(!this.#n&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if(typeof this.sizeCalculation!="function")throw new TypeError("sizeCalculation set to non-function")}if(v!==void 0&&typeof v!="function")throw new TypeError("memoMethod must be a function if defined");if(this.#_=v,w!==void 0&&typeof w!="function")throw new TypeError("fetchMethod must be a function if specified");if(this.#c=w,this.#b=!!w,this.#s=new Map,this.#l=new Array(t).fill(void 0),this.#a=new Array(t).fill(void 0),this.#p=new $(t),this.#g=new $(t),this.#d=0,this.#m=0,this.#y=Iw.create(t),this.#i=0,this.#u=0,typeof u=="function"&&(this.#r=u),typeof f=="function"?(this.#t=f,this.#f=[]):(this.#t=void 0,this.#f=void 0),this.#w=!!this.#r,this.#v=!!this.#t,this.noDisposeOnSet=!!d,this.noUpdateTTL=!!h,this.noDeleteOnFetchRejection=!!T,this.allowStaleOnFetchRejection=!!L,this.allowStaleOnFetchAbort=!!V,this.ignoreFetchAbort=!!ae,this.maxEntrySize!==0){if(this.#n!==0&&!Xa(this.#n))throw new TypeError("maxSize must be a positive integer if specified");if(!Xa(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");this.#O()}if(this.allowStale=!!l,this.noDeleteOnStaleGet=!!C,this.updateAgeOnGet=!!a,this.updateAgeOnHas=!!c,this.ttlResolution=Xa(i)||i===0?i:1,this.ttlAutopurge=!!s,this.ttl=r||0,this.ttl){if(!Xa(this.ttl))throw new TypeError("ttl must be a positive integer if specified");this.#x()}if(this.#e===0&&this.ttl===0&&this.#n===0)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.#e&&!this.#n){let B="LRU_CACHE_UNBOUNDED";TQ(B)&&(xP.add(B),IP("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",B,n))}}getRemainingTTL(e){return this.#s.has(e)?1/0:0}#x(){let e=new jl(this.#e),t=new jl(this.#e);this.#S=e,this.#T=t,this.#F=(s,a,c=Ml.now())=>{if(t[s]=a!==0?c:0,e[s]=a,a!==0&&this.ttlAutopurge){let l=setTimeout(()=>{this.#A(s)&&this.#P(this.#l[s],"expire")},a+1);l.unref&&l.unref()}},this.#I=s=>{t[s]=e[s]!==0?Ml.now():0},this.#o=(s,a)=>{if(e[a]){let c=e[a],l=t[a];if(!c||!l)return;s.ttl=c,s.start=l,s.now=r||i();let u=s.now-l;s.remainingTTL=c-u}};let r=0,i=o(()=>{let s=Ml.now();if(this.ttlResolution>0){r=s;let a=setTimeout(()=>r=0,this.ttlResolution);a.unref&&a.unref()}return s},"getNow");this.getRemainingTTL=s=>{let a=this.#s.get(s);if(a===void 0)return 0;let c=e[a],l=t[a];if(!c||!l)return 1/0;let u=(r||i())-l;return c-u},this.#A=s=>{let a=t[s],c=e[s];return!!c&&!!a&&(r||i())-a>c}}#I=o(()=>{},"#updateItemAge");#o=o(()=>{},"#statusTTL");#F=o(()=>{},"#setItemTTL");#A=o(()=>!1,"#isStale");#O(){let e=new jl(this.#e);this.#u=0,this.#E=e,this.#D=t=>{this.#u-=e[t],e[t]=0},this.#L=(t,r,i,s)=>{if(this.#h(r))return 0;if(!Xa(i))if(s){if(typeof s!="function")throw new TypeError("sizeCalculation must be a function");if(i=s(r,t),!Xa(i))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}else throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");return i},this.#N=(t,r,i)=>{if(e[t]=r,this.#n){let s=this.#n-e[t];for(;this.#u>s;)this.#M(!0)}this.#u+=e[t],i&&(i.entrySize=r,i.totalCalculatedSize=this.#u)}}#D=o(e=>{},"#removeItemSize");#N=o((e,t,r)=>{},"#addItemSize");#L=o((e,t,r,i)=>{if(r||i)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");return 0},"#requireSize");*#C({allowStale:e=this.allowStale}={}){if(this.#i)for(let t=this.#m;!(!this.#k(t)||((e||!this.#A(t))&&(yield t),t===this.#d));)t=this.#g[t]}*#R({allowStale:e=this.allowStale}={}){if(this.#i)for(let t=this.#d;!(!this.#k(t)||((e||!this.#A(t))&&(yield t),t===this.#m));)t=this.#p[t]}#k(e){return e!==void 0&&this.#s.get(this.#l[e])===e}*entries(){for(let e of this.#C())this.#a[e]!==void 0&&this.#l[e]!==void 0&&!this.#h(this.#a[e])&&(yield[this.#l[e],this.#a[e]])}*rentries(){for(let e of this.#R())this.#a[e]!==void 0&&this.#l[e]!==void 0&&!this.#h(this.#a[e])&&(yield[this.#l[e],this.#a[e]])}*keys(){for(let e of this.#C()){let t=this.#l[e];t!==void 0&&!this.#h(this.#a[e])&&(yield t)}}*rkeys(){for(let e of this.#R()){let t=this.#l[e];t!==void 0&&!this.#h(this.#a[e])&&(yield t)}}*values(){for(let e of this.#C())this.#a[e]!==void 0&&!this.#h(this.#a[e])&&(yield this.#a[e])}*rvalues(){for(let e of this.#R())this.#a[e]!==void 0&&!this.#h(this.#a[e])&&(yield this.#a[e])}[Symbol.iterator](){return this.entries()}[Symbol.toStringTag]="LRUCache";find(e,t={}){for(let r of this.#C()){let i=this.#a[r],s=this.#h(i)?i.__staleWhileFetching:i;if(s!==void 0&&e(s,this.#l[r],this))return this.get(this.#l[r],t)}}forEach(e,t=this){for(let r of this.#C()){let i=this.#a[r],s=this.#h(i)?i.__staleWhileFetching:i;s!==void 0&&e.call(t,s,this.#l[r],this)}}rforEach(e,t=this){for(let r of this.#R()){let i=this.#a[r],s=this.#h(i)?i.__staleWhileFetching:i;s!==void 0&&e.call(t,s,this.#l[r],this)}}purgeStale(){let e=!1;for(let t of this.#R({allowStale:!0}))this.#A(t)&&(this.#P(this.#l[t],"expire"),e=!0);return e}info(e){let t=this.#s.get(e);if(t===void 0)return;let r=this.#a[t],i=this.#h(r)?r.__staleWhileFetching:r;if(i===void 0)return;let s={value:i};if(this.#S&&this.#T){let a=this.#S[t],c=this.#T[t];if(a&&c){let l=a-(Ml.now()-c);s.ttl=l,s.start=Date.now()}}return this.#E&&(s.size=this.#E[t]),s}dump(){let e=[];for(let t of this.#C({allowStale:!0})){let r=this.#l[t],i=this.#a[t],s=this.#h(i)?i.__staleWhileFetching:i;if(s===void 0||r===void 0)continue;let a={value:s};if(this.#S&&this.#T){a.ttl=this.#S[t];let c=Ml.now()-this.#T[t];a.start=Math.floor(Date.now()-c)}this.#E&&(a.size=this.#E[t]),e.unshift([r,a])}return e}load(e){this.clear();for(let[t,r]of e){if(r.start){let i=Date.now()-r.start;r.start=Ml.now()-i}this.set(t,r.value,r)}}set(e,t,r={}){if(t===void 0)return this.delete(e),this;let{ttl:i=this.ttl,start:s,noDisposeOnSet:a=this.noDisposeOnSet,sizeCalculation:c=this.sizeCalculation,status:l}=r,{noUpdateTTL:u=this.noUpdateTTL}=r,f=this.#L(e,t,r.size||0,c);if(this.maxEntrySize&&f>this.maxEntrySize)return l&&(l.set="miss",l.maxEntrySizeExceeded=!0),this.#P(e,"set"),this;let d=this.#i===0?void 0:this.#s.get(e);if(d===void 0)d=this.#i===0?this.#m:this.#y.length!==0?this.#y.pop():this.#i===this.#e?this.#M(!1):this.#i,this.#l[d]=e,this.#a[d]=t,this.#s.set(e,d),this.#p[this.#m]=d,this.#g[d]=this.#m,this.#m=d,this.#i++,this.#N(d,f,l),l&&(l.set="add"),u=!1;else{this.#V(d);let h=this.#a[d];if(t!==h){if(this.#b&&this.#h(h)){h.__abortController.abort(new Error("replaced"));let{__staleWhileFetching:p}=h;p!==void 0&&!a&&(this.#w&&this.#r?.(p,e,"set"),this.#v&&this.#f?.push([p,e,"set"]))}else a||(this.#w&&this.#r?.(h,e,"set"),this.#v&&this.#f?.push([h,e,"set"]));if(this.#D(d),this.#N(d,f,l),this.#a[d]=t,l){l.set="replace";let p=h&&this.#h(h)?h.__staleWhileFetching:h;p!==void 0&&(l.oldValue=p)}}else l&&(l.set="update")}if(i!==0&&!this.#S&&this.#x(),this.#S&&(u||this.#F(d,i,s),l&&this.#o(l,d)),!a&&this.#v&&this.#f){let h=this.#f,p;for(;p=h?.shift();)this.#t?.(...p)}return this}pop(){try{for(;this.#i;){let e=this.#a[this.#d];if(this.#M(!0),this.#h(e)){if(e.__staleWhileFetching)return e.__staleWhileFetching}else if(e!==void 0)return e}}finally{if(this.#v&&this.#f){let e=this.#f,t;for(;t=e?.shift();)this.#t?.(...t)}}}#M(e){let t=this.#d,r=this.#l[t],i=this.#a[t];return this.#b&&this.#h(i)?i.__abortController.abort(new Error("evicted")):(this.#w||this.#v)&&(this.#w&&this.#r?.(i,r,"evict"),this.#v&&this.#f?.push([i,r,"evict"])),this.#D(t),e&&(this.#l[t]=void 0,this.#a[t]=void 0,this.#y.push(t)),this.#i===1?(this.#d=this.#m=0,this.#y.length=0):this.#d=this.#p[t],this.#s.delete(r),this.#i--,t}has(e,t={}){let{updateAgeOnHas:r=this.updateAgeOnHas,status:i}=t,s=this.#s.get(e);if(s!==void 0){let a=this.#a[s];if(this.#h(a)&&a.__staleWhileFetching===void 0)return!1;if(this.#A(s))i&&(i.has="stale",this.#o(i,s));else return r&&this.#I(s),i&&(i.has="hit",this.#o(i,s)),!0}else i&&(i.has="miss");return!1}peek(e,t={}){let{allowStale:r=this.allowStale}=t,i=this.#s.get(e);if(i===void 0||!r&&this.#A(i))return;let s=this.#a[i];return this.#h(s)?s.__staleWhileFetching:s}#j(e,t,r,i){let s=t===void 0?void 0:this.#a[t];if(this.#h(s))return s;let a=new ag,{signal:c}=r;c?.addEventListener("abort",()=>a.abort(c.reason),{signal:a.signal});let l={signal:a.signal,options:r,context:i},u=o((b,w=!1)=>{let{aborted:v}=a.signal,T=r.ignoreFetchAbort&&b!==void 0;if(r.status&&(v&&!w?(r.status.fetchAborted=!0,r.status.fetchError=a.signal.reason,T&&(r.status.fetchAbortIgnored=!0)):r.status.fetchResolved=!0),v&&!T&&!w)return d(a.signal.reason);let C=p;return this.#a[t]===p&&(b===void 0?C.__staleWhileFetching?this.#a[t]=C.__staleWhileFetching:this.#P(e,"fetch"):(r.status&&(r.status.fetchUpdated=!0),this.set(e,b,l.options))),b},"cb"),f=o(b=>(r.status&&(r.status.fetchRejected=!0,r.status.fetchError=b),d(b)),"eb"),d=o(b=>{let{aborted:w}=a.signal,v=w&&r.allowStaleOnFetchAbort,T=v||r.allowStaleOnFetchRejection,C=T||r.noDeleteOnFetchRejection,L=p;if(this.#a[t]===p&&(!C||L.__staleWhileFetching===void 0?this.#P(e,"fetch"):v||(this.#a[t]=L.__staleWhileFetching)),T)return r.status&&L.__staleWhileFetching!==void 0&&(r.status.returnedStale=!0),L.__staleWhileFetching;if(L.__returned===L)throw b},"fetchFail"),h=o((b,w)=>{let v=this.#c?.(e,s,l);v&&v instanceof Promise&&v.then(T=>b(T===void 0?void 0:T),w),a.signal.addEventListener("abort",()=>{(!r.ignoreFetchAbort||r.allowStaleOnFetchAbort)&&(b(void 0),r.allowStaleOnFetchAbort&&(b=o(T=>u(T,!0),"res")))})},"pcall");r.status&&(r.status.fetchDispatched=!0);let p=new Promise(h).then(u,f),y=Object.assign(p,{__abortController:a,__staleWhileFetching:s,__returned:void 0});return t===void 0?(this.set(e,y,{...l.options,status:void 0}),t=this.#s.get(e)):this.#a[t]=y,y}#h(e){if(!this.#b)return!1;let t=e;return!!t&&t instanceof Promise&&t.hasOwnProperty("__staleWhileFetching")&&t.__abortController instanceof ag}async fetch(e,t={}){let{allowStale:r=this.allowStale,updateAgeOnGet:i=this.updateAgeOnGet,noDeleteOnStaleGet:s=this.noDeleteOnStaleGet,ttl:a=this.ttl,noDisposeOnSet:c=this.noDisposeOnSet,size:l=0,sizeCalculation:u=this.sizeCalculation,noUpdateTTL:f=this.noUpdateTTL,noDeleteOnFetchRejection:d=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:h=this.allowStaleOnFetchRejection,ignoreFetchAbort:p=this.ignoreFetchAbort,allowStaleOnFetchAbort:y=this.allowStaleOnFetchAbort,context:b,forceRefresh:w=!1,status:v,signal:T}=t;if(!this.#b)return v&&(v.fetch="get"),this.get(e,{allowStale:r,updateAgeOnGet:i,noDeleteOnStaleGet:s,status:v});let C={allowStale:r,updateAgeOnGet:i,noDeleteOnStaleGet:s,ttl:a,noDisposeOnSet:c,size:l,sizeCalculation:u,noUpdateTTL:f,noDeleteOnFetchRejection:d,allowStaleOnFetchRejection:h,allowStaleOnFetchAbort:y,ignoreFetchAbort:p,status:v,signal:T},L=this.#s.get(e);if(L===void 0){v&&(v.fetch="miss");let V=this.#j(e,L,C,b);return V.__returned=V}else{let V=this.#a[L];if(this.#h(V)){let k=r&&V.__staleWhileFetching!==void 0;return v&&(v.fetch="inflight",k&&(v.returnedStale=!0)),k?V.__staleWhileFetching:V.__returned=V}let ae=this.#A(L);if(!w&&!ae)return v&&(v.fetch="hit"),this.#V(L),i&&this.#I(L),v&&this.#o(v,L),V;let $=this.#j(e,L,C,b),F=$.__staleWhileFetching!==void 0&&r;return v&&(v.fetch=ae?"stale":"refresh",F&&ae&&(v.returnedStale=!0)),F?$.__staleWhileFetching:$.__returned=$}}async forceFetch(e,t={}){let r=await this.fetch(e,t);if(r===void 0)throw new Error("fetch() returned undefined");return r}memo(e,t={}){let r=this.#_;if(!r)throw new Error("no memoMethod provided to constructor");let{context:i,forceRefresh:s,...a}=t,c=this.get(e,a);if(!s&&c!==void 0)return c;let l=r(e,c,{options:a,context:i});return this.set(e,l,a),l}get(e,t={}){let{allowStale:r=this.allowStale,updateAgeOnGet:i=this.updateAgeOnGet,noDeleteOnStaleGet:s=this.noDeleteOnStaleGet,status:a}=t,c=this.#s.get(e);if(c!==void 0){let l=this.#a[c],u=this.#h(l);return a&&this.#o(a,c),this.#A(c)?(a&&(a.get="stale"),u?(a&&r&&l.__staleWhileFetching!==void 0&&(a.returnedStale=!0),r?l.__staleWhileFetching:void 0):(s||this.#P(e,"expire"),a&&r&&(a.returnedStale=!0),r?l:void 0)):(a&&(a.get="hit"),u?l.__staleWhileFetching:(this.#V(c),i&&this.#I(c),l))}else a&&(a.get="miss")}#$(e,t){this.#g[t]=e,this.#p[e]=t}#V(e){e!==this.#m&&(e===this.#d?this.#d=this.#p[e]:this.#$(this.#g[e],this.#p[e]),this.#$(this.#m,e),this.#m=e)}delete(e){return this.#P(e,"delete")}#P(e,t){let r=!1;if(this.#i!==0){let i=this.#s.get(e);if(i!==void 0)if(r=!0,this.#i===1)this.#U(t);else{this.#D(i);let s=this.#a[i];if(this.#h(s)?s.__abortController.abort(new Error("deleted")):(this.#w||this.#v)&&(this.#w&&this.#r?.(s,e,t),this.#v&&this.#f?.push([s,e,t])),this.#s.delete(e),this.#l[i]=void 0,this.#a[i]=void 0,i===this.#m)this.#m=this.#g[i];else if(i===this.#d)this.#d=this.#p[i];else{let a=this.#g[i];this.#p[a]=this.#p[i];let c=this.#p[i];this.#g[c]=this.#g[i]}this.#i--,this.#y.push(i)}}if(this.#v&&this.#f?.length){let i=this.#f,s;for(;s=i?.shift();)this.#t?.(...s)}return r}clear(){return this.#U("delete")}#U(e){for(let t of this.#R({allowStale:!0})){let r=this.#a[t];if(this.#h(r))r.__abortController.abort(new Error("deleted"));else{let i=this.#l[t];this.#w&&this.#r?.(r,i,e),this.#v&&this.#f?.push([r,i,e])}}if(this.#s.clear(),this.#a.fill(void 0),this.#l.fill(void 0),this.#S&&this.#T&&(this.#S.fill(0),this.#T.fill(0)),this.#E&&this.#E.fill(0),this.#d=0,this.#m=0,this.#y.length=0,this.#u=0,this.#i=0,this.#v&&this.#f){let t=this.#f,r;for(;r=t?.shift();)this.#t?.(...r)}}};var Ul=require("node:path"),jP=require("node:url"),Cs=require("fs"),NQ=Z(require("node:fs"),1),eo=require("node:fs/promises");var hg=require("node:events"),Nw=Z(require("node:stream"),1),DP=require("node:string_decoder");var RP=typeof process=="object"&&process?process:{stdout:null,stderr:null},AQ=o(n=>!!n&&typeof n=="object"&&(n instanceof Za||n instanceof Nw.default||xQ(n)||IQ(n)),"isStream"),xQ=o(n=>!!n&&typeof n=="object"&&n instanceof hg.EventEmitter&&typeof n.pipe=="function"&&n.pipe!==Nw.default.Writable.prototype.pipe,"isReadable"),IQ=o(n=>!!n&&typeof n=="object"&&n instanceof hg.EventEmitter&&typeof n.write=="function"&&typeof n.end=="function","isWritable"),ha=Symbol("EOF"),pa=Symbol("maybeEmitEnd"),Ja=Symbol("emittedEnd"),og=Symbol("emittingEnd"),Lf=Symbol("emittedError"),cg=Symbol("closed"),OP=Symbol("read"),lg=Symbol("flush"),PP=Symbol("flushChunk"),Gi=Symbol("encoding"),$l=Symbol("decoder"),Er=Symbol("flowing"),kf=Symbol("paused"),Vl=Symbol("resume"),Tr=Symbol("buffer"),_n=Symbol("pipes"),Ar=Symbol("bufferLength"),Cw=Symbol("bufferPush"),ug=Symbol("bufferShift"),Yr=Symbol("objectMode"),Qt=Symbol("destroyed"),Rw=Symbol("error"),Ow=Symbol("emitData"),FP=Symbol("emitEnd"),Pw=Symbol("emitEnd2"),xs=Symbol("async"),Fw=Symbol("abort"),fg=Symbol("aborted"),Mf=Symbol("signal"),Jo=Symbol("dataListeners"),Bn=Symbol("discarded"),jf=o(n=>Promise.resolve().then(n),"defer"),CQ=o(n=>n(),"nodefer"),RQ=o(n=>n==="end"||n==="finish"||n==="prefinish","isEndish"),OQ=o(n=>n instanceof ArrayBuffer||!!n&&typeof n=="object"&&n.constructor&&n.constructor.name==="ArrayBuffer"&&n.byteLength>=0,"isArrayBufferLike"),PQ=o(n=>!Buffer.isBuffer(n)&&ArrayBuffer.isView(n),"isArrayBufferView"),dg=class{static{o(this,"Pipe")}src;dest;opts;ondrain;constructor(e,t,r){this.src=e,this.dest=t,this.opts=r,this.ondrain=()=>e[Vl](),this.dest.on("drain",this.ondrain)}unpipe(){this.dest.removeListener("drain",this.ondrain)}proxyErrors(e){}end(){this.unpipe(),this.opts.end&&this.dest.end()}},Dw=class extends dg{static{o(this,"PipeProxyErrors")}unpipe(){this.src.removeListener("error",this.proxyErrors),super.unpipe()}constructor(e,t,r){super(e,t,r),this.proxyErrors=i=>t.emit("error",i),e.on("error",this.proxyErrors)}},FQ=o(n=>!!n.objectMode,"isObjectModeOptions"),DQ=o(n=>!n.objectMode&&!!n.encoding&&n.encoding!=="buffer","isEncodingOptions"),Za=class extends hg.EventEmitter{static{o(this,"Minipass")}[Er]=!1;[kf]=!1;[_n]=[];[Tr]=[];[Yr];[Gi];[xs];[$l];[ha]=!1;[Ja]=!1;[og]=!1;[cg]=!1;[Lf]=null;[Ar]=0;[Qt]=!1;[Mf];[fg]=!1;[Jo]=0;[Bn]=!1;writable=!0;readable=!0;constructor(...e){let t=e[0]||{};if(super(),t.objectMode&&typeof t.encoding=="string")throw new TypeError("Encoding and objectMode may not be used together");FQ(t)?(this[Yr]=!0,this[Gi]=null):DQ(t)?(this[Gi]=t.encoding,this[Yr]=!1):(this[Yr]=!1,this[Gi]=null),this[xs]=!!t.async,this[$l]=this[Gi]?new DP.StringDecoder(this[Gi]):null,t&&t.debugExposeBuffer===!0&&Object.defineProperty(this,"buffer",{get:o(()=>this[Tr],"get")}),t&&t.debugExposePipes===!0&&Object.defineProperty(this,"pipes",{get:o(()=>this[_n],"get")});let{signal:r}=t;r&&(this[Mf]=r,r.aborted?this[Fw]():r.addEventListener("abort",()=>this[Fw]()))}get bufferLength(){return this[Ar]}get encoding(){return this[Gi]}set encoding(e){throw new Error("Encoding must be set at instantiation time")}setEncoding(e){throw new Error("Encoding must be set at instantiation time")}get objectMode(){return this[Yr]}set objectMode(e){throw new Error("objectMode must be set at instantiation time")}get async(){return this[xs]}set async(e){this[xs]=this[xs]||!!e}[Fw](){this[fg]=!0,this.emit("abort",this[Mf]?.reason),this.destroy(this[Mf]?.reason)}get aborted(){return this[fg]}set aborted(e){}write(e,t,r){if(this[fg])return!1;if(this[ha])throw new Error("write after end");if(this[Qt])return this.emit("error",Object.assign(new Error("Cannot call write after a stream was destroyed"),{code:"ERR_STREAM_DESTROYED"})),!0;typeof t=="function"&&(r=t,t="utf8"),t||(t="utf8");let i=this[xs]?jf:CQ;if(!this[Yr]&&!Buffer.isBuffer(e)){if(PQ(e))e=Buffer.from(e.buffer,e.byteOffset,e.byteLength);else if(OQ(e))e=Buffer.from(e);else if(typeof e!="string")throw new Error("Non-contiguous data written to non-objectMode stream")}return this[Yr]?(this[Er]&&this[Ar]!==0&&this[lg](!0),this[Er]?this.emit("data",e):this[Cw](e),this[Ar]!==0&&this.emit("readable"),r&&i(r),this[Er]):e.length?(typeof e=="string"&&!(t===this[Gi]&&!this[$l]?.lastNeed)&&(e=Buffer.from(e,t)),Buffer.isBuffer(e)&&this[Gi]&&(e=this[$l].write(e)),this[Er]&&this[Ar]!==0&&this[lg](!0),this[Er]?this.emit("data",e):this[Cw](e),this[Ar]!==0&&this.emit("readable"),r&&i(r),this[Er]):(this[Ar]!==0&&this.emit("readable"),r&&i(r),this[Er])}read(e){if(this[Qt])return null;if(this[Bn]=!1,this[Ar]===0||e===0||e&&e>this[Ar])return this[pa](),null;this[Yr]&&(e=null),this[Tr].length>1&&!this[Yr]&&(this[Tr]=[this[Gi]?this[Tr].join(""):Buffer.concat(this[Tr],this[Ar])]);let t=this[OP](e||null,this[Tr][0]);return this[pa](),t}[OP](e,t){if(this[Yr])this[ug]();else{let r=t;e===r.length||e===null?this[ug]():typeof r=="string"?(this[Tr][0]=r.slice(e),t=r.slice(0,e),this[Ar]-=e):(this[Tr][0]=r.subarray(e),t=r.subarray(0,e),this[Ar]-=e)}return this.emit("data",t),!this[Tr].length&&!this[ha]&&this.emit("drain"),t}end(e,t,r){return typeof e=="function"&&(r=e,e=void 0),typeof t=="function"&&(r=t,t="utf8"),e!==void 0&&this.write(e,t),r&&this.once("end",r),this[ha]=!0,this.writable=!1,(this[Er]||!this[kf])&&this[pa](),this}[Vl](){this[Qt]||(!this[Jo]&&!this[_n].length&&(this[Bn]=!0),this[kf]=!1,this[Er]=!0,this.emit("resume"),this[Tr].length?this[lg]():this[ha]?this[pa]():this.emit("drain"))}resume(){return this[Vl]()}pause(){this[Er]=!1,this[kf]=!0,this[Bn]=!1}get destroyed(){return this[Qt]}get flowing(){return this[Er]}get paused(){return this[kf]}[Cw](e){this[Yr]?this[Ar]+=1:this[Ar]+=e.length,this[Tr].push(e)}[ug](){return this[Yr]?this[Ar]-=1:this[Ar]-=this[Tr][0].length,this[Tr].shift()}[lg](e=!1){do;while(this[PP](this[ug]())&&this[Tr].length);!e&&!this[Tr].length&&!this[ha]&&this.emit("drain")}[PP](e){return this.emit("data",e),this[Er]}pipe(e,t){if(this[Qt])return e;this[Bn]=!1;let r=this[Ja];return t=t||{},e===RP.stdout||e===RP.stderr?t.end=!1:t.end=t.end!==!1,t.proxyErrors=!!t.proxyErrors,r?t.end&&e.end():(this[_n].push(t.proxyErrors?new Dw(this,e,t):new dg(this,e,t)),this[xs]?jf(()=>this[Vl]()):this[Vl]()),e}unpipe(e){let t=this[_n].find(r=>r.dest===e);t&&(this[_n].length===1?(this[Er]&&this[Jo]===0&&(this[Er]=!1),this[_n]=[]):this[_n].splice(this[_n].indexOf(t),1),t.unpipe())}addListener(e,t){return this.on(e,t)}on(e,t){let r=super.on(e,t);if(e==="data")this[Bn]=!1,this[Jo]++,!this[_n].length&&!this[Er]&&this[Vl]();else if(e==="readable"&&this[Ar]!==0)super.emit("readable");else if(RQ(e)&&this[Ja])super.emit(e),this.removeAllListeners(e);else if(e==="error"&&this[Lf]){let i=t;this[xs]?jf(()=>i.call(this,this[Lf])):i.call(this,this[Lf])}return r}removeListener(e,t){return this.off(e,t)}off(e,t){let r=super.off(e,t);return e==="data"&&(this[Jo]=this.listeners("data").length,this[Jo]===0&&!this[Bn]&&!this[_n].length&&(this[Er]=!1)),r}removeAllListeners(e){let t=super.removeAllListeners(e);return(e==="data"||e===void 0)&&(this[Jo]=0,!this[Bn]&&!this[_n].length&&(this[Er]=!1)),t}get emittedEnd(){return this[Ja]}[pa](){!this[og]&&!this[Ja]&&!this[Qt]&&this[Tr].length===0&&this[ha]&&(this[og]=!0,this.emit("end"),this.emit("prefinish"),this.emit("finish"),this[cg]&&this.emit("close"),this[og]=!1)}emit(e,...t){let r=t[0];if(e!=="error"&&e!=="close"&&e!==Qt&&this[Qt])return!1;if(e==="data")return!this[Yr]&&!r?!1:this[xs]?(jf(()=>this[Ow](r)),!0):this[Ow](r);if(e==="end")return this[FP]();if(e==="close"){if(this[cg]=!0,!this[Ja]&&!this[Qt])return!1;let s=super.emit("close");return this.removeAllListeners("close"),s}else if(e==="error"){this[Lf]=r,super.emit(Rw,r);let s=!this[Mf]||this.listeners("error").length?super.emit("error",r):!1;return this[pa](),s}else if(e==="resume"){let s=super.emit("resume");return this[pa](),s}else if(e==="finish"||e==="prefinish"){let s=super.emit(e);return this.removeAllListeners(e),s}let i=super.emit(e,...t);return this[pa](),i}[Ow](e){for(let r of this[_n])r.dest.write(e)===!1&&this.pause();let t=this[Bn]?!1:super.emit("data",e);return this[pa](),t}[FP](){return this[Ja]?!1:(this[Ja]=!0,this.readable=!1,this[xs]?(jf(()=>this[Pw]()),!0):this[Pw]())}[Pw](){if(this[$l]){let t=this[$l].end();if(t){for(let r of this[_n])r.dest.write(t);this[Bn]||super.emit("data",t)}}for(let t of this[_n])t.end();let e=super.emit("end");return this.removeAllListeners("end"),e}async collect(){let e=Object.assign([],{dataLength:0});this[Yr]||(e.dataLength=0);let t=this.promise();return this.on("data",r=>{e.push(r),this[Yr]||(e.dataLength+=r.length)}),await t,e}async concat(){if(this[Yr])throw new Error("cannot concat in objectMode");let e=await this.collect();return this[Gi]?e.join(""):Buffer.concat(e,e.dataLength)}async promise(){return new Promise((e,t)=>{this.on(Qt,()=>t(new Error("stream destroyed"))),this.on("error",r=>t(r)),this.on("end",()=>e())})}[Symbol.asyncIterator](){this[Bn]=!1;let e=!1,t=o(async()=>(this.pause(),e=!0,{value:void 0,done:!0}),"stop");return{next:o(()=>{if(e)return t();let i=this.read();if(i!==null)return Promise.resolve({done:!1,value:i});if(this[ha])return t();let s,a,c=o(d=>{this.off("data",l),this.off("end",u),this.off(Qt,f),t(),a(d)},"onerr"),l=o(d=>{this.off("error",c),this.off("end",u),this.off(Qt,f),this.pause(),s({value:d,done:!!this[ha]})},"ondata"),u=o(()=>{this.off("error",c),this.off("data",l),this.off(Qt,f),t(),s({done:!0,value:void 0})},"onend"),f=o(()=>c(new Error("stream destroyed")),"ondestroy");return new Promise((d,h)=>{a=h,s=d,this.once(Qt,f),this.once("error",c),this.once("end",u),this.once("data",l)})},"next"),throw:t,return:t,[Symbol.asyncIterator](){return this}}}[Symbol.iterator](){this[Bn]=!1;let e=!1,t=o(()=>(this.pause(),this.off(Rw,t),this.off(Qt,t),this.off("end",t),e=!0,{done:!0,value:void 0}),"stop"),r=o(()=>{if(e)return t();let i=this.read();return i===null?t():{done:!1,value:i}},"next");return this.once("end",t),this.once(Rw,t),this.once(Qt,t),{next:r,throw:t,return:t,[Symbol.iterator](){return this}}}destroy(e){if(this[Qt])return e?this.emit("error",e):this.emit(Qt),this;this[Qt]=!0,this[Bn]=!0,this[Tr].length=0,this[Ar]=0;let t=this;return typeof t.close=="function"&&!this[cg]&&t.close(),e?this.emit("error",e):this.emit(Qt),this}static get isStream(){return AQ}};var LQ=Cs.realpathSync.native,Vf={lstatSync:Cs.lstatSync,readdir:Cs.readdir,readdirSync:Cs.readdirSync,readlinkSync:Cs.readlinkSync,realpathSync:LQ,promises:{lstat:eo.lstat,readdir:eo.readdir,readlink:eo.readlink,realpath:eo.realpath}},$P=o(n=>!n||n===Vf||n===NQ?Vf:{...Vf,...n,promises:{...Vf.promises,...n.promises||{}}},"fsFromOption"),VP=/^\\\\\?\\([a-z]:)\\?$/i,kQ=o(n=>n.replace(/\//g,"\\").replace(VP,"$1\\"),"uncToDrive"),MQ=/[\\\/]/,oi=0,UP=1,BP=2,Is=4,qP=6,WP=8,Zo=10,GP=12,ai=15,$f=~ai,Lw=16,NP=32,Uf=64,zi=128,pg=256,gg=512,LP=Uf|zi|gg,jQ=1023,kw=o(n=>n.isFile()?WP:n.isDirectory()?Is:n.isSymbolicLink()?Zo:n.isCharacterDevice()?BP:n.isBlockDevice()?qP:n.isSocket()?GP:n.isFIFO()?UP:oi,"entToType"),kP=new Map,Bf=o(n=>{let e=kP.get(n);if(e)return e;let t=n.normalize("NFKD");return kP.set(n,t),t},"normalize"),MP=new Map,mg=o(n=>{let e=MP.get(n);if(e)return e;let t=Bf(n.toLowerCase());return MP.set(n,t),t},"normalizeNocase"),yg=class extends Nf{static{o(this,"ResolveCache")}constructor(){super({max:256})}},Mw=class extends Nf{static{o(this,"ChildrenCache")}constructor(e=16*1024){super({maxSize:e,sizeCalculation:o(t=>t.length+1,"sizeCalculation")})}},zP=Symbol("PathScurry setAsCwd"),Xr=class{static{o(this,"PathBase")}name;root;roots;parent;nocase;isCWD=!1;#e;#n;get dev(){return this.#n}#r;get mode(){return this.#r}#t;get nlink(){return this.#t}#c;get uid(){return this.#c}#_;get gid(){return this.#_}#i;get rdev(){return this.#i}#u;get blksize(){return this.#u}#s;get ino(){return this.#s}#l;get size(){return this.#l}#a;get blocks(){return this.#a}#p;get atimeMs(){return this.#p}#g;get mtimeMs(){return this.#g}#d;get ctimeMs(){return this.#d}#m;get birthtimeMs(){return this.#m}#y;get atime(){return this.#y}#f;get mtime(){return this.#f}#E;get ctime(){return this.#E}#T;get birthtime(){return this.#T}#S;#w;#b;#v;#x;#I;#o;#F;#A;#O;get parentPath(){return(this.parent||this).fullpath()}get path(){return this.parentPath}constructor(e,t=oi,r,i,s,a,c){this.name=e,this.#S=s?mg(e):Bf(e),this.#o=t&jQ,this.nocase=s,this.roots=i,this.root=r||this,this.#F=a,this.#b=c.fullpath,this.#x=c.relative,this.#I=c.relativePosix,this.parent=c.parent,this.parent?this.#e=this.parent.#e:this.#e=$P(c.fs)}depth(){return this.#w!==void 0?this.#w:this.parent?this.#w=this.parent.depth()+1:this.#w=0}childrenCache(){return this.#F}resolve(e){if(!e)return this;let t=this.getRootString(e),i=e.substring(t.length).split(this.splitSep);return t?this.getRoot(t).#D(i):this.#D(i)}#D(e){let t=this;for(let r of e)t=t.child(r);return t}children(){let e=this.#F.get(this);if(e)return e;let t=Object.assign([],{provisional:0});return this.#F.set(this,t),this.#o&=~Lw,t}child(e,t){if(e===""||e===".")return this;if(e==="..")return this.parent||this;let r=this.children(),i=this.nocase?mg(e):Bf(e);for(let l of r)if(l.#S===i)return l;let s=this.parent?this.sep:"",a=this.#b?this.#b+s+e:void 0,c=this.newChild(e,oi,{...t,parent:this,fullpath:a});return this.canReaddir()||(c.#o|=zi),r.push(c),c}relative(){if(this.isCWD)return"";if(this.#x!==void 0)return this.#x;let e=this.name,t=this.parent;if(!t)return this.#x=this.name;let r=t.relative();return r+(!r||!t.parent?"":this.sep)+e}relativePosix(){if(this.sep==="/")return this.relative();if(this.isCWD)return"";if(this.#I!==void 0)return this.#I;let e=this.name,t=this.parent;if(!t)return this.#I=this.fullpathPosix();let r=t.relativePosix();return r+(!r||!t.parent?"":"/")+e}fullpath(){if(this.#b!==void 0)return this.#b;let e=this.name,t=this.parent;if(!t)return this.#b=this.name;let i=t.fullpath()+(t.parent?this.sep:"")+e;return this.#b=i}fullpathPosix(){if(this.#v!==void 0)return this.#v;if(this.sep==="/")return this.#v=this.fullpath();if(!this.parent){let i=this.fullpath().replace(/\\/g,"/");return/^[a-z]:\//i.test(i)?this.#v=`//?/${i}`:this.#v=i}let e=this.parent,t=e.fullpathPosix(),r=t+(!t||!e.parent?"":"/")+this.name;return this.#v=r}isUnknown(){return(this.#o&ai)===oi}isType(e){return this[`is${e}`]()}getType(){return this.isUnknown()?"Unknown":this.isDirectory()?"Directory":this.isFile()?"File":this.isSymbolicLink()?"SymbolicLink":this.isFIFO()?"FIFO":this.isCharacterDevice()?"CharacterDevice":this.isBlockDevice()?"BlockDevice":this.isSocket()?"Socket":"Unknown"}isFile(){return(this.#o&ai)===WP}isDirectory(){return(this.#o&ai)===Is}isCharacterDevice(){return(this.#o&ai)===BP}isBlockDevice(){return(this.#o&ai)===qP}isFIFO(){return(this.#o&ai)===UP}isSocket(){return(this.#o&ai)===GP}isSymbolicLink(){return(this.#o&Zo)===Zo}lstatCached(){return this.#o&NP?this:void 0}readlinkCached(){return this.#A}realpathCached(){return this.#O}readdirCached(){let e=this.children();return e.slice(0,e.provisional)}canReadlink(){if(this.#A)return!0;if(!this.parent)return!1;let e=this.#o&ai;return!(e!==oi&&e!==Zo||this.#o&pg||this.#o&zi)}calledReaddir(){return!!(this.#o&Lw)}isENOENT(){return!!(this.#o&zi)}isNamed(e){return this.nocase?this.#S===mg(e):this.#S===Bf(e)}async readlink(){let e=this.#A;if(e)return e;if(this.canReadlink()&&this.parent)try{let t=await this.#e.promises.readlink(this.fullpath()),r=(await this.parent.realpath())?.resolve(t);if(r)return this.#A=r}catch(t){this.#h(t.code);return}}readlinkSync(){let e=this.#A;if(e)return e;if(this.canReadlink()&&this.parent)try{let t=this.#e.readlinkSync(this.fullpath()),r=this.parent.realpathSync()?.resolve(t);if(r)return this.#A=r}catch(t){this.#h(t.code);return}}#N(e){this.#o|=Lw;for(let t=e.provisional;t<e.length;t++){let r=e[t];r&&r.#L()}}#L(){this.#o&zi||(this.#o=(this.#o|zi)&$f,this.#C())}#C(){let e=this.children();e.provisional=0;for(let t of e)t.#L()}#R(){this.#o|=gg,this.#k()}#k(){if(this.#o&Uf)return;let e=this.#o;(e&ai)===Is&&(e&=$f),this.#o=e|Uf,this.#C()}#M(e=""){e==="ENOTDIR"||e==="EPERM"?this.#k():e==="ENOENT"?this.#L():this.children().provisional=0}#j(e=""){e==="ENOTDIR"?this.parent.#k():e==="ENOENT"&&this.#L()}#h(e=""){let t=this.#o;t|=pg,e==="ENOENT"&&(t|=zi),(e==="EINVAL"||e==="UNKNOWN")&&(t&=$f),this.#o=t,e==="ENOTDIR"&&this.parent&&this.parent.#k()}#$(e,t){return this.#P(e,t)||this.#V(e,t)}#V(e,t){let r=kw(e),i=this.newChild(e.name,r,{parent:this}),s=i.#o&ai;return s!==Is&&s!==Zo&&s!==oi&&(i.#o|=Uf),t.unshift(i),t.provisional++,i}#P(e,t){for(let r=t.provisional;r<t.length;r++){let i=t[r];if((this.nocase?mg(e.name):Bf(e.name))===i.#S)return this.#U(e,i,r,t)}}#U(e,t,r,i){let s=t.name;return t.#o=t.#o&$f|kw(e),s!==e.name&&(t.name=e.name),r!==i.provisional&&(r===i.length-1?i.pop():i.splice(r,1),i.unshift(t)),i.provisional++,t}async lstat(){if((this.#o&zi)===0)try{return this.#G(await this.#e.promises.lstat(this.fullpath())),this}catch(e){this.#j(e.code)}}lstatSync(){if((this.#o&zi)===0)try{return this.#G(this.#e.lstatSync(this.fullpath())),this}catch(e){this.#j(e.code)}}#G(e){let{atime:t,atimeMs:r,birthtime:i,birthtimeMs:s,blksize:a,blocks:c,ctime:l,ctimeMs:u,dev:f,gid:d,ino:h,mode:p,mtime:y,mtimeMs:b,nlink:w,rdev:v,size:T,uid:C}=e;this.#y=t,this.#p=r,this.#T=i,this.#m=s,this.#u=a,this.#a=c,this.#E=l,this.#d=u,this.#n=f,this.#_=d,this.#s=h,this.#r=p,this.#f=y,this.#g=b,this.#t=w,this.#i=v,this.#l=T,this.#c=C;let L=kw(e);this.#o=this.#o&$f|L|NP,L!==oi&&L!==Is&&L!==Zo&&(this.#o|=Uf)}#q=[];#W=!1;#z(e){this.#W=!1;let t=this.#q.slice();this.#q.length=0,t.forEach(r=>r(null,e))}readdirCB(e,t=!1){if(!this.canReaddir()){t?e(null,[]):queueMicrotask(()=>e(null,[]));return}let r=this.children();if(this.calledReaddir()){let s=r.slice(0,r.provisional);t?e(null,s):queueMicrotask(()=>e(null,s));return}if(this.#q.push(e),this.#W)return;this.#W=!0;let i=this.fullpath();this.#e.readdir(i,{withFileTypes:!0},(s,a)=>{if(s)this.#M(s.code),r.provisional=0;else{for(let c of a)this.#$(c,r);this.#N(r)}this.#z(r.slice(0,r.provisional))})}#B;async readdir(){if(!this.canReaddir())return[];let e=this.children();if(this.calledReaddir())return e.slice(0,e.provisional);let t=this.fullpath();if(this.#B)await this.#B;else{let r=o(()=>{},"resolve");this.#B=new Promise(i=>r=i);try{for(let i of await this.#e.promises.readdir(t,{withFileTypes:!0}))this.#$(i,e);this.#N(e)}catch(i){this.#M(i.code),e.provisional=0}this.#B=void 0,r()}return e.slice(0,e.provisional)}readdirSync(){if(!this.canReaddir())return[];let e=this.children();if(this.calledReaddir())return e.slice(0,e.provisional);let t=this.fullpath();try{for(let r of this.#e.readdirSync(t,{withFileTypes:!0}))this.#$(r,e);this.#N(e)}catch(r){this.#M(r.code),e.provisional=0}return e.slice(0,e.provisional)}canReaddir(){if(this.#o&LP)return!1;let e=ai&this.#o;return e===oi||e===Is||e===Zo}shouldWalk(e,t){return(this.#o&Is)===Is&&!(this.#o&LP)&&!e.has(this)&&(!t||t(this))}async realpath(){if(this.#O)return this.#O;if(!((gg|pg|zi)&this.#o))try{let e=await this.#e.promises.realpath(this.fullpath());return this.#O=this.resolve(e)}catch{this.#R()}}realpathSync(){if(this.#O)return this.#O;if(!((gg|pg|zi)&this.#o))try{let e=this.#e.realpathSync(this.fullpath());return this.#O=this.resolve(e)}catch{this.#R()}}[zP](e){if(e===this)return;e.isCWD=!1,this.isCWD=!0;let t=new Set([]),r=[],i=this;for(;i&&i.parent;)t.add(i),i.#x=r.join(this.sep),i.#I=r.join("/"),i=i.parent,r.push("..");for(i=e;i&&i.parent&&!t.has(i);)i.#x=void 0,i.#I=void 0,i=i.parent}},_g=class n extends Xr{static{o(this,"PathWin32")}sep="\\";splitSep=MQ;constructor(e,t=oi,r,i,s,a,c){super(e,t,r,i,s,a,c)}newChild(e,t=oi,r={}){return new n(e,t,this.root,this.roots,this.nocase,this.childrenCache(),r)}getRootString(e){return Ul.win32.parse(e).root}getRoot(e){if(e=kQ(e.toUpperCase()),e===this.root.name)return this.root;for(let[t,r]of Object.entries(this.roots))if(this.sameRoot(e,t))return this.roots[e]=r;return this.roots[e]=new Bl(e,this).root}sameRoot(e,t=this.root.name){return e=e.toUpperCase().replace(/\//g,"\\").replace(VP,"$1\\"),e===t}},Sg=class n extends Xr{static{o(this,"PathPosix")}splitSep="/";sep="/";constructor(e,t=oi,r,i,s,a,c){super(e,t,r,i,s,a,c)}getRootString(e){return e.startsWith("/")?"/":""}getRoot(e){return this.root}newChild(e,t=oi,r={}){return new n(e,t,this.root,this.roots,this.nocase,this.childrenCache(),r)}},bg=class{static{o(this,"PathScurryBase")}root;rootPath;roots;cwd;#e;#n;#r;nocase;#t;constructor(e=process.cwd(),t,r,{nocase:i,childrenCacheSize:s=16*1024,fs:a=Vf}={}){this.#t=$P(a),(e instanceof URL||e.startsWith("file://"))&&(e=(0,jP.fileURLToPath)(e));let c=t.resolve(e);this.roots=Object.create(null),this.rootPath=this.parseRootPath(c),this.#e=new yg,this.#n=new yg,this.#r=new Mw(s);let l=c.substring(this.rootPath.length).split(r);if(l.length===1&&!l[0]&&l.pop(),i===void 0)throw new TypeError("must provide nocase setting to PathScurryBase ctor");this.nocase=i,this.root=this.newRoot(this.#t),this.roots[this.rootPath]=this.root;let u=this.root,f=l.length-1,d=t.sep,h=this.rootPath,p=!1;for(let y of l){let b=f--;u=u.child(y,{relative:new Array(b).fill("..").join(d),relativePosix:new Array(b).fill("..").join("/"),fullpath:h+=(p?"":d)+y}),p=!0}this.cwd=u}depth(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.depth()}childrenCache(){return this.#r}resolve(...e){let t="";for(let s=e.length-1;s>=0;s--){let a=e[s];if(!(!a||a===".")&&(t=t?`${a}/${t}`:a,this.isAbsolute(a)))break}let r=this.#e.get(t);if(r!==void 0)return r;let i=this.cwd.resolve(t).fullpath();return this.#e.set(t,i),i}resolvePosix(...e){let t="";for(let s=e.length-1;s>=0;s--){let a=e[s];if(!(!a||a===".")&&(t=t?`${a}/${t}`:a,this.isAbsolute(a)))break}let r=this.#n.get(t);if(r!==void 0)return r;let i=this.cwd.resolve(t).fullpathPosix();return this.#n.set(t,i),i}relative(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.relative()}relativePosix(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.relativePosix()}basename(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.name}dirname(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),(e.parent||e).fullpath()}async readdir(e=this.cwd,t={withFileTypes:!0}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r}=t;if(e.canReaddir()){let i=await e.readdir();return r?i:i.map(s=>s.name)}else return[]}readdirSync(e=this.cwd,t={withFileTypes:!0}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0}=t;return e.canReaddir()?r?e.readdirSync():e.readdirSync().map(i=>i.name):[]}async lstat(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.lstat()}lstatSync(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.lstatSync()}async readlink(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e.withFileTypes,e=this.cwd);let r=await e.readlink();return t?r:r?.fullpath()}readlinkSync(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e.withFileTypes,e=this.cwd);let r=e.readlinkSync();return t?r:r?.fullpath()}async realpath(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e.withFileTypes,e=this.cwd);let r=await e.realpath();return t?r:r?.fullpath()}realpathSync(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e.withFileTypes,e=this.cwd);let r=e.realpathSync();return t?r:r?.fullpath()}async walk(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=[];(!s||s(e))&&c.push(r?e:e.fullpath());let l=new Set,u=o((d,h)=>{l.add(d),d.readdirCB((p,y)=>{if(p)return h(p);let b=y.length;if(!b)return h();let w=o(()=>{--b===0&&h()},"next");for(let v of y)(!s||s(v))&&c.push(r?v:v.fullpath()),i&&v.isSymbolicLink()?v.realpath().then(T=>T?.isUnknown()?T.lstat():T).then(T=>T?.shouldWalk(l,a)?u(T,w):w()):v.shouldWalk(l,a)?u(v,w):w()},!0)},"walk"),f=e;return new Promise((d,h)=>{u(f,p=>{if(p)return h(p);d(c)})})}walkSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=[];(!s||s(e))&&c.push(r?e:e.fullpath());let l=new Set([e]);for(let u of l){let f=u.readdirSync();for(let d of f){(!s||s(d))&&c.push(r?d:d.fullpath());let h=d;if(d.isSymbolicLink()){if(!(i&&(h=d.realpathSync())))continue;h.isUnknown()&&h.lstatSync()}h.shouldWalk(l,a)&&l.add(h)}}return c}[Symbol.asyncIterator](){return this.iterate()}iterate(e=this.cwd,t={}){return typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd),this.stream(e,t)[Symbol.asyncIterator]()}[Symbol.iterator](){return this.iterateSync()}*iterateSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t;(!s||s(e))&&(yield r?e:e.fullpath());let c=new Set([e]);for(let l of c){let u=l.readdirSync();for(let f of u){(!s||s(f))&&(yield r?f:f.fullpath());let d=f;if(f.isSymbolicLink()){if(!(i&&(d=f.realpathSync())))continue;d.isUnknown()&&d.lstatSync()}d.shouldWalk(c,a)&&c.add(d)}}}stream(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=new Za({objectMode:!0});(!s||s(e))&&c.write(r?e:e.fullpath());let l=new Set,u=[e],f=0,d=o(()=>{let h=!1;for(;!h;){let p=u.shift();if(!p){f===0&&c.end();return}f++,l.add(p);let y=o((w,v,T=!1)=>{if(w)return c.emit("error",w);if(i&&!T){let C=[];for(let L of v)L.isSymbolicLink()&&C.push(L.realpath().then(V=>V?.isUnknown()?V.lstat():V));if(C.length){Promise.all(C).then(()=>y(null,v,!0));return}}for(let C of v)C&&(!s||s(C))&&(c.write(r?C:C.fullpath())||(h=!0));f--;for(let C of v){let L=C.realpathCached()||C;L.shouldWalk(l,a)&&u.push(L)}h&&!c.flowing?c.once("drain",d):b||d()},"onReaddir"),b=!0;p.readdirCB(y,!0),b=!1}},"process");return d(),c}streamSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=new Za({objectMode:!0}),l=new Set;(!s||s(e))&&c.write(r?e:e.fullpath());let u=[e],f=0,d=o(()=>{let h=!1;for(;!h;){let p=u.shift();if(!p){f===0&&c.end();return}f++,l.add(p);let y=p.readdirSync();for(let b of y)(!s||s(b))&&(c.write(r?b:b.fullpath())||(h=!0));f--;for(let b of y){let w=b;if(b.isSymbolicLink()){if(!(i&&(w=b.realpathSync())))continue;w.isUnknown()&&w.lstatSync()}w.shouldWalk(l,a)&&u.push(w)}}h&&!c.flowing&&c.once("drain",d)},"process");return d(),c}chdir(e=this.cwd){let t=this.cwd;this.cwd=typeof e=="string"?this.cwd.resolve(e):e,this.cwd[zP](t)}},Bl=class extends bg{static{o(this,"PathScurryWin32")}sep="\\";constructor(e=process.cwd(),t={}){let{nocase:r=!0}=t;super(e,Ul.win32,"\\",{...t,nocase:r}),this.nocase=r;for(let i=this.cwd;i;i=i.parent)i.nocase=this.nocase}parseRootPath(e){return Ul.win32.parse(e).root.toUpperCase()}newRoot(e){return new _g(this.rootPath,Is,void 0,this.roots,this.nocase,this.childrenCache(),{fs:e})}isAbsolute(e){return e.startsWith("/")||e.startsWith("\\")||/^[a-z]:(\/|\\)/i.test(e)}},ql=class extends bg{static{o(this,"PathScurryPosix")}sep="/";constructor(e=process.cwd(),t={}){let{nocase:r=!1}=t;super(e,Ul.posix,"/",{...t,nocase:r}),this.nocase=r}parseRootPath(e){return"/"}newRoot(e){return new Sg(this.rootPath,Is,void 0,this.roots,this.nocase,this.childrenCache(),{fs:e})}isAbsolute(e){return e.startsWith("/")}},qf=class extends ql{static{o(this,"PathScurryDarwin")}constructor(e=process.cwd(),t={}){let{nocase:r=!0}=t;super(e,{...t,nocase:r})}},tfe=process.platform==="win32"?_g:Sg,HP=process.platform==="win32"?Bl:process.platform==="darwin"?qf:ql;var $Q=o(n=>n.length>=1,"isPatternList"),VQ=o(n=>n.length>=1,"isGlobList"),Wl=class n{static{o(this,"Pattern")}#e;#n;#r;length;#t;#c;#_;#i;#u;#s;#l=!0;constructor(e,t,r,i){if(!$Q(e))throw new TypeError("empty pattern list");if(!VQ(t))throw new TypeError("empty glob list");if(t.length!==e.length)throw new TypeError("mismatched pattern list and glob list lengths");if(this.length=e.length,r<0||r>=this.length)throw new TypeError("index out of range");if(this.#e=e,this.#n=t,this.#r=r,this.#t=i,this.#r===0){if(this.isUNC()){let[s,a,c,l,...u]=this.#e,[f,d,h,p,...y]=this.#n;u[0]===""&&(u.shift(),y.shift());let b=[s,a,c,l,""].join("/"),w=[f,d,h,p,""].join("/");this.#e=[b,...u],this.#n=[w,...y],this.length=this.#e.length}else if(this.isDrive()||this.isAbsolute()){let[s,...a]=this.#e,[c,...l]=this.#n;a[0]===""&&(a.shift(),l.shift());let u=s+"/",f=c+"/";this.#e=[u,...a],this.#n=[f,...l],this.length=this.#e.length}}}pattern(){return this.#e[this.#r]}isString(){return typeof this.#e[this.#r]=="string"}isGlobstar(){return this.#e[this.#r]===Ht}isRegExp(){return this.#e[this.#r]instanceof RegExp}globString(){return this.#_=this.#_||(this.#r===0?this.isAbsolute()?this.#n[0]+this.#n.slice(1).join("/"):this.#n.join("/"):this.#n.slice(this.#r).join("/"))}hasMore(){return this.length>this.#r+1}rest(){return this.#c!==void 0?this.#c:this.hasMore()?(this.#c=new n(this.#e,this.#n,this.#r+1,this.#t),this.#c.#s=this.#s,this.#c.#u=this.#u,this.#c.#i=this.#i,this.#c):this.#c=null}isUNC(){let e=this.#e;return this.#u!==void 0?this.#u:this.#u=this.#t==="win32"&&this.#r===0&&e[0]===""&&e[1]===""&&typeof e[2]=="string"&&!!e[2]&&typeof e[3]=="string"&&!!e[3]}isDrive(){let e=this.#e;return this.#i!==void 0?this.#i:this.#i=this.#t==="win32"&&this.#r===0&&this.length>1&&typeof e[0]=="string"&&/^[a-z]:$/i.test(e[0])}isAbsolute(){let e=this.#e;return this.#s!==void 0?this.#s:this.#s=e[0]===""&&e.length>1||this.isDrive()||this.isUNC()}root(){let e=this.#e[0];return typeof e=="string"&&this.isAbsolute()&&this.#r===0?e:""}checkFollowGlobstar(){return!(this.#r===0||!this.isGlobstar()||!this.#l)}markFollowGlobstar(){return this.#r===0||!this.isGlobstar()||!this.#l?!1:(this.#l=!1,!0)}};var UQ=typeof process=="object"&&process&&typeof process.platform=="string"?process.platform:"linux",Gl=class{static{o(this,"Ignore")}relative;relativeChildren;absolute;absoluteChildren;platform;mmopts;constructor(e,{nobrace:t,nocase:r,noext:i,noglobstar:s,platform:a=UQ}){this.relative=[],this.absolute=[],this.relativeChildren=[],this.absoluteChildren=[],this.platform=a,this.mmopts={dot:!0,nobrace:t,nocase:r,noext:i,noglobstar:s,optimizationLevel:2,platform:a,nocomment:!0,nonegate:!0};for(let c of e)this.add(c)}add(e){let t=new Un(e,this.mmopts);for(let r=0;r<t.set.length;r++){let i=t.set[r],s=t.globParts[r];if(!i||!s)throw new Error("invalid pattern object");for(;i[0]==="."&&s[0]===".";)i.shift(),s.shift();let a=new Wl(i,s,0,this.platform),c=new Un(a.globString(),this.mmopts),l=s[s.length-1]==="**",u=a.isAbsolute();u?this.absolute.push(c):this.relative.push(c),l&&(u?this.absoluteChildren.push(c):this.relativeChildren.push(c))}}ignored(e){let t=e.fullpath(),r=`${t}/`,i=e.relative()||".",s=`${i}/`;for(let a of this.relative)if(a.match(i)||a.match(s))return!0;for(let a of this.absolute)if(a.match(t)||a.match(r))return!0;return!1}childrenIgnored(e){let t=e.fullpath()+"/",r=(e.relative()||".")+"/";for(let i of this.relativeChildren)if(i.match(r))return!0;for(let i of this.absoluteChildren)if(i.match(t))return!0;return!1}};var jw=class n{static{o(this,"HasWalkedCache")}store;constructor(e=new Map){this.store=e}copy(){return new n(new Map(this.store))}hasWalked(e,t){return this.store.get(e.fullpath())?.has(t.globString())}storeWalked(e,t){let r=e.fullpath(),i=this.store.get(r);i?i.add(t.globString()):this.store.set(r,new Set([t.globString()]))}},$w=class{static{o(this,"MatchRecord")}store=new Map;add(e,t,r){let i=(t?2:0)|(r?1:0),s=this.store.get(e);this.store.set(e,s===void 0?i:i&s)}entries(){return[...this.store.entries()].map(([e,t])=>[e,!!(t&2),!!(t&1)])}},Vw=class{static{o(this,"SubWalks")}store=new Map;add(e,t){if(!e.canReaddir())return;let r=this.store.get(e);r?r.find(i=>i.globString()===t.globString())||r.push(t):this.store.set(e,[t])}get(e){let t=this.store.get(e);if(!t)throw new Error("attempting to walk unknown path");return t}entries(){return this.keys().map(e=>[e,this.store.get(e)])}keys(){return[...this.store.keys()].filter(e=>e.canReaddir())}},Wf=class n{static{o(this,"Processor")}hasWalkedCache;matches=new $w;subwalks=new Vw;patterns;follow;dot;opts;constructor(e,t){this.opts=e,this.follow=!!e.follow,this.dot=!!e.dot,this.hasWalkedCache=t?t.copy():new jw}processPatterns(e,t){this.patterns=t;let r=t.map(i=>[e,i]);for(let[i,s]of r){this.hasWalkedCache.storeWalked(i,s);let a=s.root(),c=s.isAbsolute()&&this.opts.absolute!==!1;if(a){i=i.resolve(a==="/"&&this.opts.root!==void 0?this.opts.root:a);let d=s.rest();if(d)s=d;else{this.matches.add(i,!0,!1);continue}}if(i.isENOENT())continue;let l,u,f=!1;for(;typeof(l=s.pattern())=="string"&&(u=s.rest());)i=i.resolve(l),s=u,f=!0;if(l=s.pattern(),u=s.rest(),f){if(this.hasWalkedCache.hasWalked(i,s))continue;this.hasWalkedCache.storeWalked(i,s)}if(typeof l=="string"){let d=l===".."||l===""||l===".";this.matches.add(i.resolve(l),c,d);continue}else if(l===Ht){(!i.isSymbolicLink()||this.follow||s.checkFollowGlobstar())&&this.subwalks.add(i,s);let d=u?.pattern(),h=u?.rest();if(!u||(d===""||d===".")&&!h)this.matches.add(i,c,d===""||d===".");else if(d===".."){let p=i.parent||i;h?this.hasWalkedCache.hasWalked(p,h)||this.subwalks.add(p,h):this.matches.add(p,c,!0)}}else l instanceof RegExp&&this.subwalks.add(i,s)}return this}subwalkTargets(){return this.subwalks.keys()}child(){return new n(this.opts,this.hasWalkedCache)}filterEntries(e,t){let r=this.subwalks.get(e),i=this.child();for(let s of t)for(let a of r){let c=a.isAbsolute(),l=a.pattern(),u=a.rest();l===Ht?i.testGlobstar(s,a,u,c):l instanceof RegExp?i.testRegExp(s,l,u,c):i.testString(s,l,u,c)}return i}testGlobstar(e,t,r,i){if((this.dot||!e.name.startsWith("."))&&(t.hasMore()||this.matches.add(e,i,!1),e.canReaddir()&&(this.follow||!e.isSymbolicLink()?this.subwalks.add(e,t):e.isSymbolicLink()&&(r&&t.checkFollowGlobstar()?this.subwalks.add(e,r):t.markFollowGlobstar()&&this.subwalks.add(e,t)))),r){let s=r.pattern();if(typeof s=="string"&&s!==".."&&s!==""&&s!==".")this.testString(e,s,r.rest(),i);else if(s===".."){let a=e.parent||e;this.subwalks.add(a,r)}else s instanceof RegExp&&this.testRegExp(e,s,r.rest(),i)}}testRegExp(e,t,r,i){t.test(e.name)&&(r?this.subwalks.add(e,r):this.matches.add(e,i,!1))}testString(e,t,r,i){e.isNamed(t)&&(r?this.subwalks.add(e,r):this.matches.add(e,i,!1))}};var BQ=o((n,e)=>typeof n=="string"?new Gl([n],e):Array.isArray(n)?new Gl(n,e):n,"makeIgnore"),vg=class{static{o(this,"GlobUtil")}path;patterns;opts;seen=new Set;paused=!1;aborted=!1;#e=[];#n;#r;signal;maxDepth;includeChildMatches;constructor(e,t,r){if(this.patterns=e,this.path=t,this.opts=r,this.#r=!r.posix&&r.platform==="win32"?"\\":"/",this.includeChildMatches=r.includeChildMatches!==!1,(r.ignore||!this.includeChildMatches)&&(this.#n=BQ(r.ignore??[],r),!this.includeChildMatches&&typeof this.#n.add!="function")){let i="cannot ignore child matches, ignore lacks add() method.";throw new Error(i)}this.maxDepth=r.maxDepth||1/0,r.signal&&(this.signal=r.signal,this.signal.addEventListener("abort",()=>{this.#e.length=0}))}#t(e){return this.seen.has(e)||!!this.#n?.ignored?.(e)}#c(e){return!!this.#n?.childrenIgnored?.(e)}pause(){this.paused=!0}resume(){if(this.signal?.aborted)return;this.paused=!1;let e;for(;!this.paused&&(e=this.#e.shift());)e()}onResume(e){this.signal?.aborted||(this.paused?this.#e.push(e):e())}async matchCheck(e,t){if(t&&this.opts.nodir)return;let r;if(this.opts.realpath){if(r=e.realpathCached()||await e.realpath(),!r)return;e=r}let s=e.isUnknown()||this.opts.stat?await e.lstat():e;if(this.opts.follow&&this.opts.nodir&&s?.isSymbolicLink()){let a=await s.realpath();a&&(a.isUnknown()||this.opts.stat)&&await a.lstat()}return this.matchCheckTest(s,t)}matchCheckTest(e,t){return e&&(this.maxDepth===1/0||e.depth()<=this.maxDepth)&&(!t||e.canReaddir())&&(!this.opts.nodir||!e.isDirectory())&&(!this.opts.nodir||!this.opts.follow||!e.isSymbolicLink()||!e.realpathCached()?.isDirectory())&&!this.#t(e)?e:void 0}matchCheckSync(e,t){if(t&&this.opts.nodir)return;let r;if(this.opts.realpath){if(r=e.realpathCached()||e.realpathSync(),!r)return;e=r}let s=e.isUnknown()||this.opts.stat?e.lstatSync():e;if(this.opts.follow&&this.opts.nodir&&s?.isSymbolicLink()){let a=s.realpathSync();a&&(a?.isUnknown()||this.opts.stat)&&a.lstatSync()}return this.matchCheckTest(s,t)}matchFinish(e,t){if(this.#t(e))return;if(!this.includeChildMatches&&this.#n?.add){let s=`${e.relativePosix()}/**`;this.#n.add(s)}let r=this.opts.absolute===void 0?t:this.opts.absolute;this.seen.add(e);let i=this.opts.mark&&e.isDirectory()?this.#r:"";if(this.opts.withFileTypes)this.matchEmit(e);else if(r){let s=this.opts.posix?e.fullpathPosix():e.fullpath();this.matchEmit(s+i)}else{let s=this.opts.posix?e.relativePosix():e.relative(),a=this.opts.dotRelative&&!s.startsWith(".."+this.#r)?"."+this.#r:"";this.matchEmit(s?a+s+i:"."+i)}}async match(e,t,r){let i=await this.matchCheck(e,r);i&&this.matchFinish(i,t)}matchSync(e,t,r){let i=this.matchCheckSync(e,r);i&&this.matchFinish(i,t)}walkCB(e,t,r){this.signal?.aborted&&r(),this.walkCB2(e,t,new Wf(this.opts),r)}walkCB2(e,t,r,i){if(this.#c(e))return i();if(this.signal?.aborted&&i(),this.paused){this.onResume(()=>this.walkCB2(e,t,r,i));return}r.processPatterns(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,l,u]of r.matches.entries())this.#t(c)||(s++,this.match(c,l,u).then(()=>a()));for(let c of r.subwalkTargets()){if(this.maxDepth!==1/0&&c.depth()>=this.maxDepth)continue;s++;let l=c.readdirCached();c.calledReaddir()?this.walkCB3(c,l,r,a):c.readdirCB((u,f)=>this.walkCB3(c,f,r,a),!0)}a()}walkCB3(e,t,r,i){r=r.filterEntries(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,l,u]of r.matches.entries())this.#t(c)||(s++,this.match(c,l,u).then(()=>a()));for(let[c,l]of r.subwalks.entries())s++,this.walkCB2(c,l,r.child(),a);a()}walkCBSync(e,t,r){this.signal?.aborted&&r(),this.walkCB2Sync(e,t,new Wf(this.opts),r)}walkCB2Sync(e,t,r,i){if(this.#c(e))return i();if(this.signal?.aborted&&i(),this.paused){this.onResume(()=>this.walkCB2Sync(e,t,r,i));return}r.processPatterns(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,l,u]of r.matches.entries())this.#t(c)||this.matchSync(c,l,u);for(let c of r.subwalkTargets()){if(this.maxDepth!==1/0&&c.depth()>=this.maxDepth)continue;s++;let l=c.readdirSync();this.walkCB3Sync(c,l,r,a)}a()}walkCB3Sync(e,t,r,i){r=r.filterEntries(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,l,u]of r.matches.entries())this.#t(c)||this.matchSync(c,l,u);for(let[c,l]of r.subwalks.entries())s++,this.walkCB2Sync(c,l,r.child(),a);a()}},Gf=class extends vg{static{o(this,"GlobWalker")}matches=new Set;constructor(e,t,r){super(e,t,r)}matchEmit(e){this.matches.add(e)}async walk(){if(this.signal?.aborted)throw this.signal.reason;return this.path.isUnknown()&&await this.path.lstat(),await new Promise((e,t)=>{this.walkCB(this.path,this.patterns,()=>{this.signal?.aborted?t(this.signal.reason):e(this.matches)})}),this.matches}walkSync(){if(this.signal?.aborted)throw this.signal.reason;return this.path.isUnknown()&&this.path.lstatSync(),this.walkCBSync(this.path,this.patterns,()=>{if(this.signal?.aborted)throw this.signal.reason}),this.matches}},zf=class extends vg{static{o(this,"GlobStream")}results;constructor(e,t,r){super(e,t,r),this.results=new Za({signal:this.signal,objectMode:!0}),this.results.on("drain",()=>this.resume()),this.results.on("resume",()=>this.resume())}matchEmit(e){this.results.write(e),this.results.flowing||this.pause()}stream(){let e=this.path;return e.isUnknown()?e.lstat().then(()=>{this.walkCB(e,this.patterns,()=>this.results.end())}):this.walkCB(e,this.patterns,()=>this.results.end()),this.results}streamSync(){return this.path.isUnknown()&&this.path.lstatSync(),this.walkCBSync(this.path,this.patterns,()=>this.results.end()),this.results}};var qQ=typeof process=="object"&&process&&typeof process.platform=="string"?process.platform:"linux",Hi=class{static{o(this,"Glob")}absolute;cwd;root;dot;dotRelative;follow;ignore;magicalBraces;mark;matchBase;maxDepth;nobrace;nocase;nodir;noext;noglobstar;pattern;platform;realpath;scurry;stat;signal;windowsPathsNoEscape;withFileTypes;includeChildMatches;opts;patterns;constructor(e,t){if(!t)throw new TypeError("glob options required");if(this.withFileTypes=!!t.withFileTypes,this.signal=t.signal,this.follow=!!t.follow,this.dot=!!t.dot,this.dotRelative=!!t.dotRelative,this.nodir=!!t.nodir,this.mark=!!t.mark,t.cwd?(t.cwd instanceof URL||t.cwd.startsWith("file://"))&&(t.cwd=(0,QP.fileURLToPath)(t.cwd)):this.cwd="",this.cwd=t.cwd||"",this.root=t.root,this.magicalBraces=!!t.magicalBraces,this.nobrace=!!t.nobrace,this.noext=!!t.noext,this.realpath=!!t.realpath,this.absolute=t.absolute,this.includeChildMatches=t.includeChildMatches!==!1,this.noglobstar=!!t.noglobstar,this.matchBase=!!t.matchBase,this.maxDepth=typeof t.maxDepth=="number"?t.maxDepth:1/0,this.stat=!!t.stat,this.ignore=t.ignore,this.withFileTypes&&this.absolute!==void 0)throw new Error("cannot set absolute and withFileTypes:true");if(typeof e=="string"&&(e=[e]),this.windowsPathsNoEscape=!!t.windowsPathsNoEscape||t.allowWindowsEscape===!1,this.windowsPathsNoEscape&&(e=e.map(l=>l.replace(/\\/g,"/"))),this.matchBase){if(t.noglobstar)throw new TypeError("base matching requires globstar");e=e.map(l=>l.includes("/")?l:`./**/${l}`)}if(this.pattern=e,this.platform=t.platform||qQ,this.opts={...t,platform:this.platform},t.scurry){if(this.scurry=t.scurry,t.nocase!==void 0&&t.nocase!==t.scurry.nocase)throw new Error("nocase option contradicts provided scurry option")}else{let l=t.platform==="win32"?Bl:t.platform==="darwin"?qf:t.platform?ql:HP;this.scurry=new l(this.cwd,{nocase:t.nocase,fs:t.fs})}this.nocase=this.scurry.nocase;let r=this.platform==="darwin"||this.platform==="win32",i={...t,dot:this.dot,matchBase:this.matchBase,nobrace:this.nobrace,nocase:this.nocase,nocaseMagicOnly:r,nocomment:!0,noext:this.noext,nonegate:!0,optimizationLevel:2,platform:this.platform,windowsPathsNoEscape:this.windowsPathsNoEscape,debug:!!this.opts.debug},s=this.pattern.map(l=>new Un(l,i)),[a,c]=s.reduce((l,u)=>(l[0].push(...u.set),l[1].push(...u.globParts),l),[[],[]]);this.patterns=a.map((l,u)=>{let f=c[u];if(!f)throw new Error("invalid pattern object");return new Wl(l,f,0,this.platform)})}async walk(){return[...await new Gf(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).walk()]}walkSync(){return[...new Gf(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).walkSync()]}stream(){return new zf(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).stream()}streamSync(){return new zf(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).streamSync()}iterateSync(){return this.streamSync()[Symbol.iterator]()}[Symbol.iterator](){return this.iterateSync()}iterate(){return this.stream()[Symbol.asyncIterator]()}[Symbol.asyncIterator](){return this.iterate()}};var Uw=o((n,e={})=>{Array.isArray(n)||(n=[n]);for(let t of n)if(new Un(t,e).hasMagic())return!0;return!1},"hasMagic");function wg(n,e={}){return new Hi(n,e).streamSync()}o(wg,"globStreamSync");function YP(n,e={}){return new Hi(n,e).stream()}o(YP,"globStream");function XP(n,e={}){return new Hi(n,e).walkSync()}o(XP,"globSync");async function KP(n,e={}){return new Hi(n,e).walk()}o(KP,"glob_");function Eg(n,e={}){return new Hi(n,e).iterateSync()}o(Eg,"globIterateSync");function JP(n,e={}){return new Hi(n,e).iterate()}o(JP,"globIterate");var WQ=wg,GQ=Object.assign(YP,{sync:wg}),zQ=Eg,HQ=Object.assign(JP,{sync:Eg}),QQ=Object.assign(XP,{stream:wg,iterate:Eg}),zl=Object.assign(KP,{glob:KP,globSync:XP,sync:QQ,globStream:YP,stream:GQ,globStreamSync:wg,streamSync:WQ,globIterate:JP,iterate:HQ,globIterateSync:Eg,iterateSync:zQ,Glob:Hi,hasMagic:Uw,escape:kl,unescape:Wi});zl.glob=zl;async function eF(n,e,t,r={}){let{dryRun:i=!1,excludeRelPath:s}=r,a=ec.default.join(n,"**/*.md"),c=await zl(a,{nodir:!0,ignore:[ec.default.join(n,".obsidian/**"),ec.default.join(n,".trash/**"),ec.default.join(n,"**/.obsidian/**"),ec.default.join(n,"**/.trash/**")]}),l={filesScanned:0,filesModified:0,replacements:0,modifiedFiles:[]};for(let u of c){let f=ec.default.relative(n,u);if(s&&f===s)continue;l.filesScanned+=1;let d;try{d=await Bw.default.readFile(u,"utf-8")}catch{continue}let{updated:h,replacements:p}=KQ(d,e,t);p>0&&(l.filesModified+=1,l.replacements+=p,l.modifiedFiles.push(f),i||await Bw.default.writeFile(u,h,"utf-8"))}return l}o(eF,"rewriteInboundWikilinks");function KQ(n,e,t){let r=n.split(/(^```[\s\S]*?^```)/m),i=0;for(let s=0;s<r.length;s++){if(s%2===1)continue;let a=r[s],c=YQ(a,e,t);i+=c.replacements,r[s]=c.updated}return{updated:r.join(""),replacements:i}}o(KQ,"rewriteContent");function YQ(n,e,t){let r=n.split(/(`[^`\n]*`)/),i=0;for(let s=0;s<r.length;s++){if(s%2===1)continue;let a=XQ(r[s],e,t);i+=a.replacements,r[s]=a.updated}return{updated:r.join(""),replacements:i}}o(YQ,"rewriteProseSegment");function XQ(n,e,t){let r=/(?<!!)\[\[([^\[\]\n|#]+)(#[^\[\]\n|]*)?(\|[^\[\]\n]*)?\]\]/g,i=0;return{updated:n.replace(r,(a,c,l,u)=>{if(c.trim()!==e)return a;i+=1;let d=l??"",h;return u?h=u:d?h=`|${e}`:h=`|${e}`,`[[${t}${d}${h}]]`}),replacements:i}}o(XQ,"replaceWikilinks");var JQ=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i,Rt=class{constructor(e){this.rootPath=e;this.uuidIndex=null;this.basenameIndex=null;this.aliasIndex=null}static{o(this,"FileSystemVaultAdapter")}async read(e){let t=this.resolvePath(e.path);if(!await ar.default.pathExists(t))throw new Error(`File not found: ${e.path}`);return ar.default.readFile(t,"utf-8")}async create(e,t){let r=this.resolvePath(e);if(await ar.default.pathExists(r))throw new Error(`File already exists: ${e}`);return await ar.default.ensureDir(Kt.default.dirname(r)),await ar.default.writeFile(r,t,"utf-8"),this.createFileObject(e)}async modify(e,t){let r=this.resolvePath(e.path);if(!await ar.default.pathExists(r))throw new Error(`File not found: ${e.path}`);await ar.default.writeFile(r,t,"utf-8")}async delete(e){let t=this.resolvePath(e.path);if(!await ar.default.pathExists(t))throw new Error(`File not found: ${e.path}`);await ar.default.remove(t)}async exists(e){let t=this.resolvePath(e);return ar.default.pathExists(t)}getAbstractFileByPath(e){let t=this.resolvePath(e);try{let r=ar.default.statSync(t);if(r.isFile())return this.createFileObject(e);if(r.isDirectory())return this.createFolderObject(e)}catch{return null}return null}getAllFiles(){let e=[];return this.walkDirectory(this.rootPath,t=>{if(t.endsWith(".md")){let r=Kt.default.relative(this.rootPath,t);e.push(this.createFileObject(r))}}),e}getFrontmatter(e){try{let t=ar.default.readFileSync(this.resolvePath(e.path),"utf-8");return this.extractFrontmatter(t)}catch{return null}}async updateFrontmatter(e,t){let r=await this.read(e),i=this.extractFrontmatter(r)||{},s=t(i),a=this.replaceFrontmatter(r,s);await this.modify(e,a)}async rename(e,t){let r=this.resolvePath(e.path),i=this.resolvePath(t);if(!await ar.default.pathExists(r))throw new Error(`File not found: ${e.path}`);await ar.default.ensureDir(Kt.default.dirname(i)),await ar.default.move(r,i)}async createFolder(e){let t=this.resolvePath(e);await ar.default.ensureDir(t)}getFirstLinkpathDest(e,t){let r=e.split("|")[0].trim();if(!r)return null;if(JQ.test(r)){this.uuidIndex===null&&this.buildUuidIndex();let u=r.toLowerCase(),f=this.uuidIndex.get(u);return f?this.createFileObject(f):null}let i=Kt.default.dirname(this.resolvePath(t)),s;if(Kt.default.isAbsolute(r)?s=this.resolvePath(r):s=Kt.default.resolve(i,r),r.endsWith(".md")||(s+=".md"),ar.default.existsSync(s)){let u=Kt.default.relative(this.rootPath,s);return this.createFileObject(u)}(this.basenameIndex===null||this.aliasIndex===null)&&this.buildLinkpathIndex();let a=r.toLowerCase(),c=this.basenameIndex.get(a);if(c)return this.createFileObject(c);let l=this.aliasIndex.get(a);return l?this.createFileObject(l):null}buildLinkpathIndex(){this.basenameIndex=new Map,this.aliasIndex=new Map,this.walkDirectory(this.rootPath,e=>{if(!e.endsWith(".md"))return;let t=Kt.default.relative(this.rootPath,e),r=Kt.default.basename(e,".md").toLowerCase();this.basenameIndex.has(r)||this.basenameIndex.set(r,t);let i;try{i=ar.default.readFileSync(e,"utf-8")}catch{return}let s=this.extractFrontmatter(i);if(!s)return;let a=s.aliases,c=Array.isArray(a)?a:typeof a=="string"?[a]:[];for(let l of c){if(typeof l!="string")continue;let u=l.trim().toLowerCase();u&&(this.aliasIndex.has(u)||this.aliasIndex.set(u,t))}})}buildUuidIndex(){this.uuidIndex=new Map,this.walkDirectory(this.rootPath,e=>{if(e.endsWith(".md")){let r=Kt.default.basename(e,".md").match(/^([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})/i);if(r){let i=r[1].toLowerCase(),s=Kt.default.relative(this.rootPath,e);this.uuidIndex.set(i,s)}}})}async process(e,t){let r=await this.read(e),i=t(r);return await this.modify(e,i),i}getDefaultNewFileParent(){return{path:"",name:""}}async updateLinks(e,t,r){let i=Kt.default.basename(t,".md");await eF(this.rootPath,r,i,{excludeRelPath:e})}resolvePath(e){return Kt.default.isAbsolute(e)?e:Kt.default.join(this.rootPath,e)}createFileObject(e){let t=Kt.default.basename(e),r=Kt.default.basename(e,Kt.default.extname(e)),i=Kt.default.dirname(e);return{path:e,basename:r,name:t,parent:i!=="."?this.createFolderObject(i):null}}createFolderObject(e){return{path:e,name:Kt.default.basename(e)}}extractFrontmatter(e){let t=/^---\n([\s\S]*?)\n---/,r=e.match(t);if(!r)return null;try{let i=sr.load(r[1]);return typeof i=="object"&&i!==null?i:null}catch{return null}}replaceFrontmatter(e,t){let r=sr.dump(t,{lineWidth:-1,noRefs:!0,quotingType:'"'}),i=/^---\n([\s\S]*?)\n---/;return e.match(i)?e.replace(i,`---
494
+ `:""}o(mH,"dump$1");var gH=mH,yH={dump:gH};function vw(n,e){return function(){throw new Error("Function yaml."+n+" is removed in js-yaml 4. Use yaml."+e+" instead, which is now safe by default.")}}o(vw,"renamed");var _H=Mr,SH=hO,bH=yO,vH=wO,wH=EO,EH=yw,TH=UO.load,AH=UO.loadAll,xH=yH.dump,IH=yn,CH={binary:CO,float:vO,map:gO,null:_O,pairs:OO,set:PO,timestamp:xO,bool:SO,int:bO,merge:IO,omap:RO,seq:mO,str:pO},RH=vw("safeLoad","load"),OH=vw("safeLoadAll","loadAll"),PH=vw("safeDump","dump"),sr={Type:_H,Schema:SH,FAILSAFE_SCHEMA:bH,JSON_SCHEMA:vH,CORE_SCHEMA:wH,DEFAULT_SCHEMA:EH,load:TH,loadAll:AH,dump:xH,YAMLException:IH,types:CH,safeLoad:RH,safeLoadAll:OH,safeDump:PH};var Bw=Z(Pl()),ec=Z(require("path"));var bP=Z(fP(),1);var Ff=o(n=>{if(typeof n!="string")throw new TypeError("invalid pattern");if(n.length>65536)throw new TypeError("pattern is too long")},"assertValidPattern");var $H={"[:alnum:]":["\\p{L}\\p{Nl}\\p{Nd}",!0],"[:alpha:]":["\\p{L}\\p{Nl}",!0],"[:ascii:]":["\\x00-\\x7f",!1],"[:blank:]":["\\p{Zs}\\t",!0],"[:cntrl:]":["\\p{Cc}",!0],"[:digit:]":["\\p{Nd}",!0],"[:graph:]":["\\p{Z}\\p{C}",!0,!0],"[:lower:]":["\\p{Ll}",!0],"[:print:]":["\\p{C}",!0],"[:punct:]":["\\p{P}",!0],"[:space:]":["\\p{Z}\\t\\r\\n\\v\\f",!0],"[:upper:]":["\\p{Lu}",!0],"[:word:]":["\\p{L}\\p{Nl}\\p{Nd}\\p{Pc}",!0],"[:xdigit:]":["A-Fa-f0-9",!1]},Df=o(n=>n.replace(/[[\]\\-]/g,"\\$&"),"braceEscape"),VH=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regexpEscape"),dP=o(n=>n.join(""),"rangesToString"),hP=o((n,e)=>{let t=e;if(n.charAt(t)!=="[")throw new Error("not in a brace expression");let r=[],i=[],s=t+1,a=!1,c=!1,l=!1,u=!1,f=t,d="";e:for(;s<n.length;){let b=n.charAt(s);if((b==="!"||b==="^")&&s===t+1){u=!0,s++;continue}if(b==="]"&&a&&!l){f=s+1;break}if(a=!0,b==="\\"&&!l){l=!0,s++;continue}if(b==="["&&!l){for(let[w,[v,T,C]]of Object.entries($H))if(n.startsWith(w,s)){if(d)return["$.",!1,n.length-t,!0];s+=w.length,C?i.push(v):r.push(v),c=c||T;continue e}}if(l=!1,d){b>d?r.push(Df(d)+"-"+Df(b)):b===d&&r.push(Df(b)),d="",s++;continue}if(n.startsWith("-]",s+1)){r.push(Df(b+"-")),s+=2;continue}if(n.startsWith("-",s+1)){d=b,s+=2;continue}r.push(Df(b)),s++}if(f<s)return["",!1,0,!1];if(!r.length&&!i.length)return["$.",!1,n.length-t,!0];if(i.length===0&&r.length===1&&/^\\?.$/.test(r[0])&&!u){let b=r[0].length===2?r[0].slice(-1):r[0];return[VH(b),!1,f-t,!1]}let h="["+(u?"^":"")+dP(r)+"]",p="["+(u?"":"^")+dP(i)+"]";return[r.length&&i.length?"("+h+"|"+p+")":r.length?h:p,c,f-t,!0]},"parseClass");var Wi=o((n,{windowsPathsNoEscape:e=!1}={})=>e?n.replace(/\[([^\/\\])\]/g,"$1"):n.replace(/((?!\\).|^)\[([^\/\\])\]/g,"$1$2").replace(/\\([^\/])/g,"$1"),"unescape");var Fn,UH=new Set(["!","?","+","*","@"]),Tw=o(n=>UH.has(n),"isExtglobType"),pP=o(n=>Tw(n.type),"isExtglobAST"),BH=new Map([["!",["@"]],["?",["?","@"]],["@",["@"]],["*",["*","+","?","@"]],["+",["+","@"]]]),qH=new Map([["!",["?"]],["@",["?"]],["+",["?","*"]]]),WH=new Map([["!",["?","@"]],["?",["?","@"]],["@",["?","@"]],["*",["*","+","?","@"]],["+",["+","@","?","*"]]]),mP=new Map([["!",new Map([["!","@"]])],["?",new Map([["*","*"],["+","*"]])],["@",new Map([["!","!"],["?","?"],["@","@"],["*","*"],["+","+"]])],["+",new Map([["?","*"],["*","*"]])]]),GH="(?!(?:^|/)\\.\\.?(?:$|/))",sg="(?!\\.)",zH=new Set(["[","."]),HH=new Set(["..","."]),QH=new Set("().*{}+?[]^$\\!"),KH=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regExpEscape"),Aw="[^/]",gP=Aw+"*?",yP=Aw+"+?",Xo=class{static{o(this,"AST")}type;#e;#n;#r=!1;#t=[];#c;#_;#i;#u=!1;#s;#l;#a=!1;constructor(e,t,r={}){this.type=e,e&&(this.#n=!0),this.#c=t,this.#e=this.#c?this.#c.#e:this,this.#s=this.#e===this?r:this.#e.#s,this.#i=this.#e===this?[]:this.#e.#i,e==="!"&&!this.#e.#u&&this.#i.push(this),this.#_=this.#c?this.#c.#t.length:0}get hasMagic(){if(this.#n!==void 0)return this.#n;for(let e of this.#t)if(typeof e!="string"&&(e.type||e.hasMagic))return this.#n=!0;return this.#n}toString(){return this.#l!==void 0?this.#l:this.type?this.#l=this.type+"("+this.#t.map(e=>String(e)).join("|")+")":this.#l=this.#t.map(e=>String(e)).join("")}#p(){if(this!==this.#e)throw new Error("should only call on root");if(this.#u)return this;this.toString(),this.#u=!0;let e;for(;e=this.#i.pop();){if(e.type!=="!")continue;let t=e,r=t.#c;for(;r;){for(let i=t.#_+1;!r.type&&i<r.#t.length;i++)for(let s of e.#t){if(typeof s=="string")throw new Error("string part in extglob AST??");s.copyIn(r.#t[i])}t=r,r=t.#c}}return this}push(...e){for(let t of e)if(t!==""){if(typeof t!="string"&&!(t instanceof Fn&&t.#c===this))throw new Error("invalid part: "+t);this.#t.push(t)}}toJSON(){let e=this.type===null?this.#t.slice().map(t=>typeof t=="string"?t:t.toJSON()):[this.type,...this.#t.map(t=>t.toJSON())];return this.isStart()&&!this.type&&e.unshift([]),this.isEnd()&&(this===this.#e||this.#e.#u&&this.#c?.type==="!")&&e.push({}),e}isStart(){if(this.#e===this)return!0;if(!this.#c?.isStart())return!1;if(this.#_===0)return!0;let e=this.#c;for(let t=0;t<this.#_;t++){let r=e.#t[t];if(!(r instanceof Fn&&r.type==="!"))return!1}return!0}isEnd(){if(this.#e===this||this.#c?.type==="!")return!0;if(!this.#c?.isEnd())return!1;if(!this.type)return this.#c?.isEnd();let e=this.#c?this.#c.#t.length:0;return this.#_===e-1}copyIn(e){typeof e=="string"?this.push(e):this.push(e.clone(this))}clone(e){let t=new Fn(this.type,e);for(let r of this.#t)t.copyIn(r);return t}static#g(e,t,r,i,s){let a=i.maxExtglobRecursion??2,c=!1,l=!1,u=-1,f=!1;if(t.type===null){let b=r,w="";for(;b<e.length;){let v=e.charAt(b++);if(c||v==="\\"){c=!c,w+=v;continue}if(l){b===u+1?(v==="^"||v==="!")&&(f=!0):v==="]"&&!(b===u+2&&f)&&(l=!1),w+=v;continue}else if(v==="["){l=!0,u=b,f=!1,w+=v;continue}if(!i.noext&&Tw(v)&&e.charAt(b)==="("&&s<=a){t.push(w),w="";let C=new Fn(v,t);b=Fn.#g(e,C,b,i,s+1),t.push(C);continue}w+=v}return t.push(w),b}let d=r+1,h=new Fn(null,t),p=[],y="";for(;d<e.length;){let b=e.charAt(d++);if(c||b==="\\"){c=!c,y+=b;continue}if(l){d===u+1?(b==="^"||b==="!")&&(f=!0):b==="]"&&!(d===u+2&&f)&&(l=!1),y+=b;continue}else if(b==="["){l=!0,u=d,f=!1,y+=b;continue}if(Tw(b)&&e.charAt(d)==="("&&(s<=a||t&&t.#y(b))){let v=t&&t.#y(b)?0:1;h.push(y),y="";let T=new Fn(b,h);h.push(T),d=Fn.#g(e,T,d,i,s+v);continue}if(b==="|"){h.push(y),y="",p.push(h),h=new Fn(null,t);continue}if(b===")")return y===""&&t.#t.length===0&&(t.#a=!0),h.push(y),y="",t.push(...p,h),d;y+=b}return t.type=null,t.#n=void 0,t.#t=[e.substring(r-1)],d}#d(e){return this.#m(e,qH)}#m(e,t=BH){if(!e||typeof e!="object"||e.type!==null||e.#t.length!==1||this.type===null)return!1;let r=e.#t[0];return!r||typeof r!="object"||r.type===null?!1:this.#y(r.type,t)}#y(e,t=WH){return!!t.get(this.type)?.includes(e)}#f(e,t){let r=e.#t[0],i=new Fn(null,r,this.options);i.#t.push(""),r.push(i),this.#E(e,t)}#E(e,t){let r=e.#t[0];this.#t.splice(t,1,...r.#t);for(let i of r.#t)typeof i=="object"&&(i.#c=this);this.#l=void 0}#T(e){return!!mP.get(this.type)?.has(e)}#S(e){if(!e||typeof e!="object"||e.type!==null||e.#t.length!==1||this.type===null||this.#t.length!==1)return!1;let t=e.#t[0];return!t||typeof t!="object"||t.type===null?!1:this.#T(t.type)}#w(e){let t=mP.get(this.type),r=e.#t[0],i=t?.get(r.type);if(!i)return!1;this.#t=r.#t;for(let s of this.#t)typeof s=="object"&&(s.#c=this);this.type=i,this.#l=void 0,this.#a=!1}#b(){if(pP(this)){let e=0,t=!1;do{t=!0;for(let r=0;r<this.#t.length;r++){let i=this.#t[r];typeof i=="object"&&(i.#b(),this.#m(i)?(t=!1,this.#E(i,r)):this.#d(i)?(t=!1,this.#f(i,r)):this.#S(i)&&(t=!1,this.#w(i)))}}while(!t&&++e<10)}else for(let e of this.#t)typeof e=="object"&&e.#b();this.#l=void 0}static fromGlob(e,t={}){let r=new Fn(null,void 0,t);return Fn.#g(e,r,0,t,0),r}toMMPattern(){if(this!==this.#e)return this.#e.toMMPattern();let e=this.toString(),[t,r,i,s]=this.toRegExpSource();if(!(i||this.#n||this.#s.nocase&&!this.#s.nocaseMagicOnly&&e.toUpperCase()!==e.toLowerCase()))return r;let c=(this.#s.nocase?"i":"")+(s?"u":"");return Object.assign(new RegExp(`^${t}$`,c),{_src:t,_glob:e})}get options(){return this.#s}toRegExpSource(e){let t=e??!!this.#s.dot;if(this.#e===this&&(this.#b(),this.#p()),!pP(this)){let l=this.isStart()&&this.isEnd(),u=this.#t.map(p=>{let[y,b,w,v]=typeof p=="string"?Fn.#x(p,this.#n,l):p.toRegExpSource(e);return this.#n=this.#n||w,this.#r=this.#r||v,y}).join(""),f="";if(this.isStart()&&typeof this.#t[0]=="string"&&!(this.#t.length===1&&HH.has(this.#t[0]))){let y=zH,b=t&&y.has(u.charAt(0))||u.startsWith("\\.")&&y.has(u.charAt(2))||u.startsWith("\\.\\.")&&y.has(u.charAt(4)),w=!t&&!e&&y.has(u.charAt(0));f=b?GH:w?sg:""}let d="";return this.isEnd()&&this.#e.#u&&this.#c?.type==="!"&&(d="(?:$|\\/)"),[f+u+d,Wi(u),this.#n=!!this.#n,this.#r]}let r=this.type==="*"||this.type==="+",i=this.type==="!"?"(?:(?!(?:":"(?:",s=this.#v(t);if(this.isStart()&&this.isEnd()&&!s&&this.type!=="!"){let l=this.toString(),u=this;return u.#t=[l],u.type=null,u.#n=void 0,[l,Wi(this.toString()),!1,!1]}let a=!r||e||t||!sg?"":this.#v(!0);a===s&&(a=""),a&&(s=`(?:${s})(?:${a})*?`);let c="";if(this.type==="!"&&this.#a)c=(this.isStart()&&!t?sg:"")+yP;else{let l=this.type==="!"?"))"+(this.isStart()&&!t&&!e?sg:"")+gP+")":this.type==="@"?")":this.type==="?"?")?":this.type==="+"&&a?")":this.type==="*"&&a?")?":`)${this.type}`;c=i+s+l}return[c,Wi(s),this.#n=!!this.#n,this.#r]}#v(e){return this.#t.map(t=>{if(typeof t=="string")throw new Error("string type in extglob ast??");let[r,i,s,a]=t.toRegExpSource(e);return this.#r=this.#r||a,r}).filter(t=>!(this.isStart()&&this.isEnd())||!!t).join("|")}static#x(e,t,r=!1){let i=!1,s="",a=!1,c=!1;for(let l=0;l<e.length;l++){let u=e.charAt(l);if(i){i=!1,s+=(QH.has(u)?"\\":"")+u,c=!1;continue}if(u==="\\"){l===e.length-1?s+="\\\\":i=!0;continue}if(u==="["){let[f,d,h,p]=hP(e,l);if(h){s+=f,a=a||d,l+=h-1,t=t||p,c=!1;continue}}if(u==="*"){if(c)continue;c=!0,s+=r&&/^[*]+$/.test(e)?yP:gP,t=!0;continue}else c=!1;if(u==="?"){s+=Aw,t=!0;continue}s+=KH(u)}return[s,Wi(e),!!t,a]}};Fn=Xo;var kl=o((n,{windowsPathsNoEscape:e=!1}={})=>e?n.replace(/[?*()[\]]/g,"[$&]"):n.replace(/[?*()[\]\\]/g,"\\$&"),"escape");var jr=o((n,e,t={})=>(Ff(e),!t.nocomment&&e.charAt(0)==="#"?!1:new Un(e,t).match(n)),"minimatch"),YH=/^\*+([^+@!?\*\[\(]*)$/,XH=o(n=>e=>!e.startsWith(".")&&e.endsWith(n),"starDotExtTest"),JH=o(n=>e=>e.endsWith(n),"starDotExtTestDot"),ZH=o(n=>(n=n.toLowerCase(),e=>!e.startsWith(".")&&e.toLowerCase().endsWith(n)),"starDotExtTestNocase"),eQ=o(n=>(n=n.toLowerCase(),e=>e.toLowerCase().endsWith(n)),"starDotExtTestNocaseDot"),tQ=/^\*+\.\*+$/,rQ=o(n=>!n.startsWith(".")&&n.includes("."),"starDotStarTest"),nQ=o(n=>n!=="."&&n!==".."&&n.includes("."),"starDotStarTestDot"),iQ=/^\.\*+$/,sQ=o(n=>n!=="."&&n!==".."&&n.startsWith("."),"dotStarTest"),aQ=/^\*+$/,oQ=o(n=>n.length!==0&&!n.startsWith("."),"starTest"),cQ=o(n=>n.length!==0&&n!=="."&&n!=="..","starTestDot"),lQ=/^\?+([^+@!?\*\[\(]*)?$/,uQ=o(([n,e=""])=>{let t=vP([n]);return e?(e=e.toLowerCase(),r=>t(r)&&r.toLowerCase().endsWith(e)):t},"qmarksTestNocase"),fQ=o(([n,e=""])=>{let t=wP([n]);return e?(e=e.toLowerCase(),r=>t(r)&&r.toLowerCase().endsWith(e)):t},"qmarksTestNocaseDot"),dQ=o(([n,e=""])=>{let t=wP([n]);return e?r=>t(r)&&r.endsWith(e):t},"qmarksTestDot"),hQ=o(([n,e=""])=>{let t=vP([n]);return e?r=>t(r)&&r.endsWith(e):t},"qmarksTest"),vP=o(([n])=>{let e=n.length;return t=>t.length===e&&!t.startsWith(".")},"qmarksTestNoExt"),wP=o(([n])=>{let e=n.length;return t=>t.length===e&&t!=="."&&t!==".."},"qmarksTestNoExtDot"),EP=typeof process=="object"&&process?typeof process.env=="object"&&process.env&&process.env.__MINIMATCH_TESTING_PLATFORM__||process.platform:"posix",_P={win32:{sep:"\\"},posix:{sep:"/"}},pQ=EP==="win32"?_P.win32.sep:_P.posix.sep;jr.sep=pQ;var Ht=Symbol("globstar **");jr.GLOBSTAR=Ht;var mQ="[^/]",gQ=mQ+"*?",yQ="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",_Q="(?:(?!(?:\\/|^)\\.).)*?",SQ=o((n,e={})=>t=>jr(t,n,e),"filter");jr.filter=SQ;var si=o((n,e={})=>Object.assign({},n,e),"ext"),bQ=o(n=>{if(!n||typeof n!="object"||!Object.keys(n).length)return jr;let e=jr;return Object.assign(o((r,i,s={})=>e(r,i,si(n,s)),"m"),{Minimatch:class extends e.Minimatch{static{o(this,"Minimatch")}constructor(i,s={}){super(i,si(n,s))}static defaults(i){return e.defaults(si(n,i)).Minimatch}},AST:class extends e.AST{static{o(this,"AST")}constructor(i,s,a={}){super(i,s,si(n,a))}static fromGlob(i,s={}){return e.AST.fromGlob(i,si(n,s))}},unescape:o((r,i={})=>e.unescape(r,si(n,i)),"unescape"),escape:o((r,i={})=>e.escape(r,si(n,i)),"escape"),filter:o((r,i={})=>e.filter(r,si(n,i)),"filter"),defaults:o(r=>e.defaults(si(n,r)),"defaults"),makeRe:o((r,i={})=>e.makeRe(r,si(n,i)),"makeRe"),braceExpand:o((r,i={})=>e.braceExpand(r,si(n,i)),"braceExpand"),match:o((r,i,s={})=>e.match(r,i,si(n,s)),"match"),sep:e.sep,GLOBSTAR:Ht})},"defaults");jr.defaults=bQ;var TP=o((n,e={})=>(Ff(n),e.nobrace||!/\{(?:(?!\{).)*\}/.test(n)?[n]:(0,bP.default)(n)),"braceExpand");jr.braceExpand=TP;var vQ=o((n,e={})=>new Un(n,e).makeRe(),"makeRe");jr.makeRe=vQ;var wQ=o((n,e,t={})=>{let r=new Un(e,t);return n=n.filter(i=>r.match(i)),r.options.nonull&&!n.length&&n.push(e),n},"match");jr.match=wQ;var SP=/[?*]|[+@!]\(.*?\)|\[|\]/,EQ=o(n=>n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"regExpEscape"),Un=class{static{o(this,"Minimatch")}options;set;pattern;windowsPathsNoEscape;nonegate;negate;comment;empty;preserveMultipleSlashes;partial;globSet;globParts;nocase;isWindows;platform;windowsNoMagicRoot;maxGlobstarRecursion;regexp;constructor(e,t={}){Ff(e),t=t||{},this.options=t,this.maxGlobstarRecursion=t.maxGlobstarRecursion??200,this.pattern=e,this.platform=t.platform||EP,this.isWindows=this.platform==="win32",this.windowsPathsNoEscape=!!t.windowsPathsNoEscape||t.allowWindowsEscape===!1,this.windowsPathsNoEscape&&(this.pattern=this.pattern.replace(/\\/g,"/")),this.preserveMultipleSlashes=!!t.preserveMultipleSlashes,this.regexp=null,this.negate=!1,this.nonegate=!!t.nonegate,this.comment=!1,this.empty=!1,this.partial=!!t.partial,this.nocase=!!this.options.nocase,this.windowsNoMagicRoot=t.windowsNoMagicRoot!==void 0?t.windowsNoMagicRoot:!!(this.isWindows&&this.nocase),this.globSet=[],this.globParts=[],this.set=[],this.make()}hasMagic(){if(this.options.magicalBraces&&this.set.length>1)return!0;for(let e of this.set)for(let t of e)if(typeof t!="string")return!0;return!1}debug(...e){}make(){let e=this.pattern,t=this.options;if(!t.nocomment&&e.charAt(0)==="#"){this.comment=!0;return}if(!e){this.empty=!0;return}this.parseNegate(),this.globSet=[...new Set(this.braceExpand())],t.debug&&(this.debug=(...s)=>console.error(...s)),this.debug(this.pattern,this.globSet);let r=this.globSet.map(s=>this.slashSplit(s));this.globParts=this.preprocess(r),this.debug(this.pattern,this.globParts);let i=this.globParts.map((s,a,c)=>{if(this.isWindows&&this.windowsNoMagicRoot){let l=s[0]===""&&s[1]===""&&(s[2]==="?"||!SP.test(s[2]))&&!SP.test(s[3]),u=/^[a-z]:/i.test(s[0]);if(l)return[...s.slice(0,4),...s.slice(4).map(f=>this.parse(f))];if(u)return[s[0],...s.slice(1).map(f=>this.parse(f))]}return s.map(l=>this.parse(l))});if(this.debug(this.pattern,i),this.set=i.filter(s=>s.indexOf(!1)===-1),this.isWindows)for(let s=0;s<this.set.length;s++){let a=this.set[s];a[0]===""&&a[1]===""&&this.globParts[s][2]==="?"&&typeof a[3]=="string"&&/^[a-z]:$/i.test(a[3])&&(a[2]="?")}this.debug(this.pattern,this.set)}preprocess(e){if(this.options.noglobstar)for(let r=0;r<e.length;r++)for(let i=0;i<e[r].length;i++)e[r][i]==="**"&&(e[r][i]="*");let{optimizationLevel:t=1}=this.options;return t>=2?(e=this.firstPhasePreProcess(e),e=this.secondPhasePreProcess(e)):t>=1?e=this.levelOneOptimize(e):e=this.adjascentGlobstarOptimize(e),e}adjascentGlobstarOptimize(e){return e.map(t=>{let r=-1;for(;(r=t.indexOf("**",r+1))!==-1;){let i=r;for(;t[i+1]==="**";)i++;i!==r&&t.splice(r,i-r)}return t})}levelOneOptimize(e){return e.map(t=>(t=t.reduce((r,i)=>{let s=r[r.length-1];return i==="**"&&s==="**"?r:i===".."&&s&&s!==".."&&s!=="."&&s!=="**"?(r.pop(),r):(r.push(i),r)},[]),t.length===0?[""]:t))}levelTwoFileOptimize(e){Array.isArray(e)||(e=this.slashSplit(e));let t=!1;do{if(t=!1,!this.preserveMultipleSlashes){for(let i=1;i<e.length-1;i++){let s=e[i];i===1&&s===""&&e[0]===""||(s==="."||s==="")&&(t=!0,e.splice(i,1),i--)}e[0]==="."&&e.length===2&&(e[1]==="."||e[1]==="")&&(t=!0,e.pop())}let r=0;for(;(r=e.indexOf("..",r+1))!==-1;){let i=e[r-1];i&&i!=="."&&i!==".."&&i!=="**"&&(t=!0,e.splice(r-1,2),r-=2)}}while(t);return e.length===0?[""]:e}firstPhasePreProcess(e){let t=!1;do{t=!1;for(let r of e){let i=-1;for(;(i=r.indexOf("**",i+1))!==-1;){let a=i;for(;r[a+1]==="**";)a++;a>i&&r.splice(i+1,a-i);let c=r[i+1],l=r[i+2],u=r[i+3];if(c!==".."||!l||l==="."||l===".."||!u||u==="."||u==="..")continue;t=!0,r.splice(i,1);let f=r.slice(0);f[i]="**",e.push(f),i--}if(!this.preserveMultipleSlashes){for(let a=1;a<r.length-1;a++){let c=r[a];a===1&&c===""&&r[0]===""||(c==="."||c==="")&&(t=!0,r.splice(a,1),a--)}r[0]==="."&&r.length===2&&(r[1]==="."||r[1]==="")&&(t=!0,r.pop())}let s=0;for(;(s=r.indexOf("..",s+1))!==-1;){let a=r[s-1];if(a&&a!=="."&&a!==".."&&a!=="**"){t=!0;let l=s===1&&r[s+1]==="**"?["."]:[];r.splice(s-1,2,...l),r.length===0&&r.push(""),s-=2}}}}while(t);return e}secondPhasePreProcess(e){for(let t=0;t<e.length-1;t++)for(let r=t+1;r<e.length;r++){let i=this.partsMatch(e[t],e[r],!this.preserveMultipleSlashes);if(i){e[t]=[],e[r]=i;break}}return e.filter(t=>t.length)}partsMatch(e,t,r=!1){let i=0,s=0,a=[],c="";for(;i<e.length&&s<t.length;)if(e[i]===t[s])a.push(c==="b"?t[s]:e[i]),i++,s++;else if(r&&e[i]==="**"&&t[s]===e[i+1])a.push(e[i]),i++;else if(r&&t[s]==="**"&&e[i]===t[s+1])a.push(t[s]),s++;else if(e[i]==="*"&&t[s]&&(this.options.dot||!t[s].startsWith("."))&&t[s]!=="**"){if(c==="b")return!1;c="a",a.push(e[i]),i++,s++}else if(t[s]==="*"&&e[i]&&(this.options.dot||!e[i].startsWith("."))&&e[i]!=="**"){if(c==="a")return!1;c="b",a.push(t[s]),i++,s++}else return!1;return e.length===t.length&&a}parseNegate(){if(this.nonegate)return;let e=this.pattern,t=!1,r=0;for(let i=0;i<e.length&&e.charAt(i)==="!";i++)t=!t,r++;r&&(this.pattern=e.slice(r)),this.negate=t}matchOne(e,t,r=!1){let i=0,s=0;if(this.isWindows){let c=typeof e[0]=="string"&&/^[a-z]:$/i.test(e[0]),l=!c&&e[0]===""&&e[1]===""&&e[2]==="?"&&/^[a-z]:$/i.test(e[3]),u=typeof t[0]=="string"&&/^[a-z]:$/i.test(t[0]),f=!u&&t[0]===""&&t[1]===""&&t[2]==="?"&&typeof t[3]=="string"&&/^[a-z]:$/i.test(t[3]),d=l?3:c?0:void 0,h=f?3:u?0:void 0;if(typeof d=="number"&&typeof h=="number"){let[p,y]=[e[d],t[h]];p.toLowerCase()===y.toLowerCase()&&(t[h]=p,s=h,i=d)}}let{optimizationLevel:a=1}=this.options;return a>=2&&(e=this.levelTwoFileOptimize(e)),t.includes(Ht)?this.#e(e,t,r,i,s):this.#r(e,t,r,i,s)}#e(e,t,r,i,s){let a=t.indexOf(Ht,s),c=t.lastIndexOf(Ht),[l,u,f]=r?[t.slice(s,a),t.slice(a+1),[]]:[t.slice(s,a),t.slice(a+1,c),t.slice(c+1)];if(l.length){let T=e.slice(i,i+l.length);if(!this.#r(T,l,r,0,0))return!1;i+=l.length}let d=0;if(f.length){if(f.length+i>e.length)return!1;let T=e.length-f.length;if(this.#r(e,f,r,T,0))d=f.length;else{if(e[e.length-1]!==""||i+f.length===e.length||(T--,!this.#r(e,f,r,T,0)))return!1;d=f.length+1}}if(!u.length){let T=!!d;for(let C=i;C<e.length-d;C++){let L=String(e[C]);if(T=!0,L==="."||L===".."||!this.options.dot&&L.startsWith("."))return!1}return r||T}let h=[[[],0]],p=h[0],y=0,b=[0];for(let T of u)T===Ht?(b.push(y),p=[[],0],h.push(p)):(p[0].push(T),y++);let w=h.length-1,v=e.length-d;for(let T of h)T[1]=v-(b[w--]+T[0].length);return!!this.#n(e,h,i,0,r,0,!!d)}#n(e,t,r,i,s,a,c){let l=t[i];if(!l){for(let d=r;d<e.length;d++){c=!0;let h=e[d];if(h==="."||h===".."||!this.options.dot&&h.startsWith("."))return!1}return c}let[u,f]=l;for(;r<=f;){if(this.#r(e.slice(0,r+u.length),u,s,r,0)&&a<this.maxGlobstarRecursion){let p=this.#n(e,t,r+u.length,i+1,s,a+1,c);if(p!==!1)return p}let h=e[r];if(h==="."||h===".."||!this.options.dot&&h.startsWith("."))return!1;r++}return s||null}#r(e,t,r,i,s){let a,c,l,u;for(a=i,c=s,u=e.length,l=t.length;a<u&&c<l;a++,c++){this.debug("matchOne loop");let f=t[c],d=e[a];if(this.debug(t,f,d),f===!1||f===Ht)return!1;let h;if(typeof f=="string"?(h=d===f,this.debug("string match",f,d,h)):(h=f.test(d),this.debug("pattern match",f,d,h)),!h)return!1}if(a===u&&c===l)return!0;if(a===u)return r;if(c===l)return a===u-1&&e[a]==="";throw new Error("wtf?")}braceExpand(){return TP(this.pattern,this.options)}parse(e){Ff(e);let t=this.options;if(e==="**")return Ht;if(e==="")return"";let r,i=null;(r=e.match(aQ))?i=t.dot?cQ:oQ:(r=e.match(YH))?i=(t.nocase?t.dot?eQ:ZH:t.dot?JH:XH)(r[1]):(r=e.match(lQ))?i=(t.nocase?t.dot?fQ:uQ:t.dot?dQ:hQ)(r):(r=e.match(tQ))?i=t.dot?nQ:rQ:(r=e.match(iQ))&&(i=sQ);let s=Xo.fromGlob(e,this.options).toMMPattern();return i&&typeof s=="object"&&Reflect.defineProperty(s,"test",{value:i}),s}makeRe(){if(this.regexp||this.regexp===!1)return this.regexp;let e=this.set;if(!e.length)return this.regexp=!1,this.regexp;let t=this.options,r=t.noglobstar?gQ:t.dot?yQ:_Q,i=new Set(t.nocase?["i"]:[]),s=e.map(l=>{let u=l.map(f=>{if(f instanceof RegExp)for(let d of f.flags.split(""))i.add(d);return typeof f=="string"?EQ(f):f===Ht?Ht:f._src});return u.forEach((f,d)=>{let h=u[d+1],p=u[d-1];f!==Ht||p===Ht||(p===void 0?h!==void 0&&h!==Ht?u[d+1]="(?:\\/|"+r+"\\/)?"+h:u[d]=r:h===void 0?u[d-1]=p+"(?:\\/|"+r+")?":h!==Ht&&(u[d-1]=p+"(?:\\/|\\/"+r+"\\/)"+h,u[d+1]=Ht))}),u.filter(f=>f!==Ht).join("/")}).join("|"),[a,c]=e.length>1?["(?:",")"]:["",""];s="^"+a+s+c+"$",this.negate&&(s="^(?!"+s+").+$");try{this.regexp=new RegExp(s,[...i].join(""))}catch{this.regexp=!1}return this.regexp}slashSplit(e){return this.preserveMultipleSlashes?e.split("/"):this.isWindows&&/^\/\/[^\/]+/.test(e)?["",...e.split(/\/+/)]:e.split(/\/+/)}match(e,t=this.partial){if(this.debug("match",e,this.pattern),this.comment)return!1;if(this.empty)return e==="";if(e==="/"&&t)return!0;let r=this.options;this.isWindows&&(e=e.split("\\").join("/"));let i=this.slashSplit(e);this.debug(this.pattern,"split",i);let s=this.set;this.debug(this.pattern,"set",s);let a=i[i.length-1];if(!a)for(let c=i.length-2;!a&&c>=0;c--)a=i[c];for(let c=0;c<s.length;c++){let l=s[c],u=i;if(r.matchBase&&l.length===1&&(u=[a]),this.matchOne(u,l,t))return r.flipNegate?!0:!this.negate}return r.flipNegate?!1:this.negate}static defaults(e){return jr.defaults(e).Minimatch}};jr.AST=Xo;jr.Minimatch=Un;jr.escape=kl;jr.unescape=Wi;var QP=require("node:url");var Ml=typeof performance=="object"&&performance&&typeof performance.now=="function"?performance:Date,xP=new Set,xw=typeof process=="object"&&process?process:{},IP=o((n,e,t,r)=>{typeof xw.emitWarning=="function"?xw.emitWarning(n,e,t,r):console.error(`[${t}] ${e}: ${n}`)},"emitWarning"),ag=globalThis.AbortController,AP=globalThis.AbortSignal;if(typeof ag>"u"){AP=class{static{o(this,"AbortSignal")}onabort;_onabort=[];reason;aborted=!1;addEventListener(r,i){this._onabort.push(i)}},ag=class{static{o(this,"AbortController")}constructor(){e()}signal=new AP;abort(r){if(!this.signal.aborted){this.signal.reason=r,this.signal.aborted=!0;for(let i of this.signal._onabort)i(r);this.signal.onabort?.(r)}}};let n=xw.env?.LRU_CACHE_IGNORE_AC_WARNING!=="1",e=o(()=>{n&&(n=!1,IP("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.","NO_ABORT_CONTROLLER","ENOTSUP",e))},"warnACPolyfill")}var TQ=o(n=>!xP.has(n),"shouldWarn");var Ja=o(n=>n&&n===Math.floor(n)&&n>0&&isFinite(n),"isPosInt"),CP=o(n=>Ja(n)?n<=Math.pow(2,8)?Uint8Array:n<=Math.pow(2,16)?Uint16Array:n<=Math.pow(2,32)?Uint32Array:n<=Number.MAX_SAFE_INTEGER?jl:null:null,"getUintArray"),jl=class extends Array{static{o(this,"ZeroArray")}constructor(e){super(e),this.fill(0)}},Iw=class n{static{o(this,"Stack")}heap;length;static#e=!1;static create(e){let t=CP(e);if(!t)return[];n.#e=!0;let r=new n(e,t);return n.#e=!1,r}constructor(e,t){if(!n.#e)throw new TypeError("instantiate Stack using Stack.create(n)");this.heap=new t(e),this.length=0}push(e){this.heap[this.length++]=e}pop(){return this.heap[--this.length]}},Nf=class n{static{o(this,"LRUCache")}#e;#n;#r;#t;#c;#_;ttl;ttlResolution;ttlAutopurge;updateAgeOnGet;updateAgeOnHas;allowStale;noDisposeOnSet;noUpdateTTL;maxEntrySize;sizeCalculation;noDeleteOnFetchRejection;noDeleteOnStaleGet;allowStaleOnFetchAbort;allowStaleOnFetchRejection;ignoreFetchAbort;#i;#u;#s;#l;#a;#p;#g;#d;#m;#y;#f;#E;#T;#S;#w;#b;#v;static unsafeExposeInternals(e){return{starts:e.#T,ttls:e.#S,sizes:e.#E,keyMap:e.#s,keyList:e.#l,valList:e.#a,next:e.#p,prev:e.#g,get head(){return e.#d},get tail(){return e.#m},free:e.#y,isBackgroundFetch:o(t=>e.#h(t),"isBackgroundFetch"),backgroundFetch:o((t,r,i,s)=>e.#j(t,r,i,s),"backgroundFetch"),moveToTail:o(t=>e.#V(t),"moveToTail"),indexes:o(t=>e.#C(t),"indexes"),rindexes:o(t=>e.#R(t),"rindexes"),isStale:o(t=>e.#A(t),"isStale")}}get max(){return this.#e}get maxSize(){return this.#n}get calculatedSize(){return this.#u}get size(){return this.#i}get fetchMethod(){return this.#c}get memoMethod(){return this.#_}get dispose(){return this.#r}get disposeAfter(){return this.#t}constructor(e){let{max:t=0,ttl:r,ttlResolution:i=1,ttlAutopurge:s,updateAgeOnGet:a,updateAgeOnHas:c,allowStale:l,dispose:u,disposeAfter:f,noDisposeOnSet:d,noUpdateTTL:h,maxSize:p=0,maxEntrySize:y=0,sizeCalculation:b,fetchMethod:w,memoMethod:v,noDeleteOnFetchRejection:T,noDeleteOnStaleGet:C,allowStaleOnFetchRejection:L,allowStaleOnFetchAbort:V,ignoreFetchAbort:ae}=e;if(t!==0&&!Ja(t))throw new TypeError("max option must be a nonnegative integer");let $=t?CP(t):Array;if(!$)throw new Error("invalid max value: "+t);if(this.#e=t,this.#n=p,this.maxEntrySize=y||this.#n,this.sizeCalculation=b,this.sizeCalculation){if(!this.#n&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if(typeof this.sizeCalculation!="function")throw new TypeError("sizeCalculation set to non-function")}if(v!==void 0&&typeof v!="function")throw new TypeError("memoMethod must be a function if defined");if(this.#_=v,w!==void 0&&typeof w!="function")throw new TypeError("fetchMethod must be a function if specified");if(this.#c=w,this.#b=!!w,this.#s=new Map,this.#l=new Array(t).fill(void 0),this.#a=new Array(t).fill(void 0),this.#p=new $(t),this.#g=new $(t),this.#d=0,this.#m=0,this.#y=Iw.create(t),this.#i=0,this.#u=0,typeof u=="function"&&(this.#r=u),typeof f=="function"?(this.#t=f,this.#f=[]):(this.#t=void 0,this.#f=void 0),this.#w=!!this.#r,this.#v=!!this.#t,this.noDisposeOnSet=!!d,this.noUpdateTTL=!!h,this.noDeleteOnFetchRejection=!!T,this.allowStaleOnFetchRejection=!!L,this.allowStaleOnFetchAbort=!!V,this.ignoreFetchAbort=!!ae,this.maxEntrySize!==0){if(this.#n!==0&&!Ja(this.#n))throw new TypeError("maxSize must be a positive integer if specified");if(!Ja(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");this.#O()}if(this.allowStale=!!l,this.noDeleteOnStaleGet=!!C,this.updateAgeOnGet=!!a,this.updateAgeOnHas=!!c,this.ttlResolution=Ja(i)||i===0?i:1,this.ttlAutopurge=!!s,this.ttl=r||0,this.ttl){if(!Ja(this.ttl))throw new TypeError("ttl must be a positive integer if specified");this.#x()}if(this.#e===0&&this.ttl===0&&this.#n===0)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.#e&&!this.#n){let B="LRU_CACHE_UNBOUNDED";TQ(B)&&(xP.add(B),IP("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",B,n))}}getRemainingTTL(e){return this.#s.has(e)?1/0:0}#x(){let e=new jl(this.#e),t=new jl(this.#e);this.#S=e,this.#T=t,this.#F=(s,a,c=Ml.now())=>{if(t[s]=a!==0?c:0,e[s]=a,a!==0&&this.ttlAutopurge){let l=setTimeout(()=>{this.#A(s)&&this.#P(this.#l[s],"expire")},a+1);l.unref&&l.unref()}},this.#I=s=>{t[s]=e[s]!==0?Ml.now():0},this.#o=(s,a)=>{if(e[a]){let c=e[a],l=t[a];if(!c||!l)return;s.ttl=c,s.start=l,s.now=r||i();let u=s.now-l;s.remainingTTL=c-u}};let r=0,i=o(()=>{let s=Ml.now();if(this.ttlResolution>0){r=s;let a=setTimeout(()=>r=0,this.ttlResolution);a.unref&&a.unref()}return s},"getNow");this.getRemainingTTL=s=>{let a=this.#s.get(s);if(a===void 0)return 0;let c=e[a],l=t[a];if(!c||!l)return 1/0;let u=(r||i())-l;return c-u},this.#A=s=>{let a=t[s],c=e[s];return!!c&&!!a&&(r||i())-a>c}}#I=o(()=>{},"#updateItemAge");#o=o(()=>{},"#statusTTL");#F=o(()=>{},"#setItemTTL");#A=o(()=>!1,"#isStale");#O(){let e=new jl(this.#e);this.#u=0,this.#E=e,this.#D=t=>{this.#u-=e[t],e[t]=0},this.#L=(t,r,i,s)=>{if(this.#h(r))return 0;if(!Ja(i))if(s){if(typeof s!="function")throw new TypeError("sizeCalculation must be a function");if(i=s(r,t),!Ja(i))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}else throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");return i},this.#N=(t,r,i)=>{if(e[t]=r,this.#n){let s=this.#n-e[t];for(;this.#u>s;)this.#M(!0)}this.#u+=e[t],i&&(i.entrySize=r,i.totalCalculatedSize=this.#u)}}#D=o(e=>{},"#removeItemSize");#N=o((e,t,r)=>{},"#addItemSize");#L=o((e,t,r,i)=>{if(r||i)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");return 0},"#requireSize");*#C({allowStale:e=this.allowStale}={}){if(this.#i)for(let t=this.#m;!(!this.#k(t)||((e||!this.#A(t))&&(yield t),t===this.#d));)t=this.#g[t]}*#R({allowStale:e=this.allowStale}={}){if(this.#i)for(let t=this.#d;!(!this.#k(t)||((e||!this.#A(t))&&(yield t),t===this.#m));)t=this.#p[t]}#k(e){return e!==void 0&&this.#s.get(this.#l[e])===e}*entries(){for(let e of this.#C())this.#a[e]!==void 0&&this.#l[e]!==void 0&&!this.#h(this.#a[e])&&(yield[this.#l[e],this.#a[e]])}*rentries(){for(let e of this.#R())this.#a[e]!==void 0&&this.#l[e]!==void 0&&!this.#h(this.#a[e])&&(yield[this.#l[e],this.#a[e]])}*keys(){for(let e of this.#C()){let t=this.#l[e];t!==void 0&&!this.#h(this.#a[e])&&(yield t)}}*rkeys(){for(let e of this.#R()){let t=this.#l[e];t!==void 0&&!this.#h(this.#a[e])&&(yield t)}}*values(){for(let e of this.#C())this.#a[e]!==void 0&&!this.#h(this.#a[e])&&(yield this.#a[e])}*rvalues(){for(let e of this.#R())this.#a[e]!==void 0&&!this.#h(this.#a[e])&&(yield this.#a[e])}[Symbol.iterator](){return this.entries()}[Symbol.toStringTag]="LRUCache";find(e,t={}){for(let r of this.#C()){let i=this.#a[r],s=this.#h(i)?i.__staleWhileFetching:i;if(s!==void 0&&e(s,this.#l[r],this))return this.get(this.#l[r],t)}}forEach(e,t=this){for(let r of this.#C()){let i=this.#a[r],s=this.#h(i)?i.__staleWhileFetching:i;s!==void 0&&e.call(t,s,this.#l[r],this)}}rforEach(e,t=this){for(let r of this.#R()){let i=this.#a[r],s=this.#h(i)?i.__staleWhileFetching:i;s!==void 0&&e.call(t,s,this.#l[r],this)}}purgeStale(){let e=!1;for(let t of this.#R({allowStale:!0}))this.#A(t)&&(this.#P(this.#l[t],"expire"),e=!0);return e}info(e){let t=this.#s.get(e);if(t===void 0)return;let r=this.#a[t],i=this.#h(r)?r.__staleWhileFetching:r;if(i===void 0)return;let s={value:i};if(this.#S&&this.#T){let a=this.#S[t],c=this.#T[t];if(a&&c){let l=a-(Ml.now()-c);s.ttl=l,s.start=Date.now()}}return this.#E&&(s.size=this.#E[t]),s}dump(){let e=[];for(let t of this.#C({allowStale:!0})){let r=this.#l[t],i=this.#a[t],s=this.#h(i)?i.__staleWhileFetching:i;if(s===void 0||r===void 0)continue;let a={value:s};if(this.#S&&this.#T){a.ttl=this.#S[t];let c=Ml.now()-this.#T[t];a.start=Math.floor(Date.now()-c)}this.#E&&(a.size=this.#E[t]),e.unshift([r,a])}return e}load(e){this.clear();for(let[t,r]of e){if(r.start){let i=Date.now()-r.start;r.start=Ml.now()-i}this.set(t,r.value,r)}}set(e,t,r={}){if(t===void 0)return this.delete(e),this;let{ttl:i=this.ttl,start:s,noDisposeOnSet:a=this.noDisposeOnSet,sizeCalculation:c=this.sizeCalculation,status:l}=r,{noUpdateTTL:u=this.noUpdateTTL}=r,f=this.#L(e,t,r.size||0,c);if(this.maxEntrySize&&f>this.maxEntrySize)return l&&(l.set="miss",l.maxEntrySizeExceeded=!0),this.#P(e,"set"),this;let d=this.#i===0?void 0:this.#s.get(e);if(d===void 0)d=this.#i===0?this.#m:this.#y.length!==0?this.#y.pop():this.#i===this.#e?this.#M(!1):this.#i,this.#l[d]=e,this.#a[d]=t,this.#s.set(e,d),this.#p[this.#m]=d,this.#g[d]=this.#m,this.#m=d,this.#i++,this.#N(d,f,l),l&&(l.set="add"),u=!1;else{this.#V(d);let h=this.#a[d];if(t!==h){if(this.#b&&this.#h(h)){h.__abortController.abort(new Error("replaced"));let{__staleWhileFetching:p}=h;p!==void 0&&!a&&(this.#w&&this.#r?.(p,e,"set"),this.#v&&this.#f?.push([p,e,"set"]))}else a||(this.#w&&this.#r?.(h,e,"set"),this.#v&&this.#f?.push([h,e,"set"]));if(this.#D(d),this.#N(d,f,l),this.#a[d]=t,l){l.set="replace";let p=h&&this.#h(h)?h.__staleWhileFetching:h;p!==void 0&&(l.oldValue=p)}}else l&&(l.set="update")}if(i!==0&&!this.#S&&this.#x(),this.#S&&(u||this.#F(d,i,s),l&&this.#o(l,d)),!a&&this.#v&&this.#f){let h=this.#f,p;for(;p=h?.shift();)this.#t?.(...p)}return this}pop(){try{for(;this.#i;){let e=this.#a[this.#d];if(this.#M(!0),this.#h(e)){if(e.__staleWhileFetching)return e.__staleWhileFetching}else if(e!==void 0)return e}}finally{if(this.#v&&this.#f){let e=this.#f,t;for(;t=e?.shift();)this.#t?.(...t)}}}#M(e){let t=this.#d,r=this.#l[t],i=this.#a[t];return this.#b&&this.#h(i)?i.__abortController.abort(new Error("evicted")):(this.#w||this.#v)&&(this.#w&&this.#r?.(i,r,"evict"),this.#v&&this.#f?.push([i,r,"evict"])),this.#D(t),e&&(this.#l[t]=void 0,this.#a[t]=void 0,this.#y.push(t)),this.#i===1?(this.#d=this.#m=0,this.#y.length=0):this.#d=this.#p[t],this.#s.delete(r),this.#i--,t}has(e,t={}){let{updateAgeOnHas:r=this.updateAgeOnHas,status:i}=t,s=this.#s.get(e);if(s!==void 0){let a=this.#a[s];if(this.#h(a)&&a.__staleWhileFetching===void 0)return!1;if(this.#A(s))i&&(i.has="stale",this.#o(i,s));else return r&&this.#I(s),i&&(i.has="hit",this.#o(i,s)),!0}else i&&(i.has="miss");return!1}peek(e,t={}){let{allowStale:r=this.allowStale}=t,i=this.#s.get(e);if(i===void 0||!r&&this.#A(i))return;let s=this.#a[i];return this.#h(s)?s.__staleWhileFetching:s}#j(e,t,r,i){let s=t===void 0?void 0:this.#a[t];if(this.#h(s))return s;let a=new ag,{signal:c}=r;c?.addEventListener("abort",()=>a.abort(c.reason),{signal:a.signal});let l={signal:a.signal,options:r,context:i},u=o((b,w=!1)=>{let{aborted:v}=a.signal,T=r.ignoreFetchAbort&&b!==void 0;if(r.status&&(v&&!w?(r.status.fetchAborted=!0,r.status.fetchError=a.signal.reason,T&&(r.status.fetchAbortIgnored=!0)):r.status.fetchResolved=!0),v&&!T&&!w)return d(a.signal.reason);let C=p;return this.#a[t]===p&&(b===void 0?C.__staleWhileFetching?this.#a[t]=C.__staleWhileFetching:this.#P(e,"fetch"):(r.status&&(r.status.fetchUpdated=!0),this.set(e,b,l.options))),b},"cb"),f=o(b=>(r.status&&(r.status.fetchRejected=!0,r.status.fetchError=b),d(b)),"eb"),d=o(b=>{let{aborted:w}=a.signal,v=w&&r.allowStaleOnFetchAbort,T=v||r.allowStaleOnFetchRejection,C=T||r.noDeleteOnFetchRejection,L=p;if(this.#a[t]===p&&(!C||L.__staleWhileFetching===void 0?this.#P(e,"fetch"):v||(this.#a[t]=L.__staleWhileFetching)),T)return r.status&&L.__staleWhileFetching!==void 0&&(r.status.returnedStale=!0),L.__staleWhileFetching;if(L.__returned===L)throw b},"fetchFail"),h=o((b,w)=>{let v=this.#c?.(e,s,l);v&&v instanceof Promise&&v.then(T=>b(T===void 0?void 0:T),w),a.signal.addEventListener("abort",()=>{(!r.ignoreFetchAbort||r.allowStaleOnFetchAbort)&&(b(void 0),r.allowStaleOnFetchAbort&&(b=o(T=>u(T,!0),"res")))})},"pcall");r.status&&(r.status.fetchDispatched=!0);let p=new Promise(h).then(u,f),y=Object.assign(p,{__abortController:a,__staleWhileFetching:s,__returned:void 0});return t===void 0?(this.set(e,y,{...l.options,status:void 0}),t=this.#s.get(e)):this.#a[t]=y,y}#h(e){if(!this.#b)return!1;let t=e;return!!t&&t instanceof Promise&&t.hasOwnProperty("__staleWhileFetching")&&t.__abortController instanceof ag}async fetch(e,t={}){let{allowStale:r=this.allowStale,updateAgeOnGet:i=this.updateAgeOnGet,noDeleteOnStaleGet:s=this.noDeleteOnStaleGet,ttl:a=this.ttl,noDisposeOnSet:c=this.noDisposeOnSet,size:l=0,sizeCalculation:u=this.sizeCalculation,noUpdateTTL:f=this.noUpdateTTL,noDeleteOnFetchRejection:d=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:h=this.allowStaleOnFetchRejection,ignoreFetchAbort:p=this.ignoreFetchAbort,allowStaleOnFetchAbort:y=this.allowStaleOnFetchAbort,context:b,forceRefresh:w=!1,status:v,signal:T}=t;if(!this.#b)return v&&(v.fetch="get"),this.get(e,{allowStale:r,updateAgeOnGet:i,noDeleteOnStaleGet:s,status:v});let C={allowStale:r,updateAgeOnGet:i,noDeleteOnStaleGet:s,ttl:a,noDisposeOnSet:c,size:l,sizeCalculation:u,noUpdateTTL:f,noDeleteOnFetchRejection:d,allowStaleOnFetchRejection:h,allowStaleOnFetchAbort:y,ignoreFetchAbort:p,status:v,signal:T},L=this.#s.get(e);if(L===void 0){v&&(v.fetch="miss");let V=this.#j(e,L,C,b);return V.__returned=V}else{let V=this.#a[L];if(this.#h(V)){let k=r&&V.__staleWhileFetching!==void 0;return v&&(v.fetch="inflight",k&&(v.returnedStale=!0)),k?V.__staleWhileFetching:V.__returned=V}let ae=this.#A(L);if(!w&&!ae)return v&&(v.fetch="hit"),this.#V(L),i&&this.#I(L),v&&this.#o(v,L),V;let $=this.#j(e,L,C,b),F=$.__staleWhileFetching!==void 0&&r;return v&&(v.fetch=ae?"stale":"refresh",F&&ae&&(v.returnedStale=!0)),F?$.__staleWhileFetching:$.__returned=$}}async forceFetch(e,t={}){let r=await this.fetch(e,t);if(r===void 0)throw new Error("fetch() returned undefined");return r}memo(e,t={}){let r=this.#_;if(!r)throw new Error("no memoMethod provided to constructor");let{context:i,forceRefresh:s,...a}=t,c=this.get(e,a);if(!s&&c!==void 0)return c;let l=r(e,c,{options:a,context:i});return this.set(e,l,a),l}get(e,t={}){let{allowStale:r=this.allowStale,updateAgeOnGet:i=this.updateAgeOnGet,noDeleteOnStaleGet:s=this.noDeleteOnStaleGet,status:a}=t,c=this.#s.get(e);if(c!==void 0){let l=this.#a[c],u=this.#h(l);return a&&this.#o(a,c),this.#A(c)?(a&&(a.get="stale"),u?(a&&r&&l.__staleWhileFetching!==void 0&&(a.returnedStale=!0),r?l.__staleWhileFetching:void 0):(s||this.#P(e,"expire"),a&&r&&(a.returnedStale=!0),r?l:void 0)):(a&&(a.get="hit"),u?l.__staleWhileFetching:(this.#V(c),i&&this.#I(c),l))}else a&&(a.get="miss")}#$(e,t){this.#g[t]=e,this.#p[e]=t}#V(e){e!==this.#m&&(e===this.#d?this.#d=this.#p[e]:this.#$(this.#g[e],this.#p[e]),this.#$(this.#m,e),this.#m=e)}delete(e){return this.#P(e,"delete")}#P(e,t){let r=!1;if(this.#i!==0){let i=this.#s.get(e);if(i!==void 0)if(r=!0,this.#i===1)this.#U(t);else{this.#D(i);let s=this.#a[i];if(this.#h(s)?s.__abortController.abort(new Error("deleted")):(this.#w||this.#v)&&(this.#w&&this.#r?.(s,e,t),this.#v&&this.#f?.push([s,e,t])),this.#s.delete(e),this.#l[i]=void 0,this.#a[i]=void 0,i===this.#m)this.#m=this.#g[i];else if(i===this.#d)this.#d=this.#p[i];else{let a=this.#g[i];this.#p[a]=this.#p[i];let c=this.#p[i];this.#g[c]=this.#g[i]}this.#i--,this.#y.push(i)}}if(this.#v&&this.#f?.length){let i=this.#f,s;for(;s=i?.shift();)this.#t?.(...s)}return r}clear(){return this.#U("delete")}#U(e){for(let t of this.#R({allowStale:!0})){let r=this.#a[t];if(this.#h(r))r.__abortController.abort(new Error("deleted"));else{let i=this.#l[t];this.#w&&this.#r?.(r,i,e),this.#v&&this.#f?.push([r,i,e])}}if(this.#s.clear(),this.#a.fill(void 0),this.#l.fill(void 0),this.#S&&this.#T&&(this.#S.fill(0),this.#T.fill(0)),this.#E&&this.#E.fill(0),this.#d=0,this.#m=0,this.#y.length=0,this.#u=0,this.#i=0,this.#v&&this.#f){let t=this.#f,r;for(;r=t?.shift();)this.#t?.(...r)}}};var Ul=require("node:path"),jP=require("node:url"),Cs=require("fs"),NQ=Z(require("node:fs"),1),to=require("node:fs/promises");var hg=require("node:events"),Nw=Z(require("node:stream"),1),DP=require("node:string_decoder");var RP=typeof process=="object"&&process?process:{stdout:null,stderr:null},AQ=o(n=>!!n&&typeof n=="object"&&(n instanceof eo||n instanceof Nw.default||xQ(n)||IQ(n)),"isStream"),xQ=o(n=>!!n&&typeof n=="object"&&n instanceof hg.EventEmitter&&typeof n.pipe=="function"&&n.pipe!==Nw.default.Writable.prototype.pipe,"isReadable"),IQ=o(n=>!!n&&typeof n=="object"&&n instanceof hg.EventEmitter&&typeof n.write=="function"&&typeof n.end=="function","isWritable"),ha=Symbol("EOF"),pa=Symbol("maybeEmitEnd"),Za=Symbol("emittedEnd"),og=Symbol("emittingEnd"),Lf=Symbol("emittedError"),cg=Symbol("closed"),OP=Symbol("read"),lg=Symbol("flush"),PP=Symbol("flushChunk"),Gi=Symbol("encoding"),$l=Symbol("decoder"),Er=Symbol("flowing"),kf=Symbol("paused"),Vl=Symbol("resume"),Tr=Symbol("buffer"),_n=Symbol("pipes"),Ar=Symbol("bufferLength"),Cw=Symbol("bufferPush"),ug=Symbol("bufferShift"),Yr=Symbol("objectMode"),Qt=Symbol("destroyed"),Rw=Symbol("error"),Ow=Symbol("emitData"),FP=Symbol("emitEnd"),Pw=Symbol("emitEnd2"),xs=Symbol("async"),Fw=Symbol("abort"),fg=Symbol("aborted"),Mf=Symbol("signal"),Jo=Symbol("dataListeners"),Bn=Symbol("discarded"),jf=o(n=>Promise.resolve().then(n),"defer"),CQ=o(n=>n(),"nodefer"),RQ=o(n=>n==="end"||n==="finish"||n==="prefinish","isEndish"),OQ=o(n=>n instanceof ArrayBuffer||!!n&&typeof n=="object"&&n.constructor&&n.constructor.name==="ArrayBuffer"&&n.byteLength>=0,"isArrayBufferLike"),PQ=o(n=>!Buffer.isBuffer(n)&&ArrayBuffer.isView(n),"isArrayBufferView"),dg=class{static{o(this,"Pipe")}src;dest;opts;ondrain;constructor(e,t,r){this.src=e,this.dest=t,this.opts=r,this.ondrain=()=>e[Vl](),this.dest.on("drain",this.ondrain)}unpipe(){this.dest.removeListener("drain",this.ondrain)}proxyErrors(e){}end(){this.unpipe(),this.opts.end&&this.dest.end()}},Dw=class extends dg{static{o(this,"PipeProxyErrors")}unpipe(){this.src.removeListener("error",this.proxyErrors),super.unpipe()}constructor(e,t,r){super(e,t,r),this.proxyErrors=i=>t.emit("error",i),e.on("error",this.proxyErrors)}},FQ=o(n=>!!n.objectMode,"isObjectModeOptions"),DQ=o(n=>!n.objectMode&&!!n.encoding&&n.encoding!=="buffer","isEncodingOptions"),eo=class extends hg.EventEmitter{static{o(this,"Minipass")}[Er]=!1;[kf]=!1;[_n]=[];[Tr]=[];[Yr];[Gi];[xs];[$l];[ha]=!1;[Za]=!1;[og]=!1;[cg]=!1;[Lf]=null;[Ar]=0;[Qt]=!1;[Mf];[fg]=!1;[Jo]=0;[Bn]=!1;writable=!0;readable=!0;constructor(...e){let t=e[0]||{};if(super(),t.objectMode&&typeof t.encoding=="string")throw new TypeError("Encoding and objectMode may not be used together");FQ(t)?(this[Yr]=!0,this[Gi]=null):DQ(t)?(this[Gi]=t.encoding,this[Yr]=!1):(this[Yr]=!1,this[Gi]=null),this[xs]=!!t.async,this[$l]=this[Gi]?new DP.StringDecoder(this[Gi]):null,t&&t.debugExposeBuffer===!0&&Object.defineProperty(this,"buffer",{get:o(()=>this[Tr],"get")}),t&&t.debugExposePipes===!0&&Object.defineProperty(this,"pipes",{get:o(()=>this[_n],"get")});let{signal:r}=t;r&&(this[Mf]=r,r.aborted?this[Fw]():r.addEventListener("abort",()=>this[Fw]()))}get bufferLength(){return this[Ar]}get encoding(){return this[Gi]}set encoding(e){throw new Error("Encoding must be set at instantiation time")}setEncoding(e){throw new Error("Encoding must be set at instantiation time")}get objectMode(){return this[Yr]}set objectMode(e){throw new Error("objectMode must be set at instantiation time")}get async(){return this[xs]}set async(e){this[xs]=this[xs]||!!e}[Fw](){this[fg]=!0,this.emit("abort",this[Mf]?.reason),this.destroy(this[Mf]?.reason)}get aborted(){return this[fg]}set aborted(e){}write(e,t,r){if(this[fg])return!1;if(this[ha])throw new Error("write after end");if(this[Qt])return this.emit("error",Object.assign(new Error("Cannot call write after a stream was destroyed"),{code:"ERR_STREAM_DESTROYED"})),!0;typeof t=="function"&&(r=t,t="utf8"),t||(t="utf8");let i=this[xs]?jf:CQ;if(!this[Yr]&&!Buffer.isBuffer(e)){if(PQ(e))e=Buffer.from(e.buffer,e.byteOffset,e.byteLength);else if(OQ(e))e=Buffer.from(e);else if(typeof e!="string")throw new Error("Non-contiguous data written to non-objectMode stream")}return this[Yr]?(this[Er]&&this[Ar]!==0&&this[lg](!0),this[Er]?this.emit("data",e):this[Cw](e),this[Ar]!==0&&this.emit("readable"),r&&i(r),this[Er]):e.length?(typeof e=="string"&&!(t===this[Gi]&&!this[$l]?.lastNeed)&&(e=Buffer.from(e,t)),Buffer.isBuffer(e)&&this[Gi]&&(e=this[$l].write(e)),this[Er]&&this[Ar]!==0&&this[lg](!0),this[Er]?this.emit("data",e):this[Cw](e),this[Ar]!==0&&this.emit("readable"),r&&i(r),this[Er]):(this[Ar]!==0&&this.emit("readable"),r&&i(r),this[Er])}read(e){if(this[Qt])return null;if(this[Bn]=!1,this[Ar]===0||e===0||e&&e>this[Ar])return this[pa](),null;this[Yr]&&(e=null),this[Tr].length>1&&!this[Yr]&&(this[Tr]=[this[Gi]?this[Tr].join(""):Buffer.concat(this[Tr],this[Ar])]);let t=this[OP](e||null,this[Tr][0]);return this[pa](),t}[OP](e,t){if(this[Yr])this[ug]();else{let r=t;e===r.length||e===null?this[ug]():typeof r=="string"?(this[Tr][0]=r.slice(e),t=r.slice(0,e),this[Ar]-=e):(this[Tr][0]=r.subarray(e),t=r.subarray(0,e),this[Ar]-=e)}return this.emit("data",t),!this[Tr].length&&!this[ha]&&this.emit("drain"),t}end(e,t,r){return typeof e=="function"&&(r=e,e=void 0),typeof t=="function"&&(r=t,t="utf8"),e!==void 0&&this.write(e,t),r&&this.once("end",r),this[ha]=!0,this.writable=!1,(this[Er]||!this[kf])&&this[pa](),this}[Vl](){this[Qt]||(!this[Jo]&&!this[_n].length&&(this[Bn]=!0),this[kf]=!1,this[Er]=!0,this.emit("resume"),this[Tr].length?this[lg]():this[ha]?this[pa]():this.emit("drain"))}resume(){return this[Vl]()}pause(){this[Er]=!1,this[kf]=!0,this[Bn]=!1}get destroyed(){return this[Qt]}get flowing(){return this[Er]}get paused(){return this[kf]}[Cw](e){this[Yr]?this[Ar]+=1:this[Ar]+=e.length,this[Tr].push(e)}[ug](){return this[Yr]?this[Ar]-=1:this[Ar]-=this[Tr][0].length,this[Tr].shift()}[lg](e=!1){do;while(this[PP](this[ug]())&&this[Tr].length);!e&&!this[Tr].length&&!this[ha]&&this.emit("drain")}[PP](e){return this.emit("data",e),this[Er]}pipe(e,t){if(this[Qt])return e;this[Bn]=!1;let r=this[Za];return t=t||{},e===RP.stdout||e===RP.stderr?t.end=!1:t.end=t.end!==!1,t.proxyErrors=!!t.proxyErrors,r?t.end&&e.end():(this[_n].push(t.proxyErrors?new Dw(this,e,t):new dg(this,e,t)),this[xs]?jf(()=>this[Vl]()):this[Vl]()),e}unpipe(e){let t=this[_n].find(r=>r.dest===e);t&&(this[_n].length===1?(this[Er]&&this[Jo]===0&&(this[Er]=!1),this[_n]=[]):this[_n].splice(this[_n].indexOf(t),1),t.unpipe())}addListener(e,t){return this.on(e,t)}on(e,t){let r=super.on(e,t);if(e==="data")this[Bn]=!1,this[Jo]++,!this[_n].length&&!this[Er]&&this[Vl]();else if(e==="readable"&&this[Ar]!==0)super.emit("readable");else if(RQ(e)&&this[Za])super.emit(e),this.removeAllListeners(e);else if(e==="error"&&this[Lf]){let i=t;this[xs]?jf(()=>i.call(this,this[Lf])):i.call(this,this[Lf])}return r}removeListener(e,t){return this.off(e,t)}off(e,t){let r=super.off(e,t);return e==="data"&&(this[Jo]=this.listeners("data").length,this[Jo]===0&&!this[Bn]&&!this[_n].length&&(this[Er]=!1)),r}removeAllListeners(e){let t=super.removeAllListeners(e);return(e==="data"||e===void 0)&&(this[Jo]=0,!this[Bn]&&!this[_n].length&&(this[Er]=!1)),t}get emittedEnd(){return this[Za]}[pa](){!this[og]&&!this[Za]&&!this[Qt]&&this[Tr].length===0&&this[ha]&&(this[og]=!0,this.emit("end"),this.emit("prefinish"),this.emit("finish"),this[cg]&&this.emit("close"),this[og]=!1)}emit(e,...t){let r=t[0];if(e!=="error"&&e!=="close"&&e!==Qt&&this[Qt])return!1;if(e==="data")return!this[Yr]&&!r?!1:this[xs]?(jf(()=>this[Ow](r)),!0):this[Ow](r);if(e==="end")return this[FP]();if(e==="close"){if(this[cg]=!0,!this[Za]&&!this[Qt])return!1;let s=super.emit("close");return this.removeAllListeners("close"),s}else if(e==="error"){this[Lf]=r,super.emit(Rw,r);let s=!this[Mf]||this.listeners("error").length?super.emit("error",r):!1;return this[pa](),s}else if(e==="resume"){let s=super.emit("resume");return this[pa](),s}else if(e==="finish"||e==="prefinish"){let s=super.emit(e);return this.removeAllListeners(e),s}let i=super.emit(e,...t);return this[pa](),i}[Ow](e){for(let r of this[_n])r.dest.write(e)===!1&&this.pause();let t=this[Bn]?!1:super.emit("data",e);return this[pa](),t}[FP](){return this[Za]?!1:(this[Za]=!0,this.readable=!1,this[xs]?(jf(()=>this[Pw]()),!0):this[Pw]())}[Pw](){if(this[$l]){let t=this[$l].end();if(t){for(let r of this[_n])r.dest.write(t);this[Bn]||super.emit("data",t)}}for(let t of this[_n])t.end();let e=super.emit("end");return this.removeAllListeners("end"),e}async collect(){let e=Object.assign([],{dataLength:0});this[Yr]||(e.dataLength=0);let t=this.promise();return this.on("data",r=>{e.push(r),this[Yr]||(e.dataLength+=r.length)}),await t,e}async concat(){if(this[Yr])throw new Error("cannot concat in objectMode");let e=await this.collect();return this[Gi]?e.join(""):Buffer.concat(e,e.dataLength)}async promise(){return new Promise((e,t)=>{this.on(Qt,()=>t(new Error("stream destroyed"))),this.on("error",r=>t(r)),this.on("end",()=>e())})}[Symbol.asyncIterator](){this[Bn]=!1;let e=!1,t=o(async()=>(this.pause(),e=!0,{value:void 0,done:!0}),"stop");return{next:o(()=>{if(e)return t();let i=this.read();if(i!==null)return Promise.resolve({done:!1,value:i});if(this[ha])return t();let s,a,c=o(d=>{this.off("data",l),this.off("end",u),this.off(Qt,f),t(),a(d)},"onerr"),l=o(d=>{this.off("error",c),this.off("end",u),this.off(Qt,f),this.pause(),s({value:d,done:!!this[ha]})},"ondata"),u=o(()=>{this.off("error",c),this.off("data",l),this.off(Qt,f),t(),s({done:!0,value:void 0})},"onend"),f=o(()=>c(new Error("stream destroyed")),"ondestroy");return new Promise((d,h)=>{a=h,s=d,this.once(Qt,f),this.once("error",c),this.once("end",u),this.once("data",l)})},"next"),throw:t,return:t,[Symbol.asyncIterator](){return this}}}[Symbol.iterator](){this[Bn]=!1;let e=!1,t=o(()=>(this.pause(),this.off(Rw,t),this.off(Qt,t),this.off("end",t),e=!0,{done:!0,value:void 0}),"stop"),r=o(()=>{if(e)return t();let i=this.read();return i===null?t():{done:!1,value:i}},"next");return this.once("end",t),this.once(Rw,t),this.once(Qt,t),{next:r,throw:t,return:t,[Symbol.iterator](){return this}}}destroy(e){if(this[Qt])return e?this.emit("error",e):this.emit(Qt),this;this[Qt]=!0,this[Bn]=!0,this[Tr].length=0,this[Ar]=0;let t=this;return typeof t.close=="function"&&!this[cg]&&t.close(),e?this.emit("error",e):this.emit(Qt),this}static get isStream(){return AQ}};var LQ=Cs.realpathSync.native,Vf={lstatSync:Cs.lstatSync,readdir:Cs.readdir,readdirSync:Cs.readdirSync,readlinkSync:Cs.readlinkSync,realpathSync:LQ,promises:{lstat:to.lstat,readdir:to.readdir,readlink:to.readlink,realpath:to.realpath}},$P=o(n=>!n||n===Vf||n===NQ?Vf:{...Vf,...n,promises:{...Vf.promises,...n.promises||{}}},"fsFromOption"),VP=/^\\\\\?\\([a-z]:)\\?$/i,kQ=o(n=>n.replace(/\//g,"\\").replace(VP,"$1\\"),"uncToDrive"),MQ=/[\\\/]/,oi=0,UP=1,BP=2,Is=4,qP=6,WP=8,Zo=10,GP=12,ai=15,$f=~ai,Lw=16,NP=32,Uf=64,zi=128,pg=256,gg=512,LP=Uf|zi|gg,jQ=1023,kw=o(n=>n.isFile()?WP:n.isDirectory()?Is:n.isSymbolicLink()?Zo:n.isCharacterDevice()?BP:n.isBlockDevice()?qP:n.isSocket()?GP:n.isFIFO()?UP:oi,"entToType"),kP=new Map,Bf=o(n=>{let e=kP.get(n);if(e)return e;let t=n.normalize("NFKD");return kP.set(n,t),t},"normalize"),MP=new Map,mg=o(n=>{let e=MP.get(n);if(e)return e;let t=Bf(n.toLowerCase());return MP.set(n,t),t},"normalizeNocase"),yg=class extends Nf{static{o(this,"ResolveCache")}constructor(){super({max:256})}},Mw=class extends Nf{static{o(this,"ChildrenCache")}constructor(e=16*1024){super({maxSize:e,sizeCalculation:o(t=>t.length+1,"sizeCalculation")})}},zP=Symbol("PathScurry setAsCwd"),Xr=class{static{o(this,"PathBase")}name;root;roots;parent;nocase;isCWD=!1;#e;#n;get dev(){return this.#n}#r;get mode(){return this.#r}#t;get nlink(){return this.#t}#c;get uid(){return this.#c}#_;get gid(){return this.#_}#i;get rdev(){return this.#i}#u;get blksize(){return this.#u}#s;get ino(){return this.#s}#l;get size(){return this.#l}#a;get blocks(){return this.#a}#p;get atimeMs(){return this.#p}#g;get mtimeMs(){return this.#g}#d;get ctimeMs(){return this.#d}#m;get birthtimeMs(){return this.#m}#y;get atime(){return this.#y}#f;get mtime(){return this.#f}#E;get ctime(){return this.#E}#T;get birthtime(){return this.#T}#S;#w;#b;#v;#x;#I;#o;#F;#A;#O;get parentPath(){return(this.parent||this).fullpath()}get path(){return this.parentPath}constructor(e,t=oi,r,i,s,a,c){this.name=e,this.#S=s?mg(e):Bf(e),this.#o=t&jQ,this.nocase=s,this.roots=i,this.root=r||this,this.#F=a,this.#b=c.fullpath,this.#x=c.relative,this.#I=c.relativePosix,this.parent=c.parent,this.parent?this.#e=this.parent.#e:this.#e=$P(c.fs)}depth(){return this.#w!==void 0?this.#w:this.parent?this.#w=this.parent.depth()+1:this.#w=0}childrenCache(){return this.#F}resolve(e){if(!e)return this;let t=this.getRootString(e),i=e.substring(t.length).split(this.splitSep);return t?this.getRoot(t).#D(i):this.#D(i)}#D(e){let t=this;for(let r of e)t=t.child(r);return t}children(){let e=this.#F.get(this);if(e)return e;let t=Object.assign([],{provisional:0});return this.#F.set(this,t),this.#o&=~Lw,t}child(e,t){if(e===""||e===".")return this;if(e==="..")return this.parent||this;let r=this.children(),i=this.nocase?mg(e):Bf(e);for(let l of r)if(l.#S===i)return l;let s=this.parent?this.sep:"",a=this.#b?this.#b+s+e:void 0,c=this.newChild(e,oi,{...t,parent:this,fullpath:a});return this.canReaddir()||(c.#o|=zi),r.push(c),c}relative(){if(this.isCWD)return"";if(this.#x!==void 0)return this.#x;let e=this.name,t=this.parent;if(!t)return this.#x=this.name;let r=t.relative();return r+(!r||!t.parent?"":this.sep)+e}relativePosix(){if(this.sep==="/")return this.relative();if(this.isCWD)return"";if(this.#I!==void 0)return this.#I;let e=this.name,t=this.parent;if(!t)return this.#I=this.fullpathPosix();let r=t.relativePosix();return r+(!r||!t.parent?"":"/")+e}fullpath(){if(this.#b!==void 0)return this.#b;let e=this.name,t=this.parent;if(!t)return this.#b=this.name;let i=t.fullpath()+(t.parent?this.sep:"")+e;return this.#b=i}fullpathPosix(){if(this.#v!==void 0)return this.#v;if(this.sep==="/")return this.#v=this.fullpath();if(!this.parent){let i=this.fullpath().replace(/\\/g,"/");return/^[a-z]:\//i.test(i)?this.#v=`//?/${i}`:this.#v=i}let e=this.parent,t=e.fullpathPosix(),r=t+(!t||!e.parent?"":"/")+this.name;return this.#v=r}isUnknown(){return(this.#o&ai)===oi}isType(e){return this[`is${e}`]()}getType(){return this.isUnknown()?"Unknown":this.isDirectory()?"Directory":this.isFile()?"File":this.isSymbolicLink()?"SymbolicLink":this.isFIFO()?"FIFO":this.isCharacterDevice()?"CharacterDevice":this.isBlockDevice()?"BlockDevice":this.isSocket()?"Socket":"Unknown"}isFile(){return(this.#o&ai)===WP}isDirectory(){return(this.#o&ai)===Is}isCharacterDevice(){return(this.#o&ai)===BP}isBlockDevice(){return(this.#o&ai)===qP}isFIFO(){return(this.#o&ai)===UP}isSocket(){return(this.#o&ai)===GP}isSymbolicLink(){return(this.#o&Zo)===Zo}lstatCached(){return this.#o&NP?this:void 0}readlinkCached(){return this.#A}realpathCached(){return this.#O}readdirCached(){let e=this.children();return e.slice(0,e.provisional)}canReadlink(){if(this.#A)return!0;if(!this.parent)return!1;let e=this.#o&ai;return!(e!==oi&&e!==Zo||this.#o&pg||this.#o&zi)}calledReaddir(){return!!(this.#o&Lw)}isENOENT(){return!!(this.#o&zi)}isNamed(e){return this.nocase?this.#S===mg(e):this.#S===Bf(e)}async readlink(){let e=this.#A;if(e)return e;if(this.canReadlink()&&this.parent)try{let t=await this.#e.promises.readlink(this.fullpath()),r=(await this.parent.realpath())?.resolve(t);if(r)return this.#A=r}catch(t){this.#h(t.code);return}}readlinkSync(){let e=this.#A;if(e)return e;if(this.canReadlink()&&this.parent)try{let t=this.#e.readlinkSync(this.fullpath()),r=this.parent.realpathSync()?.resolve(t);if(r)return this.#A=r}catch(t){this.#h(t.code);return}}#N(e){this.#o|=Lw;for(let t=e.provisional;t<e.length;t++){let r=e[t];r&&r.#L()}}#L(){this.#o&zi||(this.#o=(this.#o|zi)&$f,this.#C())}#C(){let e=this.children();e.provisional=0;for(let t of e)t.#L()}#R(){this.#o|=gg,this.#k()}#k(){if(this.#o&Uf)return;let e=this.#o;(e&ai)===Is&&(e&=$f),this.#o=e|Uf,this.#C()}#M(e=""){e==="ENOTDIR"||e==="EPERM"?this.#k():e==="ENOENT"?this.#L():this.children().provisional=0}#j(e=""){e==="ENOTDIR"?this.parent.#k():e==="ENOENT"&&this.#L()}#h(e=""){let t=this.#o;t|=pg,e==="ENOENT"&&(t|=zi),(e==="EINVAL"||e==="UNKNOWN")&&(t&=$f),this.#o=t,e==="ENOTDIR"&&this.parent&&this.parent.#k()}#$(e,t){return this.#P(e,t)||this.#V(e,t)}#V(e,t){let r=kw(e),i=this.newChild(e.name,r,{parent:this}),s=i.#o&ai;return s!==Is&&s!==Zo&&s!==oi&&(i.#o|=Uf),t.unshift(i),t.provisional++,i}#P(e,t){for(let r=t.provisional;r<t.length;r++){let i=t[r];if((this.nocase?mg(e.name):Bf(e.name))===i.#S)return this.#U(e,i,r,t)}}#U(e,t,r,i){let s=t.name;return t.#o=t.#o&$f|kw(e),s!==e.name&&(t.name=e.name),r!==i.provisional&&(r===i.length-1?i.pop():i.splice(r,1),i.unshift(t)),i.provisional++,t}async lstat(){if((this.#o&zi)===0)try{return this.#G(await this.#e.promises.lstat(this.fullpath())),this}catch(e){this.#j(e.code)}}lstatSync(){if((this.#o&zi)===0)try{return this.#G(this.#e.lstatSync(this.fullpath())),this}catch(e){this.#j(e.code)}}#G(e){let{atime:t,atimeMs:r,birthtime:i,birthtimeMs:s,blksize:a,blocks:c,ctime:l,ctimeMs:u,dev:f,gid:d,ino:h,mode:p,mtime:y,mtimeMs:b,nlink:w,rdev:v,size:T,uid:C}=e;this.#y=t,this.#p=r,this.#T=i,this.#m=s,this.#u=a,this.#a=c,this.#E=l,this.#d=u,this.#n=f,this.#_=d,this.#s=h,this.#r=p,this.#f=y,this.#g=b,this.#t=w,this.#i=v,this.#l=T,this.#c=C;let L=kw(e);this.#o=this.#o&$f|L|NP,L!==oi&&L!==Is&&L!==Zo&&(this.#o|=Uf)}#q=[];#W=!1;#z(e){this.#W=!1;let t=this.#q.slice();this.#q.length=0,t.forEach(r=>r(null,e))}readdirCB(e,t=!1){if(!this.canReaddir()){t?e(null,[]):queueMicrotask(()=>e(null,[]));return}let r=this.children();if(this.calledReaddir()){let s=r.slice(0,r.provisional);t?e(null,s):queueMicrotask(()=>e(null,s));return}if(this.#q.push(e),this.#W)return;this.#W=!0;let i=this.fullpath();this.#e.readdir(i,{withFileTypes:!0},(s,a)=>{if(s)this.#M(s.code),r.provisional=0;else{for(let c of a)this.#$(c,r);this.#N(r)}this.#z(r.slice(0,r.provisional))})}#B;async readdir(){if(!this.canReaddir())return[];let e=this.children();if(this.calledReaddir())return e.slice(0,e.provisional);let t=this.fullpath();if(this.#B)await this.#B;else{let r=o(()=>{},"resolve");this.#B=new Promise(i=>r=i);try{for(let i of await this.#e.promises.readdir(t,{withFileTypes:!0}))this.#$(i,e);this.#N(e)}catch(i){this.#M(i.code),e.provisional=0}this.#B=void 0,r()}return e.slice(0,e.provisional)}readdirSync(){if(!this.canReaddir())return[];let e=this.children();if(this.calledReaddir())return e.slice(0,e.provisional);let t=this.fullpath();try{for(let r of this.#e.readdirSync(t,{withFileTypes:!0}))this.#$(r,e);this.#N(e)}catch(r){this.#M(r.code),e.provisional=0}return e.slice(0,e.provisional)}canReaddir(){if(this.#o&LP)return!1;let e=ai&this.#o;return e===oi||e===Is||e===Zo}shouldWalk(e,t){return(this.#o&Is)===Is&&!(this.#o&LP)&&!e.has(this)&&(!t||t(this))}async realpath(){if(this.#O)return this.#O;if(!((gg|pg|zi)&this.#o))try{let e=await this.#e.promises.realpath(this.fullpath());return this.#O=this.resolve(e)}catch{this.#R()}}realpathSync(){if(this.#O)return this.#O;if(!((gg|pg|zi)&this.#o))try{let e=this.#e.realpathSync(this.fullpath());return this.#O=this.resolve(e)}catch{this.#R()}}[zP](e){if(e===this)return;e.isCWD=!1,this.isCWD=!0;let t=new Set([]),r=[],i=this;for(;i&&i.parent;)t.add(i),i.#x=r.join(this.sep),i.#I=r.join("/"),i=i.parent,r.push("..");for(i=e;i&&i.parent&&!t.has(i);)i.#x=void 0,i.#I=void 0,i=i.parent}},_g=class n extends Xr{static{o(this,"PathWin32")}sep="\\";splitSep=MQ;constructor(e,t=oi,r,i,s,a,c){super(e,t,r,i,s,a,c)}newChild(e,t=oi,r={}){return new n(e,t,this.root,this.roots,this.nocase,this.childrenCache(),r)}getRootString(e){return Ul.win32.parse(e).root}getRoot(e){if(e=kQ(e.toUpperCase()),e===this.root.name)return this.root;for(let[t,r]of Object.entries(this.roots))if(this.sameRoot(e,t))return this.roots[e]=r;return this.roots[e]=new Bl(e,this).root}sameRoot(e,t=this.root.name){return e=e.toUpperCase().replace(/\//g,"\\").replace(VP,"$1\\"),e===t}},Sg=class n extends Xr{static{o(this,"PathPosix")}splitSep="/";sep="/";constructor(e,t=oi,r,i,s,a,c){super(e,t,r,i,s,a,c)}getRootString(e){return e.startsWith("/")?"/":""}getRoot(e){return this.root}newChild(e,t=oi,r={}){return new n(e,t,this.root,this.roots,this.nocase,this.childrenCache(),r)}},bg=class{static{o(this,"PathScurryBase")}root;rootPath;roots;cwd;#e;#n;#r;nocase;#t;constructor(e=process.cwd(),t,r,{nocase:i,childrenCacheSize:s=16*1024,fs:a=Vf}={}){this.#t=$P(a),(e instanceof URL||e.startsWith("file://"))&&(e=(0,jP.fileURLToPath)(e));let c=t.resolve(e);this.roots=Object.create(null),this.rootPath=this.parseRootPath(c),this.#e=new yg,this.#n=new yg,this.#r=new Mw(s);let l=c.substring(this.rootPath.length).split(r);if(l.length===1&&!l[0]&&l.pop(),i===void 0)throw new TypeError("must provide nocase setting to PathScurryBase ctor");this.nocase=i,this.root=this.newRoot(this.#t),this.roots[this.rootPath]=this.root;let u=this.root,f=l.length-1,d=t.sep,h=this.rootPath,p=!1;for(let y of l){let b=f--;u=u.child(y,{relative:new Array(b).fill("..").join(d),relativePosix:new Array(b).fill("..").join("/"),fullpath:h+=(p?"":d)+y}),p=!0}this.cwd=u}depth(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.depth()}childrenCache(){return this.#r}resolve(...e){let t="";for(let s=e.length-1;s>=0;s--){let a=e[s];if(!(!a||a===".")&&(t=t?`${a}/${t}`:a,this.isAbsolute(a)))break}let r=this.#e.get(t);if(r!==void 0)return r;let i=this.cwd.resolve(t).fullpath();return this.#e.set(t,i),i}resolvePosix(...e){let t="";for(let s=e.length-1;s>=0;s--){let a=e[s];if(!(!a||a===".")&&(t=t?`${a}/${t}`:a,this.isAbsolute(a)))break}let r=this.#n.get(t);if(r!==void 0)return r;let i=this.cwd.resolve(t).fullpathPosix();return this.#n.set(t,i),i}relative(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.relative()}relativePosix(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.relativePosix()}basename(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.name}dirname(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),(e.parent||e).fullpath()}async readdir(e=this.cwd,t={withFileTypes:!0}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r}=t;if(e.canReaddir()){let i=await e.readdir();return r?i:i.map(s=>s.name)}else return[]}readdirSync(e=this.cwd,t={withFileTypes:!0}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0}=t;return e.canReaddir()?r?e.readdirSync():e.readdirSync().map(i=>i.name):[]}async lstat(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.lstat()}lstatSync(e=this.cwd){return typeof e=="string"&&(e=this.cwd.resolve(e)),e.lstatSync()}async readlink(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e.withFileTypes,e=this.cwd);let r=await e.readlink();return t?r:r?.fullpath()}readlinkSync(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e.withFileTypes,e=this.cwd);let r=e.readlinkSync();return t?r:r?.fullpath()}async realpath(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e.withFileTypes,e=this.cwd);let r=await e.realpath();return t?r:r?.fullpath()}realpathSync(e=this.cwd,{withFileTypes:t}={withFileTypes:!1}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e.withFileTypes,e=this.cwd);let r=e.realpathSync();return t?r:r?.fullpath()}async walk(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=[];(!s||s(e))&&c.push(r?e:e.fullpath());let l=new Set,u=o((d,h)=>{l.add(d),d.readdirCB((p,y)=>{if(p)return h(p);let b=y.length;if(!b)return h();let w=o(()=>{--b===0&&h()},"next");for(let v of y)(!s||s(v))&&c.push(r?v:v.fullpath()),i&&v.isSymbolicLink()?v.realpath().then(T=>T?.isUnknown()?T.lstat():T).then(T=>T?.shouldWalk(l,a)?u(T,w):w()):v.shouldWalk(l,a)?u(v,w):w()},!0)},"walk"),f=e;return new Promise((d,h)=>{u(f,p=>{if(p)return h(p);d(c)})})}walkSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=[];(!s||s(e))&&c.push(r?e:e.fullpath());let l=new Set([e]);for(let u of l){let f=u.readdirSync();for(let d of f){(!s||s(d))&&c.push(r?d:d.fullpath());let h=d;if(d.isSymbolicLink()){if(!(i&&(h=d.realpathSync())))continue;h.isUnknown()&&h.lstatSync()}h.shouldWalk(l,a)&&l.add(h)}}return c}[Symbol.asyncIterator](){return this.iterate()}iterate(e=this.cwd,t={}){return typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd),this.stream(e,t)[Symbol.asyncIterator]()}[Symbol.iterator](){return this.iterateSync()}*iterateSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t;(!s||s(e))&&(yield r?e:e.fullpath());let c=new Set([e]);for(let l of c){let u=l.readdirSync();for(let f of u){(!s||s(f))&&(yield r?f:f.fullpath());let d=f;if(f.isSymbolicLink()){if(!(i&&(d=f.realpathSync())))continue;d.isUnknown()&&d.lstatSync()}d.shouldWalk(c,a)&&c.add(d)}}}stream(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=new eo({objectMode:!0});(!s||s(e))&&c.write(r?e:e.fullpath());let l=new Set,u=[e],f=0,d=o(()=>{let h=!1;for(;!h;){let p=u.shift();if(!p){f===0&&c.end();return}f++,l.add(p);let y=o((w,v,T=!1)=>{if(w)return c.emit("error",w);if(i&&!T){let C=[];for(let L of v)L.isSymbolicLink()&&C.push(L.realpath().then(V=>V?.isUnknown()?V.lstat():V));if(C.length){Promise.all(C).then(()=>y(null,v,!0));return}}for(let C of v)C&&(!s||s(C))&&(c.write(r?C:C.fullpath())||(h=!0));f--;for(let C of v){let L=C.realpathCached()||C;L.shouldWalk(l,a)&&u.push(L)}h&&!c.flowing?c.once("drain",d):b||d()},"onReaddir"),b=!0;p.readdirCB(y,!0),b=!1}},"process");return d(),c}streamSync(e=this.cwd,t={}){typeof e=="string"?e=this.cwd.resolve(e):e instanceof Xr||(t=e,e=this.cwd);let{withFileTypes:r=!0,follow:i=!1,filter:s,walkFilter:a}=t,c=new eo({objectMode:!0}),l=new Set;(!s||s(e))&&c.write(r?e:e.fullpath());let u=[e],f=0,d=o(()=>{let h=!1;for(;!h;){let p=u.shift();if(!p){f===0&&c.end();return}f++,l.add(p);let y=p.readdirSync();for(let b of y)(!s||s(b))&&(c.write(r?b:b.fullpath())||(h=!0));f--;for(let b of y){let w=b;if(b.isSymbolicLink()){if(!(i&&(w=b.realpathSync())))continue;w.isUnknown()&&w.lstatSync()}w.shouldWalk(l,a)&&u.push(w)}}h&&!c.flowing&&c.once("drain",d)},"process");return d(),c}chdir(e=this.cwd){let t=this.cwd;this.cwd=typeof e=="string"?this.cwd.resolve(e):e,this.cwd[zP](t)}},Bl=class extends bg{static{o(this,"PathScurryWin32")}sep="\\";constructor(e=process.cwd(),t={}){let{nocase:r=!0}=t;super(e,Ul.win32,"\\",{...t,nocase:r}),this.nocase=r;for(let i=this.cwd;i;i=i.parent)i.nocase=this.nocase}parseRootPath(e){return Ul.win32.parse(e).root.toUpperCase()}newRoot(e){return new _g(this.rootPath,Is,void 0,this.roots,this.nocase,this.childrenCache(),{fs:e})}isAbsolute(e){return e.startsWith("/")||e.startsWith("\\")||/^[a-z]:(\/|\\)/i.test(e)}},ql=class extends bg{static{o(this,"PathScurryPosix")}sep="/";constructor(e=process.cwd(),t={}){let{nocase:r=!1}=t;super(e,Ul.posix,"/",{...t,nocase:r}),this.nocase=r}parseRootPath(e){return"/"}newRoot(e){return new Sg(this.rootPath,Is,void 0,this.roots,this.nocase,this.childrenCache(),{fs:e})}isAbsolute(e){return e.startsWith("/")}},qf=class extends ql{static{o(this,"PathScurryDarwin")}constructor(e=process.cwd(),t={}){let{nocase:r=!0}=t;super(e,{...t,nocase:r})}},tfe=process.platform==="win32"?_g:Sg,HP=process.platform==="win32"?Bl:process.platform==="darwin"?qf:ql;var $Q=o(n=>n.length>=1,"isPatternList"),VQ=o(n=>n.length>=1,"isGlobList"),Wl=class n{static{o(this,"Pattern")}#e;#n;#r;length;#t;#c;#_;#i;#u;#s;#l=!0;constructor(e,t,r,i){if(!$Q(e))throw new TypeError("empty pattern list");if(!VQ(t))throw new TypeError("empty glob list");if(t.length!==e.length)throw new TypeError("mismatched pattern list and glob list lengths");if(this.length=e.length,r<0||r>=this.length)throw new TypeError("index out of range");if(this.#e=e,this.#n=t,this.#r=r,this.#t=i,this.#r===0){if(this.isUNC()){let[s,a,c,l,...u]=this.#e,[f,d,h,p,...y]=this.#n;u[0]===""&&(u.shift(),y.shift());let b=[s,a,c,l,""].join("/"),w=[f,d,h,p,""].join("/");this.#e=[b,...u],this.#n=[w,...y],this.length=this.#e.length}else if(this.isDrive()||this.isAbsolute()){let[s,...a]=this.#e,[c,...l]=this.#n;a[0]===""&&(a.shift(),l.shift());let u=s+"/",f=c+"/";this.#e=[u,...a],this.#n=[f,...l],this.length=this.#e.length}}}pattern(){return this.#e[this.#r]}isString(){return typeof this.#e[this.#r]=="string"}isGlobstar(){return this.#e[this.#r]===Ht}isRegExp(){return this.#e[this.#r]instanceof RegExp}globString(){return this.#_=this.#_||(this.#r===0?this.isAbsolute()?this.#n[0]+this.#n.slice(1).join("/"):this.#n.join("/"):this.#n.slice(this.#r).join("/"))}hasMore(){return this.length>this.#r+1}rest(){return this.#c!==void 0?this.#c:this.hasMore()?(this.#c=new n(this.#e,this.#n,this.#r+1,this.#t),this.#c.#s=this.#s,this.#c.#u=this.#u,this.#c.#i=this.#i,this.#c):this.#c=null}isUNC(){let e=this.#e;return this.#u!==void 0?this.#u:this.#u=this.#t==="win32"&&this.#r===0&&e[0]===""&&e[1]===""&&typeof e[2]=="string"&&!!e[2]&&typeof e[3]=="string"&&!!e[3]}isDrive(){let e=this.#e;return this.#i!==void 0?this.#i:this.#i=this.#t==="win32"&&this.#r===0&&this.length>1&&typeof e[0]=="string"&&/^[a-z]:$/i.test(e[0])}isAbsolute(){let e=this.#e;return this.#s!==void 0?this.#s:this.#s=e[0]===""&&e.length>1||this.isDrive()||this.isUNC()}root(){let e=this.#e[0];return typeof e=="string"&&this.isAbsolute()&&this.#r===0?e:""}checkFollowGlobstar(){return!(this.#r===0||!this.isGlobstar()||!this.#l)}markFollowGlobstar(){return this.#r===0||!this.isGlobstar()||!this.#l?!1:(this.#l=!1,!0)}};var UQ=typeof process=="object"&&process&&typeof process.platform=="string"?process.platform:"linux",Gl=class{static{o(this,"Ignore")}relative;relativeChildren;absolute;absoluteChildren;platform;mmopts;constructor(e,{nobrace:t,nocase:r,noext:i,noglobstar:s,platform:a=UQ}){this.relative=[],this.absolute=[],this.relativeChildren=[],this.absoluteChildren=[],this.platform=a,this.mmopts={dot:!0,nobrace:t,nocase:r,noext:i,noglobstar:s,optimizationLevel:2,platform:a,nocomment:!0,nonegate:!0};for(let c of e)this.add(c)}add(e){let t=new Un(e,this.mmopts);for(let r=0;r<t.set.length;r++){let i=t.set[r],s=t.globParts[r];if(!i||!s)throw new Error("invalid pattern object");for(;i[0]==="."&&s[0]===".";)i.shift(),s.shift();let a=new Wl(i,s,0,this.platform),c=new Un(a.globString(),this.mmopts),l=s[s.length-1]==="**",u=a.isAbsolute();u?this.absolute.push(c):this.relative.push(c),l&&(u?this.absoluteChildren.push(c):this.relativeChildren.push(c))}}ignored(e){let t=e.fullpath(),r=`${t}/`,i=e.relative()||".",s=`${i}/`;for(let a of this.relative)if(a.match(i)||a.match(s))return!0;for(let a of this.absolute)if(a.match(t)||a.match(r))return!0;return!1}childrenIgnored(e){let t=e.fullpath()+"/",r=(e.relative()||".")+"/";for(let i of this.relativeChildren)if(i.match(r))return!0;for(let i of this.absoluteChildren)if(i.match(t))return!0;return!1}};var jw=class n{static{o(this,"HasWalkedCache")}store;constructor(e=new Map){this.store=e}copy(){return new n(new Map(this.store))}hasWalked(e,t){return this.store.get(e.fullpath())?.has(t.globString())}storeWalked(e,t){let r=e.fullpath(),i=this.store.get(r);i?i.add(t.globString()):this.store.set(r,new Set([t.globString()]))}},$w=class{static{o(this,"MatchRecord")}store=new Map;add(e,t,r){let i=(t?2:0)|(r?1:0),s=this.store.get(e);this.store.set(e,s===void 0?i:i&s)}entries(){return[...this.store.entries()].map(([e,t])=>[e,!!(t&2),!!(t&1)])}},Vw=class{static{o(this,"SubWalks")}store=new Map;add(e,t){if(!e.canReaddir())return;let r=this.store.get(e);r?r.find(i=>i.globString()===t.globString())||r.push(t):this.store.set(e,[t])}get(e){let t=this.store.get(e);if(!t)throw new Error("attempting to walk unknown path");return t}entries(){return this.keys().map(e=>[e,this.store.get(e)])}keys(){return[...this.store.keys()].filter(e=>e.canReaddir())}},Wf=class n{static{o(this,"Processor")}hasWalkedCache;matches=new $w;subwalks=new Vw;patterns;follow;dot;opts;constructor(e,t){this.opts=e,this.follow=!!e.follow,this.dot=!!e.dot,this.hasWalkedCache=t?t.copy():new jw}processPatterns(e,t){this.patterns=t;let r=t.map(i=>[e,i]);for(let[i,s]of r){this.hasWalkedCache.storeWalked(i,s);let a=s.root(),c=s.isAbsolute()&&this.opts.absolute!==!1;if(a){i=i.resolve(a==="/"&&this.opts.root!==void 0?this.opts.root:a);let d=s.rest();if(d)s=d;else{this.matches.add(i,!0,!1);continue}}if(i.isENOENT())continue;let l,u,f=!1;for(;typeof(l=s.pattern())=="string"&&(u=s.rest());)i=i.resolve(l),s=u,f=!0;if(l=s.pattern(),u=s.rest(),f){if(this.hasWalkedCache.hasWalked(i,s))continue;this.hasWalkedCache.storeWalked(i,s)}if(typeof l=="string"){let d=l===".."||l===""||l===".";this.matches.add(i.resolve(l),c,d);continue}else if(l===Ht){(!i.isSymbolicLink()||this.follow||s.checkFollowGlobstar())&&this.subwalks.add(i,s);let d=u?.pattern(),h=u?.rest();if(!u||(d===""||d===".")&&!h)this.matches.add(i,c,d===""||d===".");else if(d===".."){let p=i.parent||i;h?this.hasWalkedCache.hasWalked(p,h)||this.subwalks.add(p,h):this.matches.add(p,c,!0)}}else l instanceof RegExp&&this.subwalks.add(i,s)}return this}subwalkTargets(){return this.subwalks.keys()}child(){return new n(this.opts,this.hasWalkedCache)}filterEntries(e,t){let r=this.subwalks.get(e),i=this.child();for(let s of t)for(let a of r){let c=a.isAbsolute(),l=a.pattern(),u=a.rest();l===Ht?i.testGlobstar(s,a,u,c):l instanceof RegExp?i.testRegExp(s,l,u,c):i.testString(s,l,u,c)}return i}testGlobstar(e,t,r,i){if((this.dot||!e.name.startsWith("."))&&(t.hasMore()||this.matches.add(e,i,!1),e.canReaddir()&&(this.follow||!e.isSymbolicLink()?this.subwalks.add(e,t):e.isSymbolicLink()&&(r&&t.checkFollowGlobstar()?this.subwalks.add(e,r):t.markFollowGlobstar()&&this.subwalks.add(e,t)))),r){let s=r.pattern();if(typeof s=="string"&&s!==".."&&s!==""&&s!==".")this.testString(e,s,r.rest(),i);else if(s===".."){let a=e.parent||e;this.subwalks.add(a,r)}else s instanceof RegExp&&this.testRegExp(e,s,r.rest(),i)}}testRegExp(e,t,r,i){t.test(e.name)&&(r?this.subwalks.add(e,r):this.matches.add(e,i,!1))}testString(e,t,r,i){e.isNamed(t)&&(r?this.subwalks.add(e,r):this.matches.add(e,i,!1))}};var BQ=o((n,e)=>typeof n=="string"?new Gl([n],e):Array.isArray(n)?new Gl(n,e):n,"makeIgnore"),vg=class{static{o(this,"GlobUtil")}path;patterns;opts;seen=new Set;paused=!1;aborted=!1;#e=[];#n;#r;signal;maxDepth;includeChildMatches;constructor(e,t,r){if(this.patterns=e,this.path=t,this.opts=r,this.#r=!r.posix&&r.platform==="win32"?"\\":"/",this.includeChildMatches=r.includeChildMatches!==!1,(r.ignore||!this.includeChildMatches)&&(this.#n=BQ(r.ignore??[],r),!this.includeChildMatches&&typeof this.#n.add!="function")){let i="cannot ignore child matches, ignore lacks add() method.";throw new Error(i)}this.maxDepth=r.maxDepth||1/0,r.signal&&(this.signal=r.signal,this.signal.addEventListener("abort",()=>{this.#e.length=0}))}#t(e){return this.seen.has(e)||!!this.#n?.ignored?.(e)}#c(e){return!!this.#n?.childrenIgnored?.(e)}pause(){this.paused=!0}resume(){if(this.signal?.aborted)return;this.paused=!1;let e;for(;!this.paused&&(e=this.#e.shift());)e()}onResume(e){this.signal?.aborted||(this.paused?this.#e.push(e):e())}async matchCheck(e,t){if(t&&this.opts.nodir)return;let r;if(this.opts.realpath){if(r=e.realpathCached()||await e.realpath(),!r)return;e=r}let s=e.isUnknown()||this.opts.stat?await e.lstat():e;if(this.opts.follow&&this.opts.nodir&&s?.isSymbolicLink()){let a=await s.realpath();a&&(a.isUnknown()||this.opts.stat)&&await a.lstat()}return this.matchCheckTest(s,t)}matchCheckTest(e,t){return e&&(this.maxDepth===1/0||e.depth()<=this.maxDepth)&&(!t||e.canReaddir())&&(!this.opts.nodir||!e.isDirectory())&&(!this.opts.nodir||!this.opts.follow||!e.isSymbolicLink()||!e.realpathCached()?.isDirectory())&&!this.#t(e)?e:void 0}matchCheckSync(e,t){if(t&&this.opts.nodir)return;let r;if(this.opts.realpath){if(r=e.realpathCached()||e.realpathSync(),!r)return;e=r}let s=e.isUnknown()||this.opts.stat?e.lstatSync():e;if(this.opts.follow&&this.opts.nodir&&s?.isSymbolicLink()){let a=s.realpathSync();a&&(a?.isUnknown()||this.opts.stat)&&a.lstatSync()}return this.matchCheckTest(s,t)}matchFinish(e,t){if(this.#t(e))return;if(!this.includeChildMatches&&this.#n?.add){let s=`${e.relativePosix()}/**`;this.#n.add(s)}let r=this.opts.absolute===void 0?t:this.opts.absolute;this.seen.add(e);let i=this.opts.mark&&e.isDirectory()?this.#r:"";if(this.opts.withFileTypes)this.matchEmit(e);else if(r){let s=this.opts.posix?e.fullpathPosix():e.fullpath();this.matchEmit(s+i)}else{let s=this.opts.posix?e.relativePosix():e.relative(),a=this.opts.dotRelative&&!s.startsWith(".."+this.#r)?"."+this.#r:"";this.matchEmit(s?a+s+i:"."+i)}}async match(e,t,r){let i=await this.matchCheck(e,r);i&&this.matchFinish(i,t)}matchSync(e,t,r){let i=this.matchCheckSync(e,r);i&&this.matchFinish(i,t)}walkCB(e,t,r){this.signal?.aborted&&r(),this.walkCB2(e,t,new Wf(this.opts),r)}walkCB2(e,t,r,i){if(this.#c(e))return i();if(this.signal?.aborted&&i(),this.paused){this.onResume(()=>this.walkCB2(e,t,r,i));return}r.processPatterns(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,l,u]of r.matches.entries())this.#t(c)||(s++,this.match(c,l,u).then(()=>a()));for(let c of r.subwalkTargets()){if(this.maxDepth!==1/0&&c.depth()>=this.maxDepth)continue;s++;let l=c.readdirCached();c.calledReaddir()?this.walkCB3(c,l,r,a):c.readdirCB((u,f)=>this.walkCB3(c,f,r,a),!0)}a()}walkCB3(e,t,r,i){r=r.filterEntries(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,l,u]of r.matches.entries())this.#t(c)||(s++,this.match(c,l,u).then(()=>a()));for(let[c,l]of r.subwalks.entries())s++,this.walkCB2(c,l,r.child(),a);a()}walkCBSync(e,t,r){this.signal?.aborted&&r(),this.walkCB2Sync(e,t,new Wf(this.opts),r)}walkCB2Sync(e,t,r,i){if(this.#c(e))return i();if(this.signal?.aborted&&i(),this.paused){this.onResume(()=>this.walkCB2Sync(e,t,r,i));return}r.processPatterns(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,l,u]of r.matches.entries())this.#t(c)||this.matchSync(c,l,u);for(let c of r.subwalkTargets()){if(this.maxDepth!==1/0&&c.depth()>=this.maxDepth)continue;s++;let l=c.readdirSync();this.walkCB3Sync(c,l,r,a)}a()}walkCB3Sync(e,t,r,i){r=r.filterEntries(e,t);let s=1,a=o(()=>{--s===0&&i()},"next");for(let[c,l,u]of r.matches.entries())this.#t(c)||this.matchSync(c,l,u);for(let[c,l]of r.subwalks.entries())s++,this.walkCB2Sync(c,l,r.child(),a);a()}},Gf=class extends vg{static{o(this,"GlobWalker")}matches=new Set;constructor(e,t,r){super(e,t,r)}matchEmit(e){this.matches.add(e)}async walk(){if(this.signal?.aborted)throw this.signal.reason;return this.path.isUnknown()&&await this.path.lstat(),await new Promise((e,t)=>{this.walkCB(this.path,this.patterns,()=>{this.signal?.aborted?t(this.signal.reason):e(this.matches)})}),this.matches}walkSync(){if(this.signal?.aborted)throw this.signal.reason;return this.path.isUnknown()&&this.path.lstatSync(),this.walkCBSync(this.path,this.patterns,()=>{if(this.signal?.aborted)throw this.signal.reason}),this.matches}},zf=class extends vg{static{o(this,"GlobStream")}results;constructor(e,t,r){super(e,t,r),this.results=new eo({signal:this.signal,objectMode:!0}),this.results.on("drain",()=>this.resume()),this.results.on("resume",()=>this.resume())}matchEmit(e){this.results.write(e),this.results.flowing||this.pause()}stream(){let e=this.path;return e.isUnknown()?e.lstat().then(()=>{this.walkCB(e,this.patterns,()=>this.results.end())}):this.walkCB(e,this.patterns,()=>this.results.end()),this.results}streamSync(){return this.path.isUnknown()&&this.path.lstatSync(),this.walkCBSync(this.path,this.patterns,()=>this.results.end()),this.results}};var qQ=typeof process=="object"&&process&&typeof process.platform=="string"?process.platform:"linux",Hi=class{static{o(this,"Glob")}absolute;cwd;root;dot;dotRelative;follow;ignore;magicalBraces;mark;matchBase;maxDepth;nobrace;nocase;nodir;noext;noglobstar;pattern;platform;realpath;scurry;stat;signal;windowsPathsNoEscape;withFileTypes;includeChildMatches;opts;patterns;constructor(e,t){if(!t)throw new TypeError("glob options required");if(this.withFileTypes=!!t.withFileTypes,this.signal=t.signal,this.follow=!!t.follow,this.dot=!!t.dot,this.dotRelative=!!t.dotRelative,this.nodir=!!t.nodir,this.mark=!!t.mark,t.cwd?(t.cwd instanceof URL||t.cwd.startsWith("file://"))&&(t.cwd=(0,QP.fileURLToPath)(t.cwd)):this.cwd="",this.cwd=t.cwd||"",this.root=t.root,this.magicalBraces=!!t.magicalBraces,this.nobrace=!!t.nobrace,this.noext=!!t.noext,this.realpath=!!t.realpath,this.absolute=t.absolute,this.includeChildMatches=t.includeChildMatches!==!1,this.noglobstar=!!t.noglobstar,this.matchBase=!!t.matchBase,this.maxDepth=typeof t.maxDepth=="number"?t.maxDepth:1/0,this.stat=!!t.stat,this.ignore=t.ignore,this.withFileTypes&&this.absolute!==void 0)throw new Error("cannot set absolute and withFileTypes:true");if(typeof e=="string"&&(e=[e]),this.windowsPathsNoEscape=!!t.windowsPathsNoEscape||t.allowWindowsEscape===!1,this.windowsPathsNoEscape&&(e=e.map(l=>l.replace(/\\/g,"/"))),this.matchBase){if(t.noglobstar)throw new TypeError("base matching requires globstar");e=e.map(l=>l.includes("/")?l:`./**/${l}`)}if(this.pattern=e,this.platform=t.platform||qQ,this.opts={...t,platform:this.platform},t.scurry){if(this.scurry=t.scurry,t.nocase!==void 0&&t.nocase!==t.scurry.nocase)throw new Error("nocase option contradicts provided scurry option")}else{let l=t.platform==="win32"?Bl:t.platform==="darwin"?qf:t.platform?ql:HP;this.scurry=new l(this.cwd,{nocase:t.nocase,fs:t.fs})}this.nocase=this.scurry.nocase;let r=this.platform==="darwin"||this.platform==="win32",i={...t,dot:this.dot,matchBase:this.matchBase,nobrace:this.nobrace,nocase:this.nocase,nocaseMagicOnly:r,nocomment:!0,noext:this.noext,nonegate:!0,optimizationLevel:2,platform:this.platform,windowsPathsNoEscape:this.windowsPathsNoEscape,debug:!!this.opts.debug},s=this.pattern.map(l=>new Un(l,i)),[a,c]=s.reduce((l,u)=>(l[0].push(...u.set),l[1].push(...u.globParts),l),[[],[]]);this.patterns=a.map((l,u)=>{let f=c[u];if(!f)throw new Error("invalid pattern object");return new Wl(l,f,0,this.platform)})}async walk(){return[...await new Gf(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).walk()]}walkSync(){return[...new Gf(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).walkSync()]}stream(){return new zf(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).stream()}streamSync(){return new zf(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).streamSync()}iterateSync(){return this.streamSync()[Symbol.iterator]()}[Symbol.iterator](){return this.iterateSync()}iterate(){return this.stream()[Symbol.asyncIterator]()}[Symbol.asyncIterator](){return this.iterate()}};var Uw=o((n,e={})=>{Array.isArray(n)||(n=[n]);for(let t of n)if(new Un(t,e).hasMagic())return!0;return!1},"hasMagic");function wg(n,e={}){return new Hi(n,e).streamSync()}o(wg,"globStreamSync");function YP(n,e={}){return new Hi(n,e).stream()}o(YP,"globStream");function XP(n,e={}){return new Hi(n,e).walkSync()}o(XP,"globSync");async function KP(n,e={}){return new Hi(n,e).walk()}o(KP,"glob_");function Eg(n,e={}){return new Hi(n,e).iterateSync()}o(Eg,"globIterateSync");function JP(n,e={}){return new Hi(n,e).iterate()}o(JP,"globIterate");var WQ=wg,GQ=Object.assign(YP,{sync:wg}),zQ=Eg,HQ=Object.assign(JP,{sync:Eg}),QQ=Object.assign(XP,{stream:wg,iterate:Eg}),zl=Object.assign(KP,{glob:KP,globSync:XP,sync:QQ,globStream:YP,stream:GQ,globStreamSync:wg,streamSync:WQ,globIterate:JP,iterate:HQ,globIterateSync:Eg,iterateSync:zQ,Glob:Hi,hasMagic:Uw,escape:kl,unescape:Wi});zl.glob=zl;async function eF(n,e,t,r={}){let{dryRun:i=!1,excludeRelPath:s}=r,a=ec.default.join(n,"**/*.md"),c=await zl(a,{nodir:!0,ignore:[ec.default.join(n,".obsidian/**"),ec.default.join(n,".trash/**"),ec.default.join(n,"**/.obsidian/**"),ec.default.join(n,"**/.trash/**")]}),l={filesScanned:0,filesModified:0,replacements:0,modifiedFiles:[]};for(let u of c){let f=ec.default.relative(n,u);if(s&&f===s)continue;l.filesScanned+=1;let d;try{d=await Bw.default.readFile(u,"utf-8")}catch{continue}let{updated:h,replacements:p}=KQ(d,e,t);p>0&&(l.filesModified+=1,l.replacements+=p,l.modifiedFiles.push(f),i||await Bw.default.writeFile(u,h,"utf-8"))}return l}o(eF,"rewriteInboundWikilinks");function KQ(n,e,t){let r=n.split(/(^```[\s\S]*?^```)/m),i=0;for(let s=0;s<r.length;s++){if(s%2===1)continue;let a=r[s],c=YQ(a,e,t);i+=c.replacements,r[s]=c.updated}return{updated:r.join(""),replacements:i}}o(KQ,"rewriteContent");function YQ(n,e,t){let r=n.split(/(`[^`\n]*`)/),i=0;for(let s=0;s<r.length;s++){if(s%2===1)continue;let a=XQ(r[s],e,t);i+=a.replacements,r[s]=a.updated}return{updated:r.join(""),replacements:i}}o(YQ,"rewriteProseSegment");function XQ(n,e,t){let r=/(?<!!)\[\[([^\[\]\n|#]+)(#[^\[\]\n|]*)?(\|[^\[\]\n]*)?\]\]/g,i=0;return{updated:n.replace(r,(a,c,l,u)=>{if(c.trim()!==e)return a;i+=1;let d=l??"",h;return u?h=u:d?h=`|${e}`:h=`|${e}`,`[[${t}${d}${h}]]`}),replacements:i}}o(XQ,"replaceWikilinks");var JQ=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i,Rt=class{constructor(e){this.rootPath=e;this.uuidIndex=null;this.basenameIndex=null;this.aliasIndex=null}static{o(this,"FileSystemVaultAdapter")}async read(e){let t=this.resolvePath(e.path);if(!await ar.default.pathExists(t))throw new Error(`File not found: ${e.path}`);return ar.default.readFile(t,"utf-8")}async create(e,t){let r=this.resolvePath(e);if(await ar.default.pathExists(r))throw new Error(`File already exists: ${e}`);return await ar.default.ensureDir(Kt.default.dirname(r)),await ar.default.writeFile(r,t,"utf-8"),this.createFileObject(e)}async modify(e,t){let r=this.resolvePath(e.path);if(!await ar.default.pathExists(r))throw new Error(`File not found: ${e.path}`);await ar.default.writeFile(r,t,"utf-8")}async delete(e){let t=this.resolvePath(e.path);if(!await ar.default.pathExists(t))throw new Error(`File not found: ${e.path}`);await ar.default.remove(t)}async exists(e){let t=this.resolvePath(e);return ar.default.pathExists(t)}getAbstractFileByPath(e){let t=this.resolvePath(e);try{let r=ar.default.statSync(t);if(r.isFile())return this.createFileObject(e);if(r.isDirectory())return this.createFolderObject(e)}catch{return null}return null}getAllFiles(){let e=[];return this.walkDirectory(this.rootPath,t=>{if(t.endsWith(".md")){let r=Kt.default.relative(this.rootPath,t);e.push(this.createFileObject(r))}}),e}getFrontmatter(e){try{let t=ar.default.readFileSync(this.resolvePath(e.path),"utf-8");return this.extractFrontmatter(t)}catch{return null}}async updateFrontmatter(e,t){let r=await this.read(e),i=this.extractFrontmatter(r)||{},s=t(i),a=this.replaceFrontmatter(r,s);await this.modify(e,a)}async rename(e,t){let r=this.resolvePath(e.path),i=this.resolvePath(t);if(!await ar.default.pathExists(r))throw new Error(`File not found: ${e.path}`);await ar.default.ensureDir(Kt.default.dirname(i)),await ar.default.move(r,i)}async createFolder(e){let t=this.resolvePath(e);await ar.default.ensureDir(t)}getFirstLinkpathDest(e,t){let r=e.split("|")[0].trim();if(!r)return null;if(JQ.test(r)){this.uuidIndex===null&&this.buildUuidIndex();let u=r.toLowerCase(),f=this.uuidIndex.get(u);return f?this.createFileObject(f):null}let i=Kt.default.dirname(this.resolvePath(t)),s;if(Kt.default.isAbsolute(r)?s=this.resolvePath(r):s=Kt.default.resolve(i,r),r.endsWith(".md")||(s+=".md"),ar.default.existsSync(s)){let u=Kt.default.relative(this.rootPath,s);return this.createFileObject(u)}(this.basenameIndex===null||this.aliasIndex===null)&&this.buildLinkpathIndex();let a=r.toLowerCase(),c=this.basenameIndex.get(a);if(c)return this.createFileObject(c);let l=this.aliasIndex.get(a);return l?this.createFileObject(l):null}buildLinkpathIndex(){this.basenameIndex=new Map,this.aliasIndex=new Map,this.walkDirectory(this.rootPath,e=>{if(!e.endsWith(".md"))return;let t=Kt.default.relative(this.rootPath,e),r=Kt.default.basename(e,".md").toLowerCase();this.basenameIndex.has(r)||this.basenameIndex.set(r,t);let i;try{i=ar.default.readFileSync(e,"utf-8")}catch{return}let s=this.extractFrontmatter(i);if(!s)return;let a=s.aliases,c=Array.isArray(a)?a:typeof a=="string"?[a]:[];for(let l of c){if(typeof l!="string")continue;let u=l.trim().toLowerCase();u&&(this.aliasIndex.has(u)||this.aliasIndex.set(u,t))}})}buildUuidIndex(){this.uuidIndex=new Map,this.walkDirectory(this.rootPath,e=>{if(e.endsWith(".md")){let r=Kt.default.basename(e,".md").match(/^([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})/i);if(r){let i=r[1].toLowerCase(),s=Kt.default.relative(this.rootPath,e);this.uuidIndex.set(i,s)}}})}async process(e,t){let r=await this.read(e),i=t(r);return await this.modify(e,i),i}getDefaultNewFileParent(){return{path:"",name:""}}async updateLinks(e,t,r){let i=Kt.default.basename(t,".md");await eF(this.rootPath,r,i,{excludeRelPath:e})}resolvePath(e){return Kt.default.isAbsolute(e)?e:Kt.default.join(this.rootPath,e)}createFileObject(e){let t=Kt.default.basename(e),r=Kt.default.basename(e,Kt.default.extname(e)),i=Kt.default.dirname(e);return{path:e,basename:r,name:t,parent:i!=="."?this.createFolderObject(i):null}}createFolderObject(e){return{path:e,name:Kt.default.basename(e)}}extractFrontmatter(e){let t=/^---\n([\s\S]*?)\n---/,r=e.match(t);if(!r)return null;try{let i=sr.load(r[1]);return typeof i=="object"&&i!==null?i:null}catch{return null}}replaceFrontmatter(e,t){let r=sr.dump(t,{lineWidth:-1,noRefs:!0,quotingType:'"'}),i=/^---\n([\s\S]*?)\n---/;return e.match(i)?e.replace(i,`---
495
495
  ${r.trim()}
496
496
  ---`):`---
497
497
  ${r.trim()}
@@ -593,14 +593,14 @@ LIMIT 30`,parameters:[],examples:{}}],kg=class{static{o(this,"TemplateRegistry")
593
593
  `),s=i.length,a=Math.max(1,e-t),c=Math.min(s,e+t),l=[];for(let u=a;u<=c;u++)l.push({number:u,content:i[u-1],isError:u===e});return{startLine:a,endLine:c,errorLine:e,errorColumn:r,lines:l}}o(qK,"getQueryContext");function WK(n){let e=/PREFIX\s+(\w+):\s*</gi,t=[],r;for(;(r=e.exec(n))!==null;)t.push(r[1]);return t}o(WK,"extractDeclaredPrefixes");function GK(n){let e=[/unknown prefix[:\s]+['"]?(\w+)['"]?/i,/prefix\s+['"]?(\w+)['"]?\s+not\s+defined/i,/undefined\s+prefix[:\s]+['"]?(\w+)['"]?/i];for(let t of e){let r=n.match(t);if(r)return r[1]}return null}o(GK,"extractUnknownPrefix");function zK(n){let e=[/line\s+(\d+),?\s*column\s+(\d+)/i,/line\s+(\d+):(\d+)/i,/at\s+(\d+):(\d+)/i,/\((\d+),\s*(\d+)\)/];for(let r of e){let i=n.match(r);if(i)return{line:parseInt(i[1],10),column:parseInt(i[2],10)}}let t=n.match(/line\s+(\d+)/i);return t?{line:parseInt(t[1],10)}:{}}o(zK,"extractPosition");function HK(n){let e=[/timeout[^\d]*(\d+)\s*ms/i,/timeout[^\d]*(\d+)\s*milliseconds/i,/(\d+)\s*ms\s*timeout/i,/exceeded[^\d]*(\d+)\s*ms/i];for(let t of e){let r=n.match(t);if(r)return parseInt(r[1],10)}return null}o(HK,"extractTimeoutDuration");var Mg=class{constructor(){this.wellKnownPrefixes={rdf:"http://www.w3.org/1999/02/22-rdf-syntax-ns#",rdfs:"http://www.w3.org/2000/01/rdf-schema#",xsd:"http://www.w3.org/2001/XMLSchema#",owl:"http://www.w3.org/2002/07/owl#",ems:"http://exocortex.local/ems#",exo:"http://exocortex.local/exo#",ims:"http://exocortex.local/ims#"}}static{o(this,"SPARQLErrorEnhancer")}classifyError(e){let t=e.message.toLowerCase();return t.includes("unknown prefix")||t.includes("prefix")&&(t.includes("not defined")||t.includes("undefined"))?"unknown_prefix":t.includes("parse error")||t.includes("syntax error")||t.includes("unexpected")||t.includes("expected")?"syntax":t.includes("timeout")||t.includes("timed out")||t.includes("exceeded")?"timeout":t.includes("econnrefused")||t.includes("connection refused")||t.includes("network")||t.includes("connect")?"connection":"unknown"}enhanceError(e,t){switch(this.classifyError(e)){case"unknown_prefix":return this.enhanceUnknownPrefixError(e,t);case"syntax":return this.enhanceSyntaxError(e,t);case"timeout":return this.enhanceTimeoutError(e,t);case"connection":return this.enhanceConnectionError(e,t);default:return this.enhanceUnknownError(e,t)}}enhanceUnknownPrefixError(e,t){let r=GK(e.message),i=WK(t),s=[...new Set([...i,...Object.keys(this.wellKnownPrefixes)])],a,c=[];if(r){let l=BK(r,s);l.length>0?(a=`Unknown prefix '${r}'. Did you mean: ${l.join(", ")}?`,c.push(`Replace '${r}:' with '${l[0]}:'`)):a=`Unknown prefix '${r}'.`;let u=i.length>0?i.join(", "):Object.keys(this.wellKnownPrefixes).join(", ");a+=`
594
594
 
595
595
  Available prefixes: ${u}`,this.wellKnownPrefixes[r]&&c.push(`Add: PREFIX ${r}: <${this.wellKnownPrefixes[r]}>`)}else a=e.message;return{type:"unknown_prefix",message:a,originalMessage:e.message,originalStack:e.stack,suggestions:c.length>0?c:void 0}}enhanceSyntaxError(e,t){let r=e,i=r.line!==void 0?{line:r.line,column:r.column}:zK(e.message),s,a;i.line?(s=`Syntax error at line ${i.line}`,i.column&&(s+=`, column ${i.column}`),s+=`: ${e.message.replace(/.*line\s+\d+.*?:\s*/i,"")}`,a=qK(t,i.line,2,i.column)):s=`Syntax error: ${e.message}`;let c=this.generateSyntaxSuggestions(e.message);return{type:"syntax",message:s,originalMessage:e.message,originalStack:e.stack,suggestions:c.length>0?c:void 0,context:a,line:i.line,column:i.column}}generateSyntaxSuggestions(e){let t=[],r=e.toLowerCase();return(r.includes("where")||r.includes("expected"))&&t.push("Ensure your query has a WHERE clause: SELECT ?s WHERE { ... }"),(r.includes("{")||r.includes("}")||r.includes("brace")||r.includes("bracket"))&&t.push("Check that all braces { } are properly balanced"),(r.includes("variable")||r.includes("?"))&&t.push("Variables must start with '?' (e.g., ?subject, ?predicate, ?object)"),(r.includes("end of input")||r.includes("eof"))&&t.push("Query may be incomplete - check for missing closing braces or statements"),r.includes("prefix")&&t.push("Add PREFIX declarations at the start of your query"),t.length===0&&t.push("Check SPARQL syntax reference: https://www.w3.org/TR/sparql11-query/"),t}enhanceTimeoutError(e,t){let r=HK(e.message),i=r?Math.round(r/1e3):null,s;i?s=`Query timed out after ${i} second${i!==1?"s":""}`:s="Query timed out";let a=["Try limiting results with LIMIT (e.g., LIMIT 100)","Add more specific FILTER conditions to reduce result set","Use more selective triple patterns","Consider using OPTIONAL sparingly (it can be expensive)"];return/\bLIMIT\b/i.test(t)||a.unshift("Add LIMIT clause to restrict result count"),/SELECT\s+\*/i.test(t)&&a.push("Replace SELECT * with specific variables to reduce data transfer"),{type:"timeout",message:s,originalMessage:e.message,originalStack:e.stack,suggestions:a}}enhanceConnectionError(e,t){let r="Connection failed to SPARQL endpoint",i=["Check that the SPARQL endpoint is running","Verify network connectivity","Check firewall settings"];return{type:"connection",message:r,originalMessage:e.message,originalStack:e.stack,suggestions:i}}enhanceUnknownError(e,t){return{type:"unknown",message:e.message,originalMessage:e.message,originalStack:e.stack,suggestions:["Check query syntax and try again"]}}formatForText(e){let t=[];if(t.push(`\u274C ${e.message}`),e.context){t.push(""),t.push("Context:");for(let r of e.context.lines){let i=r.isError?">>> ":" ";if(t.push(`${i}${r.number.toString().padStart(3)}: ${r.content}`),r.isError&&e.context.errorColumn){let s=" ".repeat(8+r.number.toString().length+e.context.errorColumn-1)+"^";t.push(s)}}}if(e.suggestions&&e.suggestions.length>0){t.push(""),t.push("Suggestions:");for(let r of e.suggestions)t.push(` \u2022 ${r}`)}return t.join(`
596
- `)}formatForJSON(e){return{type:e.type,message:e.message,originalMessage:e.originalMessage,suggestions:e.suggestions,line:e.line,column:e.column,context:e.context?{startLine:e.context.startLine,endLine:e.context.endLine,errorLine:e.context.errorLine,errorColumn:e.context.errorColumn,lines:e.context.lines.map(t=>({number:t.number,content:t.content,isError:t.isError}))}:void 0}}};var jg=class n{static{o(this,"NTriplesFormatter")}static escapeString(e){let t=e.replace(/\\/g,"\\\\");return t=t.replace(/"/g,'\\"'),t=t.replace(/\n/g,"\\n"),t=t.replace(/\r/g,"\\r"),t=t.replace(/\t/g,"\\t"),t}static formatObject(e){return e.startsWith("http://")||e.startsWith("https://")||e.startsWith("urn:")?`<${e}>`:`"${n.escapeString(e)}"`}};var nc=require("fs"),yE=require("path");function to(n){let e=new Map,t="obsidian://vault/",r;try{r=(0,nc.readdirSync)(n)}catch{return e}for(let i of r){let s=(0,yE.join)(n,i);if(i.startsWith("."))continue;let a;try{a=(0,nc.statSync)(s)}catch{continue}if(!a.isDirectory())continue;let c;try{c=(0,nc.readdirSync)(s)}catch{continue}for(let l of c){let u=(0,yE.join)(s,l);if(l.startsWith("."))continue;let f;try{f=(0,nc.statSync)(u)}catch{continue}if(!f.isDirectory())continue;let d=!1;try{d=(0,nc.readdirSync)(u).some(p=>p.endsWith(".md"))}catch{continue}if(d){let h=`${i}/${l}`,p=encodeURI(h),y=`${t}${p}/`;/^[a-zA-Z][a-zA-Z0-9_]*$/.test(l)&&e.set(l,y)}}}return e}o(to,"scanVaultNamespaces");var RF=Z(nr());var QK="https://exocortex.my/ontology/",KK=/^[a-z][a-zA-Z0-9]*$/,OF=new Set(["exo","ems","ims","gtd","period","lit","inbox","rdf","rdfs","owl","xsd"]),YK=/(<)([a-zA-Z][a-zA-Z0-9]*)__([a-zA-Z][a-zA-Z0-9_]*)(>)/g;function ro(n){let e=new Set,t=/PREFIX\s+(\w+)\s*:/gi,r;for(;(r=t.exec(n))!==null;)e.add(r[1].toLowerCase());let i=RF.SPARQL_PREFIXES.split(`
596
+ `)}formatForJSON(e){return{type:e.type,message:e.message,originalMessage:e.originalMessage,suggestions:e.suggestions,line:e.line,column:e.column,context:e.context?{startLine:e.context.startLine,endLine:e.context.endLine,errorLine:e.context.errorLine,errorColumn:e.context.errorColumn,lines:e.context.lines.map(t=>({number:t.number,content:t.content,isError:t.isError}))}:void 0}}};var jg=class n{static{o(this,"NTriplesFormatter")}static escapeString(e){let t=e.replace(/\\/g,"\\\\");return t=t.replace(/"/g,'\\"'),t=t.replace(/\n/g,"\\n"),t=t.replace(/\r/g,"\\r"),t=t.replace(/\t/g,"\\t"),t}static formatObject(e){return e.startsWith("http://")||e.startsWith("https://")||e.startsWith("urn:")?`<${e}>`:`"${n.escapeString(e)}"`}};var nc=require("fs"),yE=require("path");function ro(n){let e=new Map,t="obsidian://vault/",r;try{r=(0,nc.readdirSync)(n)}catch{return e}for(let i of r){let s=(0,yE.join)(n,i);if(i.startsWith("."))continue;let a;try{a=(0,nc.statSync)(s)}catch{continue}if(!a.isDirectory())continue;let c;try{c=(0,nc.readdirSync)(s)}catch{continue}for(let l of c){let u=(0,yE.join)(s,l);if(l.startsWith("."))continue;let f;try{f=(0,nc.statSync)(u)}catch{continue}if(!f.isDirectory())continue;let d=!1;try{d=(0,nc.readdirSync)(u).some(p=>p.endsWith(".md"))}catch{continue}if(d){let h=`${i}/${l}`,p=encodeURI(h),y=`${t}${p}/`;/^[a-zA-Z][a-zA-Z0-9_]*$/.test(l)&&e.set(l,y)}}}return e}o(ro,"scanVaultNamespaces");var RF=Z(nr());var QK="https://exocortex.my/ontology/",KK=/^[a-z][a-zA-Z0-9]*$/,OF=new Set(["exo","ems","ims","gtd","period","lit","inbox","rdf","rdfs","owl","xsd"]),YK=/(<)([a-zA-Z][a-zA-Z0-9]*)__([a-zA-Z][a-zA-Z0-9_]*)(>)/g;function no(n){let e=new Set,t=/PREFIX\s+(\w+)\s*:/gi,r;for(;(r=t.exec(n))!==null;)e.add(r[1].toLowerCase());let i=RF.SPARQL_PREFIXES.split(`
597
597
  `).filter(f=>f.trim().length>0),s=[];for(let f of i){let d=/PREFIX\s+(\w+)\s*:/i.exec(f);d&&!e.has(d[1].toLowerCase())&&s.push(f)}let a=/(?<![:\w])([a-z][a-zA-Z0-9]*):[a-zA-Z_]/g,c=new Set,l;for(;(l=a.exec(n))!==null;)c.add(l[1]);let u=new Set(e);for(let f of s){let d=/PREFIX\s+(\w+)\s*:/i.exec(f);d&&u.add(d[1].toLowerCase())}for(let f of c)u.has(f.toLowerCase())||KK.test(f)&&(s.push(`PREFIX ${f}: <${QK}${f}#>`),u.add(f.toLowerCase()));return s.length===0?n:s.join(`
598
598
  `)+`
599
- `+n}o(ro,"injectExocortexPrefixes");function eu(n){return n.replace(YK,(e,t,r,i,s)=>OF.has(r.toLowerCase())?`${r}:${i}`:e)}o(eu,"transformShorthandNotation");function no(n){let e=new Map(n);for(let t of OF)e.delete(t);return e}o(no,"filterOntologyPrefixes");var XK=300,PF=3e4,JK="EXOCORTEX_SPARQL_TIMEOUT";function ZK(){let n=process.env[JK];if(!n)return PF;try{let e=eY(n);if(e!==null&&e>0)return e}catch{}return PF}o(ZK,"getDefaultTimeout");function eY(n){let e=n.trim().toLowerCase();if(!e)return null;if(e.endsWith("ms")){let r=parseInt(e.slice(0,-2),10);return isNaN(r)||r<=0?null:r}if(e.endsWith("s")){let r=parseInt(e.slice(0,-1),10);return isNaN(r)||r<=0?null:r*1e3}let t=parseInt(e,10);return isNaN(t)||t<=0?null:t*1e3}o(eY,"parseTimeoutSafe");function tY(n){if(!n)return XK;let e=parseInt(n.trim(),10);if(isNaN(e)||e<=0)throw new Ft(`Invalid cache TTL: "${n}". Must be a positive number (seconds).`,'exocortex sparql query --cache-ttl 600 "SELECT * WHERE { ?s ?p ?o }"');return e}o(tY,"parseCacheTtl");function rY(n){let e=n.trim().toLowerCase();if(e.endsWith("ms")){let r=parseInt(e.slice(0,-2),10);if(isNaN(r)||r<=0)throw new Ft(`Invalid timeout format: "${n}". Value must be a positive number.`,'exocortex sparql query --timeout "30s" or --timeout "5000ms"');return r}if(e.endsWith("s")){let r=parseInt(e.slice(0,-1),10);if(isNaN(r)||r<=0)throw new Ft(`Invalid timeout format: "${n}". Value must be a positive number.`,'exocortex sparql query --timeout "30s" or --timeout "5000ms"');return r*1e3}let t=parseInt(e,10);if(isNaN(t)||t<=0)throw new Ft(`Invalid timeout format: "${n}". Use formats like "30s", "5000ms", or just a number (seconds).`,'exocortex sparql query --timeout "30s" or --timeout "5000ms"');return t*1e3}o(rY,"parseTimeout");async function _E(n,e,t=Date.now()){let r,i=new Promise((s,a)=>{r=setTimeout(()=>{let c=Date.now()-t;a(new Hf(e,c))},e),r&&typeof r=="object"&&"unref"in r&&r.unref()});return Promise.race([n,i])}o(_E,"executeWithTimeout");function nY(n,e){return e.concat([n])}o(nY,"collectAlso");function DF(){return new Te("query").description("Execute SPARQL query against Obsidian vault").argument("[query]","SPARQL query string or path to .sparql file (optional if --template is used)").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--also <path>","Additional vault to include in query (repeatable)",nY,[]).option("--format <type>","Output format: table|json|csv|ntriples","table").option("--output <type>","Response format: text|json (for MCP tools)","text").option("--timeout <duration>","Query timeout (e.g., 30s, 5000ms)","30s").option("--dry-run","Validate query syntax without executing (no vault loading)").option("--explain","Show optimized query plan").option("--stats","Show execution statistics").option("--no-optimize","Disable query optimization").option("--use-cache","Use persistent triple cache (faster vault loading)").option("--cache-ttl <seconds>","Query result cache TTL in seconds (default: 300)").option("--no-cache","Bypass query result cache").option("--template <name>","Use a predefined query template").option("--param <params>","Template parameters (format: key=value,key2=value2)").action(async(n,e)=>{let t=e.output||"text";J.setFormat(t);let r="";try{let i=Date.now(),s=e.timeout?rY(e.timeout):ZK(),a=tY(e.cacheTtl),c=e.cache!==!1;if(e.template){let $=new kg,B=e.param?$.parseParamString(e.param):{};if(r=$.applyTemplate(e.template,B),t==="text"){let F=$.getTemplate(e.template);console.log(`\u{1F4CB} Using template: ${e.template}`),Object.keys(B).length>0&&console.log(` Parameters: ${Object.entries(B).map(([k,ee])=>`${k}=${ee}`).join(", ")}`),console.log()}}else if(n)r=iY(n);else throw new Ft("Either a query argument or --template flag is required.",'exocortex sparql query "SELECT * WHERE { ?s ?p ?o }" or exocortex sparql query --template tasks-by-date --param date=2024-01-15');if(e.dryRun){await sY(r,e,t);return}let l=(0,nd.resolve)(e.vault);if(c){let B=await new Yl().get(r,a);if(B!==null){let F=Date.now()-i;if(t==="json"){let k=we.success(B,{durationMs:F,itemCount:B.count||0,queryResultCacheHit:!0});console.log(JSON.stringify(k,null,2))}else{console.log(`\u{1F4E6} (cached) Query result loaded from cache in ${F}ms
599
+ `+n}o(no,"injectExocortexPrefixes");function eu(n){return n.replace(YK,(e,t,r,i,s)=>OF.has(r.toLowerCase())?`${r}:${i}`:e)}o(eu,"transformShorthandNotation");function io(n){let e=new Map(n);for(let t of OF)e.delete(t);return e}o(io,"filterOntologyPrefixes");var XK=300,PF=3e4,JK="EXOCORTEX_SPARQL_TIMEOUT";function ZK(){let n=process.env[JK];if(!n)return PF;try{let e=eY(n);if(e!==null&&e>0)return e}catch{}return PF}o(ZK,"getDefaultTimeout");function eY(n){let e=n.trim().toLowerCase();if(!e)return null;if(e.endsWith("ms")){let r=parseInt(e.slice(0,-2),10);return isNaN(r)||r<=0?null:r}if(e.endsWith("s")){let r=parseInt(e.slice(0,-1),10);return isNaN(r)||r<=0?null:r*1e3}let t=parseInt(e,10);return isNaN(t)||t<=0?null:t*1e3}o(eY,"parseTimeoutSafe");function tY(n){if(!n)return XK;let e=parseInt(n.trim(),10);if(isNaN(e)||e<=0)throw new Ft(`Invalid cache TTL: "${n}". Must be a positive number (seconds).`,'exocortex sparql query --cache-ttl 600 "SELECT * WHERE { ?s ?p ?o }"');return e}o(tY,"parseCacheTtl");function rY(n){let e=n.trim().toLowerCase();if(e.endsWith("ms")){let r=parseInt(e.slice(0,-2),10);if(isNaN(r)||r<=0)throw new Ft(`Invalid timeout format: "${n}". Value must be a positive number.`,'exocortex sparql query --timeout "30s" or --timeout "5000ms"');return r}if(e.endsWith("s")){let r=parseInt(e.slice(0,-1),10);if(isNaN(r)||r<=0)throw new Ft(`Invalid timeout format: "${n}". Value must be a positive number.`,'exocortex sparql query --timeout "30s" or --timeout "5000ms"');return r*1e3}let t=parseInt(e,10);if(isNaN(t)||t<=0)throw new Ft(`Invalid timeout format: "${n}". Use formats like "30s", "5000ms", or just a number (seconds).`,'exocortex sparql query --timeout "30s" or --timeout "5000ms"');return t*1e3}o(rY,"parseTimeout");async function _E(n,e,t=Date.now()){let r,i=new Promise((s,a)=>{r=setTimeout(()=>{let c=Date.now()-t;a(new Hf(e,c))},e),r&&typeof r=="object"&&"unref"in r&&r.unref()});return Promise.race([n,i])}o(_E,"executeWithTimeout");function nY(n,e){return e.concat([n])}o(nY,"collectAlso");function DF(){return new Te("query").description("Execute SPARQL query against Obsidian vault").argument("[query]","SPARQL query string or path to .sparql file (optional if --template is used)").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--also <path>","Additional vault to include in query (repeatable)",nY,[]).option("--format <type>","Output format: table|json|csv|ntriples","table").option("--output <type>","Response format: text|json (for MCP tools)","text").option("--timeout <duration>","Query timeout (e.g., 30s, 5000ms)","30s").option("--dry-run","Validate query syntax without executing (no vault loading)").option("--explain","Show optimized query plan").option("--stats","Show execution statistics").option("--no-optimize","Disable query optimization").option("--use-cache","Use persistent triple cache (faster vault loading)").option("--cache-ttl <seconds>","Query result cache TTL in seconds (default: 300)").option("--no-cache","Bypass query result cache").option("--template <name>","Use a predefined query template").option("--param <params>","Template parameters (format: key=value,key2=value2)").action(async(n,e)=>{let t=e.output||"text";J.setFormat(t);let r="";try{let i=Date.now(),s=e.timeout?rY(e.timeout):ZK(),a=tY(e.cacheTtl),c=e.cache!==!1;if(e.template){let $=new kg,B=e.param?$.parseParamString(e.param):{};if(r=$.applyTemplate(e.template,B),t==="text"){let F=$.getTemplate(e.template);console.log(`\u{1F4CB} Using template: ${e.template}`),Object.keys(B).length>0&&console.log(` Parameters: ${Object.entries(B).map(([k,ee])=>`${k}=${ee}`).join(", ")}`),console.log()}}else if(n)r=iY(n);else throw new Ft("Either a query argument or --template flag is required.",'exocortex sparql query "SELECT * WHERE { ?s ?p ?o }" or exocortex sparql query --template tasks-by-date --param date=2024-01-15');if(e.dryRun){await sY(r,e,t);return}let l=(0,nd.resolve)(e.vault);if(c){let B=await new Yl().get(r,a);if(B!==null){let F=Date.now()-i;if(t==="json"){let k=we.success(B,{durationMs:F,itemCount:B.count||0,queryResultCacheHit:!0});console.log(JSON.stringify(k,null,2))}else{console.log(`\u{1F4E6} (cached) Query result loaded from cache in ${F}ms
600
600
  `);let k=B;k.type==="select"&&k.bindings?(console.log(`\u2705 Found ${k.bindings.length} result(s)
601
601
  `),cY(k.bindings,e.format)):k.type==="construct"&&k.triples&&(console.log(`\u2705 Generated ${k.triples.length} triple(s)
602
602
  `),lY(k.triples,e.format))}return}}if(!(0,tu.existsSync)(l))throw new Ee(l);t==="text"&&console.log(`\u{1F4E6} Loading vault: ${l}...`);let u=Date.now(),f,d=!1;if(e.useCache){let B=await new li(l).loadOrBuild();f=B.triples,d=B.cacheHit,t==="text"&&d&&console.log("\u{1F680} Cache hit! Loading from persistent cache...")}else{let $=new Rt(l);f=await new Bt.NoteToRDFConverter($).convertVault()}let h=e.also||[];for(let $ of h){let B=(0,nd.resolve)($);if(!(0,tu.existsSync)(B))throw new Ee(B);t==="text"&&console.log(`\u{1F4E6} Loading additional vault: ${B}...`);let F=new Rt(B),ee=await new Bt.NoteToRDFConverter(F).convertVault();f=f.concat(ee),t==="text"&&console.log(` \u2795 Added ${ee.length} triples from ${B}`)}let p=new Bt.InMemoryTripleStore;await p.addAll(f);let y=Date.now()-u;if(t==="text"){let $=d?" (from cache)":"",B=h.length>0?` (${h.length+1} vaults)`:"";console.log(`\u2705 Loaded ${f.length} triples in ${y}ms${$}${B}
603
- `),console.log("\u{1F50D} Parsing SPARQL query...")}let b=new Bt.ExoQLParser;r=eu(r),r=ro(r);let w=no(to(l));for(let $ of h){let B=no(to((0,nd.resolve)($)));for(let[F,k]of B)w.has(F)||w.set(F,k)}w.size>0&&b.setVaultPrefixes(w);let v=b.parse(r);if(v.type==="update"){t==="text"&&console.log("\u{1F504} Executing SPARQL UPDATE...");let $=Date.now(),B=new Bt.UpdateExecutor(p),F=await _E(B.execute(v),s,$),k=Date.now()-$,ee=Date.now()-i;if(t==="json"){let Ke=we.success({query:r,type:"update",results:F},{durationMs:ee,itemCount:F.length,loadDurationMs:y,execDurationMs:k,triplesScanned:f.length,cacheHit:d});console.log(JSON.stringify(Ke,null,2))}else fY(F,e.format),console.log(),console.log("\u26A0\uFE0F Changes applied to in-memory store only (not persisted to vault files)"),e.stats&&(console.log(`
603
+ `),console.log("\u{1F50D} Parsing SPARQL query...")}let b=new Bt.ExoQLParser;r=eu(r),r=no(r);let w=io(ro(l));for(let $ of h){let B=io(ro((0,nd.resolve)($)));for(let[F,k]of B)w.has(F)||w.set(F,k)}w.size>0&&b.setVaultPrefixes(w);let v=b.parse(r);if(v.type==="update"){t==="text"&&console.log("\u{1F504} Executing SPARQL UPDATE...");let $=Date.now(),B=new Bt.UpdateExecutor(p),F=await _E(B.execute(v),s,$),k=Date.now()-$,ee=Date.now()-i;if(t==="json"){let Ke=we.success({query:r,type:"update",results:F},{durationMs:ee,itemCount:F.length,loadDurationMs:y,execDurationMs:k,triplesScanned:f.length,cacheHit:d});console.log(JSON.stringify(Ke,null,2))}else fY(F,e.format),console.log(),console.log("\u26A0\uFE0F Changes applied to in-memory store only (not persisted to vault files)"),e.stats&&(console.log(`
604
604
  \u{1F4CA} Execution Statistics:`),console.log(` Vault loading: ${y}ms${d?" (from cache)":""}`),console.log(` Query execution: ${k}ms`),console.log(` Total time: ${ee}ms`),console.log(` Triples scanned: ${f.length}`));return}t==="text"&&console.log("\u{1F504} Translating to algebra...");let C=new Bt.ExoQLAlgebraTranslator().translate(v);if(!e.noOptimize&&C.type!=="construct")C=new Bt.AlgebraOptimizer().optimize(C);else if(!e.noOptimize&&C.type==="construct"){let $=new Bt.AlgebraOptimizer,B=C;C={...B,where:$.optimize(B.where)}}if(e.explain&&t==="text"){console.log("\u{1F4CA} Query Plan:");let $=new Bt.AlgebraSerializer;if(C.type==="construct"){let B=C;console.log("CONSTRUCT Template:"),console.log(" (template patterns)"),console.log("WHERE:"),console.log($.toString(B.where))}else console.log($.toString(C));console.log()}let L=Date.now(),V=new Bt.ExoQLQueryExecutor(p);typeof V.setTimeout=="function"&&V.setTimeout(s);let ae=t==="text"?new Dg("Executing query",{delayMs:2e3}):null;if(V.isConstructQuery(C)){ae?.start();let $=await _E(V.executeConstruct(C),s,L),B=Date.now()-L;ae?.stop();let F=Date.now()-i;if(c){let k=new Kl,ee={type:"construct",count:$.length,triples:JSON.parse(k.formatJson($))};await new Yl().set(r,ee,a)}if(t==="json"){let k=new Kl,ee={query:r,count:$.length,triples:JSON.parse(k.formatJson($))},Ke=we.success(ee,{durationMs:F,itemCount:$.length,loadDurationMs:y,execDurationMs:B,triplesScanned:f.length,cacheHit:d,queryResultCacheHit:!1});console.log(JSON.stringify(Ke,null,2))}else console.log(`\u2705 Generated ${$.length} triple(s) in ${B}ms
605
605
  `),$.length>0?oY($,e.format):console.log("No triples generated."),e.stats&&(console.log(`
606
606
  \u{1F4CA} Execution Statistics:`),console.log(` Vault loading: ${y}ms${d?" (from cache)":""}`),console.log(` Query execution: ${B}ms`),console.log(` Total time: ${F}ms`),console.log(` Triples scanned: ${f.length}`),console.log(` Triples generated: ${$.length}`),e.useCache&&console.log(` Triple cache: ${d?"HIT":"MISS (rebuilt)"}`),c&&console.log(" Query result cache: MISS (cached for next run)"))}else{ae?.start();let $=await _E(V.executeAll(C),s,L),B=Date.now()-L;ae?.stop();let F=Date.now()-i,k=$.map(ee=>ee.toJSON());if(c){let ee={type:"select",count:$.length,bindings:k};await new Yl().set(r,ee,a)}if(t==="json"){let ee={query:r,count:$.length,bindings:k},Ke=we.success(ee,{durationMs:F,itemCount:$.length,loadDurationMs:y,execDurationMs:B,triplesScanned:f.length,cacheHit:d,queryResultCacheHit:!1});console.log(JSON.stringify(Ke,null,2))}else console.log(`\u2705 Found ${$.length} result(s) in ${B}ms
@@ -610,17 +610,17 @@ Available prefixes: ${u}`,this.wellKnownPrefixes[r]&&c.push(`Add: PREFIX ${r}: <
610
610
  \u26A0\uFE0F Files skipped due to IRI issues:`);for(let u of a.skippedFiles)console.log(` - ${u.path}`),console.log(` ${u.reason}`);console.log("")}if(console.log(`\u2705 Indexed ${a.summary.indexed} files, skipped ${a.summary.skipped} (total: ${a.summary.total})`),console.log(`\u{1F4CA} Created cache with ${a.tripleCount.toLocaleString()} triples at ${i}`),console.log(`\u23F1\uFE0F Build time: ${a.durationMs}ms`),n.stats){let u=await r.getCacheStats();u&&(console.log(`
611
611
  \u{1F4CA} Cache Statistics:`),console.log(` Triples: ${u.tripleCount.toLocaleString()}`),console.log(` Created: ${u.createdAt.toISOString()}`),console.log(` Valid: ${u.isValid?"\u2705 Yes":"\u274C No"}`),console.log(` Size: ${dY(u.sizeBytes)}`))}}}catch(t){J.handle(t)}})}o(MF,"sparqlIndexCommand");function dY(n){return n<1024?`${n} B`:n<1024*1024?`${(n/1024).toFixed(1)} KB`:`${(n/(1024*1024)).toFixed(1)} MB`}o(dY,"formatBytes");var $F=require("path");var ma=Z(require("fs")),SE=Z(require("path")),jF=require("events");var hY={watch:ma.default.watch.bind(ma.default),existsSync:ma.default.existsSync.bind(ma.default),statSync:ma.default.statSync.bind(ma.default),readFileSync:ma.default.readFileSync.bind(ma.default)},$g=class extends jF.EventEmitter{constructor(t,r={}){super();this.watcher=null;this.debounceTimers=new Map;this.isRunning=!1;this.vaultPath=SE.default.resolve(t),this.fsAdapter=r.fsAdapter??hY,this.options={pattern:r.pattern??"**/*.md",assetType:r.assetType??"",debounceMs:r.debounceMs??100,recursive:r.recursive??!0}}static{o(this,"FileSystemWatcher")}start(){this.isRunning||(this.watcher=this.fsAdapter.watch(this.vaultPath,{recursive:this.options.recursive},(t,r)=>{r&&this.handleFileEvent(t,r.toString())}),this.watcher.on("error",t=>{this.emit("error",t)}),this.isRunning=!0,this.emit("started"))}stop(){if(this.isRunning){for(let t of this.debounceTimers.values())clearTimeout(t);this.debounceTimers.clear(),this.watcher&&(this.watcher.close(),this.watcher=null),this.isRunning=!1,this.emit("stopped")}}isWatching(){return this.isRunning}handleFileEvent(t,r){let i=SE.default.join(this.vaultPath,r),s=r;if(!this.matchesPattern(s))return;let a=this.debounceTimers.get(i);a&&clearTimeout(a);let c=setTimeout(()=>{this.debounceTimers.delete(i),this.processFileEvent(i,s)},this.options.debounceMs);this.debounceTimers.set(i,c)}processFileEvent(t,r){let i=this.fsAdapter.existsSync(t),s;if(!i)s="delete";else{let l=this.fsAdapter.statSync(t);s=Date.now()-l.birthtimeMs<1e3?"create":"modify"}let a;if(i&&t.endsWith(".md")&&(a=this.extractAssetType(t)),this.options.assetType&&a!==this.options.assetType)return;let c={type:s,path:t,relativePath:r,timestamp:new Date().toISOString(),assetType:a};this.emit("change",c)}matchesPattern(t){return this.options.pattern?jr(t,this.options.pattern):!0}extractAssetType(t){try{let i=this.fsAdapter.readFileSync(t,"utf-8").match(/^---\n([\s\S]*?)\n---/);if(!i)return;let a=i[1].match(/exo__Instance_class:\s*(?:\[?"?\[\[([^\]]+)\]\]"?\]?|"?\[\[([^\]]+)\]\]"?)/);return a?a[1]||a[2]:void 0}catch{return}}};var bE=Z(require("fs"));function VF(){return new Te("watch").description("Watch vault for file changes and emit NDJSON events").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--pattern <glob>","Glob pattern to filter files (e.g., '*.md', 'tasks/**')").option("--asset-type <type>","Filter by asset type (e.g., 'ems__Task', 'ems__Project')").option("--debounce <ms>","Debounce interval in milliseconds","100").action(async n=>{J.setFormat("json");try{let e=(0,$F.resolve)(n.vault);if(!bE.default.existsSync(e))throw new Ee(e);if(!bE.default.statSync(e).isDirectory())throw new Ft(`Vault path is not a directory: ${e}`,"Provide a path to a directory, not a file",{vaultPath:e});let t=parseInt(n.debounce?.toString()??"100",10);if(isNaN(t)||t<0)throw new Ft("--debounce must be a non-negative integer","Use a positive integer value for debounce",{debounce:n.debounce});let r=new $g(e,{pattern:n.pattern,assetType:n.assetType,debounceMs:t});r.on("change",s=>{console.log(JSON.stringify(s))}),r.on("error",s=>{let a=we.error("INTERNAL_OPERATION_FAILED",s.message,5,{recovery:{message:"Check file permissions and vault access",suggestion:"Ensure the vault directory is accessible"}});console.log(JSON.stringify(a))});let i=o(()=>{r.stop(),process.exit(0)},"shutdown");process.on("SIGINT",i),process.on("SIGTERM",i),console.error(`Watching vault: ${e}`),n.pattern&&console.error(` Pattern filter: ${n.pattern}`),n.assetType&&console.error(` Asset type filter: ${n.assetType}`),console.error(` Debounce: ${t}ms`),console.error("Press Ctrl+C to stop"),r.start()}catch(e){J.handle(e)}})}o(VF,"watchCommand");var Vg=require("fs"),Yi=require("path");function UF(){return new Te("resolve").description("Resolve UUID to file path").argument("<uuid>","Full or partial UUID to resolve").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: uri|path|json (default: uri)","uri").option("--output <type>","Response format: text|json (for MCP tools)","text").option("--partial","Match partial UUIDs (returns all matches)").action(async(n,e)=>{let t=e.output||"text";J.setFormat(t);try{let r=Date.now();if(!pY(n))throw new Ft(`Invalid UUID format: ${n}`,"exocortex resolve <uuid> [--format uri|path|json] [--partial]",{uuid:n});let i=(0,Yi.resolve)(e.vault);if(!(0,Vg.existsSync)(i))throw new Ee(i);let s=mY(i,n,e.partial??!1),a=Date.now()-r;if(s.length===0){if(t==="json"){let c=we.error("VALIDATION_FILE_NOT_FOUND",`UUID not found: ${n}`,3,{context:{uuid:n}});console.log(JSON.stringify(c,null,2))}else console.error(`UUID not found: ${n}`);process.exit(1)}e.partial||s.length>1?yY(s,i,e.format,t,n,a):gY(s[0],i,e.format,t,n,a)}catch(r){J.handle(r)}})}o(UF,"resolveCommand");function pY(n){if(n.length<4)return!1;let e=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i,t=/^[0-9a-f-]+$/i;return e.test(n)||t.test(n)}o(pY,"isValidUuidFormat");function mY(n,e,t){let r=[],i=e.toLowerCase();function s(a){let c=(0,Vg.readdirSync)(a,{withFileTypes:!0});for(let l of c){let u=(0,Yi.join)(a,l.name);if(l.isDirectory())!l.name.startsWith(".")&&l.name!=="node_modules"&&s(u);else if(l.isFile()&&l.name.endsWith(".md")){let f=l.name.toLowerCase();t?f.includes(i)&&r.push(u):(f.startsWith(i+".md")||f.startsWith(i+" ")||f.startsWith(i+"-"))&&r.push(u)}}}return o(s,"walk"),s(n),r}o(mY,"findFilesWithUuid");function BF(n){return`obsidian://vault/${encodeURI(n)}`}o(BF,"pathToObsidianUri");function qF(n){let e=n.match(/^([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})/i);return e?e[1]:(0,Yi.basename)(n,".md")}o(qF,"extractUuidFromFilename");function gY(n,e,t,r,i,s){let a=(0,Yi.relative)(e,n),c=BF(a),l=qF((0,Yi.basename)(n));if(r==="json"){let u={uuid:l,path:a,absolutePath:n,uri:c},f=we.success(u,{durationMs:s,searchUuid:i});console.log(JSON.stringify(f,null,2))}else switch(t){case"path":console.log(n);break;case"json":console.log(JSON.stringify({uuid:l,path:a,absolutePath:n,uri:c},null,2));break;case"uri":default:console.log(c);break}}o(gY,"outputSingleResult");function yY(n,e,t,r,i,s){let a=n.map(c=>{let l=(0,Yi.relative)(e,c),u=BF(l);return{uuid:qF((0,Yi.basename)(c)),path:l,absolutePath:c,uri:u}});if(r==="json"){let c=we.success({matches:a,count:a.length},{durationMs:s,searchUuid:i,itemCount:a.length});console.log(JSON.stringify(c,null,2))}else switch(t){case"path":for(let c of a)console.log(c.absolutePath);break;case"json":console.log(JSON.stringify(a,null,2));break;case"uri":default:for(let c of a)console.log(c.uri);break}}o(yY,"outputMultipleResults");var WF=require("fs"),GF=require("path"),Dn=Z(nr());function zF(){return new Te("ask").description("Ask a question in natural language about your vault").argument("<question>","Question in natural language (Russian or English)").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: table|json","table").option("--output <type>","Response format: text|json (for MCP tools)","text").option("--show-query","Show the generated SPARQL query").option("--explain","Show explanation of the query conversion").action(async(n,e)=>{let t=e.output||"text";J.setFormat(t);try{let r=Date.now(),i=(0,GF.resolve)(e.vault);if(!(0,WF.existsSync)(i))throw new Ee(i);let s=new Dn.NLToSPARQLService;t==="text"&&console.log(`\u{1F9E0} Analyzing question: "${n}"
612
612
  `);let a=s.convert(n);e.showQuery&&t==="text"&&(console.log("\u{1F4DD} Generated SPARQL Query:"),console.log("\u2500".repeat(50)),console.log(a.query),console.log("\u2500".repeat(50)),console.log()),e.explain&&t==="text"&&(console.log(`\u{1F4D6} Explanation: ${a.explanation}`),console.log(`\u{1F3AF} Confidence: ${(a.confidence*100).toFixed(0)}%`),a.templateName&&console.log(`\u{1F4CB} Template: ${a.templateName}`),a.isFallback&&console.log("\u26A0\uFE0F Using fallback generic search query"),console.log()),t==="text"&&console.log(`\u{1F4E6} Loading vault: ${i}...`);let c=Date.now(),l=new Rt(i),f=await new Dn.NoteToRDFConverter(l).convertVault(),d=new Dn.InMemoryTripleStore;await d.addAll(f);let h=Date.now()-c;t==="text"&&console.log(`\u2705 Loaded ${f.length} triples in ${h}ms
613
- `);let p=a.query;p=eu(p),p=ro(p);let y=new Dn.ExoQLParser,b=no(to(i));b.size>0&&y.setVaultPrefixes(b);let w=y.parse(p),T=new Dn.ExoQLAlgebraTranslator().translate(w);T=new Dn.AlgebraOptimizer().optimize(T);let L=Date.now(),ae=await new Dn.ExoQLQueryExecutor(d).executeAll(T),$=Date.now()-L,B=Date.now()-r,F=s.getSuggestions(n);if(t==="json"){let k=ae.map(at=>at.toJSON()),ee={question:n,query:a.query,template:a.templateName,parameters:a.parameters,confidence:a.confidence,explanation:a.explanation,count:ae.length,bindings:k,suggestions:F.length>0?F:void 0},Ke=we.success(ee,{durationMs:B,itemCount:ae.length,loadDurationMs:h,execDurationMs:$,triplesScanned:f.length});console.log(JSON.stringify(Ke,null,2))}else{if(console.log(`\u2705 Found ${ae.length} result(s) in ${$}ms
613
+ `);let p=a.query;p=eu(p),p=no(p);let y=new Dn.ExoQLParser,b=io(ro(i));b.size>0&&y.setVaultPrefixes(b);let w=y.parse(p),T=new Dn.ExoQLAlgebraTranslator().translate(w);T=new Dn.AlgebraOptimizer().optimize(T);let L=Date.now(),ae=await new Dn.ExoQLQueryExecutor(d).executeAll(T),$=Date.now()-L,B=Date.now()-r,F=s.getSuggestions(n);if(t==="json"){let k=ae.map(at=>at.toJSON()),ee={question:n,query:a.query,template:a.templateName,parameters:a.parameters,confidence:a.confidence,explanation:a.explanation,count:ae.length,bindings:k,suggestions:F.length>0?F:void 0},Ke=we.success(ee,{durationMs:B,itemCount:ae.length,loadDurationMs:h,execDurationMs:$,triplesScanned:f.length});console.log(JSON.stringify(Ke,null,2))}else{if(console.log(`\u2705 Found ${ae.length} result(s) in ${$}ms
614
614
  `),ae.length>0?_Y(ae,e.format):console.log("No results found."),F.length>0){console.log(`
615
615
  \u{1F4A1} Suggestions:`);for(let k of F)console.log(` \u2022 ${k}`)}if(a.confidence<.6&&a.alternatives.length>0){console.log(`
616
616
  \u{1F504} Alternative queries that might work better:`);for(let k=0;k<Math.min(2,a.alternatives.length);k++)console.log(` ${k+1}. ${a.alternatives[k].split(`
617
- `).slice(-3)[0]?.trim()||"..."}`)}}}catch(r){J.handle(r)}})}o(zF,"askCommand");function _Y(n,e){let t=n;switch(e){case"json":let r=new Ql;console.log(r.format(t));break;case"table":default:let i=new Hl;console.log(i.format(t));break}}o(_Y,"formatResults");var nu=require("path"),iu=require("fs"),ic=Z(le()),io=Z(nr());var Qge=Z(Pd()),ru=Z(le()),id=Z(nr());var Ug=class{constructor(e="exocortex-cli"){this.appName=e}static{o(this,"NodeLogger")}debug(e,t){console.debug(`[${this.appName}]`,e,t||"")}info(e,t){console.info(`[${this.appName}]`,e,t||"")}warn(e,t){console.warn(`[${this.appName}]`,e,t||"")}error(e,t,r){console.error(`[${this.appName}]`,e,t||"",r||""),t?.stack&&console.error(t.stack)}};var Bg=class{constructor(){this.handlers=new Map}static{o(this,"NodeEventBus")}publish(e,t){let r=this.handlers.get(e);r&&r.forEach(i=>{try{i(t)}catch(s){console.error(`[EventBus] Error in handler for event "${e}":`,s)}})}subscribe(e,t){return this.handlers.has(e)||this.handlers.set(e,new Set),this.handlers.get(e).add(t),()=>this.unsubscribe(e,t)}unsubscribe(e,t){let r=this.handlers.get(e);r&&(r.delete(t),r.size===0&&this.handlers.delete(e))}};var Wg=Z(require("fs/promises")),HF=Z(require("path")),QF=Z(require("os"));var qg=class{constructor(e=".exocortexrc"){this.config={};this.configPath=HF.join(QF.homedir(),e)}static{o(this,"NodeConfiguration")}async load(){try{let e=await Wg.readFile(this.configPath,"utf-8");this.config=JSON.parse(e)}catch{this.config={}}}get(e){let t=e.split("."),r=this.config;for(let i of t)if(r&&typeof r=="object"&&i in r)r=r[i];else return;return r}async set(e,t){let r=e.split("."),i=r.pop(),s=this.config;for(let a of r)(!s[a]||typeof s[a]!="object")&&(s[a]={}),s=s[a];s[i]=t,await this.save()}getAll(){return{...this.config}}async save(){await Wg.writeFile(this.configPath,JSON.stringify(this.config,null,2),"utf-8")}};var KF=Z(require("readline"));var Gg=class{static{o(this,"NodeNotificationService")}info(e,t){console.log(`\u2139 ${e}`)}success(e,t){console.log(`\u2713 ${e}`)}error(e,t){console.error(`\u2717 ${e}`)}warn(e,t){console.warn(`\u26A0 ${e}`)}async confirm(e,t){let r=KF.createInterface({input:process.stdin,output:process.stdout});return new Promise(i=>{r.question(`${e}
617
+ `).slice(-3)[0]?.trim()||"..."}`)}}}catch(r){J.handle(r)}})}o(zF,"askCommand");function _Y(n,e){let t=n;switch(e){case"json":let r=new Ql;console.log(r.format(t));break;case"table":default:let i=new Hl;console.log(i.format(t));break}}o(_Y,"formatResults");var nu=require("path"),iu=require("fs"),ic=Z(le()),so=Z(nr());var Qge=Z(Pd()),ru=Z(le()),id=Z(nr());var Ug=class{constructor(e="exocortex-cli"){this.appName=e}static{o(this,"NodeLogger")}debug(e,t){console.debug(`[${this.appName}]`,e,t||"")}info(e,t){console.info(`[${this.appName}]`,e,t||"")}warn(e,t){console.warn(`[${this.appName}]`,e,t||"")}error(e,t,r){console.error(`[${this.appName}]`,e,t||"",r||""),t?.stack&&console.error(t.stack)}};var Bg=class{constructor(){this.handlers=new Map}static{o(this,"NodeEventBus")}publish(e,t){let r=this.handlers.get(e);r&&r.forEach(i=>{try{i(t)}catch(s){console.error(`[EventBus] Error in handler for event "${e}":`,s)}})}subscribe(e,t){return this.handlers.has(e)||this.handlers.set(e,new Set),this.handlers.get(e).add(t),()=>this.unsubscribe(e,t)}unsubscribe(e,t){let r=this.handlers.get(e);r&&(r.delete(t),r.size===0&&this.handlers.delete(e))}};var Wg=Z(require("fs/promises")),HF=Z(require("path")),QF=Z(require("os"));var qg=class{constructor(e=".exocortexrc"){this.config={};this.configPath=HF.join(QF.homedir(),e)}static{o(this,"NodeConfiguration")}async load(){try{let e=await Wg.readFile(this.configPath,"utf-8");this.config=JSON.parse(e)}catch{this.config={}}}get(e){let t=e.split("."),r=this.config;for(let i of t)if(r&&typeof r=="object"&&i in r)r=r[i];else return;return r}async set(e,t){let r=e.split("."),i=r.pop(),s=this.config;for(let a of r)(!s[a]||typeof s[a]!="object")&&(s[a]={}),s=s[a];s[i]=t,await this.save()}getAll(){return{...this.config}}async save(){await Wg.writeFile(this.configPath,JSON.stringify(this.config,null,2),"utf-8")}};var KF=Z(require("readline"));var Gg=class{static{o(this,"NodeNotificationService")}info(e,t){console.log(`\u2139 ${e}`)}success(e,t){console.log(`\u2713 ${e}`)}error(e,t){console.error(`\u2717 ${e}`)}warn(e,t){console.warn(`\u26A0 ${e}`)}async confirm(e,t){let r=KF.createInterface({input:process.stdin,output:process.stdout});return new Promise(i=>{r.question(`${e}
618
618
  ${t}
619
- Continue? (y/n): `,s=>{r.close(),i(s.toLowerCase()==="y"||s.toLowerCase()==="yes")})})}};var zg=class{static{o(this,"CLIContainer")}static setup(){ru.container.register(id.DI_TOKENS.ILogger,{useFactory:o(()=>new Ug("exocortex-cli"),"useFactory")}),ru.container.register(id.DI_TOKENS.IEventBus,{useClass:Bg}),ru.container.register(id.DI_TOKENS.IConfiguration,{useClass:qg}),ru.container.register(id.DI_TOKENS.INotificationService,{useClass:Gg})}static reset(){ru.container.clearInstances()}};function sd(n){zg.setup(),ic.container.register(io.DI_TOKENS.IVaultAdapter,{useFactory:o(()=>new Rt(n),"useFactory")})}o(sd,"setupContainer");function SY(n){if(n.length===0)return"No practices found.";let e=[];for(let t of n){let r="\u2B1C";t.doneToday?r="\u2705":t.inProgressToday&&(r="\u{1F504}");let i=t.estimatedDuration?` (${t.estimatedDuration}m)`:"";e.push(`${r} ${t.label}${i}`)}return e.join(`
619
+ Continue? (y/n): `,s=>{r.close(),i(s.toLowerCase()==="y"||s.toLowerCase()==="yes")})})}};var zg=class{static{o(this,"CLIContainer")}static setup(){ru.container.register(id.DI_TOKENS.ILogger,{useFactory:o(()=>new Ug("exocortex-cli"),"useFactory")}),ru.container.register(id.DI_TOKENS.IEventBus,{useClass:Bg}),ru.container.register(id.DI_TOKENS.IConfiguration,{useClass:qg}),ru.container.register(id.DI_TOKENS.INotificationService,{useClass:Gg})}static reset(){ru.container.clearInstances()}};function sd(n){zg.setup(),ic.container.register(so.DI_TOKENS.IVaultAdapter,{useFactory:o(()=>new Rt(n),"useFactory")})}o(sd,"setupContainer");function SY(n){if(n.length===0)return"No practices found.";let e=[];for(let t of n){let r="\u2B1C";t.doneToday?r="\u2705":t.inProgressToday&&(r="\u{1F504}");let i=t.estimatedDuration?` (${t.estimatedDuration}m)`:"";e.push(`${r} ${t.label}${i}`)}return e.join(`
620
620
  `)}o(SY,"formatPractices");function bY(n){let e=[`\u{1F4C5} Daily Review: ${n.date}`,"","\u{1F4CA} Tasks:",` Planned: ${n.plannedCount}`,` Completed: ${n.completedCount}`,` In Progress: ${n.inProgressCount}`,` Progress: ${n.completionPercentage}%`,"",`\u23F1\uFE0F Total time: ${Math.round(n.totalTimeMinutes)} minutes`];if(n.practicesDue.length>0){e.push(""),e.push(`\u{1F4CB} Practices due (${n.practicesDue.length}):`);for(let t of n.practicesDue){let r=t.estimatedDuration?` (${t.estimatedDuration}m)`:"";e.push(` \u2B1C ${t.label}${r}`)}}return e.join(`
621
- `)}o(bY,"formatSummary");function YF(){let n=new Te("daily").description("Daily review operations for mobile-friendly workflow");return n.command("practices").description("List today's practices (recurring tasks)").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async e=>{let t=e.format||"text";J.setFormat(t);try{let r=(0,nu.resolve)(e.vault);if(!(0,iu.existsSync)(r))throw new Ee(r);sd(r);let s=await ic.container.resolve(io.DailyReviewService).getPractices();if(t==="json"){let a=we.success({practices:s,count:s.length});console.log(JSON.stringify(a,null,2))}else console.log(SY(s))}catch(r){J.handle(r)}}),n.command("summary").description("Show today's daily review summary").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").option("--date <value>","Date in YYYY-MM-DD format (default: today)").action(async e=>{let t=e.format||"text";J.setFormat(t);try{let r=(0,nu.resolve)(e.vault);if(!(0,iu.existsSync)(r))throw new Ee(r);sd(r);let i=ic.container.resolve(io.DailyReviewService),s;if(e.date&&(s=new Date(e.date),isNaN(s.getTime())))throw new Ft(`Invalid date format: ${e.date}`,"exocortex daily summary --date YYYY-MM-DD",{date:e.date});let a=await i.getDailyReviewSummary(s);if(t==="json"){let c=we.success(a);console.log(JSON.stringify(c,null,2))}else console.log(bY(a))}catch(r){J.handle(r)}}),n.command("log").description("Quick capture an activity").argument("<label>","Activity label/description").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").option("--start","Start the task immediately (default: true)").option("--no-start","Don't start the task immediately").action(async(e,t)=>{let r=t.format||"text";J.setFormat(r);try{let i=(0,nu.resolve)(t.vault);if(!(0,iu.existsSync)(i))throw new Ee(i);sd(i);let s=ic.container.resolve(io.DailyReviewService),a=t.start!==!1,c=await s.quickCapture(e,a);if(r==="json"){let l=we.success(c);console.log(JSON.stringify(l,null,2))}else{let l=c.started?"\u{1F504}":"\u2B1C";console.log(`${l} Created: ${c.label}`),console.log(` Path: ${c.path}`)}}catch(i){J.handle(i)}}),n.command("start").description("Start a practice (create task instance from prototype)").argument("<prototype-uid>","Practice/prototype UID to start").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async(e,t)=>{let r=t.format||"text";J.setFormat(r);try{let i=(0,nu.resolve)(t.vault);if(!(0,iu.existsSync)(i))throw new Ee(i);sd(i);let a=await ic.container.resolve(io.DailyReviewService).createFromPractice({prototypeUid:e,startImmediately:!0});if(r==="json"){let c=we.success(a);console.log(JSON.stringify(c,null,2))}else console.log(`\u{1F504} Started: ${a.label}`),console.log(` Path: ${a.path}`)}catch(i){J.handle(i)}}),n.command("done").description("Mark a practice as done").argument("<prototype-uid>","Practice/prototype UID to mark as done").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async(e,t)=>{let r=t.format||"text";J.setFormat(r);try{let i=(0,nu.resolve)(t.vault);if(!(0,iu.existsSync)(i))throw new Ee(i);if(sd(i),await ic.container.resolve(io.DailyReviewService).markPracticeDone(e),r==="json"){let a=we.success({prototypeUid:e,status:"done"});console.log(JSON.stringify(a,null,2))}else console.log(`\u2705 Marked as done: ${e}`)}catch(i){J.handle(i)}}),n}o(YF,"dailyReviewCommand");var lD=require("fs"),uD=require("path");var fi=require("fs"),Sn=require("path"),XF=require("child_process"),Qe=Z(nr());var vY=new Set(["aliases","archived","tags","cssclasses","publish","permalink","description","image","cover","banner","title","share","share_link","share_updated","metadata","uri"]),wE=new Map([["exo__","https://exocortex.my/ontology/exo#"],["ems__","https://exocortex.my/ontology/ems#"],["exocmd__","https://exocortex.my/ontology/exocmd#"],["ims__","https://exocortex.my/ontology/ims#"],["ztlk__","https://exocortex.my/ontology/ztlk#"],["ptms__","https://exocortex.my/ontology/ptms#"],["lit__","https://exocortex.my/ontology/lit#"],["inbox__","https://exocortex.my/ontology/inbox#"],["place__","https://exocortex.my/ontology/place#"],["exoob__","https://exocortex.my/ontology/exoob#"],["pn__","https://exocortex.my/ontology/pn#"],["period__","https://exocortex.my/ontology/period#"],["rdf__","http://www.w3.org/1999/02/22-rdf-syntax-ns#"],["rdfs__","http://www.w3.org/2000/01/rdf-schema#"],["owl__","http://www.w3.org/2002/07/owl#"]]);function wY(n,e){if(!n)return!1;let t=n.exo__Instance_class;if(t==null)return!1;let r=Array.isArray(t)?t:[t];for(let i of r){if(typeof i!="string")continue;let s=i.match(/\[\[([^|\]]+)/),a=s?s[1]:i;if(a===e||a.includes(e))return!0}return!1}o(wY,"frontmatterMatchesClass");function EY(n,e){return e.concat([n])}o(EY,"collectAlso");async function JF(n,e,t,r){t&&e.length>0&&(r&&console.log("\u26A0\uFE0F --use-cache is disabled when --also is specified (per-vault cache cannot represent multi-vault state)."),t=!1);let i,s=!1;if(t){let c=await new li(n).loadOrBuild();i=c.triples,s=c.cacheHit}else{let a=new Rt(n);i=await new Qe.NoteToRDFConverter(a).convertVault()}for(let a of e){let c=(0,Sn.resolve)(a);if(!(0,fi.existsSync)(c))throw new Ee(c);r&&console.log(`\u{1F4E6} Loading additional vault: ${c}...`);let l=new Rt(c),f=await new Qe.NoteToRDFConverter(l).convertVault();i=i.concat(f),r&&console.log(` \u2795 Added ${f.length} triples from ${c}`)}return{triples:i,cacheHit:s}}o(JF,"loadTriplesFromAllVaults");async function TY(n,e,t){let r=new Map,i=[],s=o(async a=>{let c=await Qe.ShapeLoader.loadFromVaultFS(a);for(let l of c.getAll()){let u=r.get(l.propertyIRI);if(u!==void 0){t&&console.log(`\u26A0\uFE0F Duplicate shape for ${l.propertyIRI} in ${a} (first-wins: kept from ${u})`);continue}r.set(l.propertyIRI,a),i.push(l)}},"ingest");await s(n);for(let a of e)await s((0,Sn.resolve)(a));return new Qe.ShaclShapeRegistry(i)}o(TY,"loadMergedShapeRegistry");function AY(n,e){let t="obsidian://vault/",r=n;if(n.startsWith(t))r=decodeURIComponent(n.substring(t.length));else return n;for(let i of e){let s=(0,Sn.join)(i,r);if((0,fi.existsSync)(s))return s}return(0,Sn.join)(e[0]??"",r)}o(AY,"qualifyFocusNodePath");function ZF(n){let e=n.match(/^---\r?\n([\s\S]*?)\r?\n---/);if(!e)return n.match(/^---\r?\n---/)?{}:null;let t=e[1].split(`
621
+ `)}o(bY,"formatSummary");function YF(){let n=new Te("daily").description("Daily review operations for mobile-friendly workflow");return n.command("practices").description("List today's practices (recurring tasks)").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async e=>{let t=e.format||"text";J.setFormat(t);try{let r=(0,nu.resolve)(e.vault);if(!(0,iu.existsSync)(r))throw new Ee(r);sd(r);let s=await ic.container.resolve(so.DailyReviewService).getPractices();if(t==="json"){let a=we.success({practices:s,count:s.length});console.log(JSON.stringify(a,null,2))}else console.log(SY(s))}catch(r){J.handle(r)}}),n.command("summary").description("Show today's daily review summary").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").option("--date <value>","Date in YYYY-MM-DD format (default: today)").action(async e=>{let t=e.format||"text";J.setFormat(t);try{let r=(0,nu.resolve)(e.vault);if(!(0,iu.existsSync)(r))throw new Ee(r);sd(r);let i=ic.container.resolve(so.DailyReviewService),s;if(e.date&&(s=new Date(e.date),isNaN(s.getTime())))throw new Ft(`Invalid date format: ${e.date}`,"exocortex daily summary --date YYYY-MM-DD",{date:e.date});let a=await i.getDailyReviewSummary(s);if(t==="json"){let c=we.success(a);console.log(JSON.stringify(c,null,2))}else console.log(bY(a))}catch(r){J.handle(r)}}),n.command("log").description("Quick capture an activity").argument("<label>","Activity label/description").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").option("--start","Start the task immediately (default: true)").option("--no-start","Don't start the task immediately").action(async(e,t)=>{let r=t.format||"text";J.setFormat(r);try{let i=(0,nu.resolve)(t.vault);if(!(0,iu.existsSync)(i))throw new Ee(i);sd(i);let s=ic.container.resolve(so.DailyReviewService),a=t.start!==!1,c=await s.quickCapture(e,a);if(r==="json"){let l=we.success(c);console.log(JSON.stringify(l,null,2))}else{let l=c.started?"\u{1F504}":"\u2B1C";console.log(`${l} Created: ${c.label}`),console.log(` Path: ${c.path}`)}}catch(i){J.handle(i)}}),n.command("start").description("Start a practice (create task instance from prototype)").argument("<prototype-uid>","Practice/prototype UID to start").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async(e,t)=>{let r=t.format||"text";J.setFormat(r);try{let i=(0,nu.resolve)(t.vault);if(!(0,iu.existsSync)(i))throw new Ee(i);sd(i);let a=await ic.container.resolve(so.DailyReviewService).createFromPractice({prototypeUid:e,startImmediately:!0});if(r==="json"){let c=we.success(a);console.log(JSON.stringify(c,null,2))}else console.log(`\u{1F504} Started: ${a.label}`),console.log(` Path: ${a.path}`)}catch(i){J.handle(i)}}),n.command("done").description("Mark a practice as done").argument("<prototype-uid>","Practice/prototype UID to mark as done").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--format <type>","Output format: text|json","text").action(async(e,t)=>{let r=t.format||"text";J.setFormat(r);try{let i=(0,nu.resolve)(t.vault);if(!(0,iu.existsSync)(i))throw new Ee(i);if(sd(i),await ic.container.resolve(so.DailyReviewService).markPracticeDone(e),r==="json"){let a=we.success({prototypeUid:e,status:"done"});console.log(JSON.stringify(a,null,2))}else console.log(`\u2705 Marked as done: ${e}`)}catch(i){J.handle(i)}}),n}o(YF,"dailyReviewCommand");var lD=require("fs"),uD=require("path");var fi=require("fs"),Sn=require("path"),XF=require("child_process"),Qe=Z(nr());var vY=new Set(["aliases","archived","tags","cssclasses","publish","permalink","description","image","cover","banner","title","share","share_link","share_updated","metadata","uri"]),wE=new Map([["exo__","https://exocortex.my/ontology/exo#"],["ems__","https://exocortex.my/ontology/ems#"],["exocmd__","https://exocortex.my/ontology/exocmd#"],["ims__","https://exocortex.my/ontology/ims#"],["ztlk__","https://exocortex.my/ontology/ztlk#"],["ptms__","https://exocortex.my/ontology/ptms#"],["lit__","https://exocortex.my/ontology/lit#"],["inbox__","https://exocortex.my/ontology/inbox#"],["place__","https://exocortex.my/ontology/place#"],["exoob__","https://exocortex.my/ontology/exoob#"],["pn__","https://exocortex.my/ontology/pn#"],["period__","https://exocortex.my/ontology/period#"],["rdf__","http://www.w3.org/1999/02/22-rdf-syntax-ns#"],["rdfs__","http://www.w3.org/2000/01/rdf-schema#"],["owl__","http://www.w3.org/2002/07/owl#"]]);function wY(n,e){if(!n)return!1;let t=n.exo__Instance_class;if(t==null)return!1;let r=Array.isArray(t)?t:[t];for(let i of r){if(typeof i!="string")continue;let s=i.match(/\[\[([^|\]]+)/),a=s?s[1]:i;if(a===e||a.includes(e))return!0}return!1}o(wY,"frontmatterMatchesClass");function EY(n,e){return e.concat([n])}o(EY,"collectAlso");async function JF(n,e,t,r){t&&e.length>0&&(r&&console.log("\u26A0\uFE0F --use-cache is disabled when --also is specified (per-vault cache cannot represent multi-vault state)."),t=!1);let i,s=!1;if(t){let c=await new li(n).loadOrBuild();i=c.triples,s=c.cacheHit}else{let a=new Rt(n);i=await new Qe.NoteToRDFConverter(a).convertVault()}for(let a of e){let c=(0,Sn.resolve)(a);if(!(0,fi.existsSync)(c))throw new Ee(c);r&&console.log(`\u{1F4E6} Loading additional vault: ${c}...`);let l=new Rt(c),f=await new Qe.NoteToRDFConverter(l).convertVault();i=i.concat(f),r&&console.log(` \u2795 Added ${f.length} triples from ${c}`)}return{triples:i,cacheHit:s}}o(JF,"loadTriplesFromAllVaults");async function TY(n,e,t){let r=new Map,i=[],s=o(async a=>{let c=await Qe.ShapeLoader.loadFromVaultFS(a);for(let l of c.getAll()){let u=r.get(l.propertyIRI);if(u!==void 0){t&&console.log(`\u26A0\uFE0F Duplicate shape for ${l.propertyIRI} in ${a} (first-wins: kept from ${u})`);continue}r.set(l.propertyIRI,a),i.push(l)}},"ingest");await s(n);for(let a of e)await s((0,Sn.resolve)(a));return new Qe.ShaclShapeRegistry(i)}o(TY,"loadMergedShapeRegistry");function AY(n,e){let t="obsidian://vault/",r=n;if(n.startsWith(t))r=decodeURIComponent(n.substring(t.length));else return n;for(let i of e){let s=(0,Sn.join)(i,r);if((0,fi.existsSync)(s))return s}return(0,Sn.join)(e[0]??"",r)}o(AY,"qualifyFocusNodePath");function ZF(n){let e=n.match(/^---\r?\n([\s\S]*?)\r?\n---/);if(!e)return n.match(/^---\r?\n---/)?{}:null;let t=e[1].split(`
622
622
  `),r={};for(let i of t){let s=i.match(/^(\w[\w]*):\s*(.*)$/);s&&(r[s[1]]=!0)}return r}o(ZF,"extractFrontmatter");function eD(n){for(let e of wE.keys())if(n.startsWith(e))return!0;return!1}o(eD,"hasKnownPrefix");function tD(n){for(let[e,t]of wE)if(n.startsWith(e))return t+n.substring(e.length);return null}o(tD,"keyToURI");function xY(n){let e=[],t=[];for(let r of n)vY.has(r)||(eD(r)?e.push(r):t.push(r));return{toValidate:e,unknownPrefix:t}}o(xY,"classifyKeys");function IY(n){try{return(0,XF.execSync)("git diff --cached --name-only",{cwd:n,encoding:"utf-8"}).split(`
623
- `).filter(t=>t.endsWith(".md")&&t.trim().length>0)}catch{return[]}}o(IY,"getStagedMdFiles");function CY(n){let e=[];function t(r){let i=(0,fi.readdirSync)(r);for(let s of i){if(s.startsWith(".")||s==="node_modules")continue;let a=(0,Sn.join)(r,s);(0,fi.statSync)(a).isDirectory()?t(a):s.endsWith(".md")&&e.push((0,Sn.relative)(n,a))}}return o(t,"walk"),t(n),e}o(CY,"collectMdFiles");function RY(n){let e=n.lastIndexOf("/");if(e===-1)return null;let t=decodeURIComponent(n.substring(e+1));return t.endsWith(".md")&&(t=t.slice(0,-3)),eD(t)?t:null}o(RY,"extractPropertyNameFromURI");async function OY(n){let e=new Qe.InMemoryTripleStore;await e.addAll(n);let t=new Qe.ExoQLParser,r=ro(`SELECT ?s ?label WHERE {
623
+ `).filter(t=>t.endsWith(".md")&&t.trim().length>0)}catch{return[]}}o(IY,"getStagedMdFiles");function CY(n){let e=[];function t(r){let i=(0,fi.readdirSync)(r);for(let s of i){if(s.startsWith(".")||s==="node_modules")continue;let a=(0,Sn.join)(r,s);(0,fi.statSync)(a).isDirectory()?t(a):s.endsWith(".md")&&e.push((0,Sn.relative)(n,a))}}return o(t,"walk"),t(n),e}o(CY,"collectMdFiles");function RY(n){let e=n.lastIndexOf("/");if(e===-1)return null;let t=decodeURIComponent(n.substring(e+1));return t.endsWith(".md")&&(t=t.slice(0,-3)),eD(t)?t:null}o(RY,"extractPropertyNameFromURI");async function OY(n){let e=new Qe.InMemoryTripleStore;await e.addAll(n);let t=new Qe.ExoQLParser,r=no(`SELECT ?s ?label WHERE {
624
624
  {
625
625
  ?s a ?type .
626
626
  FILTER(CONTAINS(STR(?type), "Property"))
@@ -678,7 +678,7 @@ Continue? (y/n): `,s=>{r.close(),i(s.toLowerCase()==="y"||s.toLowerCase()==="yes
678
678
  ORDER BY DESC(?usageCount)
679
679
  `;a=s.parse(p),c=new Ir.ExoQLAlgebraTranslator,l=c.translate(a),u=new Ir.AlgebraOptimizer,l=u.optimize(l);let b=(await f.executeAll(l)).map(v=>{let T=v.get("property"),C=v.get("usageCount");return{name:T?mD(T.toString()):"unknown",usageCount:C?parseInt(C.toString(),10):0}}),w={name:e,instanceCount:h,properties:b};if(r==="json"||t.format==="json"){let v=we.success(w);console.log(JSON.stringify(v,null,2))}else{if(console.log(`\u{1F4CB} Class: ${e}
680
680
  `),console.log(` Instances: ${h}`),console.log(` Properties: ${b.length}
681
- `),b.length===0){console.log(" No properties found.");return}let v=Math.max(...b.map(T=>T.name.length),10);console.log(" \u250C"+"\u2500".repeat(v+2)+"\u252C"+"\u2500".repeat(10)+"\u2510"),console.log(" \u2502 "+"Property".padEnd(v)+" \u2502 "+"Usage".padEnd(8)+" \u2502"),console.log(" \u251C"+"\u2500".repeat(v+2)+"\u253C"+"\u2500".repeat(10)+"\u2524");for(let T of b)console.log(" \u2502 "+T.name.padEnd(v)+" \u2502 "+T.usageCount.toString().padStart(8)+" \u2502");console.log(" \u2514"+"\u2500".repeat(v+2)+"\u2534"+"\u2500".repeat(10)+"\u2518")}}o(HY,"showClassDetails");function mD(n){let e=n.replace(/^<|>$/g,""),t=e.lastIndexOf("#");if(t!==-1)return e.substring(t+1);let r=e.lastIndexOf("/");return r!==-1?e.substring(r+1):e}o(mD,"extractLocalName");var SD=require("path"),CE=require("fs"),bD=require("fs"),vD=Z(nr());var mr=Z(Pl()),so=Z(require("path"));var sc=Z(nr());var gr=class{constructor(e){this.rootPath=e}static{o(this,"NodeFsAdapter")}async readFile(e){let t=this.resolvePath(e);if(!await mr.default.pathExists(t))throw new sc.FileNotFoundError(e);return mr.default.readFile(t,"utf-8")}async fileExists(e){let t=this.resolvePath(e);return mr.default.pathExists(t)}async getFileMetadata(e){let t=await this.readFile(e);return this.extractFrontmatter(t)}async createFile(e,t){let r=this.resolvePath(e);if(await mr.default.pathExists(r))throw new sc.FileAlreadyExistsError(e);return await mr.default.ensureDir(so.default.dirname(r)),await mr.default.writeFile(r,t,"utf-8"),e}async updateFile(e,t){let r=this.resolvePath(e);if(!await mr.default.pathExists(r))throw new sc.FileNotFoundError(e);await mr.default.writeFile(r,t,"utf-8")}async writeFile(e,t){let r=this.resolvePath(e);await mr.default.ensureDir(so.default.dirname(r)),await mr.default.writeFile(r,t,"utf-8")}async deleteFile(e){let t=this.resolvePath(e);if(!await mr.default.pathExists(t))throw new sc.FileNotFoundError(e);await mr.default.remove(t)}async renameFile(e,t){let r=this.resolvePath(e),i=this.resolvePath(t);if(!await mr.default.pathExists(r))throw new sc.FileNotFoundError(e);await mr.default.ensureDir(so.default.dirname(i)),await mr.default.move(r,i)}async createDirectory(e){let t=this.resolvePath(e);await mr.default.ensureDir(t)}async directoryExists(e){let t=this.resolvePath(e);return await mr.default.pathExists(t)?(await mr.default.stat(t)).isDirectory():!1}async getMarkdownFiles(e){let t=e?this.resolvePath(e):this.rootPath,r=so.default.join(t,"**/*.md");return(await zl(r,{nodir:!0})).map(a=>so.default.relative(this.rootPath,a))}async findFilesByMetadata(e){let t=await this.getMarkdownFiles(),r=[];for(let i of t)try{let s=await this.getFileMetadata(i);this.matchesQuery(s,e)&&r.push(i)}catch{continue}return r}async findFileByUID(e){let t=await this.findFilesByMetadata({exo__Asset_uid:e});return t.length>0?t[0]:null}resolvePath(e){return so.default.isAbsolute(e)?e:so.default.join(this.rootPath,e)}extractFrontmatter(e){let t=/^---\n([\s\S]*?)\n---/,r=e.match(t);if(!r)return{};try{let i=sr.load(r[1]);return typeof i=="object"&&i!==null?i:{}}catch{return{}}}matchesQuery(e,t){for(let[r,i]of Object.entries(t)){let s=e[r];if(Array.isArray(s)){if(!s.some(a=>this.normalizeValue(a)===this.normalizeValue(i)))return!1}else if(this.normalizeValue(s)!==this.normalizeValue(i))return!1}return!0}normalizeValue(e){return e==null?"":String(e).replace(/["'[\]]/g,"").trim()}};var EE=class extends Error{static{o(this,"ClassNotFoundError")}constructor(e,t){let r=`Class '${e}' not found in vault`;t&&t.length>0&&(r+=`
681
+ `),b.length===0){console.log(" No properties found.");return}let v=Math.max(...b.map(T=>T.name.length),10);console.log(" \u250C"+"\u2500".repeat(v+2)+"\u252C"+"\u2500".repeat(10)+"\u2510"),console.log(" \u2502 "+"Property".padEnd(v)+" \u2502 "+"Usage".padEnd(8)+" \u2502"),console.log(" \u251C"+"\u2500".repeat(v+2)+"\u253C"+"\u2500".repeat(10)+"\u2524");for(let T of b)console.log(" \u2502 "+T.name.padEnd(v)+" \u2502 "+T.usageCount.toString().padStart(8)+" \u2502");console.log(" \u2514"+"\u2500".repeat(v+2)+"\u2534"+"\u2500".repeat(10)+"\u2518")}}o(HY,"showClassDetails");function mD(n){let e=n.replace(/^<|>$/g,""),t=e.lastIndexOf("#");if(t!==-1)return e.substring(t+1);let r=e.lastIndexOf("/");return r!==-1?e.substring(r+1):e}o(mD,"extractLocalName");var SD=require("path"),CE=require("fs"),bD=require("fs"),vD=Z(nr());var mr=Z(Pl()),ao=Z(require("path"));var sc=Z(nr());var gr=class{constructor(e){this.rootPath=e}static{o(this,"NodeFsAdapter")}async readFile(e){let t=this.resolvePath(e);if(!await mr.default.pathExists(t))throw new sc.FileNotFoundError(e);return mr.default.readFile(t,"utf-8")}async fileExists(e){let t=this.resolvePath(e);return mr.default.pathExists(t)}async getFileMetadata(e){let t=await this.readFile(e);return this.extractFrontmatter(t)}async createFile(e,t){let r=this.resolvePath(e);if(await mr.default.pathExists(r))throw new sc.FileAlreadyExistsError(e);return await mr.default.ensureDir(ao.default.dirname(r)),await mr.default.writeFile(r,t,"utf-8"),e}async updateFile(e,t){let r=this.resolvePath(e);if(!await mr.default.pathExists(r))throw new sc.FileNotFoundError(e);await mr.default.writeFile(r,t,"utf-8")}async writeFile(e,t){let r=this.resolvePath(e);await mr.default.ensureDir(ao.default.dirname(r)),await mr.default.writeFile(r,t,"utf-8")}async deleteFile(e){let t=this.resolvePath(e);if(!await mr.default.pathExists(t))throw new sc.FileNotFoundError(e);await mr.default.remove(t)}async renameFile(e,t){let r=this.resolvePath(e),i=this.resolvePath(t);if(!await mr.default.pathExists(r))throw new sc.FileNotFoundError(e);await mr.default.ensureDir(ao.default.dirname(i)),await mr.default.move(r,i)}async createDirectory(e){let t=this.resolvePath(e);await mr.default.ensureDir(t)}async directoryExists(e){let t=this.resolvePath(e);return await mr.default.pathExists(t)?(await mr.default.stat(t)).isDirectory():!1}async getMarkdownFiles(e){let t=e?this.resolvePath(e):this.rootPath,r=ao.default.join(t,"**/*.md");return(await zl(r,{nodir:!0})).map(a=>ao.default.relative(this.rootPath,a))}async findFilesByMetadata(e){let t=await this.getMarkdownFiles(),r=[];for(let i of t)try{let s=await this.getFileMetadata(i);this.matchesQuery(s,e)&&r.push(i)}catch{continue}return r}async findFileByUID(e){let t=await this.findFilesByMetadata({exo__Asset_uid:e});return t.length>0?t[0]:null}resolvePath(e){return ao.default.isAbsolute(e)?e:ao.default.join(this.rootPath,e)}extractFrontmatter(e){let t=/^---\n([\s\S]*?)\n---/,r=e.match(t);if(!r)return{};try{let i=sr.load(r[1]);return typeof i=="object"&&i!==null?i:{}}catch{return{}}}matchesQuery(e,t){for(let[r,i]of Object.entries(t)){let s=e[r];if(Array.isArray(s)){if(!s.some(a=>this.normalizeValue(a)===this.normalizeValue(i)))return!1}else if(this.normalizeValue(s)!==this.normalizeValue(i))return!1}return!0}normalizeValue(e){return e==null?"":String(e).replace(/["'[\]]/g,"").trim()}};var EE=class extends Error{static{o(this,"ClassNotFoundError")}constructor(e,t){let r=`Class '${e}' not found in vault`;t&&t.length>0&&(r+=`
682
682
  Available classes: ${t.join(", ")}`),super(r),this.name="ClassNotFoundError"}},su=class{constructor(e){this.fsAdapter=e;this.cache=new Map}static{o(this,"ClassResolverService")}async resolve(e,t){if(this.isUUID(t))return t;let r=await this.getOrBuildIndex(e),i=r.get(t);if(!i){let s=Array.from(r.keys()).filter(a=>!this.isUUID(a));throw new EE(t,s)}return i}async listClasses(e){let t=await this.getOrBuildIndex(e);return Array.from(t.keys())}async getOrBuildIndex(e){if(this.cache.has(e))return this.cache.get(e);let t=await this.buildIndex(e);return this.cache.set(e,t),t}async buildIndex(e){let t=new Map,r=await this.fsAdapter.getMarkdownFiles();for(let i of r)try{let s=await this.fsAdapter.getFileMetadata(i);if(!this.isClassDefinition(s))continue;let a=this.getBasename(i),c=s.exo__Asset_uid;if(!c&&this.isUUID(a)&&(c=a),!c)continue;let l=String(c);a&&t.set(a,l);let u=s.exo__Asset_label;u&&typeof u=="string"&&u!==a&&t.set(u,l)}catch{continue}return t}isClassDefinition(e){let t=e.exo__Instance_class;return t?(Array.isArray(t)?t:[t]).some(i=>{let s=String(i);return s.includes("ims__Class")||s.includes("exo__Class")}):!1}getBasename(e){let t=e.split("/");return t[t.length-1].replace(/\.md$/,"")}isUUID(e){return/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(e)}};var TE=class extends Error{static{o(this,"WikilinkNotFoundError")}constructor(e,t){let r=t?`|${t}`:"";super(`Wikilink [[${e}${r}]] \u2014 file not found in vault`),this.name="WikilinkNotFoundError"}},Hg=class{constructor(e){this.fsAdapter=e}static{o(this,"WikilinkValidator")}static{this.WIKILINK_PATTERN=/\[\[([^\]|]+)(?:\|[^\]]*)?]]/g}async validatePropertyValues(e){for(let[,t]of Object.entries(e))await this.validateValue(t)}async validateValue(e){let t=this.extractWikilinks(e);for(let r of t)await this.validateWikilink(r.uuid,r.label)}extractWikilinks(e){let t=[],r=/\[\[([^\]|]+)(?:\|([^\]]*))?\]\]/g,i;for(;(i=r.exec(e))!==null;)t.push({uuid:i[1].trim(),label:i[2]?.trim()});return t}async validateWikilink(e,t){if(!this.looksLikeUUID(e))return;if(!await this.fsAdapter.fileExists(`${e}.md`)&&!await this.fsAdapter.findFileByUID(e))throw new TE(e,t)}looksLikeUUID(e){return/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(e)}};var $r=[];for(let n=0;n<256;++n)$r.push((n+256).toString(16).slice(1));function gD(n,e=0){return($r[n[e+0]]+$r[n[e+1]]+$r[n[e+2]]+$r[n[e+3]]+"-"+$r[n[e+4]]+$r[n[e+5]]+"-"+$r[n[e+6]]+$r[n[e+7]]+"-"+$r[n[e+8]]+$r[n[e+9]]+"-"+$r[n[e+10]]+$r[n[e+11]]+$r[n[e+12]]+$r[n[e+13]]+$r[n[e+14]]+$r[n[e+15]]).toLowerCase()}o(gD,"unsafeStringify");var yD=require("node:crypto");var Kg=new Uint8Array(256),Qg=Kg.length;function AE(){return Qg>Kg.length-16&&((0,yD.randomFillSync)(Kg),Qg=0),Kg.slice(Qg,Qg+=16)}o(AE,"rng");var _D=require("node:crypto"),xE={randomUUID:_D.randomUUID};function QY(n,e,t){n=n||{};let r=n.random??n.rng?.()??AE();if(r.length<16)throw new Error("Random bytes length must be >= 16");if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,e){if(t=t||0,t<0||t+16>e.length)throw new RangeError(`UUID byte range ${t}:${t+15} is out of buffer bounds`);for(let i=0;i<16;++i)e[t+i]=r[i];return e}return gD(r)}o(QY,"_v4");function KY(n,e,t){return xE.randomUUID&&!e&&!n?xE.randomUUID():QY(n,e,t)}o(KY,"v4");var IE=KY;var Xg=Z(nr());var YY="de20a3f1-7483-4714-ab28-b45f5cf02c76",XY="Asia/Almaty",Yg=class{constructor(e,t,r,i){this.fsAdapter=e;this.classResolver=t;this.wikilinkValidator=r;this.shapeRegistry=i}static{o(this,"AssetCreationService")}async create(e){if(!e.label||e.label.trim().length===0)throw new Error("Label cannot be empty");let t=e.label.trim(),r=await this.classResolver.resolve(e.vault,e.classShortName);e.properties&&!e.skipWikilinkValidation&&await this.wikilinkValidator.validatePropertyValues(e.properties);let i=IE(),s=this.generateTimestamp(e.timezone),a=this.buildFrontmatter({assetUuid:i,classShortName:e.classShortName,classUuid:r,label:t,aliases:e.aliases,properties:e.properties,createdBy:e.createdBy||YY,timestamp:s}),c=Xg.MetadataHelpers.buildFileContent(a,e.body),l=`01 Inbox/${i}.md`;return e.dryRun||await this.fsAdapter.createFile(l,c),{uuid:i,path:l,label:t,frontmatter:a}}buildFrontmatter(e){let t={};t.exo__Asset_uid=e.assetUuid,t.exo__Asset_label=e.label,t.exo__Asset_createdAt=e.timestamp,t.exo__Asset_createdBy=`"[[${e.createdBy}]]"`,t.exo__Instance_class=[`"[[${e.classUuid}|${e.classShortName}]]"`];let r=[e.label];if(e.aliases&&e.aliases.length>0)for(let i of e.aliases)r.includes(i)||r.push(i);if(t.aliases=r,e.properties)for(let[i,s]of Object.entries(e.properties))i==="exo__Asset_uid"||i==="exo__Asset_label"||i==="exo__Asset_createdAt"||i==="exo__Asset_createdBy"||i==="exo__Instance_class"||i==="aliases"||(t[i]=this.formatPropertyValue(i,s));return t}formatPropertyValue(e,t){if(!t.includes("[["))return t;let r=t.startsWith('"')&&t.endsWith('"')?t:`"${t}"`;return this.isSingleValued(e)?r:[r]}isSingleValued(e){if(!this.shapeRegistry)return!1;let t=Xg.Namespace.fromPropertyKey(e);if(!t)return!1;let r=t.namespace.term(t.localName).value;return this.shapeRegistry.get(r)?.cardinality==="Single"}generateTimestamp(e){let t=e||XY,r=new Date,s=new Intl.DateTimeFormat("en-CA",{timeZone:t,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1}).formatToParts(r),a=o(c=>s.find(l=>l.type===c)?.value||"00","get");return`${a("year")}-${a("month")}-${a("day")}T${a("hour")}:${a("minute")}:${a("second")}`}};function JY(n){if(!n||n.length===0)return{};let e={};for(let t of n){let r=t.indexOf("=");if(r===-1)throw new Error(`Invalid property format: "${t}". Expected "key=value" format.`);let i=t.substring(0,r).trim(),s=t.substring(r+1).trim();if(!i)throw new Error(`Invalid property format: "${t}". Key cannot be empty.`);e[i]=s}return e}o(JY,"parseProperties");async function ZY(n){if(n.bodyFile){if(!(0,CE.existsSync)(n.bodyFile))throw new Error(`Body file not found: ${n.bodyFile}`);return(0,bD.readFileSync)(n.bodyFile,"utf-8")}if(n.body==="-")return eX(3e4);if(n.body)return n.body}o(ZY,"resolveBody");function eX(n){return new Promise((e,t)=>{let r=[],i=setTimeout(()=>{process.stdin.removeAllListeners(),process.stdin.destroy(),t(new Error(`Stdin read timed out after ${n}ms. Ensure you pipe content to stdin or close the pipe.`))},n);process.stdin.on("data",s=>{r.push(s)}),process.stdin.on("end",()=>{clearTimeout(i),e(Buffer.concat(r).toString("utf-8"))}),process.stdin.on("error",s=>{clearTimeout(i),t(s)}),process.stdin.isTTY&&(clearTimeout(i),e("")),process.stdin.resume()})}o(eX,"readStdin");function wD(){return new Te("create").description("Create a new vault asset with auto-generated UUID, timestamp, and frontmatter").requiredOption("--class <name>","Class short name (e.g. ztlk__PermanentNote) or UUID").requiredOption("--label <text>","Human-readable label for the asset").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--aliases <names...>","Additional aliases for the asset").option("--property <key=value...>","Property key-value pairs (repeatable)",tX,[]).option("--body <text>","Markdown body content (use '-' to read from stdin)").option("--body-file <path>","Read body content from file").option("--dry-run","Preview frontmatter without writing file").option("--created-by <uuid>","Creator UUID (defaults to ExoAssistant)").option("--timezone <tz>","Timezone for timestamps (defaults to Asia/Almaty)").option("--skip-wikilink-validation","Skip wikilink existence validation").action(async n=>{try{let e=(0,SD.resolve)(n.vault);if(!(0,CE.existsSync)(e))throw new Ee(e);let t=JY(n.property),r=await ZY(n);r&&(r=r.replace(/\\n/g,`
683
683
  `));let i=new gr(e),s=new su(i),a=new Hg(i),c;try{c=await vD.ShapeLoader.loadFromVaultFS(e)}catch{c=void 0}let u=await new Yg(i,s,a,c).create({classShortName:n.class,label:n.label,aliases:n.aliases,properties:Object.keys(t).length>0?t:void 0,body:r,vault:e,dryRun:n.dryRun,createdBy:n.createdBy,timezone:n.timezone,skipWikilinkValidation:n.skipWikilinkValidation});if(n.dryRun){let d=rX(u.frontmatter,r);process.stderr.write(d+`
684
684
  `)}let f={uuid:u.uuid,path:u.path,label:u.label};process.stdout.write(JSON.stringify(f)+`
@@ -767,10 +767,10 @@ exo__BacklinksTableBlock_columns:${f==="[]"?" []":f}
767
767
  `),console.log(`${"Rank".padEnd(6)}${"Term".padEnd(30)}${"Freq".padEnd(8)}Sample UIDs`),console.log("-".repeat(90)),c.forEach((u,f)=>{let d=`#${f+1}`.padEnd(6),h=u.term.padEnd(30),p=String(u.frequency).padEnd(8),y=u.sample_uids.join(", ");console.log(`${d}${h}${p}${y}`)})})}o(zD,"backfillOrphanTermsCommand");function HD(){let n=new Te("backfill").description("Concept backfill tools for aiKnow assets");return n.addCommand(GD()),n.addCommand(zD()),n}o(HD,"backfillCommand");var uy=require("path"),tN=require("fs"),rN=require("os");var cy=require("child_process"),ly=require("fs"),XD=require("path");var Ji=require("fs"),oy=Z(require("path")),KD=require("crypto");var CX=/^---\s*\r?\n([\s\S]*?)\r?\n---\s*(?:\r?\n([\s\S]*))?$/;function QD(n){let e=n.match(CX);if(!e)return null;let[,t,r=""]=e,i=sr.load(t);if(i==null)return{frontmatter:{},body:r};if(typeof i!="object"||Array.isArray(i))throw new Error("frontmatter is not a YAML mapping");return{frontmatter:i,body:r}}o(QD,"parseFile");function RX(n,e){let t=sr.dump(n,{lineWidth:-1,quotingType:'"',forceQuotes:!1,noRefs:!0}),r=e.length>0?e:"";return`---
768
768
  ${t}---
769
769
  ${r}`}o(RX,"serializeFile");function YD(n,e,t={}){let r=oy.default.dirname(n),i=oy.default.basename(n),s=oy.default.join(r,`.${i}.tmp.${process.pid}.${(0,KD.randomBytes)(6).toString("hex")}`);try{let a=(0,Ji.readFileSync)(n,"utf8"),c;try{c=QD(a)}catch(f){return{success:!1,verified:!1,reason:"parse-error",error:f.message}}if(!c)return{success:!1,verified:!1,reason:"no-frontmatter"};let l={...c.frontmatter,...e},u=RX(l,c.body);if((0,Ji.writeFileSync)(s,u,"utf8"),(0,Ji.renameSync)(s,n),t.verifyKey!==void 0){let f=(0,Ji.readFileSync)(n,"utf8"),d;try{d=QD(f)}catch(p){return{success:!1,verified:!1,reason:"parse-error",error:p.message}}if(!d)return{success:!1,verified:!1,reason:"no-frontmatter"};let h=d.frontmatter[t.verifyKey];return h!==t.verifyValue?{success:!1,verified:!1,reason:"verify-mismatch",error:`expected ${t.verifyKey}=${String(t.verifyValue)}, got ${String(h)}`}:{success:!0,verified:!0}}return{success:!0,verified:!0}}catch(a){if((0,Ji.existsSync)(s))try{(0,Ji.unlinkSync)(s)}catch{}return{success:!1,verified:!1,reason:"fs-error",error:a.message}}}o(YD,"atomicUpdateFrontmatter");var OX=/^claude-child-([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})$/,PX=/^claude-child-([0-9a-f]{8})-(\d+)$/,FX="EffortStatusDoing";function JD(n){return e=>new Promise((t,r)=>{n(e,(i,s,a)=>{i?r(Object.assign(i,{stdout:s,stderr:a})):t(s)})})}o(JD,"makeExecPromise");async function DX(n=cy.exec){let e=JD(n),t;try{t=await e("tmux list-sessions -F '#{session_name}' 2>/dev/null")}catch{return[]}let r=[];for(let i of t.split(`
770
- `).map(s=>s.trim()).filter(Boolean)){let s=OX.exec(i);if(s){r.push({sessionName:i,uuid:s[1],type:"full"});continue}let a=PX.exec(i);a&&r.push({sessionName:i,uuid:a[1],type:"short"})}return r}o(DX,"listClaudeChildSessions");function NX(n,e,t){let r=null,i=e.toLowerCase();function s(a){if(r)return;let c;try{c=(0,ly.readdirSync)(a,{withFileTypes:!0})}catch{return}for(let l of c){if(r)return;if(l.name.startsWith(".")||l.name==="node_modules")continue;let u=(0,XD.join)(a,l.name);if(l.isDirectory())s(u);else if(l.name.endsWith(".md")){let f=l.name.slice(0,-3).toLowerCase();(t==="full"&&f===i||t==="short"&&f.startsWith(i))&&(r=u)}}}return o(s,"walk"),s(n),r}o(NX,"findVaultFile");function LX(n,e){try{let i=(e??(s=>(0,ly.readFileSync)(s,"utf8")))(n).match(/ems__Effort_status\s*:.*\[\[([^\]]+)\]\]/);return i?i[1].includes(FX):!1}catch{return!1}}o(LX,"isTaskDoing");async function ZD(n,e=cy.exec,t){let r=await DX(e),i=[];for(let s of r){let a=NX(n,s.uuid,s.type);if(!a){i.push({sessionName:s.sessionName,taskUuid:s.uuid,taskFilePath:null,reason:"vault task not found"});continue}LX(a,t)||i.push({sessionName:s.sessionName,taskUuid:s.uuid,taskFilePath:a,reason:"vault task status != Doing"})}return i}o(ZD,"detectOrphans");async function eN(n,e,t=cy.exec,r=YD){let i=JD(t);if(e)return{ok:!0};let s=new Date().toISOString();if(n.taskFilePath)try{r(n.taskFilePath,{ems__Effort_status:"[[ems__EffortStatusFailed]]",aiTask__Task_lastError:`orphan recovery: ${n.reason}`,exo__Asset_updatedAt:s})}catch(a){return{ok:!1,error:`vault update failed: ${a.message}`}}try{await i(`tmux kill-session -t ${JSON.stringify(n.sessionName)}`)}catch{}return{ok:!0}}o(eN,"recoverOrphan");function kX(){return process.env.EXOCORTEX_VAULT??(0,uy.join)((0,rN.homedir)(),"vault-2025")}o(kX,"defaultVault");function nN(){return new Te("recover").description("Detect and recover orphaned claude-child tmux sessions. A session is orphaned when the corresponding vault task is not in Doing status. Default mode: dry-run (no changes). Use --apply to perform recovery.").option("--vault <path>","Path to Obsidian vault",kX()).option("--dry-run","List orphans without applying changes (default)",!1).option("--apply","Apply orphan recovery: set Failed + kill tmux session",!1).action(async n=>{let e=(0,uy.resolve)(n.vault);if(!(0,tN.existsSync)(e)){console.error(`[recover] vault not found: ${e}`),process.exitCode=1;return}let t=!n.apply;console.log(`[recover] vault=${e} mode=${t?"dry-run":"apply"}`);let r=await ZD(e);if(r.length===0){console.log("[recover] No orphaned claude-child sessions found.");return}console.log(`[recover] Found ${r.length} orphan(s):`);for(let a of r){let c=a.taskFilePath??"(not found in vault)";console.log(` session=${a.sessionName} uuid=${a.taskUuid} reason=${a.reason}`),console.log(` file=${c}`)}if(t){console.log("[recover] Dry-run mode: no changes applied. Use --apply to recover.");return}let i=0,s=0;for(let a of r){let c=await eN(a,!1);c.ok?(i++,console.log(`[recover] RECOVERED: ${a.sessionName}`)):(s++,console.error(`[recover] ERROR recovering ${a.sessionName}: ${c.error}`))}console.log(`[recover] Done: recovered=${i} errors=${s}`),s>0&&(process.exitCode=1)})}o(nN,"recoverCommand");var jE=require("fs"),fy=require("path"),Gn=Z(nr());function MX(n,e){return e.concat([n])}o(MX,"collectAlso");var jX="https://exocortex.my/ontology/find#Alias_sparql",$X="https://exocortex.my/ontology/exo#Asset_label";function uu(n){if(n&&typeof n=="object"&&"value"in n){let e=n.value;return typeof e=="string"?e:String(e)}return String(n)}o(uu,"nodeValue");async function VX(n,e){let t=await n.match(void 0,void 0,void 0),r=[];for(let s of t)uu(s.predicate)!==$X||uu(s.object)!==e||r.push(uu(s.subject));if(r.length===0)return null;let i=[];for(let s of r)for(let a of t)uu(a.predicate)===jX&&uu(a.subject)===s&&i.push(uu(a.object));if(i.length===0)return null;if(i.length>1)throw new Ft(`Ambiguous find__Alias "${e}" \u2014 ${i.length} instances define a sparql fragment`,`Ensure exactly one find__Alias asset has exo:Asset_label "${e}"`);return i[0]}o(VX,"resolveAliasFragment");var UX=/^([a-z][a-zA-Z0-9]*)__([A-Za-z0-9_]+)$/,BX="https://exocortex.my/ontology/";function qX(n,e){let t=UX.exec(e);if(t){let i=`<${BX}${t[1]}#${t[2]}>`;return n.replace(/\?value\b/g,i)}let r=e.replace(/\\/g,"\\\\").replace(/"/g,'\\"');return n.replace(/\?value\b/g,`"${r}"`)}o(qX,"bindValueLiteral");function iN(){return new Te("find").description("Find vault assets via SPARQL \u2014 outputs file paths one per line (RFC 8e83442b T1.1)").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--also <path>","Additional vault to include (repeatable)",MX,[]).option("--sparql <query>","SPARQL SELECT query (must bind ?path)").option("--class <value>","Filter by class label via find__Alias 'class' (e.g. ems__Task)").action(async n=>{J.setFormat("text");try{if(n.sparql&&n.class)throw new Ft("--sparql and --class are mutually exclusive","Pass either a raw --sparql query or a find__Alias-backed flag like --class");if(!n.sparql&&!n.class)throw new Ft("one of --sparql <query> or --class <value> is required",'exocortex find --class ems__Task OR exocortex find --sparql "SELECT ?path WHERE { ... }"');let e=(0,fy.resolve)(n.vault);if(!(0,jE.existsSync)(e))throw new Ee(e);let t=new Rt(e),i=await new Gn.NoteToRDFConverter(t).convertVault(),s=n.also||[];for(let v of s){let T=(0,fy.resolve)(v);if(!(0,jE.existsSync)(T))throw new Ee(T);let C=new Rt(T),V=await new Gn.NoteToRDFConverter(C).convertVault();i=i.concat(V)}let a=new Gn.InMemoryTripleStore;await a.addAll(i);let c;if(n.class){let v=await VX(a,"class");if(v===null)throw new Ft('No find__Alias with exo:Asset_label "class" was found in the vault',"Seed a find__Alias asset (label=class) or fall back to exocortex find --sparql");c=`SELECT ?path WHERE { ${qX(v,n.class)} }`}else c=n.sparql;let l=eu(c);l=ro(l);let u=new Gn.ExoQLParser,f=no(to(e));for(let v of s){let T=no(to((0,fy.resolve)(v)));for(let[C,L]of T)f.has(C)||f.set(C,L)}f.size>0&&u.setVaultPrefixes(f);let d=u.parse(l),p=new Gn.ExoQLAlgebraTranslator().translate(d);p.type!=="construct"&&(p=new Gn.AlgebraOptimizer().optimize(p));let b=await new Gn.ExoQLQueryExecutor(a).executeAll(p),w="obsidian://vault/";for(let v of b){let C=v.toJSON().path;if(typeof C!="string"||!C.startsWith(w))continue;let L=C.slice(w.length),V;try{V=decodeURIComponent(L)}catch{V=L}process.stdout.write(V+`
770
+ `).map(s=>s.trim()).filter(Boolean)){let s=OX.exec(i);if(s){r.push({sessionName:i,uuid:s[1],type:"full"});continue}let a=PX.exec(i);a&&r.push({sessionName:i,uuid:a[1],type:"short"})}return r}o(DX,"listClaudeChildSessions");function NX(n,e,t){let r=null,i=e.toLowerCase();function s(a){if(r)return;let c;try{c=(0,ly.readdirSync)(a,{withFileTypes:!0})}catch{return}for(let l of c){if(r)return;if(l.name.startsWith(".")||l.name==="node_modules")continue;let u=(0,XD.join)(a,l.name);if(l.isDirectory())s(u);else if(l.name.endsWith(".md")){let f=l.name.slice(0,-3).toLowerCase();(t==="full"&&f===i||t==="short"&&f.startsWith(i))&&(r=u)}}}return o(s,"walk"),s(n),r}o(NX,"findVaultFile");function LX(n,e){try{let i=(e??(s=>(0,ly.readFileSync)(s,"utf8")))(n).match(/ems__Effort_status\s*:.*\[\[([^\]]+)\]\]/);return i?i[1].includes(FX):!1}catch{return!1}}o(LX,"isTaskDoing");async function ZD(n,e=cy.exec,t){let r=await DX(e),i=[];for(let s of r){let a=NX(n,s.uuid,s.type);if(!a){i.push({sessionName:s.sessionName,taskUuid:s.uuid,taskFilePath:null,reason:"vault task not found"});continue}LX(a,t)||i.push({sessionName:s.sessionName,taskUuid:s.uuid,taskFilePath:a,reason:"vault task status != Doing"})}return i}o(ZD,"detectOrphans");async function eN(n,e,t=cy.exec,r=YD){let i=JD(t);if(e)return{ok:!0};let s=new Date().toISOString();if(n.taskFilePath)try{r(n.taskFilePath,{ems__Effort_status:"[[ems__EffortStatusFailed]]",aiTask__Task_lastError:`orphan recovery: ${n.reason}`,exo__Asset_updatedAt:s})}catch(a){return{ok:!1,error:`vault update failed: ${a.message}`}}try{await i(`tmux kill-session -t ${JSON.stringify(n.sessionName)}`)}catch{}return{ok:!0}}o(eN,"recoverOrphan");function kX(){return process.env.EXOCORTEX_VAULT??(0,uy.join)((0,rN.homedir)(),"vault-2025")}o(kX,"defaultVault");function nN(){return new Te("recover").description("Detect and recover orphaned claude-child tmux sessions. A session is orphaned when the corresponding vault task is not in Doing status. Default mode: dry-run (no changes). Use --apply to perform recovery.").option("--vault <path>","Path to Obsidian vault",kX()).option("--dry-run","List orphans without applying changes (default)",!1).option("--apply","Apply orphan recovery: set Failed + kill tmux session",!1).action(async n=>{let e=(0,uy.resolve)(n.vault);if(!(0,tN.existsSync)(e)){console.error(`[recover] vault not found: ${e}`),process.exitCode=1;return}let t=!n.apply;console.log(`[recover] vault=${e} mode=${t?"dry-run":"apply"}`);let r=await ZD(e);if(r.length===0){console.log("[recover] No orphaned claude-child sessions found.");return}console.log(`[recover] Found ${r.length} orphan(s):`);for(let a of r){let c=a.taskFilePath??"(not found in vault)";console.log(` session=${a.sessionName} uuid=${a.taskUuid} reason=${a.reason}`),console.log(` file=${c}`)}if(t){console.log("[recover] Dry-run mode: no changes applied. Use --apply to recover.");return}let i=0,s=0;for(let a of r){let c=await eN(a,!1);c.ok?(i++,console.log(`[recover] RECOVERED: ${a.sessionName}`)):(s++,console.error(`[recover] ERROR recovering ${a.sessionName}: ${c.error}`))}console.log(`[recover] Done: recovered=${i} errors=${s}`),s>0&&(process.exitCode=1)})}o(nN,"recoverCommand");var jE=require("fs"),fy=require("path"),Gn=Z(nr());function MX(n,e){return e.concat([n])}o(MX,"collectAlso");var jX="https://exocortex.my/ontology/find#Alias_sparql",$X="https://exocortex.my/ontology/exo#Asset_label";function uu(n){if(n&&typeof n=="object"&&"value"in n){let e=n.value;return typeof e=="string"?e:String(e)}return String(n)}o(uu,"nodeValue");async function VX(n,e){let t=await n.match(void 0,void 0,void 0),r=[];for(let s of t)uu(s.predicate)!==$X||uu(s.object)!==e||r.push(uu(s.subject));if(r.length===0)return null;let i=[];for(let s of r)for(let a of t)uu(a.predicate)===jX&&uu(a.subject)===s&&i.push(uu(a.object));if(i.length===0)return null;if(i.length>1)throw new Ft(`Ambiguous find__Alias "${e}" \u2014 ${i.length} instances define a sparql fragment`,`Ensure exactly one find__Alias asset has exo:Asset_label "${e}"`);return i[0]}o(VX,"resolveAliasFragment");var UX=/^([a-z][a-zA-Z0-9]*)__([A-Za-z0-9_]+)$/,BX="https://exocortex.my/ontology/";function qX(n,e){let t=UX.exec(e);if(t){let i=`<${BX}${t[1]}#${t[2]}>`;return n.replace(/\?value\b/g,i)}let r=e.replace(/\\/g,"\\\\").replace(/"/g,'\\"');return n.replace(/\?value\b/g,`"${r}"`)}o(qX,"bindValueLiteral");function iN(){return new Te("find").description("Find vault assets via SPARQL \u2014 outputs file paths one per line (RFC 8e83442b T1.1)").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--also <path>","Additional vault to include (repeatable)",MX,[]).option("--sparql <query>","SPARQL SELECT query (must bind ?path)").option("--class <value>","Filter by class label via find__Alias 'class' (e.g. ems__Task)").action(async n=>{J.setFormat("text");try{if(n.sparql&&n.class)throw new Ft("--sparql and --class are mutually exclusive","Pass either a raw --sparql query or a find__Alias-backed flag like --class");if(!n.sparql&&!n.class)throw new Ft("one of --sparql <query> or --class <value> is required",'exocortex find --class ems__Task OR exocortex find --sparql "SELECT ?path WHERE { ... }"');let e=(0,fy.resolve)(n.vault);if(!(0,jE.existsSync)(e))throw new Ee(e);let t=new Rt(e),i=await new Gn.NoteToRDFConverter(t).convertVault(),s=n.also||[];for(let v of s){let T=(0,fy.resolve)(v);if(!(0,jE.existsSync)(T))throw new Ee(T);let C=new Rt(T),V=await new Gn.NoteToRDFConverter(C).convertVault();i=i.concat(V)}let a=new Gn.InMemoryTripleStore;await a.addAll(i);let c;if(n.class){let v=await VX(a,"class");if(v===null)throw new Ft('No find__Alias with exo:Asset_label "class" was found in the vault',"Seed a find__Alias asset (label=class) or fall back to exocortex find --sparql");c=`SELECT ?path WHERE { ${qX(v,n.class)} }`}else c=n.sparql;let l=eu(c);l=no(l);let u=new Gn.ExoQLParser,f=io(ro(e));for(let v of s){let T=io(ro((0,fy.resolve)(v)));for(let[C,L]of T)f.has(C)||f.set(C,L)}f.size>0&&u.setVaultPrefixes(f);let d=u.parse(l),p=new Gn.ExoQLAlgebraTranslator().translate(d);p.type!=="construct"&&(p=new Gn.AlgebraOptimizer().optimize(p));let b=await new Gn.ExoQLQueryExecutor(a).executeAll(p),w="obsidian://vault/";for(let v of b){let C=v.toJSON().path;if(typeof C!="string"||!C.startsWith(w))continue;let L=C.slice(w.length),V;try{V=decodeURIComponent(L)}catch{V=L}process.stdout.write(V+`
771
771
  `)}}catch(e){J.handle(e),process.exit(5)}})}o(iN,"findCommand");var VE=require("fs"),UE=require("path"),Ye=Z(nr());var lN=Z(nr()),qt=Z(aN());var oN="obsidian://vault/";function tJ(n){let e=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;return{async resolveTargetPath(t){if(!t)throw new Error("Cannot resolve empty targetIRI to a vault path");let r=t;if(r.startsWith(oN))r=decodeURI(r.slice(oN.length));else if(e.test(r)){let i=await n.findFileByUID(r);if(!i)throw new Error(`No vault file found for UID: ${r}`);r=i}if(r.endsWith(".md")||(r=`${r}.md`),!await n.fileExists(r))throw new Error(`Cannot resolve target file for IRI "${t}" (tried "${r}")`);return r}}}o(tJ,"createCliPathResolver");var rJ=["createAsset","openFile","sparqlSelect","getActiveFileIRI","getActiveFilePath","trashFile","duplicateFile"],$E=class extends Error{constructor(t){super(`Service "${t}" is not implemented in the CLI (no-op stub). dyncommand exec on this service_call grounding cannot change vault state. See CLI parity issues #2865-#2868 for port status.`);this.serviceId=t;this.name="CliServiceNotImplementedError"}static{o(this,"CliServiceNotImplementedError")}};function cN(n){return{async execute(){throw new $E(n)}}}o(cN,"notImplementedService");function uN(n,e){for(let t of rJ)n.register(t,cN(t));for(let t of["updateProperty","removeProperty","setStatus"])n.register(t,cN(t));if(e){if(e.fsAdapter){let t=new lN.FrontmatterService,r=tJ(e.fsAdapter);n.register("updateProperty",(0,qt.createUpdatePropertyService)(e.fsAdapter,t,r)),n.register("removeProperty",(0,qt.createRemovePropertyService)(e.fsAdapter,t,r)),n.register("setStatus",(0,qt.createSetStatusService)(e.fsAdapter,t,r))}n.register("createRelatedTask",(0,qt.createCreateRelatedTaskService)(e.vaultAdapter,e.genericAssetCreationService)),n.register("createRelatedProject",(0,qt.createCreateRelatedProjectService)(e.vaultAdapter,e.genericAssetCreationService)),n.register("archiveAsset",(0,qt.createArchiveAssetService)(e.vaultAdapter,e.archiveAssetService)),n.register("planForEvening",(0,qt.createPlanForEveningService)(e.vaultAdapter,e.taskStatusService)),n.register("cleanProperties",(0,qt.createCleanPropertiesService)(e.vaultAdapter,e.propertyCleanupService)),n.register("renameToUid",(0,qt.createRenameToUidService)(e.vaultAdapter,e.renameToUidService)),n.register("repairFolder",(0,qt.createRepairFolderService)(e.vaultAdapter,e.folderRepairService)),n.register("fixMissingLabel",(0,qt.createFixMissingLabelService)(e.vaultAdapter,e.fixMissingLabelService))}}o(uN,"populateCliServiceRegistry");var nJ=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;async function iJ(){if(process.stdin.isTTY)return[];let n=[];for await(let t of process.stdin)n.push(t);return Buffer.concat(n).toString("utf-8").split(`
772
772
  `).map(t=>t.trim()).filter(t=>t.length>0)}o(iJ,"readStdinLines");function dy(n){if(n&&typeof n=="object"&&"value"in n){let e=n.value;return typeof e=="string"?e:String(e)}return String(n)}o(dy,"nodeValue");async function sJ(n,e){let t=new Ye.IRI("https://exocortex.my/ontology/exocmd#Command_cliName"),r=await n.match(void 0,t,void 0),i=[];for(let s of r)if(dy(s.object)===e){let l=dy(s.subject).match(/([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})\.md$/i);l&&i.push(l[1])}if(i.length===0)return null;if(i.length>1)throw new Ft(`Ambiguous cliName "${e}" \u2014 resolves to ${i.length} commands: ${i.join(", ")}`,"Use the UUID directly: exocortex apply <uuid> <path>");return i[0]}o(sJ,"resolveSlugToUuid");async function aJ(n,e){let t=new Ye.IRI("https://exocortex.my/ontology/exocmd#Command_destructive"),r=await n.match(void 0,t,void 0);for(let i of r)if(dy(i.subject).includes(e)){let a=dy(i.object);if(a==="true"||a==="True")return!0}return!1}o(aJ,"isDestructive");async function oJ(n,e,t,r,i){let s=(0,UE.resolve)(n,r);if(!(0,VE.existsSync)(s))return console.error(`\u274C Target file not found: ${r}`),!1;let c=await new Ye.CommandResolver(e).loadCommand(t);if(!c)return console.error(`\u274C Command with UID "${t}" not found.`),!1;if(await aJ(e,t)&&!i.dryRun&&!i.yes)return console.error(`\u274C Command "${c.name}" is marked destructive. Add --dry-run to preview, or --yes to apply.`),!1;let u=(0,Ye.vaultPathToIRI)(r);if(!await new Ye.PreconditionEvaluator(e).evaluate(c.precondition,u))return console.error(`\u274C Precondition not satisfied for "${c.name}" on "${r}".`),!1;if(i.dryRun)return console.log(`\u{1F50D} Dry-run: would apply "${c.name}" to "${r}" (precondition passed).`),!0;let h=new Ye.ServiceRegistry,p=new Rt(n),y=new Ye.GenericAssetCreationService(p),b=new Ye.ArchiveAssetService(p),w=new Ye.PropertyCleanupService(p),v=new Ye.FixMissingLabelService(p),T=new Ye.RenameToUidService(p),C=new Ye.FolderRepairService(p),L=new Ye.TaskStatusService(p,new Ye.EffortStatusWorkflow,new Ye.StatusTimestampService(p)),V=new gr(n);uN(h,{vaultAdapter:p,fsAdapter:V,genericAssetCreationService:y,archiveAssetService:b,taskStatusService:L,propertyCleanupService:w,fixMissingLabelService:v,renameToUidService:T,folderRepairService:C});let ae=new Ye.GroundingExecutor(V,V,h),$;if(i.input)try{let F=JSON.parse(i.input);if(typeof F!="object"||F===null||Array.isArray(F))throw new Error("must be a JSON object");$=F}catch(F){let k=F instanceof Error?F.message:String(F);return console.error(`\u274C --input: invalid JSON object (${k})`),!1}let B=await ae.execute(c.grounding,u,r,$);if(B.success){let F=c.successMessage??`Applied "${c.name}" to "${r}".`;return console.log(`\u2705 ${F}`),!0}else return console.error(`\u274C "${c.name}" failed on "${r}": ${B.error}`),!1}o(oJ,"executeOnTarget");function fN(){return new Te("apply").description("Apply an exocmd__Command to one or more vault assets (RFC 8e83442b T1.2). Pass a path arg or pipe paths via stdin.").argument("<cmd>","Command UUID or cliName slug").argument("[path]","Vault-relative path to target asset (omit to read paths from stdin)").option("--vault <path>","Path to Obsidian vault",process.cwd()).option("--dry-run","Preview without writing").option("--yes","Skip destructive-command confirmation").option("--input <json>","JSON userInput for service_call groundings").action(async(n,e,t)=>{J.setFormat("text");try{let r=(0,UE.resolve)(t.vault);if(!(0,VE.existsSync)(r))throw new Ee(r);let i=new Rt(r),a=await new Ye.NoteToRDFConverter(i).convertVault(),c=new Ye.InMemoryTripleStore;await c.addAll(a);let l;if(nJ.test(n))l=n;else{let h=await sJ(c,n);h||(console.error(`\u274C No command found with UUID or cliName "${n}".`),process.exit(3)),l=h}let u;if(e)u=[e];else if(u=await iJ(),u.length===0)throw new Ft("No target path provided and stdin is empty.","exocortex apply <uuid> <path> OR exocortex find ... | exocortex apply <uuid>");let f=0,d=0;for(let h of u)await oJ(r,c,l,h,t)?f++:d++;u.length>1&&console.log(`
773
- \u{1F4CA} Applied to ${f}/${u.length} target(s) (${d} failed).`),d>0&&process.exit(5)}catch(r){J.handle(r),process.exit(5)}})}o(fN,"applyCommand");function dN(n){let e=new Te;return e.name("exocortex").description("CLI tool for Exocortex knowledge management system").version(n??"16.1.0"),e.addCommand(iN()),e.addCommand(fN()),e.addCommand(DF()),e.addCommand(MF()),e.addCommand(fD()),e.addCommand(VF()),e.addCommand(UF()),e.addCommand(zF()),e.addCommand(YF()),e.addCommand(pD()),e.addCommand(wD()),e.addCommand(AD()),e.addCommand(xD()),e.addCommand(CD()),e.addCommand($D()),e.addCommand(VD()),e.addCommand(HD()),e.addCommand(nN()),e}o(dN,"createProgram");dN().parse();0&&(module.exports={createProgram});
773
+ \u{1F4CA} Applied to ${f}/${u.length} target(s) (${d} failed).`),d>0&&process.exit(5)}catch(r){J.handle(r),process.exit(5)}})}o(fN,"applyCommand");function dN(n){let e=new Te;return e.name("exocortex").description("CLI tool for Exocortex knowledge management system").version(n??"16.2.0"),e.addCommand(iN()),e.addCommand(fN()),e.addCommand(DF()),e.addCommand(MF()),e.addCommand(fD()),e.addCommand(VF()),e.addCommand(UF()),e.addCommand(zF()),e.addCommand(YF()),e.addCommand(pD()),e.addCommand(wD()),e.addCommand(AD()),e.addCommand(xD()),e.addCommand(CD()),e.addCommand($D()),e.addCommand(VD()),e.addCommand(HD()),e.addCommand(nN()),e}o(dN,"createProgram");dN().parse();0&&(module.exports={createProgram});
774
774
  /*! Bundled license information:
775
775
 
776
776
  reflect-metadata/Reflect.js: