w3pk 0.9.3 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1,11 +1,11 @@
1
- var cd=Object.create;var Ur=Object.defineProperty;var ld=Object.getOwnPropertyDescriptor;var ud=Object.getOwnPropertyNames;var dd=Object.getPrototypeOf,hd=Object.prototype.hasOwnProperty;var fd=(n,e,t)=>e in n?Ur(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t;var w=(n,e)=>()=>(n&&(e=n(n=0)),e);var D=(n,e)=>()=>(e||n((e={exports:{}}).exports,e),e.exports),B=(n,e)=>{for(var t in e)Ur(n,t,{get:e[t],enumerable:!0})},pd=(n,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of ud(e))!hd.call(n,s)&&s!==t&&Ur(n,s,{get:()=>e[s],enumerable:!(r=ld(e,s))||r.enumerable});return n};var lt=(n,e,t)=>(t=n!=null?cd(dd(n)):{},pd(e||!n||!n.__esModule?Ur(t,"default",{value:n,enumerable:!0}):t,n));var p=(n,e,t)=>fd(n,typeof e!="symbol"?e+"":e,t);var H,O,Gt,S,N,T,is,V=w(()=>{"use strict";H=class extends Error{constructor(t,r,s){super(t);this.code=r;this.originalError=s;this.name="Web3PasskeyError"}},O=class extends H{constructor(e,t){super(e,"AUTHENTICATION_ERROR",t),this.name="AuthenticationError"}},Gt=class extends H{constructor(e,t){super(e,"REGISTRATION_ERROR",t),this.name="RegistrationError"}},S=class extends H{constructor(e,t){super(e,"WALLET_ERROR",t),this.name="WalletError"}},N=class extends H{constructor(e,t){super(e,"CRYPTO_ERROR",t),this.name="CryptoError"}},T=class extends H{constructor(e,t){super(e,"STORAGE_ERROR",t),this.name="StorageError"}},is=class extends H{constructor(t,r,s){super(t,"API_ERROR",s);this.statusCode=r;this.name="ApiError"}}});var cs={};B(cs,{arrayBufferToBase64Url:()=>Ae,base64ToArrayBuffer:()=>xo,base64UrlDecode:()=>Ao,base64UrlToArrayBuffer:()=>_,safeAtob:()=>ut,safeBtoa:()=>vo});function _(n){try{let e=n.replace(/-/g,"+").replace(/_/g,"/"),t=(4-e.length%4)%4;e+="=".repeat(t);let r=atob(e),s=new Uint8Array(r.length);for(let i=0;i<r.length;i++)s[i]=r.charCodeAt(i);return s.buffer}catch(e){throw new Error(`Failed to decode base64url string: ${e instanceof Error?e.message:"Invalid format"}`)}}function Ae(n){let e=n instanceof Uint8Array?n:new Uint8Array(n),t="";for(let r=0;r<e.length;r++)t+=String.fromCharCode(e[r]);return btoa(t).replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,"")}function xo(n){try{let e=atob(n),t=new Uint8Array(e.length);for(let r=0;r<e.length;r++)t[r]=e.charCodeAt(r);return t.buffer}catch(e){throw new Error(`Failed to decode base64 string: ${e instanceof Error?e.message:"Invalid format"}`)}}function ut(n){try{let e=n.replace(/-/g,"+").replace(/_/g,"/"),t=(4-e.length%4)%4;return e+="=".repeat(t),atob(e)}catch(e){throw new Error(`Failed to decode base64 string: ${e instanceof Error?e.message:"Invalid format"}`)}}function vo(n){try{let e=new TextEncoder().encode(n),t="";for(let r=0;r<e.length;r++)t+=String.fromCharCode(e[r]);return btoa(t)}catch(e){throw new Error(`Failed to encode string: ${e instanceof Error?e.message:"Invalid input"}`)}}function Ao(n){return _(n)}var me=w(()=>{"use strict"});var Be={};B(Be,{decryptData:()=>se,deriveEncryptionKey:()=>yd,deriveEncryptionKeyFromWebAuthn:()=>G,encryptData:()=>ne,generateChallenge:()=>Ie,hashCredentialId:()=>dt,hashPublicKey:()=>ls});async function G(n,e){try{let t=e?`w3pk-v4:${n}:${e}`:`w3pk-v4:${n}`,r=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(t)),s=await crypto.subtle.importKey("raw",r,{name:"PBKDF2"},!1,["deriveKey"]),i=await crypto.subtle.digest("SHA-256",new TextEncoder().encode("w3pk-salt-v4"));return crypto.subtle.deriveKey({name:"PBKDF2",salt:new Uint8Array(i),iterations:21e4,hash:"SHA-256"},s,{name:"AES-GCM",length:256},!1,["encrypt","decrypt"])}catch(t){throw new N("Failed to derive encryption key from WebAuthn",t)}}async function yd(n,e){try{let t=e?`w3pk-v2:${n}:${e}`:`w3pk-v2:${n}`,r=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(t)),s=await crypto.subtle.importKey("raw",r,{name:"PBKDF2"},!1,["deriveKey"]),i=await crypto.subtle.digest("SHA-256",new TextEncoder().encode("w3pk-salt-v2"));return crypto.subtle.deriveKey({name:"PBKDF2",salt:new Uint8Array(i),iterations:21e4,hash:"SHA-256"},s,{name:"AES-GCM",length:256},!1,["encrypt","decrypt"])}catch(t){throw new N("Failed to derive encryption key",t)}}function Ie(){let n=new Uint8Array(32);return crypto.getRandomValues(n),Ae(n)}async function ne(n,e){try{let t=crypto.getRandomValues(new Uint8Array(12)),r=new TextEncoder().encode(n),s=await crypto.subtle.encrypt({name:"AES-GCM",iv:t},e,r),i=new Uint8Array(t.length+s.byteLength);i.set(t),i.set(new Uint8Array(s),t.length);let o="";for(let c=0;c<i.length;c++)o+=String.fromCharCode(i[c]);return btoa(o)}catch(t){throw new N("Failed to encrypt data",t)}}async function se(n,e){try{if(!n||n.length<16)throw new Error("Invalid encrypted data: too small");let t=ut(n),r=new Uint8Array(t.length);for(let c=0;c<t.length;c++)r[c]=t.charCodeAt(c);if(r.length<12)throw new Error("Invalid encrypted data: missing IV");let s=r.slice(0,12),i=r.slice(12);if(i.length===0)throw new Error("Invalid encrypted data: no content");let o=await crypto.subtle.decrypt({name:"AES-GCM",iv:s},e,i);return new TextDecoder().decode(o)}catch(t){throw new N(`Data decryption failed: ${t instanceof Error?t.message:"Unknown error"}`,t)}}async function dt(n){try{let e=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(`w3pk-cred-id:${n}`));return Ae(e)}catch(e){throw new N("Failed to hash credential ID",e)}}async function ls(n){try{let e=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(n));return Ae(e)}catch(e){throw new N("Failed to hash public key",e)}}var W=w(()=>{"use strict";V();me()});var Or={};B(Or,{CredentialStorage:()=>F});async function ko(n){let e=new TextEncoder().encode(`w3pk-metadata-v1:${n}`),t=await crypto.subtle.digest("SHA-256",e),r=await crypto.subtle.importKey("raw",t,{name:"PBKDF2"},!1,["deriveKey"]);return await crypto.subtle.deriveKey({name:"PBKDF2",salt:new TextEncoder().encode("w3pk-metadata-salt-v1"),iterations:1e5,hash:"SHA-256"},r,{name:"AES-GCM",length:256},!1,["encrypt","decrypt"])}var Lr,_r,F,De=w(()=>{"use strict";V();W();Lr="w3pk_credential_",_r="w3pk_credential_index";F=class{constructor(e){if(e)this.storage=e;else if(typeof window<"u"&&window.localStorage)this.storage=window.localStorage;else throw new T("localStorage is not available")}async saveCredential(e){try{let t=await ko(e.id),r=await dt(e.id),s={id:r,encryptedUsername:await ne(e.username,t),encryptedAddress:await ne(e.ethereumAddress,t),publicKey:e.publicKey,publicKeyFingerprint:await ls(e.publicKey),createdAt:e.createdAt,lastUsed:e.lastUsed},i=`${Lr}${r}`;this.storage.setItem(i,JSON.stringify(s)),await this.addToIndex(e.id)}catch(t){throw new T("Failed to save credential",t)}}async getCredentialById(e){try{let t=await dt(e),r=`${Lr}${t}`,s=this.storage.getItem(r);if(!s)return null;let i=JSON.parse(s),o=await ko(e);return{id:e,publicKey:i.publicKey,username:await se(i.encryptedUsername,o),ethereumAddress:await se(i.encryptedAddress,o),createdAt:i.createdAt,lastUsed:i.lastUsed}}catch(t){throw new T("Failed to retrieve credential",t)}}async getCredentialByUsername(e){try{return(await this.getAllCredentials()).find(r=>r.username===e)||null}catch(t){throw new T("Failed to retrieve credential",t)}}async getCredentialByAddress(e){try{return(await this.getAllCredentials()).find(r=>r.ethereumAddress.toLowerCase()===e.toLowerCase())||null}catch(t){throw new T("Failed to retrieve credential",t)}}async getAllCredentials(){try{let e=await this.getIndex();return(await Promise.all(e.map(async r=>await this.getCredentialById(r)))).filter(r=>r!==null)}catch(e){throw new T("Failed to retrieve credentials",e)}}async userExists(e){return await this.getCredentialByUsername(e)!==null}async updateLastUsed(e){try{let t=await this.getCredentialById(e);t&&(t.lastUsed=new Date().toISOString(),await this.saveCredential(t))}catch(t){throw new T("Failed to update timestamp",t)}}async updateSignatureCounter(e,t){try{let r=await this.getCredentialById(e);r&&(r.signCount=t,r.lastUsed=new Date().toISOString(),await this.saveCredential(r))}catch(r){throw new T("Failed to update signature counter",r)}}async updateCredentialAddress(e,t){try{let r=await this.getCredentialById(e);r&&(r.ethereumAddress=t,r.lastUsed=new Date().toISOString(),await this.saveCredential(r))}catch(r){throw new T("Failed to update credential address",r)}}async deleteCredential(e){try{let t=await dt(e),r=`${Lr}${t}`;this.storage.removeItem(r),await this.removeFromIndex(e)}catch(t){throw new T("Failed to delete credential",t)}}async clearAll(){try{let e=await this.getIndex();(await Promise.all(e.map(async r=>await dt(r)))).forEach(r=>{let s=`${Lr}${r}`;this.storage.removeItem(s)}),this.storage.removeItem(_r)}catch(e){throw new T("Failed to clear credentials",e)}}async getIndex(){try{let e=this.storage.getItem(_r);return e?JSON.parse(e):[]}catch{return[]}}async addToIndex(e){let t=await this.getIndex();t.includes(e)||(t.push(e),this.storage.setItem(_r,JSON.stringify(t)))}async removeFromIndex(e){let r=(await this.getIndex()).filter(s=>s!==e);this.storage.setItem(_r,JSON.stringify(r))}}});var us={};B(us,{createWalletFromMnemonic:()=>Po,deriveWalletFromMnemonic:()=>qr,generateBIP39Wallet:()=>$r});import{ethers as Wr}from"ethers";function $r(){try{let n=Wr.Wallet.createRandom().mnemonic;if(!n)throw new Error("Failed to generate mnemonic");let e=n.phrase;return{address:Wr.HDNodeWallet.fromPhrase(e,void 0,"m/44'/60'/0'/0/0").address,mnemonic:e}}catch(n){throw new S("Wallet generation failed",n)}}function Po(n){try{if(!n||n.trim().split(/\s+/).length<12)throw new Error("Invalid mnemonic: must be at least 12 words");return Wr.HDNodeWallet.fromPhrase(n.trim(),void 0,"m/44'/60'/0'/0/0")}catch(e){throw new S(`Wallet creation failed: ${e instanceof Error?e.message:"Invalid mnemonic"}`,e)}}function qr(n,e=0){try{if(!n||n.trim().split(/\s+/).length<12)throw new Error("Invalid mnemonic: must be at least 12 words");if(e<0||!Number.isInteger(e))throw new Error("Index must be a non-negative integer");let t=`m/44'/60'/0'/0/${e}`,r=Wr.HDNodeWallet.fromPhrase(n.trim(),void 0,t);return{address:r.address,privateKey:r.privateKey}}catch(t){throw new S(`HD wallet derivation failed: ${t instanceof Error?t.message:"Unknown error"}`,t)}}var ht=w(()=>{"use strict";V()});var Vr={};B(Vr,{DEFAULT_MODE:()=>we,DEFAULT_TAG:()=>be,deriveAddressFromP256PublicKey:()=>Io,deriveIndexFromOriginModeAndTag:()=>ds,getCurrentOrigin:()=>$e,getOriginSpecificAddress:()=>We,normalizeOrigin:()=>Hr});import{keccak256 as Cd}from"ethers";function Hr(n){try{let e=new URL(n),t=`${e.protocol}//${e.hostname.toLowerCase()}`,r=e.port;return r&&!(e.protocol==="https:"&&r==="443"||e.protocol==="http:"&&r==="80")&&(t+=`:${r}`),t}catch(e){throw new S(`Invalid origin URL: ${n}`,e)}}async function ds(n,e=we,t=be){try{let s=`${Hr(n)}:${e}:${t.toUpperCase()}`,o=new TextEncoder().encode(s),c=await crypto.subtle.digest("SHA-256",o);return new DataView(c).getUint32(0,!1)%Pd}catch(r){throw new S(`Failed to derive index from origin "${n}", mode "${e}", and tag "${t}"`,r)}}async function We(n,e,t,r){try{let s=t||we,i=(r||be).toUpperCase(),o=Hr(e),c=await ds(o,s,i),{address:a,privateKey:u}=qr(n,c),l={address:a,index:c,origin:o,mode:s,tag:i};return s==="YOLO"&&(l.privateKey=u),l}catch(s){throw new S(`Failed to derive origin-specific address for "${e}" with mode "${t||we}" and tag "${r||be}"`,s)}}function $e(){if(typeof window>"u"||!window.location)throw new S("getCurrentOrigin() only works in browser environments");return window.location.origin}async function Io(n){try{let e=_(n),t=await crypto.subtle.importKey("spki",e,{name:"ECDSA",namedCurve:"P-256"},!0,["verify"]),r=await crypto.subtle.exportKey("jwk",t);if(!r.x||!r.y)throw new Error("Invalid P-256 public key: missing x or y coordinates");let s=_(r.x),i=_(r.y),o=new Uint8Array(64);return o.set(new Uint8Array(s),0),o.set(new Uint8Array(i),32),"0x"+Cd(o).slice(-40)}catch(e){throw new S("Failed to derive address from P-256 public key",e)}}var we,be,Pd,ft=w(()=>{"use strict";ht();V();me();we="STANDARD",be="MAIN",Pd=2147483647});var ws={};B(ws,{encodeEIP7702AuthorizationMessage:()=>Xr,hashEIP7702AuthorizationMessage:()=>Zr,verifyEIP7702Authorization:()=>ys});import{encodeRlp as _d,concat as Od,keccak256 as Kd,toBeHex as Uo,recoverAddress as zd,Signature as Wd}from"ethers";function Xr(n,e,t){let r=[n===0n?"0x":Uo(n),e.toLowerCase(),t===0n?"0x":Uo(t)],s=_d(r);return Od(["0x05",s])}function Zr(n,e,t){let r=Xr(n,e,t);return Kd(r)}function ys(n,e,t,r,s){try{let i=Zr(n,e,t),o;return typeof r=="string"?o=Wd.from(r):o=r,zd(i,o).toLowerCase()===s.toLowerCase()}catch{return!1}}var en=w(()=>{"use strict"});var Lo={};B(Lo,{detectWalletProvider:()=>xs,getDefaultProvider:()=>Ss,requestExternalWalletAuthorization:()=>bs,supportsEIP7702Authorization:()=>vs});async function bs(n,e){if(!n)throw new Error("No external wallet provider found. Please install MetaMask or similar wallet.");let t=BigInt(e.chainId||1),r=e.nonce||0n,s=e.accountIndex||0,i=await n.request({method:"eth_requestAccounts"});if(!i||i.length===0)throw new Error("No accounts found in external wallet");if(s>=i.length)throw new Error(`Account index ${s} out of range. Wallet has ${i.length} accounts.`);let o=i[s],{hashEIP7702AuthorizationMessage:c,verifyEIP7702Authorization:a}=await Promise.resolve().then(()=>(en(),ws)),{Signature:u}=await import("ethers"),l=c(t,e.delegateToAddress,r),h;try{h=await n.request({method:"eth_sign",params:[o,l]})}catch(y){try{h=await n.request({method:"personal_sign",params:[l,o]})}catch(k){throw new Error(`Failed to request signature from wallet. eth_sign error: ${y.message}, personal_sign error: ${k.message}`)}}let g=u.from(h),d={chainId:t,address:e.delegateToAddress.toLowerCase(),nonce:r,yParity:g.yParity,r:g.r,s:g.s};if(!a(t,e.delegateToAddress,r,d,o))throw new Error(`Signature verification failed. Expected signer: ${o}, but signature does not match. This may indicate a wallet implementation issue.`);return d}function Ss(){if(typeof window>"u")return null;let n=window;return n.ethereum?n.ethereum:n.web3?.currentProvider?n.web3.currentProvider:null}function xs(n){let e=n;return e.isMetaMask?"MetaMask":e.isRabby?"Rabby":e.isCoinbaseWallet?"Coinbase Wallet":e.isBraveWallet?"Brave Wallet":e.isTokenPocket?"TokenPocket":e.isTrust?"Trust Wallet":"Unknown Wallet"}async function vs(n){try{let e=await n.request({method:"eth_accounts"});return Array.isArray(e)}catch{return!1}}var As=w(()=>{"use strict"});var Ko={};B(Ko,{extractRS:()=>Oo});function Oo(n){let e=0;if(n[e++]!==48)throw new Error("Invalid DER signature: missing sequence tag");if(e++,n[e++]!==2)throw new Error("Invalid DER signature: missing r integer tag");let t=n[e++];t>32&&(e++,t--);let r=n.slice(e,e+t);if(e+=t,n[e++]!==2)throw new Error("Invalid DER signature: missing s integer tag");let s=n[e++];s>32&&(e++,s--);let i=n.slice(e,e+s),o=new Uint8Array(32),c=new Uint8Array(32);o.set(r,32-r.length),c.set(i,32-i.length);let a=BigInt("0xFFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC2FC632551"),u=BigInt("0x"+Buffer.from(c).toString("hex"));u>a/2n&&(u=a-u);let l="0x"+Buffer.from(o).toString("hex"),h="0x"+u.toString(16).padStart(64,"0");return{r:l,s:h}}var ks=w(()=>{"use strict"});var zo={};B(zo,{BackupStorage:()=>qe});var qe,tn=w(()=>{"use strict";qe=class{constructor(){this.dbName="Web3PasskeyBackup";this.version=1;this.db=null}async init(){return typeof indexedDB>"u"?Promise.resolve():new Promise((e,t)=>{let r=indexedDB.open(this.dbName,this.version);r.onerror=()=>t(r.error),r.onsuccess=()=>{this.db=r.result,e()},r.onupgradeneeded=s=>{let i=s.target.result;if(!i.objectStoreNames.contains("backups")){let o=i.createObjectStore("backups",{keyPath:"id"});o.createIndex("ethereumAddress","ethereumAddress",{unique:!1}),o.createIndex("method","method",{unique:!1}),o.createIndex("createdAt","createdAt",{unique:!1})}}})}async storeBackupMetadata(e){return this.db||await this.init(),this.db?new Promise((t,r)=>{let o=this.db.transaction(["backups"],"readwrite").objectStore("backups").put(e);o.onsuccess=()=>t(),o.onerror=()=>r(o.error)}):Promise.resolve()}async getBackupsByAddress(e){return this.db||await this.init(),this.db?new Promise((t,r)=>{let c=this.db.transaction(["backups"],"readonly").objectStore("backups").index("ethereumAddress").getAll(e);c.onsuccess=()=>t(c.result),c.onerror=()=>r(c.error)}):Promise.resolve([])}async getBackupById(e){return this.db||await this.init(),this.db?new Promise((t,r)=>{let o=this.db.transaction(["backups"],"readonly").objectStore("backups").get(e);o.onsuccess=()=>t(o.result||null),o.onerror=()=>r(o.error)}):Promise.resolve(null)}async deleteBackup(e){return this.db||await this.init(),this.db?new Promise((t,r)=>{let o=this.db.transaction(["backups"],"readwrite").objectStore("backups").delete(e);o.onsuccess=()=>t(),o.onerror=()=>r(o.error)}):Promise.resolve()}async getBackupCountByMethod(e){return this.db||await this.init(),this.db?new Promise((t,r)=>{let c=this.db.transaction(["backups"],"readonly").objectStore("backups").index("method").count(e);c.onsuccess=()=>t(c.result),c.onerror=()=>r(c.error)}):Promise.resolve(0)}}});var $o={};B($o,{decryptWithPassword:()=>Xt,deriveAddressChecksum:()=>X,deriveKeyFromPassword:()=>rn,encryptWithPassword:()=>He,getDeviceFingerprint:()=>Se,validatePasswordStrength:()=>Wo});async function rn(n,e,t=31e4){let s=new TextEncoder().encode(n),i=await crypto.subtle.importKey("raw",s,"PBKDF2",!1,["deriveBits","deriveKey"]);return crypto.subtle.deriveKey({name:"PBKDF2",salt:e,iterations:t,hash:"SHA-256"},i,{name:"AES-GCM",length:256},!1,["encrypt","decrypt"])}async function He(n,e,t){let s=await rn(e,t,31e4),o=new TextEncoder().encode(n),c=crypto.getRandomValues(new Uint8Array(12)),a=await crypto.subtle.encrypt({name:"AES-GCM",iv:c},s,o);return{encrypted:Qt(a),iv:Qt(c),salt:Qt(t),iterations:31e4}}async function Xt(n,e,t,r,s=31e4){let i=Es(t),o=await rn(e,i,s),c=Es(r),a=Es(n),u=await crypto.subtle.decrypt({name:"AES-GCM",iv:c},o,a);return new TextDecoder().decode(u)}async function Se(){let e=[navigator.userAgent,navigator.language,new Date().getTimezoneOffset().toString(),screen.width+"x"+screen.height,screen.colorDepth.toString()].join("|"),r=new TextEncoder().encode(e),s=await crypto.subtle.digest("SHA-256",r);return Qt(s)}async function X(n){let t=new TextEncoder().encode(n.toLowerCase()),r=await crypto.subtle.digest("SHA-256",t);return Qt(r).substring(0,16)}function Wo(n){let e=[],t=0;return n.length<12?e.push("Password must be at least 12 characters"):t+=25,/[A-Z]/.test(n)?t+=15:e.push("Add at least one uppercase letter"),/[a-z]/.test(n)?t+=15:e.push("Add at least one lowercase letter"),/[0-9]/.test(n)?t+=15:e.push("Add at least one number"),/[!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?]/.test(n)?t+=15:e.push("Add at least one special character"),n.length>=16&&(t+=10),n.length>=20&&(t+=5),["password","12345678","qwerty","abc123","password123","admin","letmein"].some(s=>n.toLowerCase().includes(s))&&(e.push("Password is too common"),t=Math.min(t,25)),{valid:t>=50&&e.length===0,score:Math.min(t,100),feedback:e}}function Qt(n){let e=n instanceof Uint8Array?n:new Uint8Array(n),t="";for(let r=0;r<e.byteLength;r++)t+=String.fromCharCode(e[r]);return btoa(t)}function Es(n){let e=ut(n),t=new Uint8Array(e.length);for(let r=0;r<e.length;r++)t[r]=e.charCodeAt(r);return t}var Ve=w(()=>{"use strict";me()});var Ho=D((Dm,qo)=>{"use strict";qo.exports=function(){return typeof Promise=="function"&&Promise.prototype&&Promise.prototype.then}});var Re=D(Ge=>{"use strict";var Cs,Hd=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];Ge.getSymbolSize=function(e){if(!e)throw new Error('"version" cannot be null or undefined');if(e<1||e>40)throw new Error('"version" should be in range from 1 to 40');return e*4+17};Ge.getSymbolTotalCodewords=function(e){return Hd[e]};Ge.getBCHDigit=function(n){let e=0;for(;n!==0;)e++,n>>>=1;return e};Ge.setToSJISFunction=function(e){if(typeof e!="function")throw new Error('"toSJISFunc" is not a valid function.');Cs=e};Ge.isKanjiModeEnabled=function(){return typeof Cs<"u"};Ge.toSJIS=function(e){return Cs(e)}});var nn=D(oe=>{"use strict";oe.L={bit:1};oe.M={bit:0};oe.Q={bit:3};oe.H={bit:2};function Vd(n){if(typeof n!="string")throw new Error("Param is not a string");switch(n.toLowerCase()){case"l":case"low":return oe.L;case"m":case"medium":return oe.M;case"q":case"quartile":return oe.Q;case"h":case"high":return oe.H;default:throw new Error("Unknown EC Level: "+n)}}oe.isValid=function(e){return e&&typeof e.bit<"u"&&e.bit>=0&&e.bit<4};oe.from=function(e,t){if(oe.isValid(e))return e;try{return Vd(e)}catch{return t}}});var Yo=D((Fm,Go)=>{"use strict";function Vo(){this.buffer=[],this.length=0}Vo.prototype={get:function(n){let e=Math.floor(n/8);return(this.buffer[e]>>>7-n%8&1)===1},put:function(n,e){for(let t=0;t<e;t++)this.putBit((n>>>e-t-1&1)===1)},getLengthInBits:function(){return this.length},putBit:function(n){let e=Math.floor(this.length/8);this.buffer.length<=e&&this.buffer.push(0),n&&(this.buffer[e]|=128>>>this.length%8),this.length++}};Go.exports=Vo});var Jo=D((Mm,jo)=>{"use strict";function Zt(n){if(!n||n<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=n,this.data=new Uint8Array(n*n),this.reservedBit=new Uint8Array(n*n)}Zt.prototype.set=function(n,e,t,r){let s=n*this.size+e;this.data[s]=t,r&&(this.reservedBit[s]=!0)};Zt.prototype.get=function(n,e){return this.data[n*this.size+e]};Zt.prototype.xor=function(n,e,t){this.data[n*this.size+e]^=t};Zt.prototype.isReserved=function(n,e){return this.reservedBit[n*this.size+e]};jo.exports=Zt});var Qo=D(sn=>{"use strict";var Gd=Re().getSymbolSize;sn.getRowColCoords=function(e){if(e===1)return[];let t=Math.floor(e/7)+2,r=Gd(e),s=r===145?26:Math.ceil((r-13)/(2*t-2))*2,i=[r-7];for(let o=1;o<t-1;o++)i[o]=i[o-1]-s;return i.push(6),i.reverse()};sn.getPositions=function(e){let t=[],r=sn.getRowColCoords(e),s=r.length;for(let i=0;i<s;i++)for(let o=0;o<s;o++)i===0&&o===0||i===0&&o===s-1||i===s-1&&o===0||t.push([r[i],r[o]]);return t}});var ea=D(Zo=>{"use strict";var Yd=Re().getSymbolSize,Xo=7;Zo.getPositions=function(e){let t=Yd(e);return[[0,0],[t-Xo,0],[0,t-Xo]]}});var ta=D(M=>{"use strict";M.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};var Ye={N1:3,N2:3,N3:40,N4:10};M.isValid=function(e){return e!=null&&e!==""&&!isNaN(e)&&e>=0&&e<=7};M.from=function(e){return M.isValid(e)?parseInt(e,10):void 0};M.getPenaltyN1=function(e){let t=e.size,r=0,s=0,i=0,o=null,c=null;for(let a=0;a<t;a++){s=i=0,o=c=null;for(let u=0;u<t;u++){let l=e.get(a,u);l===o?s++:(s>=5&&(r+=Ye.N1+(s-5)),o=l,s=1),l=e.get(u,a),l===c?i++:(i>=5&&(r+=Ye.N1+(i-5)),c=l,i=1)}s>=5&&(r+=Ye.N1+(s-5)),i>=5&&(r+=Ye.N1+(i-5))}return r};M.getPenaltyN2=function(e){let t=e.size,r=0;for(let s=0;s<t-1;s++)for(let i=0;i<t-1;i++){let o=e.get(s,i)+e.get(s,i+1)+e.get(s+1,i)+e.get(s+1,i+1);(o===4||o===0)&&r++}return r*Ye.N2};M.getPenaltyN3=function(e){let t=e.size,r=0,s=0,i=0;for(let o=0;o<t;o++){s=i=0;for(let c=0;c<t;c++)s=s<<1&2047|e.get(o,c),c>=10&&(s===1488||s===93)&&r++,i=i<<1&2047|e.get(c,o),c>=10&&(i===1488||i===93)&&r++}return r*Ye.N3};M.getPenaltyN4=function(e){let t=0,r=e.data.length;for(let i=0;i<r;i++)t+=e.data[i];return Math.abs(Math.ceil(t*100/r/5)-10)*Ye.N4};function jd(n,e,t){switch(n){case M.Patterns.PATTERN000:return(e+t)%2===0;case M.Patterns.PATTERN001:return e%2===0;case M.Patterns.PATTERN010:return t%3===0;case M.Patterns.PATTERN011:return(e+t)%3===0;case M.Patterns.PATTERN100:return(Math.floor(e/2)+Math.floor(t/3))%2===0;case M.Patterns.PATTERN101:return e*t%2+e*t%3===0;case M.Patterns.PATTERN110:return(e*t%2+e*t%3)%2===0;case M.Patterns.PATTERN111:return(e*t%3+(e+t)%2)%2===0;default:throw new Error("bad maskPattern:"+n)}}M.applyMask=function(e,t){let r=t.size;for(let s=0;s<r;s++)for(let i=0;i<r;i++)t.isReserved(i,s)||t.xor(i,s,jd(e,i,s))};M.getBestMask=function(e,t){let r=Object.keys(M.Patterns).length,s=0,i=1/0;for(let o=0;o<r;o++){t(o),M.applyMask(o,e);let c=M.getPenaltyN1(e)+M.getPenaltyN2(e)+M.getPenaltyN3(e)+M.getPenaltyN4(e);M.applyMask(o,e),c<i&&(i=c,s=o)}return s}});var Is=D(Ps=>{"use strict";var Te=nn(),on=[1,1,1,1,1,1,1,1,1,1,2,2,1,2,2,4,1,2,4,4,2,4,4,4,2,4,6,5,2,4,6,6,2,5,8,8,4,5,8,8,4,5,8,11,4,8,10,11,4,9,12,16,4,9,16,16,6,10,12,18,6,10,17,16,6,11,16,19,6,13,18,21,7,14,21,25,8,16,20,25,8,17,23,25,9,17,23,34,9,18,25,30,10,20,27,32,12,21,29,35,12,23,34,37,12,25,34,40,13,26,35,42,14,28,38,45,15,29,40,48,16,31,43,51,17,33,45,54,18,35,48,57,19,37,51,60,19,38,53,63,20,40,56,66,21,43,59,70,22,45,62,74,24,47,65,77,25,49,68,81],an=[7,10,13,17,10,16,22,28,15,26,36,44,20,36,52,64,26,48,72,88,36,64,96,112,40,72,108,130,48,88,132,156,60,110,160,192,72,130,192,224,80,150,224,264,96,176,260,308,104,198,288,352,120,216,320,384,132,240,360,432,144,280,408,480,168,308,448,532,180,338,504,588,196,364,546,650,224,416,600,700,224,442,644,750,252,476,690,816,270,504,750,900,300,560,810,960,312,588,870,1050,336,644,952,1110,360,700,1020,1200,390,728,1050,1260,420,784,1140,1350,450,812,1200,1440,480,868,1290,1530,510,924,1350,1620,540,980,1440,1710,570,1036,1530,1800,570,1064,1590,1890,600,1120,1680,1980,630,1204,1770,2100,660,1260,1860,2220,720,1316,1950,2310,750,1372,2040,2430];Ps.getBlocksCount=function(e,t){switch(t){case Te.L:return on[(e-1)*4+0];case Te.M:return on[(e-1)*4+1];case Te.Q:return on[(e-1)*4+2];case Te.H:return on[(e-1)*4+3];default:return}};Ps.getTotalCodewordsCount=function(e,t){switch(t){case Te.L:return an[(e-1)*4+0];case Te.M:return an[(e-1)*4+1];case Te.Q:return an[(e-1)*4+2];case Te.H:return an[(e-1)*4+3];default:return}}});var ra=D(ln=>{"use strict";var er=new Uint8Array(512),cn=new Uint8Array(256);(function(){let e=1;for(let t=0;t<255;t++)er[t]=e,cn[e]=t,e<<=1,e&256&&(e^=285);for(let t=255;t<512;t++)er[t]=er[t-255]})();ln.log=function(e){if(e<1)throw new Error("log("+e+")");return cn[e]};ln.exp=function(e){return er[e]};ln.mul=function(e,t){return e===0||t===0?0:er[cn[e]+cn[t]]}});var na=D(tr=>{"use strict";var Bs=ra();tr.mul=function(e,t){let r=new Uint8Array(e.length+t.length-1);for(let s=0;s<e.length;s++)for(let i=0;i<t.length;i++)r[s+i]^=Bs.mul(e[s],t[i]);return r};tr.mod=function(e,t){let r=new Uint8Array(e);for(;r.length-t.length>=0;){let s=r[0];for(let o=0;o<t.length;o++)r[o]^=Bs.mul(t[o],s);let i=0;for(;i<r.length&&r[i]===0;)i++;r=r.slice(i)}return r};tr.generateECPolynomial=function(e){let t=new Uint8Array([1]);for(let r=0;r<e;r++)t=tr.mul(t,new Uint8Array([1,Bs.exp(r)]));return t}});var oa=D((zm,ia)=>{"use strict";var sa=na();function Ds(n){this.genPoly=void 0,this.degree=n,this.degree&&this.initialize(this.degree)}Ds.prototype.initialize=function(e){this.degree=e,this.genPoly=sa.generateECPolynomial(this.degree)};Ds.prototype.encode=function(e){if(!this.genPoly)throw new Error("Encoder not initialized");let t=new Uint8Array(e.length+this.degree);t.set(e);let r=sa.mod(t,this.genPoly),s=this.degree-r.length;if(s>0){let i=new Uint8Array(this.degree);return i.set(r,s),i}return r};ia.exports=Ds});var Rs=D(aa=>{"use strict";aa.isValid=function(e){return!isNaN(e)&&e>=1&&e<=40}});var Ts=D(ke=>{"use strict";var ca="[0-9]+",Jd="[A-Z $%*+\\-./:]+",rr="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";rr=rr.replace(/u/g,"\\u");var Qd="(?:(?![A-Z0-9 $%*+\\-./:]|"+rr+`)(?:.|[\r
2
- ]))+`;ke.KANJI=new RegExp(rr,"g");ke.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g");ke.BYTE=new RegExp(Qd,"g");ke.NUMERIC=new RegExp(ca,"g");ke.ALPHANUMERIC=new RegExp(Jd,"g");var Xd=new RegExp("^"+rr+"$"),Zd=new RegExp("^"+ca+"$"),eh=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");ke.testKanji=function(e){return Xd.test(e)};ke.testNumeric=function(e){return Zd.test(e)};ke.testAlphanumeric=function(e){return eh.test(e)}});var Fe=D(L=>{"use strict";var th=Rs(),Fs=Ts();L.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]};L.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]};L.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]};L.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]};L.MIXED={bit:-1};L.getCharCountIndicator=function(e,t){if(!e.ccBits)throw new Error("Invalid mode: "+e);if(!th.isValid(t))throw new Error("Invalid version: "+t);return t>=1&&t<10?e.ccBits[0]:t<27?e.ccBits[1]:e.ccBits[2]};L.getBestModeForData=function(e){return Fs.testNumeric(e)?L.NUMERIC:Fs.testAlphanumeric(e)?L.ALPHANUMERIC:Fs.testKanji(e)?L.KANJI:L.BYTE};L.toString=function(e){if(e&&e.id)return e.id;throw new Error("Invalid mode")};L.isValid=function(e){return e&&e.bit&&e.ccBits};function rh(n){if(typeof n!="string")throw new Error("Param is not a string");switch(n.toLowerCase()){case"numeric":return L.NUMERIC;case"alphanumeric":return L.ALPHANUMERIC;case"kanji":return L.KANJI;case"byte":return L.BYTE;default:throw new Error("Unknown mode: "+n)}}L.from=function(e,t){if(L.isValid(e))return e;try{return rh(e)}catch{return t}}});var fa=D(je=>{"use strict";var un=Re(),nh=Is(),la=nn(),Me=Fe(),Ms=Rs(),da=7973,ua=un.getBCHDigit(da);function sh(n,e,t){for(let r=1;r<=40;r++)if(e<=je.getCapacity(r,t,n))return r}function ha(n,e){return Me.getCharCountIndicator(n,e)+4}function ih(n,e){let t=0;return n.forEach(function(r){let s=ha(r.mode,e);t+=s+r.getBitsLength()}),t}function oh(n,e){for(let t=1;t<=40;t++)if(ih(n,t)<=je.getCapacity(t,e,Me.MIXED))return t}je.from=function(e,t){return Ms.isValid(e)?parseInt(e,10):t};je.getCapacity=function(e,t,r){if(!Ms.isValid(e))throw new Error("Invalid QR Code version");typeof r>"u"&&(r=Me.BYTE);let s=un.getSymbolTotalCodewords(e),i=nh.getTotalCodewordsCount(e,t),o=(s-i)*8;if(r===Me.MIXED)return o;let c=o-ha(r,e);switch(r){case Me.NUMERIC:return Math.floor(c/10*3);case Me.ALPHANUMERIC:return Math.floor(c/11*2);case Me.KANJI:return Math.floor(c/13);case Me.BYTE:default:return Math.floor(c/8)}};je.getBestVersionForData=function(e,t){let r,s=la.from(t,la.M);if(Array.isArray(e)){if(e.length>1)return oh(e,s);if(e.length===0)return 1;r=e[0]}else r=e;return sh(r.mode,r.getLength(),s)};je.getEncodedBits=function(e){if(!Ms.isValid(e)||e<7)throw new Error("Invalid QR Code version");let t=e<<12;for(;un.getBCHDigit(t)-ua>=0;)t^=da<<un.getBCHDigit(t)-ua;return e<<12|t}});var ya=D(ma=>{"use strict";var Ns=Re(),ga=1335,ah=21522,pa=Ns.getBCHDigit(ga);ma.getEncodedBits=function(e,t){let r=e.bit<<3|t,s=r<<10;for(;Ns.getBCHDigit(s)-pa>=0;)s^=ga<<Ns.getBCHDigit(s)-pa;return(r<<10|s)^ah}});var ba=D((Gm,wa)=>{"use strict";var ch=Fe();function pt(n){this.mode=ch.NUMERIC,this.data=n.toString()}pt.getBitsLength=function(e){return 10*Math.floor(e/3)+(e%3?e%3*3+1:0)};pt.prototype.getLength=function(){return this.data.length};pt.prototype.getBitsLength=function(){return pt.getBitsLength(this.data.length)};pt.prototype.write=function(e){let t,r,s;for(t=0;t+3<=this.data.length;t+=3)r=this.data.substr(t,3),s=parseInt(r,10),e.put(s,10);let i=this.data.length-t;i>0&&(r=this.data.substr(t),s=parseInt(r,10),e.put(s,i*3+1))};wa.exports=pt});var xa=D((Ym,Sa)=>{"use strict";var lh=Fe(),Us=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"," ","$","%","*","+","-",".","/",":"];function gt(n){this.mode=lh.ALPHANUMERIC,this.data=n}gt.getBitsLength=function(e){return 11*Math.floor(e/2)+6*(e%2)};gt.prototype.getLength=function(){return this.data.length};gt.prototype.getBitsLength=function(){return gt.getBitsLength(this.data.length)};gt.prototype.write=function(e){let t;for(t=0;t+2<=this.data.length;t+=2){let r=Us.indexOf(this.data[t])*45;r+=Us.indexOf(this.data[t+1]),e.put(r,11)}this.data.length%2&&e.put(Us.indexOf(this.data[t]),6)};Sa.exports=gt});var Aa=D((jm,va)=>{"use strict";var uh=Fe();function mt(n){this.mode=uh.BYTE,typeof n=="string"?this.data=new TextEncoder().encode(n):this.data=new Uint8Array(n)}mt.getBitsLength=function(e){return e*8};mt.prototype.getLength=function(){return this.data.length};mt.prototype.getBitsLength=function(){return mt.getBitsLength(this.data.length)};mt.prototype.write=function(n){for(let e=0,t=this.data.length;e<t;e++)n.put(this.data[e],8)};va.exports=mt});var Ea=D((Jm,ka)=>{"use strict";var dh=Fe(),hh=Re();function yt(n){this.mode=dh.KANJI,this.data=n}yt.getBitsLength=function(e){return e*13};yt.prototype.getLength=function(){return this.data.length};yt.prototype.getBitsLength=function(){return yt.getBitsLength(this.data.length)};yt.prototype.write=function(n){let e;for(e=0;e<this.data.length;e++){let t=hh.toSJIS(this.data[e]);if(t>=33088&&t<=40956)t-=33088;else if(t>=57408&&t<=60351)t-=49472;else throw new Error("Invalid SJIS character: "+this.data[e]+`
3
- Make sure your charset is UTF-8`);t=(t>>>8&255)*192+(t&255),n.put(t,13)}};ka.exports=yt});var Ca=D((Qm,Ls)=>{"use strict";var nr={single_source_shortest_paths:function(n,e,t){var r={},s={};s[e]=0;var i=nr.PriorityQueue.make();i.push(e,0);for(var o,c,a,u,l,h,g,d,f;!i.empty();){o=i.pop(),c=o.value,u=o.cost,l=n[c]||{};for(a in l)l.hasOwnProperty(a)&&(h=l[a],g=u+h,d=s[a],f=typeof s[a]>"u",(f||d>g)&&(s[a]=g,i.push(a,g),r[a]=c))}if(typeof t<"u"&&typeof s[t]>"u"){var y=["Could not find a path from ",e," to ",t,"."].join("");throw new Error(y)}return r},extract_shortest_path_from_predecessor_list:function(n,e){for(var t=[],r=e,s;r;)t.push(r),s=n[r],r=n[r];return t.reverse(),t},find_path:function(n,e,t){var r=nr.single_source_shortest_paths(n,e,t);return nr.extract_shortest_path_from_predecessor_list(r,t)},PriorityQueue:{make:function(n){var e=nr.PriorityQueue,t={},r;n=n||{};for(r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);return t.queue=[],t.sorter=n.sorter||e.default_sorter,t},default_sorter:function(n,e){return n.cost-e.cost},push:function(n,e){var t={value:n,cost:e};this.queue.push(t),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return this.queue.length===0}}};typeof Ls<"u"&&(Ls.exports=nr)});var Ma=D(wt=>{"use strict";var R=Fe(),Ba=ba(),Da=xa(),Ra=Aa(),Ta=Ea(),sr=Ts(),dn=Re(),fh=Ca();function Pa(n){return unescape(encodeURIComponent(n)).length}function ir(n,e,t){let r=[],s;for(;(s=n.exec(t))!==null;)r.push({data:s[0],index:s.index,mode:e,length:s[0].length});return r}function Fa(n){let e=ir(sr.NUMERIC,R.NUMERIC,n),t=ir(sr.ALPHANUMERIC,R.ALPHANUMERIC,n),r,s;return dn.isKanjiModeEnabled()?(r=ir(sr.BYTE,R.BYTE,n),s=ir(sr.KANJI,R.KANJI,n)):(r=ir(sr.BYTE_KANJI,R.BYTE,n),s=[]),e.concat(t,r,s).sort(function(o,c){return o.index-c.index}).map(function(o){return{data:o.data,mode:o.mode,length:o.length}})}function _s(n,e){switch(e){case R.NUMERIC:return Ba.getBitsLength(n);case R.ALPHANUMERIC:return Da.getBitsLength(n);case R.KANJI:return Ta.getBitsLength(n);case R.BYTE:return Ra.getBitsLength(n)}}function ph(n){return n.reduce(function(e,t){let r=e.length-1>=0?e[e.length-1]:null;return r&&r.mode===t.mode?(e[e.length-1].data+=t.data,e):(e.push(t),e)},[])}function gh(n){let e=[];for(let t=0;t<n.length;t++){let r=n[t];switch(r.mode){case R.NUMERIC:e.push([r,{data:r.data,mode:R.ALPHANUMERIC,length:r.length},{data:r.data,mode:R.BYTE,length:r.length}]);break;case R.ALPHANUMERIC:e.push([r,{data:r.data,mode:R.BYTE,length:r.length}]);break;case R.KANJI:e.push([r,{data:r.data,mode:R.BYTE,length:Pa(r.data)}]);break;case R.BYTE:e.push([{data:r.data,mode:R.BYTE,length:Pa(r.data)}])}}return e}function mh(n,e){let t={},r={start:{}},s=["start"];for(let i=0;i<n.length;i++){let o=n[i],c=[];for(let a=0;a<o.length;a++){let u=o[a],l=""+i+a;c.push(l),t[l]={node:u,lastCount:0},r[l]={};for(let h=0;h<s.length;h++){let g=s[h];t[g]&&t[g].node.mode===u.mode?(r[g][l]=_s(t[g].lastCount+u.length,u.mode)-_s(t[g].lastCount,u.mode),t[g].lastCount+=u.length):(t[g]&&(t[g].lastCount=u.length),r[g][l]=_s(u.length,u.mode)+4+R.getCharCountIndicator(u.mode,e))}}s=c}for(let i=0;i<s.length;i++)r[s[i]].end=0;return{map:r,table:t}}function Ia(n,e){let t,r=R.getBestModeForData(n);if(t=R.from(e,r),t!==R.BYTE&&t.bit<r.bit)throw new Error('"'+n+'" cannot be encoded with mode '+R.toString(t)+`.
4
- Suggested mode is: `+R.toString(r));switch(t===R.KANJI&&!dn.isKanjiModeEnabled()&&(t=R.BYTE),t){case R.NUMERIC:return new Ba(n);case R.ALPHANUMERIC:return new Da(n);case R.KANJI:return new Ta(n);case R.BYTE:return new Ra(n)}}wt.fromArray=function(e){return e.reduce(function(t,r){return typeof r=="string"?t.push(Ia(r,null)):r.data&&t.push(Ia(r.data,r.mode)),t},[])};wt.fromString=function(e,t){let r=Fa(e,dn.isKanjiModeEnabled()),s=gh(r),i=mh(s,t),o=fh.find_path(i.map,"start","end"),c=[];for(let a=1;a<o.length-1;a++)c.push(i.table[o[a]].node);return wt.fromArray(ph(c))};wt.rawSplit=function(e){return wt.fromArray(Fa(e,dn.isKanjiModeEnabled()))}});var Ua=D(Na=>{"use strict";var fn=Re(),Os=nn(),yh=Yo(),wh=Jo(),bh=Qo(),Sh=ea(),Ws=ta(),$s=Is(),xh=oa(),hn=fa(),vh=ya(),Ah=Fe(),Ks=Ma();function kh(n,e){let t=n.size,r=Sh.getPositions(e);for(let s=0;s<r.length;s++){let i=r[s][0],o=r[s][1];for(let c=-1;c<=7;c++)if(!(i+c<=-1||t<=i+c))for(let a=-1;a<=7;a++)o+a<=-1||t<=o+a||(c>=0&&c<=6&&(a===0||a===6)||a>=0&&a<=6&&(c===0||c===6)||c>=2&&c<=4&&a>=2&&a<=4?n.set(i+c,o+a,!0,!0):n.set(i+c,o+a,!1,!0))}}function Eh(n){let e=n.size;for(let t=8;t<e-8;t++){let r=t%2===0;n.set(t,6,r,!0),n.set(6,t,r,!0)}}function Ch(n,e){let t=bh.getPositions(e);for(let r=0;r<t.length;r++){let s=t[r][0],i=t[r][1];for(let o=-2;o<=2;o++)for(let c=-2;c<=2;c++)o===-2||o===2||c===-2||c===2||o===0&&c===0?n.set(s+o,i+c,!0,!0):n.set(s+o,i+c,!1,!0)}}function Ph(n,e){let t=n.size,r=hn.getEncodedBits(e),s,i,o;for(let c=0;c<18;c++)s=Math.floor(c/3),i=c%3+t-8-3,o=(r>>c&1)===1,n.set(s,i,o,!0),n.set(i,s,o,!0)}function zs(n,e,t){let r=n.size,s=vh.getEncodedBits(e,t),i,o;for(i=0;i<15;i++)o=(s>>i&1)===1,i<6?n.set(i,8,o,!0):i<8?n.set(i+1,8,o,!0):n.set(r-15+i,8,o,!0),i<8?n.set(8,r-i-1,o,!0):i<9?n.set(8,15-i-1+1,o,!0):n.set(8,15-i-1,o,!0);n.set(r-8,8,1,!0)}function Ih(n,e){let t=n.size,r=-1,s=t-1,i=7,o=0;for(let c=t-1;c>0;c-=2)for(c===6&&c--;;){for(let a=0;a<2;a++)if(!n.isReserved(s,c-a)){let u=!1;o<e.length&&(u=(e[o]>>>i&1)===1),n.set(s,c-a,u),i--,i===-1&&(o++,i=7)}if(s+=r,s<0||t<=s){s-=r,r=-r;break}}}function Bh(n,e,t){let r=new yh;t.forEach(function(a){r.put(a.mode.bit,4),r.put(a.getLength(),Ah.getCharCountIndicator(a.mode,n)),a.write(r)});let s=fn.getSymbolTotalCodewords(n),i=$s.getTotalCodewordsCount(n,e),o=(s-i)*8;for(r.getLengthInBits()+4<=o&&r.put(0,4);r.getLengthInBits()%8!==0;)r.putBit(0);let c=(o-r.getLengthInBits())/8;for(let a=0;a<c;a++)r.put(a%2?17:236,8);return Dh(r,n,e)}function Dh(n,e,t){let r=fn.getSymbolTotalCodewords(e),s=$s.getTotalCodewordsCount(e,t),i=r-s,o=$s.getBlocksCount(e,t),c=r%o,a=o-c,u=Math.floor(r/o),l=Math.floor(i/o),h=l+1,g=u-l,d=new xh(g),f=0,y=new Array(o),k=new Array(o),m=0,b=new Uint8Array(n.buffer);for(let x=0;x<o;x++){let P=x<a?l:h;y[x]=b.slice(f,f+P),k[x]=d.encode(y[x]),f+=P,m=Math.max(m,P)}let v=new Uint8Array(r),A=0,E,C;for(E=0;E<m;E++)for(C=0;C<o;C++)E<y[C].length&&(v[A++]=y[C][E]);for(E=0;E<g;E++)for(C=0;C<o;C++)v[A++]=k[C][E];return v}function Rh(n,e,t,r){let s;if(Array.isArray(n))s=Ks.fromArray(n);else if(typeof n=="string"){let u=e;if(!u){let l=Ks.rawSplit(n);u=hn.getBestVersionForData(l,t)}s=Ks.fromString(n,u||40)}else throw new Error("Invalid data");let i=hn.getBestVersionForData(s,t);if(!i)throw new Error("The amount of data is too big to be stored in a QR Code");if(!e)e=i;else if(e<i)throw new Error(`
1
+ var Qd=Object.create;var Gr=Object.defineProperty;var Zd=Object.getOwnPropertyDescriptor;var Xd=Object.getOwnPropertyNames;var eh=Object.getPrototypeOf,th=Object.prototype.hasOwnProperty;var rh=(r,e,t)=>e in r?Gr(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t;var p=(r,e)=>()=>(r&&(e=r(r=0)),e);var P=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),E=(r,e)=>{for(var t in e)Gr(r,t,{get:e[t],enumerable:!0})},nh=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of Xd(e))!th.call(r,s)&&s!==t&&Gr(r,s,{get:()=>e[s],enumerable:!(n=Zd(e,s))||n.enumerable});return r};var er=(r,e,t)=>(t=r!=null?Qd(eh(r)):{},nh(e||!r||!r.__esModule?Gr(t,"default",{value:r,enumerable:!0}):t,r));var f=(r,e,t)=>rh(r,typeof e!="symbol"?e+"":e,t);var V,K,tr,w,M,B,ws,G=p(()=>{"use strict";V=class extends Error{constructor(t,n,s){super(t);this.code=n;this.originalError=s;this.name="Web3PasskeyError"}},K=class extends V{constructor(e,t){super(e,"AUTHENTICATION_ERROR",t),this.name="AuthenticationError"}},tr=class extends V{constructor(e,t){super(e,"REGISTRATION_ERROR",t),this.name="RegistrationError"}},w=class extends V{constructor(e,t){super(e,"WALLET_ERROR",t),this.name="WalletError"}},M=class extends V{constructor(e,t){super(e,"CRYPTO_ERROR",t),this.name="CryptoError"}},B=class extends V{constructor(e,t){super(e,"STORAGE_ERROR",t),this.name="StorageError"}},ws=class extends V{constructor(t,n,s){super(t,"API_ERROR",s);this.statusCode=n;this.name="ApiError"}}});var As={};E(As,{arrayBufferToBase64Url:()=>he,base64ToArrayBuffer:()=>Oo,base64UrlDecode:()=>Wo,base64UrlToArrayBuffer:()=>L,safeAtob:()=>yt,safeBtoa:()=>zo});function L(r){try{let e=r.replace(/-/g,"+").replace(/_/g,"/"),t=(4-e.length%4)%4;e+="=".repeat(t);let n=atob(e),s=new Uint8Array(n.length);for(let i=0;i<n.length;i++)s[i]=n.charCodeAt(i);return s.buffer}catch(e){throw new Error(`Failed to decode base64url string: ${e instanceof Error?e.message:"Invalid format"}`)}}function he(r){let e=r instanceof Uint8Array?r:new Uint8Array(r),t="";for(let n=0;n<e.length;n++)t+=String.fromCharCode(e[n]);return btoa(t).replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,"")}function Oo(r){try{let e=atob(r),t=new Uint8Array(e.length);for(let n=0;n<e.length;n++)t[n]=e.charCodeAt(n);return t.buffer}catch(e){throw new Error(`Failed to decode base64 string: ${e instanceof Error?e.message:"Invalid format"}`)}}function yt(r){try{let e=r.replace(/-/g,"+").replace(/_/g,"/"),t=(4-e.length%4)%4;return e+="=".repeat(t),atob(e)}catch(e){throw new Error(`Failed to decode base64 string: ${e instanceof Error?e.message:"Invalid format"}`)}}function zo(r){try{let e=new TextEncoder().encode(r),t="";for(let n=0;n<e.length;n++)t+=String.fromCharCode(e[n]);return btoa(t)}catch(e){throw new Error(`Failed to encode string: ${e instanceof Error?e.message:"Invalid input"}`)}}function Wo(r){return L(r)}var fe=p(()=>{"use strict"});var Me={};E(Me,{decryptData:()=>ie,deriveEncryptionKey:()=>oh,deriveEncryptionKeyAuto:()=>Y,deriveEncryptionKeyFromWebAuthn:()=>$o,encryptData:()=>se,generateChallenge:()=>Fe,generateSalt:()=>xs,hashCredentialId:()=>wt,hashPublicKey:()=>vs});async function $o(r,e){try{if(r.byteLength!==32)throw new Error("PRF output must be 32 bytes");if(e.byteLength!==32)throw new Error("Salt must be 32 bytes");let t=await crypto.subtle.importKey("raw",r,{name:"PBKDF2"},!1,["deriveKey"]);return crypto.subtle.deriveKey({name:"PBKDF2",salt:e,iterations:21e4,hash:"SHA-256"},t,{name:"AES-GCM",length:256},!1,["encrypt","decrypt"])}catch(t){throw new M("Failed to derive encryption key from WebAuthn PRF",t)}}function xs(){return crypto.getRandomValues(new Uint8Array(32))}async function Y(r,e,t,n){if(r&&e)return $o(r,e);console.warn("\u26A0\uFE0F SECURITY WARNING: Using insecure legacy encryption. Wallet is vulnerable to offline decryption attacks. Migrate to PRF-based encryption immediately.");try{let s=n?`w3pk-v4:${t}:${n}`:`w3pk-v4:${t}`,i=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(s)),o=await crypto.subtle.importKey("raw",i,{name:"PBKDF2"},!1,["deriveKey"]),a=await crypto.subtle.digest("SHA-256",new TextEncoder().encode("w3pk-salt-v4"));return crypto.subtle.deriveKey({name:"PBKDF2",salt:new Uint8Array(a),iterations:21e4,hash:"SHA-256"},o,{name:"AES-GCM",length:256},!1,["encrypt","decrypt"])}catch(s){throw new M("Failed to derive encryption key from WebAuthn",s)}}async function oh(r,e){try{let t=e?`w3pk-v2:${r}:${e}`:`w3pk-v2:${r}`,n=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(t)),s=await crypto.subtle.importKey("raw",n,{name:"PBKDF2"},!1,["deriveKey"]),i=await crypto.subtle.digest("SHA-256",new TextEncoder().encode("w3pk-salt-v2"));return crypto.subtle.deriveKey({name:"PBKDF2",salt:new Uint8Array(i),iterations:21e4,hash:"SHA-256"},s,{name:"AES-GCM",length:256},!1,["encrypt","decrypt"])}catch(t){throw new M("Failed to derive encryption key",t)}}function Fe(){let r=new Uint8Array(32);return crypto.getRandomValues(r),he(r)}async function se(r,e){try{let t=crypto.getRandomValues(new Uint8Array(12)),n=new TextEncoder().encode(r),s=await crypto.subtle.encrypt({name:"AES-GCM",iv:t},e,n),i=new Uint8Array(t.length+s.byteLength);i.set(t),i.set(new Uint8Array(s),t.length);let o="";for(let a=0;a<i.length;a++)o+=String.fromCharCode(i[a]);return btoa(o)}catch(t){throw new M("Failed to encrypt data",t)}}async function ie(r,e){try{if(!r||r.length<16)throw new Error("Invalid encrypted data: too small");let t=yt(r),n=new Uint8Array(t.length);for(let a=0;a<t.length;a++)n[a]=t.charCodeAt(a);if(n.length<12)throw new Error("Invalid encrypted data: missing IV");let s=n.slice(0,12),i=n.slice(12);if(i.length===0)throw new Error("Invalid encrypted data: no content");let o=await crypto.subtle.decrypt({name:"AES-GCM",iv:s},e,i);return new TextDecoder().decode(o)}catch(t){throw new M(`Data decryption failed: ${t instanceof Error?t.message:"Unknown error"}`,t)}}async function wt(r){try{let e=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(`w3pk-cred-id:${r}`));return he(e)}catch(e){throw new M("Failed to hash credential ID",e)}}async function vs(r){try{let e=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(r));return he(e)}catch(e){throw new M("Failed to hash public key",e)}}var W=p(()=>{"use strict";G();fe()});var Jr={};E(Jr,{CredentialStorage:()=>R});async function qo(r){let e=new TextEncoder().encode(`w3pk-metadata-v1:${r}`),t=await crypto.subtle.digest("SHA-256",e),n=await crypto.subtle.importKey("raw",t,{name:"PBKDF2"},!1,["deriveKey"]);return await crypto.subtle.deriveKey({name:"PBKDF2",salt:new TextEncoder().encode("w3pk-metadata-salt-v1"),iterations:1e5,hash:"SHA-256"},n,{name:"AES-GCM",length:256},!1,["encrypt","decrypt"])}var Yr,jr,R,Ue=p(()=>{"use strict";G();W();Yr="w3pk_credential_",jr="w3pk_credential_index";R=class{constructor(e){if(e)this.storage=e;else if(typeof window<"u"&&window.localStorage)this.storage=window.localStorage;else throw new B("localStorage is not available")}async saveCredential(e){try{let t=await qo(e.id),n=await wt(e.id),s={id:n,encryptedUsername:await se(e.username,t),encryptedAddress:await se(e.ethereumAddress,t),publicKey:e.publicKey,publicKeyFingerprint:await vs(e.publicKey),createdAt:e.createdAt,lastUsed:e.lastUsed},i=`${Yr}${n}`;this.storage.setItem(i,JSON.stringify(s)),await this.addToIndex(e.id)}catch(t){throw new B("Failed to save credential",t)}}async getCredentialById(e){try{let t=await wt(e),n=`${Yr}${t}`,s=this.storage.getItem(n);if(!s)return null;let i=JSON.parse(s),o=await qo(e);return{id:e,publicKey:i.publicKey,username:await ie(i.encryptedUsername,o),ethereumAddress:await ie(i.encryptedAddress,o),createdAt:i.createdAt,lastUsed:i.lastUsed}}catch(t){throw new B("Failed to retrieve credential",t)}}async getCredentialByUsername(e){try{return(await this.getAllCredentials()).find(n=>n.username===e)||null}catch(t){throw new B("Failed to retrieve credential",t)}}async getCredentialByAddress(e){try{return(await this.getAllCredentials()).find(n=>n.ethereumAddress.toLowerCase()===e.toLowerCase())||null}catch(t){throw new B("Failed to retrieve credential",t)}}async getAllCredentials(){try{let e=await this.getIndex();return(await Promise.all(e.map(async n=>await this.getCredentialById(n)))).filter(n=>n!==null)}catch(e){throw new B("Failed to retrieve credentials",e)}}async userExists(e){return await this.getCredentialByUsername(e)!==null}async updateLastUsed(e){try{let t=await this.getCredentialById(e);t&&(t.lastUsed=new Date().toISOString(),await this.saveCredential(t))}catch(t){throw new B("Failed to update timestamp",t)}}async updateSignatureCounter(e,t){try{let n=await this.getCredentialById(e);n&&(n.signCount=t,n.lastUsed=new Date().toISOString(),await this.saveCredential(n))}catch(n){throw new B("Failed to update signature counter",n)}}async updateCredentialAddress(e,t){try{let n=await this.getCredentialById(e);n&&(n.ethereumAddress=t,n.lastUsed=new Date().toISOString(),await this.saveCredential(n))}catch(n){throw new B("Failed to update credential address",n)}}async deleteCredential(e){try{let t=await wt(e),n=`${Yr}${t}`;this.storage.removeItem(n),await this.removeFromIndex(e)}catch(t){throw new B("Failed to delete credential",t)}}async clearAll(){try{let e=await this.getIndex();(await Promise.all(e.map(async n=>await wt(n)))).forEach(n=>{let s=`${Yr}${n}`;this.storage.removeItem(s)}),this.storage.removeItem(jr)}catch(e){throw new B("Failed to clear credentials",e)}}async getIndex(){try{let e=this.storage.getItem(jr);return e?JSON.parse(e):[]}catch{return[]}}async addToIndex(e){let t=await this.getIndex();t.includes(e)||(t.push(e),this.storage.setItem(jr,JSON.stringify(t)))}async removeFromIndex(e){let n=(await this.getIndex()).filter(s=>s!==e);this.storage.setItem(jr,JSON.stringify(n))}}});var bt={};E(bt,{createWalletFromMnemonic:()=>Go,deriveWalletFromMnemonic:()=>tn,generateBIP39Wallet:()=>en});import{ethers as Xr}from"ethers";function en(){try{let r=Xr.Wallet.createRandom().mnemonic;if(!r)throw new Error("Failed to generate mnemonic");let e=r.phrase;return{address:Xr.HDNodeWallet.fromPhrase(e,void 0,"m/44'/60'/0'/0/0").address,mnemonic:e}}catch(r){throw new w("Wallet generation failed",r)}}function Go(r){try{if(!r||r.trim().split(/\s+/).length<12)throw new Error("Invalid mnemonic: must be at least 12 words");return Xr.HDNodeWallet.fromPhrase(r.trim(),void 0,"m/44'/60'/0'/0/0")}catch(e){throw new w(`Wallet creation failed: ${e instanceof Error?e.message:"Invalid mnemonic"}`,e)}}function tn(r,e=0){try{if(!r||r.trim().split(/\s+/).length<12)throw new Error("Invalid mnemonic: must be at least 12 words");if(e<0||!Number.isInteger(e))throw new Error("Index must be a non-negative integer");let t=`m/44'/60'/0'/0/${e}`,n=Xr.HDNodeWallet.fromPhrase(r.trim(),void 0,t);return{address:n.address,privateKey:n.privateKey}}catch(t){throw new w(`HD wallet derivation failed: ${t instanceof Error?t.message:"Unknown error"}`,t)}}var Ie=p(()=>{"use strict";G()});var nn={};E(nn,{DEFAULT_MODE:()=>Ae,DEFAULT_TAG:()=>ee,deriveAddressFromP256PublicKey:()=>Yo,deriveIndexFromOriginModeAndTag:()=>Es,getCurrentOrigin:()=>ve,getOriginSpecificAddress:()=>xe,normalizeOrigin:()=>rn});import{keccak256 as mh}from"ethers";function rn(r){try{let e=new URL(r),t=`${e.protocol}//${e.hostname.toLowerCase()}`,n=e.port;return n&&!(e.protocol==="https:"&&n==="443"||e.protocol==="http:"&&n==="80")&&(t+=`:${n}`),t}catch(e){throw new w(`Invalid origin URL: ${r}`,e)}}async function Es(r,e=Ae,t=ee){try{let s=`${rn(r)}:${e}:${t.toUpperCase()}`,o=new TextEncoder().encode(s),a=await crypto.subtle.digest("SHA-256",o);return new DataView(a).getUint32(0,!1)%gh}catch(n){throw new w(`Failed to derive index from origin "${r}", mode "${e}", and tag "${t}"`,n)}}async function xe(r,e,t,n){try{let s=t||Ae,i=(n||ee).toUpperCase(),o=rn(e),a=await Es(o,s,i),{address:c,privateKey:l}=tn(r,a),u={address:c,index:a,origin:o,mode:s,tag:i};return s==="YOLO"&&(u.privateKey=l),u}catch(s){throw new w(`Failed to derive origin-specific address for "${e}" with mode "${t||Ae}" and tag "${n||ee}"`,s)}}function ve(){if(typeof window>"u"||!window.location)throw new w("getCurrentOrigin() only works in browser environments");return window.location.origin}async function Yo(r){try{let e=L(r),t=await crypto.subtle.importKey("spki",e,{name:"ECDSA",namedCurve:"P-256"},!0,["verify"]),n=await crypto.subtle.exportKey("jwk",t);if(!n.x||!n.y)throw new Error("Invalid P-256 public key: missing x or y coordinates");let s=L(n.x),i=L(n.y),o=new Uint8Array(64);return o.set(new Uint8Array(s),0),o.set(new Uint8Array(i),32),"0x"+mh(o).slice(-40)}catch(e){throw new w("Failed to derive address from P-256 public key",e)}}var Ae,ee,gh,St=p(()=>{"use strict";Ie();G();fe();Ae="STANDARD",ee="MAIN",gh=2147483647});var Rs={};E(Rs,{encodeEIP7702AuthorizationMessage:()=>un,hashEIP7702AuthorizationMessage:()=>dn,verifyEIP7702Authorization:()=>Ts});import{encodeRlp as Ph,concat as Ih,keccak256 as Bh,toBeHex as ra,recoverAddress as Dh,Signature as Th}from"ethers";function un(r,e,t){let n=[r===0n?"0x":ra(r),e.toLowerCase(),t===0n?"0x":ra(t)],s=Ph(n);return Ih(["0x05",s])}function dn(r,e,t){let n=un(r,e,t);return Bh(n)}function Ts(r,e,t,n,s){try{let i=dn(r,e,t),o;return typeof n=="string"?o=Th.from(n):o=n,Dh(i,o).toLowerCase()===s.toLowerCase()}catch{return!1}}var hn=p(()=>{"use strict"});var na={};E(na,{detectWalletProvider:()=>Us,getDefaultProvider:()=>Ms,requestExternalWalletAuthorization:()=>Fs,supportsEIP7702Authorization:()=>Ns});async function Fs(r,e){if(!r)throw new Error("No external wallet provider found. Please install MetaMask or similar wallet.");let t=BigInt(e.chainId||1),n=e.nonce||0n,s=e.accountIndex||0,i=await r.request({method:"eth_requestAccounts"});if(!i||i.length===0)throw new Error("No accounts found in external wallet");if(s>=i.length)throw new Error(`Account index ${s} out of range. Wallet has ${i.length} accounts.`);let o=i[s],{hashEIP7702AuthorizationMessage:a,verifyEIP7702Authorization:c}=await Promise.resolve().then(()=>(hn(),Rs)),{Signature:l}=await import("ethers"),u=a(t,e.delegateToAddress,n),d;try{d=await r.request({method:"eth_sign",params:[o,u]})}catch(y){try{d=await r.request({method:"personal_sign",params:[u,o]})}catch(S){throw new Error(`Failed to request signature from wallet. eth_sign error: ${y.message}, personal_sign error: ${S.message}`)}}let h=l.from(d),m={chainId:t,address:e.delegateToAddress.toLowerCase(),nonce:n,yParity:h.yParity,r:h.r,s:h.s};if(!c(t,e.delegateToAddress,n,m,o))throw new Error(`Signature verification failed. Expected signer: ${o}, but signature does not match. This may indicate a wallet implementation issue.`);return m}function Ms(){if(typeof window>"u")return null;let r=window;return r.ethereum?r.ethereum:r.web3?.currentProvider?r.web3.currentProvider:null}function Us(r){let e=r;return e.isMetaMask?"MetaMask":e.isRabby?"Rabby":e.isCoinbaseWallet?"Coinbase Wallet":e.isBraveWallet?"Brave Wallet":e.isTokenPocket?"TokenPocket":e.isTrust?"Trust Wallet":"Unknown Wallet"}async function Ns(r){try{let e=await r.request({method:"eth_accounts"});return Array.isArray(e)}catch{return!1}}var Ls=p(()=>{"use strict"});var oa={};E(oa,{extractRS:()=>ia});function ia(r){let e=0;if(r[e++]!==48)throw new Error("Invalid DER signature: missing sequence tag");if(e++,r[e++]!==2)throw new Error("Invalid DER signature: missing r integer tag");let t=r[e++];t>32&&(e++,t--);let n=r.slice(e,e+t);if(e+=t,r[e++]!==2)throw new Error("Invalid DER signature: missing s integer tag");let s=r[e++];s>32&&(e++,s--);let i=r.slice(e,e+s),o=new Uint8Array(32),a=new Uint8Array(32);o.set(n,32-n.length),a.set(i,32-i.length);let c=BigInt("0xFFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC2FC632551"),l=BigInt("0x"+Buffer.from(a).toString("hex"));l>c/2n&&(l=c-l);let u="0x"+Buffer.from(o).toString("hex"),d="0x"+l.toString(16).padStart(64,"0");return{r:u,s:d}}var _s=p(()=>{"use strict"});var aa={};E(aa,{BackupStorage:()=>Qe});var Qe,fn=p(()=>{"use strict";Qe=class{constructor(){this.dbName="Web3PasskeyBackup";this.version=1;this.db=null}async init(){return typeof indexedDB>"u"?Promise.resolve():new Promise((e,t)=>{let n=indexedDB.open(this.dbName,this.version);n.onerror=()=>t(n.error),n.onsuccess=()=>{this.db=n.result,e()},n.onupgradeneeded=s=>{let i=s.target.result;if(!i.objectStoreNames.contains("backups")){let o=i.createObjectStore("backups",{keyPath:"id"});o.createIndex("ethereumAddress","ethereumAddress",{unique:!1}),o.createIndex("method","method",{unique:!1}),o.createIndex("createdAt","createdAt",{unique:!1})}}})}async storeBackupMetadata(e){return this.db||await this.init(),this.db?new Promise((t,n)=>{let o=this.db.transaction(["backups"],"readwrite").objectStore("backups").put(e);o.onsuccess=()=>t(),o.onerror=()=>n(o.error)}):Promise.resolve()}async getBackupsByAddress(e){return this.db||await this.init(),this.db?new Promise((t,n)=>{let a=this.db.transaction(["backups"],"readonly").objectStore("backups").index("ethereumAddress").getAll(e);a.onsuccess=()=>t(a.result),a.onerror=()=>n(a.error)}):Promise.resolve([])}async getBackupById(e){return this.db||await this.init(),this.db?new Promise((t,n)=>{let o=this.db.transaction(["backups"],"readonly").objectStore("backups").get(e);o.onsuccess=()=>t(o.result||null),o.onerror=()=>n(o.error)}):Promise.resolve(null)}async deleteBackup(e){return this.db||await this.init(),this.db?new Promise((t,n)=>{let o=this.db.transaction(["backups"],"readwrite").objectStore("backups").delete(e);o.onsuccess=()=>t(),o.onerror=()=>n(o.error)}):Promise.resolve()}async getBackupCountByMethod(e){return this.db||await this.init(),this.db?new Promise((t,n)=>{let a=this.db.transaction(["backups"],"readonly").objectStore("backups").index("method").count(e);a.onsuccess=()=>t(a.result),a.onerror=()=>n(a.error)}):Promise.resolve(0)}}});var la={};E(la,{decryptWithPassword:()=>or,deriveAddressChecksum:()=>te,deriveKeyFromPassword:()=>pn,encryptWithPassword:()=>Ze,getDeviceFingerprint:()=>Ee,validatePasswordStrength:()=>ca});async function pn(r,e,t=31e4){let s=new TextEncoder().encode(r),i=await crypto.subtle.importKey("raw",s,"PBKDF2",!1,["deriveBits","deriveKey"]);return crypto.subtle.deriveKey({name:"PBKDF2",salt:e,iterations:t,hash:"SHA-256"},i,{name:"AES-GCM",length:256},!1,["encrypt","decrypt"])}async function Ze(r,e,t){let s=await pn(e,t,31e4),o=new TextEncoder().encode(r),a=crypto.getRandomValues(new Uint8Array(12)),c=await crypto.subtle.encrypt({name:"AES-GCM",iv:a},s,o);return{encrypted:ir(c),iv:ir(a),salt:ir(t),iterations:31e4}}async function or(r,e,t,n,s=31e4){let i=Ks(t),o=await pn(e,i,s),a=Ks(n),c=Ks(r),l=await crypto.subtle.decrypt({name:"AES-GCM",iv:a},o,c);return new TextDecoder().decode(l)}async function Ee(){let e=[navigator.userAgent,navigator.language,new Date().getTimezoneOffset().toString(),screen.width+"x"+screen.height,screen.colorDepth.toString()].join("|"),n=new TextEncoder().encode(e),s=await crypto.subtle.digest("SHA-256",n);return ir(s)}async function te(r){let t=new TextEncoder().encode(r.toLowerCase()),n=await crypto.subtle.digest("SHA-256",t);return ir(n).substring(0,16)}function ca(r){let e=[],t=0;return r.length<12?e.push("Password must be at least 12 characters"):t+=25,/[A-Z]/.test(r)?t+=15:e.push("Add at least one uppercase letter"),/[a-z]/.test(r)?t+=15:e.push("Add at least one lowercase letter"),/[0-9]/.test(r)?t+=15:e.push("Add at least one number"),/[!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?]/.test(r)?t+=15:e.push("Add at least one special character"),r.length>=16&&(t+=10),r.length>=20&&(t+=5),["password","12345678","qwerty","abc123","password123","admin","letmein"].some(s=>r.toLowerCase().includes(s))&&(e.push("Password is too common"),t=Math.min(t,25)),{valid:t>=50&&e.length===0,score:Math.min(t,100),feedback:e}}function ir(r){let e=r instanceof Uint8Array?r:new Uint8Array(r),t="";for(let n=0;n<e.byteLength;n++)t+=String.fromCharCode(e[n]);return btoa(t)}function Ks(r){let e=yt(r),t=new Uint8Array(e.length);for(let n=0;n<e.length;n++)t[n]=e.charCodeAt(n);return t}var Xe=p(()=>{"use strict";fe()});var da=P((ky,ua)=>{"use strict";ua.exports=function(){return typeof Promise=="function"&&Promise.prototype&&Promise.prototype.then}});var Ne=P(et=>{"use strict";var Os,Mh=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];et.getSymbolSize=function(e){if(!e)throw new Error('"version" cannot be null or undefined');if(e<1||e>40)throw new Error('"version" should be in range from 1 to 40');return e*4+17};et.getSymbolTotalCodewords=function(e){return Mh[e]};et.getBCHDigit=function(r){let e=0;for(;r!==0;)e++,r>>>=1;return e};et.setToSJISFunction=function(e){if(typeof e!="function")throw new Error('"toSJISFunc" is not a valid function.');Os=e};et.isKanjiModeEnabled=function(){return typeof Os<"u"};et.toSJIS=function(e){return Os(e)}});var mn=P(ae=>{"use strict";ae.L={bit:1};ae.M={bit:0};ae.Q={bit:3};ae.H={bit:2};function Uh(r){if(typeof r!="string")throw new Error("Param is not a string");switch(r.toLowerCase()){case"l":case"low":return ae.L;case"m":case"medium":return ae.M;case"q":case"quartile":return ae.Q;case"h":case"high":return ae.H;default:throw new Error("Unknown EC Level: "+r)}}ae.isValid=function(e){return e&&typeof e.bit<"u"&&e.bit>=0&&e.bit<4};ae.from=function(e,t){if(ae.isValid(e))return e;try{return Uh(e)}catch{return t}}});var pa=P((Iy,fa)=>{"use strict";function ha(){this.buffer=[],this.length=0}ha.prototype={get:function(r){let e=Math.floor(r/8);return(this.buffer[e]>>>7-r%8&1)===1},put:function(r,e){for(let t=0;t<e;t++)this.putBit((r>>>e-t-1&1)===1)},getLengthInBits:function(){return this.length},putBit:function(r){let e=Math.floor(this.length/8);this.buffer.length<=e&&this.buffer.push(0),r&&(this.buffer[e]|=128>>>this.length%8),this.length++}};fa.exports=ha});var ga=P((By,ma)=>{"use strict";function ar(r){if(!r||r<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=r,this.data=new Uint8Array(r*r),this.reservedBit=new Uint8Array(r*r)}ar.prototype.set=function(r,e,t,n){let s=r*this.size+e;this.data[s]=t,n&&(this.reservedBit[s]=!0)};ar.prototype.get=function(r,e){return this.data[r*this.size+e]};ar.prototype.xor=function(r,e,t){this.data[r*this.size+e]^=t};ar.prototype.isReserved=function(r,e){return this.reservedBit[r*this.size+e]};ma.exports=ar});var ya=P(gn=>{"use strict";var Nh=Ne().getSymbolSize;gn.getRowColCoords=function(e){if(e===1)return[];let t=Math.floor(e/7)+2,n=Nh(e),s=n===145?26:Math.ceil((n-13)/(2*t-2))*2,i=[n-7];for(let o=1;o<t-1;o++)i[o]=i[o-1]-s;return i.push(6),i.reverse()};gn.getPositions=function(e){let t=[],n=gn.getRowColCoords(e),s=n.length;for(let i=0;i<s;i++)for(let o=0;o<s;o++)i===0&&o===0||i===0&&o===s-1||i===s-1&&o===0||t.push([n[i],n[o]]);return t}});var Sa=P(ba=>{"use strict";var Lh=Ne().getSymbolSize,wa=7;ba.getPositions=function(e){let t=Lh(e);return[[0,0],[t-wa,0],[0,t-wa]]}});var Aa=P(F=>{"use strict";F.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};var tt={N1:3,N2:3,N3:40,N4:10};F.isValid=function(e){return e!=null&&e!==""&&!isNaN(e)&&e>=0&&e<=7};F.from=function(e){return F.isValid(e)?parseInt(e,10):void 0};F.getPenaltyN1=function(e){let t=e.size,n=0,s=0,i=0,o=null,a=null;for(let c=0;c<t;c++){s=i=0,o=a=null;for(let l=0;l<t;l++){let u=e.get(c,l);u===o?s++:(s>=5&&(n+=tt.N1+(s-5)),o=u,s=1),u=e.get(l,c),u===a?i++:(i>=5&&(n+=tt.N1+(i-5)),a=u,i=1)}s>=5&&(n+=tt.N1+(s-5)),i>=5&&(n+=tt.N1+(i-5))}return n};F.getPenaltyN2=function(e){let t=e.size,n=0;for(let s=0;s<t-1;s++)for(let i=0;i<t-1;i++){let o=e.get(s,i)+e.get(s,i+1)+e.get(s+1,i)+e.get(s+1,i+1);(o===4||o===0)&&n++}return n*tt.N2};F.getPenaltyN3=function(e){let t=e.size,n=0,s=0,i=0;for(let o=0;o<t;o++){s=i=0;for(let a=0;a<t;a++)s=s<<1&2047|e.get(o,a),a>=10&&(s===1488||s===93)&&n++,i=i<<1&2047|e.get(a,o),a>=10&&(i===1488||i===93)&&n++}return n*tt.N3};F.getPenaltyN4=function(e){let t=0,n=e.data.length;for(let i=0;i<n;i++)t+=e.data[i];return Math.abs(Math.ceil(t*100/n/5)-10)*tt.N4};function _h(r,e,t){switch(r){case F.Patterns.PATTERN000:return(e+t)%2===0;case F.Patterns.PATTERN001:return e%2===0;case F.Patterns.PATTERN010:return t%3===0;case F.Patterns.PATTERN011:return(e+t)%3===0;case F.Patterns.PATTERN100:return(Math.floor(e/2)+Math.floor(t/3))%2===0;case F.Patterns.PATTERN101:return e*t%2+e*t%3===0;case F.Patterns.PATTERN110:return(e*t%2+e*t%3)%2===0;case F.Patterns.PATTERN111:return(e*t%3+(e+t)%2)%2===0;default:throw new Error("bad maskPattern:"+r)}}F.applyMask=function(e,t){let n=t.size;for(let s=0;s<n;s++)for(let i=0;i<n;i++)t.isReserved(i,s)||t.xor(i,s,_h(e,i,s))};F.getBestMask=function(e,t){let n=Object.keys(F.Patterns).length,s=0,i=1/0;for(let o=0;o<n;o++){t(o),F.applyMask(o,e);let a=F.getPenaltyN1(e)+F.getPenaltyN2(e)+F.getPenaltyN3(e)+F.getPenaltyN4(e);F.applyMask(o,e),a<i&&(i=a,s=o)}return s}});var Ws=P(zs=>{"use strict";var Le=mn(),yn=[1,1,1,1,1,1,1,1,1,1,2,2,1,2,2,4,1,2,4,4,2,4,4,4,2,4,6,5,2,4,6,6,2,5,8,8,4,5,8,8,4,5,8,11,4,8,10,11,4,9,12,16,4,9,16,16,6,10,12,18,6,10,17,16,6,11,16,19,6,13,18,21,7,14,21,25,8,16,20,25,8,17,23,25,9,17,23,34,9,18,25,30,10,20,27,32,12,21,29,35,12,23,34,37,12,25,34,40,13,26,35,42,14,28,38,45,15,29,40,48,16,31,43,51,17,33,45,54,18,35,48,57,19,37,51,60,19,38,53,63,20,40,56,66,21,43,59,70,22,45,62,74,24,47,65,77,25,49,68,81],wn=[7,10,13,17,10,16,22,28,15,26,36,44,20,36,52,64,26,48,72,88,36,64,96,112,40,72,108,130,48,88,132,156,60,110,160,192,72,130,192,224,80,150,224,264,96,176,260,308,104,198,288,352,120,216,320,384,132,240,360,432,144,280,408,480,168,308,448,532,180,338,504,588,196,364,546,650,224,416,600,700,224,442,644,750,252,476,690,816,270,504,750,900,300,560,810,960,312,588,870,1050,336,644,952,1110,360,700,1020,1200,390,728,1050,1260,420,784,1140,1350,450,812,1200,1440,480,868,1290,1530,510,924,1350,1620,540,980,1440,1710,570,1036,1530,1800,570,1064,1590,1890,600,1120,1680,1980,630,1204,1770,2100,660,1260,1860,2220,720,1316,1950,2310,750,1372,2040,2430];zs.getBlocksCount=function(e,t){switch(t){case Le.L:return yn[(e-1)*4+0];case Le.M:return yn[(e-1)*4+1];case Le.Q:return yn[(e-1)*4+2];case Le.H:return yn[(e-1)*4+3];default:return}};zs.getTotalCodewordsCount=function(e,t){switch(t){case Le.L:return wn[(e-1)*4+0];case Le.M:return wn[(e-1)*4+1];case Le.Q:return wn[(e-1)*4+2];case Le.H:return wn[(e-1)*4+3];default:return}}});var xa=P(Sn=>{"use strict";var cr=new Uint8Array(512),bn=new Uint8Array(256);(function(){let e=1;for(let t=0;t<255;t++)cr[t]=e,bn[e]=t,e<<=1,e&256&&(e^=285);for(let t=255;t<512;t++)cr[t]=cr[t-255]})();Sn.log=function(e){if(e<1)throw new Error("log("+e+")");return bn[e]};Sn.exp=function(e){return cr[e]};Sn.mul=function(e,t){return e===0||t===0?0:cr[bn[e]+bn[t]]}});var va=P(lr=>{"use strict";var $s=xa();lr.mul=function(e,t){let n=new Uint8Array(e.length+t.length-1);for(let s=0;s<e.length;s++)for(let i=0;i<t.length;i++)n[s+i]^=$s.mul(e[s],t[i]);return n};lr.mod=function(e,t){let n=new Uint8Array(e);for(;n.length-t.length>=0;){let s=n[0];for(let o=0;o<t.length;o++)n[o]^=$s.mul(t[o],s);let i=0;for(;i<n.length&&n[i]===0;)i++;n=n.slice(i)}return n};lr.generateECPolynomial=function(e){let t=new Uint8Array([1]);for(let n=0;n<e;n++)t=lr.mul(t,new Uint8Array([1,$s.exp(n)]));return t}});var Ca=P((Ny,ka)=>{"use strict";var Ea=va();function qs(r){this.genPoly=void 0,this.degree=r,this.degree&&this.initialize(this.degree)}qs.prototype.initialize=function(e){this.degree=e,this.genPoly=Ea.generateECPolynomial(this.degree)};qs.prototype.encode=function(e){if(!this.genPoly)throw new Error("Encoder not initialized");let t=new Uint8Array(e.length+this.degree);t.set(e);let n=Ea.mod(t,this.genPoly),s=this.degree-n.length;if(s>0){let i=new Uint8Array(this.degree);return i.set(n,s),i}return n};ka.exports=qs});var Hs=P(Pa=>{"use strict";Pa.isValid=function(e){return!isNaN(e)&&e>=1&&e<=40}});var Vs=P(Be=>{"use strict";var Ia="[0-9]+",Kh="[A-Z $%*+\\-./:]+",ur="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";ur=ur.replace(/u/g,"\\u");var Oh="(?:(?![A-Z0-9 $%*+\\-./:]|"+ur+`)(?:.|[\r
2
+ ]))+`;Be.KANJI=new RegExp(ur,"g");Be.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g");Be.BYTE=new RegExp(Oh,"g");Be.NUMERIC=new RegExp(Ia,"g");Be.ALPHANUMERIC=new RegExp(Kh,"g");var zh=new RegExp("^"+ur+"$"),Wh=new RegExp("^"+Ia+"$"),$h=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");Be.testKanji=function(e){return zh.test(e)};Be.testNumeric=function(e){return Wh.test(e)};Be.testAlphanumeric=function(e){return $h.test(e)}});var _e=P(_=>{"use strict";var qh=Hs(),Gs=Vs();_.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]};_.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]};_.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]};_.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]};_.MIXED={bit:-1};_.getCharCountIndicator=function(e,t){if(!e.ccBits)throw new Error("Invalid mode: "+e);if(!qh.isValid(t))throw new Error("Invalid version: "+t);return t>=1&&t<10?e.ccBits[0]:t<27?e.ccBits[1]:e.ccBits[2]};_.getBestModeForData=function(e){return Gs.testNumeric(e)?_.NUMERIC:Gs.testAlphanumeric(e)?_.ALPHANUMERIC:Gs.testKanji(e)?_.KANJI:_.BYTE};_.toString=function(e){if(e&&e.id)return e.id;throw new Error("Invalid mode")};_.isValid=function(e){return e&&e.bit&&e.ccBits};function Hh(r){if(typeof r!="string")throw new Error("Param is not a string");switch(r.toLowerCase()){case"numeric":return _.NUMERIC;case"alphanumeric":return _.ALPHANUMERIC;case"kanji":return _.KANJI;case"byte":return _.BYTE;default:throw new Error("Unknown mode: "+r)}}_.from=function(e,t){if(_.isValid(e))return e;try{return Hh(e)}catch{return t}}});var Fa=P(rt=>{"use strict";var An=Ne(),Vh=Ws(),Ba=mn(),Ke=_e(),Ys=Hs(),Ta=7973,Da=An.getBCHDigit(Ta);function Gh(r,e,t){for(let n=1;n<=40;n++)if(e<=rt.getCapacity(n,t,r))return n}function Ra(r,e){return Ke.getCharCountIndicator(r,e)+4}function Yh(r,e){let t=0;return r.forEach(function(n){let s=Ra(n.mode,e);t+=s+n.getBitsLength()}),t}function jh(r,e){for(let t=1;t<=40;t++)if(Yh(r,t)<=rt.getCapacity(t,e,Ke.MIXED))return t}rt.from=function(e,t){return Ys.isValid(e)?parseInt(e,10):t};rt.getCapacity=function(e,t,n){if(!Ys.isValid(e))throw new Error("Invalid QR Code version");typeof n>"u"&&(n=Ke.BYTE);let s=An.getSymbolTotalCodewords(e),i=Vh.getTotalCodewordsCount(e,t),o=(s-i)*8;if(n===Ke.MIXED)return o;let a=o-Ra(n,e);switch(n){case Ke.NUMERIC:return Math.floor(a/10*3);case Ke.ALPHANUMERIC:return Math.floor(a/11*2);case Ke.KANJI:return Math.floor(a/13);case Ke.BYTE:default:return Math.floor(a/8)}};rt.getBestVersionForData=function(e,t){let n,s=Ba.from(t,Ba.M);if(Array.isArray(e)){if(e.length>1)return jh(e,s);if(e.length===0)return 1;n=e[0]}else n=e;return Gh(n.mode,n.getLength(),s)};rt.getEncodedBits=function(e){if(!Ys.isValid(e)||e<7)throw new Error("Invalid QR Code version");let t=e<<12;for(;An.getBCHDigit(t)-Da>=0;)t^=Ta<<An.getBCHDigit(t)-Da;return e<<12|t}});var La=P(Na=>{"use strict";var js=Ne(),Ua=1335,Jh=21522,Ma=js.getBCHDigit(Ua);Na.getEncodedBits=function(e,t){let n=e.bit<<3|t,s=n<<10;for(;js.getBCHDigit(s)-Ma>=0;)s^=Ua<<js.getBCHDigit(s)-Ma;return(n<<10|s)^Jh}});var Ka=P((Wy,_a)=>{"use strict";var Qh=_e();function At(r){this.mode=Qh.NUMERIC,this.data=r.toString()}At.getBitsLength=function(e){return 10*Math.floor(e/3)+(e%3?e%3*3+1:0)};At.prototype.getLength=function(){return this.data.length};At.prototype.getBitsLength=function(){return At.getBitsLength(this.data.length)};At.prototype.write=function(e){let t,n,s;for(t=0;t+3<=this.data.length;t+=3)n=this.data.substr(t,3),s=parseInt(n,10),e.put(s,10);let i=this.data.length-t;i>0&&(n=this.data.substr(t),s=parseInt(n,10),e.put(s,i*3+1))};_a.exports=At});var za=P(($y,Oa)=>{"use strict";var Zh=_e(),Js=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"," ","$","%","*","+","-",".","/",":"];function xt(r){this.mode=Zh.ALPHANUMERIC,this.data=r}xt.getBitsLength=function(e){return 11*Math.floor(e/2)+6*(e%2)};xt.prototype.getLength=function(){return this.data.length};xt.prototype.getBitsLength=function(){return xt.getBitsLength(this.data.length)};xt.prototype.write=function(e){let t;for(t=0;t+2<=this.data.length;t+=2){let n=Js.indexOf(this.data[t])*45;n+=Js.indexOf(this.data[t+1]),e.put(n,11)}this.data.length%2&&e.put(Js.indexOf(this.data[t]),6)};Oa.exports=xt});var $a=P((qy,Wa)=>{"use strict";var Xh=_e();function vt(r){this.mode=Xh.BYTE,typeof r=="string"?this.data=new TextEncoder().encode(r):this.data=new Uint8Array(r)}vt.getBitsLength=function(e){return e*8};vt.prototype.getLength=function(){return this.data.length};vt.prototype.getBitsLength=function(){return vt.getBitsLength(this.data.length)};vt.prototype.write=function(r){for(let e=0,t=this.data.length;e<t;e++)r.put(this.data[e],8)};Wa.exports=vt});var Ha=P((Hy,qa)=>{"use strict";var ef=_e(),tf=Ne();function Et(r){this.mode=ef.KANJI,this.data=r}Et.getBitsLength=function(e){return e*13};Et.prototype.getLength=function(){return this.data.length};Et.prototype.getBitsLength=function(){return Et.getBitsLength(this.data.length)};Et.prototype.write=function(r){let e;for(e=0;e<this.data.length;e++){let t=tf.toSJIS(this.data[e]);if(t>=33088&&t<=40956)t-=33088;else if(t>=57408&&t<=60351)t-=49472;else throw new Error("Invalid SJIS character: "+this.data[e]+`
3
+ Make sure your charset is UTF-8`);t=(t>>>8&255)*192+(t&255),r.put(t,13)}};qa.exports=Et});var Va=P((Vy,Qs)=>{"use strict";var dr={single_source_shortest_paths:function(r,e,t){var n={},s={};s[e]=0;var i=dr.PriorityQueue.make();i.push(e,0);for(var o,a,c,l,u,d,h,m,g;!i.empty();){o=i.pop(),a=o.value,l=o.cost,u=r[a]||{};for(c in u)u.hasOwnProperty(c)&&(d=u[c],h=l+d,m=s[c],g=typeof s[c]>"u",(g||m>h)&&(s[c]=h,i.push(c,h),n[c]=a))}if(typeof t<"u"&&typeof s[t]>"u"){var y=["Could not find a path from ",e," to ",t,"."].join("");throw new Error(y)}return n},extract_shortest_path_from_predecessor_list:function(r,e){for(var t=[],n=e,s;n;)t.push(n),s=r[n],n=r[n];return t.reverse(),t},find_path:function(r,e,t){var n=dr.single_source_shortest_paths(r,e,t);return dr.extract_shortest_path_from_predecessor_list(n,t)},PriorityQueue:{make:function(r){var e=dr.PriorityQueue,t={},n;r=r||{};for(n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t.queue=[],t.sorter=r.sorter||e.default_sorter,t},default_sorter:function(r,e){return r.cost-e.cost},push:function(r,e){var t={value:r,cost:e};this.queue.push(t),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return this.queue.length===0}}};typeof Qs<"u"&&(Qs.exports=dr)});var ec=P(kt=>{"use strict";var I=_e(),ja=Ka(),Ja=za(),Qa=$a(),Za=Ha(),hr=Vs(),xn=Ne(),rf=Va();function Ga(r){return unescape(encodeURIComponent(r)).length}function fr(r,e,t){let n=[],s;for(;(s=r.exec(t))!==null;)n.push({data:s[0],index:s.index,mode:e,length:s[0].length});return n}function Xa(r){let e=fr(hr.NUMERIC,I.NUMERIC,r),t=fr(hr.ALPHANUMERIC,I.ALPHANUMERIC,r),n,s;return xn.isKanjiModeEnabled()?(n=fr(hr.BYTE,I.BYTE,r),s=fr(hr.KANJI,I.KANJI,r)):(n=fr(hr.BYTE_KANJI,I.BYTE,r),s=[]),e.concat(t,n,s).sort(function(o,a){return o.index-a.index}).map(function(o){return{data:o.data,mode:o.mode,length:o.length}})}function Zs(r,e){switch(e){case I.NUMERIC:return ja.getBitsLength(r);case I.ALPHANUMERIC:return Ja.getBitsLength(r);case I.KANJI:return Za.getBitsLength(r);case I.BYTE:return Qa.getBitsLength(r)}}function nf(r){return r.reduce(function(e,t){let n=e.length-1>=0?e[e.length-1]:null;return n&&n.mode===t.mode?(e[e.length-1].data+=t.data,e):(e.push(t),e)},[])}function sf(r){let e=[];for(let t=0;t<r.length;t++){let n=r[t];switch(n.mode){case I.NUMERIC:e.push([n,{data:n.data,mode:I.ALPHANUMERIC,length:n.length},{data:n.data,mode:I.BYTE,length:n.length}]);break;case I.ALPHANUMERIC:e.push([n,{data:n.data,mode:I.BYTE,length:n.length}]);break;case I.KANJI:e.push([n,{data:n.data,mode:I.BYTE,length:Ga(n.data)}]);break;case I.BYTE:e.push([{data:n.data,mode:I.BYTE,length:Ga(n.data)}])}}return e}function of(r,e){let t={},n={start:{}},s=["start"];for(let i=0;i<r.length;i++){let o=r[i],a=[];for(let c=0;c<o.length;c++){let l=o[c],u=""+i+c;a.push(u),t[u]={node:l,lastCount:0},n[u]={};for(let d=0;d<s.length;d++){let h=s[d];t[h]&&t[h].node.mode===l.mode?(n[h][u]=Zs(t[h].lastCount+l.length,l.mode)-Zs(t[h].lastCount,l.mode),t[h].lastCount+=l.length):(t[h]&&(t[h].lastCount=l.length),n[h][u]=Zs(l.length,l.mode)+4+I.getCharCountIndicator(l.mode,e))}}s=a}for(let i=0;i<s.length;i++)n[s[i]].end=0;return{map:n,table:t}}function Ya(r,e){let t,n=I.getBestModeForData(r);if(t=I.from(e,n),t!==I.BYTE&&t.bit<n.bit)throw new Error('"'+r+'" cannot be encoded with mode '+I.toString(t)+`.
4
+ Suggested mode is: `+I.toString(n));switch(t===I.KANJI&&!xn.isKanjiModeEnabled()&&(t=I.BYTE),t){case I.NUMERIC:return new ja(r);case I.ALPHANUMERIC:return new Ja(r);case I.KANJI:return new Za(r);case I.BYTE:return new Qa(r)}}kt.fromArray=function(e){return e.reduce(function(t,n){return typeof n=="string"?t.push(Ya(n,null)):n.data&&t.push(Ya(n.data,n.mode)),t},[])};kt.fromString=function(e,t){let n=Xa(e,xn.isKanjiModeEnabled()),s=sf(n),i=of(s,t),o=rf.find_path(i.map,"start","end"),a=[];for(let c=1;c<o.length-1;c++)a.push(i.table[o[c]].node);return kt.fromArray(nf(a))};kt.rawSplit=function(e){return kt.fromArray(Xa(e,xn.isKanjiModeEnabled()))}});var rc=P(tc=>{"use strict";var En=Ne(),Xs=mn(),af=pa(),cf=ga(),lf=ya(),uf=Sa(),ri=Aa(),ni=Ws(),df=Ca(),vn=Fa(),hf=La(),ff=_e(),ei=ec();function pf(r,e){let t=r.size,n=uf.getPositions(e);for(let s=0;s<n.length;s++){let i=n[s][0],o=n[s][1];for(let a=-1;a<=7;a++)if(!(i+a<=-1||t<=i+a))for(let c=-1;c<=7;c++)o+c<=-1||t<=o+c||(a>=0&&a<=6&&(c===0||c===6)||c>=0&&c<=6&&(a===0||a===6)||a>=2&&a<=4&&c>=2&&c<=4?r.set(i+a,o+c,!0,!0):r.set(i+a,o+c,!1,!0))}}function mf(r){let e=r.size;for(let t=8;t<e-8;t++){let n=t%2===0;r.set(t,6,n,!0),r.set(6,t,n,!0)}}function gf(r,e){let t=lf.getPositions(e);for(let n=0;n<t.length;n++){let s=t[n][0],i=t[n][1];for(let o=-2;o<=2;o++)for(let a=-2;a<=2;a++)o===-2||o===2||a===-2||a===2||o===0&&a===0?r.set(s+o,i+a,!0,!0):r.set(s+o,i+a,!1,!0)}}function yf(r,e){let t=r.size,n=vn.getEncodedBits(e),s,i,o;for(let a=0;a<18;a++)s=Math.floor(a/3),i=a%3+t-8-3,o=(n>>a&1)===1,r.set(s,i,o,!0),r.set(i,s,o,!0)}function ti(r,e,t){let n=r.size,s=hf.getEncodedBits(e,t),i,o;for(i=0;i<15;i++)o=(s>>i&1)===1,i<6?r.set(i,8,o,!0):i<8?r.set(i+1,8,o,!0):r.set(n-15+i,8,o,!0),i<8?r.set(8,n-i-1,o,!0):i<9?r.set(8,15-i-1+1,o,!0):r.set(8,15-i-1,o,!0);r.set(n-8,8,1,!0)}function wf(r,e){let t=r.size,n=-1,s=t-1,i=7,o=0;for(let a=t-1;a>0;a-=2)for(a===6&&a--;;){for(let c=0;c<2;c++)if(!r.isReserved(s,a-c)){let l=!1;o<e.length&&(l=(e[o]>>>i&1)===1),r.set(s,a-c,l),i--,i===-1&&(o++,i=7)}if(s+=n,s<0||t<=s){s-=n,n=-n;break}}}function bf(r,e,t){let n=new af;t.forEach(function(c){n.put(c.mode.bit,4),n.put(c.getLength(),ff.getCharCountIndicator(c.mode,r)),c.write(n)});let s=En.getSymbolTotalCodewords(r),i=ni.getTotalCodewordsCount(r,e),o=(s-i)*8;for(n.getLengthInBits()+4<=o&&n.put(0,4);n.getLengthInBits()%8!==0;)n.putBit(0);let a=(o-n.getLengthInBits())/8;for(let c=0;c<a;c++)n.put(c%2?17:236,8);return Sf(n,r,e)}function Sf(r,e,t){let n=En.getSymbolTotalCodewords(e),s=ni.getTotalCodewordsCount(e,t),i=n-s,o=ni.getBlocksCount(e,t),a=n%o,c=o-a,l=Math.floor(n/o),u=Math.floor(i/o),d=u+1,h=l-u,m=new df(h),g=0,y=new Array(o),S=new Array(o),b=0,A=new Uint8Array(r.buffer);for(let T=0;T<o;T++){let O=T<c?u:d;y[T]=A.slice(g,g+O),S[T]=m.encode(y[T]),g+=O,b=Math.max(b,O)}let v=new Uint8Array(n),k=0,C,x;for(C=0;C<b;C++)for(x=0;x<o;x++)C<y[x].length&&(v[k++]=y[x][C]);for(C=0;C<h;C++)for(x=0;x<o;x++)v[k++]=S[x][C];return v}function Af(r,e,t,n){let s;if(Array.isArray(r))s=ei.fromArray(r);else if(typeof r=="string"){let l=e;if(!l){let u=ei.rawSplit(r);l=vn.getBestVersionForData(u,t)}s=ei.fromString(r,l||40)}else throw new Error("Invalid data");let i=vn.getBestVersionForData(s,t);if(!i)throw new Error("The amount of data is too big to be stored in a QR Code");if(!e)e=i;else if(e<i)throw new Error(`
5
5
  The chosen QR Code version cannot contain this amount of data.
6
6
  Minimum version required to store current data is: `+i+`.
7
- `);let o=Bh(e,t,s),c=fn.getSymbolSize(e),a=new wh(c);return kh(a,e),Eh(a),Ch(a,e),zs(a,t,0),e>=7&&Ph(a,e),Ih(a,o),isNaN(r)&&(r=Ws.getBestMask(a,zs.bind(null,a,t))),Ws.applyMask(r,a),zs(a,t,r),{modules:a,version:e,errorCorrectionLevel:t,maskPattern:r,segments:s}}Na.create=function(e,t){if(typeof e>"u"||e==="")throw new Error("No input text");let r=Os.M,s,i;return typeof t<"u"&&(r=Os.from(t.errorCorrectionLevel,Os.M),s=hn.from(t.version),i=Ws.from(t.maskPattern),t.toSJISFunc&&fn.setToSJISFunction(t.toSJISFunc)),Rh(e,s,r,i)}});var qs=D(Je=>{"use strict";function La(n){if(typeof n=="number"&&(n=n.toString()),typeof n!="string")throw new Error("Color should be defined as hex string");let e=n.slice().replace("#","").split("");if(e.length<3||e.length===5||e.length>8)throw new Error("Invalid hex color: "+n);(e.length===3||e.length===4)&&(e=Array.prototype.concat.apply([],e.map(function(r){return[r,r]}))),e.length===6&&e.push("F","F");let t=parseInt(e.join(""),16);return{r:t>>24&255,g:t>>16&255,b:t>>8&255,a:t&255,hex:"#"+e.slice(0,6).join("")}}Je.getOptions=function(e){e||(e={}),e.color||(e.color={});let t=typeof e.margin>"u"||e.margin===null||e.margin<0?4:e.margin,r=e.width&&e.width>=21?e.width:void 0,s=e.scale||4;return{width:r,scale:r?4:s,margin:t,color:{dark:La(e.color.dark||"#000000ff"),light:La(e.color.light||"#ffffffff")},type:e.type,rendererOpts:e.rendererOpts||{}}};Je.getScale=function(e,t){return t.width&&t.width>=e+t.margin*2?t.width/(e+t.margin*2):t.scale};Je.getImageWidth=function(e,t){let r=Je.getScale(e,t);return Math.floor((e+t.margin*2)*r)};Je.qrToImageData=function(e,t,r){let s=t.modules.size,i=t.modules.data,o=Je.getScale(s,r),c=Math.floor((s+r.margin*2)*o),a=r.margin*o,u=[r.color.light,r.color.dark];for(let l=0;l<c;l++)for(let h=0;h<c;h++){let g=(l*c+h)*4,d=r.color.light;if(l>=a&&h>=a&&l<c-a&&h<c-a){let f=Math.floor((l-a)/o),y=Math.floor((h-a)/o);d=u[i[f*s+y]?1:0]}e[g++]=d.r,e[g++]=d.g,e[g++]=d.b,e[g]=d.a}}});var _a=D(pn=>{"use strict";var Hs=qs();function Th(n,e,t){n.clearRect(0,0,e.width,e.height),e.style||(e.style={}),e.height=t,e.width=t,e.style.height=t+"px",e.style.width=t+"px"}function Fh(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}pn.render=function(e,t,r){let s=r,i=t;typeof s>"u"&&(!t||!t.getContext)&&(s=t,t=void 0),t||(i=Fh()),s=Hs.getOptions(s);let o=Hs.getImageWidth(e.modules.size,s),c=i.getContext("2d"),a=c.createImageData(o,o);return Hs.qrToImageData(a.data,e,s),Th(c,i,o),c.putImageData(a,0,0),i};pn.renderToDataURL=function(e,t,r){let s=r;typeof s>"u"&&(!t||!t.getContext)&&(s=t,t=void 0),s||(s={});let i=pn.render(e,t,s),o=s.type||"image/png",c=s.rendererOpts||{};return i.toDataURL(o,c.quality)}});var za=D(Ka=>{"use strict";var Mh=qs();function Oa(n,e){let t=n.a/255,r=e+'="'+n.hex+'"';return t<1?r+" "+e+'-opacity="'+t.toFixed(2).slice(1)+'"':r}function Vs(n,e,t){let r=n+e;return typeof t<"u"&&(r+=" "+t),r}function Nh(n,e,t){let r="",s=0,i=!1,o=0;for(let c=0;c<n.length;c++){let a=Math.floor(c%e),u=Math.floor(c/e);!a&&!i&&(i=!0),n[c]?(o++,c>0&&a>0&&n[c-1]||(r+=i?Vs("M",a+t,.5+u+t):Vs("m",s,0),s=0,i=!1),a+1<e&&n[c+1]||(r+=Vs("h",o),o=0)):s++}return r}Ka.render=function(e,t,r){let s=Mh.getOptions(t),i=e.modules.size,o=e.modules.data,c=i+s.margin*2,a=s.color.light.a?"<path "+Oa(s.color.light,"fill")+' d="M0 0h'+c+"v"+c+'H0z"/>':"",u="<path "+Oa(s.color.dark,"stroke")+' d="'+Nh(o,i,s.margin)+'"/>',l='viewBox="0 0 '+c+" "+c+'"',g='<svg xmlns="http://www.w3.org/2000/svg" '+(s.width?'width="'+s.width+'" height="'+s.width+'" ':"")+l+' shape-rendering="crispEdges">'+a+u+`</svg>
8
- `;return typeof r=="function"&&r(null,g),g}});var ar=D(or=>{"use strict";var Uh=Ho(),Gs=Ua(),Wa=_a(),Lh=za();function Ys(n,e,t,r,s){let i=[].slice.call(arguments,1),o=i.length,c=typeof i[o-1]=="function";if(!c&&!Uh())throw new Error("Callback required as last argument");if(c){if(o<2)throw new Error("Too few arguments provided");o===2?(s=t,t=e,e=r=void 0):o===3&&(e.getContext&&typeof s>"u"?(s=r,r=void 0):(s=r,r=t,t=e,e=void 0))}else{if(o<1)throw new Error("Too few arguments provided");return o===1?(t=e,e=r=void 0):o===2&&!e.getContext&&(r=t,t=e,e=void 0),new Promise(function(a,u){try{let l=Gs.create(t,r);a(n(l,e,r))}catch(l){u(l)}})}try{let a=Gs.create(t,r);s(null,n(a,e,r))}catch(a){s(a)}}or.create=Gs.create;or.toCanvas=Ys.bind(null,Wa.render);or.toDataURL=Ys.bind(null,Wa.renderToDataURL);or.toString=Ys.bind(null,function(n,e,t){return Lh.render(n,t)})});var bt,js=w(()=>{"use strict";Ve();bt=class{async createQRBackup(e,t,r={}){let s=r.errorCorrection||"H",i;if(r.password){let u=crypto.getRandomValues(new Uint8Array(32)),l=await He(e,r.password,u);i={version:1,type:"encrypted",data:l.encrypted,iv:l.iv,salt:l.salt,iterations:l.iterations,checksum:await X(t)}}else i={version:1,type:"plain",data:e,checksum:await X(t)};let o=JSON.stringify(i),c=await this.generateQRCode(o,s),a=this.getInstructions(t,!!r.password);return{qrCodeDataURL:c,rawData:o,instructions:a}}async generateQRCode(e,t){try{return await(await Promise.resolve().then(()=>lt(ar()))).default.toDataURL(e,{errorCorrectionLevel:t,width:512,margin:2})}catch{return this.createFallbackQRDataURL(e)}}createFallbackQRDataURL(e){if(typeof document>"u")return`data:text/plain;base64,${Buffer.from(e).toString("base64")}`;let t=document.createElement("canvas");t.width=512,t.height=512;let r=t.getContext("2d");if(!r)throw new Error("Canvas not supported");r.fillStyle="white",r.fillRect(0,0,512,512),r.fillStyle="black",r.font="12px monospace",r.textAlign="center",r.textBaseline="middle";let s=this.wrapText(e,50),i=14,o=256-s.length*i/2;return s.forEach((c,a)=>{r.fillText(c,256,o+a*i)}),r.font="bold 16px sans-serif",r.fillText('Install "qrcode" package for QR codes',256,480),t.toDataURL("image/png")}wrapText(e,t){let r=[];for(let s=0;s<e.length;s+=t)r.push(e.substring(s,s+t));return r}getInstructions(e,t){return`
7
+ `);let o=bf(e,t,s),a=En.getSymbolSize(e),c=new cf(a);return pf(c,e),mf(c),gf(c,e),ti(c,t,0),e>=7&&yf(c,e),wf(c,o),isNaN(n)&&(n=ri.getBestMask(c,ti.bind(null,c,t))),ri.applyMask(n,c),ti(c,t,n),{modules:c,version:e,errorCorrectionLevel:t,maskPattern:n,segments:s}}tc.create=function(e,t){if(typeof e>"u"||e==="")throw new Error("No input text");let n=Xs.M,s,i;return typeof t<"u"&&(n=Xs.from(t.errorCorrectionLevel,Xs.M),s=vn.from(t.version),i=ri.from(t.maskPattern),t.toSJISFunc&&En.setToSJISFunction(t.toSJISFunc)),Af(e,s,n,i)}});var si=P(nt=>{"use strict";function nc(r){if(typeof r=="number"&&(r=r.toString()),typeof r!="string")throw new Error("Color should be defined as hex string");let e=r.slice().replace("#","").split("");if(e.length<3||e.length===5||e.length>8)throw new Error("Invalid hex color: "+r);(e.length===3||e.length===4)&&(e=Array.prototype.concat.apply([],e.map(function(n){return[n,n]}))),e.length===6&&e.push("F","F");let t=parseInt(e.join(""),16);return{r:t>>24&255,g:t>>16&255,b:t>>8&255,a:t&255,hex:"#"+e.slice(0,6).join("")}}nt.getOptions=function(e){e||(e={}),e.color||(e.color={});let t=typeof e.margin>"u"||e.margin===null||e.margin<0?4:e.margin,n=e.width&&e.width>=21?e.width:void 0,s=e.scale||4;return{width:n,scale:n?4:s,margin:t,color:{dark:nc(e.color.dark||"#000000ff"),light:nc(e.color.light||"#ffffffff")},type:e.type,rendererOpts:e.rendererOpts||{}}};nt.getScale=function(e,t){return t.width&&t.width>=e+t.margin*2?t.width/(e+t.margin*2):t.scale};nt.getImageWidth=function(e,t){let n=nt.getScale(e,t);return Math.floor((e+t.margin*2)*n)};nt.qrToImageData=function(e,t,n){let s=t.modules.size,i=t.modules.data,o=nt.getScale(s,n),a=Math.floor((s+n.margin*2)*o),c=n.margin*o,l=[n.color.light,n.color.dark];for(let u=0;u<a;u++)for(let d=0;d<a;d++){let h=(u*a+d)*4,m=n.color.light;if(u>=c&&d>=c&&u<a-c&&d<a-c){let g=Math.floor((u-c)/o),y=Math.floor((d-c)/o);m=l[i[g*s+y]?1:0]}e[h++]=m.r,e[h++]=m.g,e[h++]=m.b,e[h]=m.a}}});var sc=P(kn=>{"use strict";var ii=si();function xf(r,e,t){r.clearRect(0,0,e.width,e.height),e.style||(e.style={}),e.height=t,e.width=t,e.style.height=t+"px",e.style.width=t+"px"}function vf(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}kn.render=function(e,t,n){let s=n,i=t;typeof s>"u"&&(!t||!t.getContext)&&(s=t,t=void 0),t||(i=vf()),s=ii.getOptions(s);let o=ii.getImageWidth(e.modules.size,s),a=i.getContext("2d"),c=a.createImageData(o,o);return ii.qrToImageData(c.data,e,s),xf(a,i,o),a.putImageData(c,0,0),i};kn.renderToDataURL=function(e,t,n){let s=n;typeof s>"u"&&(!t||!t.getContext)&&(s=t,t=void 0),s||(s={});let i=kn.render(e,t,s),o=s.type||"image/png",a=s.rendererOpts||{};return i.toDataURL(o,a.quality)}});var ac=P(oc=>{"use strict";var Ef=si();function ic(r,e){let t=r.a/255,n=e+'="'+r.hex+'"';return t<1?n+" "+e+'-opacity="'+t.toFixed(2).slice(1)+'"':n}function oi(r,e,t){let n=r+e;return typeof t<"u"&&(n+=" "+t),n}function kf(r,e,t){let n="",s=0,i=!1,o=0;for(let a=0;a<r.length;a++){let c=Math.floor(a%e),l=Math.floor(a/e);!c&&!i&&(i=!0),r[a]?(o++,a>0&&c>0&&r[a-1]||(n+=i?oi("M",c+t,.5+l+t):oi("m",s,0),s=0,i=!1),c+1<e&&r[a+1]||(n+=oi("h",o),o=0)):s++}return n}oc.render=function(e,t,n){let s=Ef.getOptions(t),i=e.modules.size,o=e.modules.data,a=i+s.margin*2,c=s.color.light.a?"<path "+ic(s.color.light,"fill")+' d="M0 0h'+a+"v"+a+'H0z"/>':"",l="<path "+ic(s.color.dark,"stroke")+' d="'+kf(o,i,s.margin)+'"/>',u='viewBox="0 0 '+a+" "+a+'"',h='<svg xmlns="http://www.w3.org/2000/svg" '+(s.width?'width="'+s.width+'" height="'+s.width+'" ':"")+u+' shape-rendering="crispEdges">'+c+l+`</svg>
8
+ `;return typeof n=="function"&&n(null,h),h}});var mr=P(pr=>{"use strict";var Cf=da(),ai=rc(),cc=sc(),Pf=ac();function ci(r,e,t,n,s){let i=[].slice.call(arguments,1),o=i.length,a=typeof i[o-1]=="function";if(!a&&!Cf())throw new Error("Callback required as last argument");if(a){if(o<2)throw new Error("Too few arguments provided");o===2?(s=t,t=e,e=n=void 0):o===3&&(e.getContext&&typeof s>"u"?(s=n,n=void 0):(s=n,n=t,t=e,e=void 0))}else{if(o<1)throw new Error("Too few arguments provided");return o===1?(t=e,e=n=void 0):o===2&&!e.getContext&&(n=t,t=e,e=void 0),new Promise(function(c,l){try{let u=ai.create(t,n);c(r(u,e,n))}catch(u){l(u)}})}try{let c=ai.create(t,n);s(null,r(c,e,n))}catch(c){s(c)}}pr.create=ai.create;pr.toCanvas=ci.bind(null,cc.render);pr.toDataURL=ci.bind(null,cc.renderToDataURL);pr.toString=ci.bind(null,function(r,e,t){return Pf.render(r,t)})});var Ct,li=p(()=>{"use strict";Xe();Ct=class{async createQRBackup(e,t,n={}){let s=n.errorCorrection||"H",i;if(n.password){let l=crypto.getRandomValues(new Uint8Array(32)),u=await Ze(e,n.password,l);i={version:1,type:"encrypted",data:u.encrypted,iv:u.iv,salt:u.salt,iterations:u.iterations,checksum:await te(t)}}else i={version:1,type:"plain",data:e,checksum:await te(t)};let o=JSON.stringify(i),a=await this.generateQRCode(o,s),c=this.getInstructions(t,!!n.password);return{qrCodeDataURL:a,rawData:o,instructions:c}}async generateQRCode(e,t){try{return await(await Promise.resolve().then(()=>er(mr()))).default.toDataURL(e,{errorCorrectionLevel:t,width:512,margin:2})}catch{return this.createFallbackQRDataURL(e)}}createFallbackQRDataURL(e){if(typeof document>"u")return`data:text/plain;base64,${Buffer.from(e).toString("base64")}`;let t=document.createElement("canvas");t.width=512,t.height=512;let n=t.getContext("2d");if(!n)throw new Error("Canvas not supported");n.fillStyle="white",n.fillRect(0,0,512,512),n.fillStyle="black",n.font="12px monospace",n.textAlign="center",n.textBaseline="middle";let s=this.wrapText(e,50),i=14,o=256-s.length*i/2;return s.forEach((a,c)=>{n.fillText(a,256,o+c*i)}),n.font="bold 16px sans-serif",n.fillText('Install "qrcode" package for QR codes',256,480),t.toDataURL("image/png")}wrapText(e,t){let n=[];for(let s=0;s<e.length;s+=t)n.push(e.substring(s,s+t));return n}getInstructions(e,t){return`
9
9
  W3PK QR CODE BACKUP
10
10
  ==================
11
11
 
@@ -81,12 +81,12 @@ If QR code is lost/damaged, you can still recover using:
81
81
 
82
82
  Generated by w3pk Recovery System
83
83
  https://docs.w3pk.org/recovery
84
- `}async restoreFromQR(e,t){let r=JSON.parse(e);if(r.version!==1)throw new Error("Unsupported QR backup version");let s;if(r.type==="encrypted"){if(!t)throw new Error("Password required for encrypted QR backup");let{decryptWithPassword:a}=await Promise.resolve().then(()=>(Ve(),$o));s=await a(r.data,t,r.salt,r.iv,r.iterations)}else if(r.type==="plain")s=r.data;else throw new Error("Unknown QR backup type");let{Wallet:i}=await import("ethers"),o=i.fromPhrase(s);if(await X(o.address)!==r.checksum)throw new Error("Address checksum mismatch - corrupted QR or wrong password");return{mnemonic:s,ethereumAddress:o.address}}}});function _h(){let n=new Uint8Array(1);return crypto.getRandomValues(n),n[0]}function mn(n,e,t){if(e>t)throw new Error("Threshold cannot be greater than total shares");if(e<2)throw new Error("Threshold must be at least 2");if(t>255)throw new Error("Cannot create more than 255 shares");let r=[];for(let s=0;s<t;s++)r[s]=new Uint8Array(n.length+1),r[s][0]=s+1;for(let s=0;s<n.length;s++){let o=[n[s]];for(let c=1;c<e;c++)o.push(_h());for(let c=0;c<t;c++){let a=c+1,u=gn.evaluatePolynomial(o,a);r[c][s+1]=u}}return r}function yn(n,e){if(n.length<e)throw new Error(`Need at least ${e} shares to recover secret, got ${n.length}`);let t=n.slice(0,e),r=t[0].length;for(let o of t)if(o.length!==r)throw new Error("All shares must have the same length");let s=r-1,i=new Uint8Array(s);for(let o=0;o<s;o++){let c=[];for(let a of t)c.push({x:a[0],y:a[o+1]});i[o]=gn.interpolate(c)}return i}function wn(n){return new TextEncoder().encode(n)}function bn(n){return new TextDecoder().decode(n)}function Sn(n){return Array.from(n).map(e=>e.toString(16).padStart(2,"0")).join("")}function xn(n){let e=new Uint8Array(n.length/2);for(let t=0;t<n.length;t+=2)e[t/2]=parseInt(n.substring(t,t+2),16);return e}var Ne,gn,vn=w(()=>{"use strict";Ne=class Ne{static multiply(e,t){return e===0||t===0?0:this.EXP_TABLE[(this.LOG_TABLE[e]+this.LOG_TABLE[t])%255]}static divide(e,t){if(t===0)throw new Error("Division by zero in GF(256)");return e===0?0:this.EXP_TABLE[(this.LOG_TABLE[e]-this.LOG_TABLE[t]+255)%255]}static add(e,t){return e^t}static evaluatePolynomial(e,t){let r=0;for(let s=e.length-1;s>=0;s--)r=this.add(this.multiply(r,t),e[s]);return r}static interpolate(e){let t=0;for(let r=0;r<e.length;r++){let s=e[r].y,i=1;for(let o=0;o<e.length;o++)r!==o&&(s=this.multiply(s,e[o].x),i=this.multiply(i,this.add(e[r].x,e[o].x)));t=this.add(t,this.divide(s,i))}return t}};Ne.LOG_TABLE=[],Ne.EXP_TABLE=[],(()=>{let e=(r,s)=>{let i=0;for(let o=0;o<8;o++){s&1&&(i^=r);let c=r&128;r<<=1,c&&(r^=283),s>>=1}return i&255},t=1;for(let r=0;r<255;r++)Ne.EXP_TABLE[r]=t,Ne.LOG_TABLE[t]=r,t=e(t,3);Ne.EXP_TABLE[255]=Ne.EXP_TABLE[0]})();gn=Ne});var $a,St,Js=w(()=>{"use strict";vn();$a=new Map,St=class{constructor(){this.storageKey="w3pk_social_recovery"}getItem(e){return typeof localStorage<"u"?localStorage.getItem(e):$a.get(e)||null}setItem(e,t){typeof localStorage<"u"?localStorage.setItem(e,t):$a.set(e,t)}async setupSocialRecovery(e,t,r,s){if(s>r.length)throw new Error("Threshold cannot be greater than number of guardians");if(s<2)throw new Error("Threshold must be at least 2");if(r.length>255)throw new Error("Cannot have more than 255 guardians");let i=wn(e),o=mn(i,s,r.length),c=r.map((u,l)=>({id:crypto.randomUUID(),name:u.name,email:u.email,phone:u.phone,shareEncrypted:Sn(o[l]),status:"pending",addedAt:new Date().toISOString()})),a={threshold:s,totalGuardians:r.length,guardians:c,createdAt:new Date().toISOString(),ethereumAddress:t};return this.setItem(this.storageKey,JSON.stringify(a)),c}getSocialRecoveryConfig(){let e=this.getItem(this.storageKey);if(!e)return null;try{return JSON.parse(e)}catch{return null}}async generateGuardianInvite(e){let t=this.getSocialRecoveryConfig();if(!t)throw new Error("Social recovery not configured");let r=t.guardians.findIndex(a=>a.id===e.id);if(r===-1)throw new Error("Guardian not found");let s={version:1,guardianId:e.id,guardianName:e.name,guardianIndex:r+1,totalGuardians:t.totalGuardians,threshold:t.threshold,share:e.shareEncrypted,ethereumAddress:t.ethereumAddress,createdAt:t.createdAt},i=JSON.stringify(s),o=await this.generateQRCode(i),c=this.getGuardianExplainer(e.name,r+1,t.totalGuardians,t.threshold);return{guardianId:e.id,qrCode:o,shareCode:i,explainer:c}}async generateQRCode(e){try{return await(await Promise.resolve().then(()=>lt(ar()))).toDataURL(e,{errorCorrectionLevel:"H",width:512,margin:2})}catch{return this.createPlaceholderQR(e)}}createPlaceholderQR(e){if(typeof document>"u")return`data:text/plain;base64,${Buffer.from(e).toString("base64")}`;let t=document.createElement("canvas");t.width=512,t.height=512;let r=t.getContext("2d");return r?(r.fillStyle="white",r.fillRect(0,0,512,512),r.fillStyle="black",r.font="bold 20px sans-serif",r.textAlign="center",r.textBaseline="middle",r.fillText("Guardian Recovery Share",256,100),r.font="14px monospace",r.fillText('Install "qrcode" for QR codes',256,480),r.font="10px monospace",this.wrapText(e.substring(0,200)+"...",60).forEach((i,o)=>{r.fillText(i,256,150+o*12)}),t.toDataURL("image/png")):""}wrapText(e,t){let r=[];for(let s=0;s<e.length;s+=t)r.push(e.substring(s,s+t));return r}getGuardianExplainer(e,t,r,s){return`
84
+ `}async restoreFromQR(e,t){let n=JSON.parse(e);if(n.version!==1)throw new Error("Unsupported QR backup version");let s;if(n.type==="encrypted"){if(!t)throw new Error("Password required for encrypted QR backup");let{decryptWithPassword:c}=await Promise.resolve().then(()=>(Xe(),la));s=await c(n.data,t,n.salt,n.iv,n.iterations)}else if(n.type==="plain")s=n.data;else throw new Error("Unknown QR backup type");let{Wallet:i}=await import("ethers"),o=i.fromPhrase(s);if(await te(o.address)!==n.checksum)throw new Error("Address checksum mismatch - corrupted QR or wrong password");return{mnemonic:s,ethereumAddress:o.address}}}});function If(){let r=new Uint8Array(1);return crypto.getRandomValues(r),r[0]}function Pn(r,e,t){if(e>t)throw new Error("Threshold cannot be greater than total shares");if(e<2)throw new Error("Threshold must be at least 2");if(t>255)throw new Error("Cannot create more than 255 shares");let n=[];for(let s=0;s<t;s++)n[s]=new Uint8Array(r.length+1),n[s][0]=s+1;for(let s=0;s<r.length;s++){let o=[r[s]];for(let a=1;a<e;a++)o.push(If());for(let a=0;a<t;a++){let c=a+1,l=Cn.evaluatePolynomial(o,c);n[a][s+1]=l}}return n}function In(r,e){if(r.length<e)throw new Error(`Need at least ${e} shares to recover secret, got ${r.length}`);let t=r.slice(0,e),n=t[0].length;for(let o of t)if(o.length!==n)throw new Error("All shares must have the same length");let s=n-1,i=new Uint8Array(s);for(let o=0;o<s;o++){let a=[];for(let c of t)a.push({x:c[0],y:c[o+1]});i[o]=Cn.interpolate(a)}return i}function Bn(r){return new TextEncoder().encode(r)}function Dn(r){return new TextDecoder().decode(r)}function Tn(r){return Array.from(r).map(e=>e.toString(16).padStart(2,"0")).join("")}function Rn(r){let e=new Uint8Array(r.length/2);for(let t=0;t<r.length;t+=2)e[t/2]=parseInt(r.substring(t,t+2),16);return e}var Oe,Cn,Fn=p(()=>{"use strict";Oe=class Oe{static multiply(e,t){return e===0||t===0?0:this.EXP_TABLE[(this.LOG_TABLE[e]+this.LOG_TABLE[t])%255]}static divide(e,t){if(t===0)throw new Error("Division by zero in GF(256)");return e===0?0:this.EXP_TABLE[(this.LOG_TABLE[e]-this.LOG_TABLE[t]+255)%255]}static add(e,t){return e^t}static evaluatePolynomial(e,t){let n=0;for(let s=e.length-1;s>=0;s--)n=this.add(this.multiply(n,t),e[s]);return n}static interpolate(e){let t=0;for(let n=0;n<e.length;n++){let s=e[n].y,i=1;for(let o=0;o<e.length;o++)n!==o&&(s=this.multiply(s,e[o].x),i=this.multiply(i,this.add(e[n].x,e[o].x)));t=this.add(t,this.divide(s,i))}return t}};Oe.LOG_TABLE=[],Oe.EXP_TABLE=[],(()=>{let e=(n,s)=>{let i=0;for(let o=0;o<8;o++){s&1&&(i^=n);let a=n&128;n<<=1,a&&(n^=283),s>>=1}return i&255},t=1;for(let n=0;n<255;n++)Oe.EXP_TABLE[n]=t,Oe.LOG_TABLE[t]=n,t=e(t,3);Oe.EXP_TABLE[255]=Oe.EXP_TABLE[0]})();Cn=Oe});var lc,Pt,ui=p(()=>{"use strict";Fn();lc=new Map,Pt=class{constructor(){this.storageKey="w3pk_social_recovery"}getItem(e){return typeof localStorage<"u"?localStorage.getItem(e):lc.get(e)||null}setItem(e,t){typeof localStorage<"u"?localStorage.setItem(e,t):lc.set(e,t)}async setupSocialRecovery(e,t,n,s){if(s>n.length)throw new Error("Threshold cannot be greater than number of guardians");if(s<2)throw new Error("Threshold must be at least 2");if(n.length>255)throw new Error("Cannot have more than 255 guardians");let i=Bn(e),o=Pn(i,s,n.length),a=n.map((l,u)=>({id:crypto.randomUUID(),name:l.name,email:l.email,phone:l.phone,shareEncrypted:Tn(o[u]),status:"pending",addedAt:new Date().toISOString()})),c={threshold:s,totalGuardians:n.length,guardians:a,createdAt:new Date().toISOString(),ethereumAddress:t};return this.setItem(this.storageKey,JSON.stringify(c)),a}getSocialRecoveryConfig(){let e=this.getItem(this.storageKey);if(!e)return null;try{return JSON.parse(e)}catch{return null}}async generateGuardianInvite(e){let t=this.getSocialRecoveryConfig();if(!t)throw new Error("Social recovery not configured");let n=t.guardians.findIndex(c=>c.id===e.id);if(n===-1)throw new Error("Guardian not found");let s={version:1,guardianId:e.id,guardianName:e.name,guardianIndex:n+1,totalGuardians:t.totalGuardians,threshold:t.threshold,share:e.shareEncrypted,ethereumAddress:t.ethereumAddress,createdAt:t.createdAt},i=JSON.stringify(s),o=await this.generateQRCode(i),a=this.getGuardianExplainer(e.name,n+1,t.totalGuardians,t.threshold);return{guardianId:e.id,qrCode:o,shareCode:i,explainer:a}}async generateQRCode(e){try{return await(await Promise.resolve().then(()=>er(mr()))).toDataURL(e,{errorCorrectionLevel:"H",width:512,margin:2})}catch{return this.createPlaceholderQR(e)}}createPlaceholderQR(e){if(typeof document>"u")return`data:text/plain;base64,${Buffer.from(e).toString("base64")}`;let t=document.createElement("canvas");t.width=512,t.height=512;let n=t.getContext("2d");return n?(n.fillStyle="white",n.fillRect(0,0,512,512),n.fillStyle="black",n.font="bold 20px sans-serif",n.textAlign="center",n.textBaseline="middle",n.fillText("Guardian Recovery Share",256,100),n.font="14px monospace",n.fillText('Install "qrcode" for QR codes',256,480),n.font="10px monospace",this.wrapText(e.substring(0,200)+"...",60).forEach((i,o)=>{n.fillText(i,256,150+o*12)}),t.toDataURL("image/png")):""}wrapText(e,t){let n=[];for(let s=0;s<e.length;s+=t)n.push(e.substring(s,s+t));return n}getGuardianExplainer(e,t,n,s){return`
85
85
  \u{1F6E1}\uFE0F GUARDIAN RECOVERY SHARE
86
86
 
87
87
  Dear ${e},
88
88
 
89
- You have been chosen as Guardian ${t} of ${r}
89
+ You have been chosen as Guardian ${t} of ${n}
90
90
 
91
91
  YOUR ROLE:
92
92
  ----------
@@ -163,7 +163,7 @@ Recommended storage:
163
163
 
164
164
  ---
165
165
 
166
- Guardian ${t}/${r} | Threshold: ${s}/${r}
166
+ Guardian ${t}/${n} | Threshold: ${s}/${n}
167
167
  Created: ${new Date().toISOString()}
168
168
 
169
169
  Thank you for being a trusted guardian!
@@ -172,13 +172,13 @@ Thank you for being a trusted guardian!
172
172
 
173
173
  NEED HELP?
174
174
  Visit: https://docs.w3pk.org/social-recovery
175
- `}async recoverFromGuardians(e){if(!e||e.length===0)throw new Error("No guardian shares provided");let t=JSON.parse(e[0]),r=t.threshold,s=t.ethereumAddress;if(!r)throw new Error("Invalid share data: missing threshold information");if(e.length<r)throw new Error(`Need at least ${r} shares, got ${e.length}`);let o=e.map(l=>{let h=JSON.parse(l);if(h.ethereumAddress?.toLowerCase()!==s?.toLowerCase())throw new Error("Shares are from different wallets - cannot combine");return{guardianId:h.guardianId,share:h.share,index:h.guardianIndex}}).map(l=>xn(l.share)),c=yn(o,r),a=bn(c),u;try{u=JSON.parse(a)}catch{throw new Error("Recovered data is not valid JSON - invalid shares")}if(!u.ethereumAddress)throw new Error("Recovered backup file is missing ethereum address");if(s&&u.ethereumAddress.toLowerCase()!==s.toLowerCase())throw new Error("Recovered address does not match share data - invalid shares");return{backupFileJson:a,ethereumAddress:u.ethereumAddress}}getRecoveryProgress(e){let t=this.getSocialRecoveryConfig();if(!t)throw new Error("Social recovery not configured");let r=new Set(e.map(s=>{try{return JSON.parse(s).guardianId}catch{return null}}).filter(Boolean));return{collected:r.size,required:t.threshold,guardians:t.guardians.map(s=>({id:s.id,name:s.name,hasProvided:r.has(s.id)})),canRecover:r.size>=t.threshold}}markGuardianVerified(e){let t=this.getSocialRecoveryConfig();if(!t)throw new Error("Social recovery not configured");let r=t.guardians.find(s=>s.id===e);if(!r)throw new Error("Guardian not found");r.status="active",r.lastVerified=new Date().toISOString(),this.setItem(this.storageKey,JSON.stringify(t))}revokeGuardian(e){let t=this.getSocialRecoveryConfig();if(!t)throw new Error("Social recovery not configured");let r=t.guardians.find(s=>s.id===e);if(!r)throw new Error("Guardian not found");r.status="revoked",this.setItem(this.storageKey,JSON.stringify(t))}async addGuardian(e,t){let r=this.getSocialRecoveryConfig();if(!r)throw new Error("Social recovery not configured");let s=[...r.guardians.filter(o=>o.status!=="revoked").map(o=>({name:o.name,email:o.email,phone:o.phone})),t],i=await this.setupSocialRecovery(e,r.ethereumAddress,s,r.threshold);return i[i.length-1]}}});var An,qa=w(()=>{"use strict";tn();js();Js();An=class{constructor(){this.verificationStorageKey="w3pk_backup_verifications";this.storage=new qe,this.qrCreator=new bt,this.socialRecoveryManager=new St}async getBackupStatus(e){let t=await this.storage.getBackupsByAddress(e),r=await this.detectPasskeySync(),s=t.map(a=>({id:a.id,method:a.method,location:"local",createdAt:a.createdAt,deviceFingerprint:a.deviceFingerprint})),i=this.getSocialRecoveryStatus(),o=this.getVerificationStatus(e);return{passkeySync:r,recoveryPhrase:{verified:o.verified,verificationCount:o.count,encryptedBackups:s},socialRecovery:i,securityScore:this.calculateSecurityScore(r,s,i,o)}}async detectPasskeySync(){if(typeof navigator>"u")return{enabled:!1,deviceCount:0,lastSyncTime:void 0,platform:"unknown"};let e=navigator.userAgent.toLowerCase(),t="unknown";e.includes("mac")||e.includes("iphone")||e.includes("ipad")?t="apple":e.includes("android")?t="google":e.includes("windows")&&(t="microsoft");let r=await this.checkResidentKeySupport();return{enabled:r,deviceCount:1,lastSyncTime:r?new Date().toISOString():void 0,platform:t}}async checkResidentKeySupport(){if(typeof window>"u"||!window.PublicKeyCredential)return!1;try{return await PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()}catch{return!1}}getSocialRecoveryStatus(){let e=this.socialRecoveryManager.getSocialRecoveryConfig();if(!e)return;let t=e.guardians.filter(r=>r.status==="active").length;return{enabled:!0,guardians:e.guardians,threshold:e.threshold,sharesDistributed:e.guardians.length,verifiedGuardians:t}}getVerificationStatus(e){try{let t=typeof localStorage<"u"?localStorage.getItem(this.verificationStorageKey):null;return t?JSON.parse(t)[e.toLowerCase()]||{verified:!1,count:0}:{verified:!1,count:0}}catch{return{verified:!1,count:0}}}markBackupVerified(e){try{let t=typeof localStorage<"u"?localStorage.getItem(this.verificationStorageKey):null,r=t?JSON.parse(t):{},s=e.toLowerCase();r[s]||(r[s]={verified:!1,count:0}),r[s].verified=!0,r[s].count+=1,r[s].lastVerifiedAt=new Date().toISOString(),typeof localStorage<"u"&&localStorage.setItem(this.verificationStorageKey,JSON.stringify(r))}catch(t){console.error("Failed to mark backup as verified:",t)}}calculateSecurityScore(e,t,r,s){let i=0;r?.enabled&&(i=20,r.verifiedGuardians>=r.threshold&&(i+=10));let o=0;s?.verified&&(o=10,o+=Math.min(s.count-1,10));let c={passkeyActive:e.enabled?20:0,passkeyMultiDevice:e.deviceCount>1?10:0,phraseVerified:o,encryptedBackup:t.length>0?20:0,socialRecovery:i},a=Object.values(c).reduce((h,g)=>h+g,0),u,l;return a<=20?(u="vulnerable",l='Create encrypted backup to reach "protected" (40+ pts)'):a<=50?(u="protected",l='Set up social recovery to reach "secured" (70+ pts)'):a<=80?(u="secured",l='Enable all methods to reach "fort-knox" (100 pts)'):(u="fort-knox",l="Maximum security achieved!"),{total:a,breakdown:c,level:u,nextMilestone:l}}async createQRBackup(e,t,r){let{qrCodeDataURL:s,rawData:i,instructions:o}=await this.qrCreator.createQRBackup(e,t,r),c={id:crypto.randomUUID(),ethereumAddress:t,method:"qr",createdAt:new Date().toISOString(),addressChecksum:JSON.parse(i).checksum};return await this.storage.storeBackupMetadata(c),{qrCodeDataURL:s,instructions:o}}async restoreFromQR(e,t){return await this.qrCreator.restoreFromQR(e,t)}async simulateRecoveryScenario(e,t){let r=[];switch(e.type){case"lost-device":t.passkeySync.enabled&&t.passkeySync.deviceCount>1&&r.push({method:"Passkey Sync (iCloud/Google)",success:!0,time:"5 minutes",requirements:["Sign in to cloud account","Authenticate on new device"]}),t.recoveryPhrase.encryptedBackups.length>0&&r.push({method:"Encrypted Backup",success:!0,time:"2 minutes",requirements:["Backup file","Password"]}),t.socialRecovery?.enabled&&r.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break;case"lost-phrase":t.passkeySync.enabled&&r.push({method:"Passkey (current device)",success:!0,time:"instant",requirements:["Current device","Biometric/PIN"]}),t.socialRecovery?.enabled&&r.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break;case"lost-both":t.passkeySync.enabled&&t.passkeySync.deviceCount>1&&r.push({method:"Passkey Sync",success:!0,time:"5 minutes",requirements:["Cloud account access","New device"]}),t.socialRecovery?.enabled&&r.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break;case"switch-platform":t.recoveryPhrase.encryptedBackups.length>0&&r.push({method:"Encrypted Backup",success:!0,time:"2 minutes",requirements:["Backup file","Password"]}),t.socialRecovery?.enabled&&r.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break}let s=r.length>0&&r.some(o=>o.success),i="";return s?(i=`\u2705 You're safe! ${r.length} way${r.length>1?"s":""} to recover.
175
+ `}async recoverFromGuardians(e){if(!e||e.length===0)throw new Error("No guardian shares provided");let t=JSON.parse(e[0]),n=t.threshold,s=t.ethereumAddress;if(!n)throw new Error("Invalid share data: missing threshold information");if(e.length<n)throw new Error(`Need at least ${n} shares, got ${e.length}`);let o=e.map(u=>{let d=JSON.parse(u);if(d.ethereumAddress?.toLowerCase()!==s?.toLowerCase())throw new Error("Shares are from different wallets - cannot combine");return{guardianId:d.guardianId,share:d.share,index:d.guardianIndex}}).map(u=>Rn(u.share)),a=In(o,n),c=Dn(a),l;try{l=JSON.parse(c)}catch{throw new Error("Recovered data is not valid JSON - invalid shares")}if(!l.ethereumAddress)throw new Error("Recovered backup file is missing ethereum address");if(s&&l.ethereumAddress.toLowerCase()!==s.toLowerCase())throw new Error("Recovered address does not match share data - invalid shares");return{backupFileJson:c,ethereumAddress:l.ethereumAddress}}getRecoveryProgress(e){let t=this.getSocialRecoveryConfig();if(!t)throw new Error("Social recovery not configured");let n=new Set(e.map(s=>{try{return JSON.parse(s).guardianId}catch{return null}}).filter(Boolean));return{collected:n.size,required:t.threshold,guardians:t.guardians.map(s=>({id:s.id,name:s.name,hasProvided:n.has(s.id)})),canRecover:n.size>=t.threshold}}markGuardianVerified(e){let t=this.getSocialRecoveryConfig();if(!t)throw new Error("Social recovery not configured");let n=t.guardians.find(s=>s.id===e);if(!n)throw new Error("Guardian not found");n.status="active",n.lastVerified=new Date().toISOString(),this.setItem(this.storageKey,JSON.stringify(t))}revokeGuardian(e){let t=this.getSocialRecoveryConfig();if(!t)throw new Error("Social recovery not configured");let n=t.guardians.find(s=>s.id===e);if(!n)throw new Error("Guardian not found");n.status="revoked",this.setItem(this.storageKey,JSON.stringify(t))}async addGuardian(e,t){let n=this.getSocialRecoveryConfig();if(!n)throw new Error("Social recovery not configured");let s=[...n.guardians.filter(o=>o.status!=="revoked").map(o=>({name:o.name,email:o.email,phone:o.phone})),t],i=await this.setupSocialRecovery(e,n.ethereumAddress,s,n.threshold);return i[i.length-1]}}});var Mn,uc=p(()=>{"use strict";fn();li();ui();Mn=class{constructor(){this.verificationStorageKey="w3pk_backup_verifications";this.storage=new Qe,this.qrCreator=new Ct,this.socialRecoveryManager=new Pt}async getBackupStatus(e){let t=await this.storage.getBackupsByAddress(e),n=await this.detectPasskeySync(),s=t.map(c=>({id:c.id,method:c.method,location:"local",createdAt:c.createdAt,deviceFingerprint:c.deviceFingerprint})),i=this.getSocialRecoveryStatus(),o=this.getVerificationStatus(e);return{passkeySync:n,recoveryPhrase:{verified:o.verified,verificationCount:o.count,encryptedBackups:s},socialRecovery:i,securityScore:this.calculateSecurityScore(n,s,i,o)}}async detectPasskeySync(){if(typeof navigator>"u")return{enabled:!1,deviceCount:0,lastSyncTime:void 0,platform:"unknown"};let e=navigator.userAgent.toLowerCase(),t="unknown";e.includes("mac")||e.includes("iphone")||e.includes("ipad")?t="apple":e.includes("android")?t="google":e.includes("windows")&&(t="microsoft");let n=await this.checkResidentKeySupport();return{enabled:n,deviceCount:1,lastSyncTime:n?new Date().toISOString():void 0,platform:t}}async checkResidentKeySupport(){if(typeof window>"u"||!window.PublicKeyCredential)return!1;try{return await PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()}catch{return!1}}getSocialRecoveryStatus(){let e=this.socialRecoveryManager.getSocialRecoveryConfig();if(!e)return;let t=e.guardians.filter(n=>n.status==="active").length;return{enabled:!0,guardians:e.guardians,threshold:e.threshold,sharesDistributed:e.guardians.length,verifiedGuardians:t}}getVerificationStatus(e){try{let t=typeof localStorage<"u"?localStorage.getItem(this.verificationStorageKey):null;return t?JSON.parse(t)[e.toLowerCase()]||{verified:!1,count:0}:{verified:!1,count:0}}catch{return{verified:!1,count:0}}}markBackupVerified(e){try{let t=typeof localStorage<"u"?localStorage.getItem(this.verificationStorageKey):null,n=t?JSON.parse(t):{},s=e.toLowerCase();n[s]||(n[s]={verified:!1,count:0}),n[s].verified=!0,n[s].count+=1,n[s].lastVerifiedAt=new Date().toISOString(),typeof localStorage<"u"&&localStorage.setItem(this.verificationStorageKey,JSON.stringify(n))}catch(t){console.error("Failed to mark backup as verified:",t)}}calculateSecurityScore(e,t,n,s){let i=0;n?.enabled&&(i=20,n.verifiedGuardians>=n.threshold&&(i+=10));let o=0;s?.verified&&(o=10,o+=Math.min(s.count-1,10));let a={passkeyActive:e.enabled?20:0,passkeyMultiDevice:e.deviceCount>1?10:0,phraseVerified:o,encryptedBackup:t.length>0?20:0,socialRecovery:i},c=Object.values(a).reduce((d,h)=>d+h,0),l,u;return c<=20?(l="vulnerable",u='Create encrypted backup to reach "protected" (40+ pts)'):c<=50?(l="protected",u='Set up social recovery to reach "secured" (70+ pts)'):c<=80?(l="secured",u='Enable all methods to reach "fort-knox" (100 pts)'):(l="fort-knox",u="Maximum security achieved!"),{total:c,breakdown:a,level:l,nextMilestone:u}}async createQRBackup(e,t,n){let{qrCodeDataURL:s,rawData:i,instructions:o}=await this.qrCreator.createQRBackup(e,t,n),a={id:crypto.randomUUID(),ethereumAddress:t,method:"qr",createdAt:new Date().toISOString(),addressChecksum:JSON.parse(i).checksum};return await this.storage.storeBackupMetadata(a),{qrCodeDataURL:s,instructions:o}}async restoreFromQR(e,t){return await this.qrCreator.restoreFromQR(e,t)}async simulateRecoveryScenario(e,t){let n=[];switch(e.type){case"lost-device":t.passkeySync.enabled&&t.passkeySync.deviceCount>1&&n.push({method:"Passkey Sync (iCloud/Google)",success:!0,time:"5 minutes",requirements:["Sign in to cloud account","Authenticate on new device"]}),t.recoveryPhrase.encryptedBackups.length>0&&n.push({method:"Encrypted Backup",success:!0,time:"2 minutes",requirements:["Backup file","Password"]}),t.socialRecovery?.enabled&&n.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break;case"lost-phrase":t.passkeySync.enabled&&n.push({method:"Passkey (current device)",success:!0,time:"instant",requirements:["Current device","Biometric/PIN"]}),t.socialRecovery?.enabled&&n.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break;case"lost-both":t.passkeySync.enabled&&t.passkeySync.deviceCount>1&&n.push({method:"Passkey Sync",success:!0,time:"5 minutes",requirements:["Cloud account access","New device"]}),t.socialRecovery?.enabled&&n.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break;case"switch-platform":t.recoveryPhrase.encryptedBackups.length>0&&n.push({method:"Encrypted Backup",success:!0,time:"2 minutes",requirements:["Backup file","Password"]}),t.socialRecovery?.enabled&&n.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break}let s=n.length>0&&n.some(o=>o.success),i="";return s?(i=`\u2705 You're safe! ${n.length} way${n.length>1?"s":""} to recover.
176
176
 
177
177
  `,i+=`Available recovery methods:
178
- `,r.forEach(o=>{i+=`- ${o.method} (~${o.time})
178
+ `,n.forEach(o=>{i+=`- ${o.method} (~${o.time})
179
179
  `})):(i=`\u274C Wallet cannot be recovered in this scenario.
180
180
 
181
- `,i+="Recommendation: Set up at least 2 backup methods to prevent total loss."),{scenario:e,success:s,availableMethods:r,timeEstimate:s?r[0].time:"N/A",educationalNote:i}}}});var de={};B(de,{BackupFileManager:()=>cr});var cr,ae=w(()=>{"use strict";Ve();W();cr=class{async createPasswordBackup(e,t,r){if(!r||r.length<1)throw new Error("Password is required for password-based backup");let s=crypto.getRandomValues(new Uint8Array(32)),i=await He(e,r,s),o=await X(t),c={createdAt:new Date().toISOString(),ethereumAddress:t,encryptedMnemonic:i.encrypted,encryptionMethod:"password",passwordEncryption:{salt:i.salt,iv:i.iv,iterations:i.iterations},addressChecksum:o},a=JSON.stringify(c,null,2),u=new Blob([a],{type:"application/json"});return{backupFile:c,json:a,blob:u}}async createPasskeyBackup(e,t,r,s){let i=await G(r,s),o=await ne(e,i),c=await X(t),u=new TextEncoder().encode(s),l=await crypto.subtle.digest("SHA-256",u),g=Array.from(new Uint8Array(l)).map(k=>k.toString(16).padStart(2,"0")).join("").substring(0,16),d={createdAt:new Date().toISOString(),ethereumAddress:t,encryptedMnemonic:o,encryptionMethod:"passkey",credentialId:r,publicKeyFingerprint:g,addressChecksum:c},f=JSON.stringify(d,null,2),y=new Blob([f],{type:"application/json"});return{backupFile:d,json:f,blob:y}}async createHybridBackup(e,t,r,s,i){let o=await G(s,i),c=await ne(e,o),a=crypto.getRandomValues(new Uint8Array(32)),u=await He(c,r,a),l=await X(t),g=new TextEncoder().encode(i),d=await crypto.subtle.digest("SHA-256",g),y=Array.from(new Uint8Array(d)).map(v=>v.toString(16).padStart(2,"0")).join("").substring(0,16),k={createdAt:new Date().toISOString(),ethereumAddress:t,encryptedMnemonic:u.encrypted,encryptionMethod:"hybrid",credentialId:s,publicKeyFingerprint:y,passwordEncryption:{salt:u.salt,iv:u.iv,iterations:u.iterations},addressChecksum:l},m=JSON.stringify(k,null,2),b=new Blob([m],{type:"application/json"});return{backupFile:k,json:m,blob:b}}async restoreWithExistingPasskey(e,t,r){if(e.encryptionMethod==="password")throw new Error("This backup is password-protected. Use restoreWithPassword() instead.");if(e.credentialId&&e.credentialId!==t)throw new Error("Credential ID mismatch. This backup was created with a different passkey.");let s;if(e.encryptionMethod==="passkey"){let a=await G(t,r);s=await se(e.encryptedMnemonic,a)}else throw new Error("This backup requires both passkey and password. Use restoreWithHybrid() instead.");let{Wallet:i}=await import("ethers"),o=i.fromPhrase(s);if(await X(o.address)!==e.addressChecksum)throw new Error("Address checksum mismatch - corrupted backup or decryption failure");return{mnemonic:s,ethereumAddress:e.ethereumAddress}}async restoreWithPassword(e,t){if(!e.passwordEncryption)throw new Error("This backup is not password-protected.");let r;if(e.encryptionMethod==="password")r=await Xt(e.encryptedMnemonic,t,e.passwordEncryption.salt,e.passwordEncryption.iv,e.passwordEncryption.iterations);else throw e.encryptionMethod==="hybrid"?new Error("This backup requires both passkey and password. Use restoreWithHybrid() instead."):new Error("This backup is passkey-only. Use restoreWithExistingPasskey() instead.");let{Wallet:s}=await import("ethers"),i=s.fromPhrase(r);if(await X(i.address)!==e.addressChecksum)throw new Error("Address checksum mismatch - corrupted backup or wrong password");return{mnemonic:r,ethereumAddress:e.ethereumAddress}}async restoreWithHybrid(e,t,r,s){if(e.encryptionMethod!=="hybrid")throw new Error("This backup is not a hybrid backup.");if(!e.passwordEncryption)throw new Error("Missing password encryption data in hybrid backup.");let i=await Xt(e.encryptedMnemonic,t,e.passwordEncryption.salt,e.passwordEncryption.iv,e.passwordEncryption.iterations),o=await G(r,s),c=await se(i,o),{Wallet:a}=await import("ethers"),u=a.fromPhrase(c);if(await X(u.address)!==e.addressChecksum)throw new Error("Address checksum mismatch - corrupted backup or decryption failure");return{mnemonic:c,ethereumAddress:e.ethereumAddress}}async parseBackupFile(e){let t;e instanceof Blob?t=await e.text():t=e;let r=JSON.parse(t);if(!r.createdAt||!r.ethereumAddress||!r.encryptedMnemonic)throw new Error("Invalid backup file: missing required fields");return r}createDownloadableBackup(e,t){let r=JSON.stringify(e,null,2),s=new Blob([r],{type:"application/json"}),i=`w3pk-backup-${e.ethereumAddress.substring(0,8)}-${new Date().toISOString().split("T")[0]}.json`;return{blob:s,filename:t||i}}}});var Ha=w(()=>{"use strict"});var Qe={};B(Qe,{BackupFileManager:()=>cr,BackupManager:()=>An,BackupStorage:()=>qe,QRBackupCreator:()=>bt,decryptWithPassword:()=>Xt,deriveAddressChecksum:()=>X,deriveKeyFromPassword:()=>rn,encryptWithPassword:()=>He,getDeviceFingerprint:()=>Se,validatePasswordStrength:()=>Wo});var Xe=w(()=>{"use strict";qa();tn();js();ae();Ha();Ve()});var kn={};B(kn,{SocialRecovery:()=>Qs});var Qs,En=w(()=>{"use strict";vn();Qs=class{async splitAmongGuardians(e,t,r){if(r>t.length)throw new Error("Threshold cannot exceed number of guardians");if(r<2)throw new Error("Threshold must be at least 2 for security");if(t.length>255)throw new Error("Cannot have more than 255 guardians");let s=JSON.stringify(e),i=wn(s),o=mn(i,r,t.length),c=t.map((a,u)=>({guardianId:crypto.randomUUID(),guardianName:a.name,shareData:Sn(o[u]),shareIndex:u+1,createdAt:new Date().toISOString(),walletAddress:e.ethereumAddress}));return{threshold:r,totalShares:t.length,guardianShares:c,backupFile:e,setupDate:new Date().toISOString()}}async recoverFromShares(e){if(e.length<2)throw new Error("At least 2 shares required for recovery");let t=e[0].walletAddress;if(!e.every(a=>a.walletAddress===t))throw new Error("Shares are from different wallets - cannot combine");let s=e.map(a=>xn(a.shareData)),i=yn(s,e.length),o=bn(i),c=JSON.parse(o);if(c.ethereumAddress!==t)throw new Error("Recovered backup address mismatch - corrupted shares");return c}async createGuardianInvitation(e,t){let r={type:"w3pk-guardian-share",version:1,guardianName:e.guardianName,walletAddress:e.walletAddress,shareData:e.shareData,shareIndex:e.shareIndex,createdAt:e.createdAt,message:t||`You have been chosen as a recovery guardian for wallet ${e.walletAddress.substring(0,10)}...`},s=JSON.stringify(r,null,2),i;try{i=await(await Promise.resolve().then(()=>lt(ar()))).toDataURL(s,{errorCorrectionLevel:"H",width:512})}catch(c){console.warn("QR code generation not available:",c)}let o=`
181
+ `,i+="Recommendation: Set up at least 2 backup methods to prevent total loss."),{scenario:e,success:s,availableMethods:n,timeEstimate:s?n[0].time:"N/A",educationalNote:i}}}});var pe={};E(pe,{BackupFileManager:()=>gr});var gr,ce=p(()=>{"use strict";Xe();W();gr=class{async createPasswordBackup(e,t,n){if(!n||n.length<1)throw new Error("Password is required for password-based backup");let s=crypto.getRandomValues(new Uint8Array(32)),i=await Ze(e,n,s),o=await te(t),a={createdAt:new Date().toISOString(),ethereumAddress:t,encryptedMnemonic:i.encrypted,encryptionMethod:"password",passwordEncryption:{salt:i.salt,iv:i.iv,iterations:i.iterations},addressChecksum:o},c=JSON.stringify(a,null,2),l=new Blob([c],{type:"application/json"});return{backupFile:a,json:c,blob:l}}async createPasskeyBackup(e,t,n,s){let i=await Y(n,s),o=await se(e,i),a=await te(t),l=new TextEncoder().encode(s),u=await crypto.subtle.digest("SHA-256",l),h=Array.from(new Uint8Array(u)).map(S=>S.toString(16).padStart(2,"0")).join("").substring(0,16),m={createdAt:new Date().toISOString(),ethereumAddress:t,encryptedMnemonic:o,encryptionMethod:"passkey",credentialId:n,publicKeyFingerprint:h,addressChecksum:a},g=JSON.stringify(m,null,2),y=new Blob([g],{type:"application/json"});return{backupFile:m,json:g,blob:y}}async createHybridBackup(e,t,n,s,i){let o=await Y(s,i),a=await se(e,o),c=crypto.getRandomValues(new Uint8Array(32)),l=await Ze(a,n,c),u=await te(t),h=new TextEncoder().encode(i),m=await crypto.subtle.digest("SHA-256",h),y=Array.from(new Uint8Array(m)).map(v=>v.toString(16).padStart(2,"0")).join("").substring(0,16),S={createdAt:new Date().toISOString(),ethereumAddress:t,encryptedMnemonic:l.encrypted,encryptionMethod:"hybrid",credentialId:s,publicKeyFingerprint:y,passwordEncryption:{salt:l.salt,iv:l.iv,iterations:l.iterations},addressChecksum:u},b=JSON.stringify(S,null,2),A=new Blob([b],{type:"application/json"});return{backupFile:S,json:b,blob:A}}async restoreWithExistingPasskey(e,t,n){if(e.encryptionMethod==="password")throw new Error("This backup is password-protected. Use restoreWithPassword() instead.");if(e.credentialId&&e.credentialId!==t)throw new Error("Credential ID mismatch. This backup was created with a different passkey.");let s;if(e.encryptionMethod==="passkey"){let c=await Y(t,n);s=await ie(e.encryptedMnemonic,c)}else throw new Error("This backup requires both passkey and password. Use restoreWithHybrid() instead.");let{Wallet:i}=await import("ethers"),o=i.fromPhrase(s);if(await te(o.address)!==e.addressChecksum)throw new Error("Address checksum mismatch - corrupted backup or decryption failure");return{mnemonic:s,ethereumAddress:e.ethereumAddress}}async restoreWithPassword(e,t){if(!e.passwordEncryption)throw new Error("This backup is not password-protected.");let n;if(e.encryptionMethod==="password")n=await or(e.encryptedMnemonic,t,e.passwordEncryption.salt,e.passwordEncryption.iv,e.passwordEncryption.iterations);else throw e.encryptionMethod==="hybrid"?new Error("This backup requires both passkey and password. Use restoreWithHybrid() instead."):new Error("This backup is passkey-only. Use restoreWithExistingPasskey() instead.");let{Wallet:s}=await import("ethers"),i=s.fromPhrase(n);if(await te(i.address)!==e.addressChecksum)throw new Error("Address checksum mismatch - corrupted backup or wrong password");return{mnemonic:n,ethereumAddress:e.ethereumAddress}}async restoreWithHybrid(e,t,n,s){if(e.encryptionMethod!=="hybrid")throw new Error("This backup is not a hybrid backup.");if(!e.passwordEncryption)throw new Error("Missing password encryption data in hybrid backup.");let i=await or(e.encryptedMnemonic,t,e.passwordEncryption.salt,e.passwordEncryption.iv,e.passwordEncryption.iterations),o=await Y(n,s),a=await ie(i,o),{Wallet:c}=await import("ethers"),l=c.fromPhrase(a);if(await te(l.address)!==e.addressChecksum)throw new Error("Address checksum mismatch - corrupted backup or decryption failure");return{mnemonic:a,ethereumAddress:e.ethereumAddress}}async parseBackupFile(e){let t;e instanceof Blob?t=await e.text():t=e;let n=JSON.parse(t);if(!n.createdAt||!n.ethereumAddress||!n.encryptedMnemonic)throw new Error("Invalid backup file: missing required fields");return n}createDownloadableBackup(e,t){let n=JSON.stringify(e,null,2),s=new Blob([n],{type:"application/json"}),i=`w3pk-backup-${e.ethereumAddress.substring(0,8)}-${new Date().toISOString().split("T")[0]}.json`;return{blob:s,filename:t||i}}}});var dc=p(()=>{"use strict"});var st={};E(st,{BackupFileManager:()=>gr,BackupManager:()=>Mn,BackupStorage:()=>Qe,QRBackupCreator:()=>Ct,decryptWithPassword:()=>or,deriveAddressChecksum:()=>te,deriveKeyFromPassword:()=>pn,encryptWithPassword:()=>Ze,getDeviceFingerprint:()=>Ee,validatePasswordStrength:()=>ca});var it=p(()=>{"use strict";uc();fn();li();ce();dc();Xe()});var Un={};E(Un,{SocialRecovery:()=>di});var di,Nn=p(()=>{"use strict";Fn();di=class{async splitAmongGuardians(e,t,n){if(n>t.length)throw new Error("Threshold cannot exceed number of guardians");if(n<2)throw new Error("Threshold must be at least 2 for security");if(t.length>255)throw new Error("Cannot have more than 255 guardians");let s=JSON.stringify(e),i=Bn(s),o=Pn(i,n,t.length),a=t.map((c,l)=>({guardianId:crypto.randomUUID(),guardianName:c.name,shareData:Tn(o[l]),shareIndex:l+1,threshold:n,createdAt:new Date().toISOString(),walletAddress:e.ethereumAddress}));return{threshold:n,totalShares:t.length,guardianShares:a,backupFile:e,setupDate:new Date().toISOString()}}async recoverFromShares(e){if(e.length<2)throw new Error("At least 2 shares required for recovery");let t=e[0].threshold,n=e[0].walletAddress;if(!t)throw new Error("Invalid share: missing threshold information");if(e.length<t)throw new Error(`Need at least ${t} shares to recover, but only ${e.length} provided`);if(!e.every(l=>l.walletAddress===n&&l.threshold===t))throw new Error("Shares are from different wallets or have inconsistent thresholds");let i=e.map(l=>Rn(l.shareData)),o=In(i,t),a=Dn(o),c=JSON.parse(a);if(c.ethereumAddress!==n)throw new Error("Recovered backup address mismatch - corrupted shares");return c}async createGuardianInvitation(e,t){let n={type:"w3pk-guardian-share",version:1,guardianName:e.guardianName,walletAddress:e.walletAddress,shareData:e.shareData,shareIndex:e.shareIndex,threshold:e.threshold,createdAt:e.createdAt,message:t||`You have been chosen as a recovery guardian for wallet ${e.walletAddress.substring(0,10)}...`},s=JSON.stringify(n,null,2),i;try{i=await(await Promise.resolve().then(()=>er(mr()))).toDataURL(s,{errorCorrectionLevel:"H",width:512})}catch(a){console.warn("QR code generation not available:",a)}let o=`
182
182
  \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550
183
183
  W3PK GUARDIAN RECOVERY SHARE
184
184
  \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550
@@ -220,7 +220,7 @@ ${e.shareData}
220
220
  Generated by w3pk - Web3 Passkey SDK
221
221
  https://github.com/w3hc/w3pk
222
222
  \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550
223
- `;return{qrCodeDataURL:i,shareDocument:o,shareJson:s}}parseGuardianShare(e){let t=JSON.parse(e);if(t.type!=="w3pk-guardian-share")throw new Error("Invalid guardian share format");return{guardianId:crypto.randomUUID(),guardianName:t.guardianName,shareData:t.shareData,shareIndex:t.shareIndex,createdAt:t.createdAt,walletAddress:t.walletAddress}}async verifyRecovery(e){try{return{canRecover:!0,recoveredAddress:(await this.recoverFromShares(e)).ethereumAddress}}catch(t){return{canRecover:!1,error:t instanceof Error?t.message:"Unknown error"}}}createShareDownload(e){let t=JSON.stringify({type:"w3pk-guardian-share",version:1,guardianName:e.guardianName,walletAddress:e.walletAddress,shareData:e.shareData,shareIndex:e.shareIndex,createdAt:e.createdAt},null,2),r=new Blob([t],{type:"application/json"}),s=`w3pk-guardian-${e.guardianName.replace(/\s+/g,"-")}-share-${e.shareIndex}.json`;return{blob:r,filename:s}}}});var Ya={};B(Ya,{authenticateWithPasskey:()=>Ga,promptPasskeySelection:()=>Va});async function Va(){try{let n=new F,e=Ie(),t=_(e),r=[];try{let a=await n.getAllCredentials();a.length>0&&(r=a.map(u=>({id:u.id,type:"public-key",transports:["internal","hybrid","usb","nfc","ble"]})))}catch{}let s={challenge:t,rpId:window.location.hostname,userVerification:"required",timeout:12e4};r.length>0&&(s.allowCredentials=r.map(a=>({id:_(a.id),type:a.type,transports:a.transports})));let i=await navigator.credentials.get({publicKey:s});if(!i)throw new O("No passkey selected. Please select a passkey to continue with sync.");let o=i.id,c=await n.getCredentialById(o);return c?{credentialId:o,publicKey:c.publicKey,ethereumAddress:c.ethereumAddress}:{credentialId:o,publicKey:"",ethereumAddress:void 0}}catch(n){throw n?.name==="NotAllowedError"?new O("Passkey selection was cancelled. Please try again and select your passkey."):n instanceof O?n:new O(`Failed to select passkey: ${n instanceof Error?n.message:"Unknown error"}`,n)}}async function Ga(n){try{let e=Ie(),r={challenge:_(e),rpId:window.location.hostname,userVerification:"required",timeout:6e4,allowCredentials:[{id:_(n),type:"public-key",transports:["internal","hybrid","usb","nfc","ble"]}]},s=await navigator.credentials.get({publicKey:r});if(!s)throw new O("Authentication failed - no credential returned");return s}catch(e){throw e?.name==="NotAllowedError"?new O("Authentication was cancelled or the passkey is not available on this device."):new O(`Passkey authentication failed: ${e instanceof Error?e.message:"Unknown error"}`,e)}}var Xs=w(()=>{"use strict";V();De();me();W()});var Cn={};B(Cn,{DeviceSyncManager:()=>lr});var lr,ur=w(()=>{"use strict";lr=class{constructor(){this.SYNC_STORAGE_KEY="w3pk_sync_info"}async getSyncInfo(){try{let e=localStorage.getItem(this.SYNC_STORAGE_KEY);return e?JSON.parse(e):null}catch(e){return console.error("Failed to get sync info:",e),null}}async updateSyncInfo(e){let t=await this.getSyncInfo(),r=this.detectPlatform(),s={deviceName:t?.deviceName||this.generateDeviceName(),platform:r,lastSyncTime:new Date().toISOString(),walletsSynced:t?.walletsSynced||[]};s.walletsSynced.includes(e)||s.walletsSynced.push(e),localStorage.setItem(this.SYNC_STORAGE_KEY,JSON.stringify(s))}detectPlatform(){let e=navigator.userAgent.toLowerCase();return/iphone|ipad|ipod/.test(e)?"ios":/android/.test(e)?"android":/mac/.test(e)?"macos":/win/.test(e)?"windows":/linux/.test(e)?"linux":"unknown"}generateDeviceName(){let e=this.detectPlatform(),t=new Date().toISOString().split("T")[0];return`${e}-device-${t}`}async exportForSync(e,t,r,s){let{BackupFileManager:i}=await Promise.resolve().then(()=>(ae(),de));return new i().createPasskeyBackup(e,t,r,s)}async importFromSync(e,t,r){let{BackupFileManager:s}=await Promise.resolve().then(()=>(ae(),de)),o=await new s().restoreWithExistingPasskey(e,t,r);return await this.updateSyncInfo(o.ethereumAddress),o}async canSyncBackup(e,t){return e.encryptionMethod!=="passkey"?!0:e.publicKeyFingerprint?t.some(r=>r.publicKeyFingerprint===e.publicKeyFingerprint):!1}async generateSyncQR(e){try{let t=await Promise.resolve().then(()=>lt(ar())),r=JSON.stringify(e);if(r.length>2953)throw new Error("Backup file too large for QR code. Use file transfer instead.");return t.toDataURL(r,{errorCorrectionLevel:"H",margin:2,width:512})}catch(t){throw t.code==="ERR_MODULE_NOT_FOUND"?new Error("QR code generation requires qrcode package: npm install qrcode"):t}}async parseSyncQR(e){let{BackupFileManager:t}=await Promise.resolve().then(()=>(ae(),de));return new t().parseBackupFile(e)}}});var Pn,ja=w(()=>{"use strict";Ve();Pn=class{async createSyncPackage(e,t,r){let s=await Se(),{deriveEncryptionKeyFromWebAuthn:i,encryptData:o}=await Promise.resolve().then(()=>(W(),Be)),c=await i(t,r),a=await o(e,c),u=this.detectSyncMethod();return{id:crypto.randomUUID(),encryptedData:a,deviceFingerprints:[s],syncMethod:u,version:1,updatedAt:new Date().toISOString()}}detectSyncMethod(){let e=navigator.userAgent.toLowerCase();return e.includes("mac")||e.includes("iphone")||e.includes("ipad")?"icloud":e.includes("android")||e.includes("chrome")?"google":e.includes("windows")?"microsoft":"custom"}async restoreFromSync(e,t,r){let{deriveEncryptionKeyFromWebAuthn:s,decryptData:i}=await Promise.resolve().then(()=>(W(),Be)),o=await s(t,r),c=await i(e.encryptedData,o),a=await Se();return e.deviceFingerprints.includes(a)||(e.deviceFingerprints.push(a),e.updatedAt=new Date().toISOString()),c}async getSetupFlow(){return{success:!1,steps:[{title:"1. Authenticate on New Device",action:"Use Touch ID/Face ID",educational:"Your passkey is automatically synced via iCloud/Google",status:"waiting"},{title:"2. Decrypt Wallet Data",action:"System validates device",educational:"Only your trusted devices can decrypt the wallet",status:"waiting"},{title:"3. Verify Recovery",action:"Check partial address",educational:"Confirm address matches your wallet",status:"waiting"},{title:"4. Ready!",action:"Wallet synced",educational:"All devices now have access",status:"waiting"}]}}getSyncExplainer(){return`
223
+ `;return{qrCodeDataURL:i,shareDocument:o,shareJson:s}}parseGuardianShare(e){let t=JSON.parse(e);if(t.type!=="w3pk-guardian-share")throw new Error("Invalid guardian share format");if(!t.threshold)throw new Error("Invalid guardian share: missing threshold information");return{guardianId:crypto.randomUUID(),guardianName:t.guardianName,shareData:t.shareData,shareIndex:t.shareIndex,threshold:t.threshold,createdAt:t.createdAt,walletAddress:t.walletAddress}}async verifyRecovery(e){try{return{canRecover:!0,recoveredAddress:(await this.recoverFromShares(e)).ethereumAddress}}catch(t){return{canRecover:!1,error:t instanceof Error?t.message:"Unknown error"}}}createShareDownload(e){let t=JSON.stringify({type:"w3pk-guardian-share",version:1,guardianName:e.guardianName,walletAddress:e.walletAddress,shareData:e.shareData,shareIndex:e.shareIndex,threshold:e.threshold,createdAt:e.createdAt},null,2),n=new Blob([t],{type:"application/json"}),s=`w3pk-guardian-${e.guardianName.replace(/\s+/g,"-")}-share-${e.shareIndex}.json`;return{blob:n,filename:s}}}});var pc={};E(pc,{authenticateWithPasskey:()=>fc,promptPasskeySelection:()=>hc});async function hc(){try{let r=new R,e=Fe(),t=L(e),n=[];try{let c=await r.getAllCredentials();c.length>0&&(n=c.map(l=>({id:l.id,type:"public-key",transports:["internal","hybrid","usb","nfc","ble"]})))}catch{}let s={challenge:t,rpId:window.location.hostname,userVerification:"required",timeout:12e4};n.length>0&&(s.allowCredentials=n.map(c=>({id:L(c.id),type:c.type,transports:c.transports})));let i=await navigator.credentials.get({publicKey:s});if(!i)throw new K("No passkey selected. Please select a passkey to continue with sync.");let o=i.id,a=await r.getCredentialById(o);return a?{credentialId:o,publicKey:a.publicKey,ethereumAddress:a.ethereumAddress}:{credentialId:o,publicKey:"",ethereumAddress:void 0}}catch(r){throw r?.name==="NotAllowedError"?new K("Passkey selection was cancelled. Please try again and select your passkey."):r instanceof K?r:new K(`Failed to select passkey: ${r instanceof Error?r.message:"Unknown error"}`,r)}}async function fc(r){try{let e=Fe(),n={challenge:L(e),rpId:window.location.hostname,userVerification:"required",timeout:6e4,allowCredentials:[{id:L(r),type:"public-key",transports:["internal","hybrid","usb","nfc","ble"]}]},s=await navigator.credentials.get({publicKey:n});if(!s)throw new K("Authentication failed - no credential returned");return s}catch(e){throw e?.name==="NotAllowedError"?new K("Authentication was cancelled or the passkey is not available on this device."):new K(`Passkey authentication failed: ${e instanceof Error?e.message:"Unknown error"}`,e)}}var hi=p(()=>{"use strict";G();Ue();fe();W()});var Ln={};E(Ln,{DeviceSyncManager:()=>yr});var yr,wr=p(()=>{"use strict";yr=class{constructor(){this.SYNC_STORAGE_KEY="w3pk_sync_info"}async getSyncInfo(){try{let e=localStorage.getItem(this.SYNC_STORAGE_KEY);return e?JSON.parse(e):null}catch(e){return console.error("Failed to get sync info:",e),null}}async updateSyncInfo(e){let t=await this.getSyncInfo(),n=this.detectPlatform(),s={deviceName:t?.deviceName||this.generateDeviceName(),platform:n,lastSyncTime:new Date().toISOString(),walletsSynced:t?.walletsSynced||[]};s.walletsSynced.includes(e)||s.walletsSynced.push(e),localStorage.setItem(this.SYNC_STORAGE_KEY,JSON.stringify(s))}detectPlatform(){let e=navigator.userAgent.toLowerCase();return/iphone|ipad|ipod/.test(e)?"ios":/android/.test(e)?"android":/mac/.test(e)?"macos":/win/.test(e)?"windows":/linux/.test(e)?"linux":"unknown"}generateDeviceName(){let e=this.detectPlatform(),t=new Date().toISOString().split("T")[0];return`${e}-device-${t}`}async exportForSync(e,t,n,s){let{BackupFileManager:i}=await Promise.resolve().then(()=>(ce(),pe));return new i().createPasskeyBackup(e,t,n,s)}async importFromSync(e,t,n){let{BackupFileManager:s}=await Promise.resolve().then(()=>(ce(),pe)),o=await new s().restoreWithExistingPasskey(e,t,n);return await this.updateSyncInfo(o.ethereumAddress),o}async canSyncBackup(e,t){return e.encryptionMethod!=="passkey"?!0:e.publicKeyFingerprint?t.some(n=>n.publicKeyFingerprint===e.publicKeyFingerprint):!1}async generateSyncQR(e){try{let t=await Promise.resolve().then(()=>er(mr())),n=JSON.stringify(e);if(n.length>2953)throw new Error("Backup file too large for QR code. Use file transfer instead.");return t.toDataURL(n,{errorCorrectionLevel:"H",margin:2,width:512})}catch(t){throw t.code==="ERR_MODULE_NOT_FOUND"?new Error("QR code generation requires qrcode package: npm install qrcode"):t}}async parseSyncQR(e){let{BackupFileManager:t}=await Promise.resolve().then(()=>(ce(),pe));return new t().parseBackupFile(e)}}});var _n,mc=p(()=>{"use strict";Xe();_n=class{async createSyncPackage(e,t,n){let s=await Ee(),{deriveEncryptionKeyAuto:i,encryptData:o}=await Promise.resolve().then(()=>(W(),Me)),a=await i(t,n),c=await o(e,a),l=this.detectSyncMethod();return{id:crypto.randomUUID(),encryptedData:c,deviceFingerprints:[s],syncMethod:l,version:1,updatedAt:new Date().toISOString()}}detectSyncMethod(){let e=navigator.userAgent.toLowerCase();return e.includes("mac")||e.includes("iphone")||e.includes("ipad")?"icloud":e.includes("android")||e.includes("chrome")?"google":e.includes("windows")?"microsoft":"custom"}async restoreFromSync(e,t,n){let{deriveEncryptionKeyAuto:s,decryptData:i}=await Promise.resolve().then(()=>(W(),Me)),o=await s(t,n),a=await i(e.encryptedData,o),c=await Ee();return e.deviceFingerprints.includes(c)||(e.deviceFingerprints.push(c),e.updatedAt=new Date().toISOString()),a}async getSetupFlow(){return{success:!1,steps:[{title:"1. Authenticate on New Device",action:"Use Touch ID/Face ID",educational:"Your passkey is automatically synced via iCloud/Google",status:"waiting"},{title:"2. Decrypt Wallet Data",action:"System validates device",educational:"Only your trusted devices can decrypt the wallet",status:"waiting"},{title:"3. Verify Recovery",action:"Check partial address",educational:"Confirm address matches your wallet",status:"waiting"},{title:"4. Ready!",action:"Wallet synced",educational:"All devices now have access",status:"waiting"}]}}getSyncExplainer(){return`
224
224
  HOW CROSS-DEVICE SYNC WORKS
225
225
  ===========================
226
226
 
@@ -301,14 +301,14 @@ If passkey doesn't sync:
301
301
  Think of it like:
302
302
  \u{1F511} Passkey = Your car key (syncs via keychain)
303
303
  \u{1F697} Wallet = Your car (locked, needs key to start)
304
- `}}});var In,Ja=w(()=>{"use strict";Ve();In=class{constructor(){this.storageKey="w3pk_devices"}async registerDevice(){let e={id:await Se(),name:this.getDeviceName(),platform:this.detectPlatform(),lastActive:new Date().toISOString(),trusted:!0,canRevoke:!1},t=await this.getDevices(),r=t.find(s=>s.id===e.id);return r?(r.lastActive=new Date().toISOString(),localStorage.setItem(this.storageKey,JSON.stringify(t))):(t.push(e),localStorage.setItem(this.storageKey,JSON.stringify(t))),e}async getDevices(){let e=localStorage.getItem(this.storageKey);if(!e)return[];try{return JSON.parse(e)}catch{return[]}}async getSyncStatus(){let e=await this.getDevices(),t=await Se();e.forEach(i=>{i.canRevoke=i.id!==t}),e.sort((i,o)=>new Date(o.lastActive).getTime()-new Date(i.lastActive).getTime());let r=this.detectPlatform(),s=e.length>1?new Date(Math.max(...e.map(i=>new Date(i.lastActive).getTime()))).toISOString():void 0;return{enabled:e.length>1,devices:e,lastSyncTime:s,platform:this.getPlatformName(r)}}async revokeDevice(e){let t=await this.getDevices(),r=await Se();if(e===r)throw new Error("Cannot revoke current device");let s=t.filter(i=>i.id!==e);localStorage.setItem(this.storageKey,JSON.stringify(s))}async updateLastActive(){let e=await this.getDevices(),t=await Se(),r=e.find(s=>s.id===t);r&&(r.lastActive=new Date().toISOString(),localStorage.setItem(this.storageKey,JSON.stringify(e)))}getDeviceName(){let e=this.detectPlatform(),t=navigator.userAgent;if(e==="ios")return t.includes("iPhone")?"iPhone":t.includes("iPad")?"iPad":t.includes("iPod")?"iPod":"iOS Device";if(e==="android"){let r=t.match(/Android.*;\s([^)]+)\)/);return r?r[1]:"Android Device"}return e==="macos"?"Mac":e==="windows"?"Windows PC":e==="linux"?"Linux PC":"Unknown Device"}detectPlatform(){let e=navigator.userAgent.toLowerCase();return e.includes("iphone")||e.includes("ipad")||e.includes("ipod")?"ios":e.includes("android")?"android":e.includes("mac")?"macos":e.includes("windows")?"windows":e.includes("linux")?"linux":"unknown"}getPlatformName(e){switch(e){case"ios":return"iOS (iCloud Keychain)";case"android":return"Android (Google)";case"macos":return"macOS (iCloud Keychain)";case"windows":return"Windows (Microsoft)";case"linux":return"Linux";default:return"Unknown"}}async getDeviceListFormatted(){let e=await this.getSyncStatus();if(e.devices.length===0)return"No devices registered";let t=`Your Devices (${e.devices.length}):
304
+ `}}});var Kn,gc=p(()=>{"use strict";Xe();Kn=class{constructor(){this.storageKey="w3pk_devices"}async registerDevice(){let e={id:await Ee(),name:this.getDeviceName(),platform:this.detectPlatform(),lastActive:new Date().toISOString(),trusted:!0,canRevoke:!1},t=await this.getDevices(),n=t.find(s=>s.id===e.id);return n?(n.lastActive=new Date().toISOString(),localStorage.setItem(this.storageKey,JSON.stringify(t))):(t.push(e),localStorage.setItem(this.storageKey,JSON.stringify(t))),e}async getDevices(){let e=localStorage.getItem(this.storageKey);if(!e)return[];try{return JSON.parse(e)}catch{return[]}}async getSyncStatus(){let e=await this.getDevices(),t=await Ee();e.forEach(i=>{i.canRevoke=i.id!==t}),e.sort((i,o)=>new Date(o.lastActive).getTime()-new Date(i.lastActive).getTime());let n=this.detectPlatform(),s=e.length>1?new Date(Math.max(...e.map(i=>new Date(i.lastActive).getTime()))).toISOString():void 0;return{enabled:e.length>1,devices:e,lastSyncTime:s,platform:this.getPlatformName(n)}}async revokeDevice(e){let t=await this.getDevices(),n=await Ee();if(e===n)throw new Error("Cannot revoke current device");let s=t.filter(i=>i.id!==e);localStorage.setItem(this.storageKey,JSON.stringify(s))}async updateLastActive(){let e=await this.getDevices(),t=await Ee(),n=e.find(s=>s.id===t);n&&(n.lastActive=new Date().toISOString(),localStorage.setItem(this.storageKey,JSON.stringify(e)))}getDeviceName(){let e=this.detectPlatform(),t=navigator.userAgent;if(e==="ios")return t.includes("iPhone")?"iPhone":t.includes("iPad")?"iPad":t.includes("iPod")?"iPod":"iOS Device";if(e==="android"){let n=t.match(/Android.*;\s([^)]+)\)/);return n?n[1]:"Android Device"}return e==="macos"?"Mac":e==="windows"?"Windows PC":e==="linux"?"Linux PC":"Unknown Device"}detectPlatform(){let e=navigator.userAgent.toLowerCase();return e.includes("iphone")||e.includes("ipad")||e.includes("ipod")?"ios":e.includes("android")?"android":e.includes("mac")?"macos":e.includes("windows")?"windows":e.includes("linux")?"linux":"unknown"}getPlatformName(e){switch(e){case"ios":return"iOS (iCloud Keychain)";case"android":return"Android (Google)";case"macos":return"macOS (iCloud Keychain)";case"windows":return"Windows (Microsoft)";case"linux":return"Linux";default:return"Unknown"}}async getDeviceListFormatted(){let e=await this.getSyncStatus();if(e.devices.length===0)return"No devices registered";let t=`Your Devices (${e.devices.length}):
305
305
 
306
- `;return e.devices.forEach((r,s)=>{let i=Date.now()-new Date(r.lastActive).getTime(),o=this.formatTimeDiff(i);t+=`${s+1}. ${r.name}
307
- `,t+=` Platform: ${this.getPlatformName(r.platform)}
306
+ `;return e.devices.forEach((n,s)=>{let i=Date.now()-new Date(n.lastActive).getTime(),o=this.formatTimeDiff(i);t+=`${s+1}. ${n.name}
307
+ `,t+=` Platform: ${this.getPlatformName(n.platform)}
308
308
  `,t+=` Last active: ${o}
309
- `,t+=` ${r.canRevoke?"":"(Current device)"}
309
+ `,t+=` ${n.canRevoke?"":"(Current device)"}
310
310
 
311
- `}),t}formatTimeDiff(e){let t=Math.floor(e/1e3),r=Math.floor(t/60),s=Math.floor(r/60),i=Math.floor(s/24);return i>0?`${i} day${i>1?"s":""} ago`:s>0?`${s} hour${s>1?"s":""} ago`:r>0?`${r} minute${r>1?"s":""} ago`:"just now"}}});var Bn,Qa=w(()=>{"use strict";Bn=class{async detectSyncCapabilities(){let e=this.detectPlatform(),t=await this.checkPasskeySync(),r=this.estimateDeviceCount();return{passkeysSync:t,platform:e,estimatedDevices:r,syncEnabled:t&&e!=="none"}}detectPlatform(){let e=navigator.userAgent.toLowerCase();return e.includes("mac")||e.includes("iphone")||e.includes("ipad")||e.includes("ipod")?"apple":e.includes("android")?"google":e.includes("windows")?"microsoft":"none"}async checkPasskeySync(){if(!window.PublicKeyCredential)return!1;try{return await PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()}catch{return!1}}estimateDeviceCount(){return 1}getPlatformEducation(e){switch(e){case"apple":return`
311
+ `}),t}formatTimeDiff(e){let t=Math.floor(e/1e3),n=Math.floor(t/60),s=Math.floor(n/60),i=Math.floor(s/24);return i>0?`${i} day${i>1?"s":""} ago`:s>0?`${s} hour${s>1?"s":""} ago`:n>0?`${n} minute${n>1?"s":""} ago`:"just now"}}});var On,yc=p(()=>{"use strict";On=class{async detectSyncCapabilities(){let e=this.detectPlatform(),t=await this.checkPasskeySync(),n=this.estimateDeviceCount();return{passkeysSync:t,platform:e,estimatedDevices:n,syncEnabled:t&&e!=="none"}}detectPlatform(){let e=navigator.userAgent.toLowerCase();return e.includes("mac")||e.includes("iphone")||e.includes("ipad")||e.includes("ipod")?"apple":e.includes("android")?"google":e.includes("windows")?"microsoft":"none"}async checkPasskeySync(){if(!window.PublicKeyCredential)return!1;try{return await PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()}catch{return!1}}estimateDeviceCount(){return 1}getPlatformEducation(e){switch(e){case"apple":return`
312
312
  \u{1F34E} Apple iCloud Keychain
313
313
 
314
314
  Your passkey automatically syncs across:
@@ -387,7 +387,7 @@ This ensures you can recover if:
387
387
  - Device is lost/stolen
388
388
  - Device is damaged
389
389
  - You switch devices
390
- `}}getSyncInstructions(e){switch(e){case"apple":return["Open Settings on your iPhone/iPad/Mac","Tap your name at the top",'Tap "iCloud"','Enable "Keychain"','Enable "iCloud Backup" (recommended)'];case"google":return["Open Chrome Settings",'Click "You and Google"','Enable "Sync"','Ensure "Passwords" is checked',"Sign in on other devices with same Google account"];case"microsoft":return["Windows Hello sync is limited","Consider using:","- Encrypted backup file","- Social recovery","- Cloud backup (password-protected)"];case"none":return["Platform sync not available","Use alternative backup methods:","- Create encrypted backup file","- Set up social recovery","- Save recovery phrase securely"]}}}});var Xa=w(()=>{"use strict"});var Za={};B(Za,{DeviceManager:()=>In,DeviceSyncManager:()=>lr,PlatformDetector:()=>Bn,VaultSync:()=>Pn});var ec=w(()=>{"use strict";ja();Ja();Qa();ur();Xa()});var dr,tc=w(()=>{"use strict";dr=class{getScenarios(){return[{type:"lost-device",description:"Your phone fell in the ocean"},{type:"lost-phrase",description:"Your paper backup burned in a fire"},{type:"lost-both",description:"Phone stolen AND forgot recovery phrase"},{type:"switch-platform",description:"Switching from iPhone to Android"}]}async simulateScenario(e,t){let r=[];switch(e.type){case"lost-device":t.passkeySync.enabled&&t.passkeySync.deviceCount>1&&r.push({method:`Passkey Sync (${t.passkeySync.platform})`,success:!0,time:"5 minutes",requirements:["Sign in to cloud account on new device","Authenticate with biometric/PIN"]}),t.recoveryPhrase.encryptedBackups.length>0&&t.recoveryPhrase.encryptedBackups.forEach(o=>{r.push({method:`Encrypted ${o.method.toUpperCase()} Backup`,success:!0,time:"2 minutes",requirements:["Backup file/QR code","Backup password"]})}),t.socialRecovery?.enabled&&r.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`Contact ${t.socialRecovery.threshold} guardians`,"Collect shares from guardians","Verify identity with each guardian"]});break;case"lost-phrase":t.passkeySync.enabled&&r.push({method:"Passkey (current device)",success:!0,time:"Instant",requirements:["Access to current device","Biometric/PIN authentication"]}),t.passkeySync.deviceCount>1&&r.push({method:"Passkey Sync",success:!0,time:"5 minutes",requirements:["Any synced device","Biometric authentication"]}),t.recoveryPhrase.encryptedBackups.length>0&&r.push({method:"Encrypted Backup",success:!0,time:"2 minutes",requirements:["Backup file","Password"]}),t.socialRecovery?.enabled&&r.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break;case"lost-both":t.passkeySync.deviceCount>1&&r.push({method:"Passkey Sync",success:!0,time:"5 minutes",requirements:["Cloud account access","New device","Biometric setup"]}),t.socialRecovery?.enabled&&r.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`,"Identity verification with guardians"]});break;case"switch-platform":t.recoveryPhrase.encryptedBackups.length>0&&r.push({method:"Encrypted Backup",success:!0,time:"2 minutes",requirements:["Backup file","Password"]}),t.socialRecovery?.enabled&&r.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break}let s=r.length>0,i=this.getEducationalNote(e,r,t);return{scenario:e,success:s,availableMethods:r,timeEstimate:s?this.estimateFastestRecovery(r):"Cannot recover",educationalNote:i}}estimateFastestRecovery(e){let t=e.map(r=>r.time.toLowerCase());if(t.some(r=>r.includes("instant")))return"Instant";if(t.some(r=>r.includes("minute"))){let r=t.filter(s=>s.includes("minute")).map(s=>parseInt(s));return`${Math.min(...r)} minutes`}return t.some(r=>r.includes("hour"))?"24 hours":"Unknown"}getEducationalNote(e,t,r){let s=r.securityScore.total,i=r.securityScore.level;if(t.length===0)return`
390
+ `}}getSyncInstructions(e){switch(e){case"apple":return["Open Settings on your iPhone/iPad/Mac","Tap your name at the top",'Tap "iCloud"','Enable "Keychain"','Enable "iCloud Backup" (recommended)'];case"google":return["Open Chrome Settings",'Click "You and Google"','Enable "Sync"','Ensure "Passwords" is checked',"Sign in on other devices with same Google account"];case"microsoft":return["Windows Hello sync is limited","Consider using:","- Encrypted backup file","- Social recovery","- Cloud backup (password-protected)"];case"none":return["Platform sync not available","Use alternative backup methods:","- Create encrypted backup file","- Set up social recovery","- Save recovery phrase securely"]}}}});var wc=p(()=>{"use strict"});var bc={};E(bc,{DeviceManager:()=>Kn,DeviceSyncManager:()=>yr,PlatformDetector:()=>On,VaultSync:()=>_n});var Sc=p(()=>{"use strict";mc();gc();yc();wr();wc()});var br,Ac=p(()=>{"use strict";br=class{getScenarios(){return[{type:"lost-device",description:"Your phone fell in the ocean"},{type:"lost-phrase",description:"Your paper backup burned in a fire"},{type:"lost-both",description:"Phone stolen AND forgot recovery phrase"},{type:"switch-platform",description:"Switching from iPhone to Android"}]}async simulateScenario(e,t){let n=[];switch(e.type){case"lost-device":t.passkeySync.enabled&&t.passkeySync.deviceCount>1&&n.push({method:`Passkey Sync (${t.passkeySync.platform})`,success:!0,time:"5 minutes",requirements:["Sign in to cloud account on new device","Authenticate with biometric/PIN"]}),t.recoveryPhrase.encryptedBackups.length>0&&t.recoveryPhrase.encryptedBackups.forEach(o=>{n.push({method:`Encrypted ${o.method.toUpperCase()} Backup`,success:!0,time:"2 minutes",requirements:["Backup file/QR code","Backup password"]})}),t.socialRecovery?.enabled&&n.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`Contact ${t.socialRecovery.threshold} guardians`,"Collect shares from guardians","Verify identity with each guardian"]});break;case"lost-phrase":t.passkeySync.enabled&&n.push({method:"Passkey (current device)",success:!0,time:"Instant",requirements:["Access to current device","Biometric/PIN authentication"]}),t.passkeySync.deviceCount>1&&n.push({method:"Passkey Sync",success:!0,time:"5 minutes",requirements:["Any synced device","Biometric authentication"]}),t.recoveryPhrase.encryptedBackups.length>0&&n.push({method:"Encrypted Backup",success:!0,time:"2 minutes",requirements:["Backup file","Password"]}),t.socialRecovery?.enabled&&n.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break;case"lost-both":t.passkeySync.deviceCount>1&&n.push({method:"Passkey Sync",success:!0,time:"5 minutes",requirements:["Cloud account access","New device","Biometric setup"]}),t.socialRecovery?.enabled&&n.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`,"Identity verification with guardians"]});break;case"switch-platform":t.recoveryPhrase.encryptedBackups.length>0&&n.push({method:"Encrypted Backup",success:!0,time:"2 minutes",requirements:["Backup file","Password"]}),t.socialRecovery?.enabled&&n.push({method:"Social Recovery",success:!0,time:"24 hours",requirements:[`${t.socialRecovery.threshold} guardian shares`]});break}let s=n.length>0,i=this.getEducationalNote(e,n,t);return{scenario:e,success:s,availableMethods:n,timeEstimate:s?this.estimateFastestRecovery(n):"Cannot recover",educationalNote:i}}estimateFastestRecovery(e){let t=e.map(n=>n.time.toLowerCase());if(t.some(n=>n.includes("instant")))return"Instant";if(t.some(n=>n.includes("minute"))){let n=t.filter(s=>s.includes("minute")).map(s=>parseInt(s));return`${Math.min(...n)} minutes`}return t.some(n=>n.includes("hour"))?"24 hours":"Unknown"}getEducationalNote(e,t,n){let s=n.securityScore.total,i=n.securityScore.level;if(t.length===0)return`
391
391
  \u274C WALLET CANNOT BE RECOVERED
392
392
 
393
393
  Scenario: ${e.description}
@@ -432,78 +432,78 @@ Scenario: ${e.description}
432
432
 
433
433
  `,o+=`Available recovery methods (${t.length}):
434
434
 
435
- `,t.forEach((c,a)=>{o+=`${a+1}. ${c.method}
436
- `,o+=` \u23F1 Time: ~${c.time}
435
+ `,t.forEach((a,c)=>{o+=`${c+1}. ${a.method}
436
+ `,o+=` \u23F1 Time: ~${a.time}
437
437
  `,o+=` Requirements:
438
- `,c.requirements.forEach(u=>{o+=` - ${u}
438
+ `,a.requirements.forEach(l=>{o+=` - ${l}
439
439
  `}),o+=`
440
440
  `}),o+=`
441
441
  SECURITY RECOMMENDATIONS:
442
442
  `,s<50?(o+=`\u26A0\uFE0F Your score is below 50/100.
443
443
  `,o+=` Add more backups to improve protection:
444
444
 
445
- `,r.recoveryPhrase.encryptedBackups.length||(o+=` \u{1F4E5} Create encrypted backup \u2192 +20 pts
446
- `),r.recoveryPhrase.verified||(o+=` \u2705 Verify your backup \u2192 +10 pts
447
- `),r.socialRecovery?.enabled||(o+=` \u{1F465} Set up social recovery \u2192 +20-30 pts
445
+ `,n.recoveryPhrase.encryptedBackups.length||(o+=` \u{1F4E5} Create encrypted backup \u2192 +20 pts
446
+ `),n.recoveryPhrase.verified||(o+=` \u2705 Verify your backup \u2192 +10 pts
447
+ `),n.socialRecovery?.enabled||(o+=` \u{1F465} Set up social recovery \u2192 +20-30 pts
448
448
  `)):s<70?(o+=`\u{1F7E1} Good start! Score: ${s}/100
449
449
 
450
- `,r.socialRecovery?.enabled||(o+=` \u{1F465} Add social recovery \u2192 +20-30 pts
451
- `),r.recoveryPhrase.verified||(o+=` \u2705 Verify your backup \u2192 +10 pts
450
+ `,n.socialRecovery?.enabled||(o+=` \u{1F465} Add social recovery \u2192 +20-30 pts
451
+ `),n.recoveryPhrase.verified||(o+=` \u2705 Verify your backup \u2192 +10 pts
452
452
  `),o+=`
453
453
  Target: Reach 70+ for "secured" status!
454
454
  `):s<80?(o+=`\u{1F7E2} Great! Score: ${s}/100
455
455
 
456
- `,r.socialRecovery&&r.socialRecovery.verifiedGuardians<r.socialRecovery.threshold&&(o+=` \u{1F465} Verify your guardians \u2192 +10 pts
457
- `),r.passkeySync.deviceCount===1&&(o+=` \u{1F4F1} Sync passkey to another device \u2192 +10 pts
456
+ `,n.socialRecovery&&n.socialRecovery.verifiedGuardians<n.socialRecovery.threshold&&(o+=` \u{1F465} Verify your guardians \u2192 +10 pts
457
+ `),n.passkeySync.deviceCount===1&&(o+=` \u{1F4F1} Sync passkey to another device \u2192 +10 pts
458
458
  `),o+=`
459
459
  You're close to "fort-knox" status!
460
460
  `):(o+=`\u{1F3C6} Excellent! Score: ${s}/100
461
461
  `,o+=` Your wallet is extremely well-protected!
462
462
  `,o+=` You can survive almost any disaster scenario.
463
- `),o}async runInteractiveTest(e){let t=this.getScenarios(),r=[];for(let l of t){let h=await this.simulateScenario(l,e);r.push(h)}let s=r.filter(l=>l.success).length,i=s/t.length*100,o=e.securityScore.total,c=e.securityScore.level,a="";a+=`RECOVERY TEST RESULTS
464
- `,a+=`${"=".repeat(50)}
465
-
466
- `,i===100?a+=`\u{1F3C6} PERFECT! You can recover in ALL scenarios.
467
- `:i>=75?a+=`\u{1F7E2} GREAT! You can recover in ${s}/${t.length} scenarios.
468
- `:i>=50?a+=`\u{1F7E1} GOOD! You can recover in ${s}/${t.length} scenarios.
469
- `:a+=`\u26A0\uFE0F AT RISK! You can only recover in ${s}/${t.length} scenarios.
470
- `,a+=`
471
- SECURITY SCORE: ${o}/100 (${c})
472
- `,a+=`${"=".repeat(50)}
473
-
474
- `,a+=`SCORE BREAKDOWN:
475
-
476
- `;let u=e.securityScore.breakdown;return a+=`\u{1F511} Passkey Active: ${u.passkeyActive}/20
477
- `,a+=`\u{1F4F1} Multi-Device Sync: ${u.passkeyMultiDevice}/10
478
- `,a+=`\u{1F4BE} Encrypted Backup: ${u.encryptedBackup}/20
479
- `,a+=`\u2705 Backup Verified: ${u.phraseVerified}/20
480
- `,a+=`\u{1F465} Social Recovery: ${u.socialRecovery}/30
481
-
482
- `,a+=`NEXT STEPS:
483
- `,a+=`${"=".repeat(50)}
484
-
485
- `,o>=80?(a+=`\u{1F3C6} Excellent security posture!
486
- `,a+=`Your wallet is extremely well-protected.
487
-
488
- `,o<100&&(a+=`To reach perfect 100/100:
489
- `,u.passkeyMultiDevice===0&&(a+=` \u2022 Sync passkey to another device (+10 pts)
490
- `),u.phraseVerified<20&&(a+=` \u2022 Verify your backup multiple times (+${20-u.phraseVerified} pts)
491
- `),u.socialRecovery<30&&(a+=` \u2022 Verify all your guardians (+${30-u.socialRecovery} pts)
492
- `))):o>=50?(a+=`${e.securityScore.nextMilestone}
493
-
494
- `,a+=`Recommended actions:
495
- `,u.encryptedBackup===0&&(a+=` 1. Create encrypted backup (+20 pts)
496
- `),u.phraseVerified===0&&(a+=` 2. Test your backup (+10 pts)
497
- `),u.socialRecovery===0&&(a+=` 3. Set up social recovery (+20-30 pts)
498
- `)):(a+=`\u26A0\uFE0F URGENT: Your wallet security is at risk!
499
-
500
- `,a+=`Critical actions needed:
501
- `,a+=` 1. Create encrypted backup NOW (+20 pts)
502
- `,a+=` 2. Test the backup immediately (+10 pts)
503
- `,a+=` 3. Set up social recovery (+20-30 pts)
504
-
505
- `,a+=`Target: Reach at least 50/100 for basic protection.
506
- `),{scenarios:r,overallScore:i,securityScore:o,feedback:a}}}});function rc(n){return Dn[n]||null}function nc(){return Object.keys(Dn)}function sc(n){let e=n.toLowerCase();return Object.values(Dn).filter(t=>t.title.toLowerCase().includes(e)||t.content.toLowerCase().includes(e))}var Dn,ic=w(()=>{"use strict";Dn={whatIsPasskey:{title:"What is a Passkey?",content:`
463
+ `),o}async runInteractiveTest(e){let t=this.getScenarios(),n=[];for(let u of t){let d=await this.simulateScenario(u,e);n.push(d)}let s=n.filter(u=>u.success).length,i=s/t.length*100,o=e.securityScore.total,a=e.securityScore.level,c="";c+=`RECOVERY TEST RESULTS
464
+ `,c+=`${"=".repeat(50)}
465
+
466
+ `,i===100?c+=`\u{1F3C6} PERFECT! You can recover in ALL scenarios.
467
+ `:i>=75?c+=`\u{1F7E2} GREAT! You can recover in ${s}/${t.length} scenarios.
468
+ `:i>=50?c+=`\u{1F7E1} GOOD! You can recover in ${s}/${t.length} scenarios.
469
+ `:c+=`\u26A0\uFE0F AT RISK! You can only recover in ${s}/${t.length} scenarios.
470
+ `,c+=`
471
+ SECURITY SCORE: ${o}/100 (${a})
472
+ `,c+=`${"=".repeat(50)}
473
+
474
+ `,c+=`SCORE BREAKDOWN:
475
+
476
+ `;let l=e.securityScore.breakdown;return c+=`\u{1F511} Passkey Active: ${l.passkeyActive}/20
477
+ `,c+=`\u{1F4F1} Multi-Device Sync: ${l.passkeyMultiDevice}/10
478
+ `,c+=`\u{1F4BE} Encrypted Backup: ${l.encryptedBackup}/20
479
+ `,c+=`\u2705 Backup Verified: ${l.phraseVerified}/20
480
+ `,c+=`\u{1F465} Social Recovery: ${l.socialRecovery}/30
481
+
482
+ `,c+=`NEXT STEPS:
483
+ `,c+=`${"=".repeat(50)}
484
+
485
+ `,o>=80?(c+=`\u{1F3C6} Excellent security posture!
486
+ `,c+=`Your wallet is extremely well-protected.
487
+
488
+ `,o<100&&(c+=`To reach perfect 100/100:
489
+ `,l.passkeyMultiDevice===0&&(c+=` \u2022 Sync passkey to another device (+10 pts)
490
+ `),l.phraseVerified<20&&(c+=` \u2022 Verify your backup multiple times (+${20-l.phraseVerified} pts)
491
+ `),l.socialRecovery<30&&(c+=` \u2022 Verify all your guardians (+${30-l.socialRecovery} pts)
492
+ `))):o>=50?(c+=`${e.securityScore.nextMilestone}
493
+
494
+ `,c+=`Recommended actions:
495
+ `,l.encryptedBackup===0&&(c+=` 1. Create encrypted backup (+20 pts)
496
+ `),l.phraseVerified===0&&(c+=` 2. Test your backup (+10 pts)
497
+ `),l.socialRecovery===0&&(c+=` 3. Set up social recovery (+20-30 pts)
498
+ `)):(c+=`\u26A0\uFE0F URGENT: Your wallet security is at risk!
499
+
500
+ `,c+=`Critical actions needed:
501
+ `,c+=` 1. Create encrypted backup NOW (+20 pts)
502
+ `,c+=` 2. Test the backup immediately (+10 pts)
503
+ `,c+=` 3. Set up social recovery (+20-30 pts)
504
+
505
+ `,c+=`Target: Reach at least 50/100 for basic protection.
506
+ `),{scenarios:n,overallScore:i,securityScore:o,feedback:c}}}});function xc(r){return zn[r]||null}function vc(){return Object.keys(zn)}function Ec(r){let e=r.toLowerCase();return Object.values(zn).filter(t=>t.title.toLowerCase().includes(e)||t.content.toLowerCase().includes(e))}var zn,kc=p(()=>{"use strict";zn={whatIsPasskey:{title:"What is a Passkey?",content:`
507
507
  Think of a passkey like your house smart lock:
508
508
 
509
509
  \u{1F511} Traditional Key (Password):
@@ -947,56 +947,56 @@ Good: 70 pts (backup + social recovery)
947
947
  Excellent: 80+ pts (all layers enabled)
948
948
 
949
949
  Remember: Higher score = Lower chance of loss!
950
- `}}});var Rn={};B(Rn,{RecoverySimulator:()=>dr,educationalModules:()=>Dn,getAllTopics:()=>nc,getExplainer:()=>rc,searchExplainers:()=>sc});var hr=w(()=>{"use strict";tc();ic()});function Oh(n){return n[Symbol.asyncIterator]!=null}function Kh(n){if(Oh(n))return(async()=>{for await(let e of n)return e})();for(let e of n)return e}var Zs,cc=w(()=>{"use strict";Zs=Kh});function zh(n){return n[Symbol.asyncIterator]!=null}function Wh(n,e=1){return e=Number(e),zh(n)?(async function*(){let t=[];if(e<1&&(e=1),e!==Math.round(e))throw new Error("Batch size must be an integer");for await(let r of n)for(t.push(r);t.length>=e;)yield t.slice(0,e),t=t.slice(e);for(;t.length>0;)yield t.slice(0,e),t=t.slice(e)})():(function*(){let t=[];if(e<1&&(e=1),e!==Math.round(e))throw new Error("Batch size must be an integer");for(let r of n)for(t.push(r);t.length>=e;)yield t.slice(0,e),t=t.slice(e);for(;t.length>0;)yield t.slice(0,e),t=t.slice(e)})()}var Tn,ei=w(()=>{"use strict";Tn=Wh});async function*pr(n,e=1){for await(let t of Tn(n,e)){let r=t.map(async s=>s().then(i=>({ok:!0,value:i}),i=>({ok:!1,err:i})));for(let s=0;s<r.length;s++){let i=await r[s];if(i.ok)yield i.value;else throw i.err}}}var ti=w(()=>{"use strict";ei()});function Ee(n=0){return new Uint8Array(n)}function Z(n=0){return new Uint8Array(n)}var Ze=w(()=>{"use strict"});var lc=w(()=>{"use strict"});function gr(n,e){e==null&&(e=n.reduce((s,i)=>s+i.length,0));let t=Z(e),r=0;for(let s of n)t.set(s,r),r+=s.length;return t}var ri=w(()=>{"use strict";Ze();lc()});function uc(n,e){if(n===e)return!0;if(n.byteLength!==e.byteLength)return!1;for(let t=0;t<n.byteLength;t++)if(n[t]!==e[t])return!1;return!0}var dc=w(()=>{"use strict"});function hc(n,e){if(e==null||e<0)throw new RangeError("index is out of bounds");let t=0;for(let r of n){let s=t+r.byteLength;if(e<s)return{buf:r,index:e-t};t=s}throw new RangeError("index is out of bounds")}function Fn(n){return!!n?.[pc]}var pc,fc,xt,gc=w(()=>{"use strict";Ze();ri();dc();pc=Symbol.for("@achingbrain/uint8arraylist");xt=class n{constructor(...e){p(this,"bufs");p(this,"length");p(this,fc,!0);this.bufs=[],this.length=0,e.length>0&&this.appendAll(e)}*[(fc=pc,Symbol.iterator)](){yield*this.bufs}get byteLength(){return this.length}append(...e){this.appendAll(e)}appendAll(e){let t=0;for(let r of e)if(r instanceof Uint8Array)t+=r.byteLength,this.bufs.push(r);else if(Fn(r))t+=r.byteLength,this.bufs.push(...r.bufs);else throw new Error("Could not append value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}prepend(...e){this.prependAll(e)}prependAll(e){let t=0;for(let r of e.reverse())if(r instanceof Uint8Array)t+=r.byteLength,this.bufs.unshift(r);else if(Fn(r))t+=r.byteLength,this.bufs.unshift(...r.bufs);else throw new Error("Could not prepend value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}get(e){let t=hc(this.bufs,e);return t.buf[t.index]}set(e,t){let r=hc(this.bufs,e);r.buf[r.index]=t}write(e,t=0){if(e instanceof Uint8Array)for(let r=0;r<e.length;r++)this.set(t+r,e[r]);else if(Fn(e))for(let r=0;r<e.length;r++)this.set(t+r,e.get(r));else throw new Error("Could not write value, must be an Uint8Array or a Uint8ArrayList")}consume(e){if(e=Math.trunc(e),!(Number.isNaN(e)||e<=0)){if(e===this.byteLength){this.bufs=[],this.length=0;return}for(;this.bufs.length>0;)if(e>=this.bufs[0].byteLength)e-=this.bufs[0].byteLength,this.length-=this.bufs[0].byteLength,this.bufs.shift();else{this.bufs[0]=this.bufs[0].subarray(e),this.length-=e;break}}}slice(e,t){let{bufs:r,length:s}=this._subList(e,t);return gr(r,s)}subarray(e,t){let{bufs:r,length:s}=this._subList(e,t);return r.length===1?r[0]:gr(r,s)}sublist(e,t){let{bufs:r,length:s}=this._subList(e,t),i=new n;return i.length=s,i.bufs=[...r],i}_subList(e,t){if(e=e??0,t=t??this.length,e<0&&(e=this.length+e),t<0&&(t=this.length+t),e<0||t>this.length)throw new RangeError("index is out of bounds");if(e===t)return{bufs:[],length:0};if(e===0&&t===this.length)return{bufs:this.bufs,length:this.length};let r=[],s=0;for(let i=0;i<this.bufs.length;i++){let o=this.bufs[i],c=s,a=c+o.byteLength;if(s=a,e>=a)continue;let u=e>=c&&e<a,l=t>c&&t<=a;if(u&&l){if(e===c&&t===a){r.push(o);break}let h=e-c;r.push(o.subarray(h,h+(t-e)));break}if(u){if(e===0){r.push(o);continue}r.push(o.subarray(e-c));continue}if(l){if(t===a){r.push(o);break}r.push(o.subarray(0,t-c));break}r.push(o)}return{bufs:r,length:t-e}}indexOf(e,t=0){if(!Fn(e)&&!(e instanceof Uint8Array))throw new TypeError('The "value" argument must be a Uint8ArrayList or Uint8Array');let r=e instanceof Uint8Array?e:e.subarray();if(t=Number(t??0),isNaN(t)&&(t=0),t<0&&(t=this.length+t),t<0&&(t=0),e.length===0)return t>this.length?this.length:t;let s=r.byteLength;if(s===0)throw new TypeError("search must be at least 1 byte long");let i=256,o=new Int32Array(i);for(let h=0;h<i;h++)o[h]=-1;for(let h=0;h<s;h++)o[r[h]]=h;let c=o,a=this.byteLength-r.byteLength,u=r.byteLength-1,l;for(let h=t;h<=a;h+=l){l=0;for(let g=u;g>=0;g--){let d=this.get(h+g);if(r[g]!==d){l=Math.max(1,g-c[d]);break}}if(l===0)return h}return-1}getInt8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getInt8(0)}setInt8(e,t){let r=Z(1);new DataView(r.buffer,r.byteOffset,r.byteLength).setInt8(0,t),this.write(r,e)}getInt16(e,t){let r=this.subarray(e,e+2);return new DataView(r.buffer,r.byteOffset,r.byteLength).getInt16(0,t)}setInt16(e,t,r){let s=Ee(2);new DataView(s.buffer,s.byteOffset,s.byteLength).setInt16(0,t,r),this.write(s,e)}getInt32(e,t){let r=this.subarray(e,e+4);return new DataView(r.buffer,r.byteOffset,r.byteLength).getInt32(0,t)}setInt32(e,t,r){let s=Ee(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setInt32(0,t,r),this.write(s,e)}getBigInt64(e,t){let r=this.subarray(e,e+8);return new DataView(r.buffer,r.byteOffset,r.byteLength).getBigInt64(0,t)}setBigInt64(e,t,r){let s=Ee(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setBigInt64(0,t,r),this.write(s,e)}getUint8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getUint8(0)}setUint8(e,t){let r=Z(1);new DataView(r.buffer,r.byteOffset,r.byteLength).setUint8(0,t),this.write(r,e)}getUint16(e,t){let r=this.subarray(e,e+2);return new DataView(r.buffer,r.byteOffset,r.byteLength).getUint16(0,t)}setUint16(e,t,r){let s=Ee(2);new DataView(s.buffer,s.byteOffset,s.byteLength).setUint16(0,t,r),this.write(s,e)}getUint32(e,t){let r=this.subarray(e,e+4);return new DataView(r.buffer,r.byteOffset,r.byteLength).getUint32(0,t)}setUint32(e,t,r){let s=Ee(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setUint32(0,t,r),this.write(s,e)}getBigUint64(e,t){let r=this.subarray(e,e+8);return new DataView(r.buffer,r.byteOffset,r.byteLength).getBigUint64(0,t)}setBigUint64(e,t,r){let s=Ee(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setBigUint64(0,t,r),this.write(s,e)}getFloat32(e,t){let r=this.subarray(e,e+4);return new DataView(r.buffer,r.byteOffset,r.byteLength).getFloat32(0,t)}setFloat32(e,t,r){let s=Ee(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setFloat32(0,t,r),this.write(s,e)}getFloat64(e,t){let r=this.subarray(e,e+8);return new DataView(r.buffer,r.byteOffset,r.byteLength).getFloat64(0,t)}setFloat64(e,t,r){let s=Ee(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setFloat64(0,t,r),this.write(s,e)}equals(e){if(e==null||!(e instanceof n)||e.bufs.length!==this.bufs.length)return!1;for(let t=0;t<this.bufs.length;t++)if(!uc(this.bufs[t],e.bufs[t]))return!1;return!0}static fromUint8Arrays(e,t){let r=new n;return r.bufs=e,t==null&&(t=e.reduce((s,i)=>s+i.byteLength,0)),r.length=t,r}}});var $h,mc,yc=w(()=>{"use strict";gc();$h=262144,mc=(n={})=>{let e=n.chunkSize??$h;return async function*(r){let s=new xt,i=0,o=!1;for await(let c of r)for(s.append(c),i+=c.length;i>=e;)if(yield s.slice(0,e),o=!0,e===s.length)s=new xt,i=0;else{let a=new xt;a.append(s.sublist(e)),s=a,i-=e}(!o||i>0)&&(yield s.subarray(0,i))}}});var vt={};B(vt,{coerce:()=>ce,empty:()=>wc,equals:()=>ni,fromHex:()=>Hh,fromString:()=>si,isBinary:()=>Vh,toHex:()=>qh,toString:()=>ii});function qh(n){return n.reduce((e,t)=>e+t.toString(16).padStart(2,"0"),"")}function Hh(n){let e=n.match(/../g);return e!=null?new Uint8Array(e.map(t=>parseInt(t,16))):wc}function ni(n,e){if(n===e)return!0;if(n.byteLength!==e.byteLength)return!1;for(let t=0;t<n.byteLength;t++)if(n[t]!==e[t])return!1;return!0}function ce(n){if(n instanceof Uint8Array&&n.constructor.name==="Uint8Array")return n;if(n instanceof ArrayBuffer)return new Uint8Array(n);if(ArrayBuffer.isView(n))return new Uint8Array(n.buffer,n.byteOffset,n.byteLength);throw new Error("Unknown type, must be binary type")}function Vh(n){return n instanceof ArrayBuffer||ArrayBuffer.isView(n)}function si(n){return new TextEncoder().encode(n)}function ii(n){return new TextDecoder().decode(n)}var wc,Ue=w(()=>{"use strict";wc=new Uint8Array(0)});function Gh(n,e){if(n.length>=255)throw new TypeError("Alphabet too long");for(var t=new Uint8Array(256),r=0;r<t.length;r++)t[r]=255;for(var s=0;s<n.length;s++){var i=n.charAt(s),o=i.charCodeAt(0);if(t[o]!==255)throw new TypeError(i+" is ambiguous");t[o]=s}var c=n.length,a=n.charAt(0),u=Math.log(c)/Math.log(256),l=Math.log(256)/Math.log(c);function h(f){if(f instanceof Uint8Array||(ArrayBuffer.isView(f)?f=new Uint8Array(f.buffer,f.byteOffset,f.byteLength):Array.isArray(f)&&(f=Uint8Array.from(f))),!(f instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(f.length===0)return"";for(var y=0,k=0,m=0,b=f.length;m!==b&&f[m]===0;)m++,y++;for(var v=(b-m)*l+1>>>0,A=new Uint8Array(v);m!==b;){for(var E=f[m],C=0,x=v-1;(E!==0||C<k)&&x!==-1;x--,C++)E+=256*A[x]>>>0,A[x]=E%c>>>0,E=E/c>>>0;if(E!==0)throw new Error("Non-zero carry");k=C,m++}for(var P=v-k;P!==v&&A[P]===0;)P++;for(var q=a.repeat(y);P<v;++P)q+=n.charAt(A[P]);return q}function g(f){if(typeof f!="string")throw new TypeError("Expected String");if(f.length===0)return new Uint8Array;var y=0;if(f[y]!==" "){for(var k=0,m=0;f[y]===a;)k++,y++;for(var b=(f.length-y)*u+1>>>0,v=new Uint8Array(b);f[y];){var A=t[f.charCodeAt(y)];if(A===255)return;for(var E=0,C=b-1;(A!==0||E<m)&&C!==-1;C--,E++)A+=c*v[C]>>>0,v[C]=A%256>>>0,A=A/256>>>0;if(A!==0)throw new Error("Non-zero carry");m=E,y++}if(f[y]!==" "){for(var x=b-m;x!==b&&v[x]===0;)x++;for(var P=new Uint8Array(k+(b-x)),q=k;x!==b;)P[q++]=v[x++];return P}}}function d(f){var y=g(f);if(y)return y;throw new Error(`Non-${e} character`)}return{encode:h,decodeUnsafe:g,decode:d}}var Yh,jh,bc,Sc=w(()=>{"use strict";Yh=Gh,jh=Yh,bc=jh});function xc(n,e){return new ci({...n.decoders??{[n.prefix]:n},...e.decoders??{[e.prefix]:e}})}function At({name:n,prefix:e,encode:t,decode:r}){return new li(n,e,t,r)}function Le({name:n,prefix:e,alphabet:t}){let{encode:r,decode:s}=bc(t,n);return At({prefix:e,name:n,encode:r,decode:i=>ce(s(i))})}function Jh(n,e,t,r){let s=n.length;for(;n[s-1]==="=";)--s;let i=new Uint8Array(s*t/8|0),o=0,c=0,a=0;for(let u=0;u<s;++u){let l=e[n[u]];if(l===void 0)throw new SyntaxError(`Non-${r} character`);c=c<<t|l,o+=t,o>=8&&(o-=8,i[a++]=255&c>>o)}if(o>=t||(255&c<<8-o)!==0)throw new SyntaxError("Unexpected end of data");return i}function Qh(n,e,t){let r=e[e.length-1]==="=",s=(1<<t)-1,i="",o=0,c=0;for(let a=0;a<n.length;++a)for(c=c<<8|n[a],o+=8;o>t;)o-=t,i+=e[s&c>>o];if(o!==0&&(i+=e[s&c<<t-o]),r)for(;(i.length*t&7)!==0;)i+="=";return i}function Xh(n){let e={};for(let t=0;t<n.length;++t)e[n[t]]=t;return e}function U({name:n,prefix:e,bitsPerChar:t,alphabet:r}){let s=Xh(r);return At({prefix:e,name:n,encode(i){return Qh(i,r,t)},decode(i){return Jh(i,s,t,n)}})}var oi,ai,ci,li,he=w(()=>{"use strict";Ue();Sc();oi=class{constructor(e,t,r){p(this,"name");p(this,"prefix");p(this,"baseEncode");this.name=e,this.prefix=t,this.baseEncode=r}encode(e){if(e instanceof Uint8Array)return`${this.prefix}${this.baseEncode(e)}`;throw Error("Unknown type, must be binary type")}},ai=class{constructor(e,t,r){p(this,"name");p(this,"prefix");p(this,"baseDecode");p(this,"prefixCodePoint");this.name=e,this.prefix=t;let s=t.codePointAt(0);if(s===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=s,this.baseDecode=r}decode(e){if(typeof e=="string"){if(e.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(e)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(e.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(e){return xc(this,e)}},ci=class{constructor(e){p(this,"decoders");this.decoders=e}or(e){return xc(this,e)}decode(e){let t=e[0],r=this.decoders[t];if(r!=null)return r.decode(e);throw RangeError(`Unable to decode multibase string ${JSON.stringify(e)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}};li=class{constructor(e,t,r,s){p(this,"name");p(this,"prefix");p(this,"baseEncode");p(this,"baseDecode");p(this,"encoder");p(this,"decoder");this.name=e,this.prefix=t,this.baseEncode=r,this.baseDecode=s,this.encoder=new oi(e,t,r),this.decoder=new ai(e,t,s)}encode(e){return this.encoder.encode(e)}decode(e){return this.decoder.decode(e)}}});var ui={};B(ui,{base32:()=>j,base32hex:()=>rf,base32hexpad:()=>sf,base32hexpadupper:()=>of,base32hexupper:()=>nf,base32pad:()=>ef,base32padupper:()=>tf,base32upper:()=>Zh,base32z:()=>af});var j,Zh,ef,tf,rf,nf,sf,of,af,mr=w(()=>{"use strict";he();j=U({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),Zh=U({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),ef=U({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),tf=U({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),rf=U({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),nf=U({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),sf=U({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),of=U({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),af=U({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5})});var di={};B(di,{base36:()=>yr,base36upper:()=>cf});var yr,cf,hi=w(()=>{"use strict";he();yr=Le({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),cf=Le({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"})});var fi={};B(fi,{base58btc:()=>le,base58flickr:()=>lf});var le,lf,Mn=w(()=>{"use strict";he();le=Le({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),lf=Le({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"})});function kc(n,e,t){e=e||[],t=t||0;for(var r=t;n>=ff;)e[t++]=n&255|vc,n/=128;for(;n&hf;)e[t++]=n&255|vc,n>>>=7;return e[t]=n|0,kc.bytes=t-r+1,e}function pi(n,r){var t=0,r=r||0,s=0,i=r,o,c=n.length;do{if(i>=c)throw pi.bytes=0,new RangeError("Could not decode varint");o=n[i++],t+=s<28?(o&Ac)<<s:(o&Ac)*Math.pow(2,s),s+=7}while(o>=gf);return pi.bytes=i-r,t}var uf,vc,df,hf,ff,pf,gf,Ac,mf,yf,wf,bf,Sf,xf,vf,Af,kf,Ef,Cf,Pf,wr,Ec=w(()=>{"use strict";uf=kc,vc=128,df=127,hf=~df,ff=Math.pow(2,31);pf=pi,gf=128,Ac=127;mf=Math.pow(2,7),yf=Math.pow(2,14),wf=Math.pow(2,21),bf=Math.pow(2,28),Sf=Math.pow(2,35),xf=Math.pow(2,42),vf=Math.pow(2,49),Af=Math.pow(2,56),kf=Math.pow(2,63),Ef=function(n){return n<mf?1:n<yf?2:n<wf?3:n<bf?4:n<Sf?5:n<xf?6:n<vf?7:n<Af?8:n<kf?9:10},Cf={encode:uf,decode:pf,encodingLength:Ef},Pf=Cf,wr=Pf});function br(n,e=0){return[wr.decode(n,e),wr.decode.bytes]}function kt(n,e,t=0){return wr.encode(n,e,t),e}function Et(n){return wr.encodingLength(n)}var Un=w(()=>{"use strict";Ec()});function Pt(n,e){let t=e.byteLength,r=Et(n),s=r+Et(t),i=new Uint8Array(s+t);return kt(n,i,0),kt(t,i,r),i.set(e,s),new Ct(n,t,e,i)}function Ln(n){let e=ce(n),[t,r]=br(e),[s,i]=br(e.subarray(r)),o=e.subarray(r+i);if(o.byteLength!==s)throw new Error("Incorrect length");return new Ct(t,s,o,e)}function Cc(n,e){if(n===e)return!0;{let t=e;return n.code===t.code&&n.size===t.size&&t.bytes instanceof Uint8Array&&ni(n.bytes,t.bytes)}}var Ct,Bt=w(()=>{"use strict";Ue();Un();Ct=class{constructor(e,t,r,s){p(this,"code");p(this,"size");p(this,"digest");p(this,"bytes");this.code=e,this.size=t,this.digest=r,this.bytes=s}}});var gi=w(()=>{"use strict"});function Pc(n,e){let{bytes:t,version:r}=n;return r===0?Bf(t,mi(n),e??le.encoder):Df(t,mi(n),e??j.encoder)}function mi(n){let e=Ic.get(n);if(e==null){let t=new Map;return Ic.set(n,t),t}return e}function If(n,e){switch(n[0]){case"Q":{let t=e??le;return[le.prefix,t.decode(`${le.prefix}${n}`)]}case le.prefix:{let t=e??le;return[le.prefix,t.decode(n)]}case j.prefix:{let t=e??j;return[j.prefix,t.decode(n)]}case yr.prefix:{let t=e??yr;return[yr.prefix,t.decode(n)]}default:{if(e==null)throw Error("To parse non base32, base36 or base58btc encoded CID multibase decoder must be provided");return[n[0],e.decode(n)]}}}function Bf(n,e,t){let{prefix:r}=t;if(r!==le.prefix)throw Error(`Cannot string encode V0 in ${t.name} encoding`);let s=e.get(r);if(s==null){let i=t.encode(n).slice(1);return e.set(r,i),i}else return s}function Df(n,e,t){let{prefix:r}=t,s=e.get(r);if(s==null){let i=t.encode(n);return e.set(r,i),i}else return s}function Bc(n,e,t){let r=Et(n),s=r+Et(e),i=new Uint8Array(s+t.byteLength);return kt(n,i,0),kt(e,i,r),i.set(t,s),i}var Ic,Dc,K,Sr,Rf,Tf,et=w(()=>{"use strict";mr();hi();Mn();Ue();Bt();Un();gi();Ic=new WeakMap;K=class n{constructor(e,t,r,s){p(this,"code");p(this,"version");p(this,"multihash");p(this,"bytes");p(this,"/");p(this,Dc,"CID");this.code=t,this.version=e,this.multihash=r,this.bytes=s,this["/"]=s}get asCID(){return this}get byteOffset(){return this.bytes.byteOffset}get byteLength(){return this.bytes.byteLength}toV0(){switch(this.version){case 0:return this;case 1:{let{code:e,multihash:t}=this;if(e!==Sr)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(t.code!==Rf)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return n.createV0(t)}default:throw Error(`Can not convert CID version ${this.version} to version 0. This is a bug please report`)}}toV1(){switch(this.version){case 0:{let{code:e,digest:t}=this.multihash,r=Pt(e,t);return n.createV1(this.code,r)}case 1:return this;default:throw Error(`Can not convert CID version ${this.version} to version 1. This is a bug please report`)}}equals(e){return n.equals(this,e)}static equals(e,t){let r=t;return r!=null&&e.code===r.code&&e.version===r.version&&Cc(e.multihash,r.multihash)}toString(e){return Pc(this,e)}toJSON(){return{"/":Pc(this)}}link(){return this}[(Dc=Symbol.toStringTag,Symbol.for("nodejs.util.inspect.custom"))](){return`CID(${this.toString()})`}static asCID(e){if(e==null)return null;let t=e;if(t instanceof n)return t;if(t["/"]!=null&&t["/"]===t.bytes||t.asCID===t){let{version:r,code:s,multihash:i,bytes:o}=t;return new n(r,s,i,o??Bc(r,s,i.bytes))}else if(t[Tf]===!0){let{version:r,multihash:s,code:i}=t,o=Ln(s);return n.create(r,i,o)}else return null}static create(e,t,r){if(typeof t!="number")throw new Error("String codecs are no longer supported");if(!(r.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(e){case 0:{if(t!==Sr)throw new Error(`Version 0 CID must use dag-pb (code: ${Sr}) block encoding`);return new n(e,t,r,r.bytes)}case 1:{let s=Bc(e,t,r.bytes);return new n(e,t,r,s)}default:throw new Error("Invalid version")}}static createV0(e){return n.create(0,Sr,e)}static createV1(e,t){return n.create(1,e,t)}static decode(e){let[t,r]=n.decodeFirst(e);if(r.length!==0)throw new Error("Incorrect length");return t}static decodeFirst(e){let t=n.inspectBytes(e),r=t.size-t.multihashSize,s=ce(e.subarray(r,r+t.multihashSize));if(s.byteLength!==t.multihashSize)throw new Error("Incorrect length");let i=s.subarray(t.multihashSize-t.digestSize),o=new Ct(t.multihashCode,t.digestSize,i,s);return[t.version===0?n.createV0(o):n.createV1(t.codec,o),e.subarray(t.size)]}static inspectBytes(e){let t=0,r=()=>{let[h,g]=br(e.subarray(t));return t+=g,h},s=r(),i=Sr;if(s===18?(s=0,t=0):i=r(),s!==0&&s!==1)throw new RangeError(`Invalid CID version ${s}`);let o=t,c=r(),a=r(),u=t+a,l=u-o;return{version:s,codec:i,multihashCode:c,digestSize:a,multihashSize:l,size:u}}static parse(e,t){let[r,s]=If(e,t),i=n.decode(s);if(i.version===0&&e[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return mi(i).set(r,e),i}};Sr=112,Rf=18;Tf=Symbol.for("@ipld/js-cid/CID")});function yi(n,e){let t=0;for(let r=0;;r+=7){if(r>=64)throw new Error("protobuf: varint overflow");if(e>=n.length)throw new Error("protobuf: unexpected end of data");let s=n[e++];if(t+=r<28?(s&127)<<r:(s&127)*2**r,s<128)break}return[t,e]}function _n(n,e){let t;[t,e]=yi(n,e);let r=e+t;if(t<0||r<0)throw new Error("protobuf: invalid length");if(r>n.length)throw new Error("protobuf: unexpected end of data");return[n.subarray(e,r),r]}function Rc(n,e){let t;return[t,e]=yi(n,e),[t&7,t>>3,e]}function Mf(n){let e={},t=n.length,r=0;for(;r<t;){let s,i;if([s,i,r]=Rc(n,r),i===1){if(e.Hash)throw new Error("protobuf: (PBLink) duplicate Hash section");if(s!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${s}) for Hash`);if(e.Name!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Name before Hash");if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Hash");[e.Hash,r]=_n(n,r)}else if(i===2){if(e.Name!==void 0)throw new Error("protobuf: (PBLink) duplicate Name section");if(s!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${s}) for Name`);if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Name");let o;[o,r]=_n(n,r),e.Name=Ff.decode(o)}else if(i===3){if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) duplicate Tsize section");if(s!==0)throw new Error(`protobuf: (PBLink) wrong wireType (${s}) for Tsize`);[e.Tsize,r]=yi(n,r)}else throw new Error(`protobuf: (PBLink) invalid fieldNumber, expected 1, 2 or 3, got ${i}`)}if(r>t)throw new Error("protobuf: (PBLink) unexpected end of data");return e}function Tc(n){let e=n.length,t=0,r,s=!1,i;for(;t<e;){let c,a;if([c,a,t]=Rc(n,t),c!==2)throw new Error(`protobuf: (PBNode) invalid wireType, expected 2, got ${c}`);if(a===1){if(i)throw new Error("protobuf: (PBNode) duplicate Data section");[i,t]=_n(n,t),r&&(s=!0)}else if(a===2){if(s)throw new Error("protobuf: (PBNode) duplicate Links section");r||(r=[]);let u;[u,t]=_n(n,t),r.push(Mf(u))}else throw new Error(`protobuf: (PBNode) invalid fieldNumber, expected 1 or 2, got ${a}`)}if(t>e)throw new Error("protobuf: (PBNode) unexpected end of data");let o={};return i&&(o.Data=i),o.Links=r||[],o}var Ff,Fc=w(()=>{"use strict";Ff=new TextDecoder});function Uf(n,e){let t=e.length;if(typeof n.Tsize=="number"){if(n.Tsize<0)throw new Error("Tsize cannot be negative");if(!Number.isSafeInteger(n.Tsize))throw new Error("Tsize too large for encoding");t=xr(e,t,n.Tsize)-1,e[t]=24}if(typeof n.Name=="string"){let r=Nc.encode(n.Name);t-=r.length,e.set(r,t),t=xr(e,t,r.length)-1,e[t]=18}return n.Hash&&(t-=n.Hash.length,e.set(n.Hash,t),t=xr(e,t,n.Hash.length)-1,e[t]=10),e.length-t}function Uc(n){let e=_f(n),t=new Uint8Array(e),r=e;if(n.Data&&(r-=n.Data.length,t.set(n.Data,r),r=xr(t,r,n.Data.length)-1,t[r]=10),n.Links)for(let s=n.Links.length-1;s>=0;s--){let i=Uf(n.Links[s],t.subarray(0,r));r-=i,r=xr(t,r,i)-1,t[r]=18}return t}function Lf(n){let e=0;if(n.Hash){let t=n.Hash.length;e+=1+t+Dt(t)}if(typeof n.Name=="string"){let t=Nc.encode(n.Name).length;e+=1+t+Dt(t)}return typeof n.Tsize=="number"&&(e+=1+Dt(n.Tsize)),e}function _f(n){let e=0;if(n.Data){let t=n.Data.length;e+=1+t+Dt(t)}if(n.Links)for(let t of n.Links){let r=Lf(t);e+=1+r+Dt(r)}return e}function xr(n,e,t){e-=Dt(t);let r=e;for(;t>=Nf;)n[e++]=t&127|128,t/=128;for(;t>=128;)n[e++]=t&127|128,t>>>=7;return n[e]=t,r}function Dt(n){return n%2===0&&n++,Math.floor((Of(n)+6)/7)}function Of(n){let e=0;return n>=Mc&&(n=Math.floor(n/Mc),e=32),n>=65536&&(n>>>=16,e+=16),n>=256&&(n>>>=8,e+=8),e+Kf[n]}var Nc,Mc,Nf,Kf,Lc=w(()=>{"use strict";Nc=new TextEncoder,Mc=2**32,Nf=2**31;Kf=[0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8]});function Oc(n,e){if(n===e)return 0;let t=n.Name?wi.encode(n.Name):[],r=e.Name?wi.encode(e.Name):[],s=t.length,i=r.length;for(let o=0,c=Math.min(s,i);o<c;++o)if(t[o]!==r[o]){s=t[o],i=r[o];break}return s<i?-1:i<s?1:0}function _c(n,e){return!Object.keys(n).some(t=>!e.includes(t))}function Kc(n){if(typeof n.asCID=="object"){let t=K.asCID(n);if(!t)throw new TypeError("Invalid DAG-PB form");return{Hash:t}}if(typeof n!="object"||Array.isArray(n))throw new TypeError("Invalid DAG-PB form");let e={};if(n.Hash){let t=K.asCID(n.Hash);try{t||(typeof n.Hash=="string"?t=K.parse(n.Hash):n.Hash instanceof Uint8Array&&(t=K.decode(n.Hash)))}catch(r){throw new TypeError(`Invalid DAG-PB form: ${r.message}`)}t&&(e.Hash=t)}if(!e.Hash)throw new TypeError("Invalid DAG-PB form");return typeof n.Name=="string"&&(e.Name=n.Name),typeof n.Tsize=="number"&&(e.Tsize=n.Tsize),e}function ee(n){if((n instanceof Uint8Array||typeof n=="string")&&(n={Data:n}),typeof n!="object"||Array.isArray(n))throw new TypeError("Invalid DAG-PB form");let e={};if(n.Data!==void 0)if(typeof n.Data=="string")e.Data=wi.encode(n.Data);else if(n.Data instanceof Uint8Array)e.Data=n.Data;else throw new TypeError("Invalid DAG-PB form");if(n.Links!==void 0)if(Array.isArray(n.Links))e.Links=n.Links.map(Kc),e.Links.sort(Oc);else throw new TypeError("Invalid DAG-PB form");else e.Links=[];return e}function bi(n){if(!n||typeof n!="object"||Array.isArray(n)||n instanceof Uint8Array||n["/"]&&n["/"]===n.bytes)throw new TypeError("Invalid DAG-PB form");if(!_c(n,zf))throw new TypeError("Invalid DAG-PB form (extraneous properties)");if(n.Data!==void 0&&!(n.Data instanceof Uint8Array))throw new TypeError("Invalid DAG-PB form (Data must be bytes)");if(!Array.isArray(n.Links))throw new TypeError("Invalid DAG-PB form (Links must be a list)");for(let e=0;e<n.Links.length;e++){let t=n.Links[e];if(!t||typeof t!="object"||Array.isArray(t)||t instanceof Uint8Array||t["/"]&&t["/"]===t.bytes)throw new TypeError("Invalid DAG-PB form (bad link)");if(!_c(t,Wf))throw new TypeError("Invalid DAG-PB form (extraneous properties on link)");if(t.Hash===void 0)throw new TypeError("Invalid DAG-PB form (link must have a Hash)");if(t.Hash==null||!t.Hash["/"]||t.Hash["/"]!==t.Hash.bytes)throw new TypeError("Invalid DAG-PB form (link Hash must be a CID)");if(t.Name!==void 0&&typeof t.Name!="string")throw new TypeError("Invalid DAG-PB form (link Name must be a string)");if(t.Tsize!==void 0){if(typeof t.Tsize!="number"||t.Tsize%1!==0)throw new TypeError("Invalid DAG-PB form (link Tsize must be an integer)");if(t.Tsize<0)throw new TypeError("Invalid DAG-PB form (link Tsize cannot be negative)")}if(e>0&&Oc(t,n.Links[e-1])===-1)throw new TypeError("Invalid DAG-PB form (links must be sorted by Name bytes)")}}function zc(n,e=[]){return ee({Data:n,Links:e})}function Wc(n,e,t){return Kc({Hash:t,Name:n,Tsize:e})}function $c(n){return n instanceof ArrayBuffer?new Uint8Array(n,0,n.byteLength):n}var zf,Wf,wi,qc=w(()=>{"use strict";et();zf=["Data","Links"],Wf=["Hash","Name","Tsize"],wi=new TextEncoder});var vr={};B(vr,{code:()=>qf,createLink:()=>Wc,createNode:()=>zc,decode:()=>Hf,encode:()=>te,name:()=>$f,prepare:()=>ee,validate:()=>bi});function te(n){bi(n);let e={};return n.Links&&(e.Links=n.Links.map(t=>{let r={};return t.Hash&&(r.Hash=t.Hash.bytes),t.Name!==void 0&&(r.Name=t.Name),t.Tsize!==void 0&&(r.Tsize=t.Tsize),r})),n.Data&&(e.Data=n.Data),Uc(e)}function Hf(n){let e=$c(n),t=Tc(e),r={};return t.Data&&(r.Data=t.Data),t.Links&&(r.Links=t.Links.map(s=>{let i={};try{i.Hash=K.decode(s.Hash)}catch{}if(!i.Hash)throw new Error("Invalid Hash field found in link, expected CID");return s.Name!==void 0&&(i.Name=s.Name),s.Tsize!==void 0&&(i.Tsize=s.Tsize),i})),r}var $f,qf,tt=w(()=>{"use strict";et();Fc();Lc();qc();$f="dag-pb",qf=112});var Rt,Ar,Tt,On,Si=w(()=>{"use strict";Rt=class Rt extends Error{constructor(t="Invalid type"){super(t);p(this,"name",Rt.name);p(this,"code",Rt.code)}};p(Rt,"name","InvalidTypeError"),p(Rt,"code","ERR_INVALID_TYPE");Ar=Rt,Tt=class Tt extends Error{constructor(t="Invalid message"){super(t);p(this,"name",Tt.name);p(this,"code",Tt.code)}};p(Tt,"name","InvalidUnixFSMessageError"),p(Tt,"code","ERR_INVALID_MESSAGE");On=Tt});function kr(n){if(n<Vf)return 1;if(n<Gf)return 2;if(n<Yf)return 3;if(n<Hc)return 4;if(n<Vc)return 5;if(n<Gc)return 6;if(n<Yc)return 7;if(Number.MAX_SAFE_INTEGER!=null&&n>Number.MAX_SAFE_INTEGER)throw new RangeError("Could not encode varint");return 8}function jc(n,e,t=0){switch(kr(n)){case 8:e[t++]=n&255|$,n/=128;case 7:e[t++]=n&255|$,n/=128;case 6:e[t++]=n&255|$,n/=128;case 5:e[t++]=n&255|$,n/=128;case 4:e[t++]=n&255|$,n>>>=7;case 3:e[t++]=n&255|$,n>>>=7;case 2:e[t++]=n&255|$,n>>>=7;case 1:{e[t++]=n&255,n>>>=7;break}default:throw new Error("unreachable")}return e}function Jc(n,e){let t=n[e],r=0;if(r+=t&_e,t<$||(t=n[e+1],r+=(t&_e)<<7,t<$)||(t=n[e+2],r+=(t&_e)<<14,t<$)||(t=n[e+3],r+=(t&_e)<<21,t<$)||(t=n[e+4],r+=(t&_e)*Hc,t<$)||(t=n[e+5],r+=(t&_e)*Vc,t<$)||(t=n[e+6],r+=(t&_e)*Gc,t<$)||(t=n[e+7],r+=(t&_e)*Yc,t<$))return r;throw new RangeError("Could not decode varint")}var Vf,Gf,Yf,Hc,Vc,Gc,Yc,$,_e,xi=w(()=>{"use strict";Ze();Vf=Math.pow(2,7),Gf=Math.pow(2,14),Yf=Math.pow(2,21),Hc=Math.pow(2,28),Vc=Math.pow(2,35),Gc=Math.pow(2,42),Yc=Math.pow(2,49),$=128,_e=127});function Qc(n,e,t){vi[0]=n,e[t]=Oe[0],e[t+1]=Oe[1],e[t+2]=Oe[2],e[t+3]=Oe[3]}function Xc(n,e){return Oe[0]=n[e],Oe[1]=n[e+1],Oe[2]=n[e+2],Oe[3]=n[e+3],vi[0]}function Zc(n,e,t){Ai[0]=n,e[t]=z[0],e[t+1]=z[1],e[t+2]=z[2],e[t+3]=z[3],e[t+4]=z[4],e[t+5]=z[5],e[t+6]=z[6],e[t+7]=z[7]}function el(n,e){return z[0]=n[e],z[1]=n[e+1],z[2]=n[e+2],z[3]=n[e+3],z[4]=n[e+4],z[5]=n[e+5],z[6]=n[e+6],z[7]=n[e+7],Ai[0]}var vi,Oe,Ai,z,ki=w(()=>{"use strict";vi=new Float32Array([-0]),Oe=new Uint8Array(vi.buffer);Ai=new Float64Array([-0]),z=new Uint8Array(Ai.buffer)});var jf,Jf,re,rt,tl,Ei=w(()=>{"use strict";jf=BigInt(Number.MAX_SAFE_INTEGER),Jf=BigInt(Number.MIN_SAFE_INTEGER),re=class n{constructor(e,t){p(this,"lo");p(this,"hi");this.lo=e|0,this.hi=t|0}toNumber(e=!1){if(!e&&this.hi>>>31>0){let t=~this.lo+1>>>0,r=~this.hi>>>0;return t===0&&(r=r+1>>>0),-(t+r*4294967296)}return this.lo+this.hi*4294967296}toBigInt(e=!1){if(e)return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n);if(this.hi>>>31){let t=~this.lo+1>>>0,r=~this.hi>>>0;return t===0&&(r=r+1>>>0),-(BigInt(t)+(BigInt(r)<<32n))}return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n)}toString(e=!1){return this.toBigInt(e).toString()}zzEncode(){let e=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^e)>>>0,this.lo=(this.lo<<1^e)>>>0,this}zzDecode(){let e=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^e)>>>0,this.hi=(this.hi>>>1^e)>>>0,this}length(){let e=this.lo,t=(this.lo>>>28|this.hi<<4)>>>0,r=this.hi>>>24;return r===0?t===0?e<16384?e<128?1:2:e<2097152?3:4:t<16384?t<128?5:6:t<2097152?7:8:r<128?9:10}static fromBigInt(e){if(e===0n)return rt;if(e<jf&&e>Jf)return this.fromNumber(Number(e));let t=e<0n;t&&(e=-e);let r=e>>32n,s=e-(r<<32n);return t&&(r=~r|0n,s=~s|0n,++s>tl&&(s=0n,++r>tl&&(r=0n))),new n(Number(s),Number(r))}static fromNumber(e){if(e===0)return rt;let t=e<0;t&&(e=-e);let r=e>>>0,s=(e-r)/4294967296>>>0;return t&&(s=~s>>>0,r=~r>>>0,++r>4294967295&&(r=0,++s>4294967295&&(s=0))),new n(r,s)}static from(e){return typeof e=="number"?n.fromNumber(e):typeof e=="bigint"?n.fromBigInt(e):typeof e=="string"?n.fromBigInt(BigInt(e)):e.low!=null||e.high!=null?new n(e.low>>>0,e.high>>>0):rt}},rt=new re(0,0);rt.toBigInt=function(){return 0n};rt.zzEncode=rt.zzDecode=function(){return this};rt.length=function(){return 1};tl=4294967296n});function rl(n){let e=0,t=0;for(let r=0;r<n.length;++r)t=n.charCodeAt(r),t<128?e+=1:t<2048?e+=2:(t&64512)===55296&&(n.charCodeAt(r+1)&64512)===56320?(++r,e+=4):e+=3;return e}function nl(n,e,t){if(t-e<1)return"";let s,i=[],o=0,c;for(;e<t;)c=n[e++],c<128?i[o++]=c:c>191&&c<224?i[o++]=(c&31)<<6|n[e++]&63:c>239&&c<365?(c=((c&7)<<18|(n[e++]&63)<<12|(n[e++]&63)<<6|n[e++]&63)-65536,i[o++]=55296+(c>>10),i[o++]=56320+(c&1023)):i[o++]=(c&15)<<12|(n[e++]&63)<<6|n[e++]&63,o>8191&&((s??(s=[])).push(String.fromCharCode.apply(String,i)),o=0);return s!=null?(o>0&&s.push(String.fromCharCode.apply(String,i.slice(0,o))),s.join("")):String.fromCharCode.apply(String,i.slice(0,o))}function Ci(n,e,t){let r=t,s,i;for(let o=0;o<n.length;++o)s=n.charCodeAt(o),s<128?e[t++]=s:s<2048?(e[t++]=s>>6|192,e[t++]=s&63|128):(s&64512)===55296&&((i=n.charCodeAt(o+1))&64512)===56320?(s=65536+((s&1023)<<10)+(i&1023),++o,e[t++]=s>>18|240,e[t++]=s>>12&63|128,e[t++]=s>>6&63|128,e[t++]=s&63|128):(e[t++]=s>>12|224,e[t++]=s>>6&63|128,e[t++]=s&63|128);return t-r}var Pi=w(()=>{"use strict"});function fe(n,e){return RangeError(`index out of range: ${n.pos} + ${e??1} > ${n.len}`)}function Kn(n,e){return(n[e-4]|n[e-3]<<8|n[e-2]<<16|n[e-1]<<24)>>>0}function Bi(n){return new Ii(n instanceof Uint8Array?n:n.subarray())}var Ii,Di=w(()=>{"use strict";xi();ki();Ei();Pi();Ii=class{constructor(e){p(this,"buf");p(this,"pos");p(this,"len");p(this,"_slice",Uint8Array.prototype.subarray);this.buf=e,this.pos=0,this.len=e.length}uint32(){let e=4294967295;if(e=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(e=(e|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return e;if((this.pos+=5)>this.len)throw this.pos=this.len,fe(this,10);return e}int32(){return this.uint32()|0}sint32(){let e=this.uint32();return e>>>1^-(e&1)|0}bool(){return this.uint32()!==0}fixed32(){if(this.pos+4>this.len)throw fe(this,4);return Kn(this.buf,this.pos+=4)}sfixed32(){if(this.pos+4>this.len)throw fe(this,4);return Kn(this.buf,this.pos+=4)|0}float(){if(this.pos+4>this.len)throw fe(this,4);let e=Xc(this.buf,this.pos);return this.pos+=4,e}double(){if(this.pos+8>this.len)throw fe(this,4);let e=el(this.buf,this.pos);return this.pos+=8,e}bytes(){let e=this.uint32(),t=this.pos,r=this.pos+e;if(r>this.len)throw fe(this,e);return this.pos+=e,t===r?new Uint8Array(0):this.buf.subarray(t,r)}string(){let e=this.bytes();return nl(e,0,e.length)}skip(e){if(typeof e=="number"){if(this.pos+e>this.len)throw fe(this,e);this.pos+=e}else do if(this.pos>=this.len)throw fe(this);while((this.buf[this.pos++]&128)!==0);return this}skipType(e){switch(e){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(e=this.uint32()&7)!==4;)this.skipType(e);break;case 5:this.skip(4);break;default:throw Error(`invalid wire type ${e} at offset ${this.pos}`)}return this}readLongVarint(){let e=new re(0,0),t=0;if(this.len-this.pos>4){for(;t<4;++t)if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e;if(e.lo=(e.lo|(this.buf[this.pos]&127)<<28)>>>0,e.hi=(e.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return e;t=0}else{for(;t<3;++t){if(this.pos>=this.len)throw fe(this);if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e}return e.lo=(e.lo|(this.buf[this.pos++]&127)<<t*7)>>>0,e}if(this.len-this.pos>4){for(;t<5;++t)if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}else for(;t<5;++t){if(this.pos>=this.len)throw fe(this);if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}throw Error("invalid varint encoding")}readFixed64(){if(this.pos+8>this.len)throw fe(this,8);let e=Kn(this.buf,this.pos+=4),t=Kn(this.buf,this.pos+=4);return new re(e,t)}int64(){return this.readLongVarint().toBigInt()}int64Number(){return this.readLongVarint().toNumber()}int64String(){return this.readLongVarint().toString()}uint64(){return this.readLongVarint().toBigInt(!0)}uint64Number(){let e=Jc(this.buf,this.pos);return this.pos+=kr(e),e}uint64String(){return this.readLongVarint().toString(!0)}sint64(){return this.readLongVarint().zzDecode().toBigInt()}sint64Number(){return this.readLongVarint().zzDecode().toNumber()}sint64String(){return this.readLongVarint().zzDecode().toString()}fixed64(){return this.readFixed64().toBigInt()}fixed64Number(){return this.readFixed64().toNumber()}fixed64String(){return this.readFixed64().toString()}sfixed64(){return this.readFixed64().toBigInt()}sfixed64Number(){return this.readFixed64().toNumber()}sfixed64String(){return this.readFixed64().toString()}}});function Er(n,e,t){let r=Bi(n);return e.decode(r,void 0,t)}var il=w(()=>{"use strict";Di()});var Ri={};B(Ri,{base10:()=>Qf});var Qf,ol=w(()=>{"use strict";he();Qf=Le({prefix:"9",name:"base10",alphabet:"0123456789"})});var Ti={};B(Ti,{base16:()=>Xf,base16upper:()=>Zf});var Xf,Zf,al=w(()=>{"use strict";he();Xf=U({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),Zf=U({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4})});var Fi={};B(Fi,{base2:()=>ep});var ep,cl=w(()=>{"use strict";he();ep=U({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1})});var Mi={};B(Mi,{base256emoji:()=>ip});function np(n){return n.reduce((e,t)=>(e+=tp[t],e),"")}function sp(n){let e=[];for(let t of n){let r=t.codePointAt(0);if(r==null)throw new Error(`Invalid character: ${t}`);let s=rp[r];if(s==null)throw new Error(`Non-base256emoji character: ${t}`);e.push(s)}return new Uint8Array(e)}var ll,tp,rp,ip,ul=w(()=>{"use strict";he();ll=Array.from("\u{1F680}\u{1FA90}\u2604\u{1F6F0}\u{1F30C}\u{1F311}\u{1F312}\u{1F313}\u{1F314}\u{1F315}\u{1F316}\u{1F317}\u{1F318}\u{1F30D}\u{1F30F}\u{1F30E}\u{1F409}\u2600\u{1F4BB}\u{1F5A5}\u{1F4BE}\u{1F4BF}\u{1F602}\u2764\u{1F60D}\u{1F923}\u{1F60A}\u{1F64F}\u{1F495}\u{1F62D}\u{1F618}\u{1F44D}\u{1F605}\u{1F44F}\u{1F601}\u{1F525}\u{1F970}\u{1F494}\u{1F496}\u{1F499}\u{1F622}\u{1F914}\u{1F606}\u{1F644}\u{1F4AA}\u{1F609}\u263A\u{1F44C}\u{1F917}\u{1F49C}\u{1F614}\u{1F60E}\u{1F607}\u{1F339}\u{1F926}\u{1F389}\u{1F49E}\u270C\u2728\u{1F937}\u{1F631}\u{1F60C}\u{1F338}\u{1F64C}\u{1F60B}\u{1F497}\u{1F49A}\u{1F60F}\u{1F49B}\u{1F642}\u{1F493}\u{1F929}\u{1F604}\u{1F600}\u{1F5A4}\u{1F603}\u{1F4AF}\u{1F648}\u{1F447}\u{1F3B6}\u{1F612}\u{1F92D}\u2763\u{1F61C}\u{1F48B}\u{1F440}\u{1F62A}\u{1F611}\u{1F4A5}\u{1F64B}\u{1F61E}\u{1F629}\u{1F621}\u{1F92A}\u{1F44A}\u{1F973}\u{1F625}\u{1F924}\u{1F449}\u{1F483}\u{1F633}\u270B\u{1F61A}\u{1F61D}\u{1F634}\u{1F31F}\u{1F62C}\u{1F643}\u{1F340}\u{1F337}\u{1F63B}\u{1F613}\u2B50\u2705\u{1F97A}\u{1F308}\u{1F608}\u{1F918}\u{1F4A6}\u2714\u{1F623}\u{1F3C3}\u{1F490}\u2639\u{1F38A}\u{1F498}\u{1F620}\u261D\u{1F615}\u{1F33A}\u{1F382}\u{1F33B}\u{1F610}\u{1F595}\u{1F49D}\u{1F64A}\u{1F639}\u{1F5E3}\u{1F4AB}\u{1F480}\u{1F451}\u{1F3B5}\u{1F91E}\u{1F61B}\u{1F534}\u{1F624}\u{1F33C}\u{1F62B}\u26BD\u{1F919}\u2615\u{1F3C6}\u{1F92B}\u{1F448}\u{1F62E}\u{1F646}\u{1F37B}\u{1F343}\u{1F436}\u{1F481}\u{1F632}\u{1F33F}\u{1F9E1}\u{1F381}\u26A1\u{1F31E}\u{1F388}\u274C\u270A\u{1F44B}\u{1F630}\u{1F928}\u{1F636}\u{1F91D}\u{1F6B6}\u{1F4B0}\u{1F353}\u{1F4A2}\u{1F91F}\u{1F641}\u{1F6A8}\u{1F4A8}\u{1F92C}\u2708\u{1F380}\u{1F37A}\u{1F913}\u{1F619}\u{1F49F}\u{1F331}\u{1F616}\u{1F476}\u{1F974}\u25B6\u27A1\u2753\u{1F48E}\u{1F4B8}\u2B07\u{1F628}\u{1F31A}\u{1F98B}\u{1F637}\u{1F57A}\u26A0\u{1F645}\u{1F61F}\u{1F635}\u{1F44E}\u{1F932}\u{1F920}\u{1F927}\u{1F4CC}\u{1F535}\u{1F485}\u{1F9D0}\u{1F43E}\u{1F352}\u{1F617}\u{1F911}\u{1F30A}\u{1F92F}\u{1F437}\u260E\u{1F4A7}\u{1F62F}\u{1F486}\u{1F446}\u{1F3A4}\u{1F647}\u{1F351}\u2744\u{1F334}\u{1F4A3}\u{1F438}\u{1F48C}\u{1F4CD}\u{1F940}\u{1F922}\u{1F445}\u{1F4A1}\u{1F4A9}\u{1F450}\u{1F4F8}\u{1F47B}\u{1F910}\u{1F92E}\u{1F3BC}\u{1F975}\u{1F6A9}\u{1F34E}\u{1F34A}\u{1F47C}\u{1F48D}\u{1F4E3}\u{1F942}"),tp=ll.reduce((n,e,t)=>(n[t]=e,n),[]),rp=ll.reduce((n,e,t)=>{let r=e.codePointAt(0);if(r==null)throw new Error(`Invalid character: ${e}`);return n[r]=t,n},[]);ip=At({prefix:"\u{1F680}",name:"base256emoji",encode:np,decode:sp})});var Ui={};B(Ui,{base64:()=>Ni,base64pad:()=>op,base64url:()=>ap,base64urlpad:()=>cp});var Ni,op,ap,cp,Li=w(()=>{"use strict";he();Ni=U({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),op=U({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),ap=U({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),cp=U({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6})});var _i={};B(_i,{base8:()=>lp});var lp,dl=w(()=>{"use strict";he();lp=U({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3})});var Oi={};B(Oi,{identity:()=>up});var up,hl=w(()=>{"use strict";Ue();he();up=At({prefix:"\0",name:"identity",encode:n=>ii(n),decode:n=>si(n)})});var p0,g0,fl=w(()=>{"use strict";p0=new TextEncoder,g0=new TextDecoder});var Mt={};B(Mt,{code:()=>Ft,decode:()=>pp,encode:()=>fp,name:()=>hp});function fp(n){return ce(n)}function pp(n){return ce(n)}var hp,Ft,Cr=w(()=>{"use strict";Ue();hp="raw",Ft=85});var Ki={};B(Ki,{identity:()=>yp});function mp(n,e){if(e?.truncate!=null&&e.truncate!==n.byteLength){if(e.truncate<0||e.truncate>n.byteLength)throw new Error(`Invalid truncate option, must be less than or equal to ${n.byteLength}`);n=n.subarray(0,e.truncate)}return Pt(pl,gl(n))}var pl,gp,gl,yp,ml=w(()=>{"use strict";Ue();Bt();pl=0,gp="identity",gl=ce;yp={code:pl,name:gp,encode:gl,digest:mp}});function nt({name:n,code:e,encode:t,minDigestLength:r,maxDigestLength:s}){return new zi(n,e,t,r,s)}function yl(n,e,t){if(t!=null&&t!==n.byteLength){if(t>n.byteLength)throw new Error(`Invalid truncate option, must be less than or equal to ${n.byteLength}`);n=n.subarray(0,t)}return Pt(e,n)}var wp,zi,zn=w(()=>{"use strict";Bt();wp=20;zi=class{constructor(e,t,r,s,i){p(this,"name");p(this,"code");p(this,"encode");p(this,"minDigestLength");p(this,"maxDigestLength");this.name=e,this.code=t,this.encode=r,this.minDigestLength=s??wp,this.maxDigestLength=i}digest(e,t){if(t?.truncate!=null){if(t.truncate<this.minDigestLength)throw new Error(`Invalid truncate option, must be greater than or equal to ${this.minDigestLength}`);if(this.maxDigestLength!=null&&t.truncate>this.maxDigestLength)throw new Error(`Invalid truncate option, must be less than or equal to ${this.maxDigestLength}`)}if(e instanceof Uint8Array){let r=this.encode(e);return r instanceof Uint8Array?yl(r,this.code,t?.truncate):r.then(s=>yl(s,this.code,t?.truncate))}else throw Error("Unknown type, must be binary type")}}});var $i={};B($i,{sha256:()=>Wi,sha512:()=>bp});function bl(n){return async e=>new Uint8Array(await crypto.subtle.digest(n,e))}var Wi,bp,qi=w(()=>{"use strict";zn();Wi=nt({name:"sha2-256",code:18,encode:bl("SHA-256")}),bp=nt({name:"sha2-512",code:19,encode:bl("SHA-512")})});var Sl=w(()=>{"use strict"});var xl=w(()=>{"use strict"});var vl=w(()=>{"use strict"});var Al=w(()=>{"use strict"});var kl=w(()=>{"use strict";Sl();xl();vl();gi();Al()});var Hi=w(()=>{"use strict";Ue();et();Bt();zn();Un();kl()});var Vi,B0,El=w(()=>{"use strict";ol();al();cl();ul();mr();hi();Mn();Li();dl();hl();fl();Cr();ml();qi();Hi();Vi={...Oi,...Fi,..._i,...Ri,...Ti,...ui,...di,...fi,...Ui,...Mi},B0={...$i,...Ki}});function Pl(n,e,t,r){return{name:n,prefix:e,encoder:{name:n,prefix:e,encode:t},decoder:{decode:r}}}var Cl,Gi,Sp,Il,Bl=w(()=>{"use strict";El();Ze();Cl=Pl("utf8","u",n=>"u"+new TextDecoder("utf8").decode(n),n=>new TextEncoder().encode(n.substring(1))),Gi=Pl("ascii","a",n=>{let e="a";for(let t=0;t<n.length;t++)e+=String.fromCharCode(n[t]);return e},n=>{n=n.substring(1);let e=Z(n.length);for(let t=0;t<n.length;t++)e[t]=n.charCodeAt(t);return e}),Sp={utf8:Cl,"utf-8":Cl,hex:Vi.base16,latin1:Gi,ascii:Gi,binary:Gi,...Vi},Il=Sp});function Nt(n,e="utf8"){let t=Il[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.decoder.decode(`${t.prefix}${n}`)}var Wn=w(()=>{"use strict";Bl()});function Yi(n){let e=n??8192,t=e>>>1,r,s=e;return function(o){if(o<1||o>t)return Z(o);s+o>e&&(r=Z(e),s=0);let c=r.subarray(s,s+=o);return(s&7)!==0&&(s=(s|7)+1),c}}var Dl=w(()=>{"use strict";Ze()});function ji(){}function vp(n){return globalThis.Buffer!=null?Z(n):xp(n)}function Ji(n,e,t){e[t]=n&255}function Ap(n,e,t){for(;n>127;)e[t++]=n&127|128,n>>>=7;e[t]=n}function $n(n,e,t){for(;n.hi!==0;)e[t++]=n.lo&127|128,n.lo=(n.lo>>>7|n.hi<<25)>>>0,n.hi>>>=7;for(;n.lo>127;)e[t++]=n.lo&127|128,n.lo=n.lo>>>7;e[t++]=n.lo}function Pr(n,e,t){e[t]=n&255,e[t+1]=n>>>8&255,e[t+2]=n>>>16&255,e[t+3]=n>>>24}function kp(n,e,t){e.set(n,t)}function Ep(n,e,t){e.set(n,t)}function Cp(n,e,t){n.length<40?Ci(n,e,t):e.utf8Write!=null?e.utf8Write(n,t):e.set(Nt(n),t)}function Zi(){return new Ir}var st,Qi,xp,Ir,Xi,eo=w(()=>{"use strict";xi();Ze();Wn();ki();Ei();Dl();Pi();st=class{constructor(e,t,r){p(this,"fn");p(this,"len");p(this,"next");p(this,"val");this.fn=e,this.len=t,this.next=void 0,this.val=r}};Qi=class{constructor(e){p(this,"head");p(this,"tail");p(this,"len");p(this,"next");this.head=e.head,this.tail=e.tail,this.len=e.len,this.next=e.states}},xp=Yi();Ir=class{constructor(){p(this,"len");p(this,"head");p(this,"tail");p(this,"states");this.len=0,this.head=new st(ji,0,0),this.tail=this.head,this.states=null}_push(e,t,r){return this.tail=this.tail.next=new st(e,t,r),this.len+=t,this}uint32(e){return this.len+=(this.tail=this.tail.next=new Xi((e=e>>>0)<128?1:e<16384?2:e<2097152?3:e<268435456?4:5,e)).len,this}int32(e){return e<0?this._push($n,10,re.fromNumber(e)):this.uint32(e)}sint32(e){return this.uint32((e<<1^e>>31)>>>0)}uint64(e){let t=re.fromBigInt(e);return this._push($n,t.length(),t)}uint64Number(e){return this._push(jc,kr(e),e)}uint64String(e){return this.uint64(BigInt(e))}int64(e){return this.uint64(e)}int64Number(e){return this.uint64Number(e)}int64String(e){return this.uint64String(e)}sint64(e){let t=re.fromBigInt(e).zzEncode();return this._push($n,t.length(),t)}sint64Number(e){let t=re.fromNumber(e).zzEncode();return this._push($n,t.length(),t)}sint64String(e){return this.sint64(BigInt(e))}bool(e){return this._push(Ji,1,e?1:0)}fixed32(e){return this._push(Pr,4,e>>>0)}sfixed32(e){return this.fixed32(e)}fixed64(e){let t=re.fromBigInt(e);return this._push(Pr,4,t.lo)._push(Pr,4,t.hi)}fixed64Number(e){let t=re.fromNumber(e);return this._push(Pr,4,t.lo)._push(Pr,4,t.hi)}fixed64String(e){return this.fixed64(BigInt(e))}sfixed64(e){return this.fixed64(e)}sfixed64Number(e){return this.fixed64Number(e)}sfixed64String(e){return this.fixed64String(e)}float(e){return this._push(Qc,4,e)}double(e){return this._push(Zc,8,e)}bytes(e){let t=e.length>>>0;return t===0?this._push(Ji,1,0):this.uint32(t)._push(kp,t,e)}string(e){let t=rl(e);return t!==0?this.uint32(t)._push(Ci,t,e):this._push(Ji,1,0)}fork(){return this.states=new Qi(this),this.head=this.tail=new st(ji,0,0),this.len=0,this}reset(){return this.states!=null?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new st(ji,0,0),this.len=0),this}ldelim(){let e=this.head,t=this.tail,r=this.len;return this.reset().uint32(r),r!==0&&(this.tail.next=e.next,this.tail=t,this.len+=r),this}finish(){let e=this.head.next,t=vp(this.len),r=0;for(;e!=null;)e.fn(e.val,t,r),r+=e.len,e=e.next;return t}};Xi=class extends st{constructor(t,r){super(Ap,t,r);p(this,"next");this.next=void 0}};globalThis.Buffer!=null&&(Ir.prototype.bytes=function(n){let e=n.length>>>0;return this.uint32(e),e>0&&this._push(Ep,e,n),this},Ir.prototype.string=function(n){let e=globalThis.Buffer.byteLength(n);return this.uint32(e),e>0&&this._push(Cp,e,n),this})});function Br(n,e){let t=Zi();return e.encode(n,t,{lengthDelimited:!1}),t.finish()}var Rl=w(()=>{"use strict";eo()});function qn(n,e,t,r){return{name:n,type:e,encode:t,decode:r}}var Ut,to=w(()=>{"use strict";(function(n){n[n.VARINT=0]="VARINT",n[n.BIT64=1]="BIT64",n[n.LENGTH_DELIMITED=2]="LENGTH_DELIMITED",n[n.START_GROUP=3]="START_GROUP",n[n.END_GROUP=4]="END_GROUP",n[n.BIT32=5]="BIT32"})(Ut||(Ut={}))});function ro(n){function e(s){if(n[s.toString()]==null)throw new Error("Invalid enum value");return n[s]}let t=function(i,o){let c=e(i);o.int32(c)},r=function(i){let o=i.int32();return e(o)};return qn("enum",Ut.VARINT,t,r)}var Tl=w(()=>{"use strict";to()});function Dr(n,e){return qn("message",Ut.LENGTH_DELIMITED,n,e)}var Fl=w(()=>{"use strict";to()});var Ml=w(()=>{"use strict";il();Rl();Tl();Fl();Di();eo()});var pe,Hn,Nl,Ul=w(()=>{"use strict";Ml();(function(n){let e;(function(s){s.Raw="Raw",s.Directory="Directory",s.File="File",s.Metadata="Metadata",s.Symlink="Symlink",s.HAMTShard="HAMTShard"})(e=n.DataType||(n.DataType={}));let t;(function(s){s[s.Raw=0]="Raw",s[s.Directory=1]="Directory",s[s.File=2]="File",s[s.Metadata=3]="Metadata",s[s.Symlink=4]="Symlink",s[s.HAMTShard=5]="HAMTShard"})(t||(t={})),(function(s){s.codec=()=>ro(t)})(e=n.DataType||(n.DataType={}));let r;n.codec=()=>(r==null&&(r=Dr((s,i,o={})=>{if(o.lengthDelimited!==!1&&i.fork(),s.Type!=null&&(i.uint32(8),n.DataType.codec().encode(s.Type,i)),s.Data!=null&&(i.uint32(18),i.bytes(s.Data)),s.filesize!=null&&(i.uint32(24),i.uint64(s.filesize)),s.blocksizes!=null)for(let c of s.blocksizes)i.uint32(32),i.uint64(c);s.hashType!=null&&(i.uint32(40),i.uint64(s.hashType)),s.fanout!=null&&(i.uint32(48),i.uint64(s.fanout)),s.mode!=null&&(i.uint32(56),i.uint32(s.mode)),s.mtime!=null&&(i.uint32(66),Hn.codec().encode(s.mtime,i)),o.lengthDelimited!==!1&&i.ldelim()},(s,i)=>{let o={blocksizes:[]},c=i==null?s.len:s.pos+i;for(;s.pos<c;){let a=s.uint32();switch(a>>>3){case 1:o.Type=n.DataType.codec().decode(s);break;case 2:o.Data=s.bytes();break;case 3:o.filesize=s.uint64();break;case 4:o.blocksizes.push(s.uint64());break;case 5:o.hashType=s.uint64();break;case 6:o.fanout=s.uint64();break;case 7:o.mode=s.uint32();break;case 8:o.mtime=Hn.codec().decode(s,s.uint32());break;default:s.skipType(a&7);break}}return o})),r),n.encode=s=>Br(s,n.codec()),n.decode=s=>Er(s,n.codec())})(pe||(pe={}));(function(n){let e;n.codec=()=>(e==null&&(e=Dr((t,r,s={})=>{s.lengthDelimited!==!1&&r.fork(),t.Seconds!=null&&(r.uint32(8),r.int64(t.Seconds)),t.FractionalNanoseconds!=null&&(r.uint32(21),r.fixed32(t.FractionalNanoseconds)),s.lengthDelimited!==!1&&r.ldelim()},(t,r)=>{let s={},i=r==null?t.len:t.pos+r;for(;t.pos<i;){let o=t.uint32();switch(o>>>3){case 1:s.Seconds=t.int64();break;case 2:s.FractionalNanoseconds=t.fixed32();break;default:t.skipType(o&7);break}}return s})),e),n.encode=t=>Br(t,n.codec()),n.decode=t=>Er(t,n.codec())})(Hn||(Hn={}));(function(n){let e;n.codec=()=>(e==null&&(e=Dr((t,r,s={})=>{s.lengthDelimited!==!1&&r.fork(),t.MimeType!=null&&(r.uint32(10),r.string(t.MimeType)),s.lengthDelimited!==!1&&r.ldelim()},(t,r)=>{let s={},i=r==null?t.len:t.pos+r;for(;t.pos<i;){let o=t.uint32();o>>>3===1?s.MimeType=t.string():t.skipType(o&7)}return s})),e),n.encode=t=>Br(t,n.codec()),n.decode=t=>Er(t,n.codec())})(Nl||(Nl={}))});var Ll,Pp,_l,Ol,Kl,J,Lt=w(()=>{"use strict";Si();Ul();Si();Ll={Raw:"raw",Directory:"directory",File:"file",Metadata:"metadata",Symlink:"symlink",HAMTShard:"hamt-sharded-directory"},Pp=["directory","hamt-sharded-directory"],_l=parseInt("0644",8),Ol=parseInt("0755",8),Kl=BigInt(1024),J=class n{constructor(e={type:"file"}){p(this,"type");p(this,"data");p(this,"blockSizes");p(this,"hashType");p(this,"fanout");p(this,"mtime");p(this,"_mode");p(this,"_originalMode");let{type:t,data:r,blockSizes:s,hashType:i,fanout:o,mtime:c,mode:a}=e;if(t!=null&&!Object.values(Ll).includes(t))throw new Ar("Type: "+t+" is not valid");this.type=t??"file",this.data=r,this.hashType=i,this.fanout=o,this.blockSizes=s??[],this._originalMode=0,this.mode=a,this.mtime=c}static unmarshal(e){let t=pe.decode(e);if(t.fanout!=null&&t.fanout>Kl)throw new On(`Fanout size was too large - ${t.fanout} > ${Kl}`);let r=new n({type:Ll[t.Type!=null?t.Type.toString():"File"],data:t.Data,blockSizes:t.blocksizes,mode:t.mode,mtime:t.mtime!=null?{secs:t.mtime.Seconds??0n,nsecs:t.mtime.FractionalNanoseconds}:void 0,fanout:t.fanout});return r._originalMode=t.mode??0,r}set mode(e){e==null?this._mode=this.isDirectory()?Ol:_l:this._mode=e&4095}get mode(){return this._mode}isDirectory(){return Pp.includes(this.type)}addBlockSize(e){this.blockSizes.push(e)}removeBlockSize(e){this.blockSizes.splice(e,1)}fileSize(){if(this.isDirectory())return 0n;let e=0n;return this.blockSizes.forEach(t=>{e+=t}),this.data!=null&&(e+=BigInt(this.data.length)),e}marshal(){let e;switch(this.type){case"raw":e=pe.DataType.Raw;break;case"directory":e=pe.DataType.Directory;break;case"file":e=pe.DataType.File;break;case"metadata":e=pe.DataType.Metadata;break;case"symlink":e=pe.DataType.Symlink;break;case"hamt-sharded-directory":e=pe.DataType.HAMTShard;break;default:throw new Ar(`Type: ${e} is not valid`)}let t=this.data;(this.data==null||this.data.length===0)&&(t=void 0);let r;this.mode!=null&&(r=this._originalMode&4294963200|(this.mode??0),r===_l&&!this.isDirectory()&&(r=void 0),r===Ol&&this.isDirectory()&&(r=void 0));let s;return this.mtime!=null&&(s={Seconds:this.mtime.secs,FractionalNanoseconds:this.mtime.nsecs}),pe.encode({Type:e,Data:t,filesize:this.isDirectory()?void 0:this.fileSize(),blocksizes:this.blockSizes,hashType:this.hashType,fanout:this.fanout,mode:r,mtime:s})}}});var Ce,Vn=w(()=>{"use strict";Ce=class extends Event{constructor(t,r){super(t);p(this,"type");p(this,"detail");this.type=t,this.detail=r}}});var ge,_t=w(()=>{"use strict";tt();et();qi();ge=async(n,e,t)=>{t.codec==null&&(t.codec=vr);let r=await Wi.digest(n),s=K.create(t.cidVersion,t.codec.code,r);return await e.put(s,n,t),s}});function zl(n){return async function*(t,r){let s=0n;for await(let i of t.content)yield async()=>{let o,c={codec:vr,cidVersion:n.cidVersion,onProgress:n.onProgress};n.rawLeaves?(c.codec=Mt,c.cidVersion=1):(o=new J({type:n.leafType,data:i}),i=te({Data:o.marshal(),Links:[]}));let a=await ge(i,r,c);return s+=BigInt(i.byteLength),n.onProgress?.(new Ce("unixfs:importer:progress:file:write",{bytesWritten:s,cid:a,path:t.path})),{cid:a,unixfs:o,size:BigInt(i.length),block:i}}}}var Wl=w(()=>{"use strict";tt();Lt();Cr();Vn();_t()});var Ot,qt,Kt,no,zt,so,Wt,io,$t,Pe,Rr=w(()=>{"use strict";Ot=class Ot extends Error{constructor(t="Invalid parameters"){super(t);p(this,"name",Ot.name);p(this,"code",Ot.code)}};p(Ot,"name","InvalidParametersError"),p(Ot,"code","ERR_INVALID_PARAMS");qt=Ot,Kt=class Kt extends Error{constructor(t="Invalid avg chunk size"){super(t);p(this,"name",Kt.name);p(this,"code",Kt.code)}};p(Kt,"name","InvalidAvgChunkSizeError"),p(Kt,"code","ERR_INVALID_AVG_CHUNK_SIZE");no=Kt,zt=class zt extends Error{constructor(t="Invalid chunk size"){super(t);p(this,"name",zt.name);p(this,"code",zt.code)}};p(zt,"name","InvalidChunkSizeError"),p(zt,"code","ERR_INVALID_CHUNK_SIZE");so=zt,Wt=class Wt extends Error{constructor(t="Invalid min chunk size"){super(t);p(this,"name",Wt.name);p(this,"code",Wt.code)}};p(Wt,"name","InvalidMinChunkSizeError"),p(Wt,"code","ERR_INVALID_MIN_CHUNK_SIZE");io=Wt,$t=class $t extends Error{constructor(t="Invalid content"){super(t);p(this,"name",$t.name);p(this,"code",$t.code)}};p($t,"name","InvalidContentError"),p($t,"code","ERR_INVALID_CONTENT");Pe=$t});var $l,ql=w(()=>{"use strict";tt();Lt();_t();$l=async(n,e,t)=>{let r=new J({type:"directory",mtime:n.mtime,mode:n.mode}),s=te(ee({Data:r.marshal()})),i=await ge(s,e,t),o=n.path;return{cid:i,path:o,unixfs:r,size:BigInt(s.length),originalPath:n.originalPath,block:s}}});async function*Ip(n,e,t){let r=-1,s;for await(let i of pr(t.bufferImporter(n,e),t.blockWriteConcurrency)){if(r++,r===0){s={...i,single:!0};continue}else r===1&&s!=null&&(yield{...s,block:void 0,single:void 0},s=void 0);yield{...i,block:void 0}}s!=null&&(yield s)}function Hl(n){return n.single===!0}var Bp,Vl,Gl=w(()=>{"use strict";tt();Lt();ti();Cr();Vn();_t();Bp=(n,e,t)=>async function(s){if(s.length===1&&Hl(s[0])&&t.reduceSingleLeafToSelf){let l=s[0],h=l.block;return Hl(l)&&(n.mtime!==void 0||n.mode!==void 0)&&(l.unixfs=new J({type:"file",mtime:n.mtime,mode:n.mode,data:l.block}),h={Data:l.unixfs.marshal(),Links:[]},l.block=te(ee(h)),l.cid=await ge(l.block,e,{...t,cidVersion:t.cidVersion}),l.size=BigInt(l.block.length)),t.onProgress?.(new Ce("unixfs:importer:progress:file:layout",{cid:l.cid,path:l.originalPath})),{cid:l.cid,path:n.path,unixfs:l.unixfs,size:l.size,originalPath:l.originalPath}}let i=new J({type:"file",mtime:n.mtime,mode:n.mode}),o=s.filter(l=>l.cid.code===Ft&&l.size>0||l.unixfs!=null&&l.unixfs.data==null&&l.unixfs.fileSize()>0n?!0:!!l.unixfs?.data?.length).map(l=>l.cid.code===Ft?(i.addBlockSize(l.size),{Name:"",Tsize:Number(l.size),Hash:l.cid}):(l.unixfs?.data==null?i.addBlockSize(l.unixfs?.fileSize()??0n):i.addBlockSize(BigInt(l.unixfs.data.length)),{Name:"",Tsize:Number(l.size),Hash:l.cid})),c={Data:i.marshal(),Links:o},a=te(ee(c)),u=await ge(a,e,t);return t.onProgress?.(new Ce("unixfs:importer:progress:file:layout",{cid:u,path:n.originalPath})),{cid:u,path:n.path,unixfs:i,size:BigInt(a.length+c.Links.reduce((l,h)=>l+(h.Tsize??0),0)),originalPath:n.originalPath,block:a}},Vl=async(n,e,t)=>t.layout(Ip(n,e,t),Bp(n,e,t))});function Dp(n){return Symbol.iterator in n}function Rp(n){return Symbol.asyncIterator in n}function Tp(n){try{if(n instanceof Uint8Array)return(async function*(){yield n})();if(Dp(n))return(async function*(){yield*n})();if(Rp(n))return n}catch{throw new Pe("Content was invalid")}throw new Pe("Content was invalid")}function Yl(n){return async function*(t,r){for await(let s of t){let i;if(s.path!=null&&(i=s.path,s.path=s.path.split("/").filter(o=>o!=null&&o!==".").join("/")),Fp(s)){let o={path:s.path,mtime:s.mtime,mode:s.mode,content:(async function*(){let a=0n;for await(let u of n.chunker(n.chunkValidator(Tp(s.content)))){let l=BigInt(u.byteLength);a+=l,n.onProgress?.(new Ce("unixfs:importer:progress:file:read",{bytesRead:a,chunkSize:l,path:s.path})),yield u}})(),originalPath:i},c=n.fileBuilder??Vl;yield async()=>c(o,r,n)}else if(s.path!=null){let o={path:s.path,mtime:s.mtime,mode:s.mode,originalPath:i},c=n.dirBuilder??$l;yield async()=>c(o,r,n)}else throw new Error("Import candidate must have content or path or both")}}}function Fp(n){return n.content!=null}var jl=w(()=>{"use strict";Vn();Rr();ql();Gl()});var Jl,Ql=w(()=>{"use strict";Wn();Rr();Jl=()=>async function*(e){for await(let t of e){if(t.length===void 0)throw new Pe("Content was invalid");if(typeof t=="string"||t instanceof String)yield Nt(t.toString());else if(Array.isArray(t))yield Uint8Array.from(t);else if(t instanceof Uint8Array)yield t;else throw new Pe("Content was invalid")}}});function oo(n){let e=n?.maxChildrenPerNode??Mp;return async function t(r,s){let i=[];for await(let o of Tn(r,e))i.push(await s(o));return i.length>1?t(i,s):i[0]}}var Mp,Xl=w(()=>{"use strict";ei();Mp=174});function Np(n){return n[Symbol.asyncIterator]!=null}function Up(n){if(Np(n))return(async()=>{let t=[];for await(let r of n)t.push(r);return t})();let e=[];for(let t of n)e.push(t);return e}var Zl,eu=w(()=>{"use strict";Zl=Up});var tu=w(()=>{"use strict";Xl()});var xe,Tr,Fr,Gn=w(()=>{"use strict";et();xe=class{constructor(e,t){p(this,"options");p(this,"root");p(this,"dir");p(this,"path");p(this,"dirty");p(this,"flat");p(this,"parent");p(this,"parentKey");p(this,"unixfs");p(this,"mode");p(this,"mtime");p(this,"cid");p(this,"size");p(this,"nodeSize");this.options=t??{},this.root=e.root,this.dir=e.dir,this.path=e.path,this.dirty=e.dirty,this.flat=e.flat,this.parent=e.parent,this.parentKey=e.parentKey,this.unixfs=e.unixfs,this.mode=e.mode,this.mtime=e.mtime}},Tr=K.parse("QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn"),Fr=K.parse("zdj7WbTaiJT1fgatdet9Ei9iDB5hdCxkbVyhyh8YTUnXMiwYi")});var it,ao=w(()=>{"use strict";tt();Lt();Gn();_t();it=class extends xe{constructor(t,r){super(t,r);p(this,"_children");this._children=new Map}async put(t,r){this.cid=void 0,this.size=void 0,this.nodeSize=void 0,this._children.set(t,r)}async get(t){return Promise.resolve(this._children.get(t))}childCount(){return this._children.size}directChildrenCount(){return this.childCount()}onlyChild(){return this._children.values().next().value}*eachChildSeries(){for(let[t,r]of this._children.entries())yield{key:t,child:r}}estimateNodeSize(){if(this.nodeSize!==void 0)return this.nodeSize;this.nodeSize=0;for(let[t,r]of this._children.entries())r.size!=null&&r.cid!=null&&(this.nodeSize+=t.length+(this.options.cidVersion===1?Fr.bytes.byteLength:Tr.bytes.byteLength));return this.nodeSize}async*flush(t){let r=[];for(let[u,l]of this._children.entries()){let h=l;if(l instanceof xe)for await(let g of l.flush(t))h=g,yield g;h.size!=null&&h.cid!=null&&r.push({Name:u,Tsize:Number(h.size),Hash:h.cid})}let s=new J({type:"directory",mtime:this.mtime,mode:this.mode}),i={Data:s.marshal(),Links:r},o=te(ee(i)),c=await ge(o,t,this.options),a=o.length+i.Links.reduce((u,l)=>u+(l.Tsize??0),0);this.cid=c,this.size=a,yield{cid:c,unixfs:s,path:this.path,size:BigInt(a)}}}});var ru=D((Mr,Yn)=>{"use strict";(function(n,e){"use strict";var t={version:"3.0.0",x86:{},x64:{},inputValidation:!0};function r(d){if(!Array.isArray(d)&&!ArrayBuffer.isView(d))return!1;for(var f=0;f<d.length;f++)if(!Number.isInteger(d[f])||d[f]<0||d[f]>255)return!1;return!0}function s(d,f){return(d&65535)*f+(((d>>>16)*f&65535)<<16)}function i(d,f){return d<<f|d>>>32-f}function o(d){return d^=d>>>16,d=s(d,2246822507),d^=d>>>13,d=s(d,3266489909),d^=d>>>16,d}function c(d,f){d=[d[0]>>>16,d[0]&65535,d[1]>>>16,d[1]&65535],f=[f[0]>>>16,f[0]&65535,f[1]>>>16,f[1]&65535];var y=[0,0,0,0];return y[3]+=d[3]+f[3],y[2]+=y[3]>>>16,y[3]&=65535,y[2]+=d[2]+f[2],y[1]+=y[2]>>>16,y[2]&=65535,y[1]+=d[1]+f[1],y[0]+=y[1]>>>16,y[1]&=65535,y[0]+=d[0]+f[0],y[0]&=65535,[y[0]<<16|y[1],y[2]<<16|y[3]]}function a(d,f){d=[d[0]>>>16,d[0]&65535,d[1]>>>16,d[1]&65535],f=[f[0]>>>16,f[0]&65535,f[1]>>>16,f[1]&65535];var y=[0,0,0,0];return y[3]+=d[3]*f[3],y[2]+=y[3]>>>16,y[3]&=65535,y[2]+=d[2]*f[3],y[1]+=y[2]>>>16,y[2]&=65535,y[2]+=d[3]*f[2],y[1]+=y[2]>>>16,y[2]&=65535,y[1]+=d[1]*f[3],y[0]+=y[1]>>>16,y[1]&=65535,y[1]+=d[2]*f[2],y[0]+=y[1]>>>16,y[1]&=65535,y[1]+=d[3]*f[1],y[0]+=y[1]>>>16,y[1]&=65535,y[0]+=d[0]*f[3]+d[1]*f[2]+d[2]*f[1]+d[3]*f[0],y[0]&=65535,[y[0]<<16|y[1],y[2]<<16|y[3]]}function u(d,f){return f%=64,f===32?[d[1],d[0]]:f<32?[d[0]<<f|d[1]>>>32-f,d[1]<<f|d[0]>>>32-f]:(f-=32,[d[1]<<f|d[0]>>>32-f,d[0]<<f|d[1]>>>32-f])}function l(d,f){return f%=64,f===0?d:f<32?[d[0]<<f|d[1]>>>32-f,d[1]<<f]:[d[1]<<f-32,0]}function h(d,f){return[d[0]^f[0],d[1]^f[1]]}function g(d){return d=h(d,[0,d[0]>>>1]),d=a(d,[4283543511,3981806797]),d=h(d,[0,d[0]>>>1]),d=a(d,[3301882366,444984403]),d=h(d,[0,d[0]>>>1]),d}t.x86.hash32=function(d,f){if(t.inputValidation&&!r(d))return e;f=f||0;for(var y=d.length%4,k=d.length-y,m=f,b=0,v=3432918353,A=461845907,E=0;E<k;E=E+4)b=d[E]|d[E+1]<<8|d[E+2]<<16|d[E+3]<<24,b=s(b,v),b=i(b,15),b=s(b,A),m^=b,m=i(m,13),m=s(m,5)+3864292196;switch(b=0,y){case 3:b^=d[E+2]<<16;case 2:b^=d[E+1]<<8;case 1:b^=d[E],b=s(b,v),b=i(b,15),b=s(b,A),m^=b}return m^=d.length,m=o(m),m>>>0},t.x86.hash128=function(d,f){if(t.inputValidation&&!r(d))return e;f=f||0;for(var y=d.length%16,k=d.length-y,m=f,b=f,v=f,A=f,E=0,C=0,x=0,P=0,q=597399067,ue=2869860233,at=951274213,ct=2716044179,I=0;I<k;I=I+16)E=d[I]|d[I+1]<<8|d[I+2]<<16|d[I+3]<<24,C=d[I+4]|d[I+5]<<8|d[I+6]<<16|d[I+7]<<24,x=d[I+8]|d[I+9]<<8|d[I+10]<<16|d[I+11]<<24,P=d[I+12]|d[I+13]<<8|d[I+14]<<16|d[I+15]<<24,E=s(E,q),E=i(E,15),E=s(E,ue),m^=E,m=i(m,19),m+=b,m=s(m,5)+1444728091,C=s(C,ue),C=i(C,16),C=s(C,at),b^=C,b=i(b,17),b+=v,b=s(b,5)+197830471,x=s(x,at),x=i(x,17),x=s(x,ct),v^=x,v=i(v,15),v+=A,v=s(v,5)+2530024501,P=s(P,ct),P=i(P,18),P=s(P,q),A^=P,A=i(A,13),A+=m,A=s(A,5)+850148119;switch(E=0,C=0,x=0,P=0,y){case 15:P^=d[I+14]<<16;case 14:P^=d[I+13]<<8;case 13:P^=d[I+12],P=s(P,ct),P=i(P,18),P=s(P,q),A^=P;case 12:x^=d[I+11]<<24;case 11:x^=d[I+10]<<16;case 10:x^=d[I+9]<<8;case 9:x^=d[I+8],x=s(x,at),x=i(x,17),x=s(x,ct),v^=x;case 8:C^=d[I+7]<<24;case 7:C^=d[I+6]<<16;case 6:C^=d[I+5]<<8;case 5:C^=d[I+4],C=s(C,ue),C=i(C,16),C=s(C,at),b^=C;case 4:E^=d[I+3]<<24;case 3:E^=d[I+2]<<16;case 2:E^=d[I+1]<<8;case 1:E^=d[I],E=s(E,q),E=i(E,15),E=s(E,ue),m^=E}return m^=d.length,b^=d.length,v^=d.length,A^=d.length,m+=b,m+=v,m+=A,b+=m,v+=m,A+=m,m=o(m),b=o(b),v=o(v),A=o(A),m+=b,m+=v,m+=A,b+=m,v+=m,A+=m,("00000000"+(m>>>0).toString(16)).slice(-8)+("00000000"+(b>>>0).toString(16)).slice(-8)+("00000000"+(v>>>0).toString(16)).slice(-8)+("00000000"+(A>>>0).toString(16)).slice(-8)},t.x64.hash128=function(d,f){if(t.inputValidation&&!r(d))return e;f=f||0;for(var y=d.length%16,k=d.length-y,m=[0,f],b=[0,f],v=[0,0],A=[0,0],E=[2277735313,289559509],C=[1291169091,658871167],x=0;x<k;x=x+16)v=[d[x+4]|d[x+5]<<8|d[x+6]<<16|d[x+7]<<24,d[x]|d[x+1]<<8|d[x+2]<<16|d[x+3]<<24],A=[d[x+12]|d[x+13]<<8|d[x+14]<<16|d[x+15]<<24,d[x+8]|d[x+9]<<8|d[x+10]<<16|d[x+11]<<24],v=a(v,E),v=u(v,31),v=a(v,C),m=h(m,v),m=u(m,27),m=c(m,b),m=c(a(m,[0,5]),[0,1390208809]),A=a(A,C),A=u(A,33),A=a(A,E),b=h(b,A),b=u(b,31),b=c(b,m),b=c(a(b,[0,5]),[0,944331445]);switch(v=[0,0],A=[0,0],y){case 15:A=h(A,l([0,d[x+14]],48));case 14:A=h(A,l([0,d[x+13]],40));case 13:A=h(A,l([0,d[x+12]],32));case 12:A=h(A,l([0,d[x+11]],24));case 11:A=h(A,l([0,d[x+10]],16));case 10:A=h(A,l([0,d[x+9]],8));case 9:A=h(A,[0,d[x+8]]),A=a(A,C),A=u(A,33),A=a(A,E),b=h(b,A);case 8:v=h(v,l([0,d[x+7]],56));case 7:v=h(v,l([0,d[x+6]],48));case 6:v=h(v,l([0,d[x+5]],40));case 5:v=h(v,l([0,d[x+4]],32));case 4:v=h(v,l([0,d[x+3]],24));case 3:v=h(v,l([0,d[x+2]],16));case 2:v=h(v,l([0,d[x+1]],8));case 1:v=h(v,[0,d[x]]),v=a(v,E),v=u(v,31),v=a(v,C),m=h(m,v)}return m=h(m,[0,d.length]),b=h(b,[0,d.length]),m=c(m,b),b=c(b,m),m=g(m),b=g(b),m=c(m,b),b=c(b,m),("00000000"+(m[0]>>>0).toString(16)).slice(-8)+("00000000"+(m[1]>>>0).toString(16)).slice(-8)+("00000000"+(b[0]>>>0).toString(16)).slice(-8)+("00000000"+(b[1]>>>0).toString(16)).slice(-8)},typeof Mr<"u"?(typeof Yn<"u"&&Yn.exports&&(Mr=Yn.exports=t),Mr.murmurHash3=t):typeof define=="function"&&define.amd?define([],function(){return t}):(t._murmurHash3=n.murmurHash3,t.noConflict=function(){return n.murmurHash3=t._murmurHash3,t._murmurHash3=e,t.noConflict=e,t},n.murmurHash3=t)})(Mr)});var su=D((n1,nu)=>{"use strict";nu.exports=ru()});function Lp(n){let e=new Array(4);for(let t=0;t<4;t++)e[t]=n&255,n=n>>8;return new Uint8Array(e)}var jn,o1,iu,a1,ou=w(()=>{"use strict";Hi();zn();jn=lt(su(),1);o1=nt({name:"murmur3-32",code:35,encode:n=>Lp(jn.default.x86.hash32(n))}),iu=nt({name:"murmur3-128",code:34,encode:n=>vt.fromHex(jn.default.x64.hash128(n))}),a1=nt({name:"murmur3-x64-64",code:34,encode:n=>vt.fromHex(jn.default.x64.hash128(n)).subarray(0,8)})});var lu=D((u1,cu)=>{"use strict";cu.exports=class{constructor(){this._bitArrays=[],this._data=[],this._length=0,this._changedLength=!1,this._changedData=!1}set(e,t){let r=this._internalPositionFor(e,!1);if(t===void 0)r!==-1&&(this._unsetInternalPos(r),this._unsetBit(e),this._changedLength=!0,this._changedData=!0);else{let s=!1;r===-1?(r=this._data.length,this._setBit(e),this._changedData=!0):s=!0,this._setInternalPos(r,e,t,s),this._changedLength=!0}}unset(e){this.set(e,void 0)}get(e){this._sortData();let t=this._internalPositionFor(e,!0);if(t!==-1)return this._data[t][1]}push(e){return this.set(this.length,e),this.length}get length(){if(this._sortData(),this._changedLength){let e=this._data[this._data.length-1];this._length=e?e[0]+1:0,this._changedLength=!1}return this._length}forEach(e){let t=0;for(;t<this.length;)e(this.get(t),t,this),t++}map(e){let t=0,r=new Array(this.length);for(;t<this.length;)r[t]=e(this.get(t),t,this),t++;return r}reduce(e,t){let r=0,s=t;for(;r<this.length;){let i=this.get(r);s=e(s,i,r),r++}return s}find(e){let t=0,r,s;for(;t<this.length&&!r;)s=this.get(t),r=e(s),t++;return r?s:void 0}_internalPositionFor(e,t){let r=this._bytePosFor(e,t);if(r>=this._bitArrays.length)return-1;let s=this._bitArrays[r],i=e-r*7;if(!((s&1<<i)>0))return-1;let c=this._bitArrays.slice(0,r).reduce(_p,0),a=~(4294967295<<i+1),u=au(s&a);return c+u-1}_bytePosFor(e,t){let r=Math.floor(e/7),s=r+1;for(;!t&&this._bitArrays.length<s;)this._bitArrays.push(0);return r}_setBit(e){let t=this._bytePosFor(e,!1);this._bitArrays[t]|=1<<e-t*7}_unsetBit(e){let t=this._bytePosFor(e,!1);this._bitArrays[t]&=~(1<<e-t*7)}_setInternalPos(e,t,r,s){let i=this._data,o=[t,r];if(s)this._sortData(),i[e]=o;else{if(i.length)if(i[i.length-1][0]>=t)i.push(o);else if(i[0][0]<=t)i.unshift(o);else{let c=Math.round(i.length/2);this._data=i.slice(0,c).concat(o).concat(i.slice(c))}else this._data.push(o);this._changedData=!0,this._changedLength=!0}}_unsetInternalPos(e){this._data.splice(e,1)}_sortData(){this._changedData&&this._data.sort(Op),this._changedData=!1}bitField(){let e=[],t=8,r=0,s=0,i,o=this._bitArrays.slice();for(;o.length||r;){r===0&&(i=o.shift(),r=7);let a=Math.min(r,t),u=~(255<<a),l=i&u;s|=l<<8-t,i=i>>>a,r-=a,t-=a,(!t||!r&&!o.length)&&(e.push(s),s=0,t=8)}for(var c=e.length-1;c>0&&e[c]===0;c--)e.pop();return e}compactArray(){return this._sortData(),this._data.map(Kp)}};function _p(n,e){return n+au(e)}function au(n){let e=n;return e=e-(e>>1&1431655765),e=(e&858993459)+(e>>2&858993459),(e+(e>>4)&252645135)*16843009>>24}function Op(n,e){return n[0]-e[0]}function Kp(n){return n[1]}});function zp(n){return!!n}function Wp(n,e){return n.key}function $p(n){return n}async function du(n,e,t){let r=[];for(let s of n._children.compactArray())if(s instanceof Ke)await du(s,e,t);else{let i=await e(s);r.push({bitField:n._children.bitField(),children:i})}return t(r)}var uu,Ke,hu=w(()=>{"use strict";uu=lt(lu(),1);Wn();Ke=class n{constructor(e,t,r=0){p(this,"_options");p(this,"_popCount");p(this,"_parent");p(this,"_posAtParent");p(this,"_children");p(this,"key");this._options=e,this._popCount=0,this._parent=t,this._posAtParent=r,this._children=new uu.default,this.key=null}async put(e,t){let r=await this._findNewBucketAndPos(e);r.bucket._putAt(r,e,t)}async get(e){let t=await this._findChild(e);if(t!=null)return t.value}async del(e){let t=await this._findPlace(e),r=t.bucket._at(t.pos);r!=null&&r.key===e&&t.bucket._delAt(t.pos)}leafCount(){return this._children.compactArray().reduce((t,r)=>r instanceof n?t+r.leafCount():t+1,0)}childrenCount(){return this._children.length}onlyChild(){return this._children.get(0)}*eachLeafSeries(){let e=this._children.compactArray();for(let t of e)t instanceof n?yield*t.eachLeafSeries():yield t}serialize(e,t){let r=[];return t(this._children.reduce((s,i,o)=>(i!=null&&(i instanceof n?s.push(i.serialize(e,t)):s.push(e(i,o))),s),r))}async asyncTransform(e,t){return du(this,e,t)}toJSON(){return this.serialize(Wp,$p)}prettyPrint(){return JSON.stringify(this.toJSON(),null," ")}tableSize(){return Math.pow(2,this._options.bits)}async _findChild(e){let t=await this._findPlace(e),r=t.bucket._at(t.pos);if(!(r instanceof n)&&r!=null&&r.key===e)return r}async _findPlace(e){let t=this._options.hash(typeof e=="string"?Nt(e):e),r=await t.take(this._options.bits),s=this._children.get(r);return s instanceof n?s._findPlace(t):{bucket:this,pos:r,hash:t,existingChild:s}}async _findNewBucketAndPos(e){let t=await this._findPlace(e);if(t.existingChild!=null&&t.existingChild.key!==e){let r=new n(this._options,t.bucket,t.pos);t.bucket._putObjectAt(t.pos,r);let s=await r._findPlace(t.existingChild.hash);return s.bucket._putAt(s,t.existingChild.key,t.existingChild.value),r._findNewBucketAndPos(t.hash)}return t}_putAt(e,t,r){this._putObjectAt(e.pos,{key:t,value:r,hash:e.hash})}_putObjectAt(e,t){this._children.get(e)==null&&this._popCount++,this._children.set(e,t)}_delAt(e){if(e===-1)throw new Error("Invalid position");this._children.get(e)!=null&&this._popCount--,this._children.unset(e),this._level()}_level(){if(this._parent!=null&&this._popCount<=1)if(this._popCount===1){let e=this._children.find(zp);if(e!=null&&!(e instanceof n)){let t=e.hash;t.untake(this._options.bits);let r={pos:this._posAtParent,hash:t,bucket:this._parent};this._parent._putAt(r,e.key,e.value)}}else this._parent._delAt(this._posAtParent)}_at(e){return this._children.get(e)}}});function Vp(n,e,t){let r=Gp(e,t);return(n&r)>>>e}function Gp(n,e){return qp[n]&Hp[Math.min(e+n-1,7)]}var qp,Hp,Jn,fu=w(()=>{"use strict";qp=[255,254,252,248,240,224,192,128],Hp=[1,3,7,15,31,63,127,255],Jn=class{constructor(e){p(this,"_value");p(this,"_currentBytePos");p(this,"_currentBitPos");this._value=e,this._currentBytePos=e.length-1,this._currentBitPos=7}availableBits(){return this._currentBitPos+1+this._currentBytePos*8}totalBits(){return this._value.length*8}take(e){let t=e,r=0;for(;t>0&&this._haveBits();){let s=this._value[this._currentBytePos],i=this._currentBitPos+1,o=Math.min(i,t),c=Vp(s,i-o,o);r=(r<<o)+c,t-=o,this._currentBitPos-=o,this._currentBitPos<0&&(this._currentBitPos=7,this._currentBytePos--)}return r}untake(e){for(this._currentBitPos+=e;this._currentBitPos>7;)this._currentBitPos-=8,this._currentBytePos+=1}_haveBits(){return this._currentBytePos>=0}}});function pu(n){function e(t){return t instanceof Qn?t:new Qn(t,n)}return e}var Qn,gu=w(()=>{"use strict";ri();fu();Qn=class{constructor(e,t){p(this,"_value");p(this,"_hashFn");p(this,"_depth");p(this,"_availableBits");p(this,"_currentBufferIndex");p(this,"_buffers");if(!(e instanceof Uint8Array))throw new Error("can only hash Uint8Arrays");this._value=e,this._hashFn=t,this._depth=-1,this._availableBits=0,this._currentBufferIndex=0,this._buffers=[]}async take(e){let t=e;for(;this._availableBits<t;)await this._produceMoreBits();let r=0;for(;t>0;){let s=this._buffers[this._currentBufferIndex],i=Math.min(s.availableBits(),t),o=s.take(i);r=(r<<i)+o,t-=i,this._availableBits-=i,s.availableBits()===0&&this._currentBufferIndex++}return r}untake(e){let t=e;for(;t>0;){let r=this._buffers[this._currentBufferIndex],s=Math.min(r.totalBits()-r.availableBits(),t);r.untake(s),t-=s,this._availableBits+=s,this._currentBufferIndex>0&&r.totalBits()===r.availableBits()&&(this._depth--,this._currentBufferIndex--)}}async _produceMoreBits(){this._depth++;let e=this._depth>0?gr([this._value,Uint8Array.from([this._depth])]):this._value,t=await this._hashFn(e),r=new Jn(t);this._buffers.push(r),this._availableBits+=r.availableBits()}}});function mu(n){if(n==null||n.hashFn==null)throw new Error("please define an options.hashFn");let e={bits:n.bits??8,hash:pu(n.hashFn)};return new Ke(e)}var yu=w(()=>{"use strict";hu();gu()});async function Yp(n){return(await iu.encode(n)).slice(0,8).reverse()}async function*Su(n,e,t,r){let s=n._children,i=(n.tableSize()-1).toString(16).length,o=[],c=0n;for(let f=0;f<s.length;f++){let y=s.get(f);if(y==null)continue;let k=f.toString(16).toUpperCase().padStart(i,"0");if(y instanceof Ke){let m;for await(let b of Su(y,e,null,r))m=b;if(m==null)throw new Error("Could not flush sharded directory, no subshard found");o.push({Name:k,Tsize:Number(m.size),Hash:m.cid}),c+=m.size}else if(Jp(y.value)){let m=y.value,b;for await(let A of m.flush(e))b=A,yield b;if(b==null)throw new Error("Did not flush dir");let v=k+y.key;o.push({Name:v,Tsize:Number(b.size),Hash:b.cid}),c+=b.size}else{let m=y.value;if(m.cid==null)continue;let b=k+y.key,v=m.size;o.push({Name:b,Tsize:Number(v),Hash:m.cid}),c+=BigInt(v??0)}}let a=Uint8Array.from(s.bitField().reverse()),u=new J({type:"hamt-sharded-directory",data:a,fanout:BigInt(n.tableSize()),hashType:wu,mtime:t?.mtime,mode:t?.mode}),l={Data:u.marshal(),Links:o},h=te(ee(l)),g=await ge(h,e,r),d=BigInt(h.byteLength)+c;yield{cid:g,unixfs:u,size:d}}function Jp(n){return typeof n.flush=="function"}function xu(n,e,t){let r=n._children,s=(n.tableSize()-1).toString(16).length,i=[];for(let u=0;u<r.length;u++){let l=r.get(u);if(l==null)continue;let h=u.toString(16).toUpperCase().padStart(s,"0");if(l instanceof Ke){let g=xu(l,null,t);i.push({Name:h,Tsize:Number(g),Hash:t.cidVersion===0?Tr:Fr})}else if(typeof l.value.flush=="function"){let d=l.value.nodeSize();i.push({Name:h+l.key,Tsize:Number(d),Hash:t.cidVersion===0?Tr:Fr})}else{let g=l.value;if(g.cid==null)continue;let d=h+l.key,f=g.size;i.push({Name:d,Tsize:Number(f),Hash:g.cid})}}let o=Uint8Array.from(r.bitField().reverse()),c=new J({type:"hamt-sharded-directory",data:o,fanout:BigInt(n.tableSize()),hashType:wu,mtime:e?.mtime,mode:e?.mode});return te(ee({Data:c.marshal(),Links:i})).length}var wu,jp,co,bu,vu=w(()=>{"use strict";tt();ou();yu();Lt();Gn();_t();wu=BigInt(34),jp=8,co=class extends xe{constructor(t,r){super(t,r);p(this,"_bucket");this._bucket=mu({hashFn:Yp,bits:r.shardFanoutBits??jp})}async put(t,r){this.cid=void 0,this.size=void 0,this.nodeSize=void 0,await this._bucket.put(t,r)}async get(t){return this._bucket.get(t)}childCount(){return this._bucket.leafCount()}directChildrenCount(){return this._bucket.childrenCount()}onlyChild(){return this._bucket.onlyChild()}*eachChildSeries(){for(let{key:t,value:r}of this._bucket.eachLeafSeries())yield{key:t,child:r}}estimateNodeSize(){return this.nodeSize!==void 0?this.nodeSize:(this.nodeSize=xu(this._bucket,this,this.options),this.nodeSize)}async*flush(t){for await(let r of Su(this._bucket,t,this,this.options))yield{...r,path:this.path}}},bu=co});async function lo(n,e,t,r){let s=e;e instanceof it&&e.estimateNodeSize()>t&&(s=await Qp(e,r));let i=s.parent;if(i!=null){if(s!==e){if(n!=null&&(n.parent=s),s.parentKey==null)throw new Error("No parent key found");await i.put(s.parentKey,s)}return lo(s,i,t,r)}return s}async function Qp(n,e){let t=new bu({root:n.root,dir:!0,parent:n.parent,parentKey:n.parentKey,path:n.path,dirty:n.dirty,flat:!1,mtime:n.mtime,mode:n.mode},e);for(let{key:r,child:s}of n.eachChildSeries())await t.put(r,s);return t}var Au=w(()=>{"use strict";ao();vu()});var ku,Eu=w(()=>{"use strict";ku=(n="")=>n.split(/(?<!\\)\//).filter(Boolean)});async function Xp(n,e,t){let r=ku(n.path??""),s=r.length-1,i=e,o="";for(let c=0;c<r.length;c++){let a=r[c];o+=`${o!==""?"/":""}${a}`;let u=c===s;if(i.dirty=!0,i.cid=void 0,i.size=void 0,u)await i.put(a,n),e=await lo(null,i,t.shardSplitThresholdBytes,t);else{let l=await i.get(a);(l==null||!(l instanceof xe))&&(l=new it({root:!1,dir:!0,parent:i,parentKey:a,path:o,dirty:!0,flat:!0,mtime:l?.unixfs?.mtime,mode:l?.unixfs?.mode},t)),await i.put(a,l),i=l}}return e}async function*Cu(n,e){if(!(n instanceof xe)){n.unixfs?.isDirectory()===!0&&(yield n);return}yield*n.flush(e)}function Pu(n){return async function*(t,r){let s=new it({root:!0,dir:!0,path:"",dirty:!0,flat:!0},n),i,o=!1;for await(let c of t){if(c==null)continue;let a=`${c.originalPath??""}`.split("/")[0];a!=null&&a!==""&&(i==null?(i=a,o=!0):i!==a&&(o=!1)),s=await Xp(c,s,n),c.unixfs?.isDirectory()!==!0&&(yield c)}if(n.wrapWithDirectory||o&&s.childCount()>1)yield*Cu(s,r);else for(let c of s.eachChildSeries())c!=null&&(yield*Cu(c.child,r))}}var Iu=w(()=>{"use strict";ao();Gn();Au();Eu()});var Bu={};B(Bu,{InvalidAvgChunkSizeError:()=>no,InvalidChunkSizeError:()=>so,InvalidContentError:()=>Pe,InvalidMinChunkSizeError:()=>io,InvalidParametersError:()=>qt,importByteStream:()=>tg,importBytes:()=>eg,importDirectory:()=>Zp,importFile:()=>ho,importer:()=>uo});async function*uo(n,e,t={}){let r;Symbol.asyncIterator in n||Symbol.iterator in n?r=n:r=[n];let s=t.wrapWithDirectory??!1,i=t.shardSplitThresholdBytes??262144,o=t.shardFanoutBits??8,c=t.cidVersion??1,a=t.rawLeaves??!0,u=t.leafType??"file",l=t.fileImportConcurrency??50,h=t.blockWriteConcurrency??10,g=t.reduceSingleLeafToSelf??!0,d=t.chunker??mc(),f=t.chunkValidator??Jl(),y=t.dagBuilder??Yl({chunker:d,chunkValidator:f,wrapWithDirectory:s,layout:t.layout??oo(),bufferImporter:t.bufferImporter??zl({cidVersion:c,rawLeaves:a,leafType:u,onProgress:t.onProgress}),blockWriteConcurrency:h,reduceSingleLeafToSelf:g,cidVersion:c,onProgress:t.onProgress,dirBuilder:t.dirBuilder,fileBuilder:t.fileBuilder}),k=t.treeBuilder??Pu({wrapWithDirectory:s,shardSplitThresholdBytes:i,shardFanoutBits:o,cidVersion:c,onProgress:t.onProgress});for await(let m of k(pr(y(r,e),l),e))yield{cid:m.cid,path:m.path,unixfs:m.unixfs,size:m.size}}async function ho(n,e,t={}){let r=await Zs(uo([n],e,t));if(r==null)throw new qt("Nothing imported");return r}async function Zp(n,e,t={}){let r=await Zs(uo([n],e,t));if(r==null)throw new qt("Nothing imported");return r}async function eg(n,e,t={}){return ho({content:n},e,t)}async function tg(n,e,t={}){return ho({content:n},e,t)}var Du=w(()=>{"use strict";cc();ti();yc();Wl();jl();Ql();Rr();tu();Iu();Rr()});var ve,Nr=w(()=>{"use strict";ve=class{has(e,t){return Promise.reject(new Error(".has is not implemented"))}put(e,t,r){return Promise.reject(new Error(".put is not implemented"))}async*putMany(e,t){for await(let{cid:r,bytes:s}of e)await this.put(r,s,t),yield r}get(e,t){throw new Error(".get is not implemented")}async*getMany(e,t){for await(let r of e)yield{cid:r,bytes:this.get(r,t)}}delete(e,t){return Promise.reject(new Error(".delete is not implemented"))}async*deleteMany(e,t){for await(let r of e)await this.delete(r,t),yield r}async*getAll(e){throw new Error(".getAll is not implemented")}}});var Ht,ze,Ru=w(()=>{"use strict";Ht=class Ht extends Error{constructor(t="Not Found"){super(t);p(this,"name",Ht.name);p(this,"code",Ht.code)}};p(Ht,"name","NotFoundError"),p(Ht,"code","ERR_NOT_FOUND");ze=Ht});var Xn=w(()=>{"use strict";Ru()});function rg(n){return typeof n?.then=="function"}var Zn,Tu=w(()=>{"use strict";Xn();eu();mr();et();Cr();Bt();Nr();Zn=class extends ve{constructor(){super();p(this,"data");this.data=new Map}put(t,r,s){s?.signal?.throwIfAborted();let i;if(r instanceof Uint8Array)i=[r];else{let o=Zl(r);if(rg(o))return o.then(c=>this._put(t,c,s));i=o}return this._put(t,i,s)}_put(t,r,s){return s?.signal?.throwIfAborted(),this.data.set(j.encode(t.multihash.bytes),r),t}*get(t,r){r?.signal?.throwIfAborted();let s=this.data.get(j.encode(t.multihash.bytes));if(s==null)throw new ze;yield*s}has(t,r){return r?.signal?.throwIfAborted(),this.data.has(j.encode(t.multihash.bytes))}async delete(t,r){r?.signal?.throwIfAborted(),this.data.delete(j.encode(t.multihash.bytes))}*getAll(t){t?.signal?.throwIfAborted();for(let[r,s]of this.data.entries())yield{cid:K.createV1(Ft,Ln(j.decode(r))),bytes:(async function*(){yield*s})()},t?.signal?.throwIfAborted()}}});var es,Fu=w(()=>{"use strict";Xn();Nr();es=class extends ve{put(e,t,r){return r?.signal?.throwIfAborted(),e}get(e,t){throw t?.signal?.throwIfAborted(),new ze}has(e,t){return t?.signal?.throwIfAborted(),!1}async delete(e,t){t?.signal?.throwIfAborted()}async*getAll(e){e?.signal?.throwIfAborted()}}});function ng(n,e){if(typeof n=="string")return sg(n);if(typeof n=="number")return ag(n,e);throw Error(`Value provided to ms() must be a string or number. value=${JSON.stringify(n)}`)}function sg(n){if(typeof n!="string"||n.length===0||n.length>100)throw Error(`Value provided to ms.parse() must be a string with length between 1 and 99. value=${JSON.stringify(n)}`);let e=/^(?<value>-?\d*\.?\d+) *(?<unit>milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|months?|mo|years?|yrs?|y)?$/i.exec(n);if(!e?.groups)return NaN;let{value:t,unit:r="ms"}=e.groups,s=parseFloat(t),i=r.toLowerCase();switch(i){case"years":case"year":case"yrs":case"yr":case"y":return s*315576e5;case"months":case"month":case"mo":return s*26298e5;case"weeks":case"week":case"w":return s*6048e5;case"days":case"day":case"d":return s*864e5;case"hours":case"hour":case"hrs":case"hr":case"h":return s*36e5;case"minutes":case"minute":case"mins":case"min":case"m":return s*6e4;case"seconds":case"second":case"secs":case"sec":case"s":return s*1e3;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:throw Error(`Unknown unit "${i}" provided to ms.parse(). value=${JSON.stringify(n)}`)}}function ig(n){let e=Math.abs(n);return e>=315576e5?`${Math.round(n/315576e5)}y`:e>=26298e5?`${Math.round(n/26298e5)}mo`:e>=6048e5?`${Math.round(n/6048e5)}w`:e>=864e5?`${Math.round(n/864e5)}d`:e>=36e5?`${Math.round(n/36e5)}h`:e>=6e4?`${Math.round(n/6e4)}m`:e>=1e3?`${Math.round(n/1e3)}s`:`${n}ms`}function og(n){let e=Math.abs(n);return e>=315576e5?ot(n,e,315576e5,"year"):e>=26298e5?ot(n,e,26298e5,"month"):e>=6048e5?ot(n,e,6048e5,"week"):e>=864e5?ot(n,e,864e5,"day"):e>=36e5?ot(n,e,36e5,"hour"):e>=6e4?ot(n,e,6e4,"minute"):e>=1e3?ot(n,e,1e3,"second"):`${n} ms`}function ag(n,e){if(typeof n!="number"||!Number.isFinite(n))throw Error("Value provided to ms.format() must be of type number.");return e?.long?og(n):ig(n)}function ot(n,e,t,r){let s=e>=t*1.5;return`${Math.round(n/t)} ${r}${s?"s":""}`}var ts,fo=w(()=>{"use strict";ts=ng});function po(n){t.debug=t,t.default=t,t.coerce=a,t.disable=i,t.enable=s,t.enabled=o,t.humanize=ts,t.destroy=u,Object.keys(n).forEach(l=>{t[l]=n[l]}),t.names=[],t.skips=[],t.formatters={};function e(l){let h=0;for(let g=0;g<l.length;g++)h=(h<<5)-h+l.charCodeAt(g),h|=0;return t.colors[Math.abs(h)%t.colors.length]}t.selectColor=e;function t(l,h){let g,d=null,f,y;function k(...m){if(!k.enabled)return;let b=k,v=Number(new Date),A=v-(g||v);b.diff=A,b.prev=g,b.curr=v,g=v,m[0]=t.coerce(m[0]),typeof m[0]!="string"&&m.unshift("%O");let E=0;m[0]=m[0].replace(/%([a-zA-Z%])/g,(x,P)=>{if(x==="%%")return"%";E++;let q=t.formatters[P];if(typeof q=="function"){let ue=m[E];x=q.call(b,ue),m.splice(E,1),E--}return x}),t.formatArgs.call(b,m),h?.onLog!=null&&h.onLog(...m),(b.log||t.log).apply(b,m)}return k.namespace=l,k.useColors=t.useColors(),k.color=t.selectColor(l),k.extend=r,k.destroy=t.destroy,Object.defineProperty(k,"enabled",{enumerable:!0,configurable:!1,get:()=>d!==null?d:(f!==t.namespaces&&(f=t.namespaces,y=t.enabled(l)),y),set:m=>{d=m}}),typeof t.init=="function"&&t.init(k),k}function r(l,h){let g=t(this.namespace+(typeof h>"u"?":":h)+l);return g.log=this.log,g}function s(l){t.save(l),t.namespaces=l,t.names=[],t.skips=[];let h,g=(typeof l=="string"?l:"").split(/[\s,]+/),d=g.length;for(h=0;h<d;h++)g[h]&&(l=g[h].replace(/\*/g,".*?"),l[0]==="-"?t.skips.push(new RegExp("^"+l.substr(1)+"$")):t.names.push(new RegExp("^"+l+"$")))}function i(){let l=[...t.names.map(c),...t.skips.map(c).map(h=>"-"+h)].join(",");return t.enable(""),l}function o(l){if(l[l.length-1]==="*")return!0;let h,g;for(h=0,g=t.skips.length;h<g;h++)if(t.skips[h].test(l))return!1;for(h=0,g=t.names.length;h<g;h++)if(t.names[h].test(l))return!0;return!1}function c(l){return l.toString().substring(2,l.toString().length-2).replace(/\.\*\?$/,"*")}function a(l){return l instanceof Error?l.stack??l.message:l}function u(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return t.setupFormatters(t.formatters),t.enable(t.load()),t}var Mu=w(()=>{"use strict";fo()});function lg(){return typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs)?!0:typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/(edge|trident)\/(\d+)/)!=null?!1:typeof document<"u"&&document.documentElement?.style?.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/firefox\/(\d+)/)!=null&&parseInt(RegExp.$1,10)>=31||typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/applewebkit\/(\d+)/)}function ug(n){if(n[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+n[0]+(this.useColors?"%c ":" ")+"+"+ts(this.diff),!this.useColors)return;let e="color: "+this.color;n.splice(1,0,e,"color: inherit");let t=0,r=0;n[0].replace(/%[a-zA-Z%]/g,s=>{s!=="%%"&&(t++,s==="%c"&&(r=t))}),n.splice(r,0,e)}function hg(n){try{n?rs?.setItem("debug",n):rs?.removeItem("debug")}catch{}}function fg(){let n;try{n=rs?.getItem("debug")}catch{}return!n&&typeof globalThis.process<"u"&&"env"in globalThis.process&&(n=globalThis.process.env.DEBUG),n}function pg(){try{return localStorage}catch{}}function gg(n){n.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}}var rs,cg,dg,Nu,Uu=w(()=>{"use strict";fo();Mu();rs=pg(),cg=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];dg=console.debug??console.log??(()=>{});Nu=po({formatArgs:ug,save:hg,load:fg,useColors:lg,setupFormatters:gg,colors:cg,storage:rs,log:dg})});var Q,Lu=w(()=>{"use strict";Uu();Q=Nu});function _u(n,e=""){let t=Ou(n.message),r=Ou(n.stack);return t!=null&&r!=null?r.includes(t)?`${r.split(`
950
+ `}}});var Wn={};E(Wn,{RecoverySimulator:()=>br,educationalModules:()=>zn,getAllTopics:()=>vc,getExplainer:()=>xc,searchExplainers:()=>Ec});var Sr=p(()=>{"use strict";Ac();kc()});var qn={};E(qn,{deriveMLKemKeypair:()=>$n,mlkemDecrypt:()=>mi,mlkemDecryptWithKey:()=>Pc,mlkemEncrypt:()=>pi,mlkemEncryptWithKey:()=>Cc});import{createMlKem1024 as fi}from"mlkem";import{hkdf as Bf}from"@noble/hashes/hkdf.js";import{sha256 as Df}from"@noble/hashes/sha2.js";function De(r){r.fill(0)}function It(r){if(typeof btoa<"u"){let e=Array.from(r).map(t=>String.fromCharCode(t)).join("");return btoa(e)}return Buffer.from(r).toString("base64")}function ze(r){if(typeof atob<"u"){let e=atob(r),t=new Uint8Array(e.length);for(let n=0;n<e.length;n++)t[n]=e.charCodeAt(n);return t}return new Uint8Array(Buffer.from(r,"base64"))}async function $n(r,e="mlkem-v1"){let t=await fi(),n;if(typeof r=="string"){let i=r.startsWith("0x")?r.slice(2):r;if(typeof Buffer<"u")n=new Uint8Array(Buffer.from(i,"hex"));else{let o=new Uint8Array(i.length/2);for(let a=0;a<i.length;a+=2)o[a/2]=parseInt(i.substring(a,a+2),16);n=o}}else n=r;let s=Bf(Df,n,new Uint8Array(Buffer.from("mlkem-keypair-v1","utf-8")),new Uint8Array(Buffer.from(e,"utf-8")),64);try{let[i,o]=t.deriveKeyPair(s);return{publicKey:i,privateKey:o}}finally{De(s),De(n)}}async function pi(r,e){let t=await fi(),n=Array.isArray(e)?e:[e];if(n.length===0)throw new Error("At least one public key is required");let s=new Uint8Array(32);crypto.getRandomValues(s);try{let i=new Uint8Array(12);crypto.getRandomValues(i);let a=new TextEncoder().encode(r),c=await crypto.subtle.importKey("raw",s,{name:"AES-GCM"},!1,["encrypt"]),l=await crypto.subtle.encrypt({name:"AES-GCM",iv:i,tagLength:128},c,a),u=new Uint8Array(l),d=16;if(u.length<d)throw new Error("Encrypted data too short to contain auth tag");let h=u.slice(0,-d),m=u.slice(-d),g=[];for(let y of n){let S=typeof y=="string"?ze(y):y;if(S.length!==1568)throw new Error(`Invalid ML-KEM public key size: ${S.length} (expected 1568)`);let[b,A]=t.encap(S);try{let v=A.slice(0,32),k=new Uint8Array(32);for(let x=0;x<32;x++)k[x]=s[x]^v[x];let C=new Uint8Array(b.length+k.length);C.set(b,0),C.set(k,b.length),g.push({publicKey:It(S),ciphertext:It(C)})}finally{De(A)}}return{recipients:g,encryptedData:It(h),iv:It(i),authTag:It(m)}}finally{De(s)}}async function mi(r,e,t){let n=await fi(),s=typeof e=="string"?ze(e):e;if(s.length!==3168)throw new Error(`Invalid ML-KEM private key size: ${s.length} (expected 3168)`);let i=ze(r.encryptedData),o=ze(r.iv),a=ze(r.authTag),c=null;if(t){let y=typeof t=="string"?ze(t):t,S=It(y);if(c=r.recipients.find(b=>b.publicKey===S),!c)throw new Error("Public key not found in recipients list")}else{for(let y of r.recipients)try{let S=ze(y.ciphertext),b=n.decap(S,s);c=y,De(b);break}catch{continue}if(!c)throw new Error("No matching recipient found for this private key")}let l=ze(c.ciphertext),u=1568,d=l.slice(0,u),h=l.slice(u),m=n.decap(d,s),g=null;try{let y=m.slice(0,32);g=new Uint8Array(32);for(let x=0;x<32;x++)g[x]=h[x]^y[x];let S=await crypto.subtle.importKey("raw",g,{name:"AES-GCM"},!1,["decrypt"]),b=i.length+a.length,A=new ArrayBuffer(b),v=new Uint8Array(A);v.set(i,0),v.set(a,i.length);let k=await crypto.subtle.decrypt({name:"AES-GCM",iv:o.buffer,tagLength:128},S,A);return new TextDecoder().decode(k)}finally{De(m),g&&De(g)}}async function Cc(r,e,t,n="mlkem-v1"){let s=await $n(e,n);try{let i=[s.publicKey,...t];return await pi(r,i)}finally{De(s.privateKey)}}async function Pc(r,e,t="mlkem-v1"){let n=await $n(e,t);try{return await mi(r,n.privateKey,n.publicKey)}finally{De(n.privateKey)}}var Ar=p(()=>{"use strict"});function Tf(r){return r[Symbol.asyncIterator]!=null}function Rf(r){if(Tf(r))return(async()=>{for await(let e of r)return e})();for(let e of r)return e}var gi,Dc=p(()=>{"use strict";gi=Rf});function Ff(r){return r[Symbol.asyncIterator]!=null}function Mf(r,e=1){return e=Number(e),Ff(r)?(async function*(){let t=[];if(e<1&&(e=1),e!==Math.round(e))throw new Error("Batch size must be an integer");for await(let n of r)for(t.push(n);t.length>=e;)yield t.slice(0,e),t=t.slice(e);for(;t.length>0;)yield t.slice(0,e),t=t.slice(e)})():(function*(){let t=[];if(e<1&&(e=1),e!==Math.round(e))throw new Error("Batch size must be an integer");for(let n of r)for(t.push(n);t.length>=e;)yield t.slice(0,e),t=t.slice(e);for(;t.length>0;)yield t.slice(0,e),t=t.slice(e)})()}var Hn,yi=p(()=>{"use strict";Hn=Mf});async function*vr(r,e=1){for await(let t of Hn(r,e)){let n=t.map(async s=>s().then(i=>({ok:!0,value:i}),i=>({ok:!1,err:i})));for(let s=0;s<n.length;s++){let i=await n[s];if(i.ok)yield i.value;else throw i.err}}}var wi=p(()=>{"use strict";yi()});function Te(r=0){return new Uint8Array(r)}function re(r=0){return new Uint8Array(r)}var ot=p(()=>{"use strict"});function Uf(r){return r?.buffer instanceof ArrayBuffer}function Tc(r){if(Uf(r))return r;let e=r.slice();return new Uint8Array(e.buffer,0,e.byteLength)}var Rc=p(()=>{"use strict"});function Er(r,e){e==null&&(e=r.reduce((s,i)=>s+i.length,0));let t=re(e),n=0;for(let s of r)t.set(s,n),n+=s.length;return Tc(t)}var bi=p(()=>{"use strict";ot();Rc()});function Fc(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}var Mc=p(()=>{"use strict"});function Uc(r,e){if(e==null||e<0)throw new RangeError("index is out of bounds");let t=0;for(let n of r){let s=t+n.byteLength;if(e<s)return{buf:n,index:e-t};t=s}throw new RangeError("index is out of bounds")}function Vn(r){return!!r?.[Lc]}var Lc,Nc,Bt,_c=p(()=>{"use strict";ot();bi();Mc();Lc=Symbol.for("@achingbrain/uint8arraylist");Bt=class r{constructor(...e){f(this,"bufs");f(this,"length");f(this,Nc,!0);this.bufs=[],this.length=0,e.length>0&&this.appendAll(e)}*[(Nc=Lc,Symbol.iterator)](){yield*this.bufs}get byteLength(){return this.length}append(...e){this.appendAll(e)}appendAll(e){let t=0;for(let n of e)if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.push(n);else if(Vn(n)){t+=n.byteLength;for(let s of n.bufs)this.bufs.push(s)}else throw new Error("Could not append value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}prepend(...e){this.prependAll(e)}prependAll(e){let t=0;for(let n of e.reverse())if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.unshift(n);else if(Vn(n))t+=n.byteLength,this.bufs.unshift(...n.bufs);else throw new Error("Could not prepend value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}get(e){let t=Uc(this.bufs,e);return t.buf[t.index]}set(e,t){let n=Uc(this.bufs,e);n.buf[n.index]=t}write(e,t=0){if(e instanceof Uint8Array)for(let n=0;n<e.length;n++)this.set(t+n,e[n]);else if(Vn(e))for(let n=0;n<e.length;n++)this.set(t+n,e.get(n));else throw new Error("Could not write value, must be an Uint8Array or a Uint8ArrayList")}consume(e){if(e=Math.trunc(e),!(Number.isNaN(e)||e<=0)){if(e===this.byteLength){this.bufs=[],this.length=0;return}for(;this.bufs.length>0;)if(e>=this.bufs[0].byteLength)e-=this.bufs[0].byteLength,this.length-=this.bufs[0].byteLength,this.bufs.shift();else{this.bufs[0]=this.bufs[0].subarray(e),this.length-=e;break}}}slice(e,t){let{bufs:n,length:s}=this._subList(e,t);return Er(n,s)}subarray(e,t){let{bufs:n,length:s}=this._subList(e,t);return n.length===1?n[0]:Er(n,s)}sublist(e,t){let{bufs:n,length:s}=this._subList(e,t),i=new r;return i.length=s,i.bufs=n,i}_subList(e,t){if(e=e??0,t=t??this.length,e<0&&(e=this.length+e),t<0&&(t=this.length+t),e<0||t>this.length)throw new RangeError("index is out of bounds");if(e===t)return{bufs:[],length:0};if(e===0&&t===this.length)return{bufs:[...this.bufs],length:this.length};let n=[],s=0;for(let i=0;i<this.bufs.length;i++){let o=this.bufs[i],a=s,c=a+o.byteLength;if(s=c,e>=c)continue;let l=e>=a&&e<c,u=t>a&&t<=c;if(l&&u){if(e===a&&t===c){n.push(o);break}let d=e-a;n.push(o.subarray(d,d+(t-e)));break}if(l){if(e===0){n.push(o);continue}n.push(o.subarray(e-a));continue}if(u){if(t===c){n.push(o);break}n.push(o.subarray(0,t-a));break}n.push(o)}return{bufs:n,length:t-e}}indexOf(e,t=0){if(!Vn(e)&&!(e instanceof Uint8Array))throw new TypeError('The "value" argument must be a Uint8ArrayList or Uint8Array');let n=e instanceof Uint8Array?e:e.subarray();if(t=Number(t??0),isNaN(t)&&(t=0),t<0&&(t=this.length+t),t<0&&(t=0),e.length===0)return t>this.length?this.length:t;let s=n.byteLength;if(s===0)throw new TypeError("search must be at least 1 byte long");let i=256,o=new Int32Array(i);for(let d=0;d<i;d++)o[d]=-1;for(let d=0;d<s;d++)o[n[d]]=d;let a=o,c=this.byteLength-n.byteLength,l=n.byteLength-1,u;for(let d=t;d<=c;d+=u){u=0;for(let h=l;h>=0;h--){let m=this.get(d+h);if(n[h]!==m){u=Math.max(1,h-a[m]);break}}if(u===0)return d}return-1}getInt8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getInt8(0)}setInt8(e,t){let n=re(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setInt8(0,t),this.write(n,e)}getInt16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt16(0,t)}setInt16(e,t,n){let s=Te(2);new DataView(s.buffer,s.byteOffset,s.byteLength).setInt16(0,t,n),this.write(s,e)}getInt32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt32(0,t)}setInt32(e,t,n){let s=Te(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setInt32(0,t,n),this.write(s,e)}getBigInt64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigInt64(0,t)}setBigInt64(e,t,n){let s=Te(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setBigInt64(0,t,n),this.write(s,e)}getUint8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getUint8(0)}setUint8(e,t){let n=re(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setUint8(0,t),this.write(n,e)}getUint16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint16(0,t)}setUint16(e,t,n){let s=Te(2);new DataView(s.buffer,s.byteOffset,s.byteLength).setUint16(0,t,n),this.write(s,e)}getUint32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint32(0,t)}setUint32(e,t,n){let s=Te(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setUint32(0,t,n),this.write(s,e)}getBigUint64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigUint64(0,t)}setBigUint64(e,t,n){let s=Te(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setBigUint64(0,t,n),this.write(s,e)}getFloat32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat32(0,t)}setFloat32(e,t,n){let s=Te(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setFloat32(0,t,n),this.write(s,e)}getFloat64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat64(0,t)}setFloat64(e,t,n){let s=Te(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setFloat64(0,t,n),this.write(s,e)}equals(e){if(e==null||!(e instanceof r)||e.bufs.length!==this.bufs.length)return!1;for(let t=0;t<this.bufs.length;t++)if(!Fc(this.bufs[t],e.bufs[t]))return!1;return!0}static fromUint8Arrays(e,t){let n=new r;return n.bufs=e,t==null&&(t=e.reduce((s,i)=>s+i.byteLength,0)),n.length=t,n}}});var Si,Gn,Yn,Kc,jn,Oc,zc,Wc,$c,qc,Hc,Vc,kr=p(()=>{"use strict";Si=BigInt(34),Gn=8,Yn=262144,Kc="links-bytes",jn=262144,Oc=1048576,zc=50,Wc=10,$c=!0,qc=!0,Hc=!1,Vc="file"});var Gc,Yc=p(()=>{"use strict";_c();kr();Gc=(r={})=>{let e=r.chunkSize??jn;return async function*(n){let s=new Bt,i=0,o=!1;for await(let a of n)for(s.append(a),i+=a.length;i>=e;)if(yield s.subarray(0,e),o=!0,e===s.length)s=new Bt,i=0;else{let l=new Bt;l.append(s.sublist(e)),s=l,i-=e}(!o||i>0)&&(yield s.subarray(0,i))}}});function jc(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}function me(r){if(r instanceof Uint8Array&&r.constructor.name==="Uint8Array")return at(r);if(r instanceof ArrayBuffer)return new Uint8Array(r);if(ArrayBuffer.isView(r))return at(new Uint8Array(r.buffer,r.byteOffset,r.byteLength));throw new Error("Unknown type, must be binary type")}function Jc(r){return new TextEncoder().encode(r)}function Qc(r){return new TextDecoder().decode(r)}function Nf(r){return r?.buffer instanceof ArrayBuffer}function at(r){return Nf(r)?r:r.slice()}var b0,We=p(()=>{"use strict";b0=new Uint8Array(0)});function Lf(r,e){if(r.length>=255)throw new TypeError("Alphabet too long");for(var t=new Uint8Array(256),n=0;n<t.length;n++)t[n]=255;for(var s=0;s<r.length;s++){var i=r.charAt(s),o=i.charCodeAt(0);if(t[o]!==255)throw new TypeError(i+" is ambiguous");t[o]=s}var a=r.length,c=r.charAt(0),l=Math.log(a)/Math.log(256),u=Math.log(256)/Math.log(a);function d(g){if(g instanceof Uint8Array||(ArrayBuffer.isView(g)?g=new Uint8Array(g.buffer,g.byteOffset,g.byteLength):Array.isArray(g)&&(g=Uint8Array.from(g))),!(g instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(g.length===0)return"";for(var y=0,S=0,b=0,A=g.length;b!==A&&g[b]===0;)b++,y++;for(var v=(A-b)*u+1>>>0,k=new Uint8Array(v);b!==A;){for(var C=g[b],x=0,T=v-1;(C!==0||x<S)&&T!==-1;T--,x++)C+=256*k[T]>>>0,k[T]=C%a>>>0,C=C/a>>>0;if(C!==0)throw new Error("Non-zero carry");S=x,b++}for(var O=v-S;O!==v&&k[O]===0;)O++;for(var Pe=c.repeat(y);O<v;++O)Pe+=r.charAt(k[O]);return Pe}function h(g){if(typeof g!="string")throw new TypeError("Expected String");if(g.length===0)return new Uint8Array;var y=0;if(g[y]!==" "){for(var S=0,b=0;g[y]===c;)S++,y++;for(var A=(g.length-y)*l+1>>>0,v=new Uint8Array(A);g[y];){var k=t[g.charCodeAt(y)];if(k===255)return;for(var C=0,x=A-1;(k!==0||C<b)&&x!==-1;x--,C++)k+=a*v[x]>>>0,v[x]=k%256>>>0,k=k/256>>>0;if(k!==0)throw new Error("Non-zero carry");b=C,y++}if(g[y]!==" "){for(var T=A-b;T!==A&&v[T]===0;)T++;for(var O=new Uint8Array(S+(A-T)),Pe=S;T!==A;)O[Pe++]=v[T++];return O}}}function m(g){var y=h(g);if(y)return y;throw new Error(`Non-${e} character`)}return{encode:d,decodeUnsafe:h,decode:m}}var _f,Kf,Xc,el=p(()=>{"use strict";_f=Lf,Kf=_f,Xc=Kf});function tl(r,e){return new vi({...r.decoders??{[r.prefix]:r},...e.decoders??{[e.prefix]:e}})}function Dt({name:r,prefix:e,encode:t,decode:n}){return new Ei(r,e,t,n)}function $e({name:r,prefix:e,alphabet:t}){let{encode:n,decode:s}=Xc(t,r);return Dt({prefix:e,name:r,encode:n,decode:i=>me(s(i))})}function Of(r,e,t,n){let s=r.length;for(;r[s-1]==="=";)--s;let i=new Uint8Array(s*t/8|0),o=0,a=0,c=0;for(let l=0;l<s;++l){let u=e[r[l]];if(u===void 0)throw new SyntaxError(`Non-${n} character`);a=a<<t|u,o+=t,o>=8&&(o-=8,i[c++]=255&a>>o)}if(o>=t||(255&a<<8-o)!==0)throw new SyntaxError("Unexpected end of data");return i}function zf(r,e,t){let n=e[e.length-1]==="=",s=(1<<t)-1,i="",o=0,a=0;for(let c=0;c<r.length;++c)for(a=a<<8|r[c],o+=8;o>t;)o-=t,i+=e[s&a>>o];if(o!==0&&(i+=e[s&a<<t-o]),n)for(;(i.length*t&7)!==0;)i+="=";return i}function Wf(r){let e={};for(let t=0;t<r.length;++t)e[r[t]]=t;return e}function N({name:r,prefix:e,bitsPerChar:t,alphabet:n}){let s=Wf(n);return Dt({prefix:e,name:r,encode(i){return zf(i,n,t)},decode(i){return Of(i,s,t,r)}})}var Ai,xi,vi,Ei,ge=p(()=>{"use strict";We();el();Ai=class{constructor(e,t,n){f(this,"name");f(this,"prefix");f(this,"baseEncode");this.name=e,this.prefix=t,this.baseEncode=n}encode(e){if(e instanceof Uint8Array)return`${this.prefix}${this.baseEncode(e)}`;throw Error("Unknown type, must be binary type")}},xi=class{constructor(e,t,n){f(this,"name");f(this,"prefix");f(this,"baseDecode");f(this,"prefixCodePoint");this.name=e,this.prefix=t;let s=t.codePointAt(0);if(s===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=s,this.baseDecode=n}decode(e){if(typeof e=="string"){if(e.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(e)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(e.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(e){return tl(this,e)}},vi=class{constructor(e){f(this,"decoders");this.decoders=e}or(e){return tl(this,e)}decode(e){let t=e[0],n=this.decoders[t];if(n!=null)return n.decode(e);throw RangeError(`Unable to decode multibase string ${JSON.stringify(e)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}};Ei=class{constructor(e,t,n,s){f(this,"name");f(this,"prefix");f(this,"baseEncode");f(this,"baseDecode");f(this,"encoder");f(this,"decoder");this.name=e,this.prefix=t,this.baseEncode=n,this.baseDecode=s,this.encoder=new Ai(e,t,n),this.decoder=new xi(e,t,s)}encode(e){return this.encoder.encode(e)}decode(e){return this.decoder.decode(e)}}});var ki={};E(ki,{base32:()=>J,base32hex:()=>Vf,base32hexpad:()=>Yf,base32hexpadupper:()=>jf,base32hexupper:()=>Gf,base32pad:()=>qf,base32padupper:()=>Hf,base32upper:()=>$f,base32z:()=>Jf});var J,$f,qf,Hf,Vf,Gf,Yf,jf,Jf,Cr=p(()=>{"use strict";ge();J=N({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),$f=N({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),qf=N({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),Hf=N({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),Vf=N({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),Gf=N({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),Yf=N({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),jf=N({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),Jf=N({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5})});var Ci={};E(Ci,{base36:()=>Pr,base36upper:()=>Qf});var Pr,Qf,Pi=p(()=>{"use strict";ge();Pr=$e({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),Qf=$e({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"})});var Ii={};E(Ii,{base58btc:()=>le,base58flickr:()=>Zf});var le,Zf,Jn=p(()=>{"use strict";ge();le=$e({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),Zf=$e({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"})});function sl(r,e,t){e=e||[],t=t||0;for(var n=t;r>=rp;)e[t++]=r&255|rl,r/=128;for(;r&tp;)e[t++]=r&255|rl,r>>>=7;return e[t]=r|0,sl.bytes=t-n+1,e}function Bi(r,n){var t=0,n=n||0,s=0,i=n,o,a=r.length;do{if(i>=a)throw Bi.bytes=0,new RangeError("Could not decode varint");o=r[i++],t+=s<28?(o&nl)<<s:(o&nl)*Math.pow(2,s),s+=7}while(o>=sp);return Bi.bytes=i-n,t}var Xf,rl,ep,tp,rp,np,sp,nl,ip,op,ap,cp,lp,up,dp,hp,fp,pp,mp,gp,Ir,il=p(()=>{"use strict";Xf=sl,rl=128,ep=127,tp=~ep,rp=Math.pow(2,31);np=Bi,sp=128,nl=127;ip=Math.pow(2,7),op=Math.pow(2,14),ap=Math.pow(2,21),cp=Math.pow(2,28),lp=Math.pow(2,35),up=Math.pow(2,42),dp=Math.pow(2,49),hp=Math.pow(2,56),fp=Math.pow(2,63),pp=function(r){return r<ip?1:r<op?2:r<ap?3:r<cp?4:r<lp?5:r<up?6:r<dp?7:r<hp?8:r<fp?9:10},mp={encode:Xf,decode:np,encodingLength:pp},gp=mp,Ir=gp});function Br(r,e=0){return[Ir.decode(r,e),Ir.decode.bytes]}function Tt(r,e,t=0){return Ir.encode(r,e,t),e}function Rt(r){return Ir.encodingLength(r)}var Zn=p(()=>{"use strict";il()});function Mt(r,e){let t=e.byteLength,n=Rt(r),s=n+Rt(t),i=new Uint8Array(s+t);return Tt(r,i,0),Tt(t,i,n),i.set(e,s),new Ft(r,t,e,i)}function Xn(r){let e=me(r),[t,n]=Br(e),[s,i]=Br(e.subarray(n)),o=e.subarray(n+i);if(o.byteLength!==s)throw new Error("Incorrect length");return new Ft(t,s,o,e)}function ol(r,e){if(r===e)return!0;{let t=e;return r.code===t.code&&r.size===t.size&&t.bytes instanceof Uint8Array&&jc(r.bytes,t.bytes)}}var Ft,Nt=p(()=>{"use strict";We();Zn();Ft=class{constructor(e,t,n,s){f(this,"code");f(this,"size");f(this,"digest");f(this,"bytes");this.code=e,this.size=t,this.digest=at(n),this.bytes=at(s)}}});var Di=p(()=>{"use strict"});function al(r,e){let{bytes:t,version:n}=r;return n===0?wp(t,Ti(r),e??le.encoder):bp(t,Ti(r),e??J.encoder)}function Ti(r){let e=cl.get(r);if(e==null){let t=new Map;return cl.set(r,t),t}return e}function yp(r,e){switch(r[0]){case"Q":{let t=e??le;return[le.prefix,t.decode(`${le.prefix}${r}`)]}case le.prefix:{let t=e??le;return[le.prefix,t.decode(r)]}case J.prefix:{let t=e??J;return[J.prefix,t.decode(r)]}case Pr.prefix:{let t=e??Pr;return[Pr.prefix,t.decode(r)]}default:{if(e==null)throw Error("To parse non base32, base36 or base58btc encoded CID multibase decoder must be provided");return[r[0],e.decode(r)]}}}function wp(r,e,t){let{prefix:n}=t;if(n!==le.prefix)throw Error(`Cannot string encode V0 in ${t.name} encoding`);let s=e.get(n);if(s==null){let i=t.encode(r).slice(1);return e.set(n,i),i}else return s}function bp(r,e,t){let{prefix:n}=t,s=e.get(n);if(s==null){let i=t.encode(r);return e.set(n,i),i}else return s}function ll(r,e,t){let n=Rt(r),s=n+Rt(e),i=new Uint8Array(s+t.byteLength);return Tt(r,i,0),Tt(e,i,n),i.set(t,s),i}var cl,ul,$,Dr,Sp,Ap,ct=p(()=>{"use strict";Cr();Pi();Jn();We();Nt();Zn();Di();cl=new WeakMap;$=class r{constructor(e,t,n,s){f(this,"code");f(this,"version");f(this,"multihash");f(this,"bytes");f(this,"/");f(this,ul,"CID");this.code=t,this.version=e,this.multihash=n,this.bytes=at(s),this["/"]=this.bytes}get asCID(){return this}get byteOffset(){return this.bytes.byteOffset}get byteLength(){return this.bytes.byteLength}toV0(){switch(this.version){case 0:return this;case 1:{let{code:e,multihash:t}=this;if(e!==Dr)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(t.code!==Sp)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return r.createV0(t)}default:throw Error(`Can not convert CID version ${this.version} to version 0. This is a bug please report`)}}toV1(){switch(this.version){case 0:{let{code:e,digest:t}=this.multihash,n=Mt(e,t);return r.createV1(this.code,n)}case 1:return this;default:throw Error(`Can not convert CID version ${this.version} to version 1. This is a bug please report`)}}equals(e){return r.equals(this,e)}static equals(e,t){let n=t;return n!=null&&e.code===n.code&&e.version===n.version&&ol(e.multihash,n.multihash)}toString(e){return al(this,e)}toJSON(){return{"/":al(this)}}link(){return this}[(ul=Symbol.toStringTag,Symbol.for("nodejs.util.inspect.custom"))](){return`CID(${this.toString()})`}static asCID(e){if(e==null)return null;let t=e;if(t instanceof r)return t;if(t["/"]!=null&&t["/"]===t.bytes||t.asCID===t){let{version:n,code:s,multihash:i,bytes:o}=t;return new r(n,s,i,o??ll(n,s,i.bytes))}else if(t[Ap]===!0){let{version:n,multihash:s,code:i}=t,o=Xn(s);return r.create(n,i,o)}else return null}static create(e,t,n){if(typeof t!="number")throw new Error("String codecs are no longer supported");if(!(n.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(e){case 0:{if(t!==Dr)throw new Error(`Version 0 CID must use dag-pb (code: ${Dr}) block encoding`);return new r(e,t,n,n.bytes)}case 1:{let s=ll(e,t,n.bytes);return new r(e,t,n,s)}default:throw new Error("Invalid version")}}static createV0(e){return r.create(0,Dr,e)}static createV1(e,t){return r.create(1,e,t)}static decode(e){let[t,n]=r.decodeFirst(e);if(n.length!==0)throw new Error("Incorrect length");return t}static decodeFirst(e){let t=r.inspectBytes(e),n=t.size-t.multihashSize,s=me(e.subarray(n,n+t.multihashSize));if(s.byteLength!==t.multihashSize)throw new Error("Incorrect length");let i=s.subarray(t.multihashSize-t.digestSize),o=new Ft(t.multihashCode,t.digestSize,i,s);return[t.version===0?r.createV0(o):r.createV1(t.codec,o),e.subarray(t.size)]}static inspectBytes(e){let t=0,n=()=>{let[d,h]=Br(e.subarray(t));return t+=h,d},s=n(),i=Dr;if(s===18?(s=0,t=0):i=n(),s!==0&&s!==1)throw new RangeError(`Invalid CID version ${s}`);let o=t,a=n(),c=n(),l=t+c,u=l-o;return{version:s,codec:i,multihashCode:a,digestSize:c,multihashSize:u,size:l}}static parse(e,t){let[n,s]=yp(e,t),i=r.decode(s);if(i.version===0&&e[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return Ti(i).set(n,e),i}};Dr=112,Sp=18;Ap=Symbol.for("@ipld/js-cid/CID")});function Ri(r,e){let t=0;for(let n=0;;n+=7){if(n>=64)throw new Error("protobuf: varint overflow");if(e>=r.length)throw new Error("protobuf: unexpected end of data");let s=r[e++];if(t+=n<28?(s&127)<<n:(s&127)*2**n,s<128)break}return[t,e]}function es(r,e){let t;[t,e]=Ri(r,e);let n=e+t;if(t<0||n<0)throw new Error("protobuf: invalid length");if(n>r.length)throw new Error("protobuf: unexpected end of data");return[r.subarray(e,n),n]}function dl(r,e){let t;return[t,e]=Ri(r,e),[t&7,t>>3,e]}function vp(r){let e={},t=r.length,n=0;for(;n<t;){let s,i;if([s,i,n]=dl(r,n),i===1){if(e.Hash)throw new Error("protobuf: (PBLink) duplicate Hash section");if(s!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${s}) for Hash`);if(e.Name!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Name before Hash");if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Hash");[e.Hash,n]=es(r,n)}else if(i===2){if(e.Name!==void 0)throw new Error("protobuf: (PBLink) duplicate Name section");if(s!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${s}) for Name`);if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Name");let o;[o,n]=es(r,n),e.Name=xp.decode(o)}else if(i===3){if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) duplicate Tsize section");if(s!==0)throw new Error(`protobuf: (PBLink) wrong wireType (${s}) for Tsize`);[e.Tsize,n]=Ri(r,n)}else throw new Error(`protobuf: (PBLink) invalid fieldNumber, expected 1, 2 or 3, got ${i}`)}if(n>t)throw new Error("protobuf: (PBLink) unexpected end of data");return e}function hl(r){let e=r.length,t=0,n,s=!1,i;for(;t<e;){let a,c;if([a,c,t]=dl(r,t),a!==2)throw new Error(`protobuf: (PBNode) invalid wireType, expected 2, got ${a}`);if(c===1){if(i)throw new Error("protobuf: (PBNode) duplicate Data section");[i,t]=es(r,t),n&&(s=!0)}else if(c===2){if(s)throw new Error("protobuf: (PBNode) duplicate Links section");n||(n=[]);let l;[l,t]=es(r,t),n.push(vp(l))}else throw new Error(`protobuf: (PBNode) invalid fieldNumber, expected 1 or 2, got ${c}`)}if(t>e)throw new Error("protobuf: (PBNode) unexpected end of data");let o={};return i&&(o.Data=i),o.Links=n||[],o}var xp,fl=p(()=>{"use strict";xp=new TextDecoder});function kp(r,e){let t=e.length;if(typeof r.Tsize=="number"){if(r.Tsize<0)throw new Error("Tsize cannot be negative");if(!Number.isSafeInteger(r.Tsize))throw new Error("Tsize too large for encoding");t=Tr(e,t,r.Tsize)-1,e[t]=24}if(typeof r.Name=="string"){let n=ml.encode(r.Name);t-=n.length,e.set(n,t),t=Tr(e,t,n.length)-1,e[t]=18}return r.Hash&&(t-=r.Hash.length,e.set(r.Hash,t),t=Tr(e,t,r.Hash.length)-1,e[t]=10),e.length-t}function gl(r){let e=Pp(r),t=new Uint8Array(e),n=e;if(r.Data&&(n-=r.Data.length,t.set(r.Data,n),n=Tr(t,n,r.Data.length)-1,t[n]=10),r.Links)for(let s=r.Links.length-1;s>=0;s--){let i=kp(r.Links[s],t.subarray(0,n));n-=i,n=Tr(t,n,i)-1,t[n]=18}return t}function Cp(r){let e=0;if(r.Hash){let t=r.Hash.length;e+=1+t+Lt(t)}if(typeof r.Name=="string"){let t=ml.encode(r.Name).length;e+=1+t+Lt(t)}return typeof r.Tsize=="number"&&(e+=1+Lt(r.Tsize)),e}function Pp(r){let e=0;if(r.Data){let t=r.Data.length;e+=1+t+Lt(t)}if(r.Links)for(let t of r.Links){let n=Cp(t);e+=1+n+Lt(n)}return e}function Tr(r,e,t){e-=Lt(t);let n=e;for(;t>=Ep;)r[e++]=t&127|128,t/=128;for(;t>=128;)r[e++]=t&127|128,t>>>=7;return r[e]=t,n}function Lt(r){return r%2===0&&r++,Math.floor((Ip(r)+6)/7)}function Ip(r){let e=0;return r>=pl&&(r=Math.floor(r/pl),e=32),r>=65536&&(r>>>=16,e+=16),r>=256&&(r>>>=8,e+=8),e+Bp[r]}var ml,pl,Ep,Bp,yl=p(()=>{"use strict";ml=new TextEncoder,pl=2**32,Ep=2**31;Bp=[0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8]});function bl(r,e){if(r===e)return 0;let t=r.Name?Fi.encode(r.Name):[],n=e.Name?Fi.encode(e.Name):[],s=t.length,i=n.length;for(let o=0,a=Math.min(s,i);o<a;++o)if(t[o]!==n[o]){s=t[o],i=n[o];break}return s<i?-1:i<s?1:0}function wl(r,e){return!Object.keys(r).some(t=>!e.includes(t))}function Sl(r){if(typeof r.asCID=="object"){let t=$.asCID(r);if(!t)throw new TypeError("Invalid DAG-PB form");return{Hash:t}}if(typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let e={};if(r.Hash){let t=$.asCID(r.Hash);try{t||(typeof r.Hash=="string"?t=$.parse(r.Hash):r.Hash instanceof Uint8Array&&(t=$.decode(r.Hash)))}catch(n){throw new TypeError(`Invalid DAG-PB form: ${n.message}`)}t&&(e.Hash=t)}if(!e.Hash)throw new TypeError("Invalid DAG-PB form");return typeof r.Name=="string"&&(e.Name=r.Name),typeof r.Tsize=="number"&&(e.Tsize=r.Tsize),e}function Q(r){if((r instanceof Uint8Array||typeof r=="string")&&(r={Data:r}),typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let e={};if(r.Data!==void 0)if(typeof r.Data=="string")e.Data=Fi.encode(r.Data);else if(r.Data instanceof Uint8Array)e.Data=r.Data;else throw new TypeError("Invalid DAG-PB form");if(r.Links!==void 0)if(Array.isArray(r.Links))e.Links=r.Links.map(Sl),e.Links.sort(bl);else throw new TypeError("Invalid DAG-PB form");else e.Links=[];return e}function Mi(r){if(!r||typeof r!="object"||Array.isArray(r)||r instanceof Uint8Array||r["/"]&&r["/"]===r.bytes)throw new TypeError("Invalid DAG-PB form");if(!wl(r,Dp))throw new TypeError("Invalid DAG-PB form (extraneous properties)");if(r.Data!==void 0&&!(r.Data instanceof Uint8Array))throw new TypeError("Invalid DAG-PB form (Data must be bytes)");if(!Array.isArray(r.Links))throw new TypeError("Invalid DAG-PB form (Links must be a list)");for(let e=0;e<r.Links.length;e++){let t=r.Links[e];if(!t||typeof t!="object"||Array.isArray(t)||t instanceof Uint8Array||t["/"]&&t["/"]===t.bytes)throw new TypeError("Invalid DAG-PB form (bad link)");if(!wl(t,Tp))throw new TypeError("Invalid DAG-PB form (extraneous properties on link)");if(t.Hash===void 0)throw new TypeError("Invalid DAG-PB form (link must have a Hash)");if(t.Hash==null||!t.Hash["/"]||t.Hash["/"]!==t.Hash.bytes)throw new TypeError("Invalid DAG-PB form (link Hash must be a CID)");if(t.Name!==void 0&&typeof t.Name!="string")throw new TypeError("Invalid DAG-PB form (link Name must be a string)");if(t.Tsize!==void 0){if(typeof t.Tsize!="number"||t.Tsize%1!==0)throw new TypeError("Invalid DAG-PB form (link Tsize must be an integer)");if(t.Tsize<0)throw new TypeError("Invalid DAG-PB form (link Tsize cannot be negative)")}if(e>0&&bl(t,r.Links[e-1])===-1)throw new TypeError("Invalid DAG-PB form (links must be sorted by Name bytes)")}}function Al(r,e=[]){return Q({Data:r,Links:e})}function xl(r,e,t){return Sl({Hash:t,Name:r,Tsize:e})}function vl(r){return r instanceof ArrayBuffer?new Uint8Array(r,0,r.byteLength):r}var Dp,Tp,Fi,El=p(()=>{"use strict";ct();Dp=["Data","Links"],Tp=["Hash","Name","Tsize"],Fi=new TextEncoder});var Rr={};E(Rr,{code:()=>Fp,createLink:()=>xl,createNode:()=>Al,decode:()=>Mp,encode:()=>Z,name:()=>Rp,prepare:()=>Q,validate:()=>Mi});function Z(r){Mi(r);let e={};return r.Links&&(e.Links=r.Links.map(t=>{let n={};return t.Hash&&(n.Hash=t.Hash.bytes),t.Name!==void 0&&(n.Name=t.Name),t.Tsize!==void 0&&(n.Tsize=t.Tsize),n})),r.Data&&(e.Data=r.Data),gl(e)}function Mp(r){let e=vl(r),t=hl(e),n={};return t.Data&&(n.Data=t.Data),t.Links&&(n.Links=t.Links.map(s=>{let i={};try{i.Hash=$.decode(s.Hash)}catch{}if(!i.Hash)throw new Error("Invalid Hash field found in link, expected CID");return s.Name!==void 0&&(i.Name=s.Name),s.Tsize!==void 0&&(i.Tsize=s.Tsize),i})),n}var Rp,Fp,lt=p(()=>{"use strict";ct();fl();yl();El();Rp="dag-pb",Fp=112});var _t,Fr,Ui=p(()=>{"use strict";_t=class _t extends Error{constructor(t="Invalid type"){super(t);f(this,"name",_t.name);f(this,"code",_t.code)}};f(_t,"name","InvalidTypeError"),f(_t,"code","ERR_INVALID_TYPE");Fr=_t});function Mr(r){if(r<Up)return 1;if(r<Np)return 2;if(r<Lp)return 3;if(r<kl)return 4;if(r<Cl)return 5;if(r<Pl)return 6;if(r<Il)return 7;if(Number.MAX_SAFE_INTEGER!=null&&r>Number.MAX_SAFE_INTEGER)throw new RangeError("Could not encode varint");return 8}function Bl(r,e,t=0){switch(Mr(r)){case 8:e[t++]=r&255|q,r/=128;case 7:e[t++]=r&255|q,r/=128;case 6:e[t++]=r&255|q,r/=128;case 5:e[t++]=r&255|q,r/=128;case 4:e[t++]=r&255|q,r>>>=7;case 3:e[t++]=r&255|q,r>>>=7;case 2:e[t++]=r&255|q,r>>>=7;case 1:{e[t++]=r&255,r>>>=7;break}default:throw new Error("unreachable")}return e}function Dl(r,e){let t=r[e],n=0;if(n+=t&qe,t<q||(t=r[e+1],n+=(t&qe)<<7,t<q)||(t=r[e+2],n+=(t&qe)<<14,t<q)||(t=r[e+3],n+=(t&qe)<<21,t<q)||(t=r[e+4],n+=(t&qe)*kl,t<q)||(t=r[e+5],n+=(t&qe)*Cl,t<q)||(t=r[e+6],n+=(t&qe)*Pl,t<q)||(t=r[e+7],n+=(t&qe)*Il,t<q))return n;throw new RangeError("Could not decode varint")}var Up,Np,Lp,kl,Cl,Pl,Il,q,qe,Ni=p(()=>{"use strict";ot();Up=Math.pow(2,7),Np=Math.pow(2,14),Lp=Math.pow(2,21),kl=Math.pow(2,28),Cl=Math.pow(2,35),Pl=Math.pow(2,42),Il=Math.pow(2,49),q=128,qe=127});function _p(r){return r.buffer instanceof ArrayBuffer}function Tl(r){return _p(r)?r:r.slice()}var Rl=p(()=>{"use strict"});function Fl(r,e,t){Li[0]=r,e[t]=He[0],e[t+1]=He[1],e[t+2]=He[2],e[t+3]=He[3]}function Ml(r,e){return He[0]=r[e],He[1]=r[e+1],He[2]=r[e+2],He[3]=r[e+3],Li[0]}function Ul(r,e,t){_i[0]=r,e[t]=z[0],e[t+1]=z[1],e[t+2]=z[2],e[t+3]=z[3],e[t+4]=z[4],e[t+5]=z[5],e[t+6]=z[6],e[t+7]=z[7]}function Nl(r,e){return z[0]=r[e],z[1]=r[e+1],z[2]=r[e+2],z[3]=r[e+3],z[4]=r[e+4],z[5]=r[e+5],z[6]=r[e+6],z[7]=r[e+7],_i[0]}var Li,He,_i,z,Ki=p(()=>{"use strict";Li=new Float32Array([-0]),He=new Uint8Array(Li.buffer);_i=new Float64Array([-0]),z=new Uint8Array(_i.buffer)});var Kp,Op,ne,ut,Ll,Oi=p(()=>{"use strict";Kp=BigInt(Number.MAX_SAFE_INTEGER),Op=BigInt(Number.MIN_SAFE_INTEGER),ne=class r{constructor(e,t){f(this,"lo");f(this,"hi");this.lo=e|0,this.hi=t|0}toNumber(e=!1){if(!e&&this.hi>>>31>0){let t=~this.lo+1>>>0,n=~this.hi>>>0;return t===0&&(n=n+1>>>0),-(t+n*4294967296)}return this.lo+this.hi*4294967296}toBigInt(e=!1){if(e)return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n);if(this.hi>>>31){let t=~this.lo+1>>>0,n=~this.hi>>>0;return t===0&&(n=n+1>>>0),-(BigInt(t)+(BigInt(n)<<32n))}return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n)}toString(e=!1){return this.toBigInt(e).toString()}zzEncode(){let e=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^e)>>>0,this.lo=(this.lo<<1^e)>>>0,this}zzDecode(){let e=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^e)>>>0,this.hi=(this.hi>>>1^e)>>>0,this}length(){let e=this.lo,t=(this.lo>>>28|this.hi<<4)>>>0,n=this.hi>>>24;return n===0?t===0?e<16384?e<128?1:2:e<2097152?3:4:t<16384?t<128?5:6:t<2097152?7:8:n<128?9:10}static fromBigInt(e){if(e===0n)return ut;if(e<Kp&&e>Op)return this.fromNumber(Number(e));let t=e<0n;t&&(e=-e);let n=e>>32n,s=e-(n<<32n);return t&&(n=~n|0n,s=~s|0n,++s>Ll&&(s=0n,++n>Ll&&(n=0n))),new r(Number(s),Number(n))}static fromNumber(e){if(e===0)return ut;let t=e<0;t&&(e=-e);let n=e>>>0,s=(e-n)/4294967296>>>0;return t&&(s=~s>>>0,n=~n>>>0,++n>4294967295&&(n=0,++s>4294967295&&(s=0))),new r(n,s)}static from(e){return typeof e=="number"?r.fromNumber(e):typeof e=="bigint"?r.fromBigInt(e):typeof e=="string"?r.fromBigInt(BigInt(e)):e.low!=null||e.high!=null?new r(e.low>>>0,e.high>>>0):ut}},ut=new ne(0,0);ut.toBigInt=function(){return 0n};ut.zzEncode=ut.zzDecode=function(){return this};ut.length=function(){return 1};Ll=4294967296n});function _l(r){let e=0,t=0;for(let n=0;n<r.length;++n)t=r.charCodeAt(n),t<128?e+=1:t<2048?e+=2:(t&64512)===55296&&(r.charCodeAt(n+1)&64512)===56320?(++n,e+=4):e+=3;return e}function Kl(r,e,t){if(t-e<1)return"";let s,i=[],o=0,a;for(;e<t;)a=r[e++],a<128?i[o++]=a:a>191&&a<224?i[o++]=(a&31)<<6|r[e++]&63:a>239&&a<365?(a=((a&7)<<18|(r[e++]&63)<<12|(r[e++]&63)<<6|r[e++]&63)-65536,i[o++]=55296+(a>>10),i[o++]=56320+(a&1023)):i[o++]=(a&15)<<12|(r[e++]&63)<<6|r[e++]&63,o>8191&&((s??(s=[])).push(String.fromCharCode.apply(String,i)),o=0);return s!=null?(o>0&&s.push(String.fromCharCode.apply(String,i.slice(0,o))),s.join("")):String.fromCharCode.apply(String,i.slice(0,o))}function zi(r,e,t){let n=t,s,i;for(let o=0;o<r.length;++o)s=r.charCodeAt(o),s<128?e[t++]=s:s<2048?(e[t++]=s>>6|192,e[t++]=s&63|128):(s&64512)===55296&&((i=r.charCodeAt(o+1))&64512)===56320?(s=65536+((s&1023)<<10)+(i&1023),++o,e[t++]=s>>18|240,e[t++]=s>>12&63|128,e[t++]=s>>6&63|128,e[t++]=s&63|128):(e[t++]=s>>12|224,e[t++]=s>>6&63|128,e[t++]=s&63|128);return t-n}var Wi=p(()=>{"use strict"});function ye(r,e){return RangeError(`index out of range: ${r.pos} + ${e??1} > ${r.len}`)}function ts(r,e){return(r[e-4]|r[e-3]<<8|r[e-2]<<16|r[e-1]<<24)>>>0}function Ur(r){return new $i(r instanceof Uint8Array?r:r.subarray())}var $i,rs=p(()=>{"use strict";Ni();Rl();Ki();Oi();Wi();$i=class{constructor(e){f(this,"buf");f(this,"pos");f(this,"len");f(this,"_slice",Uint8Array.prototype.subarray);this.buf=Tl(e),this.pos=0,this.len=e.length}uint32(){let e=4294967295;if(e=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(e=(e|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return e;if((this.pos+=5)>this.len)throw this.pos=this.len,ye(this,10);return e}int32(){return this.uint32()|0}sint32(){let e=this.uint32();return e>>>1^-(e&1)|0}bool(){return this.uint32()!==0}fixed32(){if(this.pos+4>this.len)throw ye(this,4);return ts(this.buf,this.pos+=4)}sfixed32(){if(this.pos+4>this.len)throw ye(this,4);return ts(this.buf,this.pos+=4)|0}float(){if(this.pos+4>this.len)throw ye(this,4);let e=Ml(this.buf,this.pos);return this.pos+=4,e}double(){if(this.pos+8>this.len)throw ye(this,4);let e=Nl(this.buf,this.pos);return this.pos+=8,e}bytes(){let e=this.uint32(),t=this.pos,n=this.pos+e;if(n>this.len)throw ye(this,e);return this.pos+=e,t===n?new Uint8Array(0):this.buf.subarray(t,n)}string(){let e=this.bytes();return Kl(e,0,e.length)}skip(e){if(typeof e=="number"){if(this.pos+e>this.len)throw ye(this,e);this.pos+=e}else do if(this.pos>=this.len)throw ye(this);while((this.buf[this.pos++]&128)!==0);return this}skipType(e){switch(e){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(e=this.uint32()&7)!==4;)this.skipType(e);break;case 5:this.skip(4);break;default:throw Error(`invalid wire type ${e} at offset ${this.pos}`)}return this}readLongVarint(){let e=new ne(0,0),t=0;if(this.len-this.pos>4){for(;t<4;++t)if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e;if(e.lo=(e.lo|(this.buf[this.pos]&127)<<28)>>>0,e.hi=(e.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return e;t=0}else{for(;t<3;++t){if(this.pos>=this.len)throw ye(this);if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e}return e.lo=(e.lo|(this.buf[this.pos++]&127)<<t*7)>>>0,e}if(this.len-this.pos>4){for(;t<5;++t)if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}else for(;t<5;++t){if(this.pos>=this.len)throw ye(this);if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}throw Error("invalid varint encoding")}readFixed64(){if(this.pos+8>this.len)throw ye(this,8);let e=ts(this.buf,this.pos+=4),t=ts(this.buf,this.pos+=4);return new ne(e,t)}int64(){return this.readLongVarint().toBigInt()}int64Number(){return this.readLongVarint().toNumber()}int64String(){return this.readLongVarint().toString()}uint64(){return this.readLongVarint().toBigInt(!0)}uint64Number(){let e=Dl(this.buf,this.pos);return this.pos+=Mr(e),e}uint64String(){return this.readLongVarint().toString(!0)}sint64(){return this.readLongVarint().zzDecode().toBigInt()}sint64Number(){return this.readLongVarint().zzDecode().toNumber()}sint64String(){return this.readLongVarint().zzDecode().toString()}fixed64(){return this.readFixed64().toBigInt()}fixed64Number(){return this.readFixed64().toNumber()}fixed64String(){return this.readFixed64().toString()}sfixed64(){return this.readFixed64().toBigInt()}sfixed64Number(){return this.readFixed64().toNumber()}sfixed64String(){return this.readFixed64().toString()}}});function Nr(r,e,t){let n=Ur(r);return e.decode(n,void 0,t)}var zl=p(()=>{"use strict";rs()});var qi={};E(qi,{base10:()=>zp});var zp,Wl=p(()=>{"use strict";ge();zp=$e({prefix:"9",name:"base10",alphabet:"0123456789"})});var Hi={};E(Hi,{base16:()=>Wp,base16upper:()=>$p});var Wp,$p,$l=p(()=>{"use strict";ge();Wp=N({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),$p=N({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4})});var Vi={};E(Vi,{base2:()=>qp});var qp,ql=p(()=>{"use strict";ge();qp=N({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1})});var Gi={};E(Gi,{base256emoji:()=>jp});function Gp(r){return r.reduce((e,t)=>(e+=Hp[t],e),"")}function Yp(r){let e=[];for(let t of r){let n=t.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${t}`);let s=Vp[n];if(s==null)throw new Error(`Non-base256emoji character: ${t}`);e.push(s)}return new Uint8Array(e)}var Hl,Hp,Vp,jp,Vl=p(()=>{"use strict";ge();Hl=Array.from("\u{1F680}\u{1FA90}\u2604\u{1F6F0}\u{1F30C}\u{1F311}\u{1F312}\u{1F313}\u{1F314}\u{1F315}\u{1F316}\u{1F317}\u{1F318}\u{1F30D}\u{1F30F}\u{1F30E}\u{1F409}\u2600\u{1F4BB}\u{1F5A5}\u{1F4BE}\u{1F4BF}\u{1F602}\u2764\u{1F60D}\u{1F923}\u{1F60A}\u{1F64F}\u{1F495}\u{1F62D}\u{1F618}\u{1F44D}\u{1F605}\u{1F44F}\u{1F601}\u{1F525}\u{1F970}\u{1F494}\u{1F496}\u{1F499}\u{1F622}\u{1F914}\u{1F606}\u{1F644}\u{1F4AA}\u{1F609}\u263A\u{1F44C}\u{1F917}\u{1F49C}\u{1F614}\u{1F60E}\u{1F607}\u{1F339}\u{1F926}\u{1F389}\u{1F49E}\u270C\u2728\u{1F937}\u{1F631}\u{1F60C}\u{1F338}\u{1F64C}\u{1F60B}\u{1F497}\u{1F49A}\u{1F60F}\u{1F49B}\u{1F642}\u{1F493}\u{1F929}\u{1F604}\u{1F600}\u{1F5A4}\u{1F603}\u{1F4AF}\u{1F648}\u{1F447}\u{1F3B6}\u{1F612}\u{1F92D}\u2763\u{1F61C}\u{1F48B}\u{1F440}\u{1F62A}\u{1F611}\u{1F4A5}\u{1F64B}\u{1F61E}\u{1F629}\u{1F621}\u{1F92A}\u{1F44A}\u{1F973}\u{1F625}\u{1F924}\u{1F449}\u{1F483}\u{1F633}\u270B\u{1F61A}\u{1F61D}\u{1F634}\u{1F31F}\u{1F62C}\u{1F643}\u{1F340}\u{1F337}\u{1F63B}\u{1F613}\u2B50\u2705\u{1F97A}\u{1F308}\u{1F608}\u{1F918}\u{1F4A6}\u2714\u{1F623}\u{1F3C3}\u{1F490}\u2639\u{1F38A}\u{1F498}\u{1F620}\u261D\u{1F615}\u{1F33A}\u{1F382}\u{1F33B}\u{1F610}\u{1F595}\u{1F49D}\u{1F64A}\u{1F639}\u{1F5E3}\u{1F4AB}\u{1F480}\u{1F451}\u{1F3B5}\u{1F91E}\u{1F61B}\u{1F534}\u{1F624}\u{1F33C}\u{1F62B}\u26BD\u{1F919}\u2615\u{1F3C6}\u{1F92B}\u{1F448}\u{1F62E}\u{1F646}\u{1F37B}\u{1F343}\u{1F436}\u{1F481}\u{1F632}\u{1F33F}\u{1F9E1}\u{1F381}\u26A1\u{1F31E}\u{1F388}\u274C\u270A\u{1F44B}\u{1F630}\u{1F928}\u{1F636}\u{1F91D}\u{1F6B6}\u{1F4B0}\u{1F353}\u{1F4A2}\u{1F91F}\u{1F641}\u{1F6A8}\u{1F4A8}\u{1F92C}\u2708\u{1F380}\u{1F37A}\u{1F913}\u{1F619}\u{1F49F}\u{1F331}\u{1F616}\u{1F476}\u{1F974}\u25B6\u27A1\u2753\u{1F48E}\u{1F4B8}\u2B07\u{1F628}\u{1F31A}\u{1F98B}\u{1F637}\u{1F57A}\u26A0\u{1F645}\u{1F61F}\u{1F635}\u{1F44E}\u{1F932}\u{1F920}\u{1F927}\u{1F4CC}\u{1F535}\u{1F485}\u{1F9D0}\u{1F43E}\u{1F352}\u{1F617}\u{1F911}\u{1F30A}\u{1F92F}\u{1F437}\u260E\u{1F4A7}\u{1F62F}\u{1F486}\u{1F446}\u{1F3A4}\u{1F647}\u{1F351}\u2744\u{1F334}\u{1F4A3}\u{1F438}\u{1F48C}\u{1F4CD}\u{1F940}\u{1F922}\u{1F445}\u{1F4A1}\u{1F4A9}\u{1F450}\u{1F4F8}\u{1F47B}\u{1F910}\u{1F92E}\u{1F3BC}\u{1F975}\u{1F6A9}\u{1F34E}\u{1F34A}\u{1F47C}\u{1F48D}\u{1F4E3}\u{1F942}"),Hp=Hl.reduce((r,e,t)=>(r[t]=e,r),[]),Vp=Hl.reduce((r,e,t)=>{let n=e.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${e}`);return r[n]=t,r},[]);jp=Dt({prefix:"\u{1F680}",name:"base256emoji",encode:Gp,decode:Yp})});var ji={};E(ji,{base64:()=>Yi,base64pad:()=>Jp,base64url:()=>Qp,base64urlpad:()=>Zp});var Yi,Jp,Qp,Zp,Ji=p(()=>{"use strict";ge();Yi=N({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),Jp=N({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),Qp=N({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),Zp=N({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6})});var Qi={};E(Qi,{base8:()=>Xp});var Xp,Gl=p(()=>{"use strict";ge();Xp=N({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3})});var Zi={};E(Zi,{identity:()=>em});var em,Yl=p(()=>{"use strict";We();ge();em=Dt({prefix:"\0",name:"identity",encode:r=>Qc(r),decode:r=>Jc(r)})});var yb,wb,jl=p(()=>{"use strict";yb=new TextEncoder,wb=new TextDecoder});var Ot={};E(Ot,{code:()=>Kt,decode:()=>sm,encode:()=>nm,name:()=>rm});function nm(r){return me(r)}function sm(r){return me(r)}var rm,Kt,Lr=p(()=>{"use strict";We();rm="raw",Kt=85});var Xi={};E(Xi,{identity:()=>am});function om(r,e){if(e?.truncate!=null&&e.truncate!==r.byteLength){if(e.truncate<0||e.truncate>r.byteLength)throw new Error(`Invalid truncate option, must be less than or equal to ${r.byteLength}`);r=r.subarray(0,e.truncate)}return Mt(Jl,Ql(r))}var Jl,im,Ql,am,Zl=p(()=>{"use strict";We();Nt();Jl=0,im="identity",Ql=me;am={code:Jl,name:im,encode:Ql,digest:om}});function dt({name:r,code:e,encode:t,minDigestLength:n,maxDigestLength:s}){return new eo(r,e,t,n,s)}function Xl(r,e,t){if(t!=null&&t!==r.byteLength){if(t>r.byteLength)throw new Error(`Invalid truncate option, must be less than or equal to ${r.byteLength}`);r=r.subarray(0,t)}return Mt(e,r)}var cm,eo,ns=p(()=>{"use strict";Nt();cm=20;eo=class{constructor(e,t,n,s,i){f(this,"name");f(this,"code");f(this,"encode");f(this,"minDigestLength");f(this,"maxDigestLength");this.name=e,this.code=t,this.encode=n,this.minDigestLength=s??cm,this.maxDigestLength=i}digest(e,t){if(t?.truncate!=null){if(t.truncate<this.minDigestLength)throw new Error(`Invalid truncate option, must be greater than or equal to ${this.minDigestLength}`);if(this.maxDigestLength!=null&&t.truncate>this.maxDigestLength)throw new Error(`Invalid truncate option, must be less than or equal to ${this.maxDigestLength}`)}if(e instanceof Uint8Array){let n=this.encode(e);return n instanceof Uint8Array?Xl(n,this.code,t?.truncate):n.then(s=>Xl(s,this.code,t?.truncate))}else throw Error("Unknown type, must be binary type")}}});var ro={};E(ro,{sha256:()=>to,sha512:()=>lm});function tu(r){return async e=>new Uint8Array(await crypto.subtle.digest(r,e))}var to,lm,no=p(()=>{"use strict";ns();to=dt({name:"sha2-256",code:18,encode:tu("SHA-256")}),lm=dt({name:"sha2-512",code:19,encode:tu("SHA-512")})});var ru=p(()=>{"use strict"});var nu=p(()=>{"use strict"});var su=p(()=>{"use strict"});var iu=p(()=>{"use strict"});var ou=p(()=>{"use strict";ru();nu();su();Di();iu()});var au=p(()=>{"use strict";We();ct();Nt();ns();Zn();ou()});var so,Rb,cu=p(()=>{"use strict";Wl();$l();ql();Vl();Cr();Pi();Jn();Ji();Gl();Yl();jl();Lr();Zl();no();au();so={...Zi,...Vi,...Qi,...qi,...Hi,...ki,...Ci,...Ii,...ji,...Gi},Rb={...ro,...Xi}});function uu(r,e,t,n){return{name:r,prefix:e,encoder:{name:r,prefix:e,encode:t},decoder:{decode:n}}}var lu,io,um,du,hu=p(()=>{"use strict";cu();ot();lu=uu("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),io=uu("ascii","a",r=>{let e="a";for(let t=0;t<r.length;t++)e+=String.fromCharCode(r[t]);return e},r=>{r=r.substring(1);let e=re(r.length);for(let t=0;t<r.length;t++)e[t]=r.charCodeAt(t);return e}),um={utf8:lu,"utf-8":lu,hex:so.base16,latin1:io,ascii:io,binary:io,...so},du=um});function zt(r,e="utf8"){let t=du[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.decoder.decode(`${t.prefix}${r}`)}var ss=p(()=>{"use strict";hu()});function oo(r){let e=r??8192,t=e>>>1,n,s=e;return function(o){if(o<1||o>t)return re(o);s+o>e&&(n=re(e),s=0);let a=n.subarray(s,s+=o);return(s&7)!==0&&(s=(s|7)+1),a}}var fu=p(()=>{"use strict";ot()});function ao(){}function hm(r){return globalThis.Buffer!=null?re(r):dm(r)}function co(r,e,t){e[t]=r&255}function fm(r,e,t){for(;r>127;)e[t++]=r&127|128,r>>>=7;e[t]=r}function is(r,e,t){for(;r.hi!==0;)e[t++]=r.lo&127|128,r.lo=(r.lo>>>7|r.hi<<25)>>>0,r.hi>>>=7;for(;r.lo>127;)e[t++]=r.lo&127|128,r.lo=r.lo>>>7;e[t++]=r.lo}function _r(r,e,t){e[t]=r&255,e[t+1]=r>>>8&255,e[t+2]=r>>>16&255,e[t+3]=r>>>24}function pm(r,e,t){e.set(r,t)}function mm(r,e,t){e.set(r,t)}function gm(r,e,t){r.length<40?zi(r,e,t):e.utf8Write!=null?e.utf8Write(r,t):e.set(zt(r),t)}function ho(){return new Kr}var ht,lo,dm,Kr,uo,fo=p(()=>{"use strict";Ni();ot();ss();Ki();Oi();fu();Wi();ht=class{constructor(e,t,n){f(this,"fn");f(this,"len");f(this,"next");f(this,"val");this.fn=e,this.len=t,this.next=void 0,this.val=n}};lo=class{constructor(e){f(this,"head");f(this,"tail");f(this,"len");f(this,"next");this.head=e.head,this.tail=e.tail,this.len=e.len,this.next=e.states}},dm=oo();Kr=class{constructor(){f(this,"len");f(this,"head");f(this,"tail");f(this,"states");this.len=0,this.head=new ht(ao,0,0),this.tail=this.head,this.states=null}_push(e,t,n){return this.tail=this.tail.next=new ht(e,t,n),this.len+=t,this}uint32(e){return this.len+=(this.tail=this.tail.next=new uo((e=e>>>0)<128?1:e<16384?2:e<2097152?3:e<268435456?4:5,e)).len,this}int32(e){return e<0?this._push(is,10,ne.fromNumber(e)):this.uint32(e)}sint32(e){return this.uint32((e<<1^e>>31)>>>0)}uint64(e){let t=ne.fromBigInt(e);return this._push(is,t.length(),t)}uint64Number(e){return this._push(Bl,Mr(e),e)}uint64String(e){return this.uint64(BigInt(e))}int64(e){return this.uint64(e)}int64Number(e){return this.uint64Number(e)}int64String(e){return this.uint64String(e)}sint64(e){let t=ne.fromBigInt(e).zzEncode();return this._push(is,t.length(),t)}sint64Number(e){let t=ne.fromNumber(e).zzEncode();return this._push(is,t.length(),t)}sint64String(e){return this.sint64(BigInt(e))}bool(e){return this._push(co,1,e?1:0)}fixed32(e){return this._push(_r,4,e>>>0)}sfixed32(e){return this.fixed32(e)}fixed64(e){let t=ne.fromBigInt(e);return this._push(_r,4,t.lo)._push(_r,4,t.hi)}fixed64Number(e){let t=ne.fromNumber(e);return this._push(_r,4,t.lo)._push(_r,4,t.hi)}fixed64String(e){return this.fixed64(BigInt(e))}sfixed64(e){return this.fixed64(e)}sfixed64Number(e){return this.fixed64Number(e)}sfixed64String(e){return this.fixed64String(e)}float(e){return this._push(Fl,4,e)}double(e){return this._push(Ul,8,e)}bytes(e){let t=e.length>>>0;return t===0?this._push(co,1,0):this.uint32(t)._push(pm,t,e)}string(e){let t=_l(e);return t!==0?this.uint32(t)._push(zi,t,e):this._push(co,1,0)}fork(){return this.states=new lo(this),this.head=this.tail=new ht(ao,0,0),this.len=0,this}reset(){return this.states!=null?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new ht(ao,0,0),this.len=0),this}ldelim(){let e=this.head,t=this.tail,n=this.len;return this.reset().uint32(n),n!==0&&(this.tail.next=e.next,this.tail=t,this.len+=n),this}finish(){let e=this.head.next,t=hm(this.len),n=0;for(;e!=null;)e.fn(e.val,t,n),n+=e.len,e=e.next;return t}};uo=class extends ht{constructor(t,n){super(fm,t,n);f(this,"next");this.next=void 0}};globalThis.Buffer!=null&&(Kr.prototype.bytes=function(r){let e=r.length>>>0;return this.uint32(e),e>0&&this._push(mm,e,r),this},Kr.prototype.string=function(r){let e=globalThis.Buffer.byteLength(r);return this.uint32(e),e>0&&this._push(gm,e,r),this})});function Or(r,e){let t=ho();return e.encode(r,t,{lengthDelimited:!1}),t.finish()}var pu=p(()=>{"use strict";fo()});function*zr(r,e,t){let n=Ur(r);yield*e.stream(n,void 0,"$",t)}var mu=p(()=>{"use strict";rs()});function as(r,e,t,n,s){return{name:r,type:e,encode:t,decode:n,stream:s}}var os,po=p(()=>{"use strict";os={VARINT:0,BIT64:1,LENGTH_DELIMITED:2,START_GROUP:3,END_GROUP:4,BIT32:5}});function mo(r){function e(i){if(r[i.toString()]==null)throw new Error("Invalid enum value");return r[i]}let t=function(o,a){let c=e(o);a.int32(c)},n=function(o){let a=o.int32();return e(a)},s=function*(o){let a=o.int32();yield e(a)};return as("enum",os.VARINT,t,n,s)}var gu=p(()=>{"use strict";po()});function Wr(r,e,t){return as("message",os.LENGTH_DELIMITED,r,e,t)}var yu=p(()=>{"use strict";po()});var $r,wu=p(()=>{"use strict";zl();pu();mu();gu();yu();rs();fo();$r=class extends Error{constructor(){super(...arguments);f(this,"code","ERR_MAX_LENGTH");f(this,"name","MaxLengthError")}}});var we,qr,bu,Su=p(()=>{"use strict";wu();(function(r){let e;(function(a){a.Raw="Raw",a.Directory="Directory",a.File="File",a.Metadata="Metadata",a.Symlink="Symlink",a.HAMTShard="HAMTShard"})(e=r.DataType||(r.DataType={}));let t;(function(a){a[a.Raw=0]="Raw",a[a.Directory=1]="Directory",a[a.File=2]="File",a[a.Metadata=3]="Metadata",a[a.Symlink=4]="Symlink",a[a.HAMTShard=5]="HAMTShard"})(t||(t={})),(function(a){a.codec=()=>mo(t)})(e=r.DataType||(r.DataType={}));let n;r.codec=()=>(n==null&&(n=Wr((a,c,l={})=>{if(l.lengthDelimited!==!1&&c.fork(),a.Type!=null&&(c.uint32(8),r.DataType.codec().encode(a.Type,c)),a.Data!=null&&(c.uint32(18),c.bytes(a.Data)),a.filesize!=null&&(c.uint32(24),c.uint64(a.filesize)),a.blocksizes!=null&&a.blocksizes.length>0)for(let u of a.blocksizes)c.uint32(32),c.uint64(u);a.hashType!=null&&(c.uint32(40),c.uint64(a.hashType)),a.fanout!=null&&(c.uint32(48),c.uint64(a.fanout)),a.mode!=null&&(c.uint32(56),c.uint32(a.mode)),a.mtime!=null&&(c.uint32(66),qr.codec().encode(a.mtime,c)),l.lengthDelimited!==!1&&c.ldelim()},(a,c,l={})=>{let u={blocksizes:[]},d=c==null?a.len:a.pos+c;for(;a.pos<d;){let h=a.uint32();switch(h>>>3){case 1:{u.Type=r.DataType.codec().decode(a);break}case 2:{u.Data=a.bytes();break}case 3:{u.filesize=a.uint64();break}case 4:{if(l.limits?.blocksizes!=null&&u.blocksizes.length===l.limits.blocksizes)throw new $r('Decode error - repeated field "blocksizes" had too many elements');u.blocksizes.push(a.uint64());break}case 5:{u.hashType=a.uint64();break}case 6:{u.fanout=a.uint64();break}case 7:{u.mode=a.uint32();break}case 8:{u.mtime=qr.codec().decode(a,a.uint32(),{limits:l.limits?.mtime});break}default:{a.skipType(h&7);break}}}return u},function*(a,c,l,u={}){let d={blocksizes:0},h=c==null?a.len:a.pos+c;for(;a.pos<h;){let m=a.uint32();switch(m>>>3){case 1:{yield{field:`${l}.Type`,value:r.DataType.codec().decode(a)};break}case 2:{yield{field:`${l}.Data`,value:a.bytes()};break}case 3:{yield{field:`${l}.filesize`,value:a.uint64()};break}case 4:{if(u.limits?.blocksizes!=null&&d.blocksizes===u.limits.blocksizes)throw new $r('Streaming decode error - repeated field "blocksizes" had too many elements');yield{field:`${l}.blocksizes[]`,index:d.blocksizes,value:a.uint64()},d.blocksizes++;break}case 5:{yield{field:`${l}.hashType`,value:a.uint64()};break}case 6:{yield{field:`${l}.fanout`,value:a.uint64()};break}case 7:{yield{field:`${l}.mode`,value:a.uint32()};break}case 8:{yield*qr.codec().stream(a,a.uint32(),`${l}.mtime`,{limits:u.limits?.mtime});break}default:{a.skipType(m&7);break}}}})),n);function s(a){return Or(a,r.codec())}r.encode=s;function i(a,c){return Nr(a,r.codec(),c)}r.decode=i;function o(a,c){return zr(a,r.codec(),c)}r.stream=o})(we||(we={}));(function(r){let e;r.codec=()=>(e==null&&(e=Wr((i,o,a={})=>{a.lengthDelimited!==!1&&o.fork(),i.Seconds!=null&&(o.uint32(8),o.int64(i.Seconds)),i.FractionalNanoseconds!=null&&(o.uint32(21),o.fixed32(i.FractionalNanoseconds)),a.lengthDelimited!==!1&&o.ldelim()},(i,o,a={})=>{let c={},l=o==null?i.len:i.pos+o;for(;i.pos<l;){let u=i.uint32();switch(u>>>3){case 1:{c.Seconds=i.int64();break}case 2:{c.FractionalNanoseconds=i.fixed32();break}default:{i.skipType(u&7);break}}}return c},function*(i,o,a,c={}){let l=o==null?i.len:i.pos+o;for(;i.pos<l;){let u=i.uint32();switch(u>>>3){case 1:{yield{field:`${a}.Seconds`,value:i.int64()};break}case 2:{yield{field:`${a}.FractionalNanoseconds`,value:i.fixed32()};break}default:{i.skipType(u&7);break}}}})),e);function t(i){return Or(i,r.codec())}r.encode=t;function n(i,o){return Nr(i,r.codec(),o)}r.decode=n;function s(i,o){return zr(i,r.codec(),o)}r.stream=s})(qr||(qr={}));(function(r){let e;r.codec=()=>(e==null&&(e=Wr((i,o,a={})=>{a.lengthDelimited!==!1&&o.fork(),i.MimeType!=null&&(o.uint32(10),o.string(i.MimeType)),a.lengthDelimited!==!1&&o.ldelim()},(i,o,a={})=>{let c={},l=o==null?i.len:i.pos+o;for(;i.pos<l;){let u=i.uint32();u>>>3===1?c.MimeType=i.string():i.skipType(u&7)}return c},function*(i,o,a,c={}){let l=o==null?i.len:i.pos+o;for(;i.pos<l;){let u=i.uint32();u>>>3===1?yield{field:`${a}.MimeType`,value:i.string()}:i.skipType(u&7)}})),e);function t(i){return Or(i,r.codec())}r.encode=t;function n(i,o){return Nr(i,r.codec(),o)}r.decode=n;function s(i,o){return zr(i,r.codec(),o)}r.stream=s})(bu||(bu={}))});var Au,ym,xu,vu,H,Wt=p(()=>{"use strict";Ui();Su();Ui();Au={Raw:"raw",Directory:"directory",File:"file",Metadata:"metadata",Symlink:"symlink",HAMTShard:"hamt-sharded-directory"},ym=["directory","hamt-sharded-directory"],xu=parseInt("0644",8),vu=parseInt("0755",8),H=class r{constructor(e={type:"file"}){f(this,"type");f(this,"data");f(this,"blockSizes");f(this,"hashType");f(this,"fanout");f(this,"mtime");f(this,"_mode");f(this,"_originalMode");let{type:t,data:n,blockSizes:s,hashType:i,fanout:o,mtime:a,mode:c}=e;if(t!=null&&!Object.values(Au).includes(t))throw new Fr("Type: "+t+" is not valid");this.type=t??"file",this.data=n,this.hashType=i,this.fanout=o,this.blockSizes=s??[],this._originalMode=0,this.mode=c,this.mtime=a}static unmarshal(e){let t=we.decode(e),n=new r({type:Au[t.Type!=null?t.Type.toString():"File"],data:t.Data,blockSizes:t.blocksizes,mode:t.mode,mtime:t.mtime!=null?{secs:t.mtime.Seconds??0n,nsecs:t.mtime.FractionalNanoseconds}:void 0,fanout:t.fanout});return n._originalMode=t.mode??0,n}set mode(e){e==null?this._mode=this.isDirectory()?vu:xu:this._mode=e&4095}get mode(){return this._mode}isDirectory(){return ym.includes(this.type)}addBlockSize(e){this.blockSizes.push(e)}removeBlockSize(e){this.blockSizes.splice(e,1)}fileSize(){if(this.isDirectory())return 0n;let e=0n;return this.blockSizes.forEach(t=>{e+=t}),this.data!=null&&(e+=BigInt(this.data.length)),e}marshal(){let e;switch(this.type){case"raw":e=we.DataType.Raw;break;case"directory":e=we.DataType.Directory;break;case"file":e=we.DataType.File;break;case"metadata":e=we.DataType.Metadata;break;case"symlink":e=we.DataType.Symlink;break;case"hamt-sharded-directory":e=we.DataType.HAMTShard;break;default:throw new Fr(`Type: ${e} is not valid`)}let t=this.data;(this.data==null||this.data.length===0)&&(t=void 0);let n;this.mode!=null&&(n=this._originalMode&4294963200|(this.mode??0),n===xu&&!this.isDirectory()&&(n=void 0),n===vu&&this.isDirectory()&&(n=void 0));let s;return this.mtime!=null&&(s={Seconds:this.mtime.secs,FractionalNanoseconds:this.mtime.nsecs}),we.encode({Type:e,Data:t,filesize:this.isDirectory()?void 0:this.fileSize(),blocksizes:this.blockSizes,hashType:this.hashType,fanout:this.fanout,mode:n,mtime:s})}}});var Re,cs=p(()=>{"use strict";Re=class extends Event{constructor(t,n){super(t);f(this,"type");f(this,"detail");this.type=t,this.detail=n}}});var ue,$t=p(()=>{"use strict";lt();ct();no();ue=async(r,e,t)=>{t.codec==null&&(t.codec=Rr);let n=await to.digest(r),s=$.create(t.cidVersion??1,t.codec.code,n);return await e.put(s,r,t),s}});function ku(r){return async function*(t,n){let s=0n;for await(let i of t.content)yield async()=>{let o,a={codec:Rr,cidVersion:r.cidVersion,onProgress:r.onProgress};r.rawLeaves?(a.codec=Ot,a.cidVersion=1):(o=new H({type:r.leafType,data:i}),i=Z({Data:o.marshal(),Links:[]}));let c=await ue(i,n,a);return s+=BigInt(i.byteLength),r.onProgress?.(new Re("unixfs:importer:progress:file:write",{bytesWritten:s,cid:c,path:t.path})),{cid:c,unixfs:o,size:BigInt(i.length),block:i}}}}var Cu=p(()=>{"use strict";lt();Wt();Lr();cs();$t()});var qt,jt,Ht,go,Vt,yo,Gt,wo,Yt,be,Ve,Hr=p(()=>{"use strict";qt=class qt extends Error{constructor(t="Invalid parameters"){super(t);f(this,"name",qt.name);f(this,"code",qt.code)}};f(qt,"name","InvalidParametersError"),f(qt,"code","ERR_INVALID_PARAMS");jt=qt,Ht=class Ht extends Error{constructor(t="Invalid avg chunk size"){super(t);f(this,"name",Ht.name);f(this,"code",Ht.code)}};f(Ht,"name","InvalidAvgChunkSizeError"),f(Ht,"code","ERR_INVALID_AVG_CHUNK_SIZE");go=Ht,Vt=class Vt extends Error{constructor(t="Invalid chunk size"){super(t);f(this,"name",Vt.name);f(this,"code",Vt.code)}};f(Vt,"name","InvalidChunkSizeError"),f(Vt,"code","ERR_INVALID_CHUNK_SIZE");yo=Vt,Gt=class Gt extends Error{constructor(t="Invalid min chunk size"){super(t);f(this,"name",Gt.name);f(this,"code",Gt.code)}};f(Gt,"name","InvalidMinChunkSizeError"),f(Gt,"code","ERR_INVALID_MIN_CHUNK_SIZE");wo=Gt,Yt=class Yt extends Error{constructor(t="Invalid content"){super(t);f(this,"name",Yt.name);f(this,"code",Yt.code)}};f(Yt,"name","InvalidContentError"),f(Yt,"code","ERR_INVALID_CONTENT");be=Yt,Ve=class extends Error{constructor(){super(...arguments);f(this,"name",be.name);f(this,"code",be.code)}};f(Ve,"name","InvalidShardingStrategyError"),f(Ve,"code","ERR_SHARDING_STRATEGY")});var Pu,Iu=p(()=>{"use strict";lt();Wt();$t();Pu=async(r,e,t)=>{let n=new H({type:"directory",mtime:r.mtime,mode:r.mode}),s=Z(Q({Data:n.marshal()})),i=await ue(s,e,t),o=r.path;return{cid:i,path:o,unixfs:n,size:BigInt(s.length),originalPath:r.originalPath,block:s}}});async function*wm(r,e,t){let n=-1,s;for await(let i of vr(t.bufferImporter(r,e),t.blockWriteConcurrency)){if(n++,n===0){s={...i,single:!0};continue}else n===1&&s!=null&&(yield{...s,block:void 0,single:void 0},s=void 0);yield{...i,block:void 0}}s!=null&&(yield s)}function Bu(r){return r.single===!0}var bm,Du,Tu=p(()=>{"use strict";lt();Wt();wi();Lr();cs();$t();bm=(r,e,t)=>async function(s){if(s.length===1&&Bu(s[0])&&t.reduceSingleLeafToSelf){let u=s[0],d=u.block;return Bu(u)&&(r.mtime!==void 0||r.mode!==void 0)&&(u.unixfs=new H({type:"file",mtime:r.mtime,mode:r.mode,data:u.block}),d={Data:u.unixfs.marshal(),Links:[]},u.block=Z(Q(d)),u.cid=await ue(u.block,e,{...t,cidVersion:t.cidVersion}),u.size=BigInt(u.block.length)),t.onProgress?.(new Re("unixfs:importer:progress:file:layout",{cid:u.cid,path:r.originalPath})),{cid:u.cid,path:r.path,unixfs:u.unixfs,size:u.size,originalPath:r.originalPath}}let i=new H({type:"file",mtime:r.mtime,mode:r.mode}),o=s.filter(u=>u.cid.code===Kt&&u.size>0||u.unixfs!=null&&u.unixfs.data==null&&u.unixfs.fileSize()>0n?!0:!!u.unixfs?.data?.length).map(u=>u.cid.code===Kt?(i.addBlockSize(u.size),{Name:"",Tsize:Number(u.size),Hash:u.cid}):(u.unixfs?.data==null?i.addBlockSize(u.unixfs?.fileSize()??0n):i.addBlockSize(BigInt(u.unixfs.data.length)),{Name:"",Tsize:Number(u.size),Hash:u.cid})),a={Data:i.marshal(),Links:o},c=Z(Q(a)),l=await ue(c,e,t);return t.onProgress?.(new Re("unixfs:importer:progress:file:layout",{cid:l,path:r.originalPath})),{cid:l,path:r.path,unixfs:i,size:BigInt(c.length+a.Links.reduce((u,d)=>u+(d.Tsize??0),0)),originalPath:r.originalPath,block:c}},Du=async(r,e,t)=>t.layout(wm(r,e,t),bm(r,e,t))});function Sm(r){return Symbol.iterator in r}function Am(r){return Symbol.asyncIterator in r}function xm(r){try{if(r instanceof Uint8Array)return(async function*(){yield r})();if(Sm(r))return(async function*(){yield*r})();if(Am(r))return r}catch{throw new be("Content was invalid")}throw new be("Content was invalid")}function Ru(r){return async function*(t,n){for await(let s of t){let i;if(s.path!=null&&(i=s.path,s.path=s.path.split("/").filter(o=>o!=null&&o!==".").join("/")),vm(s)){let o={path:s.path,mtime:s.mtime,mode:s.mode,content:(async function*(){let c=0n;for await(let l of r.chunker(r.chunkValidator(xm(s.content)))){let u=BigInt(l.byteLength);c+=u,r.onProgress?.(new Re("unixfs:importer:progress:file:read",{bytesRead:c,chunkSize:u,path:s.path})),yield l}})(),originalPath:i},a=r.fileBuilder??Du;yield async()=>a(o,n,r)}else if(s.path!=null){let o={path:s.path,mtime:s.mtime,mode:s.mode,originalPath:i},a=r.dirBuilder??Pu;yield async()=>a(o,n,r)}else throw new Error("Import candidate must have content or path or both")}}}function vm(r){return r.content!=null}var Fu=p(()=>{"use strict";cs();Hr();Iu();Tu()});var Mu,Uu=p(()=>{"use strict";ss();Hr();Mu=()=>async function*(e){for await(let t of e){if(t.length===void 0)throw new be("Content was invalid");if(typeof t=="string"||t instanceof String)yield zt(t.toString());else if(Array.isArray(t))yield Uint8Array.from(t);else if(t instanceof Uint8Array)yield t;else throw new be("Content was invalid")}}});function bo(r){let e=r?.maxChildrenPerNode??Em;return async function t(n,s){let i=[];for await(let o of Hn(n,e))i.push(await s(o));return i.length>1?t(i,s):i[0]}}var Em,Nu=p(()=>{"use strict";yi();Em=174});function km(r){return r[Symbol.asyncIterator]!=null}function Cm(r){if(km(r))return(async()=>{let t=[];for await(let n of r)t.push(n);return t})();let e=[];for(let t of r)e.push(t);return e}var Lu,_u=p(()=>{"use strict";Lu=Cm});var Ku=p(()=>{"use strict";Nu()});var ke,ls=p(()=>{"use strict";ct();ke=class{constructor(e,t){f(this,"options");f(this,"root");f(this,"dir");f(this,"path");f(this,"dirty");f(this,"flat");f(this,"parent");f(this,"parentKey");f(this,"unixfs");f(this,"mode");f(this,"mtime");f(this,"cid");f(this,"size");f(this,"nodeSize");this.options=t??{},this.root=e.root,this.dir=e.dir,this.path=e.path,this.dirty=e.dirty,this.flat=e.flat,this.parent=e.parent,this.parentKey=e.parentKey,this.unixfs=e.unixfs,this.mode=e.mode,this.mtime=e.mtime}}});function Im(r){let e=0;return r>=4294967296&&(r=Math.floor(r/4294967296),e=32),r>=65536&&(r>>>=16,e+=16),r>=256&&(r>>>=8,e+=8),e+Pm[r]}function Ge(r){return r%2===0&&r++,Math.floor((Im(r)+6)/7)}function us(r){let e=0;for(let t=0;t<r.length;t++){let n=r.charCodeAt(t);n<128?e++:n<2048?e+=2:n>=55296&&n<=56319&&t+1<r.length?(t++,e+=4):e+=3}return e}function Ou(r,e,t){let n=1+Ge(e)+e;return n+=1+Ge(r)+r,n+=1+Ge(t),1+Ge(n)+n}function zu(r,e){let t=2;if(r!==void 0&&r!==Bm&&(t+=1+Ge(r)),e!=null){let n=0,s=Number(e.secs);s<0?n+=11:n+=1+Ge(s),e.nsecs!=null&&(n+=5),t+=1+Ge(n)+n}return 1+Ge(t)+t}var Pm,Bm,Wu=p(()=>{"use strict";Pm=[0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8];Bm=493});function So(r,e){return e?.cid!=null&&e?.size!=null?r+e.cid.byteLength:0}function Ao(r,e){return e?.cid!=null&&e?.size!=null?Ou(r,e.cid.byteLength,Number(e.size)):0}var ft,xo=p(()=>{"use strict";lt();Wt();ls();vo();Wu();$t();ft=class extends ke{constructor(t,n){super(t,n);f(this,"_children");this._children=new Map}async put(t,n){if(this.nodeSize!==void 0){let s=this._children.get(t),i=us(t),o=this.options?.shardSplitStrategy;if(o==="links-bytes")this.nodeSize-=So(i,s),this.nodeSize+=So(i,n);else if(o==="block-bytes")this.nodeSize-=Ao(i,s),this.nodeSize+=Ao(i,n);else throw new Ve(`Invalid shardSplitStrategy: ${o}`);this.nodeSize<0&&(this.nodeSize=void 0)}this.cid=void 0,this.size=void 0,this._children.set(t,n)}async get(t){return Promise.resolve(this._children.get(t))}childCount(){return this._children.size}directChildrenCount(){return this.childCount()}onlyChild(){return this._children.values().next().value}*eachChildSeries(){for(let[t,n]of this._children.entries())yield{key:t,child:n}}marshal(){let t=new H({type:"directory",mtime:this.mtime,mode:this.mode}),n=[];for(let[i,o]of this._children.entries())if(!(o.size==null||o.cid==null)){if(o.cid==null)throw new Error("Directory contents must be flushed before marshaling");n.push({Hash:o.cid,Name:i,Tsize:o.size==null?void 0:Number(o.size)})}let s={Data:t.marshal(),Links:n};return Z(Q(s))}async estimateNodeSize(){if(this.nodeSize!==void 0)return this.nodeSize;let t=this.options?.shardSplitStrategy;if(t==="links-bytes"){this.nodeSize=0;for(let[n,s]of this._children.entries())this.nodeSize+=So(us(n),s)}else if(t==="block-bytes"){this.nodeSize=zu(this.mode,this.mtime);for(let[n,s]of this._children.entries())this.nodeSize+=Ao(us(n),s)}else throw new Ve(`Invalid shardSplitStrategy: ${t}`);return this.nodeSize}async*flush(t){let n=[];for(let[l,u]of this._children.entries()){let d=u;if(u instanceof ke)for await(let h of u.flush(t))d=h,yield h;d.size!=null&&d.cid!=null&&n.push({Name:l,Tsize:Number(d.size),Hash:d.cid})}let s=new H({type:"directory",mtime:this.mtime,mode:this.mode}),i={Data:s.marshal(),Links:n},o=Z(Q(i)),a=await ue(o,t,this.options),c=o.length+i.Links.reduce((l,u)=>l+(u.Tsize??0),0);this.cid=a,this.size=c,yield{cid:a,unixfs:s,path:this.path,size:BigInt(c)}}}});function Ye(r,e){let t=r.lo+e.lo>>>0,n=r.hi+e.hi+(t<r.lo?1:0)>>>0;return{lo:t,hi:n}}function Dm(r,e){return r+e>>>0}function de(r,e){let t=r.lo&65535,n=r.lo>>>16,s=e.lo&65535,i=e.lo>>>16,o=t*s,a=t*i,c=n*s,l=n*i,u=(o>>>16)+(a&65535)+(c&65535)>>>0,d=(u<<16|o&65535)>>>0,h=l+(a>>>16)+(c>>>16)+(u>>>16),m=Math.imul(r.lo,e.hi),g=Math.imul(r.hi,e.lo),y=h+m+g>>>0;return{lo:d,hi:y}}function pt(r,e){return Math.imul(r,e)>>>0}function Jt(r,e){if(e===0)return r;if(e===32)return{lo:r.hi,hi:r.lo};if(e<32){let s=(r.lo<<e|r.hi>>>32-e)>>>0,i=(r.hi<<e|r.lo>>>32-e)>>>0;return{lo:s,hi:i}}e-=32;let t=(r.hi<<e|r.lo>>>32-e)>>>0,n=(r.lo<<e|r.hi>>>32-e)>>>0;return{lo:t,hi:n}}function U(r,e){return{lo:(r.lo^e.lo)>>>0,hi:(r.hi^e.hi)>>>0}}function Eo(r,e){if(e===0)return r;if(e<32){let t=(r.lo>>>e|r.hi<<32-e)>>>0,n=r.hi>>>e;return{lo:t,hi:n}}return{lo:r.hi>>>e-32,hi:0}}function D(r,e){return{lo:r>>>0,hi:e>>>0}}function ko(r,e){return(r<<e|r>>>32-e)>>>0}function $u(r,e){let t=e*8,n=r[t]|r[t+1]<<8|r[t+2]<<16|r[t+3]<<24,s=r[t+4]|r[t+5]<<8|r[t+6]<<16|r[t+7]<<24;return{lo:n>>>0,hi:s>>>0}}function Tm(r,e){let t=e*4;return(r[t]|r[t+1]<<8|r[t+2]<<16|r[t+3]<<24)>>>0}function qu(r){return r=U(r,Eo(r,33)),r=de(r,D(3981806797,4283543511)),r=U(r,Eo(r,33)),r=de(r,D(444984403,3301882366)),r=U(r,Eo(r,33)),r}function Rm(r){return r^=r>>>16,r=pt(r,2246822507),r^=r>>>13,r=pt(r,3266489909),r^=r>>>16,r}function Co(r,e=0){let t=D(e,0),n=D(e,0),s=r.length,i=Math.floor(s/16),o=D(289559509,2277735313),a=D(658871167,1291169091);for(let h=0;h<i;h++){let m=$u(r,h*2),g=$u(r,h*2+1);m=de(m,o),m=Jt(m,31),m=de(m,a),t=U(t,m),t=Jt(t,27),t=Ye(t,n),t=Ye(de(t,D(5,0)),D(1390208809,0)),g=de(g,a),g=Jt(g,33),g=de(g,o),n=U(n,g),n=Jt(n,31),n=Ye(n,t),n=Ye(de(n,D(5,0)),D(944331445,0))}let c=D(0,0),l=D(0,0),u=r.slice(i*16);switch(u.length){case 15:l=U(l,D(0,u[14]<<16));case 14:l=U(l,D(0,u[13]<<8));case 13:l=U(l,D(0,u[12]));case 12:l=U(l,D(u[11]<<24,0));case 11:l=U(l,D(u[10]<<16,0));case 10:l=U(l,D(u[9]<<8,0));case 9:l=U(l,D(u[8],0)),l=de(l,a),l=Jt(l,33),l=de(l,o),n=U(n,l);case 8:c=U(c,D(0,u[7]<<24));case 7:c=U(c,D(0,u[6]<<16));case 6:c=U(c,D(0,u[5]<<8));case 5:c=U(c,D(0,u[4]));case 4:c=U(c,D(u[3]<<24,0));case 3:c=U(c,D(u[2]<<16,0));case 2:c=U(c,D(u[1]<<8,0));case 1:c=U(c,D(u[0],0)),c=de(c,o),c=Jt(c,31),c=de(c,a),t=U(t,c)}let d=D(s,0);return t=U(t,d),n=U(n,d),t=Ye(t,n),n=Ye(n,t),t=qu(t),n=qu(n),t=Ye(t,n),n=Ye(n,t),new Uint8Array([t.hi>>>24&255,t.hi>>>16&255,t.hi>>>8&255,t.hi&255,t.lo>>>24&255,t.lo>>>16&255,t.lo>>>8&255,t.lo&255,n.hi>>>24&255,n.hi>>>16&255,n.hi>>>8&255,n.hi&255,n.lo>>>24&255,n.lo>>>16&255,n.lo>>>8&255,n.lo&255])}function Hu(r,e=0){let t=e>>>0,n=r.length,s=Math.floor(n/4),i=3432918353,o=461845907;for(let l=0;l<s;l++){let u=Tm(r,l);u=pt(u,i),u=ko(u,15),u=pt(u,o),t^=u,t=ko(t,13),t=Dm(pt(t,5),3864292196)}let a=r.slice(s*4),c=0;switch(a.length){case 3:c^=a[2]<<16;case 2:c^=a[1]<<8;case 1:c^=a[0],c=pt(c,i),c=ko(c,15),c=pt(c,o),t^=c}return t^=n,t=Rm(t),t}var Vu=p(()=>{"use strict"});function Mm(r){let e=new Array(4);for(let t=0;t<4;t++)e[t]=r&255,r=r>>8;return new Uint8Array(e)}var pS,Gu,mS,Yu=p(()=>{"use strict";ns();Vu();pS=dt({name:"murmur3-32",code:35,encode:r=>Mm(Hu(r))}),Gu=dt({name:"murmur3-128",code:34,encode:r=>Co(r)}),mS=dt({name:"murmur3-x64-64",code:34,encode:r=>Co(r).subarray(0,8)})});var Qt,je,ju=p(()=>{"use strict";Qt=class Qt extends Error{constructor(t="Not Found"){super(t);f(this,"name",Qt.name);f(this,"code",Qt.code)}};f(Qt,"name","NotFoundError"),f(Qt,"code","ERR_NOT_FOUND");je=Qt});var ds=p(()=>{"use strict";ju()});var Ce,Vr=p(()=>{"use strict";Ce=class{has(e,t){return Promise.reject(new Error(".has is not implemented"))}put(e,t,n){return Promise.reject(new Error(".put is not implemented"))}async*putMany(e,t){for await(let{cid:n,bytes:s}of e)await this.put(n,s,t),yield n}get(e,t){throw new Error(".get is not implemented")}async*getMany(e,t){for await(let n of e)yield{cid:n,bytes:this.get(n,t)}}delete(e,t){return Promise.reject(new Error(".delete is not implemented"))}async*deleteMany(e,t){for await(let n of e)await this.delete(n,t),yield n}async*getAll(e){throw new Error(".getAll is not implemented")}}});var Zt,Po=p(()=>{"use strict";ds();Vr();Zt=class extends Ce{put(e,t,n){return n?.signal?.throwIfAborted(),e}get(e,t){throw t?.signal?.throwIfAborted(),new je}has(e,t){return t?.signal?.throwIfAborted(),!1}async delete(e,t){t?.signal?.throwIfAborted()}async*getAll(e){e?.signal?.throwIfAborted()}}});var Zu=P((CS,Qu)=>{"use strict";Qu.exports=class{constructor(){this._bitArrays=[],this._data=[],this._length=0,this._changedLength=!1,this._changedData=!1}set(e,t){let n=this._internalPositionFor(e,!1);if(t===void 0)n!==-1&&(this._unsetInternalPos(n),this._unsetBit(e),this._changedLength=!0,this._changedData=!0);else{let s=!1;n===-1?(n=this._data.length,this._setBit(e),this._changedData=!0):s=!0,this._setInternalPos(n,e,t,s),this._changedLength=!0}}unset(e){this.set(e,void 0)}get(e){this._sortData();let t=this._internalPositionFor(e,!0);if(t!==-1)return this._data[t][1]}push(e){return this.set(this.length,e),this.length}get length(){if(this._sortData(),this._changedLength){let e=this._data[this._data.length-1];this._length=e?e[0]+1:0,this._changedLength=!1}return this._length}forEach(e){let t=0;for(;t<this.length;)e(this.get(t),t,this),t++}map(e){let t=0,n=new Array(this.length);for(;t<this.length;)n[t]=e(this.get(t),t,this),t++;return n}reduce(e,t){let n=0,s=t;for(;n<this.length;){let i=this.get(n);s=e(s,i,n),n++}return s}find(e){let t=0,n,s;for(;t<this.length&&!n;)s=this.get(t),n=e(s),t++;return n?s:void 0}_internalPositionFor(e,t){let n=this._bytePosFor(e,t);if(n>=this._bitArrays.length)return-1;let s=this._bitArrays[n],i=e-n*7;if(!((s&1<<i)>0))return-1;let a=this._bitArrays.slice(0,n).reduce(Um,0),c=~(4294967295<<i+1),l=Ju(s&c);return a+l-1}_bytePosFor(e,t){let n=Math.floor(e/7),s=n+1;for(;!t&&this._bitArrays.length<s;)this._bitArrays.push(0);return n}_setBit(e){let t=this._bytePosFor(e,!1);this._bitArrays[t]|=1<<e-t*7}_unsetBit(e){let t=this._bytePosFor(e,!1);this._bitArrays[t]&=~(1<<e-t*7)}_setInternalPos(e,t,n,s){let i=this._data,o=[t,n];if(s)this._sortData(),i[e]=o;else{if(i.length)if(i[i.length-1][0]>=t)i.push(o);else if(i[0][0]<=t)i.unshift(o);else{let a=Math.round(i.length/2);this._data=i.slice(0,a).concat(o).concat(i.slice(a))}else this._data.push(o);this._changedData=!0,this._changedLength=!0}}_unsetInternalPos(e){this._data.splice(e,1)}_sortData(){this._changedData&&this._data.sort(Nm),this._changedData=!1}bitField(){let e=[],t=8,n=0,s=0,i,o=this._bitArrays.slice();for(;o.length||n;){n===0&&(i=o.shift(),n=7);let c=Math.min(n,t),l=~(255<<c),u=i&l;s|=u<<8-t,i=i>>>c,n-=c,t-=c,(!t||!n&&!o.length)&&(e.push(s),s=0,t=8)}for(var a=e.length-1;a>0&&e[a]===0;a--)e.pop();return e}compactArray(){return this._sortData(),this._data.map(Lm)}};function Um(r,e){return r+Ju(e)}function Ju(r){let e=r;return e=e-(e>>1&1431655765),e=(e&858993459)+(e>>2&858993459),(e+(e>>4)&252645135)*16843009>>24}function Nm(r,e){return r[0]-e[0]}function Lm(r){return r[1]}});function _m(r){return!!r}function Km(r,e){return r.key}function Om(r){return r}async function ed(r,e,t){let n=[];for(let s of r._children.compactArray())if(s instanceof Je)await ed(s,e,t);else{let i=await e(s);n.push({bitField:r._children.bitField(),children:i})}return t(n)}var Xu,Je,td=p(()=>{"use strict";Xu=er(Zu(),1);ss();Je=class r{constructor(e,t,n=0){f(this,"_options");f(this,"_popCount");f(this,"_parent");f(this,"_posAtParent");f(this,"_children");f(this,"key");this._options=e,this._popCount=0,this._parent=t,this._posAtParent=n,this._children=new Xu.default,this.key=null}async put(e,t){let n=await this._findNewBucketAndPos(e);n.bucket._putAt(n,e,t)}async get(e){let t=await this._findChild(e);if(t!=null)return t.value}async del(e){let t=await this._findPlace(e),n=t.bucket._at(t.pos);n!=null&&n.key===e&&t.bucket._delAt(t.pos)}leafCount(){return this._children.compactArray().reduce((t,n)=>n instanceof r?t+n.leafCount():t+1,0)}childrenCount(){return this._children.length}onlyChild(){return this._children.get(0)}*eachLeafSeries(){let e=this._children.compactArray();for(let t of e)t instanceof r?yield*t.eachLeafSeries():yield t}serialize(e,t){let n=[];return t(this._children.reduce((s,i,o)=>(i!=null&&(i instanceof r?s.push(i.serialize(e,t)):s.push(e(i,o))),s),n))}async asyncTransform(e,t){return ed(this,e,t)}toJSON(){return this.serialize(Km,Om)}prettyPrint(){return JSON.stringify(this.toJSON(),null," ")}tableSize(){return Math.pow(2,this._options.bits)}async _findChild(e){let t=await this._findPlace(e),n=t.bucket._at(t.pos);if(!(n instanceof r)&&n!=null&&n.key===e)return n}async _findPlace(e){let t=this._options.hash(typeof e=="string"?zt(e):e),n=await t.take(this._options.bits),s=this._children.get(n);return s instanceof r?s._findPlace(t):{bucket:this,pos:n,hash:t,existingChild:s}}async _findNewBucketAndPos(e){let t=await this._findPlace(e);if(t.existingChild!=null&&t.existingChild.key!==e){let n=new r(this._options,t.bucket,t.pos);t.bucket._putObjectAt(t.pos,n);let s=await n._findPlace(t.existingChild.hash);return s.bucket._putAt(s,t.existingChild.key,t.existingChild.value),n._findNewBucketAndPos(t.hash)}return t}_putAt(e,t,n){this._putObjectAt(e.pos,{key:t,value:n,hash:e.hash})}_putObjectAt(e,t){this._children.get(e)==null&&this._popCount++,this._children.set(e,t)}_delAt(e){if(e===-1)throw new Error("Invalid position");this._children.get(e)!=null&&this._popCount--,this._children.unset(e),this._level()}_level(){if(this._parent!=null&&this._popCount<=1)if(this._popCount===1){let e=this._children.find(_m);if(e!=null&&!(e instanceof r)){let t=e.hash;t.untake(this._options.bits);let n={pos:this._posAtParent,hash:t,bucket:this._parent};this._parent._putAt(n,e.key,e.value)}}else this._parent._delAt(this._posAtParent)}_at(e){return this._children.get(e)}}});function $m(r,e,t){let n=qm(e,t);return(r&n)>>>e}function qm(r,e){return zm[r]&Wm[Math.min(e+r-1,7)]}var zm,Wm,hs,rd=p(()=>{"use strict";zm=[255,254,252,248,240,224,192,128],Wm=[1,3,7,15,31,63,127,255],hs=class{constructor(e){f(this,"_value");f(this,"_currentBytePos");f(this,"_currentBitPos");this._value=e,this._currentBytePos=e.length-1,this._currentBitPos=7}availableBits(){return this._currentBitPos+1+this._currentBytePos*8}totalBits(){return this._value.length*8}take(e){let t=e,n=0;for(;t>0&&this._haveBits();){let s=this._value[this._currentBytePos],i=this._currentBitPos+1,o=Math.min(i,t),a=$m(s,i-o,o);n=(n<<o)+a,t-=o,this._currentBitPos-=o,this._currentBitPos<0&&(this._currentBitPos=7,this._currentBytePos--)}return n}untake(e){for(this._currentBitPos+=e;this._currentBitPos>7;)this._currentBitPos-=8,this._currentBytePos+=1}_haveBits(){return this._currentBytePos>=0}}});function nd(r){function e(t){return t instanceof fs?t:new fs(t,r)}return e}var fs,sd=p(()=>{"use strict";bi();rd();fs=class{constructor(e,t){f(this,"_value");f(this,"_hashFn");f(this,"_depth");f(this,"_availableBits");f(this,"_currentBufferIndex");f(this,"_buffers");if(!(e instanceof Uint8Array))throw new Error("can only hash Uint8Arrays");this._value=e,this._hashFn=t,this._depth=-1,this._availableBits=0,this._currentBufferIndex=0,this._buffers=[]}async take(e){let t=e;for(;this._availableBits<t;)await this._produceMoreBits();let n=0;for(;t>0;){let s=this._buffers[this._currentBufferIndex],i=Math.min(s.availableBits(),t),o=s.take(i);n=(n<<i)+o,t-=i,this._availableBits-=i,s.availableBits()===0&&this._currentBufferIndex++}return n}untake(e){let t=e;for(;t>0;){let n=this._buffers[this._currentBufferIndex],s=Math.min(n.totalBits()-n.availableBits(),t);n.untake(s),t-=s,this._availableBits+=s,this._currentBufferIndex>0&&n.totalBits()===n.availableBits()&&(this._depth--,this._currentBufferIndex--)}}async _produceMoreBits(){this._depth++;let e=this._depth>0?Er([this._value,Uint8Array.from([this._depth])]):this._value,t=await this._hashFn(e),n=new hs(t);this._buffers.push(n),this._availableBits+=n.availableBits()}}});function id(r){if(r==null||r.hashFn==null)throw new Error("please define an options.hashFn");let e={bits:r.bits??8,hash:nd(r.hashFn)};return new Je(e)}var od=p(()=>{"use strict";td();sd()});async function Hm(r){return(await Gu.encode(r)).slice(0,8).reverse()}async function*cd(r,e,t,n){let s=r._children,i=(r.tableSize()-1).toString(16).length,o=[],a=0n;for(let g=0;g<s.length;g++){let y=s.get(g);if(y==null)continue;let S=g.toString(16).toUpperCase().padStart(i,"0");if(y instanceof Je){let b;for await(let A of cd(y,e,null,n))b=A;if(b==null)throw new Error("Could not flush sharded directory, no sub-shard found");o.push({Name:S,Tsize:Number(b.size),Hash:b.cid}),a+=b.size}else if(ld(y.value)){let b=y.value,A;for await(let k of b.flush(e))A=k,yield A;if(A==null)throw new Error("Did not flush dir");let v=S+y.key;o.push({Name:v,Tsize:Number(A.size),Hash:A.cid}),a+=A.size}else{let b=y.value;if(b.cid==null)continue;let A=S+y.key,v=b.size;o.push({Name:A,Tsize:Number(v),Hash:b.cid}),a+=BigInt(v??0)}}let c=Uint8Array.from(s.bitField().reverse()),l=new H({type:"hamt-sharded-directory",data:c,fanout:BigInt(r.tableSize()),hashType:Si,mtime:t?.mtime,mode:t?.mode}),u={Data:l.marshal(),Links:o},d=Z(Q(u)),h=await ue(d,e,n),m=BigInt(d.byteLength)+a;yield{cid:h,unixfs:l,size:m}}function ld(r){return typeof r.flush=="function"}async function ud(r,e,t,n){let s=r._children,i=(r.tableSize()-1).toString(16).length,o=[],a=0;for(let h=0;h<s.length;h++){let m=s.get(h);if(m==null)continue;let g=h.toString(16).toUpperCase().padStart(i,"0");if(m instanceof Je){let{size:y,cid:S}=await ud(m,null,t,n);o.push({Name:g,Tsize:Number(y),Hash:S}),a+=g.length+S.byteLength}else if(ld(m.value)){let y=m.value,S=y.nodeSize;if(y.cid==null)throw new Error("Child directory has not been persisted");o.push({Name:g+m.key,Tsize:Number(S),Hash:y.cid}),a+=g.length+y.cid.byteLength}else{let y=m.value,S=g+m.key,b=y.size;o.push({Name:S,Tsize:Number(b),Hash:y.cid}),a+=g.length+y.cid.byteLength}}let c=Uint8Array.from(s.bitField().reverse()),l=new H({type:"hamt-sharded-directory",data:c,fanout:BigInt(r.tableSize()),hashType:Si,mtime:e?.mtime,mode:e?.mode}),u=Z(Q({Data:l.marshal(),Links:o}));return{cid:await ue(u,t,n),size:n.shardSplitStrategy==="links-bytes"?a:u.length}}var Io,ad,dd=p(()=>{"use strict";lt();Yu();Po();od();Wt();kr();ls();$t();Io=class extends ke{constructor(t,n){super(t,n);f(this,"bucket");this.bucket=id({hashFn:Hm,bits:n.shardFanoutBits??Gn})}async put(t,n){this.cid=void 0,this.size=void 0,this.nodeSize=void 0,await this.bucket.put(t,n)}async get(t){return this.bucket.get(t)}childCount(){return this.bucket.leafCount()}directChildrenCount(){return this.bucket.childrenCount()}onlyChild(){return this.bucket.onlyChild()}*eachChildSeries(){for(let{key:t,value:n}of this.bucket.eachLeafSeries())yield{key:t,child:n}}async estimateNodeSize(){if(this.nodeSize!==void 0)return this.nodeSize;let t=new Zt,n=await ud(this.bucket,this,t,this.options);return this.nodeSize=n.size,this.nodeSize}async*flush(t){for await(let n of cd(this.bucket,t,this,this.options))yield{...n,path:this.path}}},ad=Io});async function Bo(r,e){let t=e,n=e.options.shardSplitThresholdBytes??Yn;e instanceof ft&&await e.estimateNodeSize()>n&&(t=await Vm(e));let s=t.parent;if(s!=null){if(t!==e){if(r!=null&&(r.parent=t),t.parentKey==null)throw new Error("No parent key found");await s.put(t.parentKey,t)}return Bo(t,s)}return t}async function Vm(r){let e=new ad({root:r.root,dir:!0,parent:r.parent,parentKey:r.parentKey,path:r.path,dirty:r.dirty,flat:!1,mtime:r.mtime,mode:r.mode},r.options);for(let{key:t,child:n}of r.eachChildSeries())await e.put(t,n);return e}var hd=p(()=>{"use strict";kr();xo();dd()});var fd,pd=p(()=>{"use strict";fd=(r="")=>r.split(/(?<!\\)\//).filter(Boolean)});async function Gm(r,e,t){let n=fd(r.path??""),s=n.length-1,i=e,o="";for(let a=0;a<n.length;a++){let c=n[a];o+=`${o!==""?"/":""}${c}`;let l=a===s;if(i.dirty=!0,i.cid=void 0,i.size=void 0,l)await i.put(c,r),e=await Bo(null,i);else{let u=await i.get(c);(u==null||!(u instanceof ke))&&(u=new ft({root:!1,dir:!0,parent:i,parentKey:c,path:o,dirty:!0,flat:!0,mtime:u?.unixfs?.mtime,mode:u?.unixfs?.mode},t)),await i.put(c,u),i=u}}return e}async function*md(r,e){if(!(r instanceof ke)){r.unixfs?.isDirectory()===!0&&(yield r);return}yield*r.flush(e)}function gd(r){return async function*(t,n){let s=new ft({root:!0,dir:!0,path:"",dirty:!0,flat:!0},r),i,o=!1;for await(let a of t){if(a==null)continue;let c=`${a.originalPath??""}`.split("/")[0];c!=null&&c!==""&&(i==null?(i=c,o=!0):i!==c&&(o=!1)),s=await Gm(a,s,r),a.unixfs?.isDirectory()!==!0&&(yield a)}if(r.wrapWithDirectory||o&&s.childCount()>1)yield*md(s,n);else for(let a of s.eachChildSeries())a!=null&&(yield*md(a.child,n))}}var yd=p(()=>{"use strict";xo();ls();hd();pd()});var wd={};E(wd,{InvalidAvgChunkSizeError:()=>go,InvalidChunkSizeError:()=>yo,InvalidContentError:()=>be,InvalidMinChunkSizeError:()=>wo,InvalidParametersError:()=>jt,InvalidShardingStrategyError:()=>Ve,importByteStream:()=>Jm,importBytes:()=>jm,importDirectory:()=>Ym,importFile:()=>To,importer:()=>Do});async function*Do(r,e,t={}){let n;Symbol.asyncIterator in r||Symbol.iterator in r?n=r:n=[r];let s,i;t.profile==="unixfs-v0-2015"?(t.shardSplitStrategy=t.shardSplitStrategy??"links-bytes",t.cidVersion=t.cidVersion??0,t.rawLeaves=t.rawLeaves??!1,s=jn,i=174):t.profile==="unixfs-v1-2025"&&(t.shardSplitStrategy=t.shardSplitStrategy??"block-bytes",t.cidVersion=t.cidVersion??1,t.rawLeaves=t.rawLeaves??!0,s=Oc,i=1024);let o=t.wrapWithDirectory??Hc,a=t.shardSplitThresholdBytes??Yn,c=t.shardSplitStrategy??Kc,l=t.shardFanoutBits??Gn,u=t.cidVersion??1,d=t.rawLeaves??qc,h=t.leafType??Vc,m=t.fileImportConcurrency??zc,g=t.blockWriteConcurrency??Wc,y=t.reduceSingleLeafToSelf??$c,S=t.chunker??Gc({chunkSize:s}),b=t.chunkValidator??Mu(),A=t.dagBuilder??Ru({chunker:S,chunkValidator:b,wrapWithDirectory:o,layout:t.layout??bo({maxChildrenPerNode:i}),bufferImporter:t.bufferImporter??ku({cidVersion:u,rawLeaves:d,leafType:h,onProgress:t.onProgress}),blockWriteConcurrency:g,reduceSingleLeafToSelf:y,cidVersion:u,onProgress:t.onProgress,dirBuilder:t.dirBuilder,fileBuilder:t.fileBuilder}),v=t.treeBuilder??gd({wrapWithDirectory:o,shardSplitThresholdBytes:a,shardSplitStrategy:c,shardFanoutBits:l,cidVersion:u,onProgress:t.onProgress});for await(let k of v(vr(A(n,e),m),e))yield{cid:k.cid,path:k.path,unixfs:k.unixfs,size:k.size}}async function To(r,e,t={}){let n=await gi(Do([r],e,t));if(n==null)throw new jt("Nothing imported");return n}async function Ym(r,e,t={}){let n=await gi(Do([r],e,t));if(n==null)throw new jt("Nothing imported");return n}async function jm(r,e,t={}){return To({content:r},e,t)}async function Jm(r,e,t={}){return To({content:r},e,t)}var vo=p(()=>{"use strict";Dc();wi();Yc();kr();Cu();Fu();Uu();Hr();Ku();yd();Hr()});function Qm(r){return typeof r?.then=="function"}var ps,bd=p(()=>{"use strict";ds();_u();Cr();ct();Lr();Nt();Vr();ps=class extends Ce{constructor(){super();f(this,"data");this.data=new Map}put(t,n,s){s?.signal?.throwIfAborted();let i;if(n instanceof Uint8Array)i=[n];else{let o=Lu(n);if(Qm(o))return o.then(a=>this._put(t,a,s));i=o}return this._put(t,i,s)}_put(t,n,s){return s?.signal?.throwIfAborted(),this.data.set(J.encode(t.multihash.bytes),n),t}*get(t,n){n?.signal?.throwIfAborted();let s=this.data.get(J.encode(t.multihash.bytes));if(s==null)throw new je;yield*s}has(t,n){return n?.signal?.throwIfAborted(),this.data.has(J.encode(t.multihash.bytes))}async delete(t,n){n?.signal?.throwIfAborted(),this.data.delete(J.encode(t.multihash.bytes))}*getAll(t){t?.signal?.throwIfAborted();for(let[n,s]of this.data.entries())yield{cid:$.createV1(Kt,Xn(J.decode(n))),bytes:(async function*(){yield*s})()},t?.signal?.throwIfAborted()}}});function ms(r,e){if(typeof r=="string")return Zm(r);if(typeof r=="number")return tg(r,e);throw new Error(`Value provided to ms() must be a string or number. value=${JSON.stringify(r)}`)}function Zm(r){if(typeof r!="string"||r.length===0||r.length>100)throw new Error(`Value provided to ms.parse() must be a string with length between 1 and 99. value=${JSON.stringify(r)}`);let e=/^(?<value>-?\d*\.?\d+) *(?<unit>milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|months?|mo|years?|yrs?|y)?$/i.exec(r);if(!e?.groups)return NaN;let{value:t,unit:n="ms"}=e.groups,s=parseFloat(t),i=n.toLowerCase();switch(i){case"years":case"year":case"yrs":case"yr":case"y":return s*315576e5;case"months":case"month":case"mo":return s*26298e5;case"weeks":case"week":case"w":return s*6048e5;case"days":case"day":case"d":return s*864e5;case"hours":case"hour":case"hrs":case"hr":case"h":return s*36e5;case"minutes":case"minute":case"mins":case"min":case"m":return s*6e4;case"seconds":case"second":case"secs":case"sec":case"s":return s*1e3;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:throw new Error(`Unknown unit "${i}" provided to ms.parse(). value=${JSON.stringify(r)}`)}}function Xm(r){let e=Math.abs(r);return e>=315576e5?`${Math.round(r/315576e5)}y`:e>=26298e5?`${Math.round(r/26298e5)}mo`:e>=6048e5?`${Math.round(r/6048e5)}w`:e>=864e5?`${Math.round(r/864e5)}d`:e>=36e5?`${Math.round(r/36e5)}h`:e>=6e4?`${Math.round(r/6e4)}m`:e>=1e3?`${Math.round(r/1e3)}s`:`${r}ms`}function eg(r){let e=Math.abs(r);return e>=315576e5?mt(r,e,315576e5,"year"):e>=26298e5?mt(r,e,26298e5,"month"):e>=6048e5?mt(r,e,6048e5,"week"):e>=864e5?mt(r,e,864e5,"day"):e>=36e5?mt(r,e,36e5,"hour"):e>=6e4?mt(r,e,6e4,"minute"):e>=1e3?mt(r,e,1e3,"second"):`${r} ms`}function tg(r,e){if(typeof r!="number"||!Number.isFinite(r))throw new Error("Value provided to ms.format() must be of type number.");return e?.long?eg(r):Xm(r)}function mt(r,e,t,n){let s=e>=t*1.5;return`${Math.round(r/t)} ${n}${s?"s":""}`}var Ro=p(()=>{"use strict"});function Fo(r){t.debug=t,t.default=t,t.coerce=c,t.disable=i,t.enable=s,t.enabled=o,t.humanize=ms,t.destroy=l,Object.keys(r).forEach(u=>{t[u]=r[u]}),t.names=[],t.skips=[],t.formatters={};function e(u){let d=0;for(let h=0;h<u.length;h++)d=(d<<5)-d+u.charCodeAt(h),d|=0;return t.colors[Math.abs(d)%t.colors.length]}t.selectColor=e;function t(u,d){let h,m=null,g,y;function S(...b){if(!S.enabled)return;let A=S,v=Number(new Date),k=v-(h||v);A.diff=k,A.prev=h,A.curr=v,h=v,b[0]=t.coerce(b[0]),typeof b[0]!="string"&&b.unshift("%O");let C=0;b[0]=b[0].replace(/%([a-zA-Z%])/g,(T,O)=>{if(T==="%%")return"%";C++;let Pe=t.formatters[O];if(typeof Pe=="function"){let gt=b[C];T=Pe.call(A,gt),b.splice(C,1),C--}return T}),t.formatArgs.call(A,b),d?.onLog!=null&&d.onLog(...b),(A.log||t.log).apply(A,b)}return S.namespace=u,S.useColors=t.useColors(),S.color=t.selectColor(u),S.extend=n,S.destroy=t.destroy,Object.defineProperty(S,"enabled",{enumerable:!0,configurable:!1,get:()=>m!==null?m:(g!==t.namespaces&&(g=t.namespaces,y=t.enabled(u)),y),set:b=>{m=b}}),typeof t.init=="function"&&t.init(S),S}function n(u,d){let h=t(this.namespace+(typeof d>"u"?":":d)+u);return h.log=this.log,h}function s(u){t.save(u),t.namespaces=u,t.names=[],t.skips=[];let d,h=(typeof u=="string"?u:"").split(/[\s,]+/),m=h.length;for(d=0;d<m;d++)h[d]&&(u=h[d].replace(/\*/g,".*?"),u[0]==="-"?t.skips.push(new RegExp("^"+u.substr(1)+"$")):t.names.push(new RegExp("^"+u+"$")))}function i(){let u=[...t.names.map(a),...t.skips.map(a).map(d=>"-"+d)].join(",");return t.enable(""),u}function o(u){if(u[u.length-1]==="*")return!0;let d,h;for(d=0,h=t.skips.length;d<h;d++)if(t.skips[d].test(u))return!1;for(d=0,h=t.names.length;d<h;d++)if(t.names[d].test(u))return!0;return!1}function a(u){return u.toString().substring(2,u.toString().length-2).replace(/\.\*\?$/,"*")}function c(u){return u instanceof Error?u.stack??u.message:u}function l(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return t.setupFormatters(t.formatters),t.enable(t.load()),t}var Sd=p(()=>{"use strict";Ro()});function ng(){return typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs)?!0:typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/(edge|trident)\/(\d+)/)!=null?!1:typeof document<"u"&&document.documentElement?.style?.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/firefox\/(\d+)/)!=null&&parseInt(RegExp.$1,10)>=31||typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/applewebkit\/(\d+)/)}function sg(r){if(r[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+r[0]+(this.useColors?"%c ":" ")+"+"+ms(this.diff),!this.useColors)return;let e="color: "+this.color;r.splice(1,0,e,"color: inherit");let t=0,n=0;r[0].replace(/%[a-zA-Z%]/g,s=>{s!=="%%"&&(t++,s==="%c"&&(n=t))}),r.splice(n,0,e)}function og(r){try{r?gs?.setItem("debug",r):gs?.removeItem("debug")}catch{}}function ag(){let r;try{r=gs?.getItem("debug")}catch{}return!r&&typeof globalThis.process<"u"&&"env"in globalThis.process&&(r=globalThis.process.env.DEBUG),r}function cg(){try{return localStorage}catch{}}function lg(r){r.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}}var gs,rg,ig,Ad,xd=p(()=>{"use strict";Ro();Sd();gs=cg(),rg=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];ig=console.debug??console.log??(()=>{});Ad=Fo({formatArgs:sg,save:og,load:ag,useColors:ng,setupFormatters:lg,colors:rg,storage:gs,log:ig})});var X,vd=p(()=>{"use strict";xd();X=Ad});function Ed(r,e=""){let t=kd(r.message),n=kd(r.stack);return t!=null&&n!=null?n.includes(t)?`${n.split(`
951
951
  `).join(`
952
952
  ${e}`)}`:`${t}
953
- ${e}${r.split(`
953
+ ${e}${n.split(`
954
954
  `).join(`
955
- ${e}`)}`:r!=null?`${r.split(`
955
+ ${e}`)}`:n!=null?`${n.split(`
956
956
  `).join(`
957
- ${e}`)}`:t!=null?`${t}`:`${n.toString()}`}function mg(n){return n instanceof AggregateError||n?.name==="AggregateError"&&Array.isArray(n.errors)}function Ku(n,e=""){if(mg(n)){let t=_u(n,e);return n.errors.length>0?(e=`${e} `,t+=`
958
- ${e}${n.errors.map(r=>`${Ku(r,`${e}`)}`).join(`
957
+ ${e}`)}`:t!=null?`${t}`:`${r.toString()}`}function ug(r){return r instanceof AggregateError||r?.name==="AggregateError"&&Array.isArray(r.errors)}function Cd(r,e=""){if(ug(r)){let t=Ed(r,e);return r.errors.length>0?(e=`${e} `,t+=`
958
+ ${e}${r.errors.map(n=>`${Cd(n,`${e}`)}`).join(`
959
959
  ${e}`)}`):t+=`
960
- ${e}[Error list was empty]`,t.trim()}return _u(n,e)}function yg(n){let e=()=>{};return e.enabled=!1,e.color="",e.diff=0,e.log=()=>{},e.namespace=n,e.destroy=()=>!0,e.extend=()=>e,e}function go(n,e){let t=yg(`${n}:trace`);return Q.enabled(`${n}:trace`)&&Q.names.map(r=>r.toString()).find(r=>r.includes(":trace"))!=null&&(t=Q(`${n}:trace`,e)),Object.assign(Q(n,e),{error:Q(`${n}:error`,e),trace:t,newScope:r=>go(`${n}:${r}`,e)})}function Ou(n){if(n!=null&&(n=n.trim(),n.length!==0))return n}var zu=w(()=>{"use strict";mr();Mn();Li();Lu();Q.formatters.b=n=>n==null?"undefined":le.baseEncode(n);Q.formatters.t=n=>n==null?"undefined":j.baseEncode(n);Q.formatters.m=n=>n==null?"undefined":Ni.baseEncode(n);Q.formatters.p=n=>n==null?"undefined":n.toString();Q.formatters.c=n=>n==null?"undefined":n.toString();Q.formatters.k=n=>n==null?"undefined":n.toString();Q.formatters.a=n=>n==null?"undefined":n.toString();Q.formatters.e=n=>n==null?"undefined":Ku(n)});function wg(n){let[e,t]=n[Symbol.asyncIterator]!=null?[n[Symbol.asyncIterator](),Symbol.asyncIterator]:[n[Symbol.iterator](),Symbol.iterator],r=[];return{peek:()=>e.next(),push:s=>{r.push(s)},next:()=>r.length>0?{done:!1,value:r.shift()}:e.next(),[t](){return this}}}var Wu,$u=w(()=>{"use strict";Wu=wg});function bg(n){return n[Symbol.asyncIterator]!=null}function Sg(n,e){let t=0;if(bg(n))return(async function*(){for await(let a of n)await e(a,t++)&&(yield a)})();let r=Wu(n),{value:s,done:i}=r.next();if(i===!0)return(function*(){})();let o=e(s,t++);if(typeof o.then=="function")return(async function*(){await o&&(yield s);for(let a of r)await e(a,t++)&&(yield a)})();let c=e;return(function*(){o===!0&&(yield s);for(let a of r)c(a,t++)&&(yield a)})()}var qu,Hu=w(()=>{"use strict";$u();qu=Sg});function Vt(){let n={};return n.promise=new Promise((e,t)=>{n.resolve=e,n.reject=t}),n}var Vu=w(()=>{"use strict"});async function Gu(n,e,t){if(e==null)return n;if(e.aborted)return n.catch(()=>{}),Promise.reject(new ns(t?.errorMessage,t?.errorCode,t?.errorName));let r,s=new ns(t?.errorMessage,t?.errorCode,t?.errorName);try{return await Promise.race([n,new Promise((i,o)=>{r=()=>{o(s)},e.addEventListener("abort",r)})])}finally{r!=null&&e.removeEventListener("abort",r)}}var ns,Yu=w(()=>{"use strict";ns=class extends Error{constructor(t,r,s){super(t??"The operation was aborted");p(this,"type");p(this,"code");this.type="aborted",this.name=s??"AbortError",this.code=r??"ABORT_ERR"}}});function ju(){return new mo}var mo,Ju=w(()=>{"use strict";Vu();Yu();mo=class{constructor(){p(this,"readNext");p(this,"haveNext");p(this,"ended");p(this,"nextResult");p(this,"error");this.ended=!1,this.readNext=Vt(),this.haveNext=Vt()}[Symbol.asyncIterator](){return this}async next(){if(this.nextResult==null&&await this.haveNext.promise,this.nextResult==null)throw new Error("HaveNext promise resolved but nextResult was undefined");let e=this.nextResult;return this.nextResult=void 0,this.readNext.resolve(),this.readNext=Vt(),e}async throw(e){return this.ended=!0,this.error=e,e!=null&&(this.haveNext.promise.catch(()=>{}),this.haveNext.reject(e)),{done:!0,value:void 0}}async return(){let e={done:!0,value:void 0};return this.ended=!0,this.nextResult=e,this.haveNext.resolve(),e}async push(e,t){await this._push(e,t)}async end(e,t){e!=null?await this.throw(e):await this._push(void 0,t)}async _push(e,t){if(e!=null&&this.ended)throw this.error??new Error("Cannot push value onto an ended pushable");for(;this.nextResult!=null;)await this.readNext.promise;e!=null?this.nextResult={done:!1,value:e}:(this.ended=!0,this.nextResult={done:!0,value:void 0}),this.haveNext.resolve(),this.haveNext=Vt(),await Gu(this.readNext.promise,t?.signal,t)}}});function xg(n){return n[Symbol.asyncIterator]!=null}async function vg(n,e,t){try{await Promise.all(n.map(async r=>{for await(let s of r)await e.push(s,{signal:t}),t.throwIfAborted()})),await e.end(void 0,{signal:t})}catch(r){await e.end(r,{signal:t}).catch(()=>{})}}async function*Ag(n){let e=new AbortController,t=ju();vg(n,t,e.signal).catch(()=>{});try{yield*t}finally{e.abort()}}function*kg(n){for(let e of n)yield*e}function Eg(...n){let e=[];for(let t of n)xg(t)||e.push(t);return e.length===n.length?kg(e):Ag(n)}var Qu,Xu=w(()=>{"use strict";Ju();Qu=Eg});var Cg,ss,Zu=w(()=>{"use strict";zu();Xn();Hu();Xu();Nr();Cg=go("blockstore:core:tiered"),ss=class extends ve{constructor(t){super();p(this,"stores");this.stores=t.slice()}async put(t,r,s){return await Promise.all(this.stores.map(async i=>{await i.put(t,r,s)})),t}async*get(t,r){let s;for(let i of this.stores)try{yield*i.get(t,r);return}catch(o){s=o,Cg.error(o)}throw s??new ze}async has(t,r){for(let s of this.stores)if(await s.has(t,r))return!0;return!1}async delete(t,r){await Promise.all(this.stores.map(async s=>{await s.delete(t,r)}))}async*putMany(t,r={}){for await(let s of t)await this.put(s.cid,s.bytes,r),yield s.cid}async*deleteMany(t,r={}){for await(let s of t)await this.delete(s,r),yield s}async*getAll(t){let r=new Set;yield*qu(Qu(...this.stores.map(s=>s.getAll(t))),s=>{let i=s.cid.toString();return r.has(i)?!1:(r.add(i),!0)})}}});var ed={};B(ed,{BaseBlockstore:()=>ve,BlackHoleBlockstore:()=>es,MemoryBlockstore:()=>Zn,TieredBlockstore:()=>ss});var td=w(()=>{"use strict";Nr();Tu();Fu();Zu()});var rd=D((GS,Pg)=>{Pg.exports={name:"w3pk",version:"0.9.3",description:"WebAuthn SDK for passwordless authentication, encrypted wallets, ERC-5564 stealth addresses, and zero-knowledge proofs",author:"Julien B\xE9ranger",license:"GPL-3.0",repository:{type:"git",url:"https://github.com/w3hc/w3pk.git"},bugs:{url:"https://github.com/w3hc/w3pk/issues"},homepage:"https://github.com/w3hc/w3pk#readme",keywords:["webauthn","passkey","authentication","passwordless","fido2","biometric","ethereum","web3","encryption","zero-knowledge","zk-proofs","zk-snarks","privacy","stealth-address","erc-5564","erc-6538","unlinkable","anonymous-transactions","privacy-preserving","ecdh","secp256k1","view-tags","circom","groth16","merkle-tree","commitment-scheme"],main:"./dist/index.js",module:"./dist/index.mjs",types:"./dist/index.d.ts",exports:{".":{types:"./dist/index.d.ts",import:"./dist/index.mjs",require:"./dist/index.js"},"./zk":{types:"./dist/zk/index.d.ts",import:"./dist/zk/index.mjs",require:"./dist/zk/index.js"},"./zk/utils":{types:"./dist/zk/utils.d.ts",import:"./dist/zk/utils.mjs",require:"./dist/zk/utils.js"},"./chainlist":{types:"./dist/chainlist/index.d.ts",import:"./dist/chainlist/index.mjs",require:"./dist/chainlist/index.js"},"./inspect":{types:"./dist/inspect/index.d.ts",import:"./dist/inspect/index.mjs",require:"./dist/inspect/index.js"},"./inspect/node":{types:"./dist/inspect/node.d.ts",import:"./dist/inspect/node.mjs",require:"./dist/inspect/node.js"}},sideEffects:!1,files:["dist","README.md","LICENSE","docs/","scripts/compute-build-hash.mjs"],scripts:{build:"tsup","build:zk":"npm run build && npm run compile:circuits","compile:circuits":"node scripts/compile-circuits.js",dev:"tsup --watch",test:"tsx test/test.ts && tsx test/comprehensive.test.ts && tsx test/backup.test.ts && tsx test/social-recovery.test.ts && tsx test/recovery-education.test.ts && tsx test/zk/zk.test.ts && tsx test/nft-ownership.test.ts && tsx test/chainlist.test.ts && tsx test/eip7702.test.ts && tsx test/external-wallet.test.ts && tsx test/erc5564.test.ts && tsx test/zk/key-stretching.test.ts && tsx test/username-encoding.test.ts && tsx test/username-validation.test.ts && tsx test/origin-derivation.test.ts && tsx test/build-hash.test.ts && tsx test/credential-checking.test.ts && tsx test/webauthn-native.test.ts && tsx test/persistent-session.test.ts && tsx test/sign-message.test.ts && tsx test/siwe.test.ts && tsx test/requirereauth.test.ts && tsx test/eip7951.test.ts && tsx test/send-transaction.test.ts && tsx test/eip1193-provider.test.ts","test:basic":"tsx test/test.ts","test:comprehensive":"tsx test/comprehensive.test.ts","test:backup":"tsx test/backup.test.ts","test:social-recovery":"tsx test/social-recovery.test.ts","test:education":"tsx test/recovery-education.test.ts","test:username":"tsx test/username-encoding.test.ts && tsx test/username-validation.test.ts","test:recovery":"tsx test/backup.test.ts && tsx test/social-recovery.test.ts && tsx test/recovery-education.test.ts","test:zk":"tsx test/zk/zk.test.ts","test:nft":"tsx test/nft-ownership.test.ts","test:chainlist":"tsx test/chainlist.test.ts","test:eip7702":"tsx test/eip7702.test.ts","test:external-wallet":"tsx test/external-wallet.test.ts","test:eip7951":"tsx test/eip7951.test.ts","test:erc5564":"tsx test/erc5564.test.ts","test:sign-message":"tsx test/sign-message.test.ts","test:siwe":"tsx test/siwe.test.ts",prepublishOnly:"pnpm build","build:hash":"node scripts/compute-build-hash.mjs","release:notes":"node scripts/generate-release-notes.mjs",html:"lsof -ti:3000 | xargs kill -9 2>/dev/null || true && tsup && npx serve . -l 3000 & sleep 5 && open http://localhost:3000/standalone/checker.html"},packageManager:"pnpm@10.6.4",devDependencies:{"@types/node":"^24.9.0","@types/qrcode":"^1.5.5",circomlib:"^2.0.5",tsup:"^8.5.1",tsx:"^4.21.0",typescript:"^5.9.3"},peerDependencies:{ethers:"^6.0.0"},optionalDependencies:{"@ipld/car":"^5.4.2","blockstore-core":"^6.1.1",circomlibjs:"^0.1.7","ipfs-unixfs-importer":"^16.0.1",qrcode:"^1.5.4",snarkjs:"^0.7.5"}}});V();function wo(n){return/^0x[a-fA-F0-9]{40}$/.test(n)}function bo(n){return n.length<3||n.length>50?!1:/^[a-zA-Z0-9]([a-zA-Z0-9_-]*[a-zA-Z0-9])?$/.test(n)}function So(n){let e=n.trim().split(/\s+/);return e.length===12||e.length===24}function os(n){if(!wo(n))throw new Error("Invalid Ethereum address format")}function as(n){if(!bo(n))throw new Error("Username must be 3-50 characters long and contain only letters, numbers, underscores, and hyphens. Must start and end with a letter or number.")}function gd(n){if(!So(n))throw new Error("Invalid mnemonic: must be 12 or 24 words")}function md(n){if(n.length<12)return!1;let e=/[A-Z]/.test(n),t=/[a-z]/.test(n),r=/[0-9]/.test(n),s=/[!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?]/.test(n);return!(!e||!t||!r||!s||["password","12345678","qwerty","abc123","password123","admin","letmein"].some(o=>n.toLowerCase().includes(o)))}De();me();W();async function wd(n){try{let e=new Uint8Array(n),t=bd(e);if(t===-1)return null;let r=e.slice(t);if(!((r[32]&64)!==0))return null;let o=37;o+=16;let c=r[o]<<8|r[o+1];o+=2,o+=c;let a=r.slice(o),u=await Sd(a);return Ae(u)}catch(e){return console.error("Failed to extract public key:",e),null}}function bd(n){let e=new Uint8Array([104,97,117,116,104,68,97,116,97]);for(let t=0;t<n.length-e.length;t++){let r=!0;for(let s=0;s<e.length;s++)if(n[t+s]!==e[s]){r=!1;break}if(r){let s=n[t+e.length],i=t+e.length+1;if(s>=88&&s<=91){let o=s-87;i+=o}return i}}return-1}async function Sd(n){let e=Eo(n,-2),t=Eo(n,-3);if(!e||!t)throw new Error("Failed to extract EC coordinates from COSE key");let r=new Uint8Array(65);r[0]=4,r.set(e,1),r.set(t,33);let s=new Uint8Array([48,89,48,19,6,7,42,134,72,206,61,2,1,6,8,42,134,72,206,61,3,1,7,3,66,0]),i=new Uint8Array(s.length+r.length);return i.set(s,0),i.set(r,s.length),i.buffer}function Eo(n,e){let t=e<0?32+(-1-e):e;for(let r=0;r<n.length-33;r++)if(n[r]===t&&(n[r+1]===88&&n[r+2]===32||n[r+1]===88&&n[r+2]===32))return n.slice(r+3,r+35);return null}async function Co(n){try{let{username:e,ethereumAddress:t}=n;as(e),os(t);let r=new F;if(await r.userExists(e))throw new Error("Username already registered");let s=Ie(),o=new TextEncoder().encode(e),c=Ae(o),a=_(s),u=_(c),l={challenge:a,rp:{name:"w3pk",id:window.location.hostname},user:{id:u,name:e,displayName:e},pubKeyCredParams:[{type:"public-key",alg:-7},{type:"public-key",alg:-257}],authenticatorSelection:{authenticatorAttachment:"platform",userVerification:"required",residentKey:"required",requireResidentKey:!0},timeout:6e4,attestation:"none"},h=await navigator.credentials.create({publicKey:l});if(!h)throw new Error("Failed to create credential");let g=await wd(h.response.attestationObject);if(!g)throw new Error("Public key not returned from authenticator");return await r.saveCredential({id:h.id,publicKey:g,username:e,ethereumAddress:t,createdAt:new Date().toISOString(),lastUsed:new Date().toISOString(),signCount:0}),{signature:h.response.attestationObject}}catch(e){throw new Gt(e instanceof Error?e.message:"Registration failed",e)}}V();De();me();W();async function Kr(){try{let n=new F,e=Ie(),t=[];try{let a=await n.getAllCredentials();a.length>0&&(t=a.map(u=>({id:u.id,type:"public-key",transports:["internal","hybrid","usb","nfc","ble"]})))}catch{}let s={challenge:_(e),rpId:window.location.hostname,userVerification:"required",timeout:6e4};t.length>0&&(s.allowCredentials=t.map(a=>({id:_(a.id),type:a.type,transports:a.transports})));let i;try{let a=await navigator.credentials.get({publicKey:s});if(!a)throw new Error("Authentication failed - no credential returned");i=a}catch(a){throw a?.name==="NotAllowedError"||a?.message?.toLowerCase().includes("no credentials available")||a?.message?.toLowerCase().includes("no access key")?(await n.getAllCredentials()).length>0?new O("Your passkey is not available on this device. You may need to restore your wallet from a backup, or login on the device where you registered."):new O("No passkey found. Please register first or restore from a backup."):a}let o=await n.getCredentialById(i.id);if(!o)throw new O("Passkey authenticated but wallet data not found on this device. To sync your account: 1) Select your passkey when prompted, then 2) Provide your backup file. This allows you to use the same passkey on multiple devices.");if(!await xd(i,o,n))throw new Error("Signature verification failed");return{verified:!0,user:{username:o.username,ethereumAddress:o.ethereumAddress,credentialId:o.id},signature:i.response.signature}}catch(n){throw new O(n instanceof Error?n.message:"Authentication failed",n)}}async function xd(n,e,t){try{let r=n.response.authenticatorData,s=new DataView(r),o=new Uint8Array(r).slice(0,32),c=window.location.hostname,a=new Uint8Array(await crypto.subtle.digest("SHA-256",new TextEncoder().encode(c)));if(!vd(o,a))return console.error("RP ID hash mismatch - possible phishing attack"),!1;let u=s.getUint32(33,!1);if(u>0||e.signCount&&e.signCount>0){let b=e.signCount||0;if(u<=b)return console.error(`Authenticator cloning detected! Counter did not increase: stored=${b}, received=${u}`),!1}let l=_(e.publicKey),h=await crypto.subtle.importKey("spki",l,{name:"ECDSA",namedCurve:"P-256"},!1,["verify"]),g=n.response.clientDataJSON,d=await crypto.subtle.digest("SHA-256",g),f=new Uint8Array(r.byteLength+d.byteLength);f.set(new Uint8Array(r),0),f.set(new Uint8Array(d),r.byteLength);let y=n.response.signature,k=Ad(new Uint8Array(y));return await crypto.subtle.verify({name:"ECDSA",hash:"SHA-256"},h,k,f)?(await t.updateSignatureCounter(e.id,u),!0):!1}catch(r){return console.error("Signature verification error:",r),!1}}function vd(n,e){if(n.length!==e.length)return!1;for(let t=0;t<n.length;t++)if(n[t]!==e[t])return!1;return!0}function Ad(n){let e=2;e++;let t=n[e++];t>32&&(e++,t--);let r=n.slice(e,e+t);e+=t,e++;let s=n[e++];s>32&&(e++,s--);let i=n.slice(e,e+s),o=new Uint8Array(64);return o.set(r,32-r.length),o.set(i,64-i.length),o.buffer}V();var kd="Web3PasskeyWallet",Ed=1,ye="wallets",zr=class{constructor(){this.db=null}async init(){return new Promise((e,t)=>{let r=indexedDB.open(kd,Ed);r.onerror=()=>t(new T("Failed to open database",r.error)),r.onsuccess=()=>{this.db=r.result,e()},r.onupgradeneeded=()=>{let s=r.result;s.objectStoreNames.contains(ye)||s.createObjectStore(ye,{keyPath:"ethereumAddress"})}})}async store(e){return this.db||await this.init(),new Promise((t,r)=>{let o=this.db.transaction([ye],"readwrite").objectStore(ye).put(e);o.onerror=()=>r(new T("Failed to store wallet data",o.error)),o.onsuccess=()=>t()})}async retrieve(e){return this.db||await this.init(),new Promise((t,r)=>{let o=this.db.transaction([ye],"readonly").objectStore(ye).get(e);o.onerror=()=>r(new T("Failed to retrieve wallet data",o.error)),o.onsuccess=()=>t(o.result||null)})}async delete(e){return this.db||await this.init(),new Promise((t,r)=>{let o=this.db.transaction([ye],"readwrite").objectStore(ye).delete(e);o.onerror=()=>r(new T("Failed to delete wallet data",o.error)),o.onsuccess=()=>t()})}async clear(){return this.db||await this.init(),new Promise((e,t)=>{let i=this.db.transaction([ye],"readwrite").objectStore(ye).clear();i.onerror=()=>t(new T("Failed to clear wallet data",i.error)),i.onsuccess=()=>e()})}};ht();ft();W();V();V();import{ethers as Y}from"ethers";function Yt(n){try{let e=Y.HDNodeWallet.fromPhrase(n,void 0,"m/44'/60'/1'/0/0"),t=Y.HDNodeWallet.fromPhrase(n,void 0,"m/44'/60'/1'/0/1"),r=t.signingKey.compressedPublicKey,s=e.signingKey.compressedPublicKey;return{stealthMetaAddress:r+s.slice(2),spendingPubKey:r,viewingPubKey:s,viewingKey:e.privateKey,spendingKey:t.privateKey}}catch(e){throw new N("Failed to derive stealth keys",e)}}function hs(n){try{let e="0x"+n.slice(2,68),t="0x"+n.slice(68),r=Y.Wallet.createRandom(),s=r.signingKey.compressedPublicKey,i=fs(r.privateKey,t),o=Y.keccak256(i),c="0x"+o.slice(2,4),a=To(e,Ro(o));return{stealthAddress:Fo(a),ephemeralPubKey:s,viewTag:c}}catch(e){throw new N("Failed to generate stealth address",e)}}function Gr(n,e,t,r,s){try{let i=fs(n,t),o=Y.keccak256(i);if(s&&("0x"+o.slice(2,4)).toLowerCase()!==s.toLowerCase())return{isForUser:!1};let c=To(e,Ro(o)),a=Fo(c);return a.toLowerCase()!==r.toLowerCase()?{isForUser:!1}:{isForUser:!0,stealthAddress:a}}catch{return{isForUser:!1}}}function Yr(n,e,t){try{let r=fs(n,t),s=Y.keccak256(r);return Bd(e,s)}catch(r){throw new N("Failed to compute stealth private key",r)}}function Id(n,e,t,r,s,i){try{if(!Gr(n,t,r,s,i).isForUser)return!1;let c=Yr(n,e,r);return new Y.Wallet(c).address.toLowerCase()===s.toLowerCase()}catch{return!1}}function fs(n,e){try{return new Y.Wallet(n).signingKey.computeSharedSecret(e)}catch(t){throw new N("Failed to compute shared secret",t)}}function Ro(n){try{return new Y.Wallet(n).signingKey.compressedPublicKey}catch(e){throw new N("Failed to multiply generator by scalar",e)}}function To(n,e){try{let t=Y.SigningKey.computePublicKey(n,!1),r=Y.SigningKey.computePublicKey(e,!1),s=BigInt("0x"+t.slice(4,68)),i=BigInt("0x"+t.slice(68)),o=BigInt("0x"+r.slice(4,68)),c=BigInt("0x"+r.slice(68)),a=BigInt("0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F");if(s===o&&i===c){let f=3n*s*s%a,y=2n*i%a,k=f*Do(y,a)%a,m=(k*k-2n*s)%a,b=(k*(s-m)-i)%a;return Bo((m+a)%a,(b+a)%a)}let u=((c-i)%a+a)%a,l=((o-s)%a+a)%a,h=u*Do(l,a)%a,g=(h*h-s-o)%a,d=(h*(s-g)-i)%a;return Bo((g+a)%a,(d+a)%a)}catch(t){throw new N("Failed to add public keys",t)}}function Bd(n,e){try{let t=BigInt("0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141"),r=BigInt(n),s=BigInt(e);return"0x"+((r+s)%t).toString(16).padStart(64,"0")}catch(t){throw new N("Failed to add private keys",t)}}function Bo(n,e){return"0x"+(e%2n===0n?"02":"03")+n.toString(16).padStart(64,"0")}function Do(n,e){n=(n%e+e)%e;let[t,r]=[n,e],[s,i]=[1n,0n];for(;r!==0n;){let o=t/r;[t,r]=[r,t-o*r],[s,i]=[i,s-o*i]}return(s%e+e)%e}function Fo(n){try{let e=Y.SigningKey.computePublicKey(n,!1),t=Y.keccak256("0x"+e.slice(4));return Y.getAddress("0x"+t.slice(-40))}catch(e){throw new N("Failed to derive address from public key",e)}}var jt=class{constructor(e,t){this.getMnemonic=t}async generateStealthAddress(e){try{let t=await this.getMnemonic(e?.requireAuth),r=Yt(t),s=hs(r.stealthMetaAddress);return{stealthAddress:s.stealthAddress,ephemeralPublicKey:s.ephemeralPubKey,viewTag:s.viewTag}}catch(t){throw new H("Failed to generate stealth address","STEALTH_GENERATION_ERROR",t)}}async parseAnnouncement(e,t){try{let r=await this.getMnemonic(t?.requireAuth),s=Yt(r),i=Gr(s.viewingKey,s.spendingPubKey,e.ephemeralPublicKey,e.stealthAddress,e.viewTag);if(!i.isForUser)return{isForUser:!1};let o=Yr(s.viewingKey,s.spendingKey,e.ephemeralPublicKey);return{isForUser:!0,stealthAddress:i.stealthAddress,stealthPrivateKey:o}}catch(r){throw new H("Failed to parse announcement","ANNOUNCEMENT_PARSE_ERROR",r)}}async scanAnnouncements(e,t){let r=[];for(let s of e){let i=await this.parseAnnouncement(s,t);i.isForUser&&r.push(i)}return r}async getKeys(e){try{let t=await this.getMnemonic(e?.requireAuth);return Yt(t)}catch(t){throw new H("Failed to get stealth keys","STEALTH_KEYS_ERROR",t)}}async getStealthMetaAddress(e){try{return(await this.getKeys(e)).stealthMetaAddress}catch(t){throw new H("Failed to get stealth meta-address","STEALTH_META_ADDRESS_ERROR",t)}}get isAvailable(){return!0}};V();W();var Dd="Web3PasskeyPersistentSessions",Rd=2,ie="sessions",jr=class{constructor(){this.db=null;this.initPromise=null}async init(){return this.initPromise?this.initPromise:this.db?Promise.resolve():(this.initPromise=new Promise((e,t)=>{let r=indexedDB.open(Dd,Rd);r.onupgradeneeded=s=>{let i=s.target.result;i.objectStoreNames.contains(ie)||i.createObjectStore(ie,{keyPath:"ethereumAddress"}).createIndex("expiresAt","expiresAt",{unique:!1})},r.onsuccess=()=>{this.db=r.result,this.initPromise=null,e()},r.onerror=()=>{this.initPromise=null,t(new T("Failed to open persistent session database",r.error))}}),this.initPromise)}async store(e){if(e.securityMode==="STRICT")throw new T("Cannot persist STRICT mode sessions");return this.db||await this.init(),new Promise((t,r)=>{let o=this.db.transaction([ie],"readwrite").objectStore(ie).put(e);o.onerror=()=>r(new T("Failed to store persistent session",o.error)),o.onsuccess=()=>t()})}async retrieve(e){return this.db||await this.init(),new Promise((t,r)=>{let o=this.db.transaction([ie],"readonly").objectStore(ie).get(e);o.onerror=()=>r(new T("Failed to retrieve persistent session",o.error)),o.onsuccess=()=>{let c=o.result||null;if(c&&Date.now()>c.expiresAt){this.delete(e).catch(console.error),t(null);return}t(c)}})}async delete(e){return this.db||await this.init(),new Promise((t,r)=>{let o=this.db.transaction([ie],"readwrite").objectStore(ie).delete(e);o.onerror=()=>r(new T("Failed to delete persistent session",o.error)),o.onsuccess=()=>t()})}async clear(){return this.db||await this.init(),new Promise((e,t)=>{let i=this.db.transaction([ie],"readwrite").objectStore(ie).clear();i.onerror=()=>t(new T("Failed to clear persistent sessions",i.error)),i.onsuccess=()=>e()})}async cleanupExpired(){return this.db||await this.init(),new Promise((e,t)=>{let i=this.db.transaction([ie],"readwrite").objectStore(ie).index("expiresAt"),o=Date.now(),c=IDBKeyRange.upperBound(o),a=i.openCursor(c);a.onsuccess=u=>{let l=u.target.result;l?(l.delete(),l.continue()):e()},a.onerror=()=>t(new T("Failed to cleanup expired sessions",a.error))})}};async function Mo(n,e,t){try{let r=await G(e,t);return await ne(n,r)}catch(r){throw new N("Failed to encrypt mnemonic for persistence",r)}}async function ps(n,e,t){try{let r=await G(e,t);return await se(n,r)}catch(r){throw new N("Failed to decrypt mnemonic from persistence",r)}}var Jr=class{constructor(e=1,t){this.session=null;this.sessionDuration=e*60*60*1e3,this.persistentConfig={enabled:t?.enabled??!1,duration:t?.duration??168,requireReauth:t?.requireReauth??!0},this.persistentStorage=new jr}async startSession(e,t,r,s,i){let o=new Date(Date.now()+this.sessionDuration).toISOString();if(this.session={mnemonic:e,expiresAt:o,credentialId:t},this.persistentConfig.enabled&&i!=="STRICT"&&r&&s)try{let c=await Mo(e,t,s),a=Date.now()+this.persistentConfig.duration*60*60*1e3;await this.persistentStorage.store({encryptedMnemonic:c,expiresAt:a,credentialId:t,ethereumAddress:r,securityMode:i||"STANDARD",createdAt:Date.now()})}catch(c){console.warn("[w3pk] Failed to persist session:",c)}}getMnemonic(){return this.session?new Date>new Date(this.session.expiresAt)?(this.clearSession(),null):this.session.mnemonic:null}getCredentialId(){return this.session?new Date>new Date(this.session.expiresAt)?(this.clearSession(),null):this.session.credentialId:null}isActive(){return this.getMnemonic()!==null}getRemainingTime(){return this.session?new Date>new Date(this.session.expiresAt)?(this.clearSession(),0):Math.floor((new Date(this.session.expiresAt).getTime()-Date.now())/1e3):0}extendSession(){if(!this.session)throw new Error("No active session to extend");if(new Date>new Date(this.session.expiresAt))throw this.clearSession(),new Error("Session expired, cannot extend");this.session.expiresAt=new Date(Date.now()+this.sessionDuration).toISOString()}async restoreFromPersistentStorage(e,t,r){if(!this.persistentConfig.enabled)return null;try{let s=await this.persistentStorage.retrieve(e);if(!s)return null;if(s.credentialId!==t)return console.warn("[w3pk] Credential ID mismatch, clearing persistent session"),await this.persistentStorage.delete(e),null;let i=await ps(s.encryptedMnemonic,t,r),o=new Date(Date.now()+this.sessionDuration).toISOString();return this.session={mnemonic:i,expiresAt:o,credentialId:t},i}catch(s){console.warn("[w3pk] Failed to restore persistent session:",s);try{await this.persistentStorage.delete(e)}catch{}return null}}async attemptSilentRestore(){if(!this.persistentConfig.enabled||this.persistentConfig.requireReauth)return null;try{let{CredentialStorage:e}=await Promise.resolve().then(()=>(De(),Or)),r=await new e().getAllCredentials();if(r.length===0)return null;for(let s of r){let i=await this.persistentStorage.retrieve(s.ethereumAddress);if(!i)continue;if(i.credentialId!==s.id){console.warn("[w3pk] Credential ID mismatch, skipping this session");continue}let o=await ps(i.encryptedMnemonic,s.id,s.publicKey),c=new Date(Date.now()+this.sessionDuration).toISOString();return this.session={mnemonic:o,expiresAt:c,credentialId:s.id},{mnemonic:o,ethereumAddress:s.ethereumAddress,credentialId:s.id,publicKey:s.publicKey}}return null}catch(e){return console.warn("[w3pk] Failed to attempt silent restore:",e),null}}async clearSession(){if(this.session&&(this.session.mnemonic="0".repeat(this.session.mnemonic.length)),this.session=null,this.persistentConfig.enabled)try{await this.persistentStorage.clear()}catch(e){console.warn("[w3pk] Failed to clear persistent sessions:",e)}}setSessionDuration(e){this.sessionDuration=e*60*60*1e3}};De();var Qr={debug:!1,sessionDuration:1,persistentSession:{enabled:!1,duration:168,requireReauth:!0},onError:n=>{Qr.debug&&console.error("[w3pk]",n)}};V();var No="https://chainid.network/chains.json";var Jt=null,Td=[/\$\{[\w_]+\}/i,/\{[\w_]+\}/i,/<[\w_]+>/i,/YOUR[-_]?API[-_]?KEY/i,/INSERT[-_]?API[-_]?KEY/i,/API[-_]?KEY[-_]?HERE/i];function Fd(n){return Td.some(e=>e.test(n))}async function Md(n=No){let e=await fetch(n);if(!e.ok)throw new Error(`Failed to fetch chains data: ${e.status} ${e.statusText}`);return await e.json()}async function gs(n){let e=n?.chainsJsonUrl??No,t=n?.cacheDuration??36e5,r=Date.now();if(Jt&&r-Jt.timestamp<t)return Jt.data;let s=await Md(e);return Jt={data:s,timestamp:r},s}async function ms(n,e){let r=(await gs(e)).find(s=>s.chainId===n);return r?r.rpc.filter(s=>!Fd(s)&&!s.startsWith("wss://")&&!s.startsWith("ws://")):[]}async function Nd(n){return gs(n)}async function Ud(n,e){return(await gs(e)).find(r=>r.chainId===n)}function Ld(){Jt=null}As();en();var $d=new Set([1,10,8453,42161,57073,100,42220,137,42,15,40,41,44,46,47,50,51,56,61,71,82,83,95,97,112,123,130,146,151,153,171,180,183,185,195,215,228,247,248,252,261,267,291,293,311,332,336,395,401,416,466,480,488,510,545,634,647,648,747,831,919,938,945,957,964,970,980,995,997,1001,1003,1024,1030,1114,1125,1135,1149,1188,1284,1285,1287,1300,1301,1315,1337,1338,1339,1424,1514,1687,1727,1729,1740,1750,1829,1868,1946,1961,1962,1969,1989,1995,2017,2020,2031,2043,2109,2241,2340,2345,2440,2522,2559,2649,3068,3109,3338,3502,3799,3888,3889,4e3,4048,4078,4162,4201,4202,4460,4488,4661,4689,4690,4888,5e3,5003,5124,5234,5330,5424,5522,6283,6342,6398,6678,6806,6934,6942,6969,7117,7171,7200,7208,7368,7518,7668,7672,7744,7771,7869,7897,8008,8118,8217,8408,8700,8726,8727,8844,8880,8881,8882,8889,9372,9496,9700,9745,9746,9899,9990,9996,10011,10085,10143,10200,11221,11501,11504,11891,13370,14853,16602,16661,17e3,18880,18881,19991,21e3,21816,21912,25327,32323,33401,34443,41923,42170,43111,44787,47805,48898,48900,49049,49088,5e4,50312,53302,53456,53457,55244,56288,59141,60808,60850,62320,62850,64002,71402,72080,73114,73115,75338,78281,80002,80008,80069,80094,80451,80931,84532,88899,91342,92278,94524,96970,97476,97477,98985,100021,100501,101010,102030,102031,102032,112358,120893,121212,121213,121214,121215,129399,161803,175188,192940,193939,198989,212013,222222,240241,325e3,355110,355113,421614,555777,560048,656476,713715,743111,747474,763373,763375,777777,806582,808813,810180,839999,888991,2019775,2222222,4278608,5734951,6666689,6985385,7080969,7777777,9999999,11142220,11155111,11155420,11155931,16969696,19850818,20180427,20250825,28122024,34949059,37084624,52164803,61022448,79479957,96969696,420420421,420420422,888888888,974399131,999999999,1020352220,1273227453,1313161560,1350216234,1380996178,1417429182,1444673419,1482601649,1564830818,2046399126,11297108099,11297108109,88153591557,123420000220,123420001114]);async function qd(n,e=1e4){try{let t=new AbortController,r=setTimeout(()=>t.abort(),e),s=await fetch(n,{method:"POST",headers:{"Content-Type":"application/json"},signal:t.signal,body:JSON.stringify({jsonrpc:"2.0",method:"eth_estimateGas",params:[{from:"0xdeadbeef00000000000000000000000000000000",to:"0xdeadbeef00000000000000000000000000000000",data:"0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",value:"0x0"},"latest",{"0xdeadbeef00000000000000000000000000000000":{code:"0xef01000000000000000000000000000000000000000001"}}],id:1})});if(clearTimeout(r),!s.ok)return!1;let i=await s.json();if(i.error){let o=(i.error.message||"").toLowerCase();return!["unsupported","not supported","unknown","invalid","unrecognized","does not support","not implemented"].some(a=>o.includes(a))}return i.result!==void 0}catch{return!1}}async function _o(n,e,t){if($d.has(n))return!0;let r=t?.maxEndpoints||3,s=t?.timeout||1e4;try{let i=await e(n);if(i.length===0)return!1;let o=i.slice(0,r);for(let c of o)if(await qd(c,s))return!0;return!1}catch{return!1}}function oc(n){return typeof n=="string"&&/^0x[0-9a-fA-F]*$/.test(n)}function ac(n){let e=n.startsWith("0x")?n.slice(2):n,t=new Uint8Array(e.match(/.{1,2}/g).map(r=>parseInt(r,16)));return new TextDecoder().decode(t)}var fr=class{constructor(e={}){this.currentUser=null;this.currentWallet=null;this.config={...Qr,...e},this.walletStorage=new zr;let t={...Qr.persistentSession,...e.persistentSession};this.sessionManager=new Jr(e.sessionDuration||1,t),e.stealthAddresses!==void 0&&(this.stealth=new jt(e.stealthAddresses,r=>this.getMnemonicFromSession(r)))}async loadZKModule(){if(this.zkModule)return this.zkModule;try{let e=new Function("path","return import(path)"),{ZKProofModule:t}=await e("w3pk/zk"),r=this.config.zkProofs||{};return this.zkModule=new t(r),this.zkModule}catch{throw new Error("ZK module not available. Install dependencies: npm install snarkjs circomlibjs")}}async getMnemonicFromSession(e=!1,t="STANDARD"){let r=t;if(!e){let h=this.sessionManager.getMnemonic();if(h)return h}if(!this.currentUser)throw new S("Must be authenticated. Call login() first.");let s=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!s)throw new S("No wallet found. Generate a wallet first.");if(!(await Kr()).user)throw new S("Authentication failed");let a=(await new F().getCredentialById(s.credentialId))?.publicKey,u=await G(s.credentialId,a),l=await se(s.encryptedMnemonic,u);return await this.sessionManager.startSession(l,s.credentialId,this.currentUser.ethereumAddress,a,r),l}async register(e){try{this.currentWallet?.address||await this.generateWallet();let t=this.currentWallet.address,r=this.currentWallet.mnemonic;await Co({username:e.username,ethereumAddress:t});let i=await new F().getCredentialByAddress(t);if(this.currentUser={username:e.username,ethereumAddress:t,credentialId:i?.id||""},!i)throw new S("Credential not found after registration");let o=i.id,c=i.publicKey,a=await G(o,c),u=await ne(r,a);return await this.walletStorage.store({ethereumAddress:this.currentUser.ethereumAddress,encryptedMnemonic:u,credentialId:o,createdAt:new Date().toISOString()}),await this.sessionManager.startSession(r,o,t,c,"STANDARD"),this.currentWallet={address:t,mnemonic:r},this.config.onAuthStateChanged?.(!0,this.currentUser),{address:t,username:e.username}}catch(t){throw this.config.onError?.(t),t}}async login(){try{let e=await this.sessionManager.attemptSilentRestore();if(e){let l=await new F().getCredentialById(e.credentialId);return this.currentUser={username:l?.username||e.ethereumAddress,ethereumAddress:e.ethereumAddress,credentialId:e.credentialId},await this.walletStorage.retrieve(this.currentUser.ethereumAddress)?(this.config.onAuthStateChanged?.(!0,this.currentUser),this.currentUser):(await this.sessionManager.clearSession(),this.login())}let t=await Kr();if(!t.verified||!t.user)throw new O("Login failed");this.currentUser={username:t.user.username,ethereumAddress:t.user.ethereumAddress,credentialId:t.user.credentialId};let r=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!r)return this.config.onAuthStateChanged?.(!0,this.currentUser),this.currentUser;let o=(await new F().getCredentialById(r.credentialId))?.publicKey,c=await this.sessionManager.restoreFromPersistentStorage(this.currentUser.ethereumAddress,r.credentialId,o||""),a;if(c)a=c;else{let u=await G(r.credentialId,o);a=await se(r.encryptedMnemonic,u),await this.sessionManager.startSession(a,r.credentialId,this.currentUser.ethereumAddress,o,"STANDARD")}return this.config.onAuthStateChanged?.(!0,this.currentUser),this.currentUser}catch(e){throw this.config.onError?.(e),e}}async logout(){this.currentUser=null,this.currentWallet=null,await this.sessionManager.clearSession(),this.config.onAuthStateChanged?.(!1,void 0)}get isAuthenticated(){return this.currentUser!==null}get user(){return this.currentUser}async listExistingCredentials(){try{return(await new F().getAllCredentials()).map(r=>({username:r.username,ethereumAddress:r.ethereumAddress,createdAt:r.createdAt,lastUsed:r.lastUsed}))}catch{return[]}}async hasExistingCredential(){return(await this.listExistingCredentials()).length>0}async getExistingCredentialCount(){return(await this.listExistingCredentials()).length}async generateWallet(){try{let e=$r();return this.currentWallet={address:e.address,mnemonic:e.mnemonic},{address:e.address,mnemonic:e.mnemonic}}catch(e){throw this.config.onError?.(e),new S("Failed to generate wallet",e)}}async deriveWallet(e,t,r){try{if(!this.currentUser)throw new S("Must be authenticated to derive wallet");let s=e||we,i=t||be,o=r?.origin||$e();if(s==="PRIMARY"){let{CredentialStorage:l}=await Promise.resolve().then(()=>(De(),Or)),{deriveAddressFromP256PublicKey:h}=await Promise.resolve().then(()=>(ft(),Vr)),d=await new l().getCredentialById(this.currentUser.credentialId);if(!d||!d.publicKey)throw new S("No WebAuthn credential found for PRIMARY mode");return{address:await h(d.publicKey),origin:o,mode:s,tag:i,publicKey:d.publicKey}}let c=s==="STRICT"?!0:r?.requireAuth||!1,a=await this.getMnemonicFromSession(c,s),u=await We(a,o,s,i);return{address:u.address,privateKey:u.privateKey,index:u.index,origin:u.origin,mode:u.mode,tag:u.tag}}catch(s){throw this.config.onError?.(s),new S("Failed to derive wallet",s)}}async getAddress(e,t,r){try{if(!this.currentUser)throw new S("Must be authenticated to get address");let s=e||we,i=t||be,o=r?.origin||$e();if(s==="PRIMARY"){let{deriveAddressFromP256PublicKey:l}=await Promise.resolve().then(()=>(ft(),Vr)),g=await new F().getCredentialById(this.currentUser.credentialId);if(!g||!g.publicKey)throw new S("No WebAuthn credential found for PRIMARY mode");return await l(g.publicKey)}let c=s==="STRICT",a=await this.getMnemonicFromSession(c,s);return(await We(a,o,s,i)).address}catch(s){throw this.config.onError?.(s),new S("Failed to get address",s)}}async importMnemonic(e){try{if(!this.currentUser)throw new S("Must be authenticated to import mnemonic");if(!e||e.trim().split(/\s+/).length<12)throw new S("Invalid mnemonic: must be at least 12 words");let t=await Kr();if(!t.user)throw new S("Authentication failed");let r=t.user.credentialId,o=(await new F().getCredentialById(r))?.publicKey,c=await G(r,o),a=await ne(e.trim(),c);await this.walletStorage.store({ethereumAddress:this.currentUser.ethereumAddress,encryptedMnemonic:a,credentialId:r,createdAt:new Date().toISOString()}),this.currentWallet={address:this.currentUser.ethereumAddress,mnemonic:e.trim()},await this.sessionManager.startSession(e.trim(),r,this.currentUser.ethereumAddress,o,"STANDARD")}catch(t){throw this.config.onError?.(t),new S("Failed to import mnemonic",t)}}async signMessage(e,t){try{if(!this.currentUser)throw new S("Must be authenticated to sign message");let r=t?.mode||we,s=t?.tag||be,i=t?.origin||$e(),o=t?.signingMethod||"EIP191",c=r==="STRICT"?!0:t?.requireAuth||!1,a=await this.getMnemonicFromSession(c,r),u=await We(a,i,r,s),{Wallet:l}=await import("ethers"),h;if(u.privateKey)h=new l(u.privateKey);else{let{deriveWalletFromMnemonic:d}=await Promise.resolve().then(()=>(ht(),us)),{privateKey:f}=d(a,u.index);h=new l(f)}let g;switch(o){case"EIP191":case"SIWE":g=await h.signMessage(e);break;case"EIP712":if(!t?.eip712Domain||!t?.eip712Types||!t?.eip712PrimaryType)throw new S("EIP712 signing requires eip712Domain, eip712Types, and eip712PrimaryType in options");let d;try{d=typeof e=="string"?JSON.parse(e):e}catch{throw new S("EIP712 message must be valid JSON or an object")}g=await h.signTypedData(t.eip712Domain,t.eip712Types,d);break;case"rawHash":let{SigningKey:f}=await import("ethers"),y=e;if(y.startsWith("0x")&&(y=y.slice(2)),y.length!==64)throw new S("rawHash signing method requires a 32-byte hash (64 hex characters)");g=new f(h.privateKey).sign("0x"+y).serialized;break;default:throw new S(`Unsupported signing method: ${o}`)}return{signature:g,address:u.address,mode:u.mode,tag:u.tag,origin:u.origin}}catch(r){throw this.config.onError?.(r),new S("Failed to sign message",r)}}async signMessageWithPasskey(e){try{if(!this.currentUser)throw new S("Must be authenticated to sign message");let{extractRS:t}=await Promise.resolve().then(()=>(ks(),Ko)),{base64UrlDecode:r}=await Promise.resolve().then(()=>(me(),cs)),s=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(e)),i="0x"+Buffer.from(s).toString("hex"),o=new Uint8Array(Buffer.from(i.slice(2),"hex")),c=this.currentUser.credentialId;if(!c)throw new S("Credential ID not found in user object");let a={challenge:o,rpId:window.location.hostname,allowCredentials:[{id:r(c),type:"public-key",transports:["internal","hybrid","usb","nfc","ble"]}],userVerification:"required",timeout:6e4},u=await navigator.credentials.get({publicKey:a});if(!u||!u.response)throw new S("WebAuthn signature failed");let l=u.response,h=new Uint8Array(l.authenticatorData),g=new Uint8Array(l.clientDataJSON),d=await crypto.subtle.digest("SHA-256",g),f=new Uint8Array(h.length+d.byteLength);f.set(h,0),f.set(new Uint8Array(d),h.length);let y=await crypto.subtle.digest("SHA-256",f.buffer),k="0x"+Buffer.from(y).toString("hex"),m=new Uint8Array(l.signature),{r:b,s:v}=t(m),{CredentialStorage:A}=await Promise.resolve().then(()=>(De(),Or)),C=await new A().getCredentialById(c);if(!C||!C.publicKey)throw new S("No WebAuthn credential found for PRIMARY mode");let{base64UrlToArrayBuffer:x}=await Promise.resolve().then(()=>(me(),cs)),P=x(C.publicKey),q=await crypto.subtle.importKey("spki",P,{name:"ECDSA",namedCurve:"P-256"},!0,["verify"]),ue=await crypto.subtle.exportKey("jwk",q);if(!ue.x||!ue.y)throw new S("Invalid P-256 public key: missing x or y coordinates");let at="0x"+Buffer.from(x(ue.x)).toString("hex"),ct="0x"+Buffer.from(x(ue.y)).toString("hex"),{deriveAddressFromP256PublicKey:I}=await Promise.resolve().then(()=>(ft(),Vr)),ad=await I(C.publicKey);return{signature:{r:b,s:v},messageHash:i,signedHash:k,address:ad,publicKey:{qx:at,qy:ct}}}catch(t){throw this.config.onError?.(t),new S("Failed to sign message with passkey",t)}}async sendTransaction(e,t){try{if(!this.currentUser)throw new S("Must be authenticated to send transaction");let r=t?.mode||we,s=t?.tag||be,i=t?.origin||$e();if(r==="PRIMARY")throw t?.rpcUrl?new S("PRIMARY mode sendTransaction is not yet supported. Use signMessageWithPasskey() to obtain a P-256 signature and submit via a bundler manually."):new S("PRIMARY mode requires options.rpcUrl pointing to a bundler or sponsoring relayer. The P-256 address cannot pay gas directly without a deployed P-256-verifier contract via EIP-7702.");let o=r==="STRICT"?!0:t?.requireAuth||!1,c=await this.getMnemonicFromSession(o,r),a=await We(c,i,r,s),{Wallet:u,JsonRpcProvider:l}=await import("ethers"),h;if(a.privateKey)h=new u(a.privateKey);else{let{deriveWalletFromMnemonic:k}=await Promise.resolve().then(()=>(ht(),us)),{privateKey:m}=k(c,a.index);h=new u(m)}let g=t?.rpcUrl??(await this.getEndpoints(e.chainId))[0];if(!g)throw new S(`No RPC endpoint found for chainId ${e.chainId}. Pass options.rpcUrl.`);let d=new l(g);return{hash:(await h.connect(d).sendTransaction({to:e.to,value:e.value,data:e.data??"0x",chainId:e.chainId,gasLimit:e.gasLimit,maxFeePerGas:e.maxFeePerGas,maxPriorityFeePerGas:e.maxPriorityFeePerGas,nonce:e.nonce})).hash,from:a.address,chainId:e.chainId,mode:a.mode,tag:a.tag,origin:a.origin}}catch(r){throw this.config.onError?.(r),new S("Failed to send transaction",r)}}async signAuthorization(e,t){try{if(!this.currentUser)throw new S("Must be authenticated to sign authorization");let{Wallet:r,Signature:s}=await import("ethers"),{hashEIP7702AuthorizationMessage:i,verifyEIP7702Authorization:o}=await Promise.resolve().then(()=>(en(),ws)),c;if(e.privateKey)c=new r(e.privateKey);else{let y=await this.getMnemonicFromSession(t?.requireAuth);c=r.fromPhrase(y)}let a=BigInt(e.chainId||1),u=e.nonce||0n,l=i(a,e.contractAddress,u),h=c.signingKey.sign(l),g=s.from(h),d={chainId:a,address:e.contractAddress.toLowerCase(),nonce:u,yParity:g.yParity,r:g.r,s:g.s};if(!o(a,e.contractAddress,u,d,c.address))throw new S("Signature verification failed - this should not happen");return d}catch(r){throw this.config.onError?.(r),new S("Failed to sign authorization",r)}}async getEndpoints(e){return ms(e)}async supportsEIP7702(e,t){return _o(e,this.getEndpoints.bind(this),t)}getEIP1193Provider(e){let t=e?.chainId??1,r=this,s={},i=(c,...a)=>{(s[c]??[]).forEach(u=>u(...a))};return{async request({method:c,params:a}){switch(c){case"eth_accounts":case"eth_requestAccounts":return[await r.getAddress(e?.mode??"STANDARD",e?.tag??"MAIN")];case"eth_chainId":return"0x"+t.toString(16);case"eth_sendTransaction":{let u=(a??[])[0]??{};if(!u.chainId&&!t)throw new S("eth_sendTransaction: chainId is required");let l=u.chainId?parseInt(u.chainId,16):t;return(await r.sendTransaction({to:u.to,value:u.value!==void 0?BigInt(u.value):void 0,data:u.data??"0x",chainId:l,gasLimit:u.gas!==void 0?BigInt(u.gas):void 0,maxFeePerGas:u.maxFeePerGas!==void 0?BigInt(u.maxFeePerGas):void 0,maxPriorityFeePerGas:u.maxPriorityFeePerGas!==void 0?BigInt(u.maxPriorityFeePerGas):void 0,nonce:u.nonce!==void 0?parseInt(u.nonce,16):void 0},{mode:e?.mode,tag:e?.tag,rpcUrl:e?.rpcUrl})).hash}case"personal_sign":{let[u]=a??[],l=oc(u)?ac(u):u;return(await r.signMessage(l,{mode:e?.mode,tag:e?.tag,signingMethod:"EIP191"})).signature}case"eth_sign":{let[,u]=a??[],l=oc(u)?ac(u):u;return(await r.signMessage(l,{mode:e?.mode,tag:e?.tag,signingMethod:"EIP191"})).signature}case"eth_signTypedData_v4":{let[,u]=a??[],l=typeof u=="string"?JSON.parse(u):u,{domain:h,types:g,message:d,primaryType:f}=l,y={...g};return delete y.EIP712Domain,(await r.signMessage(JSON.stringify(d),{mode:e?.mode,tag:e?.tag,signingMethod:"EIP712",eip712Domain:h,eip712Types:y,eip712PrimaryType:f})).signature}case"wallet_switchEthereumChain":{let u=parseInt((a??[])[0]?.chainId??"0x1",16);return t=u,i("chainChanged","0x"+u.toString(16)),null}default:throw new S(`w3pk EIP-1193: unsupported method "${c}"`)}},on(c,a){s[c]||(s[c]=[]),s[c].push(a)},removeListener(c,a){s[c]&&(s[c]=s[c].filter(u=>u!==a))}}}async requestExternalWalletDelegation(e){if(!this.currentUser)throw new S("Must be authenticated to get w3pk delegation address. Call login() or register() first.");let{requestExternalWalletAuthorization:t,getDefaultProvider:r}=await Promise.resolve().then(()=>(As(),Lo)),s=e?.provider||r();if(!s)throw new S("No external wallet provider found. Please install MetaMask, Rabby, or similar wallet.");let i=this.currentUser.ethereumAddress;return t(s,{delegateToAddress:i,chainId:e?.chainId,nonce:e?.nonce,accountIndex:e?.accountIndex})}get zk(){return new Proxy({},{get:(e,t)=>async(...r)=>(await this.loadZKModule())[t](...r)})}async getBackupStatus(){if(!this.currentUser)throw new S("Must be authenticated to check backup status");let{BackupManager:e}=await Promise.resolve().then(()=>(Xe(),Qe));return new e().getBackupStatus(this.currentUser.ethereumAddress)}async createBackupFile(e="password",t){if(!this.currentUser)throw new S("Must be authenticated to create backup");let r=await this.getMnemonicFromSession(!0),{BackupFileManager:s}=await Promise.resolve().then(()=>(ae(),de)),{BackupStorage:i}=await Promise.resolve().then(()=>(tn(),zo)),o=new s,c=new i,a,u;if(e==="password"){if(!t)throw new S("Password required for password-based backup");u=(await o.createPasswordBackup(r,this.currentUser.ethereumAddress,t)).backupFile,a=o.createDownloadableBackup(u)}else if(e==="passkey"){let l=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!l)throw new S("No wallet data found");let g=await new F().getCredentialById(l.credentialId);if(!g)throw new S("Credential not found");u=(await o.createPasskeyBackup(r,this.currentUser.ethereumAddress,g.id,g.publicKey)).backupFile,a=o.createDownloadableBackup(u)}else if(e==="hybrid"){if(!t)throw new S("Password required for hybrid backup");let l=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!l)throw new S("No wallet data found");let g=await new F().getCredentialById(l.credentialId);if(!g)throw new S("Credential not found");u=(await o.createHybridBackup(r,this.currentUser.ethereumAddress,t,g.id,g.publicKey)).backupFile,a=o.createDownloadableBackup(u)}else throw new S(`Unknown encryption type: ${e}`);return await c.storeBackupMetadata({id:crypto.randomUUID(),ethereumAddress:this.currentUser.ethereumAddress,method:"file",createdAt:new Date().toISOString(),addressChecksum:u.addressChecksum}),a}async setupSocialRecovery(e,t,r){if(!this.currentUser)throw new S("Must be authenticated to set up social recovery");let s=await this.getMnemonicFromSession(!0),{BackupFileManager:i}=await Promise.resolve().then(()=>(ae(),de)),o=new i,c;if(r)c=(await o.createPasswordBackup(s,this.currentUser.ethereumAddress,r)).backupFile;else{let h=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!h)throw new S("No wallet data found");let d=await new F().getCredentialById(h.credentialId);if(!d)throw new S("Credential not found");c=(await o.createPasskeyBackup(s,this.currentUser.ethereumAddress,d.id,d.publicKey)).backupFile}let{SocialRecovery:a}=await Promise.resolve().then(()=>(En(),kn));return{guardianShares:(await new a().splitAmongGuardians(c,e,t)).guardianShares,setupComplete:!0}}async generateGuardianInvite(e,t){let{SocialRecovery:r}=await Promise.resolve().then(()=>(En(),kn)),s=new r,i=await s.createGuardianInvitation(e,t),o=s.createShareDownload(e);return{qrCodeDataURL:i.qrCodeDataURL,shareDocument:i.shareDocument,downloadBlob:o.blob,filename:o.filename}}async recoverFromGuardians(e,t){let{SocialRecovery:r}=await Promise.resolve().then(()=>(En(),kn)),{BackupFileManager:s}=await Promise.resolve().then(()=>(ae(),de)),{BackupManager:i}=await Promise.resolve().then(()=>(Xe(),Qe)),o=new r,c=new s,a=new i,u=e.map(g=>typeof g=="string"?o.parseGuardianShare(g):g),l=await o.recoverFromShares(u),h;if(l.encryptionMethod==="password"){if(!t)throw new S("Password required to decrypt password-protected backup");h=await c.restoreWithPassword(l,t)}else throw new S("Passkey-encrypted backups not supported for guardian recovery. Use password-protected backups.");return a.markBackupVerified(h.ethereumAddress),h}async restoreFromBackupFile(e,t){let{BackupFileManager:r}=await Promise.resolve().then(()=>(ae(),de)),{BackupManager:s}=await Promise.resolve().then(()=>(Xe(),Qe)),i=new r,o=new s,c=await i.parseBackupFile(e),a,u;if(c.encryptionMethod==="password"){if(!t)throw new S("Password required to restore password-encrypted backup");let l=await i.restoreWithPassword(c,t);a=l.mnemonic,u=l.ethereumAddress}else if(c.encryptionMethod==="passkey"){if(!this.currentUser)throw new S("Must be logged in with passkey to restore passkey-encrypted backup. Call login() first.");let g=(await new F().getAllCredentials()).find(f=>f.ethereumAddress.toLowerCase()===this.currentUser.ethereumAddress.toLowerCase());if(!g)throw new S("Credential not found for current user");let d=await i.restoreWithExistingPasskey(c,g.id,g.publicKey);a=d.mnemonic,u=d.ethereumAddress}else if(c.encryptionMethod==="hybrid"){if(!t)throw new S("Password required to restore hybrid backup");if(!this.currentUser)throw new S("Must be logged in with passkey to restore hybrid backup. Call login() first.");let g=(await new F().getAllCredentials()).find(f=>f.ethereumAddress.toLowerCase()===this.currentUser.ethereumAddress.toLowerCase());if(!g)throw new S("Credential not found for current user");let d=await i.restoreWithHybrid(c,t,g.id,g.publicKey);a=d.mnemonic,u=d.ethereumAddress}else throw new S(`Unknown encryption method: ${c.encryptionMethod}`);if(o.markBackupVerified(u),this.currentWallet={address:u,mnemonic:a},this.currentUser){let l=new F,g=(await l.getAllCredentials()).find(d=>d.ethereumAddress.toLowerCase()===this.currentUser.ethereumAddress.toLowerCase());if(g){let d=this.currentUser.ethereumAddress;d.toLowerCase()!==u.toLowerCase()&&await this.walletStorage.delete(d),await l.updateCredentialAddress(g.id,u);let f=await(await Promise.resolve().then(()=>(W(),Be))).deriveEncryptionKeyFromWebAuthn(g.id,g.publicKey),y=await(await Promise.resolve().then(()=>(W(),Be))).encryptData(a,f);await this.walletStorage.store({ethereumAddress:u,encryptedMnemonic:y,credentialId:g.id,createdAt:new Date().toISOString()}),this.currentUser={...this.currentUser,ethereumAddress:u},await this.sessionManager.startSession(a,g.id,u,g.publicKey,"STANDARD"),this.config.onAuthStateChanged?.(!0,this.currentUser)}}return{mnemonic:a,ethereumAddress:u}}async syncWalletWithPasskey(e,t){let{BackupFileManager:r}=await Promise.resolve().then(()=>(ae(),de)),{BackupManager:s}=await Promise.resolve().then(()=>(Xe(),Qe)),{promptPasskeySelection:i}=await Promise.resolve().then(()=>(Xs(),Ya)),o=new r,c=new s,a=await i(),u=await o.parseBackupFile(e),l,h;if(u.encryptionMethod==="password"){if(!t)throw new S("Password required to restore password-encrypted backup");let f=await o.restoreWithPassword(u,t);l=f.mnemonic,h=f.ethereumAddress}else if(u.encryptionMethod==="passkey"){if(!a.publicKey)throw new S("Passkey public key not found. The passkey may not be registered on this device yet.");let f=await o.restoreWithExistingPasskey(u,a.credentialId,a.publicKey);l=f.mnemonic,h=f.ethereumAddress}else if(u.encryptionMethod==="hybrid"){if(!t)throw new S("Password required to restore hybrid backup");if(!a.publicKey)throw new S("Passkey public key not found. The passkey may not be registered on this device yet.");let f=await o.restoreWithHybrid(u,t,a.credentialId,a.publicKey);l=f.mnemonic,h=f.ethereumAddress}else throw new S(`Unknown encryption method: ${u.encryptionMethod}`);c.markBackupVerified(h);let d=await new F().getCredentialById(a.credentialId);if(d){let{deriveEncryptionKeyFromWebAuthn:f,encryptData:y}=await Promise.resolve().then(()=>(W(),Be)),k=await f(d.id,d.publicKey),m=await y(l,k);await this.walletStorage.store({ethereumAddress:h,encryptedMnemonic:m,credentialId:d.id,createdAt:new Date().toISOString()}),this.currentUser={username:d.username,ethereumAddress:h,credentialId:d.id},await this.sessionManager.startSession(l,d.id,h,d.publicKey,"STANDARD"),this.config.onAuthStateChanged?.(!0,this.currentUser)}return{mnemonic:l,ethereumAddress:h}}async registerWithBackupFile(e,t,r){let{BackupFileManager:s}=await Promise.resolve().then(()=>(ae(),de)),{BackupManager:i}=await Promise.resolve().then(()=>(Xe(),Qe)),o=new s,c=new i,a=await o.parseBackupFile(e);if(a.encryptionMethod!=="password")throw new S("Can only register with password-encrypted backups. Use restoreFromBackupFile() for passkey-encrypted backups.");let{mnemonic:u,ethereumAddress:l}=await o.restoreWithPassword(a,t),{Wallet:h}=await import("ethers");if(h.fromPhrase(u).address.toLowerCase()!==l.toLowerCase())throw new S("Backup verification failed: address mismatch");return c.markBackupVerified(l),this.currentWallet={address:l,mnemonic:u},this.register({username:r})}async getSyncStatus(){let{DeviceSyncManager:e}=await Promise.resolve().then(()=>(ur(),Cn));return new e().getSyncInfo()}async exportForSync(){if(!this.currentUser)throw new S("Must be authenticated to export for sync");let e=await this.getMnemonicFromSession(!0),t=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!t)throw new S("No wallet data found");let s=await new F().getCredentialById(t.credentialId);if(!s)throw new S("Credential not found");let{DeviceSyncManager:i}=await Promise.resolve().then(()=>(ur(),Cn)),o=new i,{backupFile:c,blob:a}=await o.exportForSync(e,this.currentUser.ethereumAddress,s.id,s.publicKey),u=`w3pk-sync-${this.currentUser.ethereumAddress.substring(0,8)}.json`,l;try{l=await o.generateSyncQR(c)}catch(h){console.warn("QR code generation failed:",h)}return{blob:a,filename:u,qrCode:l}}async importFromSync(e){if(!this.currentUser)throw new S("Must be logged in to import from sync. Call login() first.");let{DeviceSyncManager:t}=await Promise.resolve().then(()=>(ur(),Cn)),{BackupFileManager:r}=await Promise.resolve().then(()=>(ae(),de)),{BackupManager:s}=await Promise.resolve().then(()=>(Xe(),Qe)),i=new r,o=new t,c=new s,a=await i.parseBackupFile(e),u=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!u)throw new S("No wallet data found for current user");let h=await new F().getCredentialById(u.credentialId);if(!h)throw new S("Credential not found");let{mnemonic:g,ethereumAddress:d}=await o.importFromSync(a,h.id,h.publicKey);c.markBackupVerified(d);let f=await(await Promise.resolve().then(()=>(W(),Be))).deriveEncryptionKeyFromWebAuthn(h.id,h.publicKey),y=await(await Promise.resolve().then(()=>(W(),Be))).encryptData(g,f);return await this.walletStorage.store({ethereumAddress:d,encryptedMnemonic:y,credentialId:h.id,createdAt:new Date().toISOString()}),{ethereumAddress:d,success:!0}}async detectSyncCapabilities(){let{PlatformDetector:e}=await Promise.resolve().then(()=>(ec(),Za));return new e().detectSyncCapabilities()}async simulateRecoveryScenario(e){if(!this.currentUser)throw new S("Must be authenticated to run recovery simulation");let t=await this.getBackupStatus(),{RecoverySimulator:r}=await Promise.resolve().then(()=>(hr(),Rn));return new r().simulateScenario(e,t)}async runRecoveryTest(){if(!this.currentUser)throw new S("Must be authenticated to run recovery test");let e=await this.getBackupStatus(),{RecoverySimulator:t}=await Promise.resolve().then(()=>(hr(),Rn));return new t().runInteractiveTest(e)}async getEducation(e){let{getExplainer:t}=await Promise.resolve().then(()=>(hr(),Rn)),r=t(e);if(!r)throw new S(`Unknown education topic: ${e}`);return r}hasActiveSession(){return this.sessionManager.isActive()}getSessionRemainingTime(){return this.sessionManager.getRemainingTime()}extendSession(){try{this.sessionManager.extendSession()}catch(e){throw new S("Cannot extend session",e)}}async clearSession(){await this.sessionManager.clearSession()}setSessionDuration(e){this.sessionManager.setSessionDuration(e)}};V();Xs();ft();hr();async function Ig(n,e="build"){let{importer:t}=await Promise.resolve().then(()=>(Du(),Bu)),{MemoryBlockstore:r}=await Promise.resolve().then(()=>(td(),ed)),s=new r,o=t(async function*(){yield{path:e,content:n}}(),s,{cidVersion:1,rawLeaves:!0,wrapWithDirectory:!1});for await(let c of o)return c.cid.toString();throw new Error("Failed to generate CID")}async function Bg(n){let e=["index.js","index.mjs","index.d.ts"],t=[],r=0;for(let o of e){let c=`${n}/${o}`,a=await fetch(c);if(!a.ok)throw new Error(`Failed to fetch ${o}: ${a.statusText}`);let u=await a.arrayBuffer(),l=new Uint8Array(u);t.push(l),r+=l.length}let s=new Uint8Array(r),i=0;for(let o of t)s.set(o,i),i+=o.length;return s}async function nd(n){let e=await Bg(n);return Ig(e)}function sd(){try{return rd().version}catch{throw new Error("Failed to read package version")}}async function id(){let n=sd();return nd(`https://unpkg.com/w3pk@${n}/dist`)}async function Dg(n){return await id()===n}me();ks();ht();function Rg(n=11){let e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",t=new Uint8Array(n);return crypto.getRandomValues(t),Array.from(t).map(r=>e[r%e.length]).join("")}function Tg(n){if(!n.domain||!n.address||!n.uri||!n.version||n.chainId===void 0||!n.nonce||!n.issuedAt)throw new Error("Missing required SIWE message fields");if(n.version!=="1")throw new Error('SIWE version must be "1"');if(n.nonce.length<8||!/^[a-zA-Z0-9]+$/.test(n.nonce))throw new Error("Nonce must be at least 8 alphanumeric characters");if(n.statement&&n.statement.includes(`
961
- `))throw new Error("Statement cannot contain newlines");let e=`${n.domain} wants you to sign in with your Ethereum account:
962
- `;if(e+=`${n.address}
960
+ ${e}[Error list was empty]`,t.trim()}return Ed(r,e)}function dg(r){let e=()=>{};return e.enabled=!1,e.color="",e.diff=0,e.log=()=>{},e.namespace=r,e.destroy=()=>!0,e.extend=()=>e,e.useColors=()=>!1,e}function Mo(r,e){let t=dg(`${r}:trace`);return X.enabled(`${r}:trace`)&&X.names.map(n=>n.toString()).find(n=>n.includes(":trace"))!=null&&(t=X(`${r}:trace`,e)),Object.assign(X(r,e),{error:X(`${r}:error`,e),trace:t,newScope:n=>Mo(`${r}:${n}`,e)})}function kd(r){if(r!=null&&(r=r.trim(),r.length!==0))return r}var Pd=p(()=>{"use strict";Cr();Jn();Ji();vd();X.formatters.b=r=>r==null?"undefined":le.baseEncode(r);X.formatters.t=r=>r==null?"undefined":J.baseEncode(r);X.formatters.m=r=>r==null?"undefined":Yi.baseEncode(r);X.formatters.p=r=>r==null?"undefined":r.toString();X.formatters.c=r=>r==null?"undefined":r.toString();X.formatters.k=r=>r==null?"undefined":r.toString();X.formatters.a=r=>r==null?"undefined":r.toString();X.formatters.e=r=>r==null?"undefined":Cd(r)});function hg(r){let[e,t]=r[Symbol.asyncIterator]!=null?[r[Symbol.asyncIterator](),Symbol.asyncIterator]:[r[Symbol.iterator](),Symbol.iterator],n=[];return{peek:()=>e.next(),push:s=>{n.push(s)},next:()=>n.length>0?{done:!1,value:n.shift()}:e.next(),[t](){return this}}}var Id,Bd=p(()=>{"use strict";Id=hg});function fg(r){return r[Symbol.asyncIterator]!=null}function pg(r,e){let t=0;if(fg(r))return(async function*(){for await(let c of r)await e(c,t++)&&(yield c)})();let n=Id(r),{value:s,done:i}=n.next();if(i===!0)return(function*(){})();let o=e(s,t++);if(typeof o.then=="function")return(async function*(){await o&&(yield s);for(let c of n)await e(c,t++)&&(yield c)})();let a=e;return(function*(){o===!0&&(yield s);for(let c of n)a(c,t++)&&(yield c)})()}var Dd,Td=p(()=>{"use strict";Bd();Dd=pg});function Xt(){let r={};return r.promise=new Promise((e,t)=>{r.resolve=e,r.reject=t}),r}var Rd=p(()=>{"use strict"});function mg(r){return r.reason}async function Fd(r,e,t){if(e==null)return r;let n=t?.translateError??mg;if(e.aborted)return r.catch(()=>{}),Promise.reject(n(e));let s;try{return await Promise.race([r,new Promise((i,o)=>{s=()=>{o(n(e))},e.addEventListener("abort",s)})])}finally{s!=null&&e.removeEventListener("abort",s)}}var Md=p(()=>{"use strict"});function Ud(){return new Uo}var Uo,Nd=p(()=>{"use strict";Rd();Md();Uo=class{constructor(){f(this,"readNext");f(this,"haveNext");f(this,"ended");f(this,"nextResult");f(this,"error");this.ended=!1,this.readNext=Xt(),this.haveNext=Xt()}[Symbol.asyncIterator](){return this}async next(){if(this.nextResult==null&&await this.haveNext.promise,this.nextResult==null)throw new Error("HaveNext promise resolved but nextResult was undefined");let e=this.nextResult;return this.nextResult=void 0,this.readNext.resolve(),this.readNext=Xt(),e}async throw(e){return this.ended=!0,this.error=e,e!=null&&(this.haveNext.promise.catch(()=>{}),this.haveNext.reject(e)),{done:!0,value:void 0}}async return(){let e={done:!0,value:void 0};return this.ended=!0,this.nextResult=e,this.haveNext.resolve(),e}async push(e,t){await this._push(e,t)}async end(e,t){e!=null?await this.throw(e):await this._push(void 0,t)}async _push(e,t){if(e!=null&&this.ended)throw this.error??new Error("Cannot push value onto an ended pushable");for(;this.nextResult!=null;)await this.readNext.promise;e!=null?this.nextResult={done:!1,value:e}:(this.ended=!0,this.nextResult={done:!0,value:void 0}),this.haveNext.resolve(),this.haveNext=Xt(),await Fd(this.readNext.promise,t?.signal,t)}}});function gg(r){return r[Symbol.asyncIterator]!=null}async function yg(r,e,t){try{await Promise.all(r.map(async n=>{for await(let s of n)await e.push(s,{signal:t}),t.throwIfAborted()})),await e.end(void 0,{signal:t})}catch(n){await e.end(n,{signal:t}).catch(()=>{})}}async function*wg(r){let e=new AbortController,t=Ud();yg(r,t,e.signal).catch(()=>{});try{yield*t}finally{e.abort()}}function*bg(r){for(let e of r)yield*e}function Sg(...r){let e=[];for(let t of r)gg(t)||e.push(t);return e.length===r.length?bg(e):wg(r)}var Ld,_d=p(()=>{"use strict";Nd();Ld=Sg});var Ag,ys,Kd=p(()=>{"use strict";Pd();ds();Td();_d();Vr();Ag=Mo("blockstore:core:tiered"),ys=class extends Ce{constructor(t){super();f(this,"stores");this.stores=t.slice()}async put(t,n,s){return await Promise.all(this.stores.map(async i=>{await i.put(t,n,s)})),t}async*get(t,n){let s;for(let i of this.stores)try{yield*i.get(t,n);return}catch(o){s=o,Ag.error(o)}throw s??new je}async has(t,n){for(let s of this.stores)if(await s.has(t,n))return!0;return!1}async delete(t,n){await Promise.all(this.stores.map(async s=>{await s.delete(t,n)}))}async*putMany(t,n={}){for await(let s of t)await this.put(s.cid,s.bytes,n),yield s.cid}async*deleteMany(t,n={}){for await(let s of t)await this.delete(s,n),yield s}async*getAll(t){let n=new Set;yield*Dd(Ld(...this.stores.map(s=>s.getAll(t))),s=>{let i=s.cid.toString();return n.has(i)?!1:(n.add(i),!0)})}}});var Od={};E(Od,{BaseBlockstore:()=>Ce,BlackHoleBlockstore:()=>Zt,MemoryBlockstore:()=>ps,TieredBlockstore:()=>ys});var zd=p(()=>{"use strict";Vr();bd();Po();Kd()});var Wd=P((sx,xg)=>{xg.exports={name:"w3pk",version:"0.10.0",description:"WebAuthn SDK for passwordless authentication, encrypted wallets, ERC-5564 stealth addresses, and zero-knowledge proofs",author:"Julien B\xE9ranger",license:"GPL-3.0",repository:{type:"git",url:"https://github.com/w3hc/w3pk.git"},bugs:{url:"https://github.com/w3hc/w3pk/issues"},homepage:"https://github.com/w3hc/w3pk#readme",keywords:["webauthn","passkey","authentication","passwordless","fido2","biometric","ethereum","web3","encryption","zero-knowledge","zk-proofs","zk-snarks","privacy","stealth-address","erc-5564","erc-6538","unlinkable","anonymous-transactions","privacy-preserving","ecdh","secp256k1","view-tags","circom","groth16","merkle-tree","commitment-scheme"],main:"./dist/index.js",module:"./dist/index.mjs",types:"./dist/index.d.ts",exports:{".":{types:"./dist/index.d.ts",import:"./dist/index.mjs",require:"./dist/index.js"},"./zk":{types:"./dist/zk/index.d.ts",import:"./dist/zk/index.mjs",require:"./dist/zk/index.js"},"./zk/utils":{types:"./dist/zk/utils.d.ts",import:"./dist/zk/utils.mjs",require:"./dist/zk/utils.js"},"./chainlist":{types:"./dist/chainlist/index.d.ts",import:"./dist/chainlist/index.mjs",require:"./dist/chainlist/index.js"},"./inspect":{types:"./dist/inspect/index.d.ts",import:"./dist/inspect/index.mjs",require:"./dist/inspect/index.js"},"./inspect/node":{types:"./dist/inspect/node.d.ts",import:"./dist/inspect/node.mjs",require:"./dist/inspect/node.js"}},sideEffects:!1,files:["dist","README.md","LICENSE","docs/","scripts/compute-build-hash.mjs"],scripts:{build:"tsup","build:zk":"npm run build && npm run compile:circuits","compile:circuits":"node scripts/compile-circuits.js",dev:"tsup --watch",test:"tsx test/test.ts && tsx test/comprehensive.test.ts && tsx test/backup.test.ts && tsx test/social-recovery.test.ts && tsx test/recovery-education.test.ts && tsx test/zk/zk.test.ts && tsx test/nft-ownership.test.ts && tsx test/chainlist.test.ts && tsx test/eip7702.test.ts && tsx test/external-wallet.test.ts && tsx test/erc5564.test.ts && tsx test/zk/key-stretching.test.ts && tsx test/username-encoding.test.ts && tsx test/username-validation.test.ts && tsx test/origin-derivation.test.ts && tsx test/build-hash.test.ts && tsx test/credential-checking.test.ts && tsx test/webauthn-native.test.ts && tsx test/persistent-session.test.ts && tsx test/sign-message.test.ts && tsx test/siwe.test.ts && tsx test/requirereauth.test.ts && tsx test/eip7951.test.ts && tsx test/send-transaction.test.ts && tsx test/eip1193-provider.test.ts && tsx test/mlkem.test.ts","test:basic":"tsx test/test.ts","test:comprehensive":"tsx test/comprehensive.test.ts","test:backup":"tsx test/backup.test.ts","test:social-recovery":"tsx test/social-recovery.test.ts","test:education":"tsx test/recovery-education.test.ts","test:username":"tsx test/username-encoding.test.ts && tsx test/username-validation.test.ts","test:recovery":"tsx test/backup.test.ts && tsx test/social-recovery.test.ts && tsx test/recovery-education.test.ts","test:zk":"tsx test/zk/zk.test.ts","test:nft":"tsx test/nft-ownership.test.ts","test:chainlist":"tsx test/chainlist.test.ts","test:eip7702":"tsx test/eip7702.test.ts","test:external-wallet":"tsx test/external-wallet.test.ts","test:eip7951":"tsx test/eip7951.test.ts","test:erc5564":"tsx test/erc5564.test.ts","test:sign-message":"tsx test/sign-message.test.ts","test:siwe":"tsx test/siwe.test.ts",prepublishOnly:"pnpm build","build:hash":"node scripts/compute-build-hash.mjs",html:"lsof -ti:3000 | xargs kill -9 2>/dev/null || true && tsup && npx serve . -l 3000 & sleep 5 && open http://localhost:3000/standalone/checker.html"},packageManager:"pnpm@10.6.4",devDependencies:{"@types/node":"^25.9.2","@types/qrcode":"^1.5.5",circomlib:"^2.0.5",tsup:"^8.5.1",tsx:"^4.22.4",typescript:"^6.0.3"},peerDependencies:{ethers:"^6.0.0"},optionalDependencies:{"@ipld/car":"^5.4.6","blockstore-core":"^7.0.1",circomlibjs:"^0.1.7","ipfs-unixfs-importer":"^17.0.1",qrcode:"^1.5.4",snarkjs:"^0.7.6"},dependencies:{"@noble/hashes":"^2.2.0",mlkem:"^2.7.0"},pnpm:{overrides:{"jsonpath@<1.2.0":">=1.2.0","bn.js@>=5.0.0 <5.2.3":">=5.2.3","bn.js@<4.12.3":">=4.12.3","minimatch@>=5.0.0 <5.1.7":">=5.1.7","rollup@>=4.0.0 <4.59.0":">=4.59.0","minimatch@>=5.0.0 <5.1.8":">=5.1.8","jsonpath@<=1.2.1":">=1.3.0","brace-expansion@>=2.0.0 <2.0.3":">=2.0.3","picomatch@>=4.0.0 <4.0.4":">=4.0.4","underscore@<=1.13.7":">=1.13.8","ws@>=8.0.0 <8.20.1":">=8.20.1"}}}});G();function Lo(r){return/^0x[a-fA-F0-9]{40}$/.test(r)}function _o(r){return r.length<3||r.length>50?!1:/^[a-zA-Z0-9]([a-zA-Z0-9_-]*[a-zA-Z0-9])?$/.test(r)}function Ko(r){let e=r.trim().split(/\s+/);return e.length===12||e.length===24}function bs(r){if(!Lo(r))throw new Error("Invalid Ethereum address format")}function Ss(r){if(!_o(r))throw new Error("Username must be 3-50 characters long and contain only letters, numbers, underscores, and hyphens. Must start and end with a letter or number.")}function sh(r){if(!Ko(r))throw new Error("Invalid mnemonic: must be 12 or 24 words")}function ih(r){if(r.length<12)return!1;let e=/[A-Z]/.test(r),t=/[a-z]/.test(r),n=/[0-9]/.test(r),s=/[!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?]/.test(r);return!(!e||!t||!n||!s||["password","12345678","qwerty","abc123","password123","admin","letmein"].some(o=>r.toLowerCase().includes(o)))}Ue();fe();W();async function ah(r){try{let e=new Uint8Array(r),t=ch(e);if(t===-1)return null;let n=e.slice(t);if(!((n[32]&64)!==0))return null;let o=37;o+=16;let a=n[o]<<8|n[o+1];o+=2,o+=a;let c=n.slice(o),l=await lh(c);return he(l)}catch(e){return console.error("Failed to extract public key:",e),null}}function ch(r){let e=new Uint8Array([104,97,117,116,104,68,97,116,97]);for(let t=0;t<r.length-e.length;t++){let n=!0;for(let s=0;s<e.length;s++)if(r[t+s]!==e[s]){n=!1;break}if(n){let s=r[t+e.length],i=t+e.length+1;if(s>=88&&s<=91){let o=s-87;i+=o}return i}}return-1}async function lh(r){let e=Ho(r,-2),t=Ho(r,-3);if(!e||!t)throw new Error("Failed to extract EC coordinates from COSE key");let n=new Uint8Array(65);n[0]=4,n.set(e,1),n.set(t,33);let s=new Uint8Array([48,89,48,19,6,7,42,134,72,206,61,2,1,6,8,42,134,72,206,61,3,1,7,3,66,0]),i=new Uint8Array(s.length+n.length);return i.set(s,0),i.set(n,s.length),i.buffer}function Ho(r,e){let t=e<0?32+(-1-e):e;for(let n=0;n<r.length-33;n++)if(r[n]===t&&(r[n+1]===88&&r[n+2]===32||r[n+1]===88&&r[n+2]===32))return r.slice(n+3,n+35);return null}async function Vo(r){try{let{username:e,ethereumAddress:t}=r;Ss(e),bs(t);let n=new R;if(await n.userExists(e))throw new Error("Username already registered");let s=Fe(),o=new TextEncoder().encode(e),a=he(o),c=L(s),l=L(a),u={challenge:c,rp:{name:"w3pk",id:window.location.hostname},user:{id:l,name:e,displayName:e},pubKeyCredParams:[{type:"public-key",alg:-7},{type:"public-key",alg:-257}],authenticatorSelection:{authenticatorAttachment:"platform",userVerification:"required",residentKey:"required",requireResidentKey:!0},timeout:6e4,attestation:"none",extensions:{prf:{}}},d=await navigator.credentials.create({publicKey:u});if(!d)throw new Error("Failed to create credential");let h=d.getClientExtensionResults().prf?.enabled;h||console.warn("\u26A0\uFE0F PRF extension not supported - falling back to legacy encryption");let m=await ah(d.response.attestationObject);if(!m)throw new Error("Public key not returned from authenticator");return await n.saveCredential({id:d.id,publicKey:m,username:e,ethereumAddress:t,createdAt:new Date().toISOString(),lastUsed:new Date().toISOString(),signCount:0,prfEnabled:h||!1}),{signature:d.response.attestationObject}}catch(e){throw new tr(e instanceof Error?e.message:"Registration failed",e)}}G();Ue();fe();W();async function Qr(){try{let r=new R,e=Fe(),t=[];try{let d=await r.getAllCredentials();d.length>0&&(t=d.map(h=>({id:h.id,type:"public-key",transports:["internal","hybrid","usb","nfc","ble"]})))}catch{}let n=L(e),s=new Uint8Array(32);crypto.getRandomValues(s);let i={challenge:n,rpId:window.location.hostname,userVerification:"required",timeout:6e4,extensions:{prf:{eval:{first:s}}}};t.length>0&&(i.allowCredentials=t.map(d=>({id:L(d.id),type:d.type,transports:d.transports})));let o;try{let d=await navigator.credentials.get({publicKey:i});if(!d)throw new Error("Authentication failed - no credential returned");o=d}catch(d){throw d?.name==="NotAllowedError"||d?.message?.toLowerCase().includes("no credentials available")||d?.message?.toLowerCase().includes("no access key")?(await r.getAllCredentials()).length>0?new K("Your passkey is not available on this device. You may need to restore your wallet from a backup, or login on the device where you registered."):new K("No passkey found. Please register first or restore from a backup."):d}let a=await r.getCredentialById(o.id);if(!a)throw new K("Passkey authenticated but wallet data not found on this device. To sync your account: 1) Select your passkey when prompted, then 2) Provide your backup file. This allows you to use the same passkey on multiple devices.");if(!await uh(o,a,r))throw new Error("Signature verification failed");let u=o.getClientExtensionResults().prf?.results?.first;return!u&&a.prfEnabled&&console.warn("\u26A0\uFE0F PRF was enabled but output not available"),{verified:!0,user:{username:a.username,ethereumAddress:a.ethereumAddress,credentialId:a.id},signature:o.response.signature,prfOutput:u||void 0}}catch(r){throw new K(r instanceof Error?r.message:"Authentication failed",r)}}async function uh(r,e,t){try{let n=r.response.authenticatorData,s=new DataView(n),o=new Uint8Array(n).slice(0,32),a=window.location.hostname,c=new Uint8Array(await crypto.subtle.digest("SHA-256",new TextEncoder().encode(a)));if(!dh(o,c))return console.error("RP ID hash mismatch - possible phishing attack"),!1;let l=s.getUint32(33,!1);if(l>0||e.signCount&&e.signCount>0){let A=e.signCount||0;if(l<=A)return console.error(`Authenticator cloning detected! Counter did not increase: stored=${A}, received=${l}`),!1}let u=L(e.publicKey),d=await crypto.subtle.importKey("spki",u,{name:"ECDSA",namedCurve:"P-256"},!1,["verify"]),h=r.response.clientDataJSON,m=await crypto.subtle.digest("SHA-256",h),g=new Uint8Array(n.byteLength+m.byteLength);g.set(new Uint8Array(n),0),g.set(new Uint8Array(m),n.byteLength);let y=r.response.signature,S=hh(new Uint8Array(y));return await crypto.subtle.verify({name:"ECDSA",hash:"SHA-256"},d,S,g)?(await t.updateSignatureCounter(e.id,l),!0):!1}catch(n){return console.error("Signature verification error:",n),!1}}function dh(r,e){if(r.length!==e.length)return!1;for(let t=0;t<r.length;t++)if(r[t]!==e[t])return!1;return!0}function hh(r){let e=2;e++;let t=r[e++];t>32&&(e++,t--);let n=r.slice(e,e+t);e+=t,e++;let s=r[e++];s>32&&(e++,s--);let i=r.slice(e,e+s),o=new Uint8Array(64);return o.set(n,32-n.length),o.set(i,64-i.length),o.buffer}G();var fh="Web3PasskeyWallet",ph=1,Se="wallets",Zr=class{constructor(){this.db=null}async init(){return new Promise((e,t)=>{let n=indexedDB.open(fh,ph);n.onerror=()=>t(new B("Failed to open database",n.error)),n.onsuccess=()=>{this.db=n.result,e()},n.onupgradeneeded=()=>{let s=n.result;s.objectStoreNames.contains(Se)||s.createObjectStore(Se,{keyPath:"ethereumAddress"})}})}async store(e){return this.db||await this.init(),new Promise((t,n)=>{let o=this.db.transaction([Se],"readwrite").objectStore(Se).put(e);o.onerror=()=>n(new B("Failed to store wallet data",o.error)),o.onsuccess=()=>t()})}async retrieve(e){return this.db||await this.init(),new Promise((t,n)=>{let o=this.db.transaction([Se],"readonly").objectStore(Se).get(e);o.onerror=()=>n(new B("Failed to retrieve wallet data",o.error)),o.onsuccess=()=>t(o.result||null)})}async delete(e){return this.db||await this.init(),new Promise((t,n)=>{let o=this.db.transaction([Se],"readwrite").objectStore(Se).delete(e);o.onerror=()=>n(new B("Failed to delete wallet data",o.error)),o.onsuccess=()=>t()})}async clear(){return this.db||await this.init(),new Promise((e,t)=>{let i=this.db.transaction([Se],"readwrite").objectStore(Se).clear();i.onerror=()=>t(new B("Failed to clear wallet data",i.error)),i.onsuccess=()=>e()})}};Ie();St();W();fe();G();G();import{ethers as j}from"ethers";function rr(r){try{let e=j.HDNodeWallet.fromPhrase(r,void 0,"m/44'/60'/1'/0/0"),t=j.HDNodeWallet.fromPhrase(r,void 0,"m/44'/60'/1'/0/1"),n=t.signingKey.compressedPublicKey,s=e.signingKey.compressedPublicKey;return{stealthMetaAddress:n+s.slice(2),spendingPubKey:n,viewingPubKey:s,viewingKey:e.privateKey,spendingKey:t.privateKey}}catch(e){throw new M("Failed to derive stealth keys",e)}}function ks(r){try{let e="0x"+r.slice(2,68),t="0x"+r.slice(68),n=j.Wallet.createRandom(),s=n.signingKey.compressedPublicKey,i=Cs(n.privateKey,t),o=j.keccak256(i),a="0x"+o.slice(2,4),c=Ps(o),l=Zo(e,Qo(c));return{stealthAddress:Xo(l),ephemeralPubKey:s,viewTag:a}}catch(e){throw new M("Failed to generate stealth address",e)}}function sn(r,e,t,n,s){try{let i=Cs(r,t),o=j.keccak256(i);if(s&&("0x"+o.slice(2,4)).toLowerCase()!==s.toLowerCase())return{isForUser:!1};let a=Ps(o),c=Zo(e,Qo(a)),l=Xo(c);return l.toLowerCase()!==n.toLowerCase()?{isForUser:!1}:{isForUser:!0,stealthAddress:l}}catch{return{isForUser:!1}}}function on(r,e,t){try{let n=Cs(r,t),s=j.keccak256(n),i=Ps(s);return wh(e,i)}catch(n){throw new M("Failed to compute stealth private key",n)}}function yh(r,e,t,n,s,i){try{if(!sn(r,t,n,s,i).isForUser)return!1;let a=on(r,e,n);return new j.Wallet(a).address.toLowerCase()===s.toLowerCase()}catch{return!1}}function Cs(r,e){try{return new j.Wallet(r).signingKey.computeSharedSecret(e)}catch(t){throw new M("Failed to compute shared secret",t)}}function Qo(r){try{return new j.Wallet(r).signingKey.compressedPublicKey}catch(e){throw new M("Failed to multiply generator by scalar",e)}}function Zo(r,e){try{let t=j.SigningKey.computePublicKey(r,!1),n=j.SigningKey.computePublicKey(e,!1),s=BigInt("0x"+t.slice(4,68)),i=BigInt("0x"+t.slice(68)),o=BigInt("0x"+n.slice(4,68)),a=BigInt("0x"+n.slice(68)),c=BigInt("0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F");if(s===o&&i===a){let g=3n*s*s%c,y=2n*i%c,S=g*Jo(y,c)%c,b=(S*S-2n*s)%c,A=(S*(s-b)-i)%c;return jo((b+c)%c,(A+c)%c)}let l=((a-i)%c+c)%c,u=((o-s)%c+c)%c,d=l*Jo(u,c)%c,h=(d*d-s-o)%c,m=(d*(s-h)-i)%c;return jo((h+c)%c,(m+c)%c)}catch(t){throw new M("Failed to add public keys",t)}}function Ps(r){try{let e=BigInt("0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141"),n=BigInt(r)%e;if(n===0n)throw new Error("Scalar reduced to zero (invalid)");return"0x"+n.toString(16).padStart(64,"0")}catch(e){throw new M("Failed to reduce scalar modulo curve order",e)}}function wh(r,e){try{let t=BigInt("0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141"),n=BigInt(r),s=BigInt(e);return"0x"+((n+s)%t).toString(16).padStart(64,"0")}catch(t){throw new M("Failed to add private keys",t)}}function jo(r,e){return"0x"+(e%2n===0n?"02":"03")+r.toString(16).padStart(64,"0")}function Jo(r,e){r=(r%e+e)%e;let[t,n]=[r,e],[s,i]=[1n,0n];for(;n!==0n;){let o=t/n;[t,n]=[n,t-o*n],[s,i]=[i,s-o*i]}return(s%e+e)%e}function Xo(r){try{let e=j.SigningKey.computePublicKey(r,!1),t=j.keccak256("0x"+e.slice(4));return j.getAddress("0x"+t.slice(-40))}catch(e){throw new M("Failed to derive address from public key",e)}}var nr=class{constructor(e,t){this.getMnemonic=t}async generateStealthAddress(e){try{let t=await this.getMnemonic(e?.requireAuth),n=rr(t),s=ks(n.stealthMetaAddress);return{stealthAddress:s.stealthAddress,ephemeralPublicKey:s.ephemeralPubKey,viewTag:s.viewTag}}catch(t){throw new V("Failed to generate stealth address","STEALTH_GENERATION_ERROR",t)}}async parseAnnouncement(e,t){try{let n=await this.getMnemonic(t?.requireAuth),s=rr(n),i=sn(s.viewingKey,s.spendingPubKey,e.ephemeralPublicKey,e.stealthAddress,e.viewTag);if(!i.isForUser)return{isForUser:!1};let o=on(s.viewingKey,s.spendingKey,e.ephemeralPublicKey);return{isForUser:!0,stealthAddress:i.stealthAddress,stealthPrivateKey:o}}catch(n){throw new V("Failed to parse announcement","ANNOUNCEMENT_PARSE_ERROR",n)}}async scanAnnouncements(e,t){let n=[];for(let s of e){let i=await this.parseAnnouncement(s,t);i.isForUser&&n.push(i)}return n}async getKeys(e){try{let t=await this.getMnemonic(e?.requireAuth);return rr(t)}catch(t){throw new V("Failed to get stealth keys","STEALTH_KEYS_ERROR",t)}}async getStealthMetaAddress(e){try{return(await this.getKeys(e)).stealthMetaAddress}catch(t){throw new V("Failed to get stealth meta-address","STEALTH_META_ADDRESS_ERROR",t)}}get isAvailable(){return!0}};G();W();var bh="Web3PasskeyPersistentSessions",Sh=2,oe="sessions",an=class{constructor(){this.db=null;this.initPromise=null}async init(){return this.initPromise?this.initPromise:this.db?Promise.resolve():(this.initPromise=new Promise((e,t)=>{let n=indexedDB.open(bh,Sh);n.onupgradeneeded=s=>{let i=s.target.result;i.objectStoreNames.contains(oe)||i.createObjectStore(oe,{keyPath:"ethereumAddress"}).createIndex("expiresAt","expiresAt",{unique:!1})},n.onsuccess=()=>{this.db=n.result,this.initPromise=null,e()},n.onerror=()=>{this.initPromise=null,t(new B("Failed to open persistent session database",n.error))}}),this.initPromise)}async store(e){if(e.securityMode==="STRICT")throw new B("Cannot persist STRICT mode sessions");return this.db||await this.init(),new Promise((t,n)=>{let o=this.db.transaction([oe],"readwrite").objectStore(oe).put(e);o.onerror=()=>n(new B("Failed to store persistent session",o.error)),o.onsuccess=()=>t()})}async retrieve(e){return this.db||await this.init(),new Promise((t,n)=>{let o=this.db.transaction([oe],"readonly").objectStore(oe).get(e);o.onerror=()=>n(new B("Failed to retrieve persistent session",o.error)),o.onsuccess=()=>{let a=o.result||null;if(a&&Date.now()>a.expiresAt){this.delete(e).catch(console.error),t(null);return}t(a)}})}async delete(e){return this.db||await this.init(),new Promise((t,n)=>{let o=this.db.transaction([oe],"readwrite").objectStore(oe).delete(e);o.onerror=()=>n(new B("Failed to delete persistent session",o.error)),o.onsuccess=()=>t()})}async clear(){return this.db||await this.init(),new Promise((e,t)=>{let i=this.db.transaction([oe],"readwrite").objectStore(oe).clear();i.onerror=()=>t(new B("Failed to clear persistent sessions",i.error)),i.onsuccess=()=>e()})}async cleanupExpired(){return this.db||await this.init(),new Promise((e,t)=>{let i=this.db.transaction([oe],"readwrite").objectStore(oe).index("expiresAt"),o=Date.now(),a=IDBKeyRange.upperBound(o),c=i.openCursor(a);c.onsuccess=l=>{let u=l.target.result;u?(u.delete(),u.continue()):e()},c.onerror=()=>t(new B("Failed to cleanup expired sessions",c.error))})}};async function ea(r,e,t){try{let n=await Y(void 0,void 0,e,t);return await se(r,n)}catch(n){throw new M("Failed to encrypt mnemonic for persistence",n)}}async function Is(r,e,t){try{let n=await Y(void 0,void 0,e,t);return await ie(r,n)}catch(n){throw new M("Failed to decrypt mnemonic from persistence",n)}}var cn=class{constructor(e=1,t){this.session=null;this.sessionDuration=e*60*60*1e3,this.persistentConfig={enabled:t?.enabled??!1,duration:t?.duration??168,requireReauth:t?.requireReauth??!0},this.persistentStorage=new an}async startSession(e,t,n,s,i){let o=new Date(Date.now()+this.sessionDuration).toISOString();if(this.session={mnemonic:e,expiresAt:o,credentialId:t},this.persistentConfig.enabled&&i!=="STRICT"&&n&&s)try{let a=await ea(e,t,s),c=Date.now()+this.persistentConfig.duration*60*60*1e3;await this.persistentStorage.store({encryptedMnemonic:a,expiresAt:c,credentialId:t,ethereumAddress:n,securityMode:i||"STANDARD",createdAt:Date.now()})}catch(a){console.warn("[w3pk] Failed to persist session:",a)}}getMnemonic(){return this.session?new Date>new Date(this.session.expiresAt)?(this.clearSession(),null):this.session.mnemonic:null}getCredentialId(){return this.session?new Date>new Date(this.session.expiresAt)?(this.clearSession(),null):this.session.credentialId:null}isActive(){return this.getMnemonic()!==null}getRemainingTime(){return this.session?new Date>new Date(this.session.expiresAt)?(this.clearSession(),0):Math.floor((new Date(this.session.expiresAt).getTime()-Date.now())/1e3):0}extendSession(){if(!this.session)throw new Error("No active session to extend");if(new Date>new Date(this.session.expiresAt))throw this.clearSession(),new Error("Session expired, cannot extend");this.session.expiresAt=new Date(Date.now()+this.sessionDuration).toISOString()}async restoreFromPersistentStorage(e,t,n){if(!this.persistentConfig.enabled)return null;try{let s=await this.persistentStorage.retrieve(e);if(!s)return null;if(s.credentialId!==t)return console.warn("[w3pk] Credential ID mismatch, clearing persistent session"),await this.persistentStorage.delete(e),null;let i=await Is(s.encryptedMnemonic,t,n),o=new Date(Date.now()+this.sessionDuration).toISOString();return this.session={mnemonic:i,expiresAt:o,credentialId:t},i}catch(s){console.warn("[w3pk] Failed to restore persistent session:",s);try{await this.persistentStorage.delete(e)}catch{}return null}}async attemptSilentRestore(){if(!this.persistentConfig.enabled||this.persistentConfig.requireReauth)return null;try{let{CredentialStorage:e}=await Promise.resolve().then(()=>(Ue(),Jr)),n=await new e().getAllCredentials();if(n.length===0)return null;for(let s of n){let i=await this.persistentStorage.retrieve(s.ethereumAddress);if(!i)continue;if(i.credentialId!==s.id){console.warn("[w3pk] Credential ID mismatch, skipping this session");continue}let o=await Is(i.encryptedMnemonic,s.id,s.publicKey),a=new Date(Date.now()+this.sessionDuration).toISOString();return this.session={mnemonic:o,expiresAt:a,credentialId:s.id},{mnemonic:o,ethereumAddress:s.ethereumAddress,credentialId:s.id,publicKey:s.publicKey}}return null}catch(e){return console.warn("[w3pk] Failed to attempt silent restore:",e),null}}async clearSession(){if(this.session&&(this.session.mnemonic="0".repeat(this.session.mnemonic.length)),this.session=null,this.persistentConfig.enabled)try{await this.persistentStorage.clear()}catch(e){console.warn("[w3pk] Failed to clear persistent sessions:",e)}}setSessionDuration(e){this.sessionDuration=e*60*60*1e3}};Ue();var ln={debug:!1,sessionDuration:1,persistentSession:{enabled:!1,duration:168,requireReauth:!0},onError:r=>{ln.debug&&console.error("[w3pk]",r)}};G();var ta="https://chainid.network/chains.json";var sr=null,Ah=[/\$\{[\w_]+\}/i,/\{[\w_]+\}/i,/<[\w_]+>/i,/YOUR[-_]?API[-_]?KEY/i,/INSERT[-_]?API[-_]?KEY/i,/API[-_]?KEY[-_]?HERE/i];function xh(r){return Ah.some(e=>e.test(r))}async function vh(r=ta){let e=await fetch(r);if(!e.ok)throw new Error(`Failed to fetch chains data: ${e.status} ${e.statusText}`);return await e.json()}async function Bs(r){let e=r?.chainsJsonUrl??ta,t=r?.cacheDuration??36e5,n=Date.now();if(sr&&n-sr.timestamp<t)return sr.data;let s=await vh(e);return sr={data:s,timestamp:n},s}async function Ds(r,e){let n=(await Bs(e)).find(s=>s.chainId===r);return n?n.rpc.filter(s=>!xh(s)&&!s.startsWith("wss://")&&!s.startsWith("ws://")):[]}async function Eh(r){return Bs(r)}async function kh(r,e){return(await Bs(e)).find(n=>n.chainId===r)}function Ch(){sr=null}Ls();hn();var Rh=new Set([1,10,8453,42161,57073,100,42220,137,42,15,40,41,44,46,47,50,51,56,61,71,82,83,95,97,112,123,130,146,151,153,171,180,183,185,195,215,228,247,248,252,261,267,291,293,311,332,336,395,401,416,466,480,488,510,545,634,647,648,747,831,919,938,945,957,964,970,980,995,997,1001,1003,1024,1030,1114,1125,1135,1149,1188,1284,1285,1287,1300,1301,1315,1337,1338,1339,1424,1514,1687,1727,1729,1740,1750,1829,1868,1946,1961,1962,1969,1989,1995,2017,2020,2031,2043,2109,2241,2340,2345,2440,2522,2559,2649,3068,3109,3338,3502,3799,3888,3889,4e3,4048,4078,4162,4201,4202,4460,4488,4661,4689,4690,4888,5e3,5003,5124,5234,5330,5424,5522,6283,6342,6398,6678,6806,6934,6942,6969,7117,7171,7200,7208,7368,7518,7668,7672,7744,7771,7869,7897,8008,8118,8217,8408,8700,8726,8727,8844,8880,8881,8882,8889,9372,9496,9700,9745,9746,9899,9990,9996,10011,10085,10143,10200,11221,11501,11504,11891,13370,14853,16602,16661,17e3,18880,18881,19991,21e3,21816,21912,25327,32323,33401,34443,41923,42170,43111,44787,47805,48898,48900,49049,49088,5e4,50312,53302,53456,53457,55244,56288,59141,60808,60850,62320,62850,64002,71402,72080,73114,73115,75338,78281,80002,80008,80069,80094,80451,80931,84532,88899,91342,92278,94524,96970,97476,97477,98985,100021,100501,101010,102030,102031,102032,112358,120893,121212,121213,121214,121215,129399,161803,175188,192940,193939,198989,212013,222222,240241,325e3,355110,355113,421614,555777,560048,656476,713715,743111,747474,763373,763375,777777,806582,808813,810180,839999,888991,2019775,2222222,4278608,5734951,6666689,6985385,7080969,7777777,9999999,11142220,11155111,11155420,11155931,16969696,19850818,20180427,20250825,28122024,34949059,37084624,52164803,61022448,79479957,96969696,420420421,420420422,888888888,974399131,999999999,1020352220,1273227453,1313161560,1350216234,1380996178,1417429182,1444673419,1482601649,1564830818,2046399126,11297108099,11297108109,88153591557,123420000220,123420001114]);async function Fh(r,e=1e4){try{let t=new AbortController,n=setTimeout(()=>t.abort(),e),s=await fetch(r,{method:"POST",headers:{"Content-Type":"application/json"},signal:t.signal,body:JSON.stringify({jsonrpc:"2.0",method:"eth_estimateGas",params:[{from:"0xdeadbeef00000000000000000000000000000000",to:"0xdeadbeef00000000000000000000000000000000",data:"0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",value:"0x0"},"latest",{"0xdeadbeef00000000000000000000000000000000":{code:"0xef01000000000000000000000000000000000000000001"}}],id:1})});if(clearTimeout(n),!s.ok)return!1;let i=await s.json();if(i.error){let o=(i.error.message||"").toLowerCase();return!["unsupported","not supported","unknown","invalid","unrecognized","does not support","not implemented"].some(c=>o.includes(c))}return i.result!==void 0}catch{return!1}}async function sa(r,e,t){if(Rh.has(r))return!0;let n=t?.maxEndpoints||3,s=t?.timeout||1e4;try{let i=await e(r);if(i.length===0)return!1;let o=i.slice(0,n);for(let a of o)if(await Fh(a,s))return!0;return!1}catch{return!1}}function Ic(r){return typeof r=="string"&&/^0x[0-9a-fA-F]*$/.test(r)}function Bc(r){let e=r.startsWith("0x")?r.slice(2):r,t=new Uint8Array(e.match(/.{1,2}/g).map(n=>parseInt(n,16)));return new TextDecoder().decode(t)}var xr=class{constructor(e={}){this.currentUser=null;this.currentWallet=null;this.config={...ln,...e},this.walletStorage=new Zr;let t={...ln.persistentSession,...e.persistentSession};this.sessionManager=new cn(e.sessionDuration||1,t),e.stealthAddresses!==void 0&&(this.stealth=new nr(e.stealthAddresses,n=>this.getMnemonicFromSession(n)))}async loadZKModule(){if(this.zkModule)return this.zkModule;try{let e=new Function("path","return import(path)"),{ZKProofModule:t}=await e("w3pk/zk"),n=this.config.zkProofs||{};return this.zkModule=new t(n),this.zkModule}catch{throw new Error("ZK module not available. Install dependencies: npm install snarkjs circomlibjs")}}async getMnemonicFromSession(e=!1,t="STANDARD"){let n=t;if(!e){let h=this.sessionManager.getMnemonic();if(h)return h}if(!this.currentUser)throw new w("Must be authenticated. Call login() first.");let s=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!s)throw new w("No wallet found. Generate a wallet first.");let i=await Qr();if(!i.user)throw new w("Authentication failed");let c=(await new R().getCredentialById(s.credentialId))?.publicKey,l=s.salt?L(s.salt):void 0,u=await Y(i.prfOutput,l?new Uint8Array(l):void 0,s.credentialId,c),d=await ie(s.encryptedMnemonic,u);return await this.sessionManager.startSession(d,s.credentialId,this.currentUser.ethereumAddress,c,n),d}async register(e){try{this.currentWallet?.address||await this.generateWallet();let t=this.currentWallet.address,n=this.currentWallet.mnemonic;await Vo({username:e.username,ethereumAddress:t});let i=await new R().getCredentialByAddress(t);if(this.currentUser={username:e.username,ethereumAddress:t,credentialId:i?.id||""},!i)throw new w("Credential not found after registration");let o=i.id,a=i.publicKey,c=xs(),l=await Y(void 0,void 0,o,a),u=await se(n,l);return await this.walletStorage.store({ethereumAddress:this.currentUser.ethereumAddress,encryptedMnemonic:u,credentialId:o,createdAt:new Date().toISOString(),salt:i.prfEnabled?he(c):void 0}),await this.sessionManager.startSession(n,o,t,a,"STANDARD"),this.currentWallet={address:t,mnemonic:n},this.config.onAuthStateChanged?.(!0,this.currentUser),{address:t,username:e.username}}catch(t){throw this.config.onError?.(t),t}}async login(){try{let e=await this.sessionManager.attemptSilentRestore();if(e){let u=await new R().getCredentialById(e.credentialId);return this.currentUser={username:u?.username||e.ethereumAddress,ethereumAddress:e.ethereumAddress,credentialId:e.credentialId},await this.walletStorage.retrieve(this.currentUser.ethereumAddress)?(this.config.onAuthStateChanged?.(!0,this.currentUser),this.currentUser):(await this.sessionManager.clearSession(),this.login())}let t=await Qr();if(!t.verified||!t.user)throw new K("Login failed");this.currentUser={username:t.user.username,ethereumAddress:t.user.ethereumAddress,credentialId:t.user.credentialId};let n=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!n)return this.config.onAuthStateChanged?.(!0,this.currentUser),this.currentUser;let o=(await new R().getCredentialById(n.credentialId))?.publicKey,a=await this.sessionManager.restoreFromPersistentStorage(this.currentUser.ethereumAddress,n.credentialId,o||""),c;if(a)c=a;else{let l=await Y(void 0,void 0,n.credentialId,o);c=await ie(n.encryptedMnemonic,l),await this.sessionManager.startSession(c,n.credentialId,this.currentUser.ethereumAddress,o,"STANDARD")}return this.config.onAuthStateChanged?.(!0,this.currentUser),this.currentUser}catch(e){throw this.config.onError?.(e),e}}async logout(){this.currentUser=null,this.currentWallet=null,await this.sessionManager.clearSession(),this.config.onAuthStateChanged?.(!1,void 0)}get isAuthenticated(){return this.currentUser!==null}get user(){return this.currentUser}async listExistingCredentials(){try{return(await new R().getAllCredentials()).map(n=>({username:n.username,ethereumAddress:n.ethereumAddress,createdAt:n.createdAt,lastUsed:n.lastUsed}))}catch{return[]}}async hasExistingCredential(){return(await this.listExistingCredentials()).length>0}async getExistingCredentialCount(){return(await this.listExistingCredentials()).length}async generateWallet(){try{let e=en();return this.currentWallet={address:e.address,mnemonic:e.mnemonic},{address:e.address,mnemonic:e.mnemonic}}catch(e){throw this.config.onError?.(e),new w("Failed to generate wallet",e)}}async deriveWallet(e,t,n){try{if(!this.currentUser)throw new w("Must be authenticated to derive wallet");let s=e||Ae,i=t||ee,o=n?.origin||ve();if(s==="PRIMARY"){let{CredentialStorage:u}=await Promise.resolve().then(()=>(Ue(),Jr)),{deriveAddressFromP256PublicKey:d}=await Promise.resolve().then(()=>(St(),nn)),m=await new u().getCredentialById(this.currentUser.credentialId);if(!m||!m.publicKey)throw new w("No WebAuthn credential found for PRIMARY mode");return{address:await d(m.publicKey),origin:o,mode:s,tag:i,publicKey:m.publicKey}}let a=s==="STRICT"?!0:n?.requireAuth||!1,c=await this.getMnemonicFromSession(a,s),l=await xe(c,o,s,i);return{address:l.address,privateKey:l.privateKey,index:l.index,origin:l.origin,mode:l.mode,tag:l.tag}}catch(s){throw this.config.onError?.(s),new w("Failed to derive wallet",s)}}async getAddress(e,t,n){try{if(!this.currentUser)throw new w("Must be authenticated to get address");let s=e||Ae,i=t||ee,o=n?.origin||ve();if(s==="PRIMARY"){let{deriveAddressFromP256PublicKey:u}=await Promise.resolve().then(()=>(St(),nn)),h=await new R().getCredentialById(this.currentUser.credentialId);if(!h||!h.publicKey)throw new w("No WebAuthn credential found for PRIMARY mode");return await u(h.publicKey)}let a=s==="STRICT",c=await this.getMnemonicFromSession(a,s);return(await xe(c,o,s,i)).address}catch(s){throw this.config.onError?.(s),new w("Failed to get address",s)}}async importMnemonic(e){try{if(!this.currentUser)throw new w("Must be authenticated to import mnemonic");if(!e||e.trim().split(/\s+/).length<12)throw new w("Invalid mnemonic: must be at least 12 words");let t=await Qr();if(!t.user)throw new w("Authentication failed");let n=t.user.credentialId,o=(await new R().getCredentialById(n))?.publicKey,a=await Y(void 0,void 0,n,o),c=await se(e.trim(),a);await this.walletStorage.store({ethereumAddress:this.currentUser.ethereumAddress,encryptedMnemonic:c,credentialId:n,createdAt:new Date().toISOString()}),this.currentWallet={address:this.currentUser.ethereumAddress,mnemonic:e.trim()},await this.sessionManager.startSession(e.trim(),n,this.currentUser.ethereumAddress,o,"STANDARD")}catch(t){throw this.config.onError?.(t),new w("Failed to import mnemonic",t)}}async signMessage(e,t){try{if(!this.currentUser)throw new w("Must be authenticated to sign message");let n=t?.mode||Ae,s=t?.tag||ee,i=t?.origin||ve(),o=t?.signingMethod||"EIP191",a=n==="STRICT"?!0:t?.requireAuth||!1,c=await this.getMnemonicFromSession(a,n),l=await xe(c,i,n,s),{Wallet:u}=await import("ethers"),d;if(l.privateKey)d=new u(l.privateKey);else{let{deriveWalletFromMnemonic:m}=await Promise.resolve().then(()=>(Ie(),bt)),{privateKey:g}=m(c,l.index);d=new u(g)}let h;switch(o){case"EIP191":case"SIWE":h=await d.signMessage(e);break;case"EIP712":if(!t?.eip712Domain||!t?.eip712Types||!t?.eip712PrimaryType)throw new w("EIP712 signing requires eip712Domain, eip712Types, and eip712PrimaryType in options");let m;try{m=typeof e=="string"?JSON.parse(e):e}catch{throw new w("EIP712 message must be valid JSON or an object")}h=await d.signTypedData(t.eip712Domain,t.eip712Types,m);break;case"rawHash":let{SigningKey:g}=await import("ethers"),y=e;if(y.startsWith("0x")&&(y=y.slice(2)),y.length!==64)throw new w("rawHash signing method requires a 32-byte hash (64 hex characters)");h=new g(d.privateKey).sign("0x"+y).serialized;break;default:throw new w(`Unsupported signing method: ${o}`)}return{signature:h,address:l.address,mode:l.mode,tag:l.tag,origin:l.origin}}catch(n){throw this.config.onError?.(n),new w("Failed to sign message",n)}}async signMessageWithPasskey(e){try{if(!this.currentUser)throw new w("Must be authenticated to sign message");let{extractRS:t}=await Promise.resolve().then(()=>(_s(),oa)),{base64UrlDecode:n}=await Promise.resolve().then(()=>(fe(),As)),s=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(e)),i="0x"+Buffer.from(s).toString("hex"),o=new Uint8Array(Buffer.from(i.slice(2),"hex")),a=this.currentUser.credentialId;if(!a)throw new w("Credential ID not found in user object");let c={challenge:o,rpId:window.location.hostname,allowCredentials:[{id:n(a),type:"public-key",transports:["internal","hybrid","usb","nfc","ble"]}],userVerification:"required",timeout:6e4},l=await navigator.credentials.get({publicKey:c});if(!l||!l.response)throw new w("WebAuthn signature failed");let u=l.response,d=new Uint8Array(u.authenticatorData),h=new Uint8Array(u.clientDataJSON),m=await crypto.subtle.digest("SHA-256",h),g=new Uint8Array(d.length+m.byteLength);g.set(d,0),g.set(new Uint8Array(m),d.length);let y=await crypto.subtle.digest("SHA-256",g.buffer),S="0x"+Buffer.from(y).toString("hex"),b=new Uint8Array(u.signature),{r:A,s:v}=t(b),{CredentialStorage:k}=await Promise.resolve().then(()=>(Ue(),Jr)),x=await new k().getCredentialById(a);if(!x||!x.publicKey)throw new w("No WebAuthn credential found for PRIMARY mode");let{base64UrlToArrayBuffer:T}=await Promise.resolve().then(()=>(fe(),As)),O=T(x.publicKey),Pe=await crypto.subtle.importKey("spki",O,{name:"ECDSA",namedCurve:"P-256"},!0,["verify"]),gt=await crypto.subtle.exportKey("jwk",Pe);if(!gt.x||!gt.y)throw new w("Invalid P-256 public key: missing x or y coordinates");let Gd="0x"+Buffer.from(T(gt.x)).toString("hex"),Yd="0x"+Buffer.from(T(gt.y)).toString("hex"),{deriveAddressFromP256PublicKey:jd}=await Promise.resolve().then(()=>(St(),nn)),Jd=await jd(x.publicKey);return{signature:{r:A,s:v},messageHash:i,signedHash:S,address:Jd,publicKey:{qx:Gd,qy:Yd}}}catch(t){throw this.config.onError?.(t),new w("Failed to sign message with passkey",t)}}async sendTransaction(e,t){try{if(!this.currentUser)throw new w("Must be authenticated to send transaction");let n=t?.mode||Ae,s=t?.tag||ee,i=t?.origin||ve();if(n==="PRIMARY")throw t?.rpcUrl?new w("PRIMARY mode sendTransaction is not yet supported. Use signMessageWithPasskey() to obtain a P-256 signature and submit via a bundler manually."):new w("PRIMARY mode requires options.rpcUrl pointing to a bundler or sponsoring relayer. The P-256 address cannot pay gas directly without a deployed P-256-verifier contract via EIP-7702.");let o=n==="STRICT"?!0:t?.requireAuth||!1,a=await this.getMnemonicFromSession(o,n),c=await xe(a,i,n,s),{Wallet:l,JsonRpcProvider:u}=await import("ethers"),d;if(c.privateKey)d=new l(c.privateKey);else{let{deriveWalletFromMnemonic:S}=await Promise.resolve().then(()=>(Ie(),bt)),{privateKey:b}=S(a,c.index);d=new l(b)}let h=t?.rpcUrl??(await this.getEndpoints(e.chainId))[0];if(!h)throw new w(`No RPC endpoint found for chainId ${e.chainId}. Pass options.rpcUrl.`);let m=new u(h);return{hash:(await d.connect(m).sendTransaction({to:e.to,value:e.value,data:e.data??"0x",chainId:e.chainId,gasLimit:e.gasLimit,maxFeePerGas:e.maxFeePerGas,maxPriorityFeePerGas:e.maxPriorityFeePerGas,nonce:e.nonce})).hash,from:c.address,chainId:e.chainId,mode:c.mode,tag:c.tag,origin:c.origin}}catch(n){throw this.config.onError?.(n),new w("Failed to send transaction",n)}}async signAuthorization(e,t){try{if(!this.currentUser)throw new w("Must be authenticated to sign authorization");let{Wallet:n,Signature:s}=await import("ethers"),{hashEIP7702AuthorizationMessage:i,verifyEIP7702Authorization:o}=await Promise.resolve().then(()=>(hn(),Rs)),a;if(e.privateKey)a=new n(e.privateKey);else{let y=await this.getMnemonicFromSession(t?.requireAuth);a=n.fromPhrase(y)}let c=BigInt(e.chainId||1),l=e.nonce||0n,u=i(c,e.contractAddress,l),d=a.signingKey.sign(u),h=s.from(d),m={chainId:c,address:e.contractAddress.toLowerCase(),nonce:l,yParity:h.yParity,r:h.r,s:h.s};if(!o(c,e.contractAddress,l,m,a.address))throw new w("Signature verification failed - this should not happen");return m}catch(n){throw this.config.onError?.(n),new w("Failed to sign authorization",n)}}async getEndpoints(e){return Ds(e)}async supportsEIP7702(e,t){return sa(e,this.getEndpoints.bind(this),t)}getEIP1193Provider(e){let t=e?.chainId??1,n=this,s={},i=(a,...c)=>{(s[a]??[]).forEach(l=>l(...c))};return{async request({method:a,params:c}){switch(a){case"eth_accounts":case"eth_requestAccounts":return[await n.getAddress(e?.mode??"STANDARD",e?.tag??"MAIN")];case"eth_chainId":return"0x"+t.toString(16);case"eth_sendTransaction":{let l=(c??[])[0]??{};if(!l.chainId&&!t)throw new w("eth_sendTransaction: chainId is required");let u=l.chainId?parseInt(l.chainId,16):t;return(await n.sendTransaction({to:l.to,value:l.value!==void 0?BigInt(l.value):void 0,data:l.data??"0x",chainId:u,gasLimit:l.gas!==void 0?BigInt(l.gas):void 0,maxFeePerGas:l.maxFeePerGas!==void 0?BigInt(l.maxFeePerGas):void 0,maxPriorityFeePerGas:l.maxPriorityFeePerGas!==void 0?BigInt(l.maxPriorityFeePerGas):void 0,nonce:l.nonce!==void 0?parseInt(l.nonce,16):void 0},{mode:e?.mode,tag:e?.tag,rpcUrl:e?.rpcUrl})).hash}case"personal_sign":{let[l]=c??[],u=Ic(l)?Bc(l):l;return(await n.signMessage(u,{mode:e?.mode,tag:e?.tag,signingMethod:"EIP191"})).signature}case"eth_sign":{let[,l]=c??[],u=Ic(l)?Bc(l):l;return(await n.signMessage(u,{mode:e?.mode,tag:e?.tag,signingMethod:"EIP191"})).signature}case"eth_signTypedData_v4":{let[,l]=c??[],u=typeof l=="string"?JSON.parse(l):l,{domain:d,types:h,message:m,primaryType:g}=u,y={...h};return delete y.EIP712Domain,(await n.signMessage(JSON.stringify(m),{mode:e?.mode,tag:e?.tag,signingMethod:"EIP712",eip712Domain:d,eip712Types:y,eip712PrimaryType:g})).signature}case"wallet_switchEthereumChain":{let l=parseInt((c??[])[0]?.chainId??"0x1",16);return t=l,i("chainChanged","0x"+l.toString(16)),null}default:throw new w(`w3pk EIP-1193: unsupported method "${a}"`)}},on(a,c){s[a]||(s[a]=[]),s[a].push(c)},removeListener(a,c){s[a]&&(s[a]=s[a].filter(l=>l!==c))}}}async requestExternalWalletDelegation(e){if(!this.currentUser)throw new w("Must be authenticated to get w3pk delegation address. Call login() or register() first.");let{requestExternalWalletAuthorization:t,getDefaultProvider:n}=await Promise.resolve().then(()=>(Ls(),na)),s=e?.provider||n();if(!s)throw new w("No external wallet provider found. Please install MetaMask, Rabby, or similar wallet.");let i=this.currentUser.ethereumAddress;return t(s,{delegateToAddress:i,chainId:e?.chainId,nonce:e?.nonce,accountIndex:e?.accountIndex})}get zk(){return new Proxy({},{get:(e,t)=>async(...n)=>(await this.loadZKModule())[t](...n)})}async getBackupStatus(){if(!this.currentUser)throw new w("Must be authenticated to check backup status");let{BackupManager:e}=await Promise.resolve().then(()=>(it(),st));return new e().getBackupStatus(this.currentUser.ethereumAddress)}async createBackupFile(e="password",t){if(!this.currentUser)throw new w("Must be authenticated to create backup");let n=await this.getMnemonicFromSession(!0),{BackupFileManager:s}=await Promise.resolve().then(()=>(ce(),pe)),{BackupStorage:i}=await Promise.resolve().then(()=>(fn(),aa)),o=new s,a=new i,c,l;if(e==="password"){if(!t)throw new w("Password required for password-based backup");l=(await o.createPasswordBackup(n,this.currentUser.ethereumAddress,t)).backupFile,c=o.createDownloadableBackup(l)}else if(e==="passkey"){let u=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!u)throw new w("No wallet data found");let h=await new R().getCredentialById(u.credentialId);if(!h)throw new w("Credential not found");l=(await o.createPasskeyBackup(n,this.currentUser.ethereumAddress,h.id,h.publicKey)).backupFile,c=o.createDownloadableBackup(l)}else if(e==="hybrid"){if(!t)throw new w("Password required for hybrid backup");let u=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!u)throw new w("No wallet data found");let h=await new R().getCredentialById(u.credentialId);if(!h)throw new w("Credential not found");l=(await o.createHybridBackup(n,this.currentUser.ethereumAddress,t,h.id,h.publicKey)).backupFile,c=o.createDownloadableBackup(l)}else throw new w(`Unknown encryption type: ${e}`);return await a.storeBackupMetadata({id:crypto.randomUUID(),ethereumAddress:this.currentUser.ethereumAddress,method:"file",createdAt:new Date().toISOString(),addressChecksum:l.addressChecksum}),c}async setupSocialRecovery(e,t,n){if(!this.currentUser)throw new w("Must be authenticated to set up social recovery");let s=await this.getMnemonicFromSession(!0),{BackupFileManager:i}=await Promise.resolve().then(()=>(ce(),pe)),o=new i,a;if(n)a=(await o.createPasswordBackup(s,this.currentUser.ethereumAddress,n)).backupFile;else{let d=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!d)throw new w("No wallet data found");let m=await new R().getCredentialById(d.credentialId);if(!m)throw new w("Credential not found");a=(await o.createPasskeyBackup(s,this.currentUser.ethereumAddress,m.id,m.publicKey)).backupFile}let{SocialRecovery:c}=await Promise.resolve().then(()=>(Nn(),Un));return{guardianShares:(await new c().splitAmongGuardians(a,e,t)).guardianShares,setupComplete:!0}}async generateGuardianInvite(e,t){let{SocialRecovery:n}=await Promise.resolve().then(()=>(Nn(),Un)),s=new n,i=await s.createGuardianInvitation(e,t),o=s.createShareDownload(e);return{qrCodeDataURL:i.qrCodeDataURL,shareDocument:i.shareDocument,downloadBlob:o.blob,filename:o.filename}}async recoverFromGuardians(e,t){let{SocialRecovery:n}=await Promise.resolve().then(()=>(Nn(),Un)),{BackupFileManager:s}=await Promise.resolve().then(()=>(ce(),pe)),{BackupManager:i}=await Promise.resolve().then(()=>(it(),st)),o=new n,a=new s,c=new i,l=e.map(h=>typeof h=="string"?o.parseGuardianShare(h):h),u=await o.recoverFromShares(l),d;if(u.encryptionMethod==="password"){if(!t)throw new w("Password required to decrypt password-protected backup");d=await a.restoreWithPassword(u,t)}else throw new w("Passkey-encrypted backups not supported for guardian recovery. Use password-protected backups.");return c.markBackupVerified(d.ethereumAddress),d}async restoreFromBackupFile(e,t){let{BackupFileManager:n}=await Promise.resolve().then(()=>(ce(),pe)),{BackupManager:s}=await Promise.resolve().then(()=>(it(),st)),i=new n,o=new s,a=await i.parseBackupFile(e),c,l;if(a.encryptionMethod==="password"){if(!t)throw new w("Password required to restore password-encrypted backup");let u=await i.restoreWithPassword(a,t);c=u.mnemonic,l=u.ethereumAddress}else if(a.encryptionMethod==="passkey"){if(!this.currentUser)throw new w("Must be logged in with passkey to restore passkey-encrypted backup. Call login() first.");let h=(await new R().getAllCredentials()).find(g=>g.ethereumAddress.toLowerCase()===this.currentUser.ethereumAddress.toLowerCase());if(!h)throw new w("Credential not found for current user");let m=await i.restoreWithExistingPasskey(a,h.id,h.publicKey);c=m.mnemonic,l=m.ethereumAddress}else if(a.encryptionMethod==="hybrid"){if(!t)throw new w("Password required to restore hybrid backup");if(!this.currentUser)throw new w("Must be logged in with passkey to restore hybrid backup. Call login() first.");let h=(await new R().getAllCredentials()).find(g=>g.ethereumAddress.toLowerCase()===this.currentUser.ethereumAddress.toLowerCase());if(!h)throw new w("Credential not found for current user");let m=await i.restoreWithHybrid(a,t,h.id,h.publicKey);c=m.mnemonic,l=m.ethereumAddress}else throw new w(`Unknown encryption method: ${a.encryptionMethod}`);if(o.markBackupVerified(l),this.currentWallet={address:l,mnemonic:c},this.currentUser){let u=new R,h=(await u.getAllCredentials()).find(m=>m.ethereumAddress.toLowerCase()===this.currentUser.ethereumAddress.toLowerCase());if(h){let m=this.currentUser.ethereumAddress;m.toLowerCase()!==l.toLowerCase()&&await this.walletStorage.delete(m),await u.updateCredentialAddress(h.id,l);let g=await(await Promise.resolve().then(()=>(W(),Me))).deriveEncryptionKeyAuto(void 0,void 0,h.id,h.publicKey),y=await(await Promise.resolve().then(()=>(W(),Me))).encryptData(c,g);await this.walletStorage.store({ethereumAddress:l,encryptedMnemonic:y,credentialId:h.id,createdAt:new Date().toISOString()}),this.currentUser={...this.currentUser,ethereumAddress:l},await this.sessionManager.startSession(c,h.id,l,h.publicKey,"STANDARD"),this.config.onAuthStateChanged?.(!0,this.currentUser)}}return{mnemonic:c,ethereumAddress:l}}async syncWalletWithPasskey(e,t){let{BackupFileManager:n}=await Promise.resolve().then(()=>(ce(),pe)),{BackupManager:s}=await Promise.resolve().then(()=>(it(),st)),{promptPasskeySelection:i}=await Promise.resolve().then(()=>(hi(),pc)),o=new n,a=new s,c=await i(),l=await o.parseBackupFile(e),u,d;if(l.encryptionMethod==="password"){if(!t)throw new w("Password required to restore password-encrypted backup");let g=await o.restoreWithPassword(l,t);u=g.mnemonic,d=g.ethereumAddress}else if(l.encryptionMethod==="passkey"){if(!c.publicKey)throw new w("Passkey public key not found. The passkey may not be registered on this device yet.");let g=await o.restoreWithExistingPasskey(l,c.credentialId,c.publicKey);u=g.mnemonic,d=g.ethereumAddress}else if(l.encryptionMethod==="hybrid"){if(!t)throw new w("Password required to restore hybrid backup");if(!c.publicKey)throw new w("Passkey public key not found. The passkey may not be registered on this device yet.");let g=await o.restoreWithHybrid(l,t,c.credentialId,c.publicKey);u=g.mnemonic,d=g.ethereumAddress}else throw new w(`Unknown encryption method: ${l.encryptionMethod}`);a.markBackupVerified(d);let m=await new R().getCredentialById(c.credentialId);if(m){let{deriveEncryptionKeyAuto:g,encryptData:y}=await Promise.resolve().then(()=>(W(),Me)),S=await g(void 0,void 0,m.id,m.publicKey),b=await y(u,S);await this.walletStorage.store({ethereumAddress:d,encryptedMnemonic:b,credentialId:m.id,createdAt:new Date().toISOString()}),this.currentUser={username:m.username,ethereumAddress:d,credentialId:m.id},await this.sessionManager.startSession(u,m.id,d,m.publicKey,"STANDARD"),this.config.onAuthStateChanged?.(!0,this.currentUser)}return{mnemonic:u,ethereumAddress:d}}async registerWithBackupFile(e,t,n){let{BackupFileManager:s}=await Promise.resolve().then(()=>(ce(),pe)),{BackupManager:i}=await Promise.resolve().then(()=>(it(),st)),o=new s,a=new i,c=await o.parseBackupFile(e);if(c.encryptionMethod!=="password")throw new w("Can only register with password-encrypted backups. Use restoreFromBackupFile() for passkey-encrypted backups.");let{mnemonic:l,ethereumAddress:u}=await o.restoreWithPassword(c,t),{Wallet:d}=await import("ethers");if(d.fromPhrase(l).address.toLowerCase()!==u.toLowerCase())throw new w("Backup verification failed: address mismatch");return a.markBackupVerified(u),this.currentWallet={address:u,mnemonic:l},this.register({username:n})}async getSyncStatus(){let{DeviceSyncManager:e}=await Promise.resolve().then(()=>(wr(),Ln));return new e().getSyncInfo()}async exportForSync(){if(!this.currentUser)throw new w("Must be authenticated to export for sync");let e=await this.getMnemonicFromSession(!0),t=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!t)throw new w("No wallet data found");let s=await new R().getCredentialById(t.credentialId);if(!s)throw new w("Credential not found");let{DeviceSyncManager:i}=await Promise.resolve().then(()=>(wr(),Ln)),o=new i,{backupFile:a,blob:c}=await o.exportForSync(e,this.currentUser.ethereumAddress,s.id,s.publicKey),l=`w3pk-sync-${this.currentUser.ethereumAddress.substring(0,8)}.json`,u;try{u=await o.generateSyncQR(a)}catch(d){console.warn("QR code generation failed:",d)}return{blob:c,filename:l,qrCode:u}}async importFromSync(e){if(!this.currentUser)throw new w("Must be logged in to import from sync. Call login() first.");let{DeviceSyncManager:t}=await Promise.resolve().then(()=>(wr(),Ln)),{BackupFileManager:n}=await Promise.resolve().then(()=>(ce(),pe)),{BackupManager:s}=await Promise.resolve().then(()=>(it(),st)),i=new n,o=new t,a=new s,c=await i.parseBackupFile(e),l=await this.walletStorage.retrieve(this.currentUser.ethereumAddress);if(!l)throw new w("No wallet data found for current user");let d=await new R().getCredentialById(l.credentialId);if(!d)throw new w("Credential not found");let{mnemonic:h,ethereumAddress:m}=await o.importFromSync(c,d.id,d.publicKey);a.markBackupVerified(m);let g=await(await Promise.resolve().then(()=>(W(),Me))).deriveEncryptionKeyAuto(void 0,void 0,d.id,d.publicKey),y=await(await Promise.resolve().then(()=>(W(),Me))).encryptData(h,g);return await this.walletStorage.store({ethereumAddress:m,encryptedMnemonic:y,credentialId:d.id,createdAt:new Date().toISOString()}),{ethereumAddress:m,success:!0}}async detectSyncCapabilities(){let{PlatformDetector:e}=await Promise.resolve().then(()=>(Sc(),bc));return new e().detectSyncCapabilities()}async simulateRecoveryScenario(e){if(!this.currentUser)throw new w("Must be authenticated to run recovery simulation");let t=await this.getBackupStatus(),{RecoverySimulator:n}=await Promise.resolve().then(()=>(Sr(),Wn));return new n().simulateScenario(e,t)}async runRecoveryTest(){if(!this.currentUser)throw new w("Must be authenticated to run recovery test");let e=await this.getBackupStatus(),{RecoverySimulator:t}=await Promise.resolve().then(()=>(Sr(),Wn));return new t().runInteractiveTest(e)}async getEducation(e){let{getExplainer:t}=await Promise.resolve().then(()=>(Sr(),Wn)),n=t(e);if(!n)throw new w(`Unknown education topic: ${e}`);return n}hasActiveSession(){return this.sessionManager.isActive()}getSessionRemainingTime(){return this.sessionManager.getRemainingTime()}extendSession(){try{this.sessionManager.extendSession()}catch(e){throw new w("Cannot extend session",e)}}async clearSession(){await this.sessionManager.clearSession()}setSessionDuration(e){this.sessionManager.setSessionDuration(e)}async deriveMLKemPublicKey(e){if(!this.currentUser)throw new w("Must be authenticated to derive ML-KEM public key");let{deriveMLKemKeypair:t}=await Promise.resolve().then(()=>(Ar(),qn)),{Wallet:n}=await import("ethers"),s=e?.mode||"STANDARD",i=e?.tag||ee,o=e?.origin||ve(),a=e?.context||"mlkem-v1",c=s==="STRICT"?!0:e?.requireAuth||!1;if(s==="PRIMARY")throw new w("ML-KEM encryption is not supported in PRIMARY mode. PRIMARY mode uses P-256 WebAuthn keys which cannot derive ML-KEM keypairs. Use STANDARD, STRICT, or YOLO mode instead.");let l=await this.getMnemonicFromSession(c,s),u=await xe(l,o,s,i),d;if(u.privateKey)d=u.privateKey;else{let{deriveWalletFromMnemonic:m}=await Promise.resolve().then(()=>(Ie(),bt));d=m(l,u.index).privateKey}let h=await t(d,a);return typeof Buffer<"u"?Buffer.from(h.publicKey).toString("base64"):btoa(String.fromCharCode(...Array.from(h.publicKey)))}async mlkemEncrypt(e,t,n){if(!this.currentUser)throw new w("Must be authenticated to encrypt data");let{mlkemEncryptWithKey:s}=await Promise.resolve().then(()=>(Ar(),qn)),i=n?.mode||"STANDARD",o=n?.tag||ee,a=n?.origin||ve(),c=n?.context||"mlkem-v1",l=i==="STRICT"?!0:n?.requireAuth||!1;if(i==="PRIMARY")throw new w("ML-KEM encryption is not supported in PRIMARY mode. Use STANDARD, STRICT, or YOLO mode instead.");let u=await this.getMnemonicFromSession(l,i),d=await xe(u,a,i,o),h;if(d.privateKey)h=d.privateKey;else{let{deriveWalletFromMnemonic:m}=await Promise.resolve().then(()=>(Ie(),bt));h=m(u,d.index).privateKey}return await s(e,h,t,c)}async mlkemDecrypt(e,t){if(!this.currentUser)throw new w("Must be authenticated to decrypt data");let{mlkemDecryptWithKey:n}=await Promise.resolve().then(()=>(Ar(),qn)),s=t?.mode||"STANDARD",i=t?.tag||ee,o=t?.origin||ve(),a=t?.context||"mlkem-v1",c=s==="STRICT"?!0:t?.requireAuth||!1;if(s==="PRIMARY")throw new w("ML-KEM encryption is not supported in PRIMARY mode. Use STANDARD, STRICT, or YOLO mode instead.");let l=await this.getMnemonicFromSession(c,s),u=await xe(l,o,s,i),d;if(u.privateKey)d=u.privateKey;else{let{deriveWalletFromMnemonic:h}=await Promise.resolve().then(()=>(Ie(),bt));d=h(l,u.index).privateKey}return await n(e,d,a)}};G();hi();St();Sr();async function vg(r,e="build"){let{importer:t}=await Promise.resolve().then(()=>(vo(),wd)),{MemoryBlockstore:n}=await Promise.resolve().then(()=>(zd(),Od)),s=new n,o=t(async function*(){yield{path:e,content:r}}(),s,{cidVersion:1,rawLeaves:!0,wrapWithDirectory:!1});for await(let a of o)return a.cid.toString();throw new Error("Failed to generate CID")}async function Eg(r){let e=["index.js","index.mjs","index.d.ts"],t=[],n=0;for(let o of e){let a=`${r}/${o}`,c=await fetch(a);if(!c.ok)throw new Error(`Failed to fetch ${o}: ${c.statusText}`);let l=await c.arrayBuffer(),u=new Uint8Array(l);t.push(u),n+=u.length}let s=new Uint8Array(n),i=0;for(let o of t)s.set(o,i),i+=o.length;return s}async function $d(r){let e=await Eg(r);return vg(e)}function qd(){try{return Wd().version}catch{throw new Error("Failed to read package version")}}async function Hd(){let r=qd();return $d(`https://unpkg.com/w3pk@${r}/dist`)}async function kg(r){return await Hd()===r}fe();_s();Ie();function Cg(r=11){let e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",t=new Uint8Array(r);return crypto.getRandomValues(t),Array.from(t).map(n=>e[n%e.length]).join("")}function Pg(r){if(!r.domain||!r.address||!r.uri||!r.version||r.chainId===void 0||!r.nonce||!r.issuedAt)throw new Error("Missing required SIWE message fields");if(r.version!=="1")throw new Error('SIWE version must be "1"');if(r.nonce.length<8||!/^[a-zA-Z0-9]+$/.test(r.nonce))throw new Error("Nonce must be at least 8 alphanumeric characters");if(r.statement&&r.statement.includes(`
961
+ `))throw new Error("Statement cannot contain newlines");let e=`${r.domain} wants you to sign in with your Ethereum account:
962
+ `;if(e+=`${r.address}
963
963
  `,e+=`
964
- `,n.statement&&(e+=`${n.statement}
964
+ `,r.statement&&(e+=`${r.statement}
965
965
  `,e+=`
966
- `),e+=`URI: ${n.uri}
967
- `,e+=`Version: ${n.version}
968
- `,e+=`Chain ID: ${n.chainId}
969
- `,e+=`Nonce: ${n.nonce}
970
- `,e+=`Issued At: ${n.issuedAt}`,n.expirationTime&&(e+=`
971
- Expiration Time: ${n.expirationTime}`),n.notBefore&&(e+=`
972
- Not Before: ${n.notBefore}`),n.requestId&&(e+=`
973
- Request ID: ${n.requestId}`),n.resources&&n.resources.length>0){e+=`
974
- Resources:`;for(let t of n.resources)e+=`
975
- - ${t}`}return e}function yo(n){let e=n.split(`
976
- `);if(e.length<7)throw new Error("Invalid SIWE message: too few lines");let r=e[0].match(/^(.+) wants you to sign in with your Ethereum account:$/);if(!r)throw new Error("Invalid SIWE message: malformed domain line");let s=r[1],i=e[1];if(!i.match(/^0x[a-fA-F0-9]{40}$/))throw new Error("Invalid SIWE message: malformed address");if(e[2]!=="")throw new Error("Invalid SIWE message: expected empty line after address");let o,c="",a="",u=0,l="",h="",g,d,f,y=[],k=3;for(e[k]&&!e[k].startsWith("URI: ")&&(o=e[k],k++,e[k]===""&&k++);k<e.length;k++){let m=e[k];if(m.startsWith("URI: "))c=m.substring(5);else if(m.startsWith("Version: "))a=m.substring(9);else if(m.startsWith("Chain ID: "))u=parseInt(m.substring(10),10);else if(m.startsWith("Nonce: "))l=m.substring(7);else if(m.startsWith("Issued At: "))h=m.substring(11);else if(m.startsWith("Expiration Time: "))g=m.substring(17);else if(m.startsWith("Not Before: "))d=m.substring(12);else if(m.startsWith("Request ID: "))f=m.substring(12);else if(m.startsWith("Resources:")){for(k++;k<e.length&&e[k].startsWith("- ");)y.push(e[k].substring(2)),k++;break}}if(!c||!a||!u||!l||!h)throw new Error("Invalid SIWE message: missing required fields");return{domain:s,address:i,statement:o,uri:c,version:a,chainId:u,nonce:l,issuedAt:h,expirationTime:g,notBefore:d,requestId:f,resources:y.length>0?y:void 0}}function Fg(n,e){let t=[];try{let r=typeof n=="string"?yo(n):n;return e?.domain&&r.domain!==e.domain&&t.push(`Domain mismatch: expected "${e.domain}", got "${r.domain}"`),e?.chainId!==void 0&&r.chainId!==e.chainId&&t.push(`Chain ID mismatch: expected ${e.chainId}, got ${r.chainId}`),r.version!=="1"&&t.push(`Invalid version: must be "1", got "${r.version}"`),(r.nonce.length<8||!/^[a-zA-Z0-9]+$/.test(r.nonce))&&t.push("Nonce must be at least 8 alphanumeric characters"),e?.checkExpiration&&r.expirationTime&&new Date(r.expirationTime)<new Date&&t.push("Message has expired"),e?.checkNotBefore&&r.notBefore&&new Date(r.notBefore)>new Date&&t.push("Message is not yet valid (not-before constraint)"),{valid:t.length===0,errors:t,parsed:r}}catch(r){return t.push(r.message),{valid:!1,errors:t}}}async function Mg(n,e,t){try{let{verifyMessage:r}=await import("ethers"),s=r(n,e),i=yo(n);return s.toLowerCase()!==i.address.toLowerCase()?{valid:!1,error:"Signature does not match address in message"}:t&&s.toLowerCase()!==t.toLowerCase()?{valid:!1,error:"Signature does not match expected address"}:{valid:!0,address:s}}catch(r){return{valid:!1,error:r.message}}}Js();vn();function Ng(n,e=3e4){let t=["signMessage","signTypedData","sign(","signature","sendTransaction","transaction","eth_sign","Contract(","ethers.Contract","new Contract","w3pk","Web3Passkey","useW3PK","wallet","signer","provider","authorization","delegation","EIP7702"],r=n.split(`
977
- `),s=[],i=500;for(let c=0;c<r.length&&s.length<i;c++){let u=r[c].toLowerCase();if(t.some(l=>u.includes(l.toLowerCase()))){let l=Math.max(0,c-2),h=Math.min(r.length,c+3);for(let g=l;g<h;g++)s.includes(r[g])||s.push(r[g])}}let o=s.join(`
966
+ `),e+=`URI: ${r.uri}
967
+ `,e+=`Version: ${r.version}
968
+ `,e+=`Chain ID: ${r.chainId}
969
+ `,e+=`Nonce: ${r.nonce}
970
+ `,e+=`Issued At: ${r.issuedAt}`,r.expirationTime&&(e+=`
971
+ Expiration Time: ${r.expirationTime}`),r.notBefore&&(e+=`
972
+ Not Before: ${r.notBefore}`),r.requestId&&(e+=`
973
+ Request ID: ${r.requestId}`),r.resources&&r.resources.length>0){e+=`
974
+ Resources:`;for(let t of r.resources)e+=`
975
+ - ${t}`}return e}function No(r){let e=r.split(`
976
+ `);if(e.length<7)throw new Error("Invalid SIWE message: too few lines");let n=e[0].match(/^(.+) wants you to sign in with your Ethereum account:$/);if(!n)throw new Error("Invalid SIWE message: malformed domain line");let s=n[1],i=e[1];if(!i.match(/^0x[a-fA-F0-9]{40}$/))throw new Error("Invalid SIWE message: malformed address");if(e[2]!=="")throw new Error("Invalid SIWE message: expected empty line after address");let o,a="",c="",l=0,u="",d="",h,m,g,y=[],S=3;for(e[S]&&!e[S].startsWith("URI: ")&&(o=e[S],S++,e[S]===""&&S++);S<e.length;S++){let b=e[S];if(b.startsWith("URI: "))a=b.substring(5);else if(b.startsWith("Version: "))c=b.substring(9);else if(b.startsWith("Chain ID: "))l=parseInt(b.substring(10),10);else if(b.startsWith("Nonce: "))u=b.substring(7);else if(b.startsWith("Issued At: "))d=b.substring(11);else if(b.startsWith("Expiration Time: "))h=b.substring(17);else if(b.startsWith("Not Before: "))m=b.substring(12);else if(b.startsWith("Request ID: "))g=b.substring(12);else if(b.startsWith("Resources:")){for(S++;S<e.length&&e[S].startsWith("- ");)y.push(e[S].substring(2)),S++;break}}if(!a||!c||!l||!u||!d)throw new Error("Invalid SIWE message: missing required fields");return{domain:s,address:i,statement:o,uri:a,version:c,chainId:l,nonce:u,issuedAt:d,expirationTime:h,notBefore:m,requestId:g,resources:y.length>0?y:void 0}}function Ig(r,e){let t=[];try{let n=typeof r=="string"?No(r):r;return e?.domain&&n.domain!==e.domain&&t.push(`Domain mismatch: expected "${e.domain}", got "${n.domain}"`),e?.chainId!==void 0&&n.chainId!==e.chainId&&t.push(`Chain ID mismatch: expected ${e.chainId}, got ${n.chainId}`),n.version!=="1"&&t.push(`Invalid version: must be "1", got "${n.version}"`),(n.nonce.length<8||!/^[a-zA-Z0-9]+$/.test(n.nonce))&&t.push("Nonce must be at least 8 alphanumeric characters"),e?.checkExpiration&&n.expirationTime&&new Date(n.expirationTime)<new Date&&t.push("Message has expired"),e?.checkNotBefore&&n.notBefore&&new Date(n.notBefore)>new Date&&t.push("Message is not yet valid (not-before constraint)"),{valid:t.length===0,errors:t,parsed:n}}catch(n){return t.push(n.message),{valid:!1,errors:t}}}async function Bg(r,e,t){try{let{verifyMessage:n}=await import("ethers"),s=n(r,e),i=No(r);return s.toLowerCase()!==i.address.toLowerCase()?{valid:!1,error:"Signature does not match address in message"}:t&&s.toLowerCase()!==t.toLowerCase()?{valid:!1,error:"Signature does not match expected address"}:{valid:!0,address:s}}catch(n){return{valid:!1,error:n.message}}}ui();Fn();function Dg(r,e=3e4){let t=["signMessage","signTypedData","sign(","signature","sendTransaction","transaction","eth_sign","Contract(","ethers.Contract","new Contract","w3pk","Web3Passkey","useW3PK","wallet","signer","provider","authorization","delegation","EIP7702"],n=r.split(`
977
+ `),s=[],i=500;for(let a=0;a<n.length&&s.length<i;a++){let l=n[a].toLowerCase();if(t.some(u=>l.includes(u.toLowerCase()))){let u=Math.max(0,a-2),d=Math.min(n.length,a+3);for(let h=u;h<d;h++)s.includes(n[h])||s.push(n[h])}}let o=s.join(`
978
978
  `);return o.length>e?o.substring(0,e)+`
979
979
 
980
- // ... (truncated)`:o||"// No transaction code found"}async function Ug(n){let e=`# Application Code Analysis
980
+ // ... (truncated)`:o||"// No transaction code found"}async function Tg(r){let e=`# Application Code Analysis
981
981
 
982
- `;e+=`**App URL:** ${n}
982
+ `;e+=`**App URL:** ${r}
983
983
 
984
984
  `,e+=`**Note:** Only transaction-related code snippets shown
985
985
 
986
986
  `,e+=`---
987
987
 
988
- `;let r=Array.from(document.querySelectorAll("script[src]")).map(i=>i.src).filter(i=>i&&!i.includes("node_modules")&&!i.includes("chrome-extension"));e+=`## JavaScript Files (${r.length})
988
+ `;let n=Array.from(document.querySelectorAll("script[src]")).map(i=>i.src).filter(i=>i&&!i.includes("node_modules")&&!i.includes("chrome-extension"));e+=`## JavaScript Files (${n.length})
989
989
 
990
- `;let s=0;for(let i of r.slice(0,15))try{let o=await fetch(i);if(!o.ok)continue;let c=await o.text(),a=Ng(c);a&&!a.includes("No transaction code found")&&(e+=`### \`${new URL(i).pathname}\`
990
+ `;let s=0;for(let i of n.slice(0,15))try{let o=await fetch(i);if(!o.ok)continue;let a=await o.text(),c=Dg(a);c&&!c.includes("No transaction code found")&&(e+=`### \`${new URL(i).pathname}\`
991
991
 
992
- `,e+="```javascript\n",e+=a,e+=`
992
+ `,e+="```javascript\n",e+=c,e+=`
993
993
  \`\`\`
994
994
 
995
995
  ---
996
996
 
997
997
  `,s++)}catch{}return s===0&&(e+=`No transaction-related code found in JavaScript files.
998
- `),e}async function od(n={}){if(typeof window>"u")throw new Error("Browser inspect() can only be called in browser environments. For Node.js, use the CLI or Node.js API.");let{appUrl:e=window.location.origin,rukhUrl:t="https://rukh.w3hc.org",context:r="w3pk",model:s="anthropic",focusMode:i="transactions"}=n;console.log("[W3PK Inspect] Starting inspection of",e),console.log("[W3PK Inspect] Focus mode:",i);let o=await Ug(e);console.log("[W3PK Inspect] Collected source code, sending to Rukh API...");let c="Analyze this web application and provide a security report listing all transaction and signing methods.",a=new FormData;a.append("message",c),a.append("model",s),a.append("context",r);let u=new Blob([o],{type:"text/markdown"});a.append("file",u,"app-source.md");let l=await fetch(`${t}/ask`,{method:"POST",body:a});if(!l.ok){let y=await l.text();throw new Error(`Rukh API error: ${l.status} - ${y}`)}let h=await l.json(),g=h.output||h.response||h.message||JSON.stringify(h);console.log("[W3PK Inspect] Analysis complete!");let f=Array.from(document.querySelectorAll("script[src]")).map(y=>new URL(y.src).pathname).filter(y=>y&&!y.includes("node_modules"));return{report:g,analyzedFiles:f,appUrl:e}}async function Lg(n){console.log(`\u{1F50D} W3PK Security Inspection Starting...
999
- `);try{let e=await od(n);console.log("\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501"),console.log("\u{1F4CB} SECURITY REPORT"),console.log(`\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
998
+ `),e}async function Vd(r={}){if(typeof window>"u")throw new Error("Browser inspect() can only be called in browser environments. For Node.js, use the CLI or Node.js API.");let{appUrl:e=window.location.origin,rukhUrl:t="https://rukh.w3hc.org",context:n="w3pk",model:s="anthropic",focusMode:i="transactions"}=r;console.log("[W3PK Inspect] Starting inspection of",e),console.log("[W3PK Inspect] Focus mode:",i);let o=await Tg(e);console.log("[W3PK Inspect] Collected source code, sending to Rukh API...");let a="Analyze this web application and provide a security report listing all transaction and signing methods.",c=new FormData;c.append("message",a),c.append("model",s),c.append("context",n);let l=new Blob([o],{type:"text/markdown"});c.append("file",l,"app-source.md");let u=await fetch(`${t}/ask`,{method:"POST",body:c});if(!u.ok){let y=await u.text();throw new Error(`Rukh API error: ${u.status} - ${y}`)}let d=await u.json(),h=d.output||d.response||d.message||JSON.stringify(d);console.log("[W3PK Inspect] Analysis complete!");let g=Array.from(document.querySelectorAll("script[src]")).map(y=>new URL(y.src).pathname).filter(y=>y&&!y.includes("node_modules"));return{report:h,analyzedFiles:g,appUrl:e}}async function Rg(r){console.log(`\u{1F50D} W3PK Security Inspection Starting...
999
+ `);try{let e=await Vd(r);console.log("\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501"),console.log("\u{1F4CB} SECURITY REPORT"),console.log(`\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
1000
1000
  `),console.log(e.report),console.log(`
1001
- \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501`),console.log(`\u2705 Analyzed ${e.analyzedFiles.length} files from ${e.appUrl}`),console.log("\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501")}catch(e){throw console.error("\u274C Inspection failed:",e),e}}function _g(n={}){return new fr(n)}var rx=_g;export{is as ApiError,O as AuthenticationError,N as CryptoError,we as DEFAULT_MODE,be as DEFAULT_TAG,dr as RecoverySimulator,Gt as RegistrationError,St as SocialRecoveryManager,jt as StealthAddressModule,T as StorageError,S as WalletError,fr as Web3Passkey,H as Web3PasskeyError,Ae as arrayBufferToBase64Url,os as assertEthereumAddress,gd as assertMnemonic,as as assertUsername,Ga as authenticateWithPasskey,xo as base64ToArrayBuffer,Ao as base64UrlDecode,_ as base64UrlToArrayBuffer,Id as canControlStealthAddress,Gr as checkStealthAddress,Ld as clearCache,Yr as computeStealthPrivateKey,Tg as createSiweMessage,Po as createWalletFromMnemonic,_g as createWeb3Passkey,rx as default,Io as deriveAddressFromP256PublicKey,ds as deriveIndexFromOriginModeAndTag,Yt as deriveStealthKeys,qr as deriveWalletFromMnemonic,xs as detectWalletProvider,Xr as encodeEIP7702AuthorizationMessage,Oo as extractRS,$r as generateBIP39Wallet,Rg as generateSiweNonce,hs as generateStealthAddress,Nd as getAllChains,nc as getAllTopics,Ud as getChainById,id as getCurrentBuildHash,$e as getCurrentOrigin,Ss as getDefaultProvider,ms as getEndpoints,rc as getExplainer,We as getOriginSpecificAddress,sd as getPackageVersion,nd as getW3pkBuildHash,Zr as hashEIP7702AuthorizationMessage,od as inspect,Lg as inspectNow,md as isStrongPassword,Hr as normalizeOrigin,yo as parseSiweMessage,Va as promptPasskeySelection,bs as requestExternalWalletAuthorization,ut as safeAtob,vo as safeBtoa,sc as searchExplainers,vs as supportsEIP7702Authorization,wo as validateEthereumAddress,So as validateMnemonic,Fg as validateSiweMessage,bo as validateUsername,Dg as verifyBuildHash,ys as verifyEIP7702Authorization,Mg as verifySiweSignature};
1001
+ \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501`),console.log(`\u2705 Analyzed ${e.analyzedFiles.length} files from ${e.appUrl}`),console.log("\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501")}catch(e){throw console.error("\u274C Inspection failed:",e),e}}Ar();function Fg(r={}){return new xr(r)}var fx=Fg;export{ws as ApiError,K as AuthenticationError,M as CryptoError,Ae as DEFAULT_MODE,ee as DEFAULT_TAG,br as RecoverySimulator,tr as RegistrationError,Pt as SocialRecoveryManager,nr as StealthAddressModule,B as StorageError,w as WalletError,xr as Web3Passkey,V as Web3PasskeyError,he as arrayBufferToBase64Url,bs as assertEthereumAddress,sh as assertMnemonic,Ss as assertUsername,fc as authenticateWithPasskey,Oo as base64ToArrayBuffer,Wo as base64UrlDecode,L as base64UrlToArrayBuffer,yh as canControlStealthAddress,sn as checkStealthAddress,Ch as clearCache,on as computeStealthPrivateKey,Pg as createSiweMessage,Go as createWalletFromMnemonic,Fg as createWeb3Passkey,fx as default,Yo as deriveAddressFromP256PublicKey,Es as deriveIndexFromOriginModeAndTag,$n as deriveMLKemKeypair,rr as deriveStealthKeys,tn as deriveWalletFromMnemonic,Us as detectWalletProvider,un as encodeEIP7702AuthorizationMessage,ia as extractRS,en as generateBIP39Wallet,Cg as generateSiweNonce,ks as generateStealthAddress,Eh as getAllChains,vc as getAllTopics,kh as getChainById,Hd as getCurrentBuildHash,ve as getCurrentOrigin,Ms as getDefaultProvider,Ds as getEndpoints,xc as getExplainer,xe as getOriginSpecificAddress,qd as getPackageVersion,$d as getW3pkBuildHash,dn as hashEIP7702AuthorizationMessage,Vd as inspect,Rg as inspectNow,ih as isStrongPassword,mi as mlkemDecrypt,Pc as mlkemDecryptWithKey,pi as mlkemEncrypt,Cc as mlkemEncryptWithKey,rn as normalizeOrigin,No as parseSiweMessage,hc as promptPasskeySelection,Fs as requestExternalWalletAuthorization,yt as safeAtob,zo as safeBtoa,Ec as searchExplainers,Ns as supportsEIP7702Authorization,Lo as validateEthereumAddress,Ko as validateMnemonic,Ig as validateSiweMessage,_o as validateUsername,kg as verifyBuildHash,Ts as verifyEIP7702Authorization,Bg as verifySiweSignature};
1002
1002
  //# sourceMappingURL=index.mjs.map