this.me 3.1.1 → 3.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -119
- package/dist/me.cjs +1 -1
- package/dist/me.es.js +1381 -651
- package/dist/me.umd.js +1 -1
- package/dist/src/me.d.ts +93 -1
- package/dist/src/types.d.ts +2 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -15,7 +15,6 @@ import ME from "this.me";
|
|
|
15
15
|
const me = new ME();
|
|
16
16
|
```
|
|
17
17
|
**Other modules formats and runtime targets:** CommonJS (`require`), UMD (global/script), TypeScript types.
|
|
18
|
-
[Read more](/docs/Builds.md)
|
|
19
18
|
|
|
20
19
|
###### **Declare** Your Data.
|
|
21
20
|
```ts
|
|
@@ -63,134 +62,35 @@ me("synth.moog.grandmother.osc1.wave");
|
|
|
63
62
|
Secrets create private branches:
|
|
64
63
|
|
|
65
64
|
```ts
|
|
66
|
-
me.wallet
|
|
67
|
-
me.wallet.
|
|
65
|
+
me.wallet["_"]("ABC"); // declare secret scope at "wallet"
|
|
66
|
+
me.wallet.balance(500);
|
|
67
|
+
me.wallet.transactions.list([1, 2, 3]);
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
Everything under that
|
|
71
|
-
|
|
70
|
+
Everything under that scope is stored in an encrypted branch blob.
|
|
71
|
+
Secret scope roots are stealth by design:
|
|
72
72
|
|
|
73
73
|
```ts
|
|
74
|
-
me
|
|
75
|
-
me("wallet");
|
|
76
|
-
// →
|
|
74
|
+
me("wallet"); // → undefined (stealth root)
|
|
75
|
+
me("wallet.balance"); // → 500
|
|
76
|
+
me("wallet.transactions.list"); // → [1, 2, 3]
|
|
77
77
|
```
|
|
78
78
|
|
|
79
|
-
Secrets can nest infinitely
|
|
79
|
+
Secrets can nest infinitely:
|
|
80
80
|
|
|
81
81
|
```ts
|
|
82
|
-
me.wallet
|
|
83
|
-
me.
|
|
84
|
-
me.
|
|
85
|
-
|
|
86
|
-
// →
|
|
82
|
+
me.wallet["_"]("ABC");
|
|
83
|
+
me.wallet.hidden["_"]("DEEP");
|
|
84
|
+
me.wallet.hidden.note("private");
|
|
85
|
+
|
|
86
|
+
me("wallet.hidden"); // → undefined (stealth root)
|
|
87
|
+
me("wallet.hidden.note"); // → "private"
|
|
87
88
|
```
|
|
88
89
|
|
|
89
90
|
- **A secret belongs to a specific position in the identity tree.**
|
|
90
91
|
- Everything under that position becomes encrypted.
|
|
91
|
-
- If you declare another secret inside, it becomes a deeper encrypted
|
|
92
|
-
-
|
|
93
|
-
|
|
94
|
-
## **🌳 A secret attaches to a position in the tree**
|
|
95
|
-
You do:
|
|
96
|
-
|
|
97
|
-
```
|
|
98
|
-
me.wallet.secret("ABC");
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
**.me** interprets this as:
|
|
102
|
-
> “The subtree starting at wallet is encrypted with ABC.”
|
|
103
|
-
Diagram:
|
|
104
|
-
|
|
105
|
-
```text
|
|
106
|
-
root
|
|
107
|
-
└── wallet (SECRET ABC)
|
|
108
|
-
├── balance
|
|
109
|
-
└── transactions
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
Everything below wallet is encrypted **as one block**.
|
|
113
|
-
|
|
114
|
-
## 🌚 Declaring another secret inside creates a nested universe
|
|
115
|
-
You do:
|
|
116
|
-
```
|
|
117
|
-
me.wallet.private.secret("DEEP");
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
Now **.me** interprets:
|
|
121
|
-
> “Inside wallet/ (encrypted under ABC), private/ will be encrypted under DEEP.”
|
|
122
|
-
Visual:
|
|
123
|
-
|
|
124
|
-
```text
|
|
125
|
-
root
|
|
126
|
-
└── wallet (SECRET ABC)
|
|
127
|
-
├── balance
|
|
128
|
-
├── transactions
|
|
129
|
-
└── private (SECRET DEEP)
|
|
130
|
-
└── ...nodes...
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
## 🔐 Accessing nested secrets requires walking the secret chain
|
|
134
|
-
To read the inner content:
|
|
135
|
-
|
|
136
|
-
```js
|
|
137
|
-
me.secret("ABC"); // unlock wallet universe
|
|
138
|
-
me.secret("DEEP"); // unlock nested private universe
|
|
139
|
-
```
|
|
140
|
-
|
|
141
|
-
Then:
|
|
142
|
-
|
|
143
|
-
```js
|
|
144
|
-
me("wallet.private") // returns decrypted inner structure
|
|
145
|
-
```
|
|
146
|
-
|
|
147
|
-
## **🌌 You can nest as many secrets as you want**
|
|
148
|
-
|
|
149
|
-
```js
|
|
150
|
-
me.x.secret("A");
|
|
151
|
-
me.x.y.secret("B");
|
|
152
|
-
me.x.y.z.secret("C");
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
To access:
|
|
156
|
-
|
|
157
|
-
```js
|
|
158
|
-
me.secret("A");
|
|
159
|
-
me.secret("B");
|
|
160
|
-
me.secret("C");
|
|
161
|
-
me("x.y.z"); // fully decrypted
|
|
162
|
-
```
|
|
163
|
-
|
|
164
|
-
Visual:
|
|
165
|
-
|
|
166
|
-
```
|
|
167
|
-
x (A)
|
|
168
|
-
└── y (B)
|
|
169
|
-
└── z (C)
|
|
170
|
-
```
|
|
171
|
-
|
|
172
|
-
Every deeper secret is a smaller encrypted universe inside a larger encrypted universe.
|
|
173
|
-
This is **fractal encryption**.
|
|
174
|
-
Let’s rewrite your example cleanly:
|
|
175
|
-
|
|
176
|
-
```js
|
|
177
|
-
me.cars.keys.secret("X");
|
|
178
|
-
```
|
|
179
|
-
|
|
180
|
-
> “Does this mean cars.keys is public, but everything *inside* keys (after calling secret) becomes encrypted?”
|
|
181
|
-
##### **✔ YES.**
|
|
182
|
-
- cars → public
|
|
183
|
-
- cars.keys → public *branch*
|
|
184
|
-
|
|
185
|
-
- **everything inside** **cars.keys.\***
|
|
186
|
-
(anything you declare after calling secret)
|
|
187
|
-
→ encrypted under "X"
|
|
188
|
-
|
|
189
|
-
### **🧠 Answer to common questions:**
|
|
190
|
-
##### **✔ Yes — you can declare secrets at specific positions.**
|
|
191
|
-
##### **✔ Yes — everything under that branch becomes encrypted.**
|
|
192
|
-
##### **✔ Yes — you can put another secret deeper.**
|
|
193
|
-
##### **✔ Yes — to access you must follow the entire chain of secrets.**
|
|
92
|
+
- If you declare another secret inside, it becomes a deeper encrypted scope.
|
|
93
|
+
- Reads are path-based; there is no global `me.secret(...)` unlock call.
|
|
194
94
|
|
|
195
95
|
---
|
|
196
96
|
|
|
@@ -246,8 +146,9 @@ me.system.audio.filters.lowpass.cutoff(1200);
|
|
|
246
146
|
me.system.audio.filters.lowpass.resonance(0.7);
|
|
247
147
|
|
|
248
148
|
// Encrypted branch
|
|
249
|
-
me.wallet
|
|
250
|
-
me.wallet.
|
|
149
|
+
me.wallet["_"]("XYZ");
|
|
150
|
+
me.wallet.balance(500);
|
|
151
|
+
me.wallet.transactions.list([1, 2, 3]);
|
|
251
152
|
|
|
252
153
|
// Read values
|
|
253
154
|
console.log(me("name.first")); // "Abella"
|
package/dist/me.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";function ve(l){return{__ptr:l}}function N(l){return!!l&&typeof l=="object"&&typeof l.__ptr=="string"&&l.__ptr.length>0}function be(l){return{__id:l}}function Lt(l){return!!l&&typeof l=="object"&&typeof l.__id=="string"&&l.__id.length>0}function me(l){return!!l&&typeof l=="object"&&typeof l.path=="string"&&typeof l.hash=="string"&&typeof l.timestamp=="number"}function C(l){return l.length===0?{scope:[],leaf:null}:{scope:l.slice(0,-1),leaf:l[l.length-1]}}function Gt(l,n){if(n.length>l.length)return!1;for(let e=0;e<n.length;e++)if(l[e]!==n[e])return!1;return!0}function Ht(l){const n=l.trim().toLowerCase();if(n.length<3||n.length>63)throw new Error(`Invalid username length: ${n.length}. Expected 3..63 characters.`);if(!/^[a-z0-9][a-z0-9-]*[a-z0-9]$/.test(n))throw new Error(`Invalid username. Use only [a-z0-9-], and start/end with [a-z0-9]. Got: ${l}`);if(n.includes("--"))throw new Error(`Invalid username. "--" is not allowed. Got: ${l}`);return n}function I(l,n){return l[n]?.kind??null}function ke(l,n){if(l.length!==1||l[0]!=="+"||!Array.isArray(n)||n.length<2)return null;const i=String(n[0]??"").trim(),r=String(n[1]??"").trim();return!i||!r||i==="+"?null:{op:i,kind:r}}function Se(l,n,e){if(n.length===0)return null;const{scope:i,leaf:r}=C(n);return!r||I(l,r)!=="secret"||typeof e!="string"?null:{scopeKey:i.join(".")}}function Ae(l,n,e){if(n.length===0)return null;const{scope:i,leaf:r}=C(n);return!r||I(l,r)!=="noise"||typeof e!="string"?null:{scopeKey:i.join(".")}}function Be(l,n,e){if(n.length===0)return null;const{leaf:i}=C(n);if(!i||I(l,i)!=="pointer"||typeof e!="string")return null;const r=e.trim().replace(/^\./,"");return r?{targetPath:r}:null}function _e(l,n,e){if(n.length===1&&I(l,n[0])==="identity")return typeof e!="string"?null:{id:Ht(e),targetPath:[]};const{scope:i,leaf:r}=C(n);return!r||I(l,r)!=="identity"||typeof e!="string"?null:{id:Ht(e),targetPath:i}}function Pe(l,n,e){if(n.length===0)return null;const{scope:i,leaf:r}=C(n);if(!r||I(l,r)!=="eval")return null;if(typeof e=="function")return{mode:"thunk",targetPath:i,thunk:e};if(Array.isArray(e)&&e.length>=2){const u=String(e[0]??"").trim(),f=String(e[1]??"").trim();return!u||!f?null:{mode:"assign",targetPath:i,name:u,expr:f}}return null}function we(l,n,e){if(n.length===0)return null;const{scope:i,leaf:r}=C(n);if(!r||I(l,r)!=="query")return null;let u=null,f;if(Array.isArray(e)&&e.length>0)Array.isArray(e[0])&&(e.length===1||typeof e[1]=="function")?(u=e[0],f=typeof e[1]=="function"?e[1]:void 0):u=e;else return null;if(!Array.isArray(u)||u.length===0)return null;const p=u.map(s=>String(s)).map(s=>s.trim()).filter(s=>s.length>0);return p.length===0?null:{targetPath:i,paths:p,fn:f}}function xe(l,n,e){if(n.length===0)return null;const{scope:i,leaf:r}=C(n);if(!r||I(l,r)!=="remove")return null;if(e==null)return{targetPath:i};if(typeof e=="string"){const u=e.split(".").filter(Boolean);return{targetPath:[...i,...u]}}return null}var Ce=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Oe(l){return l&&l.__esModule&&Object.prototype.hasOwnProperty.call(l,"default")?l.default:l}var Yt={exports:{}};var ae;function Ee(){return ae||(ae=1,(function(l){(function(){var n="input is invalid type",e="finalize already called",i=typeof window=="object",r=i?window:{};r.JS_SHA3_NO_WINDOW&&(i=!1);var u=!i&&typeof self=="object",f=!r.JS_SHA3_NO_NODE_JS&&typeof process=="object"&&process.versions&&process.versions.node;f?r=Ce:u&&(r=self);for(var p=!r.JS_SHA3_NO_COMMON_JS&&!0&&l.exports,s=!r.JS_SHA3_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",h="0123456789abcdef".split(""),k=[31,7936,2031616,520093696],m=[4,1024,262144,67108864],S=[1,256,65536,16777216],B=[6,1536,393216,100663296],A=[0,8,16,24],x=[1,0,32898,0,32906,2147483648,2147516416,2147483648,32907,0,2147483649,0,2147516545,2147483648,32777,2147483648,138,0,136,0,2147516425,0,2147483658,0,2147516555,0,139,2147483648,32905,2147483648,32771,2147483648,32770,2147483648,128,2147483648,32778,0,2147483658,2147483648,2147516545,2147483648,32896,2147483648,2147483649,0,2147516424,2147483648],O=[224,256,384,512],E=[128,256],M=["hex","buffer","arrayBuffer","array","digest"],te={128:168,256:136},se=r.JS_SHA3_NO_NODE_JS||!Array.isArray?function(t){return Object.prototype.toString.call(t)==="[object Array]"}:Array.isArray,de=s&&(r.JS_SHA3_NO_ARRAY_BUFFER_IS_VIEW||!ArrayBuffer.isView)?function(t){return typeof t=="object"&&t.buffer&&t.buffer.constructor===ArrayBuffer}:ArrayBuffer.isView,Ut=function(t){var o=typeof t;if(o==="string")return[t,!0];if(o!=="object"||t===null)throw new Error(n);if(s&&t.constructor===ArrayBuffer)return[new Uint8Array(t),!1];if(!se(t)&&!de(t))throw new Error(n);return[t,!1]},ee=function(t){return Ut(t)[0].length===0},Vt=function(t){for(var o=[],c=0;c<t.length;++c)o[c]=t[c];return o},ne=function(t,o,c){return function(a){return new P(t,o,t).update(a)[c]()}},re=function(t,o,c){return function(a,d){return new P(t,o,d).update(a)[c]()}},ie=function(t,o,c){return function(a,d,y,v){return F["cshake"+t].update(a,d,y,v)[c]()}},oe=function(t,o,c){return function(a,d,y,v){return F["kmac"+t].update(a,d,y,v)[c]()}},W=function(t,o,c,a){for(var d=0;d<M.length;++d){var y=M[d];t[y]=o(c,a,y)}return t},le=function(t,o){var c=ne(t,o,"hex");return c.create=function(){return new P(t,o,t)},c.update=function(a){return c.create().update(a)},W(c,ne,t,o)},pe=function(t,o){var c=re(t,o,"hex");return c.create=function(a){return new P(t,o,a)},c.update=function(a,d){return c.create(d).update(a)},W(c,re,t,o)},ye=function(t,o){var c=te[t],a=ie(t,o,"hex");return a.create=function(d,y,v){return ee(y)&&ee(v)?F["shake"+t].create(d):new P(t,o,d).bytepad([y,v],c)},a.update=function(d,y,v,g){return a.create(y,v,g).update(d)},W(a,ie,t,o)},ge=function(t,o){var c=te[t],a=oe(t,o,"hex");return a.create=function(d,y,v){return new $t(t,o,y).bytepad(["KMAC",v],c).bytepad([d],c)},a.update=function(d,y,v,g){return a.create(d,v,g).update(y)},W(a,oe,t,o)},ue=[{name:"keccak",padding:S,bits:O,createMethod:le},{name:"sha3",padding:B,bits:O,createMethod:le},{name:"shake",padding:k,bits:E,createMethod:pe},{name:"cshake",padding:m,bits:E,createMethod:ye},{name:"kmac",padding:m,bits:E,createMethod:ge}],F={},T=[],K=0;K<ue.length;++K)for(var j=ue[K],J=j.bits,D=0;D<J.length;++D){var qt=j.name+"_"+J[D];if(T.push(qt),F[qt]=j.createMethod(J[D],j.padding),j.name!=="sha3"){var ce=j.name+J[D];T.push(ce),F[ce]=F[qt]}}function P(t,o,c){this.blocks=[],this.s=[],this.padding=o,this.outputBits=c,this.reset=!0,this.finalized=!1,this.block=0,this.start=0,this.blockCount=1600-(t<<1)>>5,this.byteCount=this.blockCount<<2,this.outputBlocks=c>>5,this.extraBytes=(c&31)>>3;for(var a=0;a<50;++a)this.s[a]=0}P.prototype.update=function(t){if(this.finalized)throw new Error(e);var o=Ut(t);t=o[0];for(var c=o[1],a=this.blocks,d=this.byteCount,y=t.length,v=this.blockCount,g=0,w=this.s,b,_;g<y;){if(this.reset)for(this.reset=!1,a[0]=this.block,b=1;b<v+1;++b)a[b]=0;if(c)for(b=this.start;g<y&&b<d;++g)_=t.charCodeAt(g),_<128?a[b>>2]|=_<<A[b++&3]:_<2048?(a[b>>2]|=(192|_>>6)<<A[b++&3],a[b>>2]|=(128|_&63)<<A[b++&3]):_<55296||_>=57344?(a[b>>2]|=(224|_>>12)<<A[b++&3],a[b>>2]|=(128|_>>6&63)<<A[b++&3],a[b>>2]|=(128|_&63)<<A[b++&3]):(_=65536+((_&1023)<<10|t.charCodeAt(++g)&1023),a[b>>2]|=(240|_>>18)<<A[b++&3],a[b>>2]|=(128|_>>12&63)<<A[b++&3],a[b>>2]|=(128|_>>6&63)<<A[b++&3],a[b>>2]|=(128|_&63)<<A[b++&3]);else for(b=this.start;g<y&&b<d;++g)a[b>>2]|=t[g]<<A[b++&3];if(this.lastByteIndex=b,b>=d){for(this.start=b-d,this.block=a[v],b=0;b<v;++b)w[b]^=a[b];z(w),this.reset=!0}else this.start=b}return this},P.prototype.encode=function(t,o){var c=t&255,a=1,d=[c];for(t=t>>8,c=t&255;c>0;)d.unshift(c),t=t>>8,c=t&255,++a;return o?d.push(a):d.unshift(a),this.update(d),d.length},P.prototype.encodeString=function(t){var o=Ut(t);t=o[0];var c=o[1],a=0,d=t.length;if(c)for(var y=0;y<t.length;++y){var v=t.charCodeAt(y);v<128?a+=1:v<2048?a+=2:v<55296||v>=57344?a+=3:(v=65536+((v&1023)<<10|t.charCodeAt(++y)&1023),a+=4)}else a=d;return a+=this.encode(a*8),this.update(t),a},P.prototype.bytepad=function(t,o){for(var c=this.encode(o),a=0;a<t.length;++a)c+=this.encodeString(t[a]);var d=(o-c%o)%o,y=[];return y.length=d,this.update(y),this},P.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var t=this.blocks,o=this.lastByteIndex,c=this.blockCount,a=this.s;if(t[o>>2]|=this.padding[o&3],this.lastByteIndex===this.byteCount)for(t[0]=t[c],o=1;o<c+1;++o)t[o]=0;for(t[c-1]|=2147483648,o=0;o<c;++o)a[o]^=t[o];z(a)}},P.prototype.toString=P.prototype.hex=function(){this.finalize();for(var t=this.blockCount,o=this.s,c=this.outputBlocks,a=this.extraBytes,d=0,y=0,v="",g;y<c;){for(d=0;d<t&&y<c;++d,++y)g=o[d],v+=h[g>>4&15]+h[g&15]+h[g>>12&15]+h[g>>8&15]+h[g>>20&15]+h[g>>16&15]+h[g>>28&15]+h[g>>24&15];y%t===0&&(o=Vt(o),z(o),d=0)}return a&&(g=o[d],v+=h[g>>4&15]+h[g&15],a>1&&(v+=h[g>>12&15]+h[g>>8&15]),a>2&&(v+=h[g>>20&15]+h[g>>16&15])),v},P.prototype.arrayBuffer=function(){this.finalize();var t=this.blockCount,o=this.s,c=this.outputBlocks,a=this.extraBytes,d=0,y=0,v=this.outputBits>>3,g;a?g=new ArrayBuffer(c+1<<2):g=new ArrayBuffer(v);for(var w=new Uint32Array(g);y<c;){for(d=0;d<t&&y<c;++d,++y)w[y]=o[d];y%t===0&&(o=Vt(o),z(o))}return a&&(w[y]=o[d],g=g.slice(0,v)),g},P.prototype.buffer=P.prototype.arrayBuffer,P.prototype.digest=P.prototype.array=function(){this.finalize();for(var t=this.blockCount,o=this.s,c=this.outputBlocks,a=this.extraBytes,d=0,y=0,v=[],g,w;y<c;){for(d=0;d<t&&y<c;++d,++y)g=y<<2,w=o[d],v[g]=w&255,v[g+1]=w>>8&255,v[g+2]=w>>16&255,v[g+3]=w>>24&255;y%t===0&&(o=Vt(o),z(o))}return a&&(g=y<<2,w=o[d],v[g]=w&255,a>1&&(v[g+1]=w>>8&255),a>2&&(v[g+2]=w>>16&255)),v};function $t(t,o,c){P.call(this,t,o,c)}$t.prototype=new P,$t.prototype.finalize=function(){return this.encode(this.outputBits,!0),P.prototype.finalize.call(this)};var z=function(t){var o,c,a,d,y,v,g,w,b,_,H,U,V,q,$,L,G,Y,Q,Z,X,tt,et,nt,rt,it,ot,lt,ut,ct,at,ft,ht,st,dt,pt,yt,gt,vt,bt,mt,kt,St,At,Bt,_t,Pt,wt,xt,Ct,Ot,Et,Ft,Kt,It,jt,Nt,Mt,Tt,Dt,zt,Rt,Wt;for(a=0;a<48;a+=2)d=t[0]^t[10]^t[20]^t[30]^t[40],y=t[1]^t[11]^t[21]^t[31]^t[41],v=t[2]^t[12]^t[22]^t[32]^t[42],g=t[3]^t[13]^t[23]^t[33]^t[43],w=t[4]^t[14]^t[24]^t[34]^t[44],b=t[5]^t[15]^t[25]^t[35]^t[45],_=t[6]^t[16]^t[26]^t[36]^t[46],H=t[7]^t[17]^t[27]^t[37]^t[47],U=t[8]^t[18]^t[28]^t[38]^t[48],V=t[9]^t[19]^t[29]^t[39]^t[49],o=U^(v<<1|g>>>31),c=V^(g<<1|v>>>31),t[0]^=o,t[1]^=c,t[10]^=o,t[11]^=c,t[20]^=o,t[21]^=c,t[30]^=o,t[31]^=c,t[40]^=o,t[41]^=c,o=d^(w<<1|b>>>31),c=y^(b<<1|w>>>31),t[2]^=o,t[3]^=c,t[12]^=o,t[13]^=c,t[22]^=o,t[23]^=c,t[32]^=o,t[33]^=c,t[42]^=o,t[43]^=c,o=v^(_<<1|H>>>31),c=g^(H<<1|_>>>31),t[4]^=o,t[5]^=c,t[14]^=o,t[15]^=c,t[24]^=o,t[25]^=c,t[34]^=o,t[35]^=c,t[44]^=o,t[45]^=c,o=w^(U<<1|V>>>31),c=b^(V<<1|U>>>31),t[6]^=o,t[7]^=c,t[16]^=o,t[17]^=c,t[26]^=o,t[27]^=c,t[36]^=o,t[37]^=c,t[46]^=o,t[47]^=c,o=_^(d<<1|y>>>31),c=H^(y<<1|d>>>31),t[8]^=o,t[9]^=c,t[18]^=o,t[19]^=c,t[28]^=o,t[29]^=c,t[38]^=o,t[39]^=c,t[48]^=o,t[49]^=c,q=t[0],$=t[1],_t=t[11]<<4|t[10]>>>28,Pt=t[10]<<4|t[11]>>>28,lt=t[20]<<3|t[21]>>>29,ut=t[21]<<3|t[20]>>>29,Dt=t[31]<<9|t[30]>>>23,zt=t[30]<<9|t[31]>>>23,kt=t[40]<<18|t[41]>>>14,St=t[41]<<18|t[40]>>>14,st=t[2]<<1|t[3]>>>31,dt=t[3]<<1|t[2]>>>31,L=t[13]<<12|t[12]>>>20,G=t[12]<<12|t[13]>>>20,wt=t[22]<<10|t[23]>>>22,xt=t[23]<<10|t[22]>>>22,ct=t[33]<<13|t[32]>>>19,at=t[32]<<13|t[33]>>>19,Rt=t[42]<<2|t[43]>>>30,Wt=t[43]<<2|t[42]>>>30,Kt=t[5]<<30|t[4]>>>2,It=t[4]<<30|t[5]>>>2,pt=t[14]<<6|t[15]>>>26,yt=t[15]<<6|t[14]>>>26,Y=t[25]<<11|t[24]>>>21,Q=t[24]<<11|t[25]>>>21,Ct=t[34]<<15|t[35]>>>17,Ot=t[35]<<15|t[34]>>>17,ft=t[45]<<29|t[44]>>>3,ht=t[44]<<29|t[45]>>>3,nt=t[6]<<28|t[7]>>>4,rt=t[7]<<28|t[6]>>>4,jt=t[17]<<23|t[16]>>>9,Nt=t[16]<<23|t[17]>>>9,gt=t[26]<<25|t[27]>>>7,vt=t[27]<<25|t[26]>>>7,Z=t[36]<<21|t[37]>>>11,X=t[37]<<21|t[36]>>>11,Et=t[47]<<24|t[46]>>>8,Ft=t[46]<<24|t[47]>>>8,At=t[8]<<27|t[9]>>>5,Bt=t[9]<<27|t[8]>>>5,it=t[18]<<20|t[19]>>>12,ot=t[19]<<20|t[18]>>>12,Mt=t[29]<<7|t[28]>>>25,Tt=t[28]<<7|t[29]>>>25,bt=t[38]<<8|t[39]>>>24,mt=t[39]<<8|t[38]>>>24,tt=t[48]<<14|t[49]>>>18,et=t[49]<<14|t[48]>>>18,t[0]=q^~L&Y,t[1]=$^~G&Q,t[10]=nt^~it<,t[11]=rt^~ot&ut,t[20]=st^~pt>,t[21]=dt^~yt&vt,t[30]=At^~_t&wt,t[31]=Bt^~Pt&xt,t[40]=Kt^~jt&Mt,t[41]=It^~Nt&Tt,t[2]=L^~Y&Z,t[3]=G^~Q&X,t[12]=it^~lt&ct,t[13]=ot^~ut&at,t[22]=pt^~gt&bt,t[23]=yt^~vt&mt,t[32]=_t^~wt&Ct,t[33]=Pt^~xt&Ot,t[42]=jt^~Mt&Dt,t[43]=Nt^~Tt&zt,t[4]=Y^~Z&tt,t[5]=Q^~X&et,t[14]=lt^~ct&ft,t[15]=ut^~at&ht,t[24]=gt^~bt&kt,t[25]=vt^~mt&St,t[34]=wt^~Ct&Et,t[35]=xt^~Ot&Ft,t[44]=Mt^~Dt&Rt,t[45]=Tt^~zt&Wt,t[6]=Z^~tt&q,t[7]=X^~et&$,t[16]=ct^~ft&nt,t[17]=at^~ht&rt,t[26]=bt^~kt&st,t[27]=mt^~St&dt,t[36]=Ct^~Et&At,t[37]=Ot^~Ft&Bt,t[46]=Dt^~Rt&Kt,t[47]=zt^~Wt&It,t[8]=tt^~q&L,t[9]=et^~$&G,t[18]=ft^~nt&it,t[19]=ht^~rt&ot,t[28]=kt^~st&pt,t[29]=St^~dt&yt,t[38]=Et^~At&_t,t[39]=Ft^~Bt&Pt,t[48]=Rt^~Kt&jt,t[49]=Wt^~It&Nt,t[0]^=x[a],t[1]^=x[a+1]};if(p)l.exports=F;else for(K=0;K<T.length;++K)r[T[K]]=F[T[K]]})()})(Yt)),Yt.exports}var Fe=Ee();const Ke=Oe(Fe),{keccak256:he}=Ke;function Zt(l){return new TextEncoder().encode(l)}function Ie(l){const n=l.startsWith("0x")?l.slice(2):l,e=new Uint8Array(n.length/2);for(let i=0;i<e.length;i++)e[i]=parseInt(n.substring(i*2,i*2+2),16);return e}function je(l){let n="";for(let e=0;e<l.length;e++)n+=l[e].toString(16).padStart(2,"0");return"0x"+n}function Qt(l,n,e){const i=JSON.stringify(l),r=Zt(i),u=he(n+":"+e.join(".")),f=Zt(u),p=new Uint8Array(r.length);for(let s=0;s<r.length;s++)p[s]=r[s]^f[s%f.length];return je(p)}function Jt(l,n,e){try{const i=Ie(l),r=he(n+":"+e.join(".")),u=Zt(r),f=new Uint8Array(i.length);for(let s=0;s<i.length;s++)f[s]=i[s]^u[s%u.length];const p=new TextDecoder().decode(f);return JSON.parse(p)}catch{return null}}function Ne(l){if(typeof l!="string"||!l.startsWith("0x"))return!1;const n=l.slice(2);return n.length<2||n.length%2!==0?!1:/^[0-9a-fA-F]+$/.test(n)}function Me(l,n,e){if(n.length===0){if(e.length===1&&typeof e[0]=="string"){const k=e[0].trim(),m=k.startsWith("_")||k.startsWith("~")||k.startsWith("@"),S=k.includes("."),B=/^[a-zA-Z][a-zA-Z0-9_-]*$/.test(k);if(S||m||B){const A=k.split(".").filter(Boolean);return l.readPath(A)}}if(e.length===0)return l.createProxy([]);const s=l.normalizeArgs(e),h=l.postulate([],s);return h!==void 0?h:l.createProxy([])}const i=l.normalizeArgs(e),r=l.postulate(n,i),{scope:u,leaf:f}=l.splitPath(n),p=f?l.opKind(f):null;if(l.isThought(r)){const s=p?u:n;return l.createProxy(s)}return r!==void 0?r:l.createProxy(n)}function Te(l,n,e={}){const{path:i,expression:r}=n,u=ke(i,r);if(u)return{kind:"return",value:{define:u}};const f=Se(l,i,r);if(f)return{kind:"commit",instructions:[{path:f.scopeKey?f.scopeKey.split(".").filter(Boolean):[],op:"secret",value:r}]};const p=Ae(l,i,r);if(p)return{kind:"commit",instructions:[{path:p.scopeKey?p.scopeKey.split(".").filter(Boolean):[],op:"noise",value:r}]};const s=Be(l,i,r);if(s){const{scope:B}=C(i);return{kind:"commit",instructions:[{path:B,op:"ptr",value:ve(s.targetPath)}]}}const h=_e(l,i,r);if(h)return{kind:"commit",instructions:[{path:h.targetPath,op:"id",value:be(h.id)}]};const k=xe(l,i,r);if(k)return{kind:"commit",instructions:[{path:k.targetPath,op:"remove",value:"-"}]};const m=Pe(l,i,r);if(m){if(m.mode==="assign")return{kind:"commit",instructions:[{path:[...m.targetPath,m.name],op:"derive",value:{kind:"expr",source:m.expr}}]};if(!e.evaluateThunk)throw new Error('Non-serializable derivation: "=" thunk requires `evaluateThunk` or serializable DNA.');const B=e.evaluateThunk(m.thunk);return m.targetPath.length===0?{kind:"return",value:B}:{kind:"commit",instructions:[{path:m.targetPath,op:"derive",value:B}]}}const S=we(l,i,r);if(S){if(!e.readPath)return{kind:"commit",instructions:[{path:S.targetPath,op:"query",value:{paths:S.paths}}]};const B=S.paths.map(x=>e.readPath(x.split(".").filter(Boolean))),A=S.fn?S.fn(...B):B;return S.targetPath.length===0?{kind:"return",value:A}:{kind:"commit",instructions:[{path:S.targetPath,op:"query",value:A}]}}return{kind:"commit",instructions:[{path:i,op:"set",value:r}]}}const fe="+";function R(l){let n=2166136261;for(let e=0;e<l.length;e++)n^=l.charCodeAt(e),n=Math.imul(n,16777619);return("00000000"+(n>>>0).toString(16)).slice(-8)}class Xt{constructor(n){this.localSecrets={},this.localNoises={},this.encryptedBranches={},this.index={},this._shortTermMemory=[],this.operators={_:{kind:"secret"},"~":{kind:"noise"},__:{kind:"pointer"},"->":{kind:"pointer"},"@":{kind:"identity"},"=":{kind:"eval"},"?":{kind:"query"},"-":{kind:"remove"}},this.localSecrets={},this.localNoises={},this.encryptedBranches={},this.index={},this.operators={_:{kind:"secret"},"~":{kind:"noise"},__:{kind:"pointer"},"->":{kind:"pointer"},"@":{kind:"identity"},"=":{kind:"eval"},"?":{kind:"query"},"-":{kind:"remove"}},this._shortTermMemory=[],n!==void 0&&this.postulate([],n),this.rebuildIndex();const e=this.createProxy([]);return Object.setPrototypeOf(e,Xt.prototype),Object.assign(e,this),e}get shortTermMemory(){return this._shortTermMemory}isRemoveCall(n,e){if(n.length===0)return null;const{scope:i,leaf:r}=C(n);if(!r||this.opKind(r)!=="remove")return null;if(e==null)return{targetPath:i};if(typeof e=="string"){const u=e.split(".").filter(Boolean);return{targetPath:[...i,...u]}}return null}createProxy(n){const e=this,i=(...r)=>Me({createProxy:u=>e.createProxy(u),normalizeArgs:u=>e.normalizeArgs(u),readPath:u=>e.readPath(u),postulate:(u,f)=>e.postulate(u,f),opKind:u=>e.opKind(u),splitPath:C,isThought:me},n,r);return new Proxy(i,{get(r,u){if(typeof u=="symbol")return r[u];if(u in e){const p=e[u];return typeof p=="function"?p.bind(e):p}const f=[...n,String(u)];return e.createProxy(f)},apply(r,u,f){return Reflect.apply(r,void 0,f)}})}normalizeArgs(n){if(n.length!==0)return n.length===1?n[0]:n}opKind(n){return this.operators[n]?.kind??null}isSecretScopeCall(n,e){if(n.length===0)return null;const{scope:i,leaf:r}=C(n);return!r||this.opKind(r)!=="secret"||typeof e!="string"?null:{scopeKey:i.join(".")}}isNoiseScopeCall(n,e){if(n.length===0)return null;const{scope:i,leaf:r}=C(n);return!r||this.opKind(r)!=="noise"||typeof e!="string"?null:{scopeKey:i.join(".")}}isPointerCall(n,e){if(n.length===0)return null;const{leaf:i}=C(n);if(!i||this.opKind(i)!=="pointer"||typeof e!="string")return null;const r=e.trim().replace(/^\./,"");return r?{targetPath:r}:null}isIdentityCall(n,e){if(n.length===1&&this.opKind(n[0])==="identity")return typeof e!="string"?null:{id:Ht(e),targetPath:[]};const{scope:i,leaf:r}=C(n);return!r||this.opKind(r)!=="identity"||typeof e!="string"?null:{id:Ht(e),targetPath:i}}isEvalCall(n,e){if(n.length===0)return null;const{scope:i,leaf:r}=C(n);if(!r||this.opKind(r)!=="eval")return null;if(typeof e=="function")return{mode:"thunk",targetPath:i,thunk:e};if(Array.isArray(e)&&e.length>=2){const u=String(e[0]??"").trim(),f=String(e[1]??"").trim();return!u||!f?null:{mode:"assign",targetPath:i,name:u,expr:f}}return null}isQueryCall(n,e){if(n.length===0)return null;const{scope:i,leaf:r}=C(n);if(!r||this.opKind(r)!=="query")return null;let u=null,f;if(Array.isArray(e)&&e.length>0)Array.isArray(e[0])&&(e.length===1||typeof e[1]=="function")?(u=e[0],f=typeof e[1]=="function"?e[1]:void 0):u=e;else return null;if(!Array.isArray(u)||u.length===0)return null;const p=u.map(s=>String(s)).map(s=>s.trim()).filter(s=>s.length>0);return p.length===0?null:{targetPath:i,paths:p,fn:f}}isDefineOpCall(n,e){if(n.length!==1||n[0]!==fe||!Array.isArray(e)||e.length<2)return null;const r=String(e[0]??"").trim(),u=String(e[1]??"").trim();return!r||!u||r===fe?null:{op:r,kind:u}}commitThoughtOnly(n,e,i,r){const u=n.join("."),f=this.computeEffectiveSecret(n),p=JSON.stringify({path:u,operator:e,expression:i,value:r,effectiveSecret:f}),s=R(p),h=Date.now(),k={path:u,operator:e,expression:i,value:r,effectiveSecret:f,hash:s,timestamp:h};return this._shortTermMemory.push(k),this.rebuildIndex(),k}commitValueMapping(n,e,i=null){let r=e;const u=n.join("."),f=this.computeEffectiveSecret(n),p=this.resolveBranchScope(n);if(p&&p.length===0&&this.localSecrets[""]&&this.localSecrets[u],p&&p.length>0){const s=this.computeEffectiveSecret(p),h=n.slice(p.length),k=this.getBranchBlob(p);let m={};if(k&&s){const S=Jt(k,s,p);S&&typeof S=="object"&&(m=S)}if(h.length===0)(typeof m!="object"||m===null)&&(m={}),m.expression=e;else{let S=m;for(let B=0;B<h.length-1;B++){const A=h[B];(!S[A]||typeof S[A]!="object")&&(S[A]={}),S=S[A]}S[h[h.length-1]]=e}if(s){const S=Qt(m,s,p);this.setBranchBlob(p,S)}r=e}else if(f){const s=i!=="="&&i!=="?";N(e)||Lt(e)||!s?r=e:r=Qt(e,f,n)}else r=e;return this.commitThoughtOnly(n,i,e,r)}commitMapping(n,e=null){switch(n.op){case"set":return this.commitValueMapping(n.path,n.value,e);case"ptr":return this.commitValueMapping(n.path,n.value,"__");case"id":return this.commitValueMapping(n.path,n.value,"@");case"secret":{if(typeof n.value!="string")return;const i=n.path.join(".");return this.localSecrets[i]=n.value,this.commitThoughtOnly(n.path,"_","***","***")}default:return}}postulate(n,e,i=null){let r=n;const u=this.isDefineOpCall(r,e);if(u){this.operators[u.op]={kind:u.kind};return}const{leaf:f}=C(r),p=f?this.opKind(f):null;if(p===null||p==="secret"||p==="pointer"||p==="identity"){const B=Te(this.operators,{path:r,expression:e});if(B.kind==="commit"){const A=new Set(["set","secret","ptr","id"]);if(B.instructions.every(O=>A.has(O.op))){let O;for(const E of B.instructions){const M=this.commitMapping(E,i);M&&(O=M)}if(O)return O}}}const h=this.isEvalCall(r,e);if(h){if(h.mode==="thunk"){const A=h.thunk();return h.targetPath.length===0?A:this.postulate(h.targetPath,A,"=")}const B=[...h.targetPath,h.name];return this.postulate(B,h.expr,"=")}const k=this.isQueryCall(r,e);if(k){const B=k.paths.map(x=>this.readPath(x.split(".").filter(Boolean))),A=k.fn?k.fn(...B):B;return k.targetPath.length===0?A:this.postulate(k.targetPath,A,"?")}const m=this.isRemoveCall(r,e);if(m){this.removeSubtree(m.targetPath);return}const S=this.isNoiseScopeCall(r,e);if(S){this.localNoises[S.scopeKey]=e;const B=S.scopeKey?S.scopeKey.split(".").filter(Boolean):[];return this.commitThoughtOnly(B,"~","***","***")}return this.commitValueMapping(r,e,i)}removeSubtree(n){const e=n.join(".");for(const h of Object.keys(this.localSecrets)){if(e===""){delete this.localSecrets[h];continue}(h===e||h.startsWith(e+"."))&&delete this.localSecrets[h]}for(const h of Object.keys(this.localNoises)){if(e===""){delete this.localNoises[h];continue}(h===e||h.startsWith(e+"."))&&delete this.localNoises[h]}for(const h of Object.keys(this.encryptedBranches)){if(e===""){delete this.encryptedBranches[h];continue}if(h===e||h.startsWith(e+".")){delete this.encryptedBranches[h];continue}const k=h.split(".").filter(Boolean);if(!Gt(n,k)||n.length<=k.length)continue;const m=this.computeEffectiveSecret(k);if(!m)continue;const S=this.getBranchBlob(k);if(!S)continue;const B=Jt(S,m,k);if(!B||typeof B!="object")continue;const A=n.slice(k.length);let x=B;for(let O=0;O<A.length-1;O++){const E=A[O];if(!x||typeof x!="object"||!(E in x)){x=null;break}x=x[E]}if(x&&typeof x=="object"){delete x[A[A.length-1]];const O=Qt(B,m,k);this.setBranchBlob(k,O)}}const i=n.join("."),r=Date.now(),u=this.computeEffectiveSecret(n),f=JSON.stringify({path:i,operator:"-",expression:"-",value:"-",effectiveSecret:u}),p=R(f),s={path:i,operator:"-",expression:"-",value:"-",effectiveSecret:u,hash:p,timestamp:r};this._shortTermMemory.push(s),this.rebuildIndex()}computeEffectiveSecret(n){let e=null,i=null;this.localNoises[""]!==void 0&&(e="",i=this.localNoises[""]);for(let u=1;u<=n.length;u++){const f=n.slice(0,u).join(".");this.localNoises[f]!==void 0&&(e=f,i=this.localNoises[f])}let r="root";i?r=R("noise::"+i):this.localSecrets[""]&&(r=R(r+"::"+this.localSecrets[""])),e===null||e===""||e.split(".").filter(Boolean).length;for(let u=1;u<=n.length;u++){const f=n.slice(0,u).join(".");if(this.localSecrets[f]){if(e!==null&&e!==""){const p=e+".";if(!(f===e||f.startsWith(p)))continue}r=R(r+"::"+this.localSecrets[f])}}return r==="root"?"":r}rebuildIndex(){const n={};for(const e of this._shortTermMemory){const i=e.path,r=i.split(".").filter(Boolean),u=this.resolveBranchScope(r),f=u&&u.length>0&&Gt(r,u);if(e.operator==="-"){if(i===""){for(const s of Object.keys(n))delete n[s];continue}const p=i+".";for(const s of Object.keys(n))(s===i||s.startsWith(p))&&delete n[s];continue}f||(n[i]=e.value)}this.index=n}getIndex(n){return this.index[n.join(".")]}setIndex(n,e){this.index[n.join(".")]=e}resolveIndexPointerPath(n,e=8){let i=n;for(let r=0;r<e;r++){const u=this.getIndex(i);if(N(u)){i=u.__ptr.split(".").filter(Boolean);continue}let f=!1;for(let p=i.length-1;p>=0;p--){const s=i.slice(0,p),h=this.getIndex(s);if(!N(h))continue;const k=h.__ptr.split(".").filter(Boolean),m=i.slice(p);i=[...k,...m],f=!0;break}if(!f)return{path:i,raw:u}}return{path:i,raw:void 0}}setBranchBlob(n,e){const i=n.join(".");this.encryptedBranches[i]=e}getBranchBlob(n){const e=n.join(".");return this.encryptedBranches[e]}resolveBranchScope(n){let e=null;this.localSecrets[""]&&(e=[]);for(let i=1;i<=n.length;i++){const r=n.slice(0,i),u=r.join(".");this.localSecrets[u]&&(e=r)}return e}readPath(n){const e=this.resolveBranchScope(n);if(e&&e.length>0&&Gt(n,e)){if(n.length===e.length)return;const p=this.computeEffectiveSecret(e);if(!p)return null;const s=this.getBranchBlob(e);if(!s)return;const h=Jt(s,p,e);if(!h||typeof h!="object")return;const k=n.slice(e.length);let m=h;for(const S of k){if(!m||typeof m!="object")return;m=m[S]}return N(m)?this.readPath(m.__ptr.split(".").filter(Boolean)):(Lt(m),m)}const i=this.getIndex(n);if(N(i))return i;const r=this.resolveIndexPointerPath(n),u=r.raw;if(u===void 0)return r.path.length===n.length&&r.path.every((s,h)=>s===n[h])?void 0:this.readPath(r.path);if(N(u))return this.readPath(u.__ptr.split(".").filter(Boolean));if(Lt(u)||!Ne(u))return u;const f=this.computeEffectiveSecret(n);return f?Jt(u,f,n):null}}module.exports=Xt;
|
|
1
|
+
"use strict";function ye(f){return{__ptr:f}}function D(f){return!!f&&typeof f=="object"&&typeof f.__ptr=="string"&&f.__ptr.length>0}function me(f){return{__id:f}}function Xt(f){return!!f&&typeof f=="object"&&typeof f.__id=="string"&&f.__id.length>0}function be(f){return!!f&&typeof f=="object"&&typeof f.path=="string"&&typeof f.hash=="string"&&typeof f.timestamp=="number"}function I(f){return f.length===0?{scope:[],leaf:null}:{scope:f.slice(0,-1),leaf:f[f.length-1]}}function qt(f,r){if(r.length>f.length)return!1;for(let t=0;t<r.length;t++)if(f[t]!==r[t])return!1;return!0}function Zt(f){const r=f.trim().toLowerCase();if(r.length<3||r.length>63)throw new Error(`Invalid username length: ${r.length}. Expected 3..63 characters.`);if(!/^[a-z0-9][a-z0-9-]*[a-z0-9]$/.test(r))throw new Error(`Invalid username. Use only [a-z0-9-], and start/end with [a-z0-9]. Got: ${f}`);if(r.includes("--"))throw new Error(`Invalid username. "--" is not allowed. Got: ${f}`);return r}function K(f,r){return f[r]?.kind??null}function ke(f,r){if(f.length!==1||f[0]!=="+"||!Array.isArray(r)||r.length<2)return null;const n=String(r[0]??"").trim(),i=String(r[1]??"").trim();return!n||!i||n==="+"?null:{op:n,kind:i}}function Se(f,r,t){if(r.length===0)return null;const{scope:n,leaf:i}=I(r);return!i||K(f,i)!=="secret"||typeof t!="string"?null:{scopeKey:n.join(".")}}function Pe(f,r,t){if(r.length===0)return null;const{scope:n,leaf:i}=I(r);return!i||K(f,i)!=="noise"||typeof t!="string"?null:{scopeKey:n.join(".")}}function xe(f,r,t){if(r.length===0)return null;const{leaf:n}=I(r);if(!n||K(f,n)!=="pointer"||typeof t!="string")return null;const i=t.trim().replace(/^\./,"");return i?{targetPath:i}:null}function _e(f,r,t){if(r.length===1&&K(f,r[0])==="identity")return typeof t!="string"?null:{id:Zt(t),targetPath:[]};const{scope:n,leaf:i}=I(r);return!i||K(f,i)!=="identity"||typeof t!="string"?null:{id:Zt(t),targetPath:n}}function Be(f,r,t){if(r.length===0)return null;const{scope:n,leaf:i}=I(r);if(!i||K(f,i)!=="eval")return null;if(typeof t=="function")return{mode:"thunk",targetPath:n,thunk:t};if(Array.isArray(t)&&t.length>=2){const o=String(t[0]??"").trim(),s=String(t[1]??"").trim();return!o||!s?null:{mode:"assign",targetPath:n,name:o,expr:s}}return null}function Ae(f,r,t){if(r.length===0)return null;const{scope:n,leaf:i}=I(r);if(!i||K(f,i)!=="query")return null;let o=null,s;if(Array.isArray(t)&&t.length>0)Array.isArray(t[0])&&(t.length===1||typeof t[1]=="function")?(o=t[0],s=typeof t[1]=="function"?t[1]:void 0):o=t;else return null;if(!Array.isArray(o)||o.length===0)return null;const a=o.map(l=>String(l)).map(l=>l.trim()).filter(l=>l.length>0);return a.length===0?null:{targetPath:n,paths:a,fn:s}}function Ee(f,r,t){if(r.length===0)return null;const{scope:n,leaf:i}=I(r);if(!i||K(f,i)!=="remove")return null;if(t==null)return{targetPath:n};if(typeof t=="string"){const o=t.split(".").filter(Boolean);return{targetPath:[...n,...o]}}return null}var Fe=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function we(f){return f&&f.__esModule&&Object.prototype.hasOwnProperty.call(f,"default")?f.default:f}var te={exports:{}};var fe;function Ne(){return fe||(fe=1,(function(f){(function(){var r="input is invalid type",t="finalize already called",n=typeof window=="object",i=n?window:{};i.JS_SHA3_NO_WINDOW&&(n=!1);var o=!n&&typeof self=="object",s=!i.JS_SHA3_NO_NODE_JS&&typeof process=="object"&&process.versions&&process.versions.node;s?i=Fe:o&&(i=self);for(var a=!i.JS_SHA3_NO_COMMON_JS&&!0&&f.exports,l=!i.JS_SHA3_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",c="0123456789abcdef".split(""),d=[31,7936,2031616,520093696],v=[4,1024,262144,67108864],y=[1,256,65536,16777216],S=[6,1536,393216,100663296],p=[0,8,16,24],_=[1,0,32898,0,32906,2147483648,2147516416,2147483648,32907,0,2147483649,0,2147516545,2147483648,32777,2147483648,138,0,136,0,2147516425,0,2147483658,0,2147516555,0,139,2147483648,32905,2147483648,32771,2147483648,32770,2147483648,128,2147483648,32778,0,2147483658,2147483648,2147516545,2147483648,32896,2147483648,2147483649,0,2147516424,2147483648],A=[224,256,384,512],B=[128,256],F=["hex","buffer","arrayBuffer","array","digest"],O={128:168,256:136},E=i.JS_SHA3_NO_NODE_JS||!Array.isArray?function(e){return Object.prototype.toString.call(e)==="[object Array]"}:Array.isArray,j=l&&(i.JS_SHA3_NO_ARRAY_BUFFER_IS_VIEW||!ArrayBuffer.isView)?function(e){return typeof e=="object"&&e.buffer&&e.buffer.constructor===ArrayBuffer}:ArrayBuffer.isView,T=function(e){var u=typeof e;if(u==="string")return[e,!0];if(u!=="object"||e===null)throw new Error(r);if(l&&e.constructor===ArrayBuffer)return[new Uint8Array(e),!1];if(!E(e)&&!j(e))throw new Error(r);return[e,!1]},W=function(e){return T(e)[0].length===0},Gt=function(e){for(var u=[],h=0;h<e.length;++h)u[h]=e[h];return u},ie=function(e,u,h){return function(g){return new N(e,u,e).update(g)[h]()}},oe=function(e,u,h){return function(g,m){return new N(e,u,m).update(g)[h]()}},se=function(e,u,h){return function(g,m,b,P){return z["cshake"+e].update(g,m,b,P)[h]()}},le=function(e,u,h){return function(g,m,b,P){return z["kmac"+e].update(g,m,b,P)[h]()}},J=function(e,u,h,g){for(var m=0;m<F.length;++m){var b=F[m];e[b]=u(h,g,b)}return e},ae=function(e,u){var h=ie(e,u,"hex");return h.create=function(){return new N(e,u,e)},h.update=function(g){return h.create().update(g)},J(h,ie,e,u)},de=function(e,u){var h=oe(e,u,"hex");return h.create=function(g){return new N(e,u,g)},h.update=function(g,m){return h.create(m).update(g)},J(h,oe,e,u)},ge=function(e,u){var h=O[e],g=se(e,u,"hex");return g.create=function(m,b,P){return W(b)&&W(P)?z["shake"+e].create(m):new N(e,u,m).bytepad([b,P],h)},g.update=function(m,b,P,k){return g.create(b,P,k).update(m)},J(g,se,e,u)},ve=function(e,u){var h=O[e],g=le(e,u,"hex");return g.create=function(m,b,P){return new Qt(e,u,b).bytepad(["KMAC",P],h).bytepad([m],h)},g.update=function(m,b,P,k){return g.create(m,P,k).update(b)},J(g,le,e,u)},ce=[{name:"keccak",padding:y,bits:A,createMethod:ae},{name:"sha3",padding:S,bits:A,createMethod:ae},{name:"shake",padding:d,bits:B,createMethod:de},{name:"cshake",padding:v,bits:B,createMethod:ge},{name:"kmac",padding:v,bits:B,createMethod:ve}],z={},V=[],M=0;M<ce.length;++M)for(var R=ce[M],q=R.bits,$=0;$<q.length;++$){var Yt=R.name+"_"+q[$];if(V.push(Yt),z[Yt]=R.createMethod(q[$],R.padding),R.name!=="sha3"){var ue=R.name+q[$];V.push(ue),z[ue]=z[Yt]}}function N(e,u,h){this.blocks=[],this.s=[],this.padding=u,this.outputBits=h,this.reset=!0,this.finalized=!1,this.block=0,this.start=0,this.blockCount=1600-(e<<1)>>5,this.byteCount=this.blockCount<<2,this.outputBlocks=h>>5,this.extraBytes=(h&31)>>3;for(var g=0;g<50;++g)this.s[g]=0}N.prototype.update=function(e){if(this.finalized)throw new Error(t);var u=T(e);e=u[0];for(var h=u[1],g=this.blocks,m=this.byteCount,b=e.length,P=this.blockCount,k=0,C=this.s,x,w;k<b;){if(this.reset)for(this.reset=!1,g[0]=this.block,x=1;x<P+1;++x)g[x]=0;if(h)for(x=this.start;k<b&&x<m;++k)w=e.charCodeAt(k),w<128?g[x>>2]|=w<<p[x++&3]:w<2048?(g[x>>2]|=(192|w>>6)<<p[x++&3],g[x>>2]|=(128|w&63)<<p[x++&3]):w<55296||w>=57344?(g[x>>2]|=(224|w>>12)<<p[x++&3],g[x>>2]|=(128|w>>6&63)<<p[x++&3],g[x>>2]|=(128|w&63)<<p[x++&3]):(w=65536+((w&1023)<<10|e.charCodeAt(++k)&1023),g[x>>2]|=(240|w>>18)<<p[x++&3],g[x>>2]|=(128|w>>12&63)<<p[x++&3],g[x>>2]|=(128|w>>6&63)<<p[x++&3],g[x>>2]|=(128|w&63)<<p[x++&3]);else for(x=this.start;k<b&&x<m;++k)g[x>>2]|=e[k]<<p[x++&3];if(this.lastByteIndex=x,x>=m){for(this.start=x-m,this.block=g[P],x=0;x<P;++x)C[x]^=g[x];H(C),this.reset=!0}else this.start=x}return this},N.prototype.encode=function(e,u){var h=e&255,g=1,m=[h];for(e=e>>8,h=e&255;h>0;)m.unshift(h),e=e>>8,h=e&255,++g;return u?m.push(g):m.unshift(g),this.update(m),m.length},N.prototype.encodeString=function(e){var u=T(e);e=u[0];var h=u[1],g=0,m=e.length;if(h)for(var b=0;b<e.length;++b){var P=e.charCodeAt(b);P<128?g+=1:P<2048?g+=2:P<55296||P>=57344?g+=3:(P=65536+((P&1023)<<10|e.charCodeAt(++b)&1023),g+=4)}else g=m;return g+=this.encode(g*8),this.update(e),g},N.prototype.bytepad=function(e,u){for(var h=this.encode(u),g=0;g<e.length;++g)h+=this.encodeString(e[g]);var m=(u-h%u)%u,b=[];return b.length=m,this.update(b),this},N.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var e=this.blocks,u=this.lastByteIndex,h=this.blockCount,g=this.s;if(e[u>>2]|=this.padding[u&3],this.lastByteIndex===this.byteCount)for(e[0]=e[h],u=1;u<h+1;++u)e[u]=0;for(e[h-1]|=2147483648,u=0;u<h;++u)g[u]^=e[u];H(g)}},N.prototype.toString=N.prototype.hex=function(){this.finalize();for(var e=this.blockCount,u=this.s,h=this.outputBlocks,g=this.extraBytes,m=0,b=0,P="",k;b<h;){for(m=0;m<e&&b<h;++m,++b)k=u[m],P+=c[k>>4&15]+c[k&15]+c[k>>12&15]+c[k>>8&15]+c[k>>20&15]+c[k>>16&15]+c[k>>28&15]+c[k>>24&15];b%e===0&&(u=Gt(u),H(u),m=0)}return g&&(k=u[m],P+=c[k>>4&15]+c[k&15],g>1&&(P+=c[k>>12&15]+c[k>>8&15]),g>2&&(P+=c[k>>20&15]+c[k>>16&15])),P},N.prototype.arrayBuffer=function(){this.finalize();var e=this.blockCount,u=this.s,h=this.outputBlocks,g=this.extraBytes,m=0,b=0,P=this.outputBits>>3,k;g?k=new ArrayBuffer(h+1<<2):k=new ArrayBuffer(P);for(var C=new Uint32Array(k);b<h;){for(m=0;m<e&&b<h;++m,++b)C[b]=u[m];b%e===0&&(u=Gt(u),H(u))}return g&&(C[b]=u[m],k=k.slice(0,P)),k},N.prototype.buffer=N.prototype.arrayBuffer,N.prototype.digest=N.prototype.array=function(){this.finalize();for(var e=this.blockCount,u=this.s,h=this.outputBlocks,g=this.extraBytes,m=0,b=0,P=[],k,C;b<h;){for(m=0;m<e&&b<h;++m,++b)k=b<<2,C=u[m],P[k]=C&255,P[k+1]=C>>8&255,P[k+2]=C>>16&255,P[k+3]=C>>24&255;b%e===0&&(u=Gt(u),H(u))}return g&&(k=b<<2,C=u[m],P[k]=C&255,g>1&&(P[k+1]=C>>8&255),g>2&&(P[k+2]=C>>16&255)),P};function Qt(e,u,h){N.call(this,e,u,h)}Qt.prototype=new N,Qt.prototype.finalize=function(){return this.encode(this.outputBits,!0),N.prototype.finalize.call(this)};var H=function(e){var u,h,g,m,b,P,k,C,x,w,U,Z,G,Y,Q,X,tt,et,rt,nt,it,ot,st,lt,at,ct,ut,ft,ht,pt,dt,gt,vt,yt,mt,bt,kt,St,Pt,xt,_t,Bt,At,Et,Ft,wt,Nt,Ct,Ot,It,jt,Tt,zt,Mt,Kt,Dt,Rt,Wt,Vt,$t,Ht,Lt,Jt;for(g=0;g<48;g+=2)m=e[0]^e[10]^e[20]^e[30]^e[40],b=e[1]^e[11]^e[21]^e[31]^e[41],P=e[2]^e[12]^e[22]^e[32]^e[42],k=e[3]^e[13]^e[23]^e[33]^e[43],C=e[4]^e[14]^e[24]^e[34]^e[44],x=e[5]^e[15]^e[25]^e[35]^e[45],w=e[6]^e[16]^e[26]^e[36]^e[46],U=e[7]^e[17]^e[27]^e[37]^e[47],Z=e[8]^e[18]^e[28]^e[38]^e[48],G=e[9]^e[19]^e[29]^e[39]^e[49],u=Z^(P<<1|k>>>31),h=G^(k<<1|P>>>31),e[0]^=u,e[1]^=h,e[10]^=u,e[11]^=h,e[20]^=u,e[21]^=h,e[30]^=u,e[31]^=h,e[40]^=u,e[41]^=h,u=m^(C<<1|x>>>31),h=b^(x<<1|C>>>31),e[2]^=u,e[3]^=h,e[12]^=u,e[13]^=h,e[22]^=u,e[23]^=h,e[32]^=u,e[33]^=h,e[42]^=u,e[43]^=h,u=P^(w<<1|U>>>31),h=k^(U<<1|w>>>31),e[4]^=u,e[5]^=h,e[14]^=u,e[15]^=h,e[24]^=u,e[25]^=h,e[34]^=u,e[35]^=h,e[44]^=u,e[45]^=h,u=C^(Z<<1|G>>>31),h=x^(G<<1|Z>>>31),e[6]^=u,e[7]^=h,e[16]^=u,e[17]^=h,e[26]^=u,e[27]^=h,e[36]^=u,e[37]^=h,e[46]^=u,e[47]^=h,u=w^(m<<1|b>>>31),h=U^(b<<1|m>>>31),e[8]^=u,e[9]^=h,e[18]^=u,e[19]^=h,e[28]^=u,e[29]^=h,e[38]^=u,e[39]^=h,e[48]^=u,e[49]^=h,Y=e[0],Q=e[1],wt=e[11]<<4|e[10]>>>28,Nt=e[10]<<4|e[11]>>>28,ft=e[20]<<3|e[21]>>>29,ht=e[21]<<3|e[20]>>>29,$t=e[31]<<9|e[30]>>>23,Ht=e[30]<<9|e[31]>>>23,Bt=e[40]<<18|e[41]>>>14,At=e[41]<<18|e[40]>>>14,yt=e[2]<<1|e[3]>>>31,mt=e[3]<<1|e[2]>>>31,X=e[13]<<12|e[12]>>>20,tt=e[12]<<12|e[13]>>>20,Ct=e[22]<<10|e[23]>>>22,Ot=e[23]<<10|e[22]>>>22,pt=e[33]<<13|e[32]>>>19,dt=e[32]<<13|e[33]>>>19,Lt=e[42]<<2|e[43]>>>30,Jt=e[43]<<2|e[42]>>>30,Mt=e[5]<<30|e[4]>>>2,Kt=e[4]<<30|e[5]>>>2,bt=e[14]<<6|e[15]>>>26,kt=e[15]<<6|e[14]>>>26,et=e[25]<<11|e[24]>>>21,rt=e[24]<<11|e[25]>>>21,It=e[34]<<15|e[35]>>>17,jt=e[35]<<15|e[34]>>>17,gt=e[45]<<29|e[44]>>>3,vt=e[44]<<29|e[45]>>>3,lt=e[6]<<28|e[7]>>>4,at=e[7]<<28|e[6]>>>4,Dt=e[17]<<23|e[16]>>>9,Rt=e[16]<<23|e[17]>>>9,St=e[26]<<25|e[27]>>>7,Pt=e[27]<<25|e[26]>>>7,nt=e[36]<<21|e[37]>>>11,it=e[37]<<21|e[36]>>>11,Tt=e[47]<<24|e[46]>>>8,zt=e[46]<<24|e[47]>>>8,Et=e[8]<<27|e[9]>>>5,Ft=e[9]<<27|e[8]>>>5,ct=e[18]<<20|e[19]>>>12,ut=e[19]<<20|e[18]>>>12,Wt=e[29]<<7|e[28]>>>25,Vt=e[28]<<7|e[29]>>>25,xt=e[38]<<8|e[39]>>>24,_t=e[39]<<8|e[38]>>>24,ot=e[48]<<14|e[49]>>>18,st=e[49]<<14|e[48]>>>18,e[0]=Y^~X&et,e[1]=Q^~tt&rt,e[10]=lt^~ct&ft,e[11]=at^~ut&ht,e[20]=yt^~bt&St,e[21]=mt^~kt&Pt,e[30]=Et^~wt&Ct,e[31]=Ft^~Nt&Ot,e[40]=Mt^~Dt&Wt,e[41]=Kt^~Rt&Vt,e[2]=X^~et&nt,e[3]=tt^~rt&it,e[12]=ct^~ft&pt,e[13]=ut^~ht&dt,e[22]=bt^~St&xt,e[23]=kt^~Pt&_t,e[32]=wt^~Ct&It,e[33]=Nt^~Ot&jt,e[42]=Dt^~Wt&$t,e[43]=Rt^~Vt&Ht,e[4]=et^~nt&ot,e[5]=rt^~it&st,e[14]=ft^~pt>,e[15]=ht^~dt&vt,e[24]=St^~xt&Bt,e[25]=Pt^~_t&At,e[34]=Ct^~It&Tt,e[35]=Ot^~jt&zt,e[44]=Wt^~$t&Lt,e[45]=Vt^~Ht&Jt,e[6]=nt^~ot&Y,e[7]=it^~st&Q,e[16]=pt^~gt<,e[17]=dt^~vt&at,e[26]=xt^~Bt&yt,e[27]=_t^~At&mt,e[36]=It^~Tt&Et,e[37]=jt^~zt&Ft,e[46]=$t^~Lt&Mt,e[47]=Ht^~Jt&Kt,e[8]=ot^~Y&X,e[9]=st^~Q&tt,e[18]=gt^~lt&ct,e[19]=vt^~at&ut,e[28]=Bt^~yt&bt,e[29]=At^~mt&kt,e[38]=Tt^~Et&wt,e[39]=zt^~Ft&Nt,e[48]=Lt^~Mt&Dt,e[49]=Jt^~Kt&Rt,e[0]^=_[g],e[1]^=_[g+1]};if(a)f.exports=z;else for(M=0;M<V.length;++M)i[V[M]]=z[V[M]]})()})(te)),te.exports}var Ce=Ne();const Oe=we(Ce),{keccak256:pe}=Oe;function re(f){return new TextEncoder().encode(f)}function Ie(f){const r=f.startsWith("0x")?f.slice(2):f,t=new Uint8Array(r.length/2);for(let n=0;n<t.length;n++)t[n]=parseInt(r.substring(n*2,n*2+2),16);return t}function je(f){let r="";for(let t=0;t<f.length;t++)r+=f[t].toString(16).padStart(2,"0");return"0x"+r}function ee(f,r,t){const n=JSON.stringify(f),i=re(n),o=pe(r+":"+t.join(".")),s=re(o),a=new Uint8Array(i.length);for(let l=0;l<i.length;l++)a[l]=i[l]^s[l%s.length];return je(a)}function Ut(f,r,t){try{const n=Ie(f),i=pe(r+":"+t.join(".")),o=re(i),s=new Uint8Array(n.length);for(let l=0;l<n.length;l++)s[l]=n[l]^o[l%o.length];const a=new TextDecoder().decode(s);return JSON.parse(a)}catch{return null}}function Te(f){if(typeof f!="string"||!f.startsWith("0x"))return!1;const r=f.slice(2);return r.length<2||r.length%2!==0?!1:/^[0-9a-fA-F]+$/.test(r)}function ze(f){const r=[];let t="",n=0,i=null;for(let s=0;s<f.length;s++){const a=f[s];if(i){t+=a,a===i&&(i=null);continue}if(a==='"'||a==="'"){i=a,t+=a;continue}if(a==="["){n++,t+=a;continue}if(a==="]"){n=Math.max(0,n-1),t+=a;continue}if(a==="."&&n===0){const l=t.trim();l&&r.push(l),t="";continue}t+=a}const o=t.trim();return o&&r.push(o),r}function Me(f,r,t){if(r.length===0){if(t.length===1&&typeof t[0]=="string"){const d=t[0].trim(),v=d.startsWith("_")||d.startsWith("~")||d.startsWith("@"),y=d.includes("."),S=/^[a-zA-Z][a-zA-Z0-9_-]*$/.test(d);if(y||v||S){const p=ze(d);return f.readPath(p)}}if(t.length===0)return f.createProxy([]);const l=f.normalizeArgs(t),c=f.postulate([],l);return c!==void 0?c:f.createProxy([])}const n=f.normalizeArgs(t),i=f.postulate(r,n),{scope:o,leaf:s}=f.splitPath(r),a=s?f.opKind(s):null;if(f.isThought(i)){const l=a?o:r;return f.createProxy(l)}return i!==void 0?i:f.createProxy(r)}function Ke(f,r,t={}){const{path:n,expression:i}=r,o=ke(n,i);if(o)return{kind:"return",value:{define:o}};const s=Se(f,n,i);if(s)return{kind:"commit",instructions:[{path:s.scopeKey?s.scopeKey.split(".").filter(Boolean):[],op:"secret",value:i}]};const a=Pe(f,n,i);if(a)return{kind:"commit",instructions:[{path:a.scopeKey?a.scopeKey.split(".").filter(Boolean):[],op:"noise",value:i}]};const l=xe(f,n,i);if(l){const{scope:S}=I(n);return{kind:"commit",instructions:[{path:S,op:"ptr",value:ye(l.targetPath)}]}}const c=_e(f,n,i);if(c)return{kind:"commit",instructions:[{path:c.targetPath,op:"id",value:me(c.id)}]};const d=Ee(f,n,i);if(d)return{kind:"commit",instructions:[{path:d.targetPath,op:"remove",value:"-"}]};const v=Be(f,n,i);if(v){if(v.mode==="assign")return{kind:"commit",instructions:[{path:[...v.targetPath,v.name],op:"derive",value:{kind:"expr",source:v.expr}}]};if(!t.evaluateThunk)throw new Error('Non-serializable derivation: "=" thunk requires `evaluateThunk` or serializable DNA.');const S=t.evaluateThunk(v.thunk);return v.targetPath.length===0?{kind:"return",value:S}:{kind:"commit",instructions:[{path:v.targetPath,op:"derive",value:S}]}}const y=Ae(f,n,i);if(y){if(!t.readPath)return{kind:"commit",instructions:[{path:y.targetPath,op:"query",value:{paths:y.paths}}]};const S=y.paths.map(_=>t.readPath(_.split(".").filter(Boolean))),p=y.fn?y.fn(...S):S;return y.targetPath.length===0?{kind:"return",value:p}:{kind:"commit",instructions:[{path:y.targetPath,op:"query",value:p}]}}return{kind:"commit",instructions:[{path:n,op:"set",value:i}]}}const he="+";function L(f){let r=2166136261;for(let t=0;t<f.length;t++)r^=f.charCodeAt(t),r=Math.imul(r,16777619);return("00000000"+(r>>>0).toString(16)).slice(-8)}class ne{constructor(r){this.localSecrets={},this.localNoises={},this.encryptedBranches={},this.index={},this._shortTermMemory=[],this.derivations={},this.refSubscribers={},this.unsafeEval=!1,this.operators={_:{kind:"secret"},"~":{kind:"noise"},__:{kind:"pointer"},"->":{kind:"pointer"},"@":{kind:"identity"},"=":{kind:"eval"},"?":{kind:"query"},"-":{kind:"remove"}},this.localSecrets={},this.localNoises={},this.encryptedBranches={},this.index={},this.operators={_:{kind:"secret"},"~":{kind:"noise"},__:{kind:"pointer"},"->":{kind:"pointer"},"@":{kind:"identity"},"=":{kind:"eval"},"?":{kind:"query"},"-":{kind:"remove"}},this._shortTermMemory=[],r!==void 0&&this.postulate([],r),this.rebuildIndex();const t=this.createProxy([]);return Object.setPrototypeOf(t,ne.prototype),Object.assign(t,this),t}get shortTermMemory(){return this._shortTermMemory}inspect(r){const t=r?.last;return{thoughts:typeof t=="number"&&Number.isFinite(t)&&t>0?this._shortTermMemory.slice(-Math.floor(t)):this._shortTermMemory.slice(),index:{...this.index},encryptedScopes:Object.keys(this.encryptedBranches),secretScopes:Object.keys(this.localSecrets),noiseScopes:Object.keys(this.localNoises)}}explain(r){const t=this.normalizeSelectorPath(String(r??"").split(".").filter(Boolean)),n=t.join("."),i=this.readPath(t),o=this.derivations[n];if(!o)return{path:n,value:i,derivation:null,meta:{dependsOn:[]}};const s=o.refs.map(a=>{const l=this.normalizeSelectorPath(a.path.split(".").filter(Boolean)),c=this.resolveBranchScope(l),d=!!(c&&c.length>0&&qt(l,c)),v=this.readPath(l);return{label:a.label,path:a.path,value:d?"●●●●":v,origin:d?"stealth":"public",masked:d}});return{path:n,value:i,derivation:{expression:o.expression,inputs:s},meta:{dependsOn:o.refs.map(a=>a.path),lastComputedAt:o.lastComputedAt}}}cloneValue(r){const t=globalThis.structuredClone;return typeof t=="function"?t(r):JSON.parse(JSON.stringify(r))}exportSnapshot(){return this.cloneValue({shortTermMemory:this._shortTermMemory,localSecrets:this.localSecrets,localNoises:this.localNoises,encryptedBranches:this.encryptedBranches,operators:this.operators})}importSnapshot(r){const t=this.cloneValue(r??{});this._shortTermMemory=Array.isArray(t.shortTermMemory)?t.shortTermMemory:[],this.localSecrets=t.localSecrets&&typeof t.localSecrets=="object"?t.localSecrets:{},this.localNoises=t.localNoises&&typeof t.localNoises=="object"?t.localNoises:{},this.encryptedBranches=t.encryptedBranches&&typeof t.encryptedBranches=="object"?t.encryptedBranches:{},this.derivations={},this.refSubscribers={};const n={_:{kind:"secret"},"~":{kind:"noise"},__:{kind:"pointer"},"->":{kind:"pointer"},"@":{kind:"identity"},"=":{kind:"eval"},"?":{kind:"query"},"-":{kind:"remove"}};this.operators=t.operators&&typeof t.operators=="object"?{...n,...t.operators}:n,this.rebuildIndex()}rehydrate(r){this.importSnapshot(r)}replayThoughts(r){this.localSecrets={},this.localNoises={},this.encryptedBranches={},this.index={},this._shortTermMemory=[],this.derivations={},this.refSubscribers={};for(const t of r||[]){const n=String(t.path||"").split(".").filter(Boolean);if(t.operator==="_"){this.postulate([...n,"_"],typeof t.expression=="string"?t.expression:"***");continue}if(t.operator==="~"){this.postulate([...n,"~"],typeof t.expression=="string"?t.expression:"***");continue}if(t.operator==="@"){const i=t.expression&&t.expression.__id||t.value&&t.value.__id||t.value;typeof i=="string"&&i.length>0&&this.postulate([...n,"@"],i);continue}if(t.operator==="__"||t.operator==="->"){const i=t.expression&&t.expression.__ptr||t.value&&t.value.__ptr||t.value;typeof i=="string"&&i.length>0&&this.postulate([...n,"__"],i);continue}if(t.operator==="-"){this.removeSubtree(n);continue}if(t.operator==="="||t.operator==="?"){this.postulate(n,t.value,t.operator);continue}this.postulate(n,t.expression,t.operator)}this.rebuildIndex()}isRemoveCall(r,t){if(r.length===0)return null;const{scope:n,leaf:i}=I(r);if(!i||this.opKind(i)!=="remove")return null;if(t==null)return{targetPath:n};if(typeof t=="string"){const o=t.split(".").filter(Boolean);return{targetPath:[...n,...o]}}return null}createProxy(r){const t=this,n=(...i)=>Me({createProxy:o=>t.createProxy(o),normalizeArgs:o=>t.normalizeArgs(o),readPath:o=>t.readPath(o),postulate:(o,s)=>t.postulate(o,s),opKind:o=>t.opKind(o),splitPath:I,isThought:be},r,i);return new Proxy(n,{get(i,o){if(typeof o=="symbol")return i[o];if(o in t){const a=t[o];return typeof a=="function"?a.bind(t):a}const s=[...r,String(o)];return t.createProxy(s)},apply(i,o,s){return Reflect.apply(i,void 0,s)}})}normalizeArgs(r){if(r.length!==0)return r.length===1?r[0]:r}opKind(r){return this.operators[r]?.kind??null}isSecretScopeCall(r,t){if(r.length===0)return null;const{scope:n,leaf:i}=I(r);return!i||this.opKind(i)!=="secret"||typeof t!="string"?null:{scopeKey:n.join(".")}}isNoiseScopeCall(r,t){if(r.length===0)return null;const{scope:n,leaf:i}=I(r);return!i||this.opKind(i)!=="noise"||typeof t!="string"?null:{scopeKey:n.join(".")}}isPointerCall(r,t){if(r.length===0)return null;const{leaf:n}=I(r);if(!n||this.opKind(n)!=="pointer"||typeof t!="string")return null;const i=t.trim().replace(/^\./,"");return i?{targetPath:i}:null}isIdentityCall(r,t){if(r.length===1&&this.opKind(r[0])==="identity")return typeof t!="string"?null:{id:Zt(t),targetPath:[]};const{scope:n,leaf:i}=I(r);return!i||this.opKind(i)!=="identity"||typeof t!="string"?null:{id:Zt(t),targetPath:n}}isEvalCall(r,t){if(r.length===0)return null;const{scope:n,leaf:i}=I(r);if(!i||this.opKind(i)!=="eval")return null;if(typeof t=="function")return{mode:"thunk",targetPath:n,thunk:t};if(Array.isArray(t)&&t.length>=2){const o=String(t[0]??"").trim(),s=String(t[1]??"").trim();return!o||!s?null:{mode:"assign",targetPath:n,name:o,expr:s}}return null}isQueryCall(r,t){if(r.length===0)return null;const{scope:n,leaf:i}=I(r);if(!i||this.opKind(i)!=="query")return null;let o=null,s;if(Array.isArray(t)&&t.length>0)Array.isArray(t[0])&&(t.length===1||typeof t[1]=="function")?(o=t[0],s=typeof t[1]=="function"?t[1]:void 0):o=t;else return null;if(!Array.isArray(o)||o.length===0)return null;const a=o.map(l=>String(l)).map(l=>l.trim()).filter(l=>l.length>0);return a.length===0?null:{targetPath:n,paths:a,fn:s}}isDefineOpCall(r,t){if(r.length!==1||r[0]!==he||!Array.isArray(t)||t.length<2)return null;const i=String(t[0]??"").trim(),o=String(t[1]??"").trim();return!i||!o||i===he?null:{op:i,kind:o}}getPrevThoughtHash(){return this._shortTermMemory[this._shortTermMemory.length-1]?.hash??""}extractExpressionRefs(r){const t=String(r??"").trim();if(!t)return[];const n=String.raw`[A-Za-z_][A-Za-z0-9_]*(?:\[(?:"[^"]*"|'[^']*'|[^\]]+)\])*`,i=new RegExp(String.raw`__ptr(?:\.${n})*|${n}(?:\.${n})*`,"g"),o=new Set(["true","false","null","undefined","NaN","Infinity"]),s=new Set,a=t.match(i)||[];for(const l of a)o.has(l)||s.add(l);return Array.from(s)}resolveRefPath(r,t){if(!r||r.startsWith("__ptr."))return null;const n=this.normalizeSelectorPath(r.split(".").filter(Boolean));if(n.length===0)return null;const i=this.normalizeSelectorPath([...t,...n]).join("."),o=this.normalizeSelectorPath(n).join(".");return r.includes(".")?o:i}unregisterDerivation(r){const t=this.derivations[r];if(t){for(const n of t.refs){const i=this.refSubscribers[n.path]||[];this.refSubscribers[n.path]=i.filter(o=>o!==r),this.refSubscribers[n.path].length===0&&delete this.refSubscribers[n.path]}delete this.derivations[r]}}registerDerivation(r,t,n){const i=r.join(".");this.unregisterDerivation(i);const o=this.extractExpressionRefs(n),s=[],a=new Set;for(const l of o){const c=this.resolveRefPath(l,t);if(!c||a.has(c))continue;a.add(c),s.push({label:l,path:c});const d=this.refSubscribers[c]||[];d.includes(i)||d.push(i),this.refSubscribers[c]=d}this.derivations[i]={expression:n,evalScope:[...t],refs:s,lastComputedAt:Date.now()}}recomputeTarget(r){const t=this.derivations[r];if(!t)return!1;const n=this.normalizeSelectorPath(r.split(".").filter(Boolean)),i=this.tryEvaluateAssignExpression(t.evalScope,t.expression);return this.postulate(n,i.ok?i.value:t.expression,"="),t.lastComputedAt=Date.now(),!0}invalidateFromPath(r){const t=this.normalizeSelectorPath(r).join(".");if(!t)return;const n=[t],i=new Set;for(;n.length>0;){const o=n.shift(),s=this.refSubscribers[o]||[];for(const a of s){if(i.has(a))continue;i.add(a),this.recomputeTarget(a)&&n.push(a)}}}clearDerivationsByPrefix(r){const t=r.join(".");for(const n of Object.keys(this.derivations))(t===""||n===t||n.startsWith(t+"."))&&this.unregisterDerivation(n)}commitThoughtOnly(r,t,n,i){const o=r.join("."),s=this.computeEffectiveSecret(r),a=this.getPrevThoughtHash(),l=JSON.stringify({path:o,operator:t,expression:n,value:i,effectiveSecret:s,prevHash:a}),c=L(l),d=Date.now(),v={path:o,operator:t,expression:n,value:i,effectiveSecret:s,hash:c,prevHash:a,timestamp:d};return this._shortTermMemory.push(v),this.rebuildIndex(),v}commitValueMapping(r,t,n=null){let i=t;const o=r.join("."),s=this.computeEffectiveSecret(r),a=this.resolveBranchScope(r);if(a&&a.length===0&&this.localSecrets[""]&&this.localSecrets[o],a&&a.length>0){const l=this.computeEffectiveSecret(a),c=r.slice(a.length),d=this.getBranchBlob(a);let v={};if(d&&l){const y=Ut(d,l,a);y&&typeof y=="object"&&(v=y)}if(c.length===0)(typeof v!="object"||v===null)&&(v={}),v.expression=t;else{let y=v;for(let S=0;S<c.length-1;S++){const p=c[S];(!y[p]||typeof y[p]!="object")&&(y[p]={}),y=y[p]}y[c[c.length-1]]=t}if(l){const y=ee(v,l,a);this.setBranchBlob(a,y)}i=t}else if(s){const l=n!=="="&&n!=="?";D(t)||Xt(t)||!l?i=t:i=ee(t,s,r)}else i=t;return this.commitThoughtOnly(r,n,t,i)}commitMapping(r,t=null){switch(r.op){case"set":return this.commitValueMapping(r.path,r.value,t);case"ptr":return this.commitValueMapping(r.path,r.value,"__");case"id":return this.commitValueMapping(r.path,r.value,"@");case"secret":{if(typeof r.value!="string")return;const n=r.path.join(".");return this.localSecrets[n]=r.value,this.commitThoughtOnly(r.path,"_","***","***")}default:return}}tryResolveEvalTokenValue(r,t){if(r.startsWith("__ptr.")){const s=this.getIndex(t);if(!D(s))return{ok:!1};const a=r.slice(6).split(".").filter(Boolean),l=[...s.__ptr.split(".").filter(Boolean),...a],c=this.readPath(l);return c==null?{ok:!1}:{ok:!0,value:c}}const n=r.split(".").filter(Boolean),i=[...t,...n];let o=this.readPath(i);return o==null&&(o=this.readPath(n)),o==null?{ok:!1}:{ok:!0,value:o}}tokenizeEvalExpression(r){const t=[],n=String.raw`[A-Za-z_][A-Za-z0-9_]*(?:\[(?:"[^"]*"|'[^']*'|[^\]]+)\])*`,i=new RegExp(String.raw`^(?:__ptr(?:\.${n})*|${n}(?:\.${n})*)`),o={true:!0,false:!1,null:null,undefined:void 0,NaN:NaN,Infinity:1/0},s=new Set([">=","<=","==","!=","&&","||"]),a=new Set(["+","-","*","/","%","<",">","!"]);let l=0;for(;l<r.length;){const c=r[l];if(/\s/.test(c)){l++;continue}if(c==="("){t.push({kind:"lparen"}),l++;continue}if(c===")"){t.push({kind:"rparen"}),l++;continue}const d=r.slice(l,l+2);if(s.has(d)){t.push({kind:"op",value:d}),l+=2;continue}if(a.has(c)){t.push({kind:"op",value:c}),l++;continue}if(/\d/.test(c)||c==="."&&/\d/.test(r[l+1]??"")){let y=l;for(;y<r.length&&/[0-9]/.test(r[y]);)y++;if(r[y]===".")for(y++;y<r.length&&/[0-9]/.test(r[y]);)y++;if(r[y]==="e"||r[y]==="E"){let p=y+1;(r[p]==="+"||r[p]==="-")&&p++;let _=!1;for(;p<r.length&&/[0-9]/.test(r[p]);)_=!0,p++;if(!_)return null;y=p}const S=Number(r.slice(l,y));if(!Number.isFinite(S))return null;t.push({kind:"literal",value:S}),l=y;continue}const v=r.slice(l).match(i);if(v&&v[0]){const y=v[0];Object.prototype.hasOwnProperty.call(o,y)?t.push({kind:"literal",value:o[y]}):t.push({kind:"identifier",value:y}),l+=y.length;continue}return null}return t}tryEvaluateAssignExpression(r,t){const n=String(t??"").trim();if(!n)return{ok:!1};if(!/^[A-Za-z0-9_\s+\-*/%().<>=!&|\[\]"']+$/.test(n))return{ok:!1};if(this.unsafeEval)return{ok:!1};const i=this.tokenizeEvalExpression(n);if(!i||i.length===0)return{ok:!1};const o={"u-":7,"!":7,"*":6,"/":6,"%":6,"+":5,"-":5,"<":4,"<=":4,">":4,">=":4,"==":3,"!=":3,"&&":2,"||":1},s=new Set(["u-","!"]),a=[],l=[];let c="start";for(const S of i){if(S.kind==="literal"||S.kind==="identifier"){a.push(S),c="value";continue}if(S.kind==="lparen"){l.push(S),c="lparen";continue}if(S.kind==="rparen"){let _=!1;for(;l.length>0;){const A=l.pop();if(A.kind==="lparen"){_=!0;break}a.push(A)}if(!_)return{ok:!1};c="rparen";continue}let p=S.value;if(p==="-"&&(c==="start"||c==="op"||c==="lparen"))p="u-";else{if(p==="!"&&(c==="value"||c==="rparen"))return{ok:!1};if(p!=="!"&&(c==="start"||c==="op"||c==="lparen"))return{ok:!1}}for(;l.length>0;){const _=l[l.length-1];if(_.kind!=="op")break;const A=o[_.value]??-1,B=o[p]??-1;if(B<0)return{ok:!1};if(!(s.has(p)?B<A:B<=A))break;a.push(l.pop())}l.push({kind:"op",value:p}),c="op"}if(c==="op"||c==="lparen"||c==="start")return{ok:!1};for(;l.length>0;){const S=l.pop();if(S.kind==="lparen")return{ok:!1};a.push(S)}const d=S=>{if(typeof S=="number"&&Number.isFinite(S))return S;if(typeof S=="string"){const p=Number(S);if(Number.isFinite(p))return p}return null},v=[];for(const S of a){if(S.kind==="literal"){v.push(S.value);continue}if(S.kind==="identifier"){const E=this.tryResolveEvalTokenValue(S.value,r);if(!E.ok)return{ok:!1};v.push(E.value);continue}const p=S.value;if(p==="u-"||p==="!"){if(v.length<1)return{ok:!1};const E=v.pop();if(p==="u-"){const j=d(E);if(j===null)return{ok:!1};v.push(-j)}else v.push(!E);continue}if(v.length<2)return{ok:!1};const _=v.pop(),A=v.pop();if(p==="&&"||p==="||"){v.push(p==="&&"?!!A&&!!_:!!A||!!_);continue}if(p==="=="||p==="!="){v.push(p==="=="?A==_:A!=_);continue}if(p==="<"||p==="<="||p===">"||p===">="){const E=d(A),j=d(_);if(E===null||j===null)return{ok:!1};p==="<"&&v.push(E<j),p==="<="&&v.push(E<=j),p===">"&&v.push(E>j),p===">="&&v.push(E>=j);continue}const B=d(A),F=d(_);if(B===null||F===null)return{ok:!1};let O;if(p==="+")O=B+F;else if(p==="-")O=B-F;else if(p==="*")O=B*F;else if(p==="/")O=B/F;else if(p==="%")O=B%F;else return{ok:!1};if(!Number.isFinite(O))return{ok:!1};v.push(O)}if(v.length!==1)return{ok:!1};const y=v[0];return typeof y=="number"&&Number.isFinite(y)?{ok:!0,value:y}:typeof y=="boolean"?{ok:!0,value:y}:{ok:!1}}postulate(r,t,n=null){let i=r;const o=this.isDefineOpCall(i,t);if(o){this.operators[o.op]={kind:o.kind};return}const{leaf:s}=I(i),a=s?this.opKind(s):null;if(a===null||a==="secret"||a==="pointer"||a==="identity"){const p=Ke(this.operators,{path:i,expression:t});if(p.kind==="commit"){const _=new Set(["set","secret","ptr","id"]);if(p.instructions.every(B=>_.has(B.op))){let B;const F=[];for(const O of p.instructions){const E=this.commitMapping(O,n);E&&(B=E,F.push(E.path.split(".").filter(Boolean)))}if(B){for(const O of F)this.invalidateFromPath(O);return B}}}}const c=this.isEvalCall(i,t);if(c){if(c.mode==="thunk"){const B=c.thunk();return c.targetPath.length===0?B:this.postulate(c.targetPath,B,"=")}if(this.pathContainsIterator(c.targetPath)){const B=this.collectIteratorIndices(c.targetPath);let F;for(const O of B){const E=this.normalizeSelectorPath(this.substituteIteratorInPath(c.targetPath,O)),j=this.normalizeSelectorPath([...E,c.name]),T=this.substituteIteratorInExpression(c.expr,O);this.registerDerivation(j,E,T);const W=this.tryEvaluateAssignExpression(E,T);F=this.postulate(j,W.ok?W.value:T,"=")}return F}if(this.pathContainsFilterSelector(c.targetPath)){const B=this.collectFilteredScopes(c.targetPath);let F;for(const O of B){const E=this.normalizeSelectorPath(O),j=this.normalizeSelectorPath([...E,c.name]);this.registerDerivation(j,E,c.expr);const T=this.tryEvaluateAssignExpression(E,c.expr);F=this.postulate(j,T.ok?T.value:c.expr,"=")}return F}const p=this.normalizeSelectorPath([...c.targetPath,c.name]),_=this.normalizeSelectorPath(c.targetPath);this.registerDerivation(p,_,c.expr);const A=this.tryEvaluateAssignExpression(_,c.expr);return A.ok?this.postulate(p,A.value,"="):this.postulate(p,c.expr,"=")}const d=this.isQueryCall(i,t);if(d){const p=d.paths.map(A=>this.readPath(A.split(".").filter(Boolean))),_=d.fn?d.fn(...p):p;return d.targetPath.length===0?_:this.postulate(d.targetPath,_,"?")}const v=this.isRemoveCall(i,t);if(v){this.removeSubtree(v.targetPath);return}const y=this.isNoiseScopeCall(i,t);if(y){this.localNoises[y.scopeKey]=t;const p=y.scopeKey?y.scopeKey.split(".").filter(Boolean):[];return this.commitThoughtOnly(p,"~","***","***")}const S=this.commitValueMapping(i,t,n);return this.invalidateFromPath(i),S}removeSubtree(r){this.clearDerivationsByPrefix(r);const t=r.join(".");for(const d of Object.keys(this.localSecrets)){if(t===""){delete this.localSecrets[d];continue}(d===t||d.startsWith(t+"."))&&delete this.localSecrets[d]}for(const d of Object.keys(this.localNoises)){if(t===""){delete this.localNoises[d];continue}(d===t||d.startsWith(t+"."))&&delete this.localNoises[d]}for(const d of Object.keys(this.encryptedBranches)){if(t===""){delete this.encryptedBranches[d];continue}if(d===t||d.startsWith(t+".")){delete this.encryptedBranches[d];continue}const v=d.split(".").filter(Boolean);if(!qt(r,v)||r.length<=v.length)continue;const y=this.computeEffectiveSecret(v);if(!y)continue;const S=this.getBranchBlob(v);if(!S)continue;const p=Ut(S,y,v);if(!p||typeof p!="object")continue;const _=r.slice(v.length);let A=p;for(let B=0;B<_.length-1;B++){const F=_[B];if(!A||typeof A!="object"||!(F in A)){A=null;break}A=A[F]}if(A&&typeof A=="object"){delete A[_[_.length-1]];const B=ee(p,y,v);this.setBranchBlob(v,B)}}const n=r.join("."),i=Date.now(),o=this.computeEffectiveSecret(r),s=this.getPrevThoughtHash(),a=JSON.stringify({path:n,operator:"-",expression:"-",value:"-",effectiveSecret:o,prevHash:s}),l=L(a),c={path:n,operator:"-",expression:"-",value:"-",effectiveSecret:o,hash:l,prevHash:s,timestamp:i};this._shortTermMemory.push(c),this.rebuildIndex()}computeEffectiveSecret(r){let t=null,n=null;this.localNoises[""]!==void 0&&(t="",n=this.localNoises[""]);for(let o=1;o<=r.length;o++){const s=r.slice(0,o).join(".");this.localNoises[s]!==void 0&&(t=s,n=this.localNoises[s])}let i="root";n?i=L("noise::"+n):this.localSecrets[""]&&(i=L(i+"::"+this.localSecrets[""])),t===null||t===""||t.split(".").filter(Boolean).length;for(let o=1;o<=r.length;o++){const s=r.slice(0,o).join(".");if(this.localSecrets[s]){if(t!==null&&t!==""){const a=t+".";if(!(s===t||s.startsWith(a)))continue}i=L(i+"::"+this.localSecrets[s])}}return i==="root"?"":i}rebuildIndex(){const r={},t=this._shortTermMemory.map((n,i)=>({t:n,i})).sort((n,i)=>n.t.timestamp!==i.t.timestamp?n.t.timestamp-i.t.timestamp:n.t.hash!==i.t.hash?n.t.hash<i.t.hash?-1:1:n.i-i.i).map(n=>n.t);for(const n of t){const i=n.path,o=i.split(".").filter(Boolean),s=this.resolveBranchScope(o),a=s&&s.length>0&&qt(o,s);if(n.operator==="-"){if(i===""){for(const c of Object.keys(r))delete r[c];continue}const l=i+".";for(const c of Object.keys(r))(c===i||c.startsWith(l))&&delete r[c];continue}a||(r[i]=n.value)}this.index=r}getIndex(r){return this.index[r.join(".")]}setIndex(r,t){this.index[r.join(".")]=t}resolveIndexPointerPath(r,t=8){let n=r;for(let i=0;i<t;i++){const o=this.getIndex(n);if(D(o)){n=o.__ptr.split(".").filter(Boolean);continue}let s=!1;for(let a=n.length-1;a>=0;a--){const l=n.slice(0,a),c=this.getIndex(l);if(!D(c))continue;const d=c.__ptr.split(".").filter(Boolean),v=n.slice(a);n=[...d,...v],s=!0;break}if(!s)return{path:n,raw:o}}return{path:n,raw:void 0}}setBranchBlob(r,t){const n=r.join(".");this.encryptedBranches[n]=t}getBranchBlob(r){const t=r.join(".");return this.encryptedBranches[t]}resolveBranchScope(r){let t=null;this.localSecrets[""]&&(t=[]);for(let n=1;n<=r.length;n++){const i=r.slice(0,n),o=i.join(".");this.localSecrets[o]&&(t=i)}return t}normalizeSelectorPath(r){const t=[];for(const n of r){const i=String(n).trim();if(!i)continue;const o=i.indexOf("[");if(o===-1){t.push(i);continue}const s=i.slice(0,o).trim(),a=i.slice(o);s&&t.push(s);const l=Array.from(a.matchAll(/\[([^\]]*)\]/g));if(l.map(d=>d[0]).join("")!==a){t.push(a);continue}for(const d of l){let v=(d[1]??"").trim();(v.startsWith('"')&&v.endsWith('"')||v.startsWith("'")&&v.endsWith("'"))&&(v=v.slice(1,-1)),v&&t.push(v)}}return t}pathContainsIterator(r){return r.some(t=>t.includes("[i]"))}substituteIteratorInPath(r,t){return r.map(n=>n.split("[i]").join(`[${t}]`))}substituteIteratorInExpression(r,t){return String(r??"").split("[i]").join(`[${t}]`)}collectIteratorIndices(r){const t=r.findIndex(o=>o.includes("[i]"));if(t===-1)return[];const n=[];for(let o=0;o<=t;o++){const s=r[o];if(o===t){const a=s.split("[i]").join("").trim();a&&n.push(a)}else n.push(s)}const i=new Set;for(const o of Object.keys(this.index)){const s=o.split(".").filter(Boolean);if(s.length<=n.length)continue;let a=!0;for(let l=0;l<n.length;l++)if(s[l]!==n[l]){a=!1;break}a&&i.add(s[n.length])}return Array.from(i).sort((o,s)=>{const a=Number(o),l=Number(s),c=Number.isFinite(a),d=Number.isFinite(l);return c&&d?a-l:c?-1:d?1:o.localeCompare(s)})}parseFilterExpression(r){const n=String(r??"").trim().match(/^(.+?)\s*(>=|<=|==|!=|>|<)\s*(.+)$/);if(!n)return null;const i=n[1].trim(),o=n[2],s=n[3].trim();return!i||!s?null:{left:i,op:o,right:s}}parseLogicalFilterExpression(r){const t=String(r??"").trim();if(!t)return null;const n=t.split(/\s*(&&|\|\|)\s*/).filter(s=>s.length>0);if(n.length===0)return null;const i=[],o=[];for(let s=0;s<n.length;s++)if(s%2===0){const a=this.parseFilterExpression(n[s]);if(!a)return null;i.push(a)}else{const a=n[s];if(a!=="&&"&&a!=="||")return null;o.push(a)}return i.length===0||o.length!==Math.max(0,i.length-1)?null:{clauses:i,ops:o}}compareValues(r,t,n){switch(t){case">":return r>n;case"<":return r<n;case">=":return r>=n;case"<=":return r<=n;case"==":return r==n;case"!=":return r!=n;default:return!1}}parseLiteralOrPath(r){const t=r.trim();if(t.startsWith('"')&&t.endsWith('"')||t.startsWith("'")&&t.endsWith("'"))return{kind:"literal",value:t.slice(1,-1)};if(t==="true")return{kind:"literal",value:!0};if(t==="false")return{kind:"literal",value:!1};if(t==="null")return{kind:"literal",value:null};const n=Number(t);return Number.isFinite(n)?{kind:"literal",value:n}:{kind:"path",parts:this.normalizeSelectorPath(t.split(".").filter(Boolean))}}resolveRelativeFirst(r,t){const n=this.readPath([...r,...t]);return n??this.readPath(t)}evaluateFilterClauseForScope(r,t){const n=this.normalizeSelectorPath(t.left.split(".").filter(Boolean)),i=this.resolveRelativeFirst(r,n);if(i==null)return!1;const o=this.parseLiteralOrPath(t.right),s=o.kind==="literal"?o.value:this.resolveRelativeFirst(r,o.parts);return s==null?!1:this.compareValues(i,t.op,s)}evaluateLogicalFilterForScope(r,t){const n=this.parseLogicalFilterExpression(t);if(!n)return!1;let i=this.evaluateFilterClauseForScope(r,n.clauses[0]);for(let o=1;o<n.clauses.length;o++){const s=this.evaluateFilterClauseForScope(r,n.clauses[o]);i=n.ops[o-1]==="&&"?i&&s:i||s}return i}collectChildrenForPrefix(r){const t=new Set;for(const n of Object.keys(this.index)){const i=n.split(".").filter(Boolean);if(i.length<=r.length)continue;let o=!0;for(let s=0;s<r.length;s++)if(i[s]!==r[s]){o=!1;break}o&&t.add(i[r.length])}return Array.from(t)}parseSelectorSegment(r){const t=String(r??"").trim(),n=t.indexOf("["),i=t.lastIndexOf("]");if(n<=0||i<=n||i!==t.length-1)return null;const o=t.slice(0,n).trim(),s=t.slice(n+1,i).trim();return!o||!s?null:{base:o,selector:s}}parseSelectorKeys(r){const t=r.trim();if(t.startsWith("[")&&t.endsWith("]")){const i=t.slice(1,-1).trim();return i?i.split(",").map(s=>s.trim()).filter(Boolean).map(s=>s.startsWith('"')&&s.endsWith('"')||s.startsWith("'")&&s.endsWith("'")?s.slice(1,-1):s):[]}const n=t.match(/^(-?\d+)\s*\.\.\s*(-?\d+)$/);if(n){const i=Number(n[1]),o=Number(n[2]);if(!Number.isFinite(i)||!Number.isFinite(o))return null;const s=i<=o?1:-1,a=[];if(Math.abs(o-i)>1e4)return null;for(let c=i;s>0?c<=o:c>=o;c+=s)a.push(String(c));return a}return null}parseTransformSelector(r){const n=r.trim().match(/^([A-Za-z_][A-Za-z0-9_]*)\s*=>\s*(.+)$/);if(!n)return null;const i=n[1].trim(),o=n[2].trim();return!i||!o?null:{varName:i,expr:o}}evaluateTransformPath(r){const t=r.findIndex(c=>{const d=this.parseSelectorSegment(c);return d?this.parseTransformSelector(d.selector)!==null:!1});if(t===-1)return;const n=this.parseSelectorSegment(r[t]);if(!n)return;const i=this.parseTransformSelector(n.selector);if(!i)return;const o=[...r.slice(0,t),n.base];if(r.slice(t+1).length>0)return;const a=this.collectChildrenForPrefix(o),l={};for(const c of a){const d=[...o,c],v=i.expr.replace(new RegExp(String.raw`\b${i.varName}\.`,"g"),""),y=this.tryEvaluateAssignExpression(d,v);y.ok&&(l[c]=y.value)}return l}evaluateSelectionPath(r){const t=r.findIndex(l=>this.parseSelectorSegment(l)!==null);if(t===-1)return;const n=this.parseSelectorSegment(r[t]);if(!n)return;const i=this.parseSelectorKeys(n.selector);if(i===null)return;const o=[...r.slice(0,t),n.base],s=r.slice(t+1),a={};for(const l of i){const c=[...o,l],d=s.length===0?this.buildPublicSubtree(c):this.readPath([...c,...s]);d!==void 0&&(a[l]=d)}return a}buildPublicSubtree(r){const t=r.join("."),n={};let i=!1;for(const[o,s]of Object.entries(this.index)){if(o===t)return s;if(!o.startsWith(t+"."))continue;const a=o.slice(t.length+1).split(".").filter(Boolean);let l=n;for(let c=0;c<a.length-1;c++){const d=a[c];(!l[d]||typeof l[d]!="object")&&(l[d]={}),l=l[d]}l[a[a.length-1]]=s,i=!0}return i?n:void 0}evaluateFilterPath(r){const t=r.findIndex(l=>this.parseLogicalFilterExpression(l)!==null);if(t===-1)return;const n=r[t],i=r.slice(0,t),o=r.slice(t+1);if(i.length===0)return;const s=this.collectChildrenForPrefix(i),a={};for(const l of s){const c=[...i,l];this.evaluateLogicalFilterForScope(c,n)&&(o.length===0?a[l]=this.buildPublicSubtree(c):a[l]=this.readPath([...c,...o]))}return a}pathContainsFilterSelector(r){return r.some(t=>{const n=this.parseSelectorSegment(t);return n?this.parseLogicalFilterExpression(n.selector)!==null:!1})}collectFilteredScopes(r){const t=r.findIndex(l=>{const c=this.parseSelectorSegment(l);return c?this.parseLogicalFilterExpression(c.selector)!==null:!1});if(t===-1)return[];const n=this.parseSelectorSegment(r[t]);if(!n)return[];const i=[...r.slice(0,t),n.base],o=r.slice(t+1),s=this.collectChildrenForPrefix(i),a=[];for(const l of s){const c=[...i,l];this.evaluateLogicalFilterForScope(c,n.selector)&&a.push([...c,...o])}return a}readPath(r){const t=this.evaluateTransformPath(r);if(t!==void 0)return t;const n=this.evaluateSelectionPath(r);if(n!==void 0)return n;r=this.normalizeSelectorPath(r);const i=this.evaluateFilterPath(r);if(i!==void 0)return i;const o=this.resolveBranchScope(r);if(o&&o.length>0&&qt(r,o)){if(r.length===o.length)return;const d=this.computeEffectiveSecret(o);if(!d)return null;const v=this.getBranchBlob(o);if(!v)return;const y=Ut(v,d,o);if(!y||typeof y!="object")return;const S=r.slice(o.length);let p=y;for(const _ of S){if(!p||typeof p!="object")return;p=p[_]}return D(p)?this.readPath(p.__ptr.split(".").filter(Boolean)):(Xt(p),p)}const s=this.getIndex(r);if(D(s))return s;const a=this.resolveIndexPointerPath(r),l=a.raw;if(l===void 0)return a.path.length===r.length&&a.path.every((v,y)=>v===r[y])?void 0:this.readPath(a.path);if(D(l))return this.readPath(l.__ptr.split(".").filter(Boolean));if(Xt(l)||!Te(l))return l;const c=this.computeEffectiveSecret(r);return c?Ut(l,c,r):null}}module.exports=ne;
|