@silencelaboratories/walletprovider-sdk 4.0.3-hackathon → 4.1.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.
@@ -1,4 +1,4 @@
1
- /** Externally Owned Account (EOA) atuhentication. Uses secret key stored on a wallet to sign requests.
1
+ /** Externally Owned Account (EOA) authentication. Uses secret key stored on a wallet to sign requests.
2
2
  * The requests are presented to the user in a readable form by using TypedData (EIP712).
3
3
  */
4
4
  import { UserAuthentication } from './authentication';
@@ -0,0 +1,17 @@
1
+ /** JSON Web Token (JWT) authentication. Uses JWT issuer module to issue signed JWT tokens.
2
+ */
3
+ /**
4
+ * Interface to implement communication between this library, JWT Issuance service.
5
+ * @public
6
+ */
7
+ export interface IJWTIssuer {
8
+ /** The method required for the JWT module to be implemented.
9
+ * @param challenge - the challenge computed from the request,
10
+ * that uniquely binds the token to the request that's currently processed.
11
+ * @throws Throws an error if JWT issuance failed.
12
+ * @returns Valid and signed JWT:
13
+ * Three Base64URL encoded strings, joined together by periods. Follows the structure: header.payload.signature.
14
+ * The claim `challenge` should contain the parameter `challenge`.
15
+ */
16
+ issueToken(challenge: string): Promise<string>;
17
+ }
@@ -4,12 +4,17 @@ import { EoaAuthPayload, IBrowserWallet } from './EOAauthentication';
4
4
  import { PasskeyUser, RelyingPartyConfig } from './passkeyAuthentication';
5
5
  import { EphemeralAuthPayload, EphKeySignAlgorithm } from './ephemeralAuthentication';
6
6
  import { RevokeEphKeyRequest } from '../client/networkRequest';
7
- export type AuthMethod = 'eoa' | 'ephemeral' | 'passkey';
7
+ import { IJWTIssuer } from './JWTAuthentication';
8
+ export type AuthMethod = 'eoa' | 'ephemeral' | 'passkey' | 'jwt';
9
+ export type JWTIdentifier = {
10
+ sub: string;
11
+ iss: string;
12
+ };
8
13
  /** Contains essential information about how to authenticate the user request.
9
14
  * @public
10
15
  */
11
16
  export type UserCredentials = {
12
- id: string;
17
+ id: string | JWTIdentifier;
13
18
  method: AuthMethod;
14
19
  };
15
20
  /** User signature container.
@@ -33,7 +38,7 @@ type PasskeyLoginPayload = KeygenSetupOpts | AddEphKeyRequest | RevokeEphKeyRequ
33
38
  /** The `EOAAuth` implementing Externally Owned Account authentication.
34
39
  * @public
35
40
  */
36
- export declare class EOAAuth {
41
+ export declare class EOAAuth implements AuthModule {
37
42
  /** An interface to the wallet, like MetaMask, that is used to sign the requests */
38
43
  private browserWallet;
39
44
  /** the ETH address that is used to do EOA authentication */
@@ -125,4 +130,24 @@ export declare class PasskeyRegister implements AuthModule {
125
130
  */
126
131
  authenticate({ payload, challenge }: AuthModuleParams<RegisterPasskeyRequest>): Promise<UserAuthentication>;
127
132
  }
133
+ /** The `JWTAuth` implementing authentication by JSON Web Tokens.
134
+ * @public
135
+ */
136
+ export declare class JWTAuth implements AuthModule {
137
+ /** An interface to the JWT Issuer, like Auth0, authentik, that is used to create signed JWT for given request */
138
+ private jwtIssuer;
139
+ /**
140
+ * @param jwtIssuer - interface to the JWT Issuer, like Auth0, authentik, that is used to create signed JWT for given request
141
+ */
142
+ constructor(jwtIssuer: IJWTIssuer);
143
+ private validateInputs;
144
+ /**
145
+ * Triggers jwtIssuer to generate the JWT for given request.
146
+ * @param payload - request payload to be sent to the backend.
147
+ * @param challenge - the challenge received from the backend in v1 or generated by client in v2.
148
+ * @throws - upon token issuance, or if token cannot be decoded.
149
+ * @public
150
+ */
151
+ authenticate({ payload, challenge }: AuthModuleParams<EoaAuthPayload>): Promise<UserAuthentication>;
152
+ }
128
153
  export {};
package/dist/index.cjs.js CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";var X=Object.defineProperty;var Qe=Object.getOwnPropertyDescriptor;var Xe=Object.getOwnPropertyNames;var Ye=Object.prototype.hasOwnProperty;var Ze=(r,e,t)=>e in r?X(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t;var Ue=(r,e)=>{for(var t in e)X(r,t,{get:e[t],enumerable:!0})},et=(r,e,t,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Xe(e))!Ye.call(r,n)&&n!==t&&X(r,n,{get:()=>e[n],enumerable:!(s=Qe(e,n))||s.enumerable});return r};var tt=r=>et(X({},"__esModule",{value:!0}),r);var c=(r,e,t)=>Ze(r,typeof e!="symbol"?e+"":e,t);var gt={};Ue(gt,{Action:()=>xe,ChainType:()=>Ee,DeletePolicyRequest:()=>P,EOAAuth:()=>$,EphAuth:()=>V,EphKeyClaim:()=>K,FinishPresignOpts:()=>R,HttpClient:()=>_,InitPresignOpts:()=>T,IssuerType:()=>Ae,KeygenSetupOpts:()=>S,Logic:()=>be,NetworkSigner:()=>F,NoAuthWalletProviderServiceClient:()=>E,Operator:()=>Ce,PasskeyAuth:()=>q,PasskeyRegister:()=>W,Policy:()=>ce,Rule:()=>ae,SignRequestBuilder:()=>U,SignSetupOpts:()=>m,TransactionAttribute:()=>ke,TransactionType:()=>ve,UpdatePolicyRequest:()=>w,UserSignatures:()=>x,WalletProviderServiceClient:()=>B,computeAddress:()=>ie,default:()=>dt,flattenSignature:()=>se,generateEphPrivateKey:()=>j,getEphPublicKey:()=>O});module.exports=tt(gt);var Ne=require("json-canonicalize");var h=(r,e)=>{g(typeof e!="string",`${r} must be string`),g((e==null?void 0:e.trim().length)===0,`${r} cannot be empty`)},Ie=(r,e)=>{if(g(!(r instanceof Uint8Array),"key must be an Uint8Array"),e==="secp256k1")g(r.length!==65,"secp256k1: key length must be 65 bytes, got "+r.length);else if(e==="ed25519")g(r.length!==32,"ed25519: key length must be 32 bytes, got "+r.length);else throw new Error("Invalid signature algorithm")},Me=(r,e)=>{if(g(!(r instanceof Uint8Array),"key must be an Uint8Array"),e==="secp256k1")g(r.length!==32,"secp256k1: key length must be 32 bytes, got "+r.length);else if(e==="ed25519")g(r.length!==32,"ed25519: key length must be 32 bytes, got "+r.length);else throw new Error("Invalid signature algorithm")},Oe=r=>{g(r!=="ed25519"&&r!=="secp256k1",'signAlg must be either "ed25519" or "secp256k"')},g=(r,e)=>{if(r)throw new Error(e)},st=(r,e)=>`Invalid payload ${JSON.stringify(r)}, cannot be authenticated by ${e.toLocaleUpperCase()} method.`,H=(r,e,t)=>{g(!e.some(s=>r instanceof s),st(r,t))};var U=class{constructor(){c(this,"signRequest",new Map)}setRequest(e,t,s){if(h("transactionId",e),h("message",t),h("requestType",s),this.signRequest.has(e))throw new Error(`Transaction ID ${e} is already set.`);return this.signRequest.set(e,{signingMessage:t,requestType:s}),this}build(){let e={};if(this.signRequest.forEach((t,s)=>{e[s]=t}),Object.keys(e).length===0)throw new Error("No sign request is set.");return(0,Ne.canonicalize)(e)}};var me=require("json-canonicalize");var We=require("js-base64");function rt(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function ue(r,...e){if(!rt(r))throw new Error("Uint8Array expected");if(e.length>0&&!e.includes(r.length))throw new Error("Uint8Array expected of length "+e+", got length="+r.length)}function pe(r,e=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(e&&r.finished)throw new Error("Hash#digest() has already been called")}function De(r,e){ue(r);let t=e.outputLen;if(r.length<t)throw new Error("digestInto() expects output buffer of length at least "+t)}var Z=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),f=(r,e)=>r<<32-e|r>>>e;function nt(r){if(typeof r!="string")throw new Error("utf8ToBytes expected string, got "+typeof r);return new Uint8Array(new TextEncoder().encode(r))}function he(r){return typeof r=="string"&&(r=nt(r)),ue(r),r}var Y=class{clone(){return this._cloneInto()}};function Te(r){let e=s=>r().update(he(s)).digest(),t=r();return e.outputLen=t.outputLen,e.blockLen=t.blockLen,e.create=()=>r(),e}function it(r,e,t,s){if(typeof r.setBigUint64=="function")return r.setBigUint64(e,t,s);let n=BigInt(32),o=BigInt(4294967295),i=Number(t>>n&o),a=Number(t&o),l=s?4:0,u=s?0:4;r.setUint32(e+l,i,s),r.setUint32(e+u,a,s)}var $e=(r,e,t)=>r&e^~r&t,Ve=(r,e,t)=>r&e^r&t^e&t,ee=class extends Y{constructor(e,t,s,n){super(),this.blockLen=e,this.outputLen=t,this.padOffset=s,this.isLE=n,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(e),this.view=Z(this.buffer)}update(e){pe(this);let{view:t,buffer:s,blockLen:n}=this;e=he(e);let o=e.length;for(let i=0;i<o;){let a=Math.min(n-this.pos,o-i);if(a===n){let l=Z(e);for(;n<=o-i;i+=n)this.process(l,i);continue}s.set(e.subarray(i,i+a),this.pos),this.pos+=a,i+=a,this.pos===n&&(this.process(t,0),this.pos=0)}return this.length+=e.length,this.roundClean(),this}digestInto(e){pe(this),De(e,this),this.finished=!0;let{buffer:t,view:s,blockLen:n,isLE:o}=this,{pos:i}=this;t[i++]=128,this.buffer.subarray(i).fill(0),this.padOffset>n-i&&(this.process(s,0),i=0);for(let p=i;p<n;p++)t[p]=0;it(s,n-8,BigInt(this.length*8),o),this.process(s,0);let a=Z(e),l=this.outputLen;if(l%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let u=l/4,d=this.get();if(u>d.length)throw new Error("_sha2: outputLen bigger than state");for(let p=0;p<u;p++)a.setUint32(4*p,d[p],o)}digest(){let{buffer:e,outputLen:t}=this;this.digestInto(e);let s=e.slice(0,t);return this.destroy(),s}_cloneInto(e){e||(e=new this.constructor),e.set(...this.get());let{blockLen:t,buffer:s,length:n,finished:o,destroyed:i,pos:a}=this;return e.length=n,e.pos=a,e.finished=o,e.destroyed=i,n%t&&e.buffer.set(s),e}};var ot=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),v=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),k=new Uint32Array(64),de=class extends ee{constructor(){super(64,32,8,!1),this.A=v[0]|0,this.B=v[1]|0,this.C=v[2]|0,this.D=v[3]|0,this.E=v[4]|0,this.F=v[5]|0,this.G=v[6]|0,this.H=v[7]|0}get(){let{A:e,B:t,C:s,D:n,E:o,F:i,G:a,H:l}=this;return[e,t,s,n,o,i,a,l]}set(e,t,s,n,o,i,a,l){this.A=e|0,this.B=t|0,this.C=s|0,this.D=n|0,this.E=o|0,this.F=i|0,this.G=a|0,this.H=l|0}process(e,t){for(let p=0;p<16;p++,t+=4)k[p]=e.getUint32(t,!1);for(let p=16;p<64;p++){let J=k[p-15],N=k[p-2],qe=f(J,7)^f(J,18)^J>>>3,le=f(N,17)^f(N,19)^N>>>10;k[p]=le+k[p-7]+qe+k[p-16]|0}let{A:s,B:n,C:o,D:i,E:a,F:l,G:u,H:d}=this;for(let p=0;p<64;p++){let J=f(a,6)^f(a,11)^f(a,25),N=d+J+$e(a,l,u)+ot[p]+k[p]|0,le=(f(s,2)^f(s,13)^f(s,22))+Ve(s,n,o)|0;d=u,u=l,l=a,a=i+N|0,i=o,o=n,n=s,s=N+le|0}s=s+this.A|0,n=n+this.B|0,o=o+this.C|0,i=i+this.D|0,a=a+this.E|0,l=l+this.F|0,u=u+this.G|0,d=d+this.H|0,this.set(s,n,o,i,a,l,u,d)}roundClean(){k.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var ge=Te(()=>new de);var te=require("viem"),A=r=>We.Base64.fromUint8Array(new Uint8Array(r),!0),ye=r=>{let e=(0,te.stringToBytes)(r),t=ge(ge(e));return(0,te.toHex)(t,{size:32}).slice(2)};var x=class{constructor(e,t){c(this,"userAuthentications");c(this,"authModule");c(this,"apiVersion");this.authModule=e,this.userAuthentications=new Map,this.apiVersion=t}async setDefaultAuth(e){let t=await this.authModule.authenticate({payload:e.payload,challenge:e.challenge});this.userAuthentications.set("default",t)}async setKeygenUserSigs(e,t){if(this.apiVersion==="v1"&&!t)throw new Error("no challenge response for keygen");for(let s of e){let n=s.signAlg,o=t?t[n]:ye((0,me.canonicalize)(s));if(o){let i=await this.authModule.authenticate({payload:s,challenge:o});this.userAuthentications.set(n,i)}else throw new Error(`no final challenge found in response for ${n}`)}}async setSigngenUserSigs(e){await this.setDefaultAuth(e)}async setAddEphKeyUserSigs(e){await this.setDefaultAuth(e)}async setRevokeEphKeyUserSigs(e){await this.setDefaultAuth(e)}async setRegisterPasskeyUserSigs(e){await this.setDefaultAuth(e)}async setKeyRefreshUserSigs(e){await this.setDefaultAuth(e)}async setFinishPresignUserSigs(e){await this.setDefaultAuth(e)}async setUpdatePolicyUserSigs(e){await this.setDefaultAuth(e)}async setDeletePolicyUserSigs(e){await this.setDefaultAuth(e)}async build(e,t,s){if(this.apiVersion!=="v1"&&(e==="registerPasskey"||e==="keyRefresh"))throw new Error(`${e} is only supported in V1`);let{challenge:n}=s!=null?s:{};if(e==="keygen"){let o=n?JSON.parse(n):void 0;await this.setKeygenUserSigs(t,o)}else{if(this.apiVersion==="v1"&&!n)throw new Error(`missing challenge response for ${e} V1`);let o=n!=null?n:ye((0,me.canonicalize)(t));e==="signgen"?await this.setSigngenUserSigs({payload:t,challenge:o}):e==="addEphemeralKey"?await this.setAddEphKeyUserSigs({payload:t,challenge:o}):e==="revokeEphemeralKey"?await this.setRevokeEphKeyUserSigs({payload:t,challenge:o}):e==="registerPasskey"?await this.setRegisterPasskeyUserSigs({payload:t,challenge:o}):e==="keyRefresh"?await this.setKeyRefreshUserSigs({payload:t,challenge:o}):e==="finishPresign"?await this.setFinishPresignUserSigs({payload:t,challenge:o}):e==="updatePolicy"?await this.setUpdatePolicyUserSigs({payload:t,challenge:o}):e==="deletePolicy"&&await this.setDeletePolicyUserSigs({payload:t,challenge:o})}return Object.fromEntries(this.userAuthentications)}};var se=r=>{let{sign:e,recid:t}=r,s=(27+t).toString(16);return`0x${e}${s}`};var C=class{constructor(e,t){c(this,"key_id");c(this,"eph_claim");h("keyId",e),this.key_id=e,this.eph_claim=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"RevokeEphKeyRequest"},{name:"challenge",type:"string"}],RevokeEphKeyRequest:[{name:"key_id",type:"string"},{name:"eph_claim",type:"string"}]}}},I=class{constructor(e,t){c(this,"key_id_list");c(this,"eph_claim");for(let s of e)h("keyId",s);this.key_id_list=e,this.eph_claim=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"AddEphKeyRequest"},{name:"challenge",type:"string"}],AddEphKeyRequest:[{name:"key_id_list",type:"string[]"},{name:"eph_claim",type:"string"}]}}},D=class{constructor(e){c(this,"options");h("options",e),this.options=e}},M=class{constructor({t:e,keyId:t,signAlg:s}){c(this,"t");c(this,"key_id");c(this,"sign_alg");h("keyId",t),h("signAlg",s),this.t=e,this.key_id=t,this.sign_alg=s}get eoaRequestSchema(){return{Request:[{name:"setup",type:"KeyRefreshRequest"},{name:"challenge",type:"string"}],KeyRefreshRequest:[{name:"t",type:"uint32"},{name:"key_id",type:"string"},{name:"sign_alg",type:"string"}]}}},w=class{constructor({keyId:e,policy:t}){c(this,"key_id");c(this,"policy");h("keyId",e),this.key_id=e,this.policy=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"UpdatePolicyRequest"},{name:"challenge",type:"string"}],UpdatePolicyRequest:[{name:"key_id",type:"string"},{name:"policy",type:"string"}]}}},P=class{constructor({keyId:e}){c(this,"key_id");h("keyId",e),this.key_id=e}get eoaRequestSchema(){return{Request:[{name:"setup",type:"DeletePolicyRequest"},{name:"challenge",type:"string"}],DeletePolicyRequest:[{name:"key_id",type:"string"}]}}};var at=[{name:"tag",type:"uint16"},{name:"value",type:"string"}],S=class{constructor({t:e,n:t,ephClaim:s,policy:n,signAlg:o}){c(this,"t");c(this,"n");c(this,"ephClaim");c(this,"metadata");c(this,"signAlg");c(this,"policy");h("signAlg",o),this.t=e,this.n=t,this.signAlg=o,this.ephClaim=s==null?void 0:s.toJSON(),this.metadata=[],this.policy=n==null?void 0:n.toJSON()}get eoaRequestSchema(){let e=[{name:"t",type:"uint32"},{name:"n",type:"uint32"},{name:"metadata",type:"TaggedValue[]"}];return this.ephClaim&&e.push({name:"ephClaim",type:"string"}),this.policy&&e.push({name:"policy",type:"string"}),{Request:[{name:"setup",type:"KeygenSetupOpts"},{name:"challenge",type:"string"}],KeygenSetupOpts:e,TaggedValue:at}}},m=class{constructor({t:e,key_id:t,signAlg:s,message:n}){c(this,"t");c(this,"key_id");c(this,"message");c(this,"signAlg");h("keyId",t),h("signAlg",s),h("message",n),this.t=e,this.key_id=t,this.message=n,this.signAlg=s}get eoaRequestSchema(){return{Request:[{name:"setup",type:"SignSetupOpts"},{name:"challenge",type:"string"}],SignSetupOpts:[{name:"t",type:"uint32"},{name:"key_id",type:"string"},{name:"signAlg",type:"string"},{name:"message",type:"string"}]}}},T=class{constructor({amount:e,keyId:t,t:s,expiryInSecs:n}){c(this,"amount");c(this,"key_id");c(this,"t");c(this,"expiry");if(e<=0)throw new Error("Amount must be greater than 0");h("keyId",t),this.amount=e,this.key_id=t,this.t=s,this.expiry=n!=null?n:Math.floor(Date.now()/1e3)+7*24*3600}},R=class{constructor({presignSessionId:e,message:t}){c(this,"presignSessionId");c(this,"message");h("presignSessionId",e),h("message",t),this.presignSessionId=e,this.message=t}get eoaRequestSchema(){return{Request:[{name:"setup",type:"FinishPresignOpts"},{name:"challenge",type:"string"}],FinishPresignOpts:[{name:"presignSessionId",type:"string"},{name:"message",type:"string"}]}}};var ct={name:"SilentShard authentication",version:"0.1.0"},lt=[{name:"name",type:"string"},{name:"version",type:"string"}];function ut(r,e){let t={setup:r,challenge:e};return{types:{EIP712Domain:lt,...r.eoaRequestSchema},domain:ct,primaryType:"Request",message:t}}async function Be({setup:r,eoa:e,challenge:t,browserWallet:s}){let n=ut(r,t),o=await s.signTypedData(e,n);return new b({method:"eoa",id:e},o)}var fe=require("js-base64"),we=require("viem"),G=require("json-canonicalize");async function Fe({user:r,challenge:e,rpConfig:t}){let s=(0,we.hexToBytes)(`0x${e}`,{size:32}),n={publicKey:{authenticatorSelection:{residentKey:"preferred",userVerification:"required"},challenge:s,excludeCredentials:[],pubKeyCredParams:[{type:"public-key",alg:-7},{type:"public-key",alg:-257}],rp:{name:t.rpName,id:t.rpId},user:{...r,id:fe.Base64.toUint8Array(r.id)}}},o=await navigator.credentials.create(n);if(o===null)throw new Error("No credential returned");let i=A(o.response.attestationObject),l={rawCredential:(0,G.canonicalize)({authenticatorAttachment:o.authenticatorAttachment,id:o.id,rawId:A(o.rawId),response:{attestationObject:i,clientDataJSON:A(o.response.clientDataJSON)},type:o.type}),origin:t.rpName,rpId:t.rpId};return new b({method:"passkey",id:o.id},(0,G.canonicalize)(l))}async function _e({challenge:r,allowCredentialId:e,rpConfig:t}){let s=(0,we.hexToBytes)(`0x${r}`,{size:32}),n=e?[{type:"public-key",id:fe.Base64.toUint8Array(e)}]:[],o={publicKey:{userVerification:"required",challenge:s,allowCredentials:n}},i=await navigator.credentials.get(o);if(i===null)throw new Error("Failed to get navigator credentials");let a=i.response,l=a.userHandle;if(l===null)throw new Error("User handle cannot be null");let u=A(a.signature),p={rawCredential:(0,G.canonicalize)({authenticatorAttachment:i.authenticatorAttachment,id:i.id,rawId:A(i.rawId),response:{authenticatorData:A(a.authenticatorData),clientDataJSON:A(a.clientDataJSON),signature:u,userHandle:A(l)},type:i.type}),origin:t.rpName,rpId:t.rpId};return new b({method:"passkey",id:i.id},(0,G.canonicalize)(p))}var z=require("viem");var re=require("@noble/curves/ed25519"),Pe=require("@noble/curves/secp256k1");var Le=require("viem/accounts"),Se=require("json-canonicalize");var K=class r{constructor(e,t,s,n=Math.floor(Date.now()/1e3)+3600){c(this,"ephId");c(this,"ephPK");c(this,"signAlg");c(this,"expiry");this.validateInputs(e,t,s,n),this.ephId=e,this.ephPK=(0,z.toHex)(t),this.signAlg=s,this.expiry=n}validateInputs(e,t,s,n){h("ephId",e),Ie(t,s),g(Number.isInteger(n)===!1,"expiry must be an integer");let o=Math.floor(Date.now()/1e3),i=n-o,a=i>0&&i<=365*24*60*60;g(!a,`lifetime must be greater than 0 and less than or equal to 365 days expiry - now ${i}, expiry ${n} now secs ${o}`)}toJSON(){try{return(0,Se.canonicalize)({ephId:this.ephId,ephPK:this.ephPK,expiry:this.expiry,signAlg:this.signAlg})}catch(e){throw console.error("Error while serializing ephemeral key claim",e),new Error("Error while serializing ephemeral key claim")}}static generateKeys(e,t){let s=j(e),n=O(s,e),o=new r((0,z.toHex)(n),n,e,t);return{privKey:s,pubKey:n,ephClaim:o}}};async function Je({setup:r,challenge:e,ephSK:t,ephClaim:s}){let n={setup:r,challenge:e},o=new TextEncoder().encode((0,Se.canonicalize)(n)),i=await pt(o,t,s.signAlg);return new b({method:"ephemeral",id:s.ephId},i)}async function pt(r,e,t){switch(t){case"ed25519":return(0,z.toHex)(re.ed25519.sign(r,e));case"secp256k1":return await(0,Le.signMessage)({message:{raw:r},privateKey:(0,z.toHex)(e)});default:throw new Error("Invalid signature algorithm")}}function j(r){switch(r){case"ed25519":return re.ed25519.utils.randomPrivateKey();case"secp256k1":return Pe.secp256k1.utils.randomPrivateKey();default:throw new Error("Invalid signature algorithm")}}function O(r,e){switch(e){case"ed25519":return re.ed25519.getPublicKey(r);case"secp256k1":return Pe.secp256k1.getPublicKey(r,!1);default:throw new Error("Invalid signature algorithm")}}var He=require("viem");var b=class{constructor(e,t){this.credentials=e;this.signature=t;this.credentials=e,this.signature=t}},$=class{constructor(e,t){c(this,"browserWallet");c(this,"eoa");this.validateInputs(e,t),this.browserWallet=t,this.eoa=e}validateInputs(e,t){g(!(0,He.isAddress)(e),"invalid Ethereum address format"),g(!((t==null?void 0:t.signTypedData)instanceof Function),"invalid browserWallet")}async authenticate({payload:e,challenge:t}){return H(e,[S,M,I,C,m,R,w,P],"eoa"),await Be({setup:e,eoa:this.eoa,challenge:t,browserWallet:this.browserWallet})}},V=class{constructor(e,t,s){c(this,"ephSK");c(this,"ephClaim");Me(t,s),this.ephSK=t;let n=O(this.ephSK,s);this.ephClaim=new K(e,n,s)}async authenticate({payload:e,challenge:t}){return H(e,[m,C,R],"ephemeral"),await Je({setup:e,challenge:t,ephSK:this.ephSK,ephClaim:this.ephClaim})}},q=class{constructor(e,t){c(this,"rpConfig");c(this,"allowCredentialId");this.rpConfig=e,this.allowCredentialId=t}async authenticate({payload:e,challenge:t}){return H(e,[S,I,m,R,M,C,w,P],"passkey"),await _e({allowCredentialId:this.allowCredentialId,challenge:t,rpConfig:this.rpConfig})}},W=class{constructor(e,t){c(this,"rpConfig");c(this,"user");this.rpConfig=e,this.user=t}async authenticate({payload:e,challenge:t}){return H(e,[D],"passkey"),await Fe({user:this.user,challenge:t,rpConfig:this.rpConfig})}};var Q=require("json-canonicalize");var B=class{constructor(e){c(this,"walletProviderUrl");c(this,"apiVersion","v1");this.walletProviderUrl=`${e.walletProviderUrl}/${e.apiVersion}`,this.apiVersion=e.apiVersion}getVersion(){return this.apiVersion}async startKeygen({setups:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("keygen",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse keygen response: ${n}`)}})}async startKeyRefresh({payload:e,authModule:t}){if(this.apiVersion==="v2")throw new Error("Key refresh is not supported in v2 API");return this.connect.bind(this)("keyRefresh",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse key refresh response: ${n}`)}})}async startSigngen({setup:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("signgen",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse signgen response: ${n}`)}})}async addEphemeralKey({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("addEphemeralKey",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse add ephemeral key response: ${n}`)}})}async revokeEphemeralKey({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("revokeEphemeralKey",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse revoke ephemeral key response: ${n}`)}})}async registerPasskey({payload:e,authModule:t}){if(this.apiVersion==="v2")throw new Error("Passkey registration is not supported in v2 API");return this.connect.bind(this)("registerPasskey",e,t).then(n=>({passkeyCredentialId:n}))}async updatePolicy({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("updatePolicy",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse update policy response: ${n}`)}})}async deletePolicy({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("deletePolicy",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse delete policy response: ${n}`)}})}connect(e,t,s){return new Promise((n,o)=>{let i=new WebSocket(`${this.walletProviderUrl}/${e}`),a=0;return console.debug("Connecting to ",i.url),i.addEventListener("open",l=>{switch(console.debug(`Connection opened in state ${a} with event ${JSON.stringify(l,void 0," ")}`),a){case 0:{a=1;try{let u=(0,Q.canonicalize)({payload:t});console.debug("Sending request:",u),i.send(u)}catch(u){this.finishWithError(i,a,u,"open event",o)}break}case 1:case 2:this.finishWithError(i,a,"Unexpected message in state waitingForResult.","open event",o);break;case 3:break}}),i.addEventListener("message",async l=>{switch(console.debug(`Connection message in state ${a} with event data ${JSON.stringify(l.data,void 0," ")}`),a){case 0:this.finishWithError(i,a,"Unexpected message in state initiated.","message event",o);break;case 1:{a=2;try{let u=l.data,d=await new x(s,this.apiVersion).build(e,t,{challenge:u});i.send((0,Q.canonicalize)(d))}catch(u){this.finishWithError(i,a,u,"message event",o)}break}case 2:{a=3,i.close(),n(l.data);break}case 3:break}}),i.addEventListener("error",l=>{this.finishWithError(i,a,`Connection encountered an error event: ${JSON.stringify(l,void 0," ")}`,"error event",o)}),i.addEventListener("close",l=>{let u=l.reason||"No specific reason provided.",d=l.code;console.debug(`Connection closed. State: ${a}, Code: ${d}, Reason: '${u}'`);let p=d>=4e3?`Application Error ${d}: ${u}`:d===1006?"Connection Abnormality (Code 1006): Server closed connection unexpectedly or network issue.":`WebSocket Closed Unexpectedly (Code ${d}): ${u}`;this.finishWithError(i,a,new Error(p),"close event",o)}),()=>{(i.readyState===WebSocket.OPEN||i.readyState===WebSocket.CONNECTING)&&i.close(1001,"Cleanup/Unmount")}})}connectV2(e,t,s){return new Promise((n,o)=>{let i=new WebSocket(`${this.walletProviderUrl}/${e}`),a=0;return console.debug("Connecting to ",i.url),i.addEventListener("open",async l=>{switch(console.debug(`Connection opened in state ${a} with event ${JSON.stringify(l,void 0," ")}`),a){case 0:a=2;try{let u=await new x(s,this.apiVersion).build(e,t);i.send((0,Q.canonicalize)({payload:t,userSigs:u}))}catch(u){this.finishWithError(i,a,u,"open event",o)}break;case 2:a=3,this.finishWithError(i,a,"Unexpected message in state waitingForResult.","open event",o);break;case 3:break}}),i.addEventListener("message",async l=>{switch(console.debug(`Connection message in state ${a} with event ${JSON.stringify(l,void 0," ")}`),a){case 0:this.finishWithError(i,a,"Unexpected message in state initiated.","message event",o);break;case 2:{a=3,i.close(),n(l.data);break}case 3:break}}),i.addEventListener("error",l=>{this.finishWithError(i,a,`Connection encountered an error event: ${JSON.stringify(l,void 0," ")}`,"error event",o)}),i.addEventListener("close",l=>{let u=l.reason||"No specific reason provided.",d=l.code;console.debug(`Connection closed. State: ${a}, Code: ${d}, Reason: '${u}'`);let p=d>=4e3?`Application Error ${d}: ${u}`:d===1006?"Connection Abnormality (Code 1006): Server closed connection unexpectedly or network issue.":`WebSocket Closed Unexpectedly (Code ${d}): ${u}`;this.finishWithError(i,a,new Error(p),"close event",o)}),()=>{(i.readyState===WebSocket.OPEN||i.readyState===WebSocket.CONNECTING)&&i.close(1001,"Cleanup/Unmount")}})}finishWithError(e,t,s,n,o){t!==3&&(console.error(`Error from ${n} in state ${t}:`,s),t=3,o(s instanceof Error?s:new Error(String(s)))),e.readyState===WebSocket.OPEN&&e.close(1e3,`Protocol run failed. Client attempted to close connection in state ${t}`)}},E=class{constructor(e){c(this,"walletProviderUrl");c(this,"apiVersion","v1");this.walletProviderUrl=`${e.walletProviderUrl}/${e.apiVersion}`,this.apiVersion=e.apiVersion}getVersion(){return this.apiVersion}async startKeygen({setups:e}){return this.connect.bind(this)("keygen",e).then(s=>{try{return JSON.parse(s)}catch{throw new Error(`Failed to parse keygen response: ${s}`)}})}async startSigngen({setup:e}){return this.connect.bind(this)("signgen",e).then(s=>{try{return JSON.parse(s)}catch{throw new Error(`Failed to parse signgen response: ${s}`)}})}async startKeyRefresh({payload:e}){if(this.apiVersion==="v2")throw new Error("Key refresh is not supported in v2 API");return this.connect.bind(this)("keyRefresh",e).then(s=>{try{return JSON.parse(s)}catch{throw new Error(`Failed to parse key refresh response: ${s}`)}})}async updatePolicy({payload:e}){return this.connect.bind(this)("updatePolicy",e).then(s=>{try{return JSON.parse(s)}catch{throw new Error(`Failed to parse update policy response: ${s}`)}})}async deletePolicy({payload:e}){return this.connect.bind(this)("deletePolicy",e).then(s=>{try{return JSON.parse(s)}catch{throw new Error(`Failed to parse delete policy response: ${s}`)}})}connect(e,t){return new Promise((s,n)=>{let o=0,i=new WebSocket(`${this.walletProviderUrl}/${e}`);i.addEventListener("open",async a=>{switch(console.debug(`Connection opened in state ${o} with event ${JSON.stringify(a,void 0," ")}`),o){case 0:o=2;try{i.send((0,Q.canonicalize)({payload:t}))}catch(l){n(l)}break;case 2:o=3,n("Incorrect protocol state");break;case 3:break}}),i.addEventListener("message",async a=>{switch(console.debug(`Connection message in state ${o} with event ${JSON.stringify(a,void 0," ")}`),o){case 0:o=3,n("Incorrect protocol state");break;case 2:{o=3,i.close(),s(a.data);break}case 3:break}}),i.addEventListener("error",a=>{console.debug(`Connection error in state ${o} with event ${JSON.stringify(a,void 0," ")}`),o!=3&&(o=3,n("Incorrect protocol state"))}),i.addEventListener("close",a=>{console.debug(`Connection closed in state ${o} with event ${JSON.stringify(a,void 0," ")}`),o!=3&&(o=3,n("Incorrect protocol state"))})})}};var F=class{constructor(e,t){c(this,"authModule");c(this,"wpClient");if(!t&&!(e instanceof E))throw new Error("missing authModule for wallet provider client in auth mode");if(t&&e instanceof E)throw new Error("authModule is required but using wallet provider client in no-auth mode");this.authModule=t,this.wpClient=e}validateQuorumSetup({threshold:e,totalNodes:t}){e&&g(e<2,`Threshold = ${e} must be at least 2`),e&&t&&g(t<e,`Total nodes = ${t} must be greater or equal to threshold = ${e}`)}async generateKey(e,t,s,n,o){this.validateQuorumSetup({threshold:e,totalNodes:t});let i=s.map(a=>new S({t:e,n:t,ephClaim:n,policy:o,signAlg:a}));return this.authModule?await this.wpClient.startKeygen({setups:i,authModule:this.authModule}):await this.wpClient.startKeygen({setups:i})}async signMessage(e,t,s,n){this.validateQuorumSetup({threshold:e}),Oe(s);let o=new m({t:e,key_id:t,signAlg:s,message:n});if(this.authModule){if(this.authModule instanceof q&&new Map(Object.entries(JSON.parse(n))).size>1)throw new Error("For Passkey Authentication only one message in signing request is supported");return await this.wpClient.startSigngen({setup:o,authModule:this.authModule})}else return await this.wpClient.startSigngen({setup:o})}async refreshKey(e,t,s){let n=new M({t:e,keyId:t,signAlg:s});return this.authModule?await this.wpClient.startKeyRefresh({payload:n,authModule:this.authModule}):await this.wpClient.startKeyRefresh({payload:n})}async addEphemeralKey(e,t){let s=new I(e,t);if(!this.authModule)throw new Error("Add ephemeral key is not supported in no auth mode");return await this.wpClient.addEphemeralKey({payload:s,authModule:this.authModule})}async revokeEphemeralKey(e,t){h("keyId",e);let s=new C(e,t);if(!this.authModule)throw new Error("Revoke ephemeral key is not supported in no auth mode");return await this.wpClient.revokeEphemeralKey({payload:s,authModule:this.authModule})}async registerPasskey(e){let t=new D(e!=null?e:"passkey options");if(!this.authModule)throw new Error("Register passkey is not supported in no auth mode");return await this.wpClient.registerPasskey({payload:t,authModule:this.authModule})}async updatePolicy(e,t){let s=new w({keyId:e,policy:t});return this.authModule?await this.wpClient.updatePolicy({payload:s,authModule:this.authModule}):await this.wpClient.updatePolicy({payload:s})}async deletePolicy(e){let t=new P({keyId:e});return this.authModule?await this.wpClient.deletePolicy({payload:t,authModule:this.authModule}):await this.wpClient.deletePolicy({payload:t})}};var Ge=require("json-canonicalize");var Re=class extends Error{constructor(t,s,n){super(n||s);this.status=t;this.statusText=s;this.name="HttpError"}},_=class{constructor(e="",t={}){c(this,"baseURL");c(this,"defaultHeaders");this.baseURL=e,this.validateHeaders(t),this.defaultHeaders={"Content-Type":"application/json",...t}}validateHeaders(e){if(typeof e!="object"||e===null)throw new Error("Headers must be an object.");for(let[t,s]of Object.entries(e))if(typeof t!="string"||typeof s!="string")throw new Error(`Invalid header: ${t}. Header names and values must be strings.`)}setDefaultHeaders(e){this.defaultHeaders={...this.defaultHeaders,...e}}buildUrl(e){return`${this.baseURL}${e}`}async handleResponse(e){if(!e.ok){let s;try{s=(await e.json()).message||e.statusText}catch{s=e.statusText}throw new Re(e.status,e.statusText,s)}let t=e.headers.get("content-type");return t&&t.includes("application/json")?e.json():e.text()}async request(e,t,s,n={}){let o=this.buildUrl(t),i={...this.defaultHeaders,...n.headers},a={method:e,headers:i,...n,body:s?(0,Ge.canonicalize)(s):null},l=await fetch(o,a);return this.handleResponse(l)}async get(e,t){return this.request("GET",e,void 0,t)}async post(e,t,s){return this.request("POST",e,t,s)}async put(e,t,s){return this.request("PUT",e,t,s)}async patch(e,t,s){return this.request("PATCH",e,t,s)}async delete(e,t){return this.request("DELETE",e,void 0,t)}};var ne=require("viem/accounts"),ze=require("@noble/curves/secp256k1"),L=require("viem"),ht=require("js-base64");function ie(r){if(r.startsWith("0x")&&(r=r.slice(2)),r.startsWith("04"))return(0,ne.publicKeyToAddress)(`0x${r} `);if(r.startsWith("02")||r.startsWith("03")){let e=ze.secp256k1.ProjectivePoint.fromHex(r).toHex(!1);return(0,ne.publicKeyToAddress)(`0x${e}`)}else throw new Error("Invalid public key")}var Ke={};Ue(Ke,{Action:()=>xe,ChainType:()=>Ee,IssuerType:()=>Ae,Logic:()=>be,Operator:()=>Ce,Policy:()=>ce,Rule:()=>ae,TransactionAttribute:()=>ke,TransactionType:()=>ve});var je=require("json-canonicalize");var oe=512,Ae=(s=>(s.SessionKeyId="SessionKeyId",s.UserId="UserId",s.All="*",s))(Ae||{}),xe=(t=>(t.Allow="allow",t.Deny="deny",t))(xe||{}),be=(t=>(t.Or="or",t.And="and",t))(be||{}),Ee=(s=>(s.Off="off",s.Ethereum="ethereum",s.Solana="solana",s))(Ee||{}),ve=(i=>(i.Eip712="eip712",i.Eip191="eip191",i.Erc20="erc20",i.Erc721="erc721",i.NativeTransfer="nativeTransfer",i.SolanaTransaction="solanaTransaction",i))(ve||{}),ke=(y=>(y.Sender="sender",y.Receiver="receiver",y.NativeValue="nativeValue",y.ChainId="chainId",y.FunctionSelector="functionSelector",y.Message="message",y.VerifyingContract="verifyingContract",y.PrimaryType="primaryType",y.DomainName="domainName",y.DomainVersion="domainVersion",y.SolanaAccountKeys="solanaAccountKeys",y.SplTransferAmount="splTransferAmount",y.SplTokenMint="splTokenMint",y.CustomProgramInstruction="customProgramInstruction",y.SystemInstructionName="systemInstructionName",y.SplInstructionName="splInstructionName",y))(ke||{}),Ce=(l=>(l.Eq="eq",l.Neq="neq",l.Lt="lt",l.Lte="lte",l.Gt="gt",l.Gte="gte",l.In="in",l.All="all",l))(Ce||{}),ae=class{constructor({description:e,chain_type:t,conditions:s,issuer:n,action:o,logic:i}){c(this,"description");c(this,"issuer");c(this,"action");c(this,"logic");c(this,"chain_type");c(this,"conditions");if(!s.length)throw new Error("Rule must have at least one condition");if(!t)throw new Error("Chain type must be set");if(e.length>oe)throw new Error(`Description length exceeds maximum of ${oe}`);this.description=e,this.chain_type=t,this.conditions=s,this.issuer=n||[{type:"*",id:"*"}],this.action=o||"allow",this.logic=i||"and"}},ce=class{constructor({version:e,description:t,rules:s}){c(this,"version");c(this,"description");c(this,"rules");if(t.length>oe)throw new Error(`Description length exceeds maximum of ${oe}`);this.version=e!=null?e:"1.0",this.description=t,this.rules=s}toJSON(){try{return(0,je.canonicalize)({version:this.version,description:this.description,rules:this.rules})}catch(e){throw console.error("Error while serializing policy",e),new Error("Error while serializing policy")}}};var dt={KeygenSetupOpts:S,InitPresignOpts:T,FinishPresignOpts:R,SignSetupOpts:m,UserSignatures:x,NetworkSigner:F,SignRequestBuilder:U,WalletProviderServiceClient:B,NoAuthWalletProviderServiceClient:E,HttpClient:_,EOAAuth:$,EphAuth:V,PasskeyAuth:q,PasskeyRegister:W,generateEphPrivateKey:j,getEphPublicKey:O,EphKeyClaim:K,computeAddress:ie,flattenSignature:se,UpdatePolicyRequest:w,DeletePolicyRequest:P,...Ke};0&&(module.exports={Action,ChainType,DeletePolicyRequest,EOAAuth,EphAuth,EphKeyClaim,FinishPresignOpts,HttpClient,InitPresignOpts,IssuerType,KeygenSetupOpts,Logic,NetworkSigner,NoAuthWalletProviderServiceClient,Operator,PasskeyAuth,PasskeyRegister,Policy,Rule,SignRequestBuilder,SignSetupOpts,TransactionAttribute,TransactionType,UpdatePolicyRequest,UserSignatures,WalletProviderServiceClient,computeAddress,flattenSignature,generateEphPrivateKey,getEphPublicKey});
1
+ "use strict";var Y=Object.defineProperty;var Ye=Object.getOwnPropertyDescriptor;var Ze=Object.getOwnPropertyNames;var et=Object.prototype.hasOwnProperty;var tt=(r,e,t)=>e in r?Y(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t;var qe=(r,e)=>{for(var t in e)Y(r,t,{get:e[t],enumerable:!0})},st=(r,e,t,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Ze(e))!et.call(r,n)&&n!==t&&Y(r,n,{get:()=>e[n],enumerable:!(s=Ye(e,n))||s.enumerable});return r};var rt=r=>st(Y({},"__esModule",{value:!0}),r);var c=(r,e,t)=>tt(r,typeof e!="symbol"?e+"":e,t);var mt={};qe(mt,{Action:()=>be,ChainType:()=>ve,DeletePolicyRequest:()=>R,EOAAuth:()=>V,EphAuth:()=>W,EphKeyClaim:()=>I,FinishPresignOpts:()=>A,HttpClient:()=>J,InitPresignOpts:()=>$,IssuerType:()=>xe,JWTAuth:()=>B,KeygenSetupOpts:()=>f,Logic:()=>Ee,NetworkSigner:()=>L,NoAuthWalletProviderServiceClient:()=>E,Operator:()=>Ie,PasskeyAuth:()=>K,PasskeyRegister:()=>F,Policy:()=>ue,Rule:()=>ce,SignRequestBuilder:()=>U,SignSetupOpts:()=>m,TransactionAttribute:()=>Ce,TransactionType:()=>ke,UpdatePolicyRequest:()=>S,UserAuthentication:()=>w,UserSignatures:()=>b,WalletProviderServiceClient:()=>_,computeAddress:()=>oe,default:()=>yt,flattenSignature:()=>re,generateEphPrivateKey:()=>Q,getEphPublicKey:()=>O});module.exports=rt(mt);var Ne=require("json-canonicalize");var h=(r,e)=>{g(typeof e!="string",`${r} must be string`),g((e==null?void 0:e.trim().length)===0,`${r} cannot be empty`)},Me=(r,e)=>{if(g(!(r instanceof Uint8Array),"key must be an Uint8Array"),e==="secp256k1")g(r.length!==65,"secp256k1: key length must be 65 bytes, got "+r.length);else if(e==="ed25519")g(r.length!==32,"ed25519: key length must be 32 bytes, got "+r.length);else throw new Error("Invalid signature algorithm")},Oe=(r,e)=>{if(g(!(r instanceof Uint8Array),"key must be an Uint8Array"),e==="secp256k1")g(r.length!==32,"secp256k1: key length must be 32 bytes, got "+r.length);else if(e==="ed25519")g(r.length!==32,"ed25519: key length must be 32 bytes, got "+r.length);else throw new Error("Invalid signature algorithm")},Te=r=>{g(r!=="ed25519"&&r!=="secp256k1",'signAlg must be either "ed25519" or "secp256k"')},g=(r,e)=>{if(r)throw new Error(e)},nt=(r,e)=>`Invalid payload ${JSON.stringify(r)}, cannot be authenticated by ${e.toLocaleUpperCase()} method.`,N=(r,e,t)=>{g(!e.some(s=>r instanceof s),nt(r,t))};var U=class{constructor(){c(this,"signRequest",new Map)}setRequest(e,t,s){if(h("transactionId",e),h("message",t),h("requestType",s),this.signRequest.has(e))throw new Error(`Transaction ID ${e} is already set.`);return this.signRequest.set(e,{signingMessage:t,requestType:s}),this}build(){let e={};if(this.signRequest.forEach((t,s)=>{e[s]=t}),Object.keys(e).length===0)throw new Error("No sign request is set.");return(0,Ne.canonicalize)(e)}};var fe=require("json-canonicalize");var Fe=require("js-base64");function it(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function pe(r,...e){if(!it(r))throw new Error("Uint8Array expected");if(e.length>0&&!e.includes(r.length))throw new Error("Uint8Array expected of length "+e+", got length="+r.length)}function he(r,e=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(e&&r.finished)throw new Error("Hash#digest() has already been called")}function De(r,e){pe(r);let t=e.outputLen;if(r.length<t)throw new Error("digestInto() expects output buffer of length at least "+t)}var ee=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),P=(r,e)=>r<<32-e|r>>>e;function ot(r){if(typeof r!="string")throw new Error("utf8ToBytes expected string, got "+typeof r);return new Uint8Array(new TextEncoder().encode(r))}function de(r){return typeof r=="string"&&(r=ot(r)),pe(r),r}var Z=class{clone(){return this._cloneInto()}};function $e(r){let e=s=>r().update(de(s)).digest(),t=r();return e.outputLen=t.outputLen,e.blockLen=t.blockLen,e.create=()=>r(),e}function at(r,e,t,s){if(typeof r.setBigUint64=="function")return r.setBigUint64(e,t,s);let n=BigInt(32),o=BigInt(4294967295),i=Number(t>>n&o),a=Number(t&o),u=s?4:0,l=s?0:4;r.setUint32(e+u,i,s),r.setUint32(e+l,a,s)}var Ve=(r,e,t)=>r&e^~r&t,We=(r,e,t)=>r&e^r&t^e&t,te=class extends Z{constructor(e,t,s,n){super(),this.blockLen=e,this.outputLen=t,this.padOffset=s,this.isLE=n,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(e),this.view=ee(this.buffer)}update(e){he(this);let{view:t,buffer:s,blockLen:n}=this;e=de(e);let o=e.length;for(let i=0;i<o;){let a=Math.min(n-this.pos,o-i);if(a===n){let u=ee(e);for(;n<=o-i;i+=n)this.process(u,i);continue}s.set(e.subarray(i,i+a),this.pos),this.pos+=a,i+=a,this.pos===n&&(this.process(t,0),this.pos=0)}return this.length+=e.length,this.roundClean(),this}digestInto(e){he(this),De(e,this),this.finished=!0;let{buffer:t,view:s,blockLen:n,isLE:o}=this,{pos:i}=this;t[i++]=128,this.buffer.subarray(i).fill(0),this.padOffset>n-i&&(this.process(s,0),i=0);for(let p=i;p<n;p++)t[p]=0;at(s,n-8,BigInt(this.length*8),o),this.process(s,0);let a=ee(e),u=this.outputLen;if(u%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let l=u/4,d=this.get();if(l>d.length)throw new Error("_sha2: outputLen bigger than state");for(let p=0;p<l;p++)a.setUint32(4*p,d[p],o)}digest(){let{buffer:e,outputLen:t}=this;this.digestInto(e);let s=e.slice(0,t);return this.destroy(),s}_cloneInto(e){e||(e=new this.constructor),e.set(...this.get());let{blockLen:t,buffer:s,length:n,finished:o,destroyed:i,pos:a}=this;return e.length=n,e.pos=a,e.finished=o,e.destroyed=i,n%t&&e.buffer.set(s),e}};var ct=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),v=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),k=new Uint32Array(64),ge=class extends te{constructor(){super(64,32,8,!1),this.A=v[0]|0,this.B=v[1]|0,this.C=v[2]|0,this.D=v[3]|0,this.E=v[4]|0,this.F=v[5]|0,this.G=v[6]|0,this.H=v[7]|0}get(){let{A:e,B:t,C:s,D:n,E:o,F:i,G:a,H:u}=this;return[e,t,s,n,o,i,a,u]}set(e,t,s,n,o,i,a,u){this.A=e|0,this.B=t|0,this.C=s|0,this.D=n|0,this.E=o|0,this.F=i|0,this.G=a|0,this.H=u|0}process(e,t){for(let p=0;p<16;p++,t+=4)k[p]=e.getUint32(t,!1);for(let p=16;p<64;p++){let G=k[p-15],T=k[p-2],Ue=P(G,7)^P(G,18)^G>>>3,le=P(T,17)^P(T,19)^T>>>10;k[p]=le+k[p-7]+Ue+k[p-16]|0}let{A:s,B:n,C:o,D:i,E:a,F:u,G:l,H:d}=this;for(let p=0;p<64;p++){let G=P(a,6)^P(a,11)^P(a,25),T=d+G+Ve(a,u,l)+ct[p]+k[p]|0,le=(P(s,2)^P(s,13)^P(s,22))+We(s,n,o)|0;d=l,l=u,u=a,a=i+T|0,i=o,o=n,n=s,s=T+le|0}s=s+this.A|0,n=n+this.B|0,o=o+this.C|0,i=i+this.D|0,a=a+this.E|0,u=u+this.F|0,l=l+this.G|0,d=d+this.H|0,this.set(s,n,o,i,a,u,l,d)}roundClean(){k.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var ye=$e(()=>new ge);var se=require("viem"),x=r=>Fe.Base64.fromUint8Array(new Uint8Array(r),!0),me=r=>{let e=(0,se.stringToBytes)(r),t=ye(ye(e));return(0,se.toHex)(t,{size:32}).slice(2)};var b=class{constructor(e,t){c(this,"userAuthentications");c(this,"authModule");c(this,"apiVersion");this.authModule=e,this.userAuthentications=new Map,this.apiVersion=t}async setDefaultAuth(e){let t=await this.authModule.authenticate({payload:e.payload,challenge:e.challenge});this.userAuthentications.set("default",t)}async setKeygenUserSigs(e,t){if(this.apiVersion==="v1"&&!t)throw new Error("no challenge response for keygen");for(let s of e){let n=s.signAlg,o=t?t[n]:me((0,fe.canonicalize)(s));if(o){let i=await this.authModule.authenticate({payload:s,challenge:o});this.userAuthentications.set(n,i)}else throw new Error(`no final challenge found in response for ${n}`)}}async setSigngenUserSigs(e){await this.setDefaultAuth(e)}async setAddEphKeyUserSigs(e){await this.setDefaultAuth(e)}async setRevokeEphKeyUserSigs(e){await this.setDefaultAuth(e)}async setRegisterPasskeyUserSigs(e){await this.setDefaultAuth(e)}async setKeyRefreshUserSigs(e){await this.setDefaultAuth(e)}async setFinishPresignUserSigs(e){await this.setDefaultAuth(e)}async setUpdatePolicyUserSigs(e){await this.setDefaultAuth(e)}async setDeletePolicyUserSigs(e){await this.setDefaultAuth(e)}async build(e,t,s){if(this.apiVersion!=="v1"&&(e==="registerPasskey"||e==="keyRefresh"))throw new Error(`${e} is only supported in V1`);let{challenge:n}=s!=null?s:{};if(e==="keygen"){let o=n?JSON.parse(n):void 0;await this.setKeygenUserSigs(t,o)}else{if(this.apiVersion==="v1"&&!n)throw new Error(`missing challenge response for ${e} V1`);let o=n!=null?n:me((0,fe.canonicalize)(t));e==="signgen"?await this.setSigngenUserSigs({payload:t,challenge:o}):e==="addEphemeralKey"?await this.setAddEphKeyUserSigs({payload:t,challenge:o}):e==="revokeEphemeralKey"?await this.setRevokeEphKeyUserSigs({payload:t,challenge:o}):e==="registerPasskey"?await this.setRegisterPasskeyUserSigs({payload:t,challenge:o}):e==="keyRefresh"?await this.setKeyRefreshUserSigs({payload:t,challenge:o}):e==="finishPresign"?await this.setFinishPresignUserSigs({payload:t,challenge:o}):e==="updatePolicy"?await this.setUpdatePolicyUserSigs({payload:t,challenge:o}):e==="deletePolicy"&&await this.setDeletePolicyUserSigs({payload:t,challenge:o})}return Object.fromEntries(this.userAuthentications)}};var re=r=>{let{sign:e,recid:t}=r,s=(27+t).toString(16);return`0x${e}${s}`};var C=class{constructor(e,t){c(this,"key_id");c(this,"eph_claim");h("keyId",e),this.key_id=e,this.eph_claim=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"RevokeEphKeyRequest"},{name:"challenge",type:"string"}],RevokeEphKeyRequest:[{name:"key_id",type:"string"},{name:"eph_claim",type:"string"}]}}},q=class{constructor(e,t){c(this,"key_id_list");c(this,"eph_claim");for(let s of e)h("keyId",s);this.key_id_list=e,this.eph_claim=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"AddEphKeyRequest"},{name:"challenge",type:"string"}],AddEphKeyRequest:[{name:"key_id_list",type:"string[]"},{name:"eph_claim",type:"string"}]}}},D=class{constructor(e){c(this,"options");h("options",e),this.options=e}},M=class{constructor({t:e,keyId:t,signAlg:s}){c(this,"t");c(this,"key_id");c(this,"sign_alg");h("keyId",t),h("signAlg",s),this.t=e,this.key_id=t,this.sign_alg=s}get eoaRequestSchema(){return{Request:[{name:"setup",type:"KeyRefreshRequest"},{name:"challenge",type:"string"}],KeyRefreshRequest:[{name:"t",type:"uint32"},{name:"key_id",type:"string"},{name:"sign_alg",type:"string"}]}}},S=class{constructor({keyId:e,policy:t}){c(this,"key_id");c(this,"policy");h("keyId",e),this.key_id=e,this.policy=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"UpdatePolicyRequest"},{name:"challenge",type:"string"}],UpdatePolicyRequest:[{name:"key_id",type:"string"},{name:"policy",type:"string"}]}}},R=class{constructor({keyId:e}){c(this,"key_id");h("keyId",e),this.key_id=e}get eoaRequestSchema(){return{Request:[{name:"setup",type:"DeletePolicyRequest"},{name:"challenge",type:"string"}],DeletePolicyRequest:[{name:"key_id",type:"string"}]}}};var ut=[{name:"tag",type:"uint16"},{name:"value",type:"string"}],f=class{constructor({t:e,n:t,ephClaim:s,policy:n,signAlg:o}){c(this,"t");c(this,"n");c(this,"ephClaim");c(this,"metadata");c(this,"signAlg");c(this,"policy");h("signAlg",o),this.t=e,this.n=t,this.signAlg=o,this.ephClaim=s==null?void 0:s.toJSON(),this.metadata=[],this.policy=n==null?void 0:n.toJSON()}get eoaRequestSchema(){let e=[{name:"t",type:"uint32"},{name:"n",type:"uint32"},{name:"metadata",type:"TaggedValue[]"}];return this.ephClaim&&e.push({name:"ephClaim",type:"string"}),this.policy&&e.push({name:"policy",type:"string"}),{Request:[{name:"setup",type:"KeygenSetupOpts"},{name:"challenge",type:"string"}],KeygenSetupOpts:e,TaggedValue:ut}}},m=class{constructor({t:e,key_id:t,signAlg:s,message:n}){c(this,"t");c(this,"key_id");c(this,"message");c(this,"signAlg");h("keyId",t),h("signAlg",s),h("message",n),this.t=e,this.key_id=t,this.message=n,this.signAlg=s}get eoaRequestSchema(){return{Request:[{name:"setup",type:"SignSetupOpts"},{name:"challenge",type:"string"}],SignSetupOpts:[{name:"t",type:"uint32"},{name:"key_id",type:"string"},{name:"signAlg",type:"string"},{name:"message",type:"string"}]}}},$=class{constructor({amount:e,keyId:t,t:s,expiryInSecs:n}){c(this,"amount");c(this,"key_id");c(this,"t");c(this,"expiry");if(e<=0)throw new Error("Amount must be greater than 0");h("keyId",t),this.amount=e,this.key_id=t,this.t=s,this.expiry=n!=null?n:Math.floor(Date.now()/1e3)+7*24*3600}},A=class{constructor({presignSessionId:e,message:t}){c(this,"presignSessionId");c(this,"message");h("presignSessionId",e),h("message",t),this.presignSessionId=e,this.message=t}get eoaRequestSchema(){return{Request:[{name:"setup",type:"FinishPresignOpts"},{name:"challenge",type:"string"}],FinishPresignOpts:[{name:"presignSessionId",type:"string"},{name:"message",type:"string"}]}}};var lt={name:"SilentShard authentication",version:"0.1.0"},pt=[{name:"name",type:"string"},{name:"version",type:"string"}];function ht(r,e){let t={setup:r,challenge:e};return{types:{EIP712Domain:pt,...r.eoaRequestSchema},domain:lt,primaryType:"Request",message:t}}async function Be({setup:r,eoa:e,challenge:t,browserWallet:s}){let n=ht(r,t),o=await s.signTypedData(e,n);return new w({method:"eoa",id:e},o)}var we=require("js-base64"),Pe=require("viem"),z=require("json-canonicalize");async function _e({user:r,challenge:e,rpConfig:t}){let s=(0,Pe.hexToBytes)(`0x${e}`,{size:32}),n={publicKey:{authenticatorSelection:{residentKey:"preferred",userVerification:"required"},challenge:s,excludeCredentials:[],pubKeyCredParams:[{type:"public-key",alg:-7},{type:"public-key",alg:-257}],rp:{name:t.rpName,id:t.rpId},user:{...r,id:we.Base64.toUint8Array(r.id)}}},o=await navigator.credentials.create(n);if(o===null)throw new Error("No credential returned");let i=x(o.response.attestationObject),u={rawCredential:(0,z.canonicalize)({authenticatorAttachment:o.authenticatorAttachment,id:o.id,rawId:x(o.rawId),response:{attestationObject:i,clientDataJSON:x(o.response.clientDataJSON)},type:o.type}),origin:t.rpName,rpId:t.rpId};return new w({method:"passkey",id:o.id},(0,z.canonicalize)(u))}async function Le({challenge:r,allowCredentialId:e,rpConfig:t}){let s=(0,Pe.hexToBytes)(`0x${r}`,{size:32}),n=e?[{type:"public-key",id:we.Base64.toUint8Array(e)}]:[],o={publicKey:{userVerification:"required",challenge:s,allowCredentials:n}},i=await navigator.credentials.get(o);if(i===null)throw new Error("Failed to get navigator credentials");let a=i.response,u=a.userHandle;if(u===null)throw new Error("User handle cannot be null");let l=x(a.signature),p={rawCredential:(0,z.canonicalize)({authenticatorAttachment:i.authenticatorAttachment,id:i.id,rawId:x(i.rawId),response:{authenticatorData:x(a.authenticatorData),clientDataJSON:x(a.clientDataJSON),signature:l,userHandle:x(u)},type:i.type}),origin:t.rpName,rpId:t.rpId};return new w({method:"passkey",id:i.id},(0,z.canonicalize)(p))}var j=require("viem");var ne=require("@noble/curves/ed25519"),Se=require("@noble/curves/secp256k1");var Je=require("viem/accounts"),Re=require("json-canonicalize");var I=class r{constructor(e,t,s,n=Math.floor(Date.now()/1e3)+3600){c(this,"ephId");c(this,"ephPK");c(this,"signAlg");c(this,"expiry");this.validateInputs(e,t,s,n),this.ephId=e,this.ephPK=(0,j.toHex)(t),this.signAlg=s,this.expiry=n}validateInputs(e,t,s,n){h("ephId",e),Me(t,s),g(Number.isInteger(n)===!1,"expiry must be an integer");let o=Math.floor(Date.now()/1e3),i=n-o,a=i>0&&i<=365*24*60*60;g(!a,`lifetime must be greater than 0 and less than or equal to 365 days expiry - now ${i}, expiry ${n} now secs ${o}`)}toJSON(){try{return(0,Re.canonicalize)({ephId:this.ephId,ephPK:this.ephPK,expiry:this.expiry,signAlg:this.signAlg})}catch(e){throw console.error("Error while serializing ephemeral key claim",e),new Error("Error while serializing ephemeral key claim")}}static generateKeys(e,t){let s=Q(e),n=O(s,e),o=new r((0,j.toHex)(n),n,e,t);return{privKey:s,pubKey:n,ephClaim:o}}};async function He({setup:r,challenge:e,ephSK:t,ephClaim:s}){let n={setup:r,challenge:e},o=new TextEncoder().encode((0,Re.canonicalize)(n)),i=await dt(o,t,s.signAlg);return new w({method:"ephemeral",id:s.ephId},i)}async function dt(r,e,t){switch(t){case"ed25519":return(0,j.toHex)(ne.ed25519.sign(r,e));case"secp256k1":return await(0,Je.signMessage)({message:{raw:r},privateKey:(0,j.toHex)(e)});default:throw new Error("Invalid signature algorithm")}}function Q(r){switch(r){case"ed25519":return ne.ed25519.utils.randomPrivateKey();case"secp256k1":return Se.secp256k1.utils.randomPrivateKey();default:throw new Error("Invalid signature algorithm")}}function O(r,e){switch(e){case"ed25519":return ne.ed25519.getPublicKey(r);case"secp256k1":return Se.secp256k1.getPublicKey(r,!1);default:throw new Error("Invalid signature algorithm")}}var Ge=require("viem"),ze=require("jsonwebtoken");var w=class{constructor(e,t){this.credentials=e;this.signature=t;this.credentials=e,this.signature=t}},V=class{constructor(e,t){c(this,"browserWallet");c(this,"eoa");this.validateInputs(e,t),this.browserWallet=t,this.eoa=e}validateInputs(e,t){g(!(0,Ge.isAddress)(e),"invalid Ethereum address format"),g(!((t==null?void 0:t.signTypedData)instanceof Function),"invalid browserWallet")}async authenticate({payload:e,challenge:t}){return N(e,[f,M,q,C,m,A,S,R],"eoa"),await Be({setup:e,eoa:this.eoa,challenge:t,browserWallet:this.browserWallet})}},W=class{constructor(e,t,s){c(this,"ephSK");c(this,"ephClaim");Oe(t,s),this.ephSK=t;let n=O(this.ephSK,s);this.ephClaim=new I(e,n,s)}async authenticate({payload:e,challenge:t}){return N(e,[m,C,A],"ephemeral"),await He({setup:e,challenge:t,ephSK:this.ephSK,ephClaim:this.ephClaim})}},K=class{constructor(e,t){c(this,"rpConfig");c(this,"allowCredentialId");this.rpConfig=e,this.allowCredentialId=t}async authenticate({payload:e,challenge:t}){return N(e,[f,q,m,A,M,C,S,R],"passkey"),await Le({allowCredentialId:this.allowCredentialId,challenge:t,rpConfig:this.rpConfig})}},F=class{constructor(e,t){c(this,"rpConfig");c(this,"user");this.rpConfig=e,this.user=t}async authenticate({payload:e,challenge:t}){return N(e,[D],"passkey"),await _e({user:this.user,challenge:t,rpConfig:this.rpConfig})}},B=class{constructor(e){c(this,"jwtIssuer");this.validateInputs(e),this.jwtIssuer=e}validateInputs(e){g(!((e==null?void 0:e.issueToken)instanceof Function),"invalid jwtIssuer")}async authenticate({payload:e,challenge:t}){N(e,[f,m],"jwt");let s=await this.jwtIssuer.issueToken(t),n=(0,ze.decode)(s);g(!n||typeof n=="string","Failed to decode JWT token");let{iss:o,sub:i}=n;return g(!o||!i,"JWT token is missing iss or sub claims"),new w({method:"jwt",id:{iss:o,sub:i}},s)}};var X=require("json-canonicalize");var _=class{constructor(e){c(this,"walletProviderUrl");c(this,"apiVersion","v1");this.walletProviderUrl=`${e.walletProviderUrl}/${e.apiVersion}`,this.apiVersion=e.apiVersion}getVersion(){return this.apiVersion}async startKeygen({setups:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("keygen",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse keygen response: ${n}`)}})}async startKeyRefresh({payload:e,authModule:t}){if(this.apiVersion==="v2")throw new Error("Key refresh is not supported in v2 API");return this.connect.bind(this)("keyRefresh",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse key refresh response: ${n}`)}})}async startSigngen({setup:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("signgen",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse signgen response: ${n}`)}})}async addEphemeralKey({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("addEphemeralKey",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse add ephemeral key response: ${n}`)}})}async revokeEphemeralKey({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("revokeEphemeralKey",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse revoke ephemeral key response: ${n}`)}})}async registerPasskey({payload:e,authModule:t}){if(this.apiVersion==="v2")throw new Error("Passkey registration is not supported in v2 API");return this.connect.bind(this)("registerPasskey",e,t).then(n=>({passkeyCredentialId:n}))}async updatePolicy({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("updatePolicy",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse update policy response: ${n}`)}})}async deletePolicy({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("deletePolicy",e,t).then(n=>{try{return JSON.parse(n)}catch{throw new Error(`Failed to parse delete policy response: ${n}`)}})}connect(e,t,s){return new Promise((n,o)=>{let i=new WebSocket(`${this.walletProviderUrl}/${e}`),a=0;return console.debug("Connecting to ",i.url),i.addEventListener("open",u=>{switch(console.debug(`Connection opened in state ${a} with event ${JSON.stringify(u,void 0," ")}`),a){case 0:{a=1;try{let l=(0,X.canonicalize)({payload:t});console.debug("Sending request:",l),i.send(l)}catch(l){this.finishWithError(i,a,l,"open event",o)}break}case 1:case 2:this.finishWithError(i,a,"Unexpected message in state waitingForResult.","open event",o);break;case 3:break}}),i.addEventListener("message",async u=>{switch(console.debug(`Connection message in state ${a} with event data ${JSON.stringify(u.data,void 0," ")}`),a){case 0:this.finishWithError(i,a,"Unexpected message in state initiated.","message event",o);break;case 1:{a=2;try{let l=u.data,d=await new b(s,this.apiVersion).build(e,t,{challenge:l});i.send((0,X.canonicalize)(d))}catch(l){this.finishWithError(i,a,l,"message event",o)}break}case 2:{a=3,i.close(),n(u.data);break}case 3:break}}),i.addEventListener("error",u=>{this.finishWithError(i,a,`Connection encountered an error event: ${JSON.stringify(u,void 0," ")}`,"error event",o)}),i.addEventListener("close",u=>{let l=u.reason||"No specific reason provided.",d=u.code;console.debug(`Connection closed. State: ${a}, Code: ${d}, Reason: '${l}'`);let p=d>=4e3?`Application Error ${d}: ${l}`:d===1006?"Connection Abnormality (Code 1006): Server closed connection unexpectedly or network issue.":`WebSocket Closed Unexpectedly (Code ${d}): ${l}`;this.finishWithError(i,a,new Error(p),"close event",o)}),()=>{(i.readyState===WebSocket.OPEN||i.readyState===WebSocket.CONNECTING)&&i.close(1001,"Cleanup/Unmount")}})}connectV2(e,t,s){return new Promise((n,o)=>{let i=new WebSocket(`${this.walletProviderUrl}/${e}`),a=0;return console.debug("Connecting to ",i.url),i.addEventListener("open",async u=>{switch(console.debug(`Connection opened in state ${a} with event ${JSON.stringify(u,void 0," ")}`),a){case 0:a=2;try{let l=await new b(s,this.apiVersion).build(e,t);i.send((0,X.canonicalize)({payload:t,userSigs:l}))}catch(l){this.finishWithError(i,a,l,"open event",o)}break;case 2:a=3,this.finishWithError(i,a,"Unexpected message in state waitingForResult.","open event",o);break;case 3:break}}),i.addEventListener("message",async u=>{switch(console.debug(`Connection message in state ${a} with event ${JSON.stringify(u,void 0," ")}`),a){case 0:this.finishWithError(i,a,"Unexpected message in state initiated.","message event",o);break;case 2:{a=3,i.close(),n(u.data);break}case 3:break}}),i.addEventListener("error",u=>{this.finishWithError(i,a,`Connection encountered an error event: ${JSON.stringify(u,void 0," ")}`,"error event",o)}),i.addEventListener("close",u=>{let l=u.reason||"No specific reason provided.",d=u.code;console.debug(`Connection closed. State: ${a}, Code: ${d}, Reason: '${l}'`);let p=d>=4e3?`Application Error ${d}: ${l}`:d===1006?"Connection Abnormality (Code 1006): Server closed connection unexpectedly or network issue.":`WebSocket Closed Unexpectedly (Code ${d}): ${l}`;this.finishWithError(i,a,new Error(p),"close event",o)}),()=>{(i.readyState===WebSocket.OPEN||i.readyState===WebSocket.CONNECTING)&&i.close(1001,"Cleanup/Unmount")}})}finishWithError(e,t,s,n,o){t!==3&&(console.error(`Error from ${n} in state ${t}:`,s),t=3,o(s instanceof Error?s:new Error(String(s)))),e.readyState===WebSocket.OPEN&&e.close(1e3,`Protocol run failed. Client attempted to close connection in state ${t}`)}},E=class{constructor(e){c(this,"walletProviderUrl");c(this,"apiVersion","v1");this.walletProviderUrl=`${e.walletProviderUrl}/${e.apiVersion}`,this.apiVersion=e.apiVersion}getVersion(){return this.apiVersion}async startKeygen({setups:e}){return this.connect.bind(this)("keygen",e).then(s=>{try{return JSON.parse(s)}catch{throw new Error(`Failed to parse keygen response: ${s}`)}})}async startSigngen({setup:e}){return this.connect.bind(this)("signgen",e).then(s=>{try{return JSON.parse(s)}catch{throw new Error(`Failed to parse signgen response: ${s}`)}})}async startKeyRefresh({payload:e}){if(this.apiVersion==="v2")throw new Error("Key refresh is not supported in v2 API");return this.connect.bind(this)("keyRefresh",e).then(s=>{try{return JSON.parse(s)}catch{throw new Error(`Failed to parse key refresh response: ${s}`)}})}async updatePolicy({payload:e}){return this.connect.bind(this)("updatePolicy",e).then(s=>{try{return JSON.parse(s)}catch{throw new Error(`Failed to parse update policy response: ${s}`)}})}async deletePolicy({payload:e}){return this.connect.bind(this)("deletePolicy",e).then(s=>{try{return JSON.parse(s)}catch{throw new Error(`Failed to parse delete policy response: ${s}`)}})}connect(e,t){return new Promise((s,n)=>{let o=0,i=new WebSocket(`${this.walletProviderUrl}/${e}`);i.addEventListener("open",async a=>{switch(console.debug(`Connection opened in state ${o} with event ${JSON.stringify(a,void 0," ")}`),o){case 0:o=2;try{i.send((0,X.canonicalize)({payload:t}))}catch(u){n(u)}break;case 2:o=3,n("Incorrect protocol state");break;case 3:break}}),i.addEventListener("message",async a=>{switch(console.debug(`Connection message in state ${o} with event ${JSON.stringify(a,void 0," ")}`),o){case 0:o=3,n("Incorrect protocol state");break;case 2:{o=3,i.close(),s(a.data);break}case 3:break}}),i.addEventListener("error",a=>{console.debug(`Connection error in state ${o} with event ${JSON.stringify(a,void 0," ")}`),o!=3&&(o=3,n("Incorrect protocol state"))}),i.addEventListener("close",a=>{console.debug(`Connection closed in state ${o} with event ${JSON.stringify(a,void 0," ")}`),o!=3&&(o=3,n("Incorrect protocol state"))})})}};var L=class{constructor(e,t){c(this,"authModule");c(this,"wpClient");if(!t&&!(e instanceof E))throw new Error("missing authModule for wallet provider client in auth mode");if(t&&e instanceof E)throw new Error("authModule is required but using wallet provider client in no-auth mode");this.authModule=t,this.wpClient=e}validateQuorumSetup({threshold:e,totalNodes:t}){e&&g(e<2,`Threshold = ${e} must be at least 2`),e&&t&&g(t<e,`Total nodes = ${t} must be greater or equal to threshold = ${e}`)}async generateKey(e,t,s,n,o){this.validateQuorumSetup({threshold:e,totalNodes:t});let i=s.map(a=>new f({t:e,n:t,ephClaim:n,policy:o,signAlg:a}));return this.authModule?await this.wpClient.startKeygen({setups:i,authModule:this.authModule}):await this.wpClient.startKeygen({setups:i})}async signMessage(e,t,s,n){this.validateQuorumSetup({threshold:e}),Te(s);let o=new m({t:e,key_id:t,signAlg:s,message:n});if(this.authModule){if(this.authModule instanceof K&&new Map(Object.entries(JSON.parse(n))).size>1)throw new Error("For Passkey Authentication only one message in signing request is supported");return await this.wpClient.startSigngen({setup:o,authModule:this.authModule})}else return await this.wpClient.startSigngen({setup:o})}async refreshKey(e,t,s){let n=new M({t:e,keyId:t,signAlg:s});return this.authModule?await this.wpClient.startKeyRefresh({payload:n,authModule:this.authModule}):await this.wpClient.startKeyRefresh({payload:n})}async addEphemeralKey(e,t){let s=new q(e,t);if(!this.authModule)throw new Error("Add ephemeral key is not supported in no auth mode");return await this.wpClient.addEphemeralKey({payload:s,authModule:this.authModule})}async revokeEphemeralKey(e,t){h("keyId",e);let s=new C(e,t);if(!this.authModule)throw new Error("Revoke ephemeral key is not supported in no auth mode");return await this.wpClient.revokeEphemeralKey({payload:s,authModule:this.authModule})}async registerPasskey(e){let t=new D(e!=null?e:"passkey options");if(!this.authModule)throw new Error("Register passkey is not supported in no auth mode");return await this.wpClient.registerPasskey({payload:t,authModule:this.authModule})}async updatePolicy(e,t){let s=new S({keyId:e,policy:t});return this.authModule?await this.wpClient.updatePolicy({payload:s,authModule:this.authModule}):await this.wpClient.updatePolicy({payload:s})}async deletePolicy(e){let t=new R({keyId:e});return this.authModule?await this.wpClient.deletePolicy({payload:t,authModule:this.authModule}):await this.wpClient.deletePolicy({payload:t})}};var je=require("json-canonicalize");var Ae=class extends Error{constructor(t,s,n){super(n||s);this.status=t;this.statusText=s;this.name="HttpError"}},J=class{constructor(e="",t={}){c(this,"baseURL");c(this,"defaultHeaders");this.baseURL=e,this.validateHeaders(t),this.defaultHeaders={"Content-Type":"application/json",...t}}validateHeaders(e){if(typeof e!="object"||e===null)throw new Error("Headers must be an object.");for(let[t,s]of Object.entries(e))if(typeof t!="string"||typeof s!="string")throw new Error(`Invalid header: ${t}. Header names and values must be strings.`)}setDefaultHeaders(e){this.defaultHeaders={...this.defaultHeaders,...e}}buildUrl(e){return`${this.baseURL}${e}`}async handleResponse(e){if(!e.ok){let s;try{s=(await e.json()).message||e.statusText}catch{s=e.statusText}throw new Ae(e.status,e.statusText,s)}let t=e.headers.get("content-type");return t&&t.includes("application/json")?e.json():e.text()}async request(e,t,s,n={}){let o=this.buildUrl(t),i={...this.defaultHeaders,...n.headers},a={method:e,headers:i,...n,body:s?(0,je.canonicalize)(s):null},u=await fetch(o,a);return this.handleResponse(u)}async get(e,t){return this.request("GET",e,void 0,t)}async post(e,t,s){return this.request("POST",e,t,s)}async put(e,t,s){return this.request("PUT",e,t,s)}async patch(e,t,s){return this.request("PATCH",e,t,s)}async delete(e,t){return this.request("DELETE",e,void 0,t)}};var ie=require("viem/accounts"),Qe=require("@noble/curves/secp256k1"),H=require("viem"),gt=require("js-base64");function oe(r){if(r.startsWith("0x")&&(r=r.slice(2)),r.startsWith("04"))return(0,ie.publicKeyToAddress)(`0x${r} `);if(r.startsWith("02")||r.startsWith("03")){let e=Qe.secp256k1.ProjectivePoint.fromHex(r).toHex(!1);return(0,ie.publicKeyToAddress)(`0x${e}`)}else throw new Error("Invalid public key")}var Ke={};qe(Ke,{Action:()=>be,ChainType:()=>ve,IssuerType:()=>xe,Logic:()=>Ee,Operator:()=>Ie,Policy:()=>ue,Rule:()=>ce,TransactionAttribute:()=>Ce,TransactionType:()=>ke});var Xe=require("json-canonicalize");var ae=512,xe=(s=>(s.SessionKeyId="SessionKeyId",s.UserId="UserId",s.All="*",s))(xe||{}),be=(t=>(t.Allow="allow",t.Deny="deny",t))(be||{}),Ee=(t=>(t.Or="or",t.And="and",t))(Ee||{}),ve=(s=>(s.Off="off",s.Ethereum="ethereum",s.Solana="solana",s))(ve||{}),ke=(i=>(i.Eip712="eip712",i.Eip191="eip191",i.Erc20="erc20",i.Erc721="erc721",i.NativeTransfer="nativeTransfer",i.SolanaTransaction="solanaTransaction",i))(ke||{}),Ce=(y=>(y.Sender="sender",y.Receiver="receiver",y.NativeValue="nativeValue",y.ChainId="chainId",y.FunctionSelector="functionSelector",y.Message="message",y.VerifyingContract="verifyingContract",y.PrimaryType="primaryType",y.DomainName="domainName",y.DomainVersion="domainVersion",y.SolanaAccountKeys="solanaAccountKeys",y.SplTransferAmount="splTransferAmount",y.SplTokenMint="splTokenMint",y.CustomProgramInstruction="customProgramInstruction",y.SystemInstructionName="systemInstructionName",y.SplInstructionName="splInstructionName",y))(Ce||{}),Ie=(u=>(u.Eq="eq",u.Neq="neq",u.Lt="lt",u.Lte="lte",u.Gt="gt",u.Gte="gte",u.In="in",u.All="all",u))(Ie||{}),ce=class{constructor({description:e,chain_type:t,conditions:s,issuer:n,action:o,logic:i}){c(this,"description");c(this,"issuer");c(this,"action");c(this,"logic");c(this,"chain_type");c(this,"conditions");if(!s.length)throw new Error("Rule must have at least one condition");if(!t)throw new Error("Chain type must be set");if(e.length>ae)throw new Error(`Description length exceeds maximum of ${ae}`);this.description=e,this.chain_type=t,this.conditions=s,this.issuer=n||[{type:"*",id:"*"}],this.action=o||"allow",this.logic=i||"and"}},ue=class{constructor({version:e,description:t,rules:s}){c(this,"version");c(this,"description");c(this,"rules");if(t.length>ae)throw new Error(`Description length exceeds maximum of ${ae}`);this.version=e!=null?e:"1.0",this.description=t,this.rules=s}toJSON(){try{return(0,Xe.canonicalize)({version:this.version,description:this.description,rules:this.rules})}catch(e){throw console.error("Error while serializing policy",e),new Error("Error while serializing policy")}}};var yt={KeygenSetupOpts:f,InitPresignOpts:$,FinishPresignOpts:A,SignSetupOpts:m,UserSignatures:b,NetworkSigner:L,SignRequestBuilder:U,WalletProviderServiceClient:_,NoAuthWalletProviderServiceClient:E,HttpClient:J,EOAAuth:V,EphAuth:W,PasskeyAuth:K,PasskeyRegister:F,generateEphPrivateKey:Q,getEphPublicKey:O,EphKeyClaim:I,computeAddress:oe,flattenSignature:re,UpdatePolicyRequest:S,DeletePolicyRequest:R,...Ke,JWTAuth:B};0&&(module.exports={Action,ChainType,DeletePolicyRequest,EOAAuth,EphAuth,EphKeyClaim,FinishPresignOpts,HttpClient,InitPresignOpts,IssuerType,JWTAuth,KeygenSetupOpts,Logic,NetworkSigner,NoAuthWalletProviderServiceClient,Operator,PasskeyAuth,PasskeyRegister,Policy,Rule,SignRequestBuilder,SignSetupOpts,TransactionAttribute,TransactionType,UpdatePolicyRequest,UserAuthentication,UserSignatures,WalletProviderServiceClient,computeAddress,flattenSignature,generateEphPrivateKey,getEphPublicKey});
2
2
  /*! Bundled license information:
3
3
 
4
4
  @noble/hashes/esm/utils.js:
package/dist/index.d.ts CHANGED
@@ -3,7 +3,8 @@ export type { UserSignaturesOptionalParams } from './builder/userAuth';
3
3
  export type { ApiVersion, ClientConfig, IWalletProviderServiceClient, INoAuthWpServiceClient, } from './client/walletProviderServiceClientInterface';
4
4
  export type { IBrowserWallet, TypedData } from './auth/EOAauthentication';
5
5
  export type { PasskeyUser, RelyingPartyConfig } from './auth/passkeyAuthentication';
6
- export type { UserAuthentication } from './auth/authentication';
6
+ export type { IJWTIssuer } from './auth/JWTAuthentication';
7
+ export type { AuthModule, AuthModuleParams } from './auth/authentication';
7
8
  export type { KeygenResponse, KeyRefreshResponse, SignResponse, AddEphKeyResponse, RevokeEphKeyResponse, RegisterPasskeyResponse, UpdatePolicyResponse, DeletePolicyResponse, } from './client/networkResponse';
8
9
  export type { MPCSignAlgorithm } from './client/networkSigner';
9
10
  export type { EphKeySignAlgorithm } from './auth/ephemeralAuthentication';
@@ -14,7 +15,7 @@ export { flattenSignature } from './client/ethUtil';
14
15
  export { NetworkSigner } from './client/networkSigner';
15
16
  export { WalletProviderServiceClient, NoAuthWalletProviderServiceClient } from './client/walletProviderServiceClient';
16
17
  export { HttpClient } from './client/httpClient';
17
- export { EOAAuth, EphAuth, PasskeyAuth, PasskeyRegister } from './auth/authentication';
18
+ export { EOAAuth, EphAuth, PasskeyAuth, PasskeyRegister, UserAuthentication, JWTAuth, type JWTIdentifier, } from './auth/authentication';
18
19
  export { generateEphPrivateKey, getEphPublicKey, EphKeyClaim } from './auth/ephemeralAuthentication';
19
20
  export { computeAddress } from './viemSigner';
20
21
  export { KeygenSetupOpts, InitPresignOpts, FinishPresignOpts, SignSetupOpts } from './setupMessage';
@@ -25,13 +26,14 @@ import { UserSignatures } from './builder/userAuth';
25
26
  import { NetworkSigner } from './client/networkSigner';
26
27
  import { WalletProviderServiceClient, NoAuthWalletProviderServiceClient } from './client/walletProviderServiceClient';
27
28
  import { HttpClient } from './client/httpClient';
28
- import { EOAAuth, EphAuth, PasskeyAuth, PasskeyRegister } from './auth/authentication';
29
+ import { EOAAuth, EphAuth, PasskeyAuth, PasskeyRegister, JWTAuth } from './auth/authentication';
29
30
  import { generateEphPrivateKey, getEphPublicKey, EphKeyClaim } from './auth/ephemeralAuthentication';
30
31
  import { computeAddress } from './viemSigner';
31
32
  import { KeygenSetupOpts, InitPresignOpts, FinishPresignOpts, SignSetupOpts } from './setupMessage';
32
33
  import { UpdatePolicyRequest, DeletePolicyRequest } from './client/networkRequest';
33
34
  import * as policy from './policy';
34
35
  declare const _default: {
36
+ JWTAuth: typeof JWTAuth;
35
37
  IssuerType: typeof policy.IssuerType;
36
38
  Action: typeof policy.Action;
37
39
  Logic: typeof policy.Logic;
package/dist/index.esm.js CHANGED
@@ -1,4 +1,4 @@
1
- var Pe=Object.defineProperty,Le=Object.defineProperties;var Je=Object.getOwnPropertyDescriptors;var we=Object.getOwnPropertySymbols;var He=Object.prototype.hasOwnProperty,Ge=Object.prototype.propertyIsEnumerable;var re=(r,e,t)=>e in r?Pe(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,m=(r,e)=>{for(var t in e||(e={}))He.call(e,t)&&re(r,t,e[t]);if(we)for(var t of we(e))Ge.call(e,t)&&re(r,t,e[t]);return r},V=(r,e)=>Le(r,Je(e));var ze=(r,e)=>{for(var t in e)Pe(r,t,{get:e[t],enumerable:!0})};var c=(r,e,t)=>re(r,typeof e!="symbol"?e+"":e,t);import{canonicalize as Qe}from"json-canonicalize";var h=(r,e)=>{g(typeof e!="string","".concat(r," must be string")),g((e==null?void 0:e.trim().length)===0,"".concat(r," cannot be empty"))},Se=(r,e)=>{if(g(!(r instanceof Uint8Array),"key must be an Uint8Array"),e==="secp256k1")g(r.length!==65,"secp256k1: key length must be 65 bytes, got "+r.length);else if(e==="ed25519")g(r.length!==32,"ed25519: key length must be 32 bytes, got "+r.length);else throw new Error("Invalid signature algorithm")},Re=(r,e)=>{if(g(!(r instanceof Uint8Array),"key must be an Uint8Array"),e==="secp256k1")g(r.length!==32,"secp256k1: key length must be 32 bytes, got "+r.length);else if(e==="ed25519")g(r.length!==32,"ed25519: key length must be 32 bytes, got "+r.length);else throw new Error("Invalid signature algorithm")},Ae=r=>{g(r!=="ed25519"&&r!=="secp256k1",'signAlg must be either "ed25519" or "secp256k"')},g=(r,e)=>{if(r)throw new Error(e)},je=(r,e)=>"Invalid payload ".concat(JSON.stringify(r),", cannot be authenticated by ").concat(e.toLocaleUpperCase()," method."),W=(r,e,t)=>{g(!e.some(s=>r instanceof s),je(r,t))};var N=class{constructor(){c(this,"signRequest",new Map)}setRequest(e,t,s){if(h("transactionId",e),h("message",t),h("requestType",s),this.signRequest.has(e))throw new Error("Transaction ID ".concat(e," is already set."));return this.signRequest.set(e,{signingMessage:t,requestType:s}),this}build(){let e={};if(this.signRequest.forEach((t,s)=>{e[s]=t}),Object.keys(e).length===0)throw new Error("No sign request is set.");return Qe(e)}};import{canonicalize as ke}from"json-canonicalize";import{Base64 as tt}from"js-base64";function Xe(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function ne(r,...e){if(!Xe(r))throw new Error("Uint8Array expected");if(e.length>0&&!e.includes(r.length))throw new Error("Uint8Array expected of length "+e+", got length="+r.length)}function ie(r,e=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(e&&r.finished)throw new Error("Hash#digest() has already been called")}function xe(r,e){ne(r);let t=e.outputLen;if(r.length<t)throw new Error("digestInto() expects output buffer of length at least "+t)}var j=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),f=(r,e)=>r<<32-e|r>>>e;function Ye(r){if(typeof r!="string")throw new Error("utf8ToBytes expected string, got "+typeof r);return new Uint8Array(new TextEncoder().encode(r))}function oe(r){return typeof r=="string"&&(r=Ye(r)),ne(r),r}var z=class{clone(){return this._cloneInto()}};function be(r){let e=s=>r().update(oe(s)).digest(),t=r();return e.outputLen=t.outputLen,e.blockLen=t.blockLen,e.create=()=>r(),e}function Ze(r,e,t,s){if(typeof r.setBigUint64=="function")return r.setBigUint64(e,t,s);let n=BigInt(32),i=BigInt(4294967295),o=Number(t>>n&i),a=Number(t&i),l=s?4:0,u=s?0:4;r.setUint32(e+l,o,s),r.setUint32(e+u,a,s)}var Ee=(r,e,t)=>r&e^~r&t,ve=(r,e,t)=>r&e^r&t^e&t,Q=class extends z{constructor(e,t,s,n){super(),this.blockLen=e,this.outputLen=t,this.padOffset=s,this.isLE=n,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(e),this.view=j(this.buffer)}update(e){ie(this);let{view:t,buffer:s,blockLen:n}=this;e=oe(e);let i=e.length;for(let o=0;o<i;){let a=Math.min(n-this.pos,i-o);if(a===n){let l=j(e);for(;n<=i-o;o+=n)this.process(l,o);continue}s.set(e.subarray(o,o+a),this.pos),this.pos+=a,o+=a,this.pos===n&&(this.process(t,0),this.pos=0)}return this.length+=e.length,this.roundClean(),this}digestInto(e){ie(this),xe(e,this),this.finished=!0;let{buffer:t,view:s,blockLen:n,isLE:i}=this,{pos:o}=this;t[o++]=128,this.buffer.subarray(o).fill(0),this.padOffset>n-o&&(this.process(s,0),o=0);for(let p=o;p<n;p++)t[p]=0;Ze(s,n-8,BigInt(this.length*8),i),this.process(s,0);let a=j(e),l=this.outputLen;if(l%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let u=l/4,d=this.get();if(u>d.length)throw new Error("_sha2: outputLen bigger than state");for(let p=0;p<u;p++)a.setUint32(4*p,d[p],i)}digest(){let{buffer:e,outputLen:t}=this;this.digestInto(e);let s=e.slice(0,t);return this.destroy(),s}_cloneInto(e){e||(e=new this.constructor),e.set(...this.get());let{blockLen:t,buffer:s,length:n,finished:i,destroyed:o,pos:a}=this;return e.length=n,e.pos=a,e.finished=i,e.destroyed=o,n%t&&e.buffer.set(s),e}};var et=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),E=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),v=new Uint32Array(64),ae=class extends Q{constructor(){super(64,32,8,!1),this.A=E[0]|0,this.B=E[1]|0,this.C=E[2]|0,this.D=E[3]|0,this.E=E[4]|0,this.F=E[5]|0,this.G=E[6]|0,this.H=E[7]|0}get(){let{A:e,B:t,C:s,D:n,E:i,F:o,G:a,H:l}=this;return[e,t,s,n,i,o,a,l]}set(e,t,s,n,i,o,a,l){this.A=e|0,this.B=t|0,this.C=s|0,this.D=n|0,this.E=i|0,this.F=o|0,this.G=a|0,this.H=l|0}process(e,t){for(let p=0;p<16;p++,t+=4)v[p]=e.getUint32(t,!1);for(let p=16;p<64;p++){let $=v[p-15],O=v[p-2],fe=f($,7)^f($,18)^$>>>3,se=f(O,17)^f(O,19)^O>>>10;v[p]=se+v[p-7]+fe+v[p-16]|0}let{A:s,B:n,C:i,D:o,E:a,F:l,G:u,H:d}=this;for(let p=0;p<64;p++){let $=f(a,6)^f(a,11)^f(a,25),O=d+$+Ee(a,l,u)+et[p]+v[p]|0,se=(f(s,2)^f(s,13)^f(s,22))+ve(s,n,i)|0;d=u,u=l,l=a,a=o+O|0,o=i,i=n,n=s,s=O+se|0}s=s+this.A|0,n=n+this.B|0,i=i+this.C|0,o=o+this.D|0,a=a+this.E|0,l=l+this.F|0,u=u+this.G|0,d=d+this.H|0,this.set(s,n,i,o,a,l,u,d)}roundClean(){v.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var ce=be(()=>new ae);import{stringToBytes as st,toHex as rt}from"viem";var A=r=>tt.fromUint8Array(new Uint8Array(r),!0),le=r=>{let e=st(r),t=ce(ce(e));return rt(t,{size:32}).slice(2)};var k=class{constructor(e,t){c(this,"userAuthentications");c(this,"authModule");c(this,"apiVersion");this.authModule=e,this.userAuthentications=new Map,this.apiVersion=t}async setDefaultAuth(e){let t=await this.authModule.authenticate({payload:e.payload,challenge:e.challenge});this.userAuthentications.set("default",t)}async setKeygenUserSigs(e,t){if(this.apiVersion==="v1"&&!t)throw new Error("no challenge response for keygen");for(let s of e){let n=s.signAlg,i=t?t[n]:le(ke(s));if(i){let o=await this.authModule.authenticate({payload:s,challenge:i});this.userAuthentications.set(n,o)}else throw new Error("no final challenge found in response for ".concat(n))}}async setSigngenUserSigs(e){await this.setDefaultAuth(e)}async setAddEphKeyUserSigs(e){await this.setDefaultAuth(e)}async setRevokeEphKeyUserSigs(e){await this.setDefaultAuth(e)}async setRegisterPasskeyUserSigs(e){await this.setDefaultAuth(e)}async setKeyRefreshUserSigs(e){await this.setDefaultAuth(e)}async setFinishPresignUserSigs(e){await this.setDefaultAuth(e)}async setUpdatePolicyUserSigs(e){await this.setDefaultAuth(e)}async setDeletePolicyUserSigs(e){await this.setDefaultAuth(e)}async build(e,t,s){if(this.apiVersion!=="v1"&&(e==="registerPasskey"||e==="keyRefresh"))throw new Error("".concat(e," is only supported in V1"));let{challenge:n}=s!=null?s:{};if(e==="keygen"){let i=n?JSON.parse(n):void 0;await this.setKeygenUserSigs(t,i)}else{if(this.apiVersion==="v1"&&!n)throw new Error("missing challenge response for ".concat(e," V1"));let i=n!=null?n:le(ke(t));e==="signgen"?await this.setSigngenUserSigs({payload:t,challenge:i}):e==="addEphemeralKey"?await this.setAddEphKeyUserSigs({payload:t,challenge:i}):e==="revokeEphemeralKey"?await this.setRevokeEphKeyUserSigs({payload:t,challenge:i}):e==="registerPasskey"?await this.setRegisterPasskeyUserSigs({payload:t,challenge:i}):e==="keyRefresh"?await this.setKeyRefreshUserSigs({payload:t,challenge:i}):e==="finishPresign"?await this.setFinishPresignUserSigs({payload:t,challenge:i}):e==="updatePolicy"?await this.setUpdatePolicyUserSigs({payload:t,challenge:i}):e==="deletePolicy"&&await this.setDeletePolicyUserSigs({payload:t,challenge:i})}return Object.fromEntries(this.userAuthentications)}};var ue=r=>{let{sign:e,recid:t}=r,s=(27+t).toString(16);return"0x".concat(e).concat(s)};var C=class{constructor(e,t){c(this,"key_id");c(this,"eph_claim");h("keyId",e),this.key_id=e,this.eph_claim=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"RevokeEphKeyRequest"},{name:"challenge",type:"string"}],RevokeEphKeyRequest:[{name:"key_id",type:"string"},{name:"eph_claim",type:"string"}]}}},q=class{constructor(e,t){c(this,"key_id_list");c(this,"eph_claim");for(let s of e)h("keyId",s);this.key_id_list=e,this.eph_claim=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"AddEphKeyRequest"},{name:"challenge",type:"string"}],AddEphKeyRequest:[{name:"key_id_list",type:"string[]"},{name:"eph_claim",type:"string"}]}}},D=class{constructor(e){c(this,"options");h("options",e),this.options=e}},U=class{constructor({t:e,keyId:t,signAlg:s}){c(this,"t");c(this,"key_id");c(this,"sign_alg");h("keyId",t),h("signAlg",s),this.t=e,this.key_id=t,this.sign_alg=s}get eoaRequestSchema(){return{Request:[{name:"setup",type:"KeyRefreshRequest"},{name:"challenge",type:"string"}],KeyRefreshRequest:[{name:"t",type:"uint32"},{name:"key_id",type:"string"},{name:"sign_alg",type:"string"}]}}},P=class{constructor({keyId:e,policy:t}){c(this,"key_id");c(this,"policy");h("keyId",e),this.key_id=e,this.policy=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"UpdatePolicyRequest"},{name:"challenge",type:"string"}],UpdatePolicyRequest:[{name:"key_id",type:"string"},{name:"policy",type:"string"}]}}},S=class{constructor({keyId:e}){c(this,"key_id");h("keyId",e),this.key_id=e}get eoaRequestSchema(){return{Request:[{name:"setup",type:"DeletePolicyRequest"},{name:"challenge",type:"string"}],DeletePolicyRequest:[{name:"key_id",type:"string"}]}}};var nt=[{name:"tag",type:"uint16"},{name:"value",type:"string"}],R=class{constructor({t:e,n:t,ephClaim:s,policy:n,signAlg:i}){c(this,"t");c(this,"n");c(this,"ephClaim");c(this,"metadata");c(this,"signAlg");c(this,"policy");h("signAlg",i),this.t=e,this.n=t,this.signAlg=i,this.ephClaim=s==null?void 0:s.toJSON(),this.metadata=[],this.policy=n==null?void 0:n.toJSON()}get eoaRequestSchema(){let e=[{name:"t",type:"uint32"},{name:"n",type:"uint32"},{name:"metadata",type:"TaggedValue[]"}];return this.ephClaim&&e.push({name:"ephClaim",type:"string"}),this.policy&&e.push({name:"policy",type:"string"}),{Request:[{name:"setup",type:"KeygenSetupOpts"},{name:"challenge",type:"string"}],KeygenSetupOpts:e,TaggedValue:nt}}},w=class{constructor({t:e,key_id:t,signAlg:s,message:n}){c(this,"t");c(this,"key_id");c(this,"message");c(this,"signAlg");h("keyId",t),h("signAlg",s),h("message",n),this.t=e,this.key_id=t,this.message=n,this.signAlg=s}get eoaRequestSchema(){return{Request:[{name:"setup",type:"SignSetupOpts"},{name:"challenge",type:"string"}],SignSetupOpts:[{name:"t",type:"uint32"},{name:"key_id",type:"string"},{name:"signAlg",type:"string"},{name:"message",type:"string"}]}}},B=class{constructor({amount:e,keyId:t,t:s,expiryInSecs:n}){c(this,"amount");c(this,"key_id");c(this,"t");c(this,"expiry");if(e<=0)throw new Error("Amount must be greater than 0");h("keyId",t),this.amount=e,this.key_id=t,this.t=s,this.expiry=n!=null?n:Math.floor(Date.now()/1e3)+7*24*3600}},x=class{constructor({presignSessionId:e,message:t}){c(this,"presignSessionId");c(this,"message");h("presignSessionId",e),h("message",t),this.presignSessionId=e,this.message=t}get eoaRequestSchema(){return{Request:[{name:"setup",type:"FinishPresignOpts"},{name:"challenge",type:"string"}],FinishPresignOpts:[{name:"presignSessionId",type:"string"},{name:"message",type:"string"}]}}};var it={name:"SilentShard authentication",version:"0.1.0"},ot=[{name:"name",type:"string"},{name:"version",type:"string"}];function at(r,e){let t={setup:r,challenge:e};return{types:m({EIP712Domain:ot},r.eoaRequestSchema),domain:it,primaryType:"Request",message:t}}async function Ce({setup:r,eoa:e,challenge:t,browserWallet:s}){let n=at(r,t),i=await s.signTypedData(e,n);return new b({method:"eoa",id:e},i)}import{Base64 as Ke}from"js-base64";import{hexToBytes as qe}from"viem";import{canonicalize as X}from"json-canonicalize";async function Ue({user:r,challenge:e,rpConfig:t}){let s=qe("0x".concat(e),{size:32}),n={publicKey:{authenticatorSelection:{residentKey:"preferred",userVerification:"required"},challenge:s,excludeCredentials:[],pubKeyCredParams:[{type:"public-key",alg:-7},{type:"public-key",alg:-257}],rp:{name:t.rpName,id:t.rpId},user:V(m({},r),{id:Ke.toUint8Array(r.id)})}},i=await navigator.credentials.create(n);if(i===null)throw new Error("No credential returned");let o=A(i.response.attestationObject),l={rawCredential:X({authenticatorAttachment:i.authenticatorAttachment,id:i.id,rawId:A(i.rawId),response:{attestationObject:o,clientDataJSON:A(i.response.clientDataJSON)},type:i.type}),origin:t.rpName,rpId:t.rpId};return new b({method:"passkey",id:i.id},X(l))}async function Ie({challenge:r,allowCredentialId:e,rpConfig:t}){let s=qe("0x".concat(r),{size:32}),n=e?[{type:"public-key",id:Ke.toUint8Array(e)}]:[],i={publicKey:{userVerification:"required",challenge:s,allowCredentials:n}},o=await navigator.credentials.get(i);if(o===null)throw new Error("Failed to get navigator credentials");let a=o.response,l=a.userHandle;if(l===null)throw new Error("User handle cannot be null");let u=A(a.signature),p={rawCredential:X({authenticatorAttachment:o.authenticatorAttachment,id:o.id,rawId:A(o.rawId),response:{authenticatorData:A(a.authenticatorData),clientDataJSON:A(a.clientDataJSON),signature:u,userHandle:A(l)},type:o.type}),origin:t.rpName,rpId:t.rpId};return new b({method:"passkey",id:o.id},X(p))}import{toHex as Y}from"viem";import{ed25519 as pe}from"@noble/curves/ed25519";import{secp256k1 as Me}from"@noble/curves/secp256k1";import{signMessage as ct}from"viem/accounts";import{canonicalize as Oe}from"json-canonicalize";var I=class r{constructor(e,t,s,n=Math.floor(Date.now()/1e3)+3600){c(this,"ephId");c(this,"ephPK");c(this,"signAlg");c(this,"expiry");this.validateInputs(e,t,s,n),this.ephId=e,this.ephPK=Y(t),this.signAlg=s,this.expiry=n}validateInputs(e,t,s,n){h("ephId",e),Se(t,s),g(Number.isInteger(n)===!1,"expiry must be an integer");let i=Math.floor(Date.now()/1e3),o=n-i,a=o>0&&o<=365*24*60*60;g(!a,"lifetime must be greater than 0 and less than or equal to 365 days expiry - now ".concat(o,", expiry ").concat(n," now secs ").concat(i))}toJSON(){try{return Oe({ephId:this.ephId,ephPK:this.ephPK,expiry:this.expiry,signAlg:this.signAlg})}catch(e){throw console.error("Error while serializing ephemeral key claim",e),new Error("Error while serializing ephemeral key claim")}}static generateKeys(e,t){let s=Z(e),n=T(s,e),i=new r(Y(n),n,e,t);return{privKey:s,pubKey:n,ephClaim:i}}};async function Ne({setup:r,challenge:e,ephSK:t,ephClaim:s}){let n={setup:r,challenge:e},i=new TextEncoder().encode(Oe(n)),o=await lt(i,t,s.signAlg);return new b({method:"ephemeral",id:s.ephId},o)}async function lt(r,e,t){switch(t){case"ed25519":return Y(pe.sign(r,e));case"secp256k1":return await ct({message:{raw:r},privateKey:Y(e)});default:throw new Error("Invalid signature algorithm")}}function Z(r){switch(r){case"ed25519":return pe.utils.randomPrivateKey();case"secp256k1":return Me.utils.randomPrivateKey();default:throw new Error("Invalid signature algorithm")}}function T(r,e){switch(e){case"ed25519":return pe.getPublicKey(r);case"secp256k1":return Me.getPublicKey(r,!1);default:throw new Error("Invalid signature algorithm")}}import{isAddress as ut}from"viem";var b=class{constructor(e,t){this.credentials=e;this.signature=t;this.credentials=e,this.signature=t}},F=class{constructor(e,t){c(this,"browserWallet");c(this,"eoa");this.validateInputs(e,t),this.browserWallet=t,this.eoa=e}validateInputs(e,t){g(!ut(e),"invalid Ethereum address format"),g(!((t==null?void 0:t.signTypedData)instanceof Function),"invalid browserWallet")}async authenticate({payload:e,challenge:t}){return W(e,[R,U,q,C,w,x,P,S],"eoa"),await Ce({setup:e,eoa:this.eoa,challenge:t,browserWallet:this.browserWallet})}},_=class{constructor(e,t,s){c(this,"ephSK");c(this,"ephClaim");Re(t,s),this.ephSK=t;let n=T(this.ephSK,s);this.ephClaim=new I(e,n,s)}async authenticate({payload:e,challenge:t}){return W(e,[w,C,x],"ephemeral"),await Ne({setup:e,challenge:t,ephSK:this.ephSK,ephClaim:this.ephClaim})}},M=class{constructor(e,t){c(this,"rpConfig");c(this,"allowCredentialId");this.rpConfig=e,this.allowCredentialId=t}async authenticate({payload:e,challenge:t}){return W(e,[R,q,w,x,U,C,P,S],"passkey"),await Ie({allowCredentialId:this.allowCredentialId,challenge:t,rpConfig:this.rpConfig})}},L=class{constructor(e,t){c(this,"rpConfig");c(this,"user");this.rpConfig=e,this.user=t}async authenticate({payload:e,challenge:t}){return W(e,[D],"passkey"),await Ue({user:this.user,challenge:t,rpConfig:this.rpConfig})}};import{canonicalize as ee}from"json-canonicalize";var J=class{constructor(e){c(this,"walletProviderUrl");c(this,"apiVersion","v1");this.walletProviderUrl="".concat(e.walletProviderUrl,"/").concat(e.apiVersion),this.apiVersion=e.apiVersion}getVersion(){return this.apiVersion}async startKeygen({setups:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("keygen",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse keygen response: ".concat(n))}})}async startKeyRefresh({payload:e,authModule:t}){if(this.apiVersion==="v2")throw new Error("Key refresh is not supported in v2 API");return this.connect.bind(this)("keyRefresh",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse key refresh response: ".concat(n))}})}async startSigngen({setup:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("signgen",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse signgen response: ".concat(n))}})}async addEphemeralKey({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("addEphemeralKey",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse add ephemeral key response: ".concat(n))}})}async revokeEphemeralKey({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("revokeEphemeralKey",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse revoke ephemeral key response: ".concat(n))}})}async registerPasskey({payload:e,authModule:t}){if(this.apiVersion==="v2")throw new Error("Passkey registration is not supported in v2 API");return this.connect.bind(this)("registerPasskey",e,t).then(n=>({passkeyCredentialId:n}))}async updatePolicy({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("updatePolicy",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse update policy response: ".concat(n))}})}async deletePolicy({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("deletePolicy",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse delete policy response: ".concat(n))}})}connect(e,t,s){return new Promise((n,i)=>{let o=new WebSocket("".concat(this.walletProviderUrl,"/").concat(e)),a=0;return console.debug("Connecting to ",o.url),o.addEventListener("open",l=>{switch(console.debug("Connection opened in state ".concat(a," with event ").concat(JSON.stringify(l,void 0," "))),a){case 0:{a=1;try{let u=ee({payload:t});console.debug("Sending request:",u),o.send(u)}catch(u){this.finishWithError(o,a,u,"open event",i)}break}case 1:case 2:this.finishWithError(o,a,"Unexpected message in state waitingForResult.","open event",i);break;case 3:break}}),o.addEventListener("message",async l=>{switch(console.debug("Connection message in state ".concat(a," with event data ").concat(JSON.stringify(l.data,void 0," "))),a){case 0:this.finishWithError(o,a,"Unexpected message in state initiated.","message event",i);break;case 1:{a=2;try{let u=l.data,d=await new k(s,this.apiVersion).build(e,t,{challenge:u});o.send(ee(d))}catch(u){this.finishWithError(o,a,u,"message event",i)}break}case 2:{a=3,o.close(),n(l.data);break}case 3:break}}),o.addEventListener("error",l=>{this.finishWithError(o,a,"Connection encountered an error event: ".concat(JSON.stringify(l,void 0," ")),"error event",i)}),o.addEventListener("close",l=>{let u=l.reason||"No specific reason provided.",d=l.code;console.debug("Connection closed. State: ".concat(a,", Code: ").concat(d,", Reason: '").concat(u,"'"));let p=d>=4e3?"Application Error ".concat(d,": ").concat(u):d===1006?"Connection Abnormality (Code 1006): Server closed connection unexpectedly or network issue.":"WebSocket Closed Unexpectedly (Code ".concat(d,"): ").concat(u);this.finishWithError(o,a,new Error(p),"close event",i)}),()=>{(o.readyState===WebSocket.OPEN||o.readyState===WebSocket.CONNECTING)&&o.close(1001,"Cleanup/Unmount")}})}connectV2(e,t,s){return new Promise((n,i)=>{let o=new WebSocket("".concat(this.walletProviderUrl,"/").concat(e)),a=0;return console.debug("Connecting to ",o.url),o.addEventListener("open",async l=>{switch(console.debug("Connection opened in state ".concat(a," with event ").concat(JSON.stringify(l,void 0," "))),a){case 0:a=2;try{let u=await new k(s,this.apiVersion).build(e,t);o.send(ee({payload:t,userSigs:u}))}catch(u){this.finishWithError(o,a,u,"open event",i)}break;case 2:a=3,this.finishWithError(o,a,"Unexpected message in state waitingForResult.","open event",i);break;case 3:break}}),o.addEventListener("message",async l=>{switch(console.debug("Connection message in state ".concat(a," with event ").concat(JSON.stringify(l,void 0," "))),a){case 0:this.finishWithError(o,a,"Unexpected message in state initiated.","message event",i);break;case 2:{a=3,o.close(),n(l.data);break}case 3:break}}),o.addEventListener("error",l=>{this.finishWithError(o,a,"Connection encountered an error event: ".concat(JSON.stringify(l,void 0," ")),"error event",i)}),o.addEventListener("close",l=>{let u=l.reason||"No specific reason provided.",d=l.code;console.debug("Connection closed. State: ".concat(a,", Code: ").concat(d,", Reason: '").concat(u,"'"));let p=d>=4e3?"Application Error ".concat(d,": ").concat(u):d===1006?"Connection Abnormality (Code 1006): Server closed connection unexpectedly or network issue.":"WebSocket Closed Unexpectedly (Code ".concat(d,"): ").concat(u);this.finishWithError(o,a,new Error(p),"close event",i)}),()=>{(o.readyState===WebSocket.OPEN||o.readyState===WebSocket.CONNECTING)&&o.close(1001,"Cleanup/Unmount")}})}finishWithError(e,t,s,n,i){t!==3&&(console.error("Error from ".concat(n," in state ").concat(t,":"),s),t=3,i(s instanceof Error?s:new Error(String(s)))),e.readyState===WebSocket.OPEN&&e.close(1e3,"Protocol run failed. Client attempted to close connection in state ".concat(t))}},K=class{constructor(e){c(this,"walletProviderUrl");c(this,"apiVersion","v1");this.walletProviderUrl="".concat(e.walletProviderUrl,"/").concat(e.apiVersion),this.apiVersion=e.apiVersion}getVersion(){return this.apiVersion}async startKeygen({setups:e}){return this.connect.bind(this)("keygen",e).then(s=>{try{return JSON.parse(s)}catch(n){throw new Error("Failed to parse keygen response: ".concat(s))}})}async startSigngen({setup:e}){return this.connect.bind(this)("signgen",e).then(s=>{try{return JSON.parse(s)}catch(n){throw new Error("Failed to parse signgen response: ".concat(s))}})}async startKeyRefresh({payload:e}){if(this.apiVersion==="v2")throw new Error("Key refresh is not supported in v2 API");return this.connect.bind(this)("keyRefresh",e).then(s=>{try{return JSON.parse(s)}catch(n){throw new Error("Failed to parse key refresh response: ".concat(s))}})}async updatePolicy({payload:e}){return this.connect.bind(this)("updatePolicy",e).then(s=>{try{return JSON.parse(s)}catch(n){throw new Error("Failed to parse update policy response: ".concat(s))}})}async deletePolicy({payload:e}){return this.connect.bind(this)("deletePolicy",e).then(s=>{try{return JSON.parse(s)}catch(n){throw new Error("Failed to parse delete policy response: ".concat(s))}})}connect(e,t){return new Promise((s,n)=>{let i=0,o=new WebSocket("".concat(this.walletProviderUrl,"/").concat(e));o.addEventListener("open",async a=>{switch(console.debug("Connection opened in state ".concat(i," with event ").concat(JSON.stringify(a,void 0," "))),i){case 0:i=2;try{o.send(ee({payload:t}))}catch(l){n(l)}break;case 2:i=3,n("Incorrect protocol state");break;case 3:break}}),o.addEventListener("message",async a=>{switch(console.debug("Connection message in state ".concat(i," with event ").concat(JSON.stringify(a,void 0," "))),i){case 0:i=3,n("Incorrect protocol state");break;case 2:{i=3,o.close(),s(a.data);break}case 3:break}}),o.addEventListener("error",a=>{console.debug("Connection error in state ".concat(i," with event ").concat(JSON.stringify(a,void 0," "))),i!=3&&(i=3,n("Incorrect protocol state"))}),o.addEventListener("close",a=>{console.debug("Connection closed in state ".concat(i," with event ").concat(JSON.stringify(a,void 0," "))),i!=3&&(i=3,n("Incorrect protocol state"))})})}};var H=class{constructor(e,t){c(this,"authModule");c(this,"wpClient");if(!t&&!(e instanceof K))throw new Error("missing authModule for wallet provider client in auth mode");if(t&&e instanceof K)throw new Error("authModule is required but using wallet provider client in no-auth mode");this.authModule=t,this.wpClient=e}validateQuorumSetup({threshold:e,totalNodes:t}){e&&g(e<2,"Threshold = ".concat(e," must be at least 2")),e&&t&&g(t<e,"Total nodes = ".concat(t," must be greater or equal to threshold = ").concat(e))}async generateKey(e,t,s,n,i){this.validateQuorumSetup({threshold:e,totalNodes:t});let o=s.map(a=>new R({t:e,n:t,ephClaim:n,policy:i,signAlg:a}));return this.authModule?await this.wpClient.startKeygen({setups:o,authModule:this.authModule}):await this.wpClient.startKeygen({setups:o})}async signMessage(e,t,s,n){this.validateQuorumSetup({threshold:e}),Ae(s);let i=new w({t:e,key_id:t,signAlg:s,message:n});if(this.authModule){if(this.authModule instanceof M&&new Map(Object.entries(JSON.parse(n))).size>1)throw new Error("For Passkey Authentication only one message in signing request is supported");return await this.wpClient.startSigngen({setup:i,authModule:this.authModule})}else return await this.wpClient.startSigngen({setup:i})}async refreshKey(e,t,s){let n=new U({t:e,keyId:t,signAlg:s});return this.authModule?await this.wpClient.startKeyRefresh({payload:n,authModule:this.authModule}):await this.wpClient.startKeyRefresh({payload:n})}async addEphemeralKey(e,t){let s=new q(e,t);if(!this.authModule)throw new Error("Add ephemeral key is not supported in no auth mode");return await this.wpClient.addEphemeralKey({payload:s,authModule:this.authModule})}async revokeEphemeralKey(e,t){h("keyId",e);let s=new C(e,t);if(!this.authModule)throw new Error("Revoke ephemeral key is not supported in no auth mode");return await this.wpClient.revokeEphemeralKey({payload:s,authModule:this.authModule})}async registerPasskey(e){let t=new D(e!=null?e:"passkey options");if(!this.authModule)throw new Error("Register passkey is not supported in no auth mode");return await this.wpClient.registerPasskey({payload:t,authModule:this.authModule})}async updatePolicy(e,t){let s=new P({keyId:e,policy:t});return this.authModule?await this.wpClient.updatePolicy({payload:s,authModule:this.authModule}):await this.wpClient.updatePolicy({payload:s})}async deletePolicy(e){let t=new S({keyId:e});return this.authModule?await this.wpClient.deletePolicy({payload:t,authModule:this.authModule}):await this.wpClient.deletePolicy({payload:t})}};import{canonicalize as pt}from"json-canonicalize";var he=class extends Error{constructor(t,s,n){super(n||s);this.status=t;this.statusText=s;this.name="HttpError"}},G=class{constructor(e="",t={}){c(this,"baseURL");c(this,"defaultHeaders");this.baseURL=e,this.validateHeaders(t),this.defaultHeaders=m({"Content-Type":"application/json"},t)}validateHeaders(e){if(typeof e!="object"||e===null)throw new Error("Headers must be an object.");for(let[t,s]of Object.entries(e))if(typeof t!="string"||typeof s!="string")throw new Error("Invalid header: ".concat(t,". Header names and values must be strings."))}setDefaultHeaders(e){this.defaultHeaders=m(m({},this.defaultHeaders),e)}buildUrl(e){return"".concat(this.baseURL).concat(e)}async handleResponse(e){if(!e.ok){let s;try{s=(await e.json()).message||e.statusText}catch(n){s=e.statusText}throw new he(e.status,e.statusText,s)}let t=e.headers.get("content-type");return t&&t.includes("application/json")?e.json():e.text()}async request(e,t,s,n={}){let i=this.buildUrl(t),o=m(m({},this.defaultHeaders),n.headers),a=V(m({method:e,headers:o},n),{body:s?pt(s):null}),l=await fetch(i,a);return this.handleResponse(l)}async get(e,t){return this.request("GET",e,void 0,t)}async post(e,t,s){return this.request("POST",e,t,s)}async put(e,t,s){return this.request("PUT",e,t,s)}async patch(e,t,s){return this.request("PATCH",e,t,s)}async delete(e,t){return this.request("DELETE",e,void 0,t)}};import{publicKeyToAddress as De,toAccount as Fs}from"viem/accounts";import{secp256k1 as ht}from"@noble/curves/secp256k1";import{hashMessage as Hs,hashTypedData as Gs,keccak256 as zs,serializeSignature as js,serializeTransaction as Qs,toHex as Ys}from"viem";import{Base64 as er}from"js-base64";function de(r){if(r.startsWith("0x")&&(r=r.slice(2)),r.startsWith("04"))return De("0x".concat(r," "));if(r.startsWith("02")||r.startsWith("03")){let e=ht.ProjectivePoint.fromHex(r).toHex(!1);return De("0x".concat(e))}else throw new Error("Invalid public key")}var me={};ze(me,{Action:()=>$e,ChainType:()=>We,IssuerType:()=>Te,Logic:()=>Ve,Operator:()=>_e,Policy:()=>ye,Rule:()=>ge,TransactionAttribute:()=>Fe,TransactionType:()=>Be});import{canonicalize as dt}from"json-canonicalize";var te=512,Te=(s=>(s.SessionKeyId="SessionKeyId",s.UserId="UserId",s.All="*",s))(Te||{}),$e=(t=>(t.Allow="allow",t.Deny="deny",t))($e||{}),Ve=(t=>(t.Or="or",t.And="and",t))(Ve||{}),We=(s=>(s.Off="off",s.Ethereum="ethereum",s.Solana="solana",s))(We||{}),Be=(o=>(o.Eip712="eip712",o.Eip191="eip191",o.Erc20="erc20",o.Erc721="erc721",o.NativeTransfer="nativeTransfer",o.SolanaTransaction="solanaTransaction",o))(Be||{}),Fe=(y=>(y.Sender="sender",y.Receiver="receiver",y.NativeValue="nativeValue",y.ChainId="chainId",y.FunctionSelector="functionSelector",y.Message="message",y.VerifyingContract="verifyingContract",y.PrimaryType="primaryType",y.DomainName="domainName",y.DomainVersion="domainVersion",y.SolanaAccountKeys="solanaAccountKeys",y.SplTransferAmount="splTransferAmount",y.SplTokenMint="splTokenMint",y.CustomProgramInstruction="customProgramInstruction",y.SystemInstructionName="systemInstructionName",y.SplInstructionName="splInstructionName",y))(Fe||{}),_e=(l=>(l.Eq="eq",l.Neq="neq",l.Lt="lt",l.Lte="lte",l.Gt="gt",l.Gte="gte",l.In="in",l.All="all",l))(_e||{}),ge=class{constructor({description:e,chain_type:t,conditions:s,issuer:n,action:i,logic:o}){c(this,"description");c(this,"issuer");c(this,"action");c(this,"logic");c(this,"chain_type");c(this,"conditions");if(!s.length)throw new Error("Rule must have at least one condition");if(!t)throw new Error("Chain type must be set");if(e.length>te)throw new Error("Description length exceeds maximum of ".concat(te));this.description=e,this.chain_type=t,this.conditions=s,this.issuer=n||[{type:"*",id:"*"}],this.action=i||"allow",this.logic=o||"and"}},ye=class{constructor({version:e,description:t,rules:s}){c(this,"version");c(this,"description");c(this,"rules");if(t.length>te)throw new Error("Description length exceeds maximum of ".concat(te));this.version=e!=null?e:"1.0",this.description=t,this.rules=s}toJSON(){try{return dt({version:this.version,description:this.description,rules:this.rules})}catch(e){throw console.error("Error while serializing policy",e),new Error("Error while serializing policy")}}};var fr=m({KeygenSetupOpts:R,InitPresignOpts:B,FinishPresignOpts:x,SignSetupOpts:w,UserSignatures:k,NetworkSigner:H,SignRequestBuilder:N,WalletProviderServiceClient:J,NoAuthWalletProviderServiceClient:K,HttpClient:G,EOAAuth:F,EphAuth:_,PasskeyAuth:M,PasskeyRegister:L,generateEphPrivateKey:Z,getEphPublicKey:T,EphKeyClaim:I,computeAddress:de,flattenSignature:ue,UpdatePolicyRequest:P,DeletePolicyRequest:S},me);export{$e as Action,We as ChainType,S as DeletePolicyRequest,F as EOAAuth,_ as EphAuth,I as EphKeyClaim,x as FinishPresignOpts,G as HttpClient,B as InitPresignOpts,Te as IssuerType,R as KeygenSetupOpts,Ve as Logic,H as NetworkSigner,K as NoAuthWalletProviderServiceClient,_e as Operator,M as PasskeyAuth,L as PasskeyRegister,ye as Policy,ge as Rule,N as SignRequestBuilder,w as SignSetupOpts,Fe as TransactionAttribute,Be as TransactionType,P as UpdatePolicyRequest,k as UserSignatures,J as WalletProviderServiceClient,de as computeAddress,fr as default,ue as flattenSignature,Z as generateEphPrivateKey,T as getEphPublicKey};
1
+ var Se=Object.defineProperty,Je=Object.defineProperties;var He=Object.getOwnPropertyDescriptors;var Pe=Object.getOwnPropertySymbols;var Ge=Object.prototype.hasOwnProperty,ze=Object.prototype.propertyIsEnumerable;var ne=(r,e,t)=>e in r?Se(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,m=(r,e)=>{for(var t in e||(e={}))Ge.call(e,t)&&ne(r,t,e[t]);if(Pe)for(var t of Pe(e))ze.call(e,t)&&ne(r,t,e[t]);return r},K=(r,e)=>Je(r,He(e));var je=(r,e)=>{for(var t in e)Se(r,t,{get:e[t],enumerable:!0})};var c=(r,e,t)=>ne(r,typeof e!="symbol"?e+"":e,t);import{canonicalize as Xe}from"json-canonicalize";var h=(r,e)=>{g(typeof e!="string","".concat(r," must be string")),g((e==null?void 0:e.trim().length)===0,"".concat(r," cannot be empty"))},Re=(r,e)=>{if(g(!(r instanceof Uint8Array),"key must be an Uint8Array"),e==="secp256k1")g(r.length!==65,"secp256k1: key length must be 65 bytes, got "+r.length);else if(e==="ed25519")g(r.length!==32,"ed25519: key length must be 32 bytes, got "+r.length);else throw new Error("Invalid signature algorithm")},Ae=(r,e)=>{if(g(!(r instanceof Uint8Array),"key must be an Uint8Array"),e==="secp256k1")g(r.length!==32,"secp256k1: key length must be 32 bytes, got "+r.length);else if(e==="ed25519")g(r.length!==32,"ed25519: key length must be 32 bytes, got "+r.length);else throw new Error("Invalid signature algorithm")},xe=r=>{g(r!=="ed25519"&&r!=="secp256k1",'signAlg must be either "ed25519" or "secp256k"')},g=(r,e)=>{if(r)throw new Error(e)},Qe=(r,e)=>"Invalid payload ".concat(JSON.stringify(r),", cannot be authenticated by ").concat(e.toLocaleUpperCase()," method."),N=(r,e,t)=>{g(!e.some(s=>r instanceof s),Qe(r,t))};var D=class{constructor(){c(this,"signRequest",new Map)}setRequest(e,t,s){if(h("transactionId",e),h("message",t),h("requestType",s),this.signRequest.has(e))throw new Error("Transaction ID ".concat(e," is already set."));return this.signRequest.set(e,{signingMessage:t,requestType:s}),this}build(){let e={};if(this.signRequest.forEach((t,s)=>{e[s]=t}),Object.keys(e).length===0)throw new Error("No sign request is set.");return Xe(e)}};import{canonicalize as Ce}from"json-canonicalize";import{Base64 as st}from"js-base64";function Ye(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function ie(r,...e){if(!Ye(r))throw new Error("Uint8Array expected");if(e.length>0&&!e.includes(r.length))throw new Error("Uint8Array expected of length "+e+", got length="+r.length)}function oe(r,e=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(e&&r.finished)throw new Error("Hash#digest() has already been called")}function be(r,e){ie(r);let t=e.outputLen;if(r.length<t)throw new Error("digestInto() expects output buffer of length at least "+t)}var Q=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),w=(r,e)=>r<<32-e|r>>>e;function Ze(r){if(typeof r!="string")throw new Error("utf8ToBytes expected string, got "+typeof r);return new Uint8Array(new TextEncoder().encode(r))}function ae(r){return typeof r=="string"&&(r=Ze(r)),ie(r),r}var j=class{clone(){return this._cloneInto()}};function Ee(r){let e=s=>r().update(ae(s)).digest(),t=r();return e.outputLen=t.outputLen,e.blockLen=t.blockLen,e.create=()=>r(),e}function et(r,e,t,s){if(typeof r.setBigUint64=="function")return r.setBigUint64(e,t,s);let n=BigInt(32),i=BigInt(4294967295),o=Number(t>>n&i),a=Number(t&i),u=s?4:0,l=s?0:4;r.setUint32(e+u,o,s),r.setUint32(e+l,a,s)}var ve=(r,e,t)=>r&e^~r&t,ke=(r,e,t)=>r&e^r&t^e&t,X=class extends j{constructor(e,t,s,n){super(),this.blockLen=e,this.outputLen=t,this.padOffset=s,this.isLE=n,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(e),this.view=Q(this.buffer)}update(e){oe(this);let{view:t,buffer:s,blockLen:n}=this;e=ae(e);let i=e.length;for(let o=0;o<i;){let a=Math.min(n-this.pos,i-o);if(a===n){let u=Q(e);for(;n<=i-o;o+=n)this.process(u,o);continue}s.set(e.subarray(o,o+a),this.pos),this.pos+=a,o+=a,this.pos===n&&(this.process(t,0),this.pos=0)}return this.length+=e.length,this.roundClean(),this}digestInto(e){oe(this),be(e,this),this.finished=!0;let{buffer:t,view:s,blockLen:n,isLE:i}=this,{pos:o}=this;t[o++]=128,this.buffer.subarray(o).fill(0),this.padOffset>n-o&&(this.process(s,0),o=0);for(let p=o;p<n;p++)t[p]=0;et(s,n-8,BigInt(this.length*8),i),this.process(s,0);let a=Q(e),u=this.outputLen;if(u%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let l=u/4,d=this.get();if(l>d.length)throw new Error("_sha2: outputLen bigger than state");for(let p=0;p<l;p++)a.setUint32(4*p,d[p],i)}digest(){let{buffer:e,outputLen:t}=this;this.digestInto(e);let s=e.slice(0,t);return this.destroy(),s}_cloneInto(e){e||(e=new this.constructor),e.set(...this.get());let{blockLen:t,buffer:s,length:n,finished:i,destroyed:o,pos:a}=this;return e.length=n,e.pos=a,e.finished=i,e.destroyed=o,n%t&&e.buffer.set(s),e}};var tt=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),E=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),v=new Uint32Array(64),ce=class extends X{constructor(){super(64,32,8,!1),this.A=E[0]|0,this.B=E[1]|0,this.C=E[2]|0,this.D=E[3]|0,this.E=E[4]|0,this.F=E[5]|0,this.G=E[6]|0,this.H=E[7]|0}get(){let{A:e,B:t,C:s,D:n,E:i,F:o,G:a,H:u}=this;return[e,t,s,n,i,o,a,u]}set(e,t,s,n,i,o,a,u){this.A=e|0,this.B=t|0,this.C=s|0,this.D=n|0,this.E=i|0,this.F=o|0,this.G=a|0,this.H=u|0}process(e,t){for(let p=0;p<16;p++,t+=4)v[p]=e.getUint32(t,!1);for(let p=16;p<64;p++){let W=v[p-15],T=v[p-2],we=w(W,7)^w(W,18)^W>>>3,re=w(T,17)^w(T,19)^T>>>10;v[p]=re+v[p-7]+we+v[p-16]|0}let{A:s,B:n,C:i,D:o,E:a,F:u,G:l,H:d}=this;for(let p=0;p<64;p++){let W=w(a,6)^w(a,11)^w(a,25),T=d+W+ve(a,u,l)+tt[p]+v[p]|0,re=(w(s,2)^w(s,13)^w(s,22))+ke(s,n,i)|0;d=l,l=u,u=a,a=o+T|0,o=i,i=n,n=s,s=T+re|0}s=s+this.A|0,n=n+this.B|0,i=i+this.C|0,o=o+this.D|0,a=a+this.E|0,u=u+this.F|0,l=l+this.G|0,d=d+this.H|0,this.set(s,n,i,o,a,u,l,d)}roundClean(){v.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var ue=Ee(()=>new ce);import{stringToBytes as rt,toHex as nt}from"viem";var x=r=>st.fromUint8Array(new Uint8Array(r),!0),le=r=>{let e=rt(r),t=ue(ue(e));return nt(t,{size:32}).slice(2)};var k=class{constructor(e,t){c(this,"userAuthentications");c(this,"authModule");c(this,"apiVersion");this.authModule=e,this.userAuthentications=new Map,this.apiVersion=t}async setDefaultAuth(e){let t=await this.authModule.authenticate({payload:e.payload,challenge:e.challenge});this.userAuthentications.set("default",t)}async setKeygenUserSigs(e,t){if(this.apiVersion==="v1"&&!t)throw new Error("no challenge response for keygen");for(let s of e){let n=s.signAlg,i=t?t[n]:le(Ce(s));if(i){let o=await this.authModule.authenticate({payload:s,challenge:i});this.userAuthentications.set(n,o)}else throw new Error("no final challenge found in response for ".concat(n))}}async setSigngenUserSigs(e){await this.setDefaultAuth(e)}async setAddEphKeyUserSigs(e){await this.setDefaultAuth(e)}async setRevokeEphKeyUserSigs(e){await this.setDefaultAuth(e)}async setRegisterPasskeyUserSigs(e){await this.setDefaultAuth(e)}async setKeyRefreshUserSigs(e){await this.setDefaultAuth(e)}async setFinishPresignUserSigs(e){await this.setDefaultAuth(e)}async setUpdatePolicyUserSigs(e){await this.setDefaultAuth(e)}async setDeletePolicyUserSigs(e){await this.setDefaultAuth(e)}async build(e,t,s){if(this.apiVersion!=="v1"&&(e==="registerPasskey"||e==="keyRefresh"))throw new Error("".concat(e," is only supported in V1"));let{challenge:n}=s!=null?s:{};if(e==="keygen"){let i=n?JSON.parse(n):void 0;await this.setKeygenUserSigs(t,i)}else{if(this.apiVersion==="v1"&&!n)throw new Error("missing challenge response for ".concat(e," V1"));let i=n!=null?n:le(Ce(t));e==="signgen"?await this.setSigngenUserSigs({payload:t,challenge:i}):e==="addEphemeralKey"?await this.setAddEphKeyUserSigs({payload:t,challenge:i}):e==="revokeEphemeralKey"?await this.setRevokeEphKeyUserSigs({payload:t,challenge:i}):e==="registerPasskey"?await this.setRegisterPasskeyUserSigs({payload:t,challenge:i}):e==="keyRefresh"?await this.setKeyRefreshUserSigs({payload:t,challenge:i}):e==="finishPresign"?await this.setFinishPresignUserSigs({payload:t,challenge:i}):e==="updatePolicy"?await this.setUpdatePolicyUserSigs({payload:t,challenge:i}):e==="deletePolicy"&&await this.setDeletePolicyUserSigs({payload:t,challenge:i})}return Object.fromEntries(this.userAuthentications)}};var pe=r=>{let{sign:e,recid:t}=r,s=(27+t).toString(16);return"0x".concat(e).concat(s)};var C=class{constructor(e,t){c(this,"key_id");c(this,"eph_claim");h("keyId",e),this.key_id=e,this.eph_claim=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"RevokeEphKeyRequest"},{name:"challenge",type:"string"}],RevokeEphKeyRequest:[{name:"key_id",type:"string"},{name:"eph_claim",type:"string"}]}}},U=class{constructor(e,t){c(this,"key_id_list");c(this,"eph_claim");for(let s of e)h("keyId",s);this.key_id_list=e,this.eph_claim=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"AddEphKeyRequest"},{name:"challenge",type:"string"}],AddEphKeyRequest:[{name:"key_id_list",type:"string[]"},{name:"eph_claim",type:"string"}]}}},$=class{constructor(e){c(this,"options");h("options",e),this.options=e}},q=class{constructor({t:e,keyId:t,signAlg:s}){c(this,"t");c(this,"key_id");c(this,"sign_alg");h("keyId",t),h("signAlg",s),this.t=e,this.key_id=t,this.sign_alg=s}get eoaRequestSchema(){return{Request:[{name:"setup",type:"KeyRefreshRequest"},{name:"challenge",type:"string"}],KeyRefreshRequest:[{name:"t",type:"uint32"},{name:"key_id",type:"string"},{name:"sign_alg",type:"string"}]}}},R=class{constructor({keyId:e,policy:t}){c(this,"key_id");c(this,"policy");h("keyId",e),this.key_id=e,this.policy=t.toJSON()}get eoaRequestSchema(){return{Request:[{name:"setup",type:"UpdatePolicyRequest"},{name:"challenge",type:"string"}],UpdatePolicyRequest:[{name:"key_id",type:"string"},{name:"policy",type:"string"}]}}},A=class{constructor({keyId:e}){c(this,"key_id");h("keyId",e),this.key_id=e}get eoaRequestSchema(){return{Request:[{name:"setup",type:"DeletePolicyRequest"},{name:"challenge",type:"string"}],DeletePolicyRequest:[{name:"key_id",type:"string"}]}}};var it=[{name:"tag",type:"uint16"},{name:"value",type:"string"}],P=class{constructor({t:e,n:t,ephClaim:s,policy:n,signAlg:i}){c(this,"t");c(this,"n");c(this,"ephClaim");c(this,"metadata");c(this,"signAlg");c(this,"policy");h("signAlg",i),this.t=e,this.n=t,this.signAlg=i,this.ephClaim=s==null?void 0:s.toJSON(),this.metadata=[],this.policy=n==null?void 0:n.toJSON()}get eoaRequestSchema(){let e=[{name:"t",type:"uint32"},{name:"n",type:"uint32"},{name:"metadata",type:"TaggedValue[]"}];return this.ephClaim&&e.push({name:"ephClaim",type:"string"}),this.policy&&e.push({name:"policy",type:"string"}),{Request:[{name:"setup",type:"KeygenSetupOpts"},{name:"challenge",type:"string"}],KeygenSetupOpts:e,TaggedValue:it}}},f=class{constructor({t:e,key_id:t,signAlg:s,message:n}){c(this,"t");c(this,"key_id");c(this,"message");c(this,"signAlg");h("keyId",t),h("signAlg",s),h("message",n),this.t=e,this.key_id=t,this.message=n,this.signAlg=s}get eoaRequestSchema(){return{Request:[{name:"setup",type:"SignSetupOpts"},{name:"challenge",type:"string"}],SignSetupOpts:[{name:"t",type:"uint32"},{name:"key_id",type:"string"},{name:"signAlg",type:"string"},{name:"message",type:"string"}]}}},F=class{constructor({amount:e,keyId:t,t:s,expiryInSecs:n}){c(this,"amount");c(this,"key_id");c(this,"t");c(this,"expiry");if(e<=0)throw new Error("Amount must be greater than 0");h("keyId",t),this.amount=e,this.key_id=t,this.t=s,this.expiry=n!=null?n:Math.floor(Date.now()/1e3)+7*24*3600}},b=class{constructor({presignSessionId:e,message:t}){c(this,"presignSessionId");c(this,"message");h("presignSessionId",e),h("message",t),this.presignSessionId=e,this.message=t}get eoaRequestSchema(){return{Request:[{name:"setup",type:"FinishPresignOpts"},{name:"challenge",type:"string"}],FinishPresignOpts:[{name:"presignSessionId",type:"string"},{name:"message",type:"string"}]}}};var ot={name:"SilentShard authentication",version:"0.1.0"},at=[{name:"name",type:"string"},{name:"version",type:"string"}];function ct(r,e){let t={setup:r,challenge:e};return{types:m({EIP712Domain:at},r.eoaRequestSchema),domain:ot,primaryType:"Request",message:t}}async function Ie({setup:r,eoa:e,challenge:t,browserWallet:s}){let n=ct(r,t),i=await s.signTypedData(e,n);return new S({method:"eoa",id:e},i)}import{Base64 as Ke}from"js-base64";import{hexToBytes as Ue}from"viem";import{canonicalize as Y}from"json-canonicalize";async function qe({user:r,challenge:e,rpConfig:t}){let s=Ue("0x".concat(e),{size:32}),n={publicKey:{authenticatorSelection:{residentKey:"preferred",userVerification:"required"},challenge:s,excludeCredentials:[],pubKeyCredParams:[{type:"public-key",alg:-7},{type:"public-key",alg:-257}],rp:{name:t.rpName,id:t.rpId},user:K(m({},r),{id:Ke.toUint8Array(r.id)})}},i=await navigator.credentials.create(n);if(i===null)throw new Error("No credential returned");let o=x(i.response.attestationObject),u={rawCredential:Y({authenticatorAttachment:i.authenticatorAttachment,id:i.id,rawId:x(i.rawId),response:{attestationObject:o,clientDataJSON:x(i.response.clientDataJSON)},type:i.type}),origin:t.rpName,rpId:t.rpId};return new S({method:"passkey",id:i.id},Y(u))}async function Me({challenge:r,allowCredentialId:e,rpConfig:t}){let s=Ue("0x".concat(r),{size:32}),n=e?[{type:"public-key",id:Ke.toUint8Array(e)}]:[],i={publicKey:{userVerification:"required",challenge:s,allowCredentials:n}},o=await navigator.credentials.get(i);if(o===null)throw new Error("Failed to get navigator credentials");let a=o.response,u=a.userHandle;if(u===null)throw new Error("User handle cannot be null");let l=x(a.signature),p={rawCredential:Y({authenticatorAttachment:o.authenticatorAttachment,id:o.id,rawId:x(o.rawId),response:{authenticatorData:x(a.authenticatorData),clientDataJSON:x(a.clientDataJSON),signature:l,userHandle:x(u)},type:o.type}),origin:t.rpName,rpId:t.rpId};return new S({method:"passkey",id:o.id},Y(p))}import{toHex as Z}from"viem";import{ed25519 as he}from"@noble/curves/ed25519";import{secp256k1 as Oe}from"@noble/curves/secp256k1";import{signMessage as ut}from"viem/accounts";import{canonicalize as Te}from"json-canonicalize";var M=class r{constructor(e,t,s,n=Math.floor(Date.now()/1e3)+3600){c(this,"ephId");c(this,"ephPK");c(this,"signAlg");c(this,"expiry");this.validateInputs(e,t,s,n),this.ephId=e,this.ephPK=Z(t),this.signAlg=s,this.expiry=n}validateInputs(e,t,s,n){h("ephId",e),Re(t,s),g(Number.isInteger(n)===!1,"expiry must be an integer");let i=Math.floor(Date.now()/1e3),o=n-i,a=o>0&&o<=365*24*60*60;g(!a,"lifetime must be greater than 0 and less than or equal to 365 days expiry - now ".concat(o,", expiry ").concat(n," now secs ").concat(i))}toJSON(){try{return Te({ephId:this.ephId,ephPK:this.ephPK,expiry:this.expiry,signAlg:this.signAlg})}catch(e){throw console.error("Error while serializing ephemeral key claim",e),new Error("Error while serializing ephemeral key claim")}}static generateKeys(e,t){let s=ee(e),n=V(s,e),i=new r(Z(n),n,e,t);return{privKey:s,pubKey:n,ephClaim:i}}};async function Ne({setup:r,challenge:e,ephSK:t,ephClaim:s}){let n={setup:r,challenge:e},i=new TextEncoder().encode(Te(n)),o=await lt(i,t,s.signAlg);return new S({method:"ephemeral",id:s.ephId},o)}async function lt(r,e,t){switch(t){case"ed25519":return Z(he.sign(r,e));case"secp256k1":return await ut({message:{raw:r},privateKey:Z(e)});default:throw new Error("Invalid signature algorithm")}}function ee(r){switch(r){case"ed25519":return he.utils.randomPrivateKey();case"secp256k1":return Oe.utils.randomPrivateKey();default:throw new Error("Invalid signature algorithm")}}function V(r,e){switch(e){case"ed25519":return he.getPublicKey(r);case"secp256k1":return Oe.getPublicKey(r,!1);default:throw new Error("Invalid signature algorithm")}}import{isAddress as pt}from"viem";import{decode as ht}from"jsonwebtoken";var S=class{constructor(e,t){this.credentials=e;this.signature=t;this.credentials=e,this.signature=t}},B=class{constructor(e,t){c(this,"browserWallet");c(this,"eoa");this.validateInputs(e,t),this.browserWallet=t,this.eoa=e}validateInputs(e,t){g(!pt(e),"invalid Ethereum address format"),g(!((t==null?void 0:t.signTypedData)instanceof Function),"invalid browserWallet")}async authenticate({payload:e,challenge:t}){return N(e,[P,q,U,C,f,b,R,A],"eoa"),await Ie({setup:e,eoa:this.eoa,challenge:t,browserWallet:this.browserWallet})}},_=class{constructor(e,t,s){c(this,"ephSK");c(this,"ephClaim");Ae(t,s),this.ephSK=t;let n=V(this.ephSK,s);this.ephClaim=new M(e,n,s)}async authenticate({payload:e,challenge:t}){return N(e,[f,C,b],"ephemeral"),await Ne({setup:e,challenge:t,ephSK:this.ephSK,ephClaim:this.ephClaim})}},O=class{constructor(e,t){c(this,"rpConfig");c(this,"allowCredentialId");this.rpConfig=e,this.allowCredentialId=t}async authenticate({payload:e,challenge:t}){return N(e,[P,U,f,b,q,C,R,A],"passkey"),await Me({allowCredentialId:this.allowCredentialId,challenge:t,rpConfig:this.rpConfig})}},L=class{constructor(e,t){c(this,"rpConfig");c(this,"user");this.rpConfig=e,this.user=t}async authenticate({payload:e,challenge:t}){return N(e,[$],"passkey"),await qe({user:this.user,challenge:t,rpConfig:this.rpConfig})}},J=class{constructor(e){c(this,"jwtIssuer");this.validateInputs(e),this.jwtIssuer=e}validateInputs(e){g(!((e==null?void 0:e.issueToken)instanceof Function),"invalid jwtIssuer")}async authenticate({payload:e,challenge:t}){N(e,[P,f],"jwt");let s=await this.jwtIssuer.issueToken(t),n=ht(s);g(!n||typeof n=="string","Failed to decode JWT token");let{iss:i,sub:o}=n;return g(!i||!o,"JWT token is missing iss or sub claims"),new S({method:"jwt",id:{iss:i,sub:o}},s)}};import{canonicalize as te}from"json-canonicalize";var H=class{constructor(e){c(this,"walletProviderUrl");c(this,"apiVersion","v1");this.walletProviderUrl="".concat(e.walletProviderUrl,"/").concat(e.apiVersion),this.apiVersion=e.apiVersion}getVersion(){return this.apiVersion}async startKeygen({setups:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("keygen",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse keygen response: ".concat(n))}})}async startKeyRefresh({payload:e,authModule:t}){if(this.apiVersion==="v2")throw new Error("Key refresh is not supported in v2 API");return this.connect.bind(this)("keyRefresh",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse key refresh response: ".concat(n))}})}async startSigngen({setup:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("signgen",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse signgen response: ".concat(n))}})}async addEphemeralKey({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("addEphemeralKey",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse add ephemeral key response: ".concat(n))}})}async revokeEphemeralKey({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("revokeEphemeralKey",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse revoke ephemeral key response: ".concat(n))}})}async registerPasskey({payload:e,authModule:t}){if(this.apiVersion==="v2")throw new Error("Passkey registration is not supported in v2 API");return this.connect.bind(this)("registerPasskey",e,t).then(n=>({passkeyCredentialId:n}))}async updatePolicy({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("updatePolicy",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse update policy response: ".concat(n))}})}async deletePolicy({payload:e,authModule:t}){return(this.apiVersion==="v1"?this.connect.bind(this):this.connectV2.bind(this))("deletePolicy",e,t).then(n=>{try{return JSON.parse(n)}catch(i){throw new Error("Failed to parse delete policy response: ".concat(n))}})}connect(e,t,s){return new Promise((n,i)=>{let o=new WebSocket("".concat(this.walletProviderUrl,"/").concat(e)),a=0;return console.debug("Connecting to ",o.url),o.addEventListener("open",u=>{switch(console.debug("Connection opened in state ".concat(a," with event ").concat(JSON.stringify(u,void 0," "))),a){case 0:{a=1;try{let l=te({payload:t});console.debug("Sending request:",l),o.send(l)}catch(l){this.finishWithError(o,a,l,"open event",i)}break}case 1:case 2:this.finishWithError(o,a,"Unexpected message in state waitingForResult.","open event",i);break;case 3:break}}),o.addEventListener("message",async u=>{switch(console.debug("Connection message in state ".concat(a," with event data ").concat(JSON.stringify(u.data,void 0," "))),a){case 0:this.finishWithError(o,a,"Unexpected message in state initiated.","message event",i);break;case 1:{a=2;try{let l=u.data,d=await new k(s,this.apiVersion).build(e,t,{challenge:l});o.send(te(d))}catch(l){this.finishWithError(o,a,l,"message event",i)}break}case 2:{a=3,o.close(),n(u.data);break}case 3:break}}),o.addEventListener("error",u=>{this.finishWithError(o,a,"Connection encountered an error event: ".concat(JSON.stringify(u,void 0," ")),"error event",i)}),o.addEventListener("close",u=>{let l=u.reason||"No specific reason provided.",d=u.code;console.debug("Connection closed. State: ".concat(a,", Code: ").concat(d,", Reason: '").concat(l,"'"));let p=d>=4e3?"Application Error ".concat(d,": ").concat(l):d===1006?"Connection Abnormality (Code 1006): Server closed connection unexpectedly or network issue.":"WebSocket Closed Unexpectedly (Code ".concat(d,"): ").concat(l);this.finishWithError(o,a,new Error(p),"close event",i)}),()=>{(o.readyState===WebSocket.OPEN||o.readyState===WebSocket.CONNECTING)&&o.close(1001,"Cleanup/Unmount")}})}connectV2(e,t,s){return new Promise((n,i)=>{let o=new WebSocket("".concat(this.walletProviderUrl,"/").concat(e)),a=0;return console.debug("Connecting to ",o.url),o.addEventListener("open",async u=>{switch(console.debug("Connection opened in state ".concat(a," with event ").concat(JSON.stringify(u,void 0," "))),a){case 0:a=2;try{let l=await new k(s,this.apiVersion).build(e,t);o.send(te({payload:t,userSigs:l}))}catch(l){this.finishWithError(o,a,l,"open event",i)}break;case 2:a=3,this.finishWithError(o,a,"Unexpected message in state waitingForResult.","open event",i);break;case 3:break}}),o.addEventListener("message",async u=>{switch(console.debug("Connection message in state ".concat(a," with event ").concat(JSON.stringify(u,void 0," "))),a){case 0:this.finishWithError(o,a,"Unexpected message in state initiated.","message event",i);break;case 2:{a=3,o.close(),n(u.data);break}case 3:break}}),o.addEventListener("error",u=>{this.finishWithError(o,a,"Connection encountered an error event: ".concat(JSON.stringify(u,void 0," ")),"error event",i)}),o.addEventListener("close",u=>{let l=u.reason||"No specific reason provided.",d=u.code;console.debug("Connection closed. State: ".concat(a,", Code: ").concat(d,", Reason: '").concat(l,"'"));let p=d>=4e3?"Application Error ".concat(d,": ").concat(l):d===1006?"Connection Abnormality (Code 1006): Server closed connection unexpectedly or network issue.":"WebSocket Closed Unexpectedly (Code ".concat(d,"): ").concat(l);this.finishWithError(o,a,new Error(p),"close event",i)}),()=>{(o.readyState===WebSocket.OPEN||o.readyState===WebSocket.CONNECTING)&&o.close(1001,"Cleanup/Unmount")}})}finishWithError(e,t,s,n,i){t!==3&&(console.error("Error from ".concat(n," in state ").concat(t,":"),s),t=3,i(s instanceof Error?s:new Error(String(s)))),e.readyState===WebSocket.OPEN&&e.close(1e3,"Protocol run failed. Client attempted to close connection in state ".concat(t))}},I=class{constructor(e){c(this,"walletProviderUrl");c(this,"apiVersion","v1");this.walletProviderUrl="".concat(e.walletProviderUrl,"/").concat(e.apiVersion),this.apiVersion=e.apiVersion}getVersion(){return this.apiVersion}async startKeygen({setups:e}){return this.connect.bind(this)("keygen",e).then(s=>{try{return JSON.parse(s)}catch(n){throw new Error("Failed to parse keygen response: ".concat(s))}})}async startSigngen({setup:e}){return this.connect.bind(this)("signgen",e).then(s=>{try{return JSON.parse(s)}catch(n){throw new Error("Failed to parse signgen response: ".concat(s))}})}async startKeyRefresh({payload:e}){if(this.apiVersion==="v2")throw new Error("Key refresh is not supported in v2 API");return this.connect.bind(this)("keyRefresh",e).then(s=>{try{return JSON.parse(s)}catch(n){throw new Error("Failed to parse key refresh response: ".concat(s))}})}async updatePolicy({payload:e}){return this.connect.bind(this)("updatePolicy",e).then(s=>{try{return JSON.parse(s)}catch(n){throw new Error("Failed to parse update policy response: ".concat(s))}})}async deletePolicy({payload:e}){return this.connect.bind(this)("deletePolicy",e).then(s=>{try{return JSON.parse(s)}catch(n){throw new Error("Failed to parse delete policy response: ".concat(s))}})}connect(e,t){return new Promise((s,n)=>{let i=0,o=new WebSocket("".concat(this.walletProviderUrl,"/").concat(e));o.addEventListener("open",async a=>{switch(console.debug("Connection opened in state ".concat(i," with event ").concat(JSON.stringify(a,void 0," "))),i){case 0:i=2;try{o.send(te({payload:t}))}catch(u){n(u)}break;case 2:i=3,n("Incorrect protocol state");break;case 3:break}}),o.addEventListener("message",async a=>{switch(console.debug("Connection message in state ".concat(i," with event ").concat(JSON.stringify(a,void 0," "))),i){case 0:i=3,n("Incorrect protocol state");break;case 2:{i=3,o.close(),s(a.data);break}case 3:break}}),o.addEventListener("error",a=>{console.debug("Connection error in state ".concat(i," with event ").concat(JSON.stringify(a,void 0," "))),i!=3&&(i=3,n("Incorrect protocol state"))}),o.addEventListener("close",a=>{console.debug("Connection closed in state ".concat(i," with event ").concat(JSON.stringify(a,void 0," "))),i!=3&&(i=3,n("Incorrect protocol state"))})})}};var G=class{constructor(e,t){c(this,"authModule");c(this,"wpClient");if(!t&&!(e instanceof I))throw new Error("missing authModule for wallet provider client in auth mode");if(t&&e instanceof I)throw new Error("authModule is required but using wallet provider client in no-auth mode");this.authModule=t,this.wpClient=e}validateQuorumSetup({threshold:e,totalNodes:t}){e&&g(e<2,"Threshold = ".concat(e," must be at least 2")),e&&t&&g(t<e,"Total nodes = ".concat(t," must be greater or equal to threshold = ").concat(e))}async generateKey(e,t,s,n,i){this.validateQuorumSetup({threshold:e,totalNodes:t});let o=s.map(a=>new P({t:e,n:t,ephClaim:n,policy:i,signAlg:a}));return this.authModule?await this.wpClient.startKeygen({setups:o,authModule:this.authModule}):await this.wpClient.startKeygen({setups:o})}async signMessage(e,t,s,n){this.validateQuorumSetup({threshold:e}),xe(s);let i=new f({t:e,key_id:t,signAlg:s,message:n});if(this.authModule){if(this.authModule instanceof O&&new Map(Object.entries(JSON.parse(n))).size>1)throw new Error("For Passkey Authentication only one message in signing request is supported");return await this.wpClient.startSigngen({setup:i,authModule:this.authModule})}else return await this.wpClient.startSigngen({setup:i})}async refreshKey(e,t,s){let n=new q({t:e,keyId:t,signAlg:s});return this.authModule?await this.wpClient.startKeyRefresh({payload:n,authModule:this.authModule}):await this.wpClient.startKeyRefresh({payload:n})}async addEphemeralKey(e,t){let s=new U(e,t);if(!this.authModule)throw new Error("Add ephemeral key is not supported in no auth mode");return await this.wpClient.addEphemeralKey({payload:s,authModule:this.authModule})}async revokeEphemeralKey(e,t){h("keyId",e);let s=new C(e,t);if(!this.authModule)throw new Error("Revoke ephemeral key is not supported in no auth mode");return await this.wpClient.revokeEphemeralKey({payload:s,authModule:this.authModule})}async registerPasskey(e){let t=new $(e!=null?e:"passkey options");if(!this.authModule)throw new Error("Register passkey is not supported in no auth mode");return await this.wpClient.registerPasskey({payload:t,authModule:this.authModule})}async updatePolicy(e,t){let s=new R({keyId:e,policy:t});return this.authModule?await this.wpClient.updatePolicy({payload:s,authModule:this.authModule}):await this.wpClient.updatePolicy({payload:s})}async deletePolicy(e){let t=new A({keyId:e});return this.authModule?await this.wpClient.deletePolicy({payload:t,authModule:this.authModule}):await this.wpClient.deletePolicy({payload:t})}};import{canonicalize as dt}from"json-canonicalize";var de=class extends Error{constructor(t,s,n){super(n||s);this.status=t;this.statusText=s;this.name="HttpError"}},z=class{constructor(e="",t={}){c(this,"baseURL");c(this,"defaultHeaders");this.baseURL=e,this.validateHeaders(t),this.defaultHeaders=m({"Content-Type":"application/json"},t)}validateHeaders(e){if(typeof e!="object"||e===null)throw new Error("Headers must be an object.");for(let[t,s]of Object.entries(e))if(typeof t!="string"||typeof s!="string")throw new Error("Invalid header: ".concat(t,". Header names and values must be strings."))}setDefaultHeaders(e){this.defaultHeaders=m(m({},this.defaultHeaders),e)}buildUrl(e){return"".concat(this.baseURL).concat(e)}async handleResponse(e){if(!e.ok){let s;try{s=(await e.json()).message||e.statusText}catch(n){s=e.statusText}throw new de(e.status,e.statusText,s)}let t=e.headers.get("content-type");return t&&t.includes("application/json")?e.json():e.text()}async request(e,t,s,n={}){let i=this.buildUrl(t),o=m(m({},this.defaultHeaders),n.headers),a=K(m({method:e,headers:o},n),{body:s?dt(s):null}),u=await fetch(i,a);return this.handleResponse(u)}async get(e,t){return this.request("GET",e,void 0,t)}async post(e,t,s){return this.request("POST",e,t,s)}async put(e,t,s){return this.request("PUT",e,t,s)}async patch(e,t,s){return this.request("PATCH",e,t,s)}async delete(e,t){return this.request("DELETE",e,void 0,t)}};import{publicKeyToAddress as De,toAccount as Js}from"viem/accounts";import{secp256k1 as gt}from"@noble/curves/secp256k1";import{hashMessage as js,hashTypedData as Qs,keccak256 as Xs,serializeSignature as Ys,serializeTransaction as Zs,toHex as tr}from"viem";import{Base64 as rr}from"js-base64";function ge(r){if(r.startsWith("0x")&&(r=r.slice(2)),r.startsWith("04"))return De("0x".concat(r," "));if(r.startsWith("02")||r.startsWith("03")){let e=gt.ProjectivePoint.fromHex(r).toHex(!1);return De("0x".concat(e))}else throw new Error("Invalid public key")}var fe={};je(fe,{Action:()=>Ve,ChainType:()=>Fe,IssuerType:()=>$e,Logic:()=>We,Operator:()=>Le,Policy:()=>me,Rule:()=>ye,TransactionAttribute:()=>_e,TransactionType:()=>Be});import{canonicalize as yt}from"json-canonicalize";var se=512,$e=(s=>(s.SessionKeyId="SessionKeyId",s.UserId="UserId",s.All="*",s))($e||{}),Ve=(t=>(t.Allow="allow",t.Deny="deny",t))(Ve||{}),We=(t=>(t.Or="or",t.And="and",t))(We||{}),Fe=(s=>(s.Off="off",s.Ethereum="ethereum",s.Solana="solana",s))(Fe||{}),Be=(o=>(o.Eip712="eip712",o.Eip191="eip191",o.Erc20="erc20",o.Erc721="erc721",o.NativeTransfer="nativeTransfer",o.SolanaTransaction="solanaTransaction",o))(Be||{}),_e=(y=>(y.Sender="sender",y.Receiver="receiver",y.NativeValue="nativeValue",y.ChainId="chainId",y.FunctionSelector="functionSelector",y.Message="message",y.VerifyingContract="verifyingContract",y.PrimaryType="primaryType",y.DomainName="domainName",y.DomainVersion="domainVersion",y.SolanaAccountKeys="solanaAccountKeys",y.SplTransferAmount="splTransferAmount",y.SplTokenMint="splTokenMint",y.CustomProgramInstruction="customProgramInstruction",y.SystemInstructionName="systemInstructionName",y.SplInstructionName="splInstructionName",y))(_e||{}),Le=(u=>(u.Eq="eq",u.Neq="neq",u.Lt="lt",u.Lte="lte",u.Gt="gt",u.Gte="gte",u.In="in",u.All="all",u))(Le||{}),ye=class{constructor({description:e,chain_type:t,conditions:s,issuer:n,action:i,logic:o}){c(this,"description");c(this,"issuer");c(this,"action");c(this,"logic");c(this,"chain_type");c(this,"conditions");if(!s.length)throw new Error("Rule must have at least one condition");if(!t)throw new Error("Chain type must be set");if(e.length>se)throw new Error("Description length exceeds maximum of ".concat(se));this.description=e,this.chain_type=t,this.conditions=s,this.issuer=n||[{type:"*",id:"*"}],this.action=i||"allow",this.logic=o||"and"}},me=class{constructor({version:e,description:t,rules:s}){c(this,"version");c(this,"description");c(this,"rules");if(t.length>se)throw new Error("Description length exceeds maximum of ".concat(se));this.version=e!=null?e:"1.0",this.description=t,this.rules=s}toJSON(){try{return yt({version:this.version,description:this.description,rules:this.rules})}catch(e){throw console.error("Error while serializing policy",e),new Error("Error while serializing policy")}}};var Sr=K(m({KeygenSetupOpts:P,InitPresignOpts:F,FinishPresignOpts:b,SignSetupOpts:f,UserSignatures:k,NetworkSigner:G,SignRequestBuilder:D,WalletProviderServiceClient:H,NoAuthWalletProviderServiceClient:I,HttpClient:z,EOAAuth:B,EphAuth:_,PasskeyAuth:O,PasskeyRegister:L,generateEphPrivateKey:ee,getEphPublicKey:V,EphKeyClaim:M,computeAddress:ge,flattenSignature:pe,UpdatePolicyRequest:R,DeletePolicyRequest:A},fe),{JWTAuth:J});export{Ve as Action,Fe as ChainType,A as DeletePolicyRequest,B as EOAAuth,_ as EphAuth,M as EphKeyClaim,b as FinishPresignOpts,z as HttpClient,F as InitPresignOpts,$e as IssuerType,J as JWTAuth,P as KeygenSetupOpts,We as Logic,G as NetworkSigner,I as NoAuthWalletProviderServiceClient,Le as Operator,O as PasskeyAuth,L as PasskeyRegister,me as Policy,ye as Rule,D as SignRequestBuilder,f as SignSetupOpts,_e as TransactionAttribute,Be as TransactionType,R as UpdatePolicyRequest,S as UserAuthentication,k as UserSignatures,H as WalletProviderServiceClient,ge as computeAddress,Sr as default,pe as flattenSignature,ee as generateEphPrivateKey,V as getEphPublicKey};
2
2
  /*! Bundled license information:
3
3
 
4
4
  @noble/hashes/esm/utils.js:
@@ -1 +1 @@
1
- {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.string.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.object.d.ts","../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/json-canonicalize/types/canonicalize.d.ts","../node_modules/json-canonicalize/types/canonicalize-ex.d.ts","../node_modules/json-canonicalize/types/index.d.ts","../node_modules/abitype/dist/types/register.d.ts","../node_modules/abitype/dist/types/types.d.ts","../node_modules/abitype/dist/types/abi.d.ts","../node_modules/abitype/dist/types/errors.d.ts","../node_modules/abitype/dist/types/narrow.d.ts","../node_modules/abitype/dist/types/utils.d.ts","../node_modules/abitype/dist/types/human-readable/types/signatures.d.ts","../node_modules/abitype/dist/types/human-readable/formatabiparameter.d.ts","../node_modules/abitype/dist/types/human-readable/formatabiparameters.d.ts","../node_modules/abitype/dist/types/human-readable/formatabiitem.d.ts","../node_modules/abitype/dist/types/human-readable/formatabi.d.ts","../node_modules/abitype/dist/types/human-readable/types/utils.d.ts","../node_modules/abitype/dist/types/human-readable/types/structs.d.ts","../node_modules/abitype/dist/types/human-readable/parseabi.d.ts","../node_modules/abitype/dist/types/human-readable/parseabiitem.d.ts","../node_modules/abitype/dist/types/human-readable/parseabiparameter.d.ts","../node_modules/abitype/dist/types/human-readable/parseabiparameters.d.ts","../node_modules/abitype/dist/types/human-readable/errors/abiitem.d.ts","../node_modules/abitype/dist/types/human-readable/errors/abiparameter.d.ts","../node_modules/abitype/dist/types/human-readable/errors/signature.d.ts","../node_modules/abitype/dist/types/human-readable/errors/splitparameters.d.ts","../node_modules/abitype/dist/types/human-readable/errors/struct.d.ts","../node_modules/abitype/dist/types/exports/index.d.ts","../node_modules/webauthn-p256/_types/types.d.ts","../node_modules/webauthn-p256/_types/credential.d.ts","../node_modules/webauthn-p256/_types/publickey.d.ts","../node_modules/webauthn-p256/_types/sign.d.ts","../node_modules/webauthn-p256/_types/utils.d.ts","../node_modules/webauthn-p256/_types/verify.d.ts","../node_modules/webauthn-p256/_types/index.d.ts","../node_modules/viem/_types/errors/utils.d.ts","../node_modules/viem/_types/accounts/utils/parseaccount.d.ts","../node_modules/viem/_types/types/utils.d.ts","../node_modules/@scure/bip32/lib/esm/index.d.ts","../node_modules/viem/_types/types/account.d.ts","../node_modules/viem/_types/types/misc.d.ts","../node_modules/viem/_types/account-abstraction/types/entrypointversion.d.ts","../node_modules/viem/_types/experimental/eip7702/types/authorization.d.ts","../node_modules/viem/_types/types/eip4844.d.ts","../node_modules/viem/_types/types/fee.d.ts","../node_modules/viem/_types/types/kzg.d.ts","../node_modules/viem/_types/types/log.d.ts","../node_modules/viem/_types/types/transaction.d.ts","../node_modules/viem/_types/types/contract.d.ts","../node_modules/viem/_types/types/multicall.d.ts","../node_modules/viem/_types/account-abstraction/types/useroperation.d.ts","../node_modules/viem/_types/account-abstraction/types/rpc.d.ts","../node_modules/viem/_types/types/withdrawal.d.ts","../node_modules/viem/_types/types/block.d.ts","../node_modules/viem/_types/experimental/eip7702/types/rpc.d.ts","../node_modules/viem/_types/types/proof.d.ts","../node_modules/viem/_types/types/rpc.d.ts","../node_modules/viem/_types/types/eip1193.d.ts","../node_modules/viem/_types/clients/transports/createtransport.d.ts","../node_modules/viem/_types/errors/base.d.ts","../node_modules/viem/_types/errors/fee.d.ts","../node_modules/viem/_types/utils/signature/recoveraddress.d.ts","../node_modules/viem/_types/utils/data/concat.d.ts","../node_modules/viem/_types/utils/data/ishex.d.ts","../node_modules/viem/_types/errors/data.d.ts","../node_modules/viem/_types/utils/data/pad.d.ts","../node_modules/viem/_types/errors/encoding.d.ts","../node_modules/viem/_types/utils/data/size.d.ts","../node_modules/viem/_types/utils/data/trim.d.ts","../node_modules/viem/_types/utils/encoding/fromhex.d.ts","../node_modules/viem/_types/utils/encoding/tohex.d.ts","../node_modules/viem/_types/utils/encoding/tobytes.d.ts","../node_modules/viem/_types/errors/cursor.d.ts","../node_modules/viem/_types/utils/cursor.d.ts","../node_modules/viem/_types/utils/encoding/torlp.d.ts","../node_modules/viem/_types/utils/hash/keccak256.d.ts","../node_modules/viem/_types/experimental/eip7702/utils/hashauthorization.d.ts","../node_modules/viem/_types/experimental/eip7702/utils/recoverauthorizationaddress.d.ts","../node_modules/viem/_types/types/stateoverride.d.ts","../node_modules/viem/_types/errors/request.d.ts","../node_modules/viem/_types/errors/rpc.d.ts","../node_modules/viem/_types/utils/promise/createbatchscheduler.d.ts","../node_modules/viem/_types/utils/promise/withretry.d.ts","../node_modules/viem/_types/utils/rpc/socket.d.ts","../node_modules/viem/_types/utils/buildrequest.d.ts","../node_modules/viem/_types/errors/estimategas.d.ts","../node_modules/viem/_types/errors/transaction.d.ts","../node_modules/viem/_types/utils/transaction/gettransactiontype.d.ts","../node_modules/viem/_types/utils/blob/blobstocommitments.d.ts","../node_modules/viem/_types/utils/blob/blobstoproofs.d.ts","../node_modules/viem/_types/utils/hash/sha256.d.ts","../node_modules/viem/_types/utils/blob/commitmenttoversionedhash.d.ts","../node_modules/viem/_types/utils/blob/commitmentstoversionedhashes.d.ts","../node_modules/viem/_types/errors/blob.d.ts","../node_modules/viem/_types/utils/blob/toblobs.d.ts","../node_modules/viem/_types/utils/blob/toblobsidecars.d.ts","../node_modules/viem/_types/experimental/eip7702/utils/serializeauthorizationlist.d.ts","../node_modules/viem/_types/errors/address.d.ts","../node_modules/viem/_types/errors/chain.d.ts","../node_modules/viem/_types/errors/node.d.ts","../node_modules/viem/_types/utils/lru.d.ts","../node_modules/viem/_types/utils/address/isaddress.d.ts","../node_modules/viem/_types/utils/transaction/asserttransaction.d.ts","../node_modules/viem/_types/utils/transaction/serializeaccesslist.d.ts","../node_modules/viem/_types/utils/transaction/serializetransaction.d.ts","../node_modules/viem/_types/accounts/utils/sign.d.ts","../node_modules/viem/_types/accounts/utils/signtransaction.d.ts","../node_modules/viem/_types/errors/account.d.ts","../node_modules/viem/_types/utils/chain/assertcurrentchain.d.ts","../node_modules/viem/_types/utils/errors/gettransactionerror.d.ts","../node_modules/viem/_types/utils/formatters/formatter.d.ts","../node_modules/viem/_types/utils/formatters/transactionrequest.d.ts","../node_modules/viem/_types/utils/transaction/assertrequest.d.ts","../node_modules/viem/_types/actions/public/getchainid.d.ts","../node_modules/viem/_types/actions/wallet/sendrawtransaction.d.ts","../node_modules/viem/_types/actions/wallet/sendtransaction.d.ts","../node_modules/viem/_types/utils/errors/getnodeerror.d.ts","../node_modules/viem/_types/utils/errors/getestimategaserror.d.ts","../node_modules/viem/_types/actions/public/estimategas.d.ts","../node_modules/viem/_types/errors/block.d.ts","../node_modules/viem/_types/utils/formatters/transaction.d.ts","../node_modules/viem/_types/utils/formatters/block.d.ts","../node_modules/viem/_types/actions/public/getblock.d.ts","../node_modules/viem/_types/actions/public/gettransactioncount.d.ts","../node_modules/viem/_types/utils/noncemanager.d.ts","../node_modules/viem/_types/actions/wallet/preparetransactionrequest.d.ts","../node_modules/viem/_types/actions/public/getgasprice.d.ts","../node_modules/viem/_types/actions/public/estimatemaxpriorityfeepergas.d.ts","../node_modules/viem/_types/actions/public/estimatefeespergas.d.ts","../node_modules/viem/_types/types/chain.d.ts","../node_modules/viem/_types/errors/abi.d.ts","../node_modules/viem/_types/utils/data/slice.d.ts","../node_modules/viem/_types/utils/hash/hashsignature.d.ts","../node_modules/viem/_types/utils/hash/normalizesignature.d.ts","../node_modules/viem/_types/utils/hash/tosignature.d.ts","../node_modules/viem/_types/utils/hash/tosignaturehash.d.ts","../node_modules/viem/_types/utils/hash/tofunctionselector.d.ts","../node_modules/viem/_types/utils/address/getaddress.d.ts","../node_modules/viem/_types/utils/encoding/frombytes.d.ts","../node_modules/viem/_types/utils/abi/decodeabiparameters.d.ts","../node_modules/viem/_types/utils/abi/formatabiitem.d.ts","../node_modules/viem/_types/utils/abi/decodeerrorresult.d.ts","../node_modules/viem/_types/errors/contract.d.ts","../node_modules/viem/_types/utils/abi/getabiitem.d.ts","../node_modules/viem/_types/utils/abi/decodefunctionresult.d.ts","../node_modules/viem/_types/utils/abi/encodeabiparameters.d.ts","../node_modules/viem/_types/utils/abi/encodedeploydata.d.ts","../node_modules/viem/_types/utils/abi/encodefunctiondata.d.ts","../node_modules/viem/_types/utils/chain/getchaincontractaddress.d.ts","../node_modules/viem/_types/utils/errors/getcallerror.d.ts","../node_modules/viem/_types/errors/stateoverride.d.ts","../node_modules/viem/_types/utils/stateoverride.d.ts","../node_modules/viem/_types/actions/public/call.d.ts","../node_modules/viem/_types/errors/ccip.d.ts","../node_modules/viem/_types/utils/ccip.d.ts","../node_modules/viem/_types/utils/ens/encodedlabeltolabelhash.d.ts","../node_modules/viem/_types/utils/ens/namehash.d.ts","../node_modules/viem/_types/utils/ens/encodelabelhash.d.ts","../node_modules/viem/_types/utils/ens/labelhash.d.ts","../node_modules/viem/_types/utils/ens/packettobytes.d.ts","../node_modules/viem/_types/utils/errors/getcontracterror.d.ts","../node_modules/viem/_types/actions/public/readcontract.d.ts","../node_modules/viem/_types/actions/ens/getensaddress.d.ts","../node_modules/viem/_types/types/ens.d.ts","../node_modules/viem/_types/errors/ens.d.ts","../node_modules/viem/_types/utils/ens/avatar/utils.d.ts","../node_modules/viem/_types/utils/ens/avatar/parseavatarrecord.d.ts","../node_modules/viem/_types/actions/ens/getenstext.d.ts","../node_modules/viem/_types/actions/ens/getensavatar.d.ts","../node_modules/viem/_types/actions/ens/getensname.d.ts","../node_modules/viem/_types/actions/ens/getensresolver.d.ts","../node_modules/viem/_types/types/filter.d.ts","../node_modules/viem/_types/actions/public/createblockfilter.d.ts","../node_modules/viem/_types/errors/log.d.ts","../node_modules/viem/_types/utils/hash/toeventselector.d.ts","../node_modules/viem/_types/utils/abi/encodeeventtopics.d.ts","../node_modules/viem/_types/actions/public/createcontracteventfilter.d.ts","../node_modules/viem/_types/actions/public/createeventfilter.d.ts","../node_modules/viem/_types/actions/public/creatependingtransactionfilter.d.ts","../node_modules/viem/_types/actions/public/estimatecontractgas.d.ts","../node_modules/viem/_types/actions/public/getbalance.d.ts","../node_modules/viem/_types/actions/public/getblobbasefee.d.ts","../node_modules/viem/_types/utils/promise/withcache.d.ts","../node_modules/viem/_types/actions/public/getblocknumber.d.ts","../node_modules/viem/_types/actions/public/getblocktransactioncount.d.ts","../node_modules/viem/_types/actions/public/getcode.d.ts","../node_modules/viem/_types/utils/abi/decodeeventlog.d.ts","../node_modules/viem/_types/utils/formatters/log.d.ts","../node_modules/viem/_types/actions/public/getlogs.d.ts","../node_modules/viem/_types/actions/public/getcontractevents.d.ts","../node_modules/viem/_types/errors/eip712.d.ts","../node_modules/viem/_types/actions/public/geteip712domain.d.ts","../node_modules/viem/_types/utils/formatters/feehistory.d.ts","../node_modules/viem/_types/actions/public/getfeehistory.d.ts","../node_modules/viem/_types/actions/public/getfilterchanges.d.ts","../node_modules/viem/_types/actions/public/getfilterlogs.d.ts","../node_modules/viem/_types/utils/formatters/proof.d.ts","../node_modules/viem/_types/actions/public/getproof.d.ts","../node_modules/viem/_types/actions/public/getstorageat.d.ts","../node_modules/viem/_types/actions/public/gettransaction.d.ts","../node_modules/viem/_types/utils/formatters/transactionreceipt.d.ts","../node_modules/viem/_types/actions/public/gettransactionconfirmations.d.ts","../node_modules/viem/_types/actions/public/gettransactionreceipt.d.ts","../node_modules/viem/_types/actions/public/multicall.d.ts","../node_modules/viem/_types/actions/wallet/writecontract.d.ts","../node_modules/viem/_types/actions/public/simulatecontract.d.ts","../node_modules/viem/_types/actions/public/uninstallfilter.d.ts","../node_modules/viem/_types/utils/signature/hashmessage.d.ts","../node_modules/viem/_types/actions/public/verifyhash.d.ts","../node_modules/viem/_types/actions/public/verifymessage.d.ts","../node_modules/viem/_types/types/typeddata.d.ts","../node_modules/viem/_types/utils/typeddata.d.ts","../node_modules/viem/_types/utils/signature/hashtypeddata.d.ts","../node_modules/viem/_types/actions/public/verifytypeddata.d.ts","../node_modules/viem/_types/utils/observe.d.ts","../node_modules/viem/_types/clients/transports/fallback.d.ts","../node_modules/viem/_types/types/transport.d.ts","../node_modules/viem/_types/utils/poll.d.ts","../node_modules/viem/_types/actions/public/watchblocknumber.d.ts","../node_modules/viem/_types/actions/public/waitfortransactionreceipt.d.ts","../node_modules/viem/_types/utils/stringify.d.ts","../node_modules/viem/_types/actions/public/watchblocks.d.ts","../node_modules/viem/_types/actions/public/watchcontractevent.d.ts","../node_modules/viem/_types/actions/public/watchevent.d.ts","../node_modules/viem/_types/actions/public/watchpendingtransactions.d.ts","../node_modules/viem/_types/utils/siwe/types.d.ts","../node_modules/viem/_types/utils/siwe/validatesiwemessage.d.ts","../node_modules/viem/_types/actions/siwe/verifysiwemessage.d.ts","../node_modules/viem/_types/clients/decorators/public.d.ts","../node_modules/viem/_types/actions/wallet/addchain.d.ts","../node_modules/viem/_types/actions/wallet/deploycontract.d.ts","../node_modules/viem/_types/actions/wallet/getaddresses.d.ts","../node_modules/viem/_types/actions/wallet/getpermissions.d.ts","../node_modules/viem/_types/actions/wallet/requestaddresses.d.ts","../node_modules/viem/_types/actions/wallet/requestpermissions.d.ts","../node_modules/viem/_types/accounts/utils/signmessage.d.ts","../node_modules/viem/_types/actions/wallet/signmessage.d.ts","../node_modules/viem/_types/actions/wallet/signtransaction.d.ts","../node_modules/viem/_types/accounts/utils/signtypeddata.d.ts","../node_modules/viem/_types/actions/wallet/signtypeddata.d.ts","../node_modules/viem/_types/actions/wallet/switchchain.d.ts","../node_modules/viem/_types/actions/wallet/watchasset.d.ts","../node_modules/viem/_types/clients/decorators/wallet.d.ts","../node_modules/viem/_types/clients/createclient.d.ts","../node_modules/viem/_types/account-abstraction/accounts/types.d.ts","../node_modules/viem/_types/accounts/utils/signauthorization.d.ts","../node_modules/viem/_types/accounts/types.d.ts","../node_modules/viem/_types/actions/getcontract.d.ts","../node_modules/viem/_types/actions/test/dumpstate.d.ts","../node_modules/viem/_types/actions/test/getautomine.d.ts","../node_modules/viem/_types/actions/test/gettxpoolcontent.d.ts","../node_modules/viem/_types/actions/test/gettxpoolstatus.d.ts","../node_modules/viem/_types/actions/test/impersonateaccount.d.ts","../node_modules/viem/_types/actions/test/increasetime.d.ts","../node_modules/viem/_types/actions/test/inspecttxpool.d.ts","../node_modules/viem/_types/actions/test/loadstate.d.ts","../node_modules/viem/_types/actions/test/mine.d.ts","../node_modules/viem/_types/actions/test/reset.d.ts","../node_modules/viem/_types/actions/test/revert.d.ts","../node_modules/viem/_types/actions/test/sendunsignedtransaction.d.ts","../node_modules/viem/_types/actions/test/setbalance.d.ts","../node_modules/viem/_types/actions/test/setblockgaslimit.d.ts","../node_modules/viem/_types/actions/test/setblocktimestampinterval.d.ts","../node_modules/viem/_types/actions/test/setcode.d.ts","../node_modules/viem/_types/actions/test/setcoinbase.d.ts","../node_modules/viem/_types/actions/test/setintervalmining.d.ts","../node_modules/viem/_types/actions/test/setmingasprice.d.ts","../node_modules/viem/_types/actions/test/setnextblockbasefeepergas.d.ts","../node_modules/viem/_types/actions/test/setnextblocktimestamp.d.ts","../node_modules/viem/_types/actions/test/setnonce.d.ts","../node_modules/viem/_types/actions/test/setstorageat.d.ts","../node_modules/viem/_types/actions/test/stopimpersonatingaccount.d.ts","../node_modules/viem/_types/clients/decorators/test.d.ts","../node_modules/viem/_types/clients/createtestclient.d.ts","../node_modules/viem/_types/actions/test/droptransaction.d.ts","../node_modules/viem/_types/actions/test/snapshot.d.ts","../node_modules/viem/_types/actions/test/removeblocktimestampinterval.d.ts","../node_modules/viem/_types/actions/test/setautomine.d.ts","../node_modules/viem/_types/actions/test/setloggingenabled.d.ts","../node_modules/viem/_types/actions/test/setrpcurl.d.ts","../node_modules/viem/_types/clients/transports/custom.d.ts","../node_modules/viem/_types/errors/transport.d.ts","../node_modules/viem/_types/utils/promise/withtimeout.d.ts","../node_modules/viem/_types/utils/rpc/http.d.ts","../node_modules/viem/_types/clients/transports/http.d.ts","../node_modules/viem/_types/clients/createpublicclient.d.ts","../node_modules/viem/_types/clients/createwalletclient.d.ts","../node_modules/viem/_types/utils/rpc/websocket.d.ts","../node_modules/viem/_types/clients/transports/websocket.d.ts","../node_modules/viem/_types/constants/abis.d.ts","../node_modules/viem/_types/constants/address.d.ts","../node_modules/viem/_types/constants/contracts.d.ts","../node_modules/viem/_types/constants/unit.d.ts","../node_modules/viem/_types/constants/number.d.ts","../node_modules/viem/_types/constants/bytes.d.ts","../node_modules/viem/_types/constants/strings.d.ts","../node_modules/viem/_types/errors/unit.d.ts","../node_modules/viem/_types/errors/typeddata.d.ts","../node_modules/viem/_types/utils/abi/decodedeploydata.d.ts","../node_modules/viem/_types/utils/abi/decodefunctiondata.d.ts","../node_modules/viem/_types/utils/abi/encodeerrorresult.d.ts","../node_modules/viem/_types/utils/abi/prepareencodefunctiondata.d.ts","../node_modules/viem/_types/utils/abi/encodefunctionresult.d.ts","../node_modules/viem/_types/utils/abi/parseeventlogs.d.ts","../node_modules/viem/_types/utils/data/isbytes.d.ts","../node_modules/viem/_types/utils/address/getcontractaddress.d.ts","../node_modules/viem/_types/utils/transaction/getserializedtransactiontype.d.ts","../node_modules/viem/_types/utils/signature/compactsignaturetosignature.d.ts","../node_modules/viem/_types/utils/signature/parsecompactsignature.d.ts","../node_modules/viem/_types/utils/signature/parsesignature.d.ts","../node_modules/viem/_types/utils/signature/recovermessageaddress.d.ts","../node_modules/viem/_types/utils/signature/recoverpublickey.d.ts","../node_modules/viem/_types/utils/signature/serializesignature.d.ts","../node_modules/viem/_types/utils/signature/recovertransactionaddress.d.ts","../node_modules/viem/_types/utils/signature/recovertypeddataaddress.d.ts","../node_modules/viem/_types/utils/signature/signaturetocompactsignature.d.ts","../node_modules/viem/_types/utils/signature/serializecompactsignature.d.ts","../node_modules/viem/_types/utils/address/isaddressequal.d.ts","../node_modules/viem/_types/utils/signature/verifyhash.d.ts","../node_modules/viem/_types/utils/signature/verifymessage.d.ts","../node_modules/viem/_types/utils/signature/verifytypeddata.d.ts","../node_modules/viem/_types/utils/signature/iserc6492signature.d.ts","../node_modules/viem/_types/utils/signature/parseerc6492signature.d.ts","../node_modules/viem/_types/utils/signature/serializeerc6492signature.d.ts","../node_modules/viem/_types/utils/blob/sidecarstoversionedhashes.d.ts","../node_modules/viem/_types/utils/blob/fromblobs.d.ts","../node_modules/viem/_types/utils/kzg/definekzg.d.ts","../node_modules/viem/_types/utils/kzg/setupkzg.d.ts","../node_modules/viem/_types/utils/chain/definechain.d.ts","../node_modules/viem/_types/utils/chain/extractchain.d.ts","../node_modules/viem/_types/utils/abi/encodepacked.d.ts","../node_modules/viem/_types/utils/unit/formatunits.d.ts","../node_modules/viem/_types/utils/unit/formatether.d.ts","../node_modules/viem/_types/utils/unit/formatgwei.d.ts","../node_modules/viem/_types/utils/encoding/fromrlp.d.ts","../node_modules/viem/_types/utils/hash/toeventsignature.d.ts","../node_modules/viem/_types/utils/hash/tofunctionsignature.d.ts","../node_modules/viem/_types/utils/hash/toeventhash.d.ts","../node_modules/viem/_types/utils/hash/tofunctionhash.d.ts","../node_modules/viem/_types/utils/signature/toprefixedmessage.d.ts","../node_modules/viem/_types/utils/hash/ishash.d.ts","../node_modules/viem/_types/utils/hash/ripemd160.d.ts","../node_modules/viem/_types/utils/unit/parseunits.d.ts","../node_modules/viem/_types/utils/unit/parseether.d.ts","../node_modules/viem/_types/utils/unit/parsegwei.d.ts","../node_modules/viem/_types/utils/transaction/parsetransaction.d.ts","../node_modules/viem/_types/index.d.ts","../src/auth/eoaauthentication.ts","../src/policy.ts","../src/setupmessage.ts","../node_modules/@noble/curves/esm/abstract/modular.d.ts","../node_modules/@noble/curves/esm/abstract/curve.d.ts","../node_modules/@noble/curves/esm/abstract/utils.d.ts","../node_modules/@noble/curves/esm/abstract/edwards.d.ts","../node_modules/@noble/curves/esm/abstract/hash-to-curve.d.ts","../node_modules/@noble/curves/esm/abstract/montgomery.d.ts","../node_modules/@noble/curves/esm/ed25519.d.ts","../node_modules/@noble/curves/esm/abstract/weierstrass.d.ts","../node_modules/@noble/curves/esm/secp256k1.d.ts","../node_modules/@scure/bip39/esm/wordlists/czech.d.ts","../node_modules/@scure/bip39/esm/wordlists/english.d.ts","../node_modules/@scure/bip39/esm/wordlists/french.d.ts","../node_modules/@scure/bip39/esm/wordlists/italian.d.ts","../node_modules/@scure/bip39/esm/wordlists/japanese.d.ts","../node_modules/@scure/bip39/esm/wordlists/korean.d.ts","../node_modules/@scure/bip39/esm/wordlists/portuguese.d.ts","../node_modules/@scure/bip39/esm/wordlists/simplified-chinese.d.ts","../node_modules/@scure/bip39/esm/wordlists/spanish.d.ts","../node_modules/@scure/bip39/esm/wordlists/traditional-chinese.d.ts","../node_modules/viem/_types/accounts/wordlists.d.ts","../node_modules/viem/_types/accounts/generatemnemonic.d.ts","../node_modules/viem/_types/accounts/generateprivatekey.d.ts","../node_modules/viem/_types/accounts/toaccount.d.ts","../node_modules/viem/_types/accounts/utils/publickeytoaddress.d.ts","../node_modules/viem/_types/accounts/privatekeytoaccount.d.ts","../node_modules/viem/_types/accounts/hdkeytoaccount.d.ts","../node_modules/viem/_types/accounts/mnemonictoaccount.d.ts","../node_modules/viem/_types/accounts/utils/privatekeytoaddress.d.ts","../node_modules/viem/_types/accounts/index.d.ts","../src/auth/ephemeralauthentication.ts","../src/client/networkrequest.ts","../node_modules/js-base64/base64.d.mts","../node_modules/@noble/hashes/esm/utils.d.ts","../node_modules/@noble/hashes/esm/_md.d.ts","../node_modules/@noble/hashes/esm/sha256.d.ts","../src/utils/encoder.ts","../src/auth/passkeyauthentication.ts","../src/auth/authentication.ts","../src/client/networkresponse.ts","../src/client/walletproviderserviceclientinterface.ts","../src/builder/userauth.ts","../src/client/walletproviderserviceclient.ts","../src/client/networksigner.ts","../src/utils/validator.ts","../src/builder/signrequest.ts","../src/viemsigner.ts","../src/client/ethutil.ts","../src/client/httpclient.ts","../src/index.ts","../node_modules/@types/argparse/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/eslint/use-at-your-own-risk.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@eslint/core/dist/cjs/types.d.cts","../node_modules/eslint/lib/types/use-at-your-own-risk.d.ts","../node_modules/eslint/lib/types/index.d.ts","../node_modules/@types/eslint-plugin-security/index.d.ts","../node_modules/@types/unist/index.d.ts","../node_modules/@types/hast/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/triple-beam/index.d.ts"],"fileIdsList":[[422],[422,423,424],[423,424,425,426,427],[422,424,426,429],[454],[454,455],[478],[472,473,474],[475],[480],[482],[517],[518,523,552],[519,530,531,538,549,560],[519,520,530,538],[521,561],[522,523,531,539],[523,549,557],[524,526,530,538],[517,525],[526,527],[530],[528,530],[517,530],[530,531,532,549,560],[530,531,532,545,549,552],[515,518,565],[526,530,533,538,549,560],[530,531,533,534,538,549,557,560],[533,535,549,557,560],[482,483,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567],[530,536],[537,560,565],[526,530,538,549],[539],[540],[517,541],[538,539,542,559,565],[543],[544],[530,545,546],[545,547,561,563],[518,530,549,550,551,552],[518,549,551],[549,550],[552],[553],[517,549],[530,555,556],[555,556],[523,538,549,557],[558],[538,559],[518,533,544,560],[523,561],[549,562],[537,563],[564],[518,523,530,532,541,549,560,563,565],[549,566],[77,78],[78],[77,79,80,81,82,84,85,86,87,90,91,92,93,94,95,96,97,98],[80],[79,80,83],[79,80],[79,86],[79,83,85],[78,79,83],[78,79,84],[78,79,83,88,89],[78,79,81,83,88,89],[78,79],[78,79,83,88],[77,78,79,83,89],[77,78,79],[472,473,476,477],[74,75],[492,496,560],[492,549,560],[487],[489,492,557,560],[538,557],[568],[487,568],[489,492,538,560],[484,485,488,491,518,530,549,560],[484,490],[488,492,518,552,560,568],[518,568],[508,518,568],[486,487,568],[492],[486,487,488,489,490,491,492,493,494,496,497,498,499,500,501,502,503,504,505,506,507,509,510,511,512,513,514],[492,499,500],[490,492,500,501],[491],[484,487,492],[492,496,500,501],[496],[490,492,495,560],[484,489,490,492,496,499],[518,549],[487,492,508,518,565,568],[99,106,109,112,113,122,196,282,315],[316],[112,113,122],[99,109,112,113,118,119,120,121],[107],[107,112,142],[107,111,142,318,446],[99,108,110,177,178,196,307,310,317,318,384,441,442,443,444,445,446,447,448,449],[107,318,447],[107,112,142,177,178,196,307,310,318,444,445],[99,107,169,173,318],[99,109,111,112,114,119,159,176,196,282,316,317],[99,107,318],[99,107,112,142,445],[99,107,112,147,209],[107,109,112,114,148,177],[107,112,177,279],[107,112,119,147,159,176,177],[99,107,112,177,282,284],[431,432,433,434,435,436,437,438,439,440],[99,107,109,130,140,142,201,216,219,220,228,231,233,315],[107,109,130,201,235,238,239,315],[99,107,109,130,142,201,220,231,233,315],[99,109,130,142,201,216,219,220,228,231,233,315],[99,107,109,120,130,201,233,248,251,261,276,277,294,315,318],[99,107,108,109,112,125,130,142,150,153,156,183,184,201,214,216,218,219,220,221,223,315,318],[107,130,156,201,243,315],[99,107,120,125,130,142,156,201,243,247,315],[99,107,109,120,125,130,142,156,201,243,247,315],[99,108,109,120,130,190,201,219,232,315,318],[107,111,116,125,130,132,197,198,199,201,315],[99,108,109,125,130,142,149,150,156,183,184,189,201,315,318],[107,111,125,130,132,141,156,194,197,198,201,315],[99,107,125,130,142,156,201,315],[107,130,156,201,315,318],[107,109,112,125,130,142,156,191,193,201,315,318],[107,130,156,201,254,315],[107,112,125,130,141,142,156,201,315],[107,130,141,156,201,315,318],[99,107,112,125,130,142,156,201,315],[99,107,112,118,120,125,130,201,215,260,315],[99,107,109,112,130,233,262,315],[116,125,130,142,156,201,264,315],[99,107,112,118,125,130,156,201,243,258,259,315],[99,107,118,125,130,156,201,243,258,259,315],[99,107,112,118,120,125,130,142,156,201,247,258,259,315],[99,107,112,125,127,130,142,156,201,268,315],[107,109,112,125,130,142,156,192,201,315],[107,112,130,201,255,271,272,315],[99,107,125,130,141,142,156,201,315,318],[107,112,130,156,158,201,272,315,418],[99,107,120,121,130,201,216,219,220,224,232,233,315],[99,109,120,130,201,216,219,224,232,315],[99,107,108,109,111,112,119,120,130,201,216,219,224,232,276,315],[99,107,109,112,130,135,138,142,201,218,224,315],[99,107,109,112,130,201,279,280,315],[99,107,112,130,201,280,282,284,315],[107,112,119,130,154,194,201,271,274,286,290,315],[107,130,201,255,288,289,315],[107,125,130,194,201,288,289,292,315],[99,107,118,120,125,130,201,286,288,292,315],[107,112,130,201,286,288,292,315],[107,109,112,130,201,279,280,298,315],[107,111,112,130,156,201,345],[107,111,130,156,201,345],[99,107,111,128,130,156,201,345],[99,107,111,130,156,201,345],[107,111,128,130,156,201,345],[107,111,112,130,156,183,201,345],[99,107,111,112,130,156,201,345],[107,130,142,156,201,315,318],[99,107,109,112,120,130,187,201,315,318],[99,107,130,156,201,209,315,318],[107,129,130,156,201,315,318],[99,108,109,111,117,119,130,159,179,183,184,190,194,195,196,200,201,315,318],[99,107,130,156,201,315,318],[107,109,129,130,156,201,315,318],[107,112,119,130,156,201,315],[99,107,108,109,111,112,117,130,149,156,178,179,180,181,183,184,185,186,197,201,315,318],[107,108,111,112,130,142,156,201,307,315,318],[107,108,109,111,117,119,130,142,156,159,178,180,183,184,185,201,315,318],[99,107,108,111,112,130,135,156,179,201,282,283,292,310,315,318],[99,107,108,109,111,112,120,130,179,183,187,201,219,232,277,315,318],[99,107,108,109,111,129,130,201,226,300,314,318],[99,107,109,111,129,130,201,300,315],[99,107,109,111,129,130,201,315,318,344],[99,107,109,111,129,130,201,314,315,318],[99,111,116,120,125,130,185,186,190,194,195,197,198,199,200,201,224,233,234,239,240,241,242,243,244,248,249,250,251,252,253,255,256,257,260,261,263,265,266,267,269,270,271,273,274,275,277,278,281,285,290,291,293,294,295,296,299,315],[111,128,130,201,315,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,345,346],[99,120,130,185,186,187,197,201,276,301,302,303,304,305,306,308,309,311,312,313,315,318],[107,129,201,315],[107,130],[107,130,201],[107,130,353,355],[107,112,128,130,155,353,359],[99,112,131],[131],[112,131],[131,201],[99,112,131,201,213,224],[99,131],[131,190,201,318],[109,131],[131,150],[112,119,125,131,187,201,318],[99],[99,109,112],[99,112],[107,112,114,134,142,143,146,147],[99,107,109,112,114,133,148],[107,114],[99,109,111,112,115,116,117,118,119,120,121,123,124,125,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,146,147,150,151,152,154,157,158,159,160,161,162,163,164,166,167,169,170,171,173,174,175,176,180,183,184,185,186,187,190,191,192,193,194,195,196,197,198,199,200,201,202,203,208,209,210,211,213,214,215,216,217,218,219,220,222,224,226,228,230,232,233,234,235,236,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,255,256,257,258,259,260,261,263,265,266,267,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,287,288,290,291,292,293,294,295,296,300,301,302,303,304,305,306,308,309,311,312,313,314,315,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,356,357,358,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417],[99,109,110,318],[99,112,119,124],[99,109,111,116,119,130,176,193,197,200,315],[99,109,112,119],[99,109,112,123,125,128],[112],[109],[99,109,112,120,125,129],[99,109,112,119,318],[99,112,120],[99,109,120],[99,109,112,116,118,119,125,126,127],[99,109,112,114,115,116,117,118],[109,130,287],[99,109],[99,107,112,139,140,142,143,145,202,203,209,210],[99,107,112,120,202,211],[99,107,109,112,120,202,208,211,212],[99,107,109,112,120,202,211,212,246],[99,107,109,112,120,202,203,208,211,212],[99,107,109,112,120,202,211,215],[99,107,112,134,137,139,142,169,173,202,203],[99,107,109,112,120,134,202,217],[99,107,109,112,120,134,208,212,215,217],[99,107,109,112,120,143,147,202,212,215,217,245,246],[99,107,109,112,120,134,202,208,212,215,217],[99,107,109,112,120,202,215,217],[99,107,112,134,137,142,169,173,202],[99,107,120,202],[99,107,109,112,120,135,173,202,208],[99,107,118,120,128,258],[99,107,109,112,120,134,202,208,212,215],[99,107,143,147,173],[99,107,112,134,137,143,146,147,203,209,376],[99,107,172],[99,107,169],[107,112,117,142,143],[107,112,163],[107,112,142,162],[107,112,142,143,145],[107,112,115,163],[107,112,139,142,143,145,165],[107,109,112,115,117,160,161,166],[107,129,151,152,153,154,155],[99,107,112,130,151,201,224,225,315],[107,170,201],[109,201],[107,201],[170,201],[107,112,144],[107,112],[107,112,136],[107,112,135],[107,112,135,136,139],[107,112,140,141,142],[107,112,138,139,140,143],[107,112,131,138,142,143,145,146],[107,112,135,137,141,142],[107,112,137,138,141],[107,130,201,235,237,315],[99,107,130,201,233,235,236,315],[107,142,143,147,227],[107,134,142,143,147,227],[107,112,143,229,230],[107,188,201,214,224],[99,107,214],[107,157,188,190,201,318],[109,131,171,187],[107,158,187,188,201,318],[107,109,112,125,128,182,192,201],[107,116,128],[107,109],[107,109,118,128],[107,109,127,128],[107,109,119,125,128,182,201],[107,109,119,128,182,201],[107,143,147],[107,112,135,139],[107,112,135,142,143],[207],[107,207],[206],[99,107,203,207],[99,107,205],[99,107,204,206],[107,117],[107,398],[99,109,315],[107,109,128,151,354],[107,128,153],[155],[107,112,142,143],[107,112,147],[99,107,112,142,147,217,282,283],[107,112,203],[99,107,109,112,211,393],[99,107,112],[99,107,112,133,279],[107,112,135,141],[99,107,112,119,133,147,176,384],[99,107,112,133,282,284],[107,112,141],[107,112,141,142],[107,112,134,142],[99,107,112,133,209,389],[99,107,112,209,382,389],[99,107,112,209,282,386,389],[99,109,297],[128,136,142,150,169,222],[107,108,109,158,169,171,187,201],[107,119,131,165,169,170,171,173],[107,109,119,141,158,203,418],[107,109,119,158,418],[107,109,112,119,135,137,141,146,158,169,173,174,378,406],[107,112,119,146,158,169,173],[107,109,112,119,134,142,146,158,159,160,161,164,167,168,174,175],[99,107,112,139,142,173,282,284],[403],[107,414],[100],[100,101,102,103,104,105],[418,419,421,451,452,458,465],[418,459],[76,418,421,428,430,450,452,459,465],[76,418,453,457,459],[76,465],[76,421,452,457,459,461],[460],[76],[419,420,451,465],[420,421,451,452,459,460,461,463,465],[76,421,452,459,460,461,462],[421,452,459,460],[419,420,421,451,452,458,459,460,461,462,463,464,466,467,468,469],[418,453,456],[451,459,464],[418,430,450,453,460,464,466]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"abee51ebffafd50c07d76be5848a34abfe4d791b5745ef1e5648718722fab924","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a4060be62fa16312d69679ca894bbc75e936299c9ea567cd627ceb9f58a7e34","impliedFormat":1},{"version":"e52b1eba70a7158ed3020f4667c8acfcfec26753bb47a135c9ad97e9c0c4dd31","impliedFormat":1},{"version":"2047167a1c77832c2fd51ad6323d98e1772cbdc40857883a03f930074bc3a129","impliedFormat":1},{"version":"b166e33cf8226ac8781899da244397e77e5b6528271339ce26ece0c2c7242d7f","impliedFormat":1},{"version":"a623d5cf7925e72dbf4602862499564389c7c3dc0ce049733cc0ec756a846667","impliedFormat":1},{"version":"d9028ded7b00c211d789db29f1b2d9d1b7600a4edcbbd087f1faf0495229d179","impliedFormat":1},{"version":"63634c0855e639ea7f609613d799bbb0dc774ec9f3242bc272c5567dc5ccd485","impliedFormat":1},{"version":"592f06c425ab27b4bafec624ef5b153cbdde9ac58f7113100a2da1c4309d1309","impliedFormat":1},{"version":"19c8ab51b4b07c529d95cd4d5c8d100a68dca247ec83a5097d35106fd8a7acca","impliedFormat":1},{"version":"bec1d0ac62cee9b4d1ea8b64c4798c59c1726668b76d06b68a206e0cb0ac76a6","impliedFormat":1},{"version":"fb4f06b2af9ee4b2d2be8c964b0a8f6dd260be9048488ffcf04eb5c0fcb8bf61","impliedFormat":1},{"version":"f185055f36d76e2df5eeb87ae1148a25a125be2bff2095e1bd39c1c7ce85a640","impliedFormat":1},{"version":"9fcb4ef8bf8955c4e9c81bdf4e239d4c0c22869b6cf6ce2ecc95743bf683cb9f","impliedFormat":1},{"version":"979fdebc12d30becce6a15e68d99bc8a2a470a8dcf0898ac9e2d241a7e531940","impliedFormat":1},{"version":"1824ad7d4259910646279d667e517334c0aa24d5c810e8ea6da756fc2e02372f","impliedFormat":1},{"version":"989e9060e220ff86025044ba3c867a83512a655b7cf6253b2bd682192debf390","impliedFormat":1},{"version":"8b1feb568c859feb59236e9723b7a86e2ff8f9a8f2012366ffd1798164dc2798","impliedFormat":1},{"version":"8fab988b0129e674afc0bc0e95329b4052cf027f5d5b5b3e6e92d055b5ba88ef","impliedFormat":1},{"version":"4fe56d524ab24c225668803c1792945053e648b4e8fa4e50fa35594495b56732","impliedFormat":1},{"version":"2652931b8f7dca9a57f21aeb25b5d46851dcf17e4d5ed54b9b57d5d26e647680","impliedFormat":1},{"version":"d364c8df7d52199f5d011b4ded96f36dd114b984f5ee2e50ffe7d30ac1ab4bba","impliedFormat":1},{"version":"408f9eb3c7a3533bf5f07e0cde110a5ee0702864795ee6727792520fe60320b6","impliedFormat":1},{"version":"ba79eb15c36ff23e352ef608ceb7f9f0f278b15ad42512c05eedbe78f228e0e4","impliedFormat":1},{"version":"4cd233c6af471432253a67ae4f3b43c85e58a71418d98c3e162a1dac975c68f6","impliedFormat":1},{"version":"aa77c7d8ddc961e8192bcaa92da140e1205f8aee78bfadead5f52b8844d7d05c","impliedFormat":1},{"version":"37e37d3a525a207efab5458069fd9a27a174d2dc3af729702c81729ca03a349f","impliedFormat":1},{"version":"592be78d9e29c468162ae5c0caacab93517a84b9e119fa43839d37c8a22c96d1","impliedFormat":99},{"version":"9fb7f17cc5582417ed2484bfc9f493ed8e9a7493e023f07d5486860c8acb5f6f","impliedFormat":99},{"version":"6ba794b0e290825b3869e05c4ce9e0efdc9d68eb34d8434d61b2aa798a224c4e","impliedFormat":99},{"version":"b979e09ceeae224e71344ca6258d8ebc93ffc28262678b21f3f872b6f613ae29","impliedFormat":99},{"version":"976cc1f58ff3f255fdb41bdaf18430246a1024f38741fc0d048edb30ad7f5099","impliedFormat":99},{"version":"4a82d200fce0dd902da81b36928ae5c3a366770bea8b52f39936f7f11432f879","impliedFormat":99},{"version":"46c1ab579dd5d88d2a6435859aa8439d27f3f249848a4a8ab650f77135ace7b6","impliedFormat":99},{"version":"a2e86477a12540ef9e439245b959b2d8b96d674d5215d154ff22ad26141f4cfb","impliedFormat":1},{"version":"29150e44771dac0aeb711badc04e08fccd01b46efc560bd6e01b96d746a3f26c","impliedFormat":1},{"version":"e09f096004d70d6e98f5e5fee165849b3944f706861cdeffce5339dfd8426db5","impliedFormat":1},{"version":"1ddd1ca692a6c656ade0a85c9a722b3679b3d0bf113b699908e0325cf3537dbe","impliedFormat":99},{"version":"a7a4ea3e08f0ca7139ef99db3be34db005406e795bdeaa519998ad4666c5dfb9","impliedFormat":1},{"version":"48c022acf7a664fc81a3296858f08e2f70fdd57404f2ccc88bb951dc94311939","impliedFormat":1},{"version":"7fbc4600e6ef98e81e3c44329fd0cf7c53eda75cf666b17a6e4666e93e1b0159","impliedFormat":1},{"version":"0a7c25930355abdf0926057044de0c8f910a3196af6126282dd2186898a7d13f","impliedFormat":1},{"version":"007dfb1f314277f6e211fec9c5f62fd182e3bb76f1fe1f165228a259ae0b91b8","impliedFormat":1},{"version":"a6aa3bd9c165acb07db158897587581d7b081ce4271579b720a94f95c8c487d5","impliedFormat":1},{"version":"904714e49891cc1e136cf104f4bc9adfc846be9bd28ac55e101145a0d8103b30","impliedFormat":1},{"version":"9b8ba907ff8c52756b1a0aeac192a22591ac9431ac688cddad8111c8fd5124a3","impliedFormat":1},{"version":"c8b56ebca7f7c08fb96a65b2dfcbc8a6efb10b9b9ff060eca55042428e25e570","impliedFormat":1},{"version":"3fede259ef5c9dd9a97e662da9f6774dbc82f390d29563319b658ebd7f958135","impliedFormat":1},{"version":"d74e6cdb7ac0a4d675d598a09c8deed53dcb11a4e32e344ad6a831663bfb60dd","impliedFormat":1},{"version":"269605a13c650dc3326bc1fa1c65fc05fd8507256c83710974d20e704b55c914","impliedFormat":1},{"version":"ed94531f5270503b60d1938fd4929ce0b719e402862c49fe624eb660f75cc901","impliedFormat":1},{"version":"b9c9c9352d6606fe440735ccad134563017fc5aff8dcd418c58f778437339f06","impliedFormat":1},{"version":"a77c74ba29ae0c5b355aa140686b95239f1e579e51cec743af252fe59a245563","impliedFormat":1},{"version":"fe6fc233bd0daead47deecc6903a5571edaa4a9539c7157c4580d26dcc37a48b","impliedFormat":1},{"version":"d09f6a6dab49823b554255030c4ee8d49a2a993bd02f2cff2e444b2627dffc5a","impliedFormat":1},{"version":"35c6081d0c246583d33f452afa7877652db95b9b9393520b2fc3753795a1bb8c","impliedFormat":1},{"version":"5f5186291de127ff03bc059587fc5d23ccc3e1cb0cd277d5ad5da2e0d6085887","impliedFormat":1},{"version":"1065c8e64bf4876e3f9caa626f4f71fe64b755edfd23db5ceca6accd9c313f1c","impliedFormat":1},{"version":"0717c1a24cd66da2d50833ba78f89d994d1ebe494e0105ac67caa1e1a32a298d","impliedFormat":1},{"version":"cf4bdd9324f9116bf29daf9add3fefe4e609be0dc3bdba1759cf1a6654047726","impliedFormat":1},{"version":"0b59bc43ab08b3bb00a8a4978683c872fe4c6c3206bc68316ff7a3cbe70d75b0","impliedFormat":1},{"version":"d3763a4abd763d825a766d636661ee3ec52fa8477eb63c243b8dcd033ba23789","impliedFormat":1},{"version":"f4377e81d50af3f689cc5dd2005be3b79dfbbcb3f5a0301c843e8daf1cc9ddda","impliedFormat":1},{"version":"ac1e8ae42e98e9a296d467169321f4cf8802643302f619b025117c4ed5a2d200","impliedFormat":1},{"version":"6641f18545bf0ce6aaa467607f6a19a2896c4a6965deffd9c8f586f00950f494","impliedFormat":1},{"version":"27c66f434db3a00fb5b286c88582f2da3a85a2108cdfafe9bf63fa6df206aa2a","impliedFormat":1},{"version":"e2ef2006aa0a9b806063cb510989bafad85e71f21cd7e25783b8876203594dc7","impliedFormat":1},{"version":"5683b6c327ab05195ba14856985488b486117687e3f1b94991e787b25fd6cbb0","impliedFormat":1},{"version":"32d08e56282b632a4ff2aabf97d8e2ca72c872e99453de231684f0347a46c41c","impliedFormat":1},{"version":"f26ba893d9cda649365c19c9929d53ba069d829caa98dea1ad3c90374704cf54","impliedFormat":1},{"version":"0f9bfdd25e2e13e6adf81d98a2909fe1a7ade6cdcd380bc7c9a259effaf3c295","impliedFormat":1},{"version":"4179d52fc45e3c72cab28cedf19d10a915522d5f3f83979e61213137bfc794e9","impliedFormat":1},{"version":"665222ab0b8547fa189b3b4bef8598ca271e552339f871fcd4d7e86f979b8145","impliedFormat":1},{"version":"2748451f1cb5d1594fec48577685ef0cdefea02fea292873b9ab74aa47ff57ad","impliedFormat":1},{"version":"cece3e0e89f3e9a526ce76bf9bf3aab41bf83a58d625558a671f9058b5e822e6","impliedFormat":1},{"version":"11854416213ad2da216b2c09af4a4b16129e051a25ed8f3148ac5e62814341bd","impliedFormat":1},{"version":"5f03bcd31cb6649a36edd547407ab86887ec3c41347c03f52179bc58017fda13","impliedFormat":1},{"version":"48ff4dab14889a41f5b0b94aacb853b96f8778888167625a42ba7a45250a15b7","impliedFormat":1},{"version":"92c35a5a8200e9d5a30c9e36eb7db062b3ca1e03309bd0ec3416714695cc6dca","impliedFormat":1},{"version":"657e5c36539693988464477fb47f7aedfa8a487fd95606671156d52adab81101","impliedFormat":1},{"version":"e3e20ed4715775989c0ee8c2be8e657503503ba75c03defe13b99dc317baf3e7","impliedFormat":1},{"version":"c2f1b0272966ba4ec45818b50813210e3abaa993664e26db5617df45672e49aa","impliedFormat":1},{"version":"6faca0f0e857cab15c7ec26f36dc28b73730b184ce942a25654bbcf4ece22f59","impliedFormat":1},{"version":"40273b09b5738abd52321b86f426893ef84f9da766f2206207c4d9bd6c5b7f35","impliedFormat":1},{"version":"4ab90837f0df1a6c8039689ea77d7d28a06eb1bbf2bc129c271e8a6c01a0f391","impliedFormat":1},{"version":"2c6fcafbedc3bf7e030fbda5acc875e0f2f98b253477105ef5cf0f674409b525","impliedFormat":1},{"version":"171f9f3da4589275b3ca1472e2ee0f32f4b16d5e2c41f79db8bb209433f30d67","impliedFormat":1},{"version":"0d7db9b74a017be10aa36509dd2ae4499260381aabc6772feef677fa16f3a1f4","impliedFormat":1},{"version":"e59ef219cec3c3faab54d5cb12222a04d3e095c84abf94088920c1584832ce43","impliedFormat":1},{"version":"786c15fcfa8b821410e278a740f9dc81c44546259d1cc0143646876a0c030cc0","impliedFormat":1},{"version":"99ea681335aa97ba7618ac3db69a2e2da87da7faf8a39f822030ec4db96ca023","impliedFormat":1},{"version":"d7169a2b449d5b8e309edd84624649d04b746be48fe93b2e69bb7a85653b1e97","impliedFormat":1},{"version":"c462479720ea1932e5adc0bd4808be8ee2c83488be1012bf48f4bbb532b63758","impliedFormat":1},{"version":"d72479ce8210c21451cadef350179fbf3729c0e29005aca2d7e0c6ad031a4afa","impliedFormat":1},{"version":"d0e0354d3d4ac41cb7a67c10ca59652f8cba9eeb0929fcc878e492691f73d02a","impliedFormat":1},{"version":"9e8cbec0dabed8a1d03ab57736738a202df26cfbe180db391347df78a0509fa4","impliedFormat":1},{"version":"fbe06770551602ccc8e240a24793a8268b1bce44de38c26a7710f7bf1702f9b5","impliedFormat":1},{"version":"e4859560e5d635efa084427db27d6e31780eb570c2a567e95ed12f3828199710","impliedFormat":1},{"version":"6f29c691b977d5fdebefbc109c896fa863e95ae4464d959cc1506f45ad01da8e","impliedFormat":1},{"version":"ddf805d002fbf463fe2e40e78a4c7d1773a62f18716ce452cc02ba185c6c9c0e","impliedFormat":1},{"version":"d7aeffb82f803488ad4f918929a3a980e387c64c395ea793f6167c9704d4502a","impliedFormat":1},{"version":"2ede90710bab4dcdef47b532a8b3a1d63b7c366b058e95c705e9d9634f29f445","impliedFormat":1},{"version":"887a73b0167b36d4aed6d2549b19c4bcc6f2f50248b20d4d10ee2a10ef0516e8","impliedFormat":1},{"version":"d5e5bec490256e96a14ee3ee62df234b39130673a78c7cc23cbbd62daa5bb09a","impliedFormat":1},{"version":"d1d43f6f1a6a766dabe2a6db17f737d2c0cdefd747fc52b70dcc4ee011d6ff85","impliedFormat":1},{"version":"62c9a85d5dc9da38e54f1d802b7b62b82170f3a4571e3c992f1db09f60dce051","impliedFormat":1},{"version":"56e14052acc507ace03e94e8ec6cc22c84a65db751f11ca20349a4ea396f72ab","impliedFormat":1},{"version":"1c7dde9d6e45e71504fd8ba6a9c29db164e7a8040bc1782c2a80a3098d0a86c8","impliedFormat":1},{"version":"916e966405a9923eef3123175b1d31188945917edc14027ebe5df1c1f4ba0c70","impliedFormat":1},{"version":"d742f86f826cd1d46f45cc6c106cf34077b10239da02393fc2b6a6490bb4059a","impliedFormat":1},{"version":"e9ce8ab614cd43c203bdeedd6fb230c64d62dc240c7384d962fe39bdb0ed16d2","impliedFormat":1},{"version":"639e7fd024205c3c4af58bb193c1d7790618fcb8b70e9b15068c647ab729ee3a","impliedFormat":1},{"version":"2c26bbcb3898665e821d93f28d9c4b7d712ca23743d8a7a9d89e2aec794bdf40","impliedFormat":1},{"version":"c0e0fc040511ce5af4e546fabe949945c67507cf1f1bc7211448f2e6832bf0bc","impliedFormat":1},{"version":"112a590883718f00a1ce9fe88e7140fbe4c2c3ff30fc2dc797c0c2fe6a47185e","impliedFormat":1},{"version":"e6f70e3c94d2b1d7c5112ad6df2dd7c2ae5dc81bc89510bbdd4478614cf80594","impliedFormat":1},{"version":"146e5c86d78b4a7ff6dcaf9835b3a6a639dd414d21a30c69df5183bca5596d15","impliedFormat":1},{"version":"713472b1fbf211215a59f78d2b351a77b06d441d7bb7e69c45fe49f8d4784333","impliedFormat":1},{"version":"2e24d2d878e6b0e745d3814ccb2186520c6ffc6b3ee3facc329741c100ff42ae","impliedFormat":1},{"version":"b1dcb886b03955cb52ada9b74a8706b2038a3b028e1bd4b41343d6dec6cc9160","impliedFormat":1},{"version":"00b9f288c0a241fb4316737af41e0ff0e64be1c03c90640bc3a9f1449742ca9b","impliedFormat":1},{"version":"f392ed5b86fb56157e08a5fc1859506f8bb20f33a1a6d5922833e2c7a268a7e4","impliedFormat":1},{"version":"7f70f7d51c3232d6e7546bc8f9d6b91df3a9e001de4c755771dd052d9fbc9a07","impliedFormat":1},{"version":"175cdf7e9b2d7178e5b73a4f3dea1f02abe320f6585ee8a6c16991c92e4220e8","impliedFormat":1},{"version":"ef6b222405d44c0dcdea4b8ab7d3aa2ac0258995520c3ad2efa0fe161137807d","impliedFormat":1},{"version":"c6c694fe37d60819f29e998c03d875609d07a2f3d2a280d096474823384bff70","impliedFormat":1},{"version":"1a176b3032ec0fab791c658844c3c1d3df8fbe985b194858c8b31d736781942a","impliedFormat":1},{"version":"82e5bb555d1f1b9344b367e2761eeca6609ff1bc69908d779660e0ddb1c192c3","impliedFormat":1},{"version":"37bd33bdc57f46ff75b573c30c162cf2d1b5e160c230225d349ab01501e3a9b2","impliedFormat":1},{"version":"ea87e08b2a990ff767bcdc40e99eff30028d98af8d401f14b08974223c58c06a","impliedFormat":1},{"version":"389a2c2135dd3de1844b996d661ef3a5ffb978356994841fca0f0a99b1728e28","impliedFormat":1},{"version":"a582c8844a6809984a681db3997068d5d8144bee3f889c5240c559c5502c165a","impliedFormat":1},{"version":"e0494aecf0482850786831665c0f976125882c17084022efc6f8a51443b3a7f4","impliedFormat":1},{"version":"ede7ecc62da0236596749292448b282d9c5e846c95e107d6e87720204b792250","impliedFormat":1},{"version":"557981373fbd676739d62fb4aa7b601a639bfb39f7b563ab2c9a2350aa5d7298","impliedFormat":1},{"version":"078045f76bc547eeae562dde79c81e2565be6fecbdbbc4bfbd03fd16cfcad523","impliedFormat":1},{"version":"04783d0830346173973d5283d10b91fd7d6c1c0aaacd93a95455ddedaac4fc0d","impliedFormat":1},{"version":"6185cad87bf4da80c49a2f7a06af8e3e47eab0bfb31a9bf49520989b1b86056d","impliedFormat":1},{"version":"c002bfb107918122bba26d8d0736f293b22866dadc501f9ce27def3230233be5","impliedFormat":1},{"version":"131906682a56016d19849546fc5f9e0076b4e35bc2c5af362d79a50998215d4d","impliedFormat":1},{"version":"ee0c30ecd200ed26166dc9f9ca3f502e5584d61912f894563c7db45292b5833b","impliedFormat":1},{"version":"64248331a3a1c684ca70489fb8a94e48c5ca8bf86a5fb99179341edda11370ad","impliedFormat":1},{"version":"fa2d827d435777dbfc4a41a70d836b6a401bea8f77903cc22f939425f9da0b8b","impliedFormat":1},{"version":"8a59602dc83ec951feaf5cb7125393d3ebe38914c921e07ca0383a63857435d8","impliedFormat":1},{"version":"0654c77e8427f5125066d551e5f7c273735a92f4e7a2be6f12daf46ffa92ec3c","impliedFormat":1},{"version":"6f2a826f77810913e18a6a5ac87e5783f600961d4d7bc20315db13f69e2280de","impliedFormat":1},{"version":"14e3d141c66a44d32beff51678ba0abd236e18c520b12678a73936e78955cae2","impliedFormat":1},{"version":"bcc4218ae8d2f99608412f5917a663c7c764da0dd63be12d01ec49bf0148fe70","impliedFormat":1},{"version":"4136928c1cc5825cd17ecce5ae4a1671cf0047679e452d4886cfb33e74fed5c7","impliedFormat":1},{"version":"21f4388f6d904f8b0d17565fb331eb25d0f2af0704ed7d6247af4cc9631f7c67","impliedFormat":1},{"version":"546b944e81166843668e7b7a1153ccd1e565834ffc29e1df38aa6d26de9e1c81","impliedFormat":1},{"version":"47babc7ab6a3990895b389d6651d1841a17d7c7a9a57f86c0d72fe8d9230230f","impliedFormat":1},{"version":"f8d0e96fe8f2cbb5e617eec5f198ab78e13ba2c66176ad202b287aa3cc667e23","impliedFormat":1},{"version":"1375b2b59bde71a963ff2cb306eceea05060ded0b7cbcdaf1206e4e8245e605a","impliedFormat":1},{"version":"f5dcef5516ecd8836256359ed4b9c6bb8c73fcce697d1c343b11ee8e7fd15a8a","impliedFormat":1},{"version":"e55a68bbc963c9520f0492892d642fa145d34a351d483cd144a11e3346c18cfb","impliedFormat":1},{"version":"da14f80dc904a20fe5a98009f117d8f977ad6d50fdab685e75d6b38322ea56cb","impliedFormat":1},{"version":"ca90e5e191954b9b8c43ed5d5bc787107c071315c4acaae515e7d918e8814e15","impliedFormat":1},{"version":"8ef0c5c7cba59cbccd0ac5e17ec42dc4a8250cd267f9cdb08a4dcb1a099068ad","impliedFormat":1},{"version":"63ed74c721b55f614bef2b233b03c7e56377b0e38ea16f1dc3fc57a06ce2ca8e","impliedFormat":1},{"version":"c89dff0cb3845b6234ce201e2a2d8460d08dfdae2b5a5b137e17822b31188752","impliedFormat":1},{"version":"b30336ed279a38bc62e5678bf19efaf6f414bfbca31e4550932d59d810d654d5","impliedFormat":1},{"version":"1f142b1a6a8b7b29da43a88c8a5f6bbad28f7cf1b67457596ab6d71bed584e8a","impliedFormat":1},{"version":"a203895f2d4b51c8799af4a17e6d72657c6dfdc4a08ab338970e257e5e083d85","impliedFormat":1},{"version":"c67a3535fe218dac271adc4d9c91cabbcf99d09081dc3fe3567e3a354bf632e2","impliedFormat":1},{"version":"7670372101b08f0d0a2a8cf4d107d969df407a74cba20e9f3991b50d9d3c590c","impliedFormat":1},{"version":"324c0b50e53b8b0dd54dc0f50f0154e3e6fb17608df73de0803b5e9a532cf2e2","impliedFormat":1},{"version":"fe831d90ec6b5e04075ae831936f1e2049cce2473ad1aecf3d5ee37d66ea84cc","impliedFormat":1},{"version":"93b5102a702eb62880ae6fb3be2eb6910694ccf77a2e9063eb5d94bd0b2b32b2","impliedFormat":1},{"version":"0cb25d82f88175135d0827f552720abae64eb9863cba71e0b6ea6e76cf0da3d2","impliedFormat":1},{"version":"d0622e1a5d9ee2b4b8a1a6db2c0f02fc34f4f865d7ece6ec86800074210d2f4d","impliedFormat":1},{"version":"5300e082fe9398613c3b5a4975df67318951c46b4a033d159bbe082793ca2c3a","impliedFormat":1},{"version":"be05176f0f7347f4a9faed9a400c182f107b7499d79f4c6e67ec3d830ed6cde9","impliedFormat":1},{"version":"498b8e59b7659c0ce11ce3323bd0d23c923e21c7290e5bd96ce0f3ca639fb4fe","impliedFormat":1},{"version":"740bf9b794f8fcecb6c3761598372f16a7835dddb4c163a21ae0c7f472dc6bd3","impliedFormat":1},{"version":"12816e95a6bc1b4a98195c0e6747b33cfd178f0424579a3eb21b49911283f79a","impliedFormat":1},{"version":"ccc9e8f887951895386cafcff62aff2617397584ce48ca891646b901272b9d12","impliedFormat":1},{"version":"bffc26bac30d45f1e5fea885f17cafb6a943bcc21fd1122c71b9fe466ece8fdf","impliedFormat":1},{"version":"3f2a3b143fafe71c581c13fc479dba5b0b7ff34993f87b9085d87575b53fc993","impliedFormat":1},{"version":"81580d0db97bc8f13bcf79cc7a97e9606cca948df6f0b26e3084d5db0a41089e","impliedFormat":1},{"version":"fd4ddb3d82b68edf2f7dd1b10ca66c5b108007c46067d0dfac4167a4492577cb","impliedFormat":1},{"version":"8c5414d8170f8fca7d8cdf74dba186370e35cc895c3e25f10ce42fff3ef9b49d","impliedFormat":1},{"version":"2caa4ad00b1f3ca5b07ff3d84beab2d9a4a8d841b677aa1546b78054a890a902","impliedFormat":1},{"version":"c96415ec4a5ff2202c8f5db2b8163a605100b6b47435c5b31d8280e06233958e","impliedFormat":1},{"version":"93b1c61409fbf44c4e666937c0cacb36d006b9901a53a2750e520f6ba9b1fcc2","impliedFormat":1},{"version":"981af6a24b8e1531dd933ff6df096a7a50dfd79f24c5e5be1134b684465a807d","impliedFormat":1},{"version":"d3b51ab522194f5ffd145f57fc2b2017e35d11593a8a5468fd3da7767dba0d57","impliedFormat":1},{"version":"85e1ca7719d73273b0b07356071e046f27c039441666504e6143600f0f5de5eb","impliedFormat":1},{"version":"7c682517ded1d1e4ce341feb36a731499ed7241ee93de83aa2010d4f7add0555","impliedFormat":1},{"version":"f68e3a3eba1a531a71c8cb53bedafae2c25c376c147e3bc6ec96613a5de9dc84","impliedFormat":1},{"version":"d34648e4d5c8ccbcb2f5ccb5fa039e3be364ec95b0ef3a3750891e204c4bc3cf","impliedFormat":1},{"version":"367ef08f1d0de5ec4d4786cb8a1b8a17abf395bb0c5f8d151ec10fb66a2ce50e","impliedFormat":1},{"version":"ede4a9299b475e71baffcfd20b9b5056f77b8da69e7c824692fa7601be181ce7","impliedFormat":1},{"version":"c92c476c4463a4a96da5ed77010afd4bfa94944e298359bbff940cdde33c5f16","impliedFormat":1},{"version":"a484890e7212977036ce5965e7ca7b49e53436a66906a29093f91d4e02260fdf","impliedFormat":1},{"version":"4ea2003d86a9c68928ef069ce548c3e6ae35cbcb34184a71f1c566dde2160cf8","impliedFormat":1},{"version":"f727d3e75bfc036625d6920c725a3e4cbc564eef78f47d6b68c6351bb480d799","impliedFormat":1},{"version":"a87fcc9011e8a5e244d6e9af4902c315670aa852fa75dc82ae7cb62f98233a1a","impliedFormat":1},{"version":"b4eb4fd0fbf957fdb34dfc602b1dfd50c9dd20b9750e888d71351c2ebb143f43","impliedFormat":1},{"version":"90afaa269677aeb839cc0e7479e0c3152248e4c8b440954b66a0e13fff08d64b","impliedFormat":1},{"version":"e97434f04631c027264a37897935d5686cbb53547128043f8ce9df36a62f8456","impliedFormat":1},{"version":"49d38dec73850de29da6e77ac4636b7195d18ef7c7695851a2f2fe9fca859323","impliedFormat":1},{"version":"2b881659708008e1c27269e1eb8dc476af0c2ab2f1fbf50f6e5f8cb6758d8b1f","impliedFormat":1},{"version":"278c4281561f930857b40f04b092fc2a5649076ee00ecb6c1cb9d4abed3ad239","impliedFormat":1},{"version":"6d1f9b3f050467c2cc5292d2762b0ede9d605fcfff152210426da2eba607e1af","impliedFormat":1},{"version":"8f8c6a79e620f8a63952de19f38927f7da119cd0a5408d7289532f68b8017d98","impliedFormat":1},{"version":"bdf518ed49e9ad6926ecaee24a183828a23a061a1dfac8788cfc09da02a0bf91","impliedFormat":1},{"version":"c83ae875a44933a76a37949bc96569a414f5fd74f4089edcb4caad0db6bd7e6c","impliedFormat":1},{"version":"69870c54caf722bc568fd348b5e813500e964d820c7482bdb82d94d5aa6f19ed","impliedFormat":1},{"version":"504ffacc3312189dad74385206715390bd98e424aff384f67b21331bd16cf7e3","impliedFormat":1},{"version":"1870eb1fe1a14d19041559a003bb79753347b6da6d87703548b6b20faef30e6e","impliedFormat":1},{"version":"ed93611af4d148d789edfc67fd414195505a89691438ee261fa65d55bd66da0c","impliedFormat":1},{"version":"58ed0a6574485bcf18d4d775084258ed49f7b92ac9f8735488d19ab14bc6db88","impliedFormat":1},{"version":"02aeaa95c9b6125f8b6e5bcc16fc6df7d8f2bf945801defb73e1c13e1fe57c51","impliedFormat":1},{"version":"84a2bcda31149b3f26522b044a8aaafe6818000d81ba296f375ba4bb1d5b9859","impliedFormat":1},{"version":"fe995eb8b806358aebf1e963824ea181b2fa9cc52e2dc4022eec67730b742753","impliedFormat":1},{"version":"52db5fc6d8fa0809b2110d96434a06ad26776677e825a10f93fe133497f6c93b","impliedFormat":1},{"version":"d9411ee7bb83d2304f0fced054eef996c5fbc2dfee2936c42c8696f0ce1b5b51","impliedFormat":1},{"version":"cd6315088d4403254ff4a59c32c25c8588d2533f07a1204e0ec0a132e5d31395","impliedFormat":1},{"version":"204ef1918267feb2040caad874caebd9bbf4f018367517750eeae16d880b0698","impliedFormat":1},{"version":"f6e8311e83274671b80860cb83c1c6393971d596200c4fc504ac7dd3ffa50340","impliedFormat":1},{"version":"c4117a326ced8cc18ed60273de14f4c5e78a53cf2c59092f6278a8afca8d9ced","impliedFormat":1},{"version":"34787d4cfe21491065b9e8c3038a66c78747dc97b171b1201ff3913f2181e5c8","impliedFormat":1},{"version":"fe4c08b22b011d68b3625c665cc302f77bb8aed4b35853a53e3efaf082bc8e83","impliedFormat":1},{"version":"743e3303fed6823026dba4b34833ee6b59779678fd7daf64e1e9049114016b1a","impliedFormat":1},{"version":"7caae0b58bdfbedfbdd1a2f5b41779a08cbf62d62f7be63cd70cc71fb97165a0","impliedFormat":1},{"version":"b611b2a0b82dc6e520bc8c6698c0bf4481aba89c4923450f0753c062e4754c7e","impliedFormat":1},{"version":"68a9e5bafbcd95d796eaa02666490d05b3344ef667110560f07ad53bdd9d4d95","impliedFormat":1},{"version":"dcbc3cecf73f68c9d63280f3c9747bc6140b1eb9d8b5e5f04de58ea67c564a70","impliedFormat":1},{"version":"57f6aaa7e079189a64c2b15909cc89aa4a6f54c81b185108e906deeffdee1516","impliedFormat":1},{"version":"7b86682a3abdade9ceed5cfb5503097496223b93fc257de6795c4736efa841c1","impliedFormat":1},{"version":"07afa56980800740ec44e0b2e08d37d31c3ba1bcff58417ab7c26478bc37e4ac","impliedFormat":1},{"version":"02b6175908b56ca273252e8f734cde6cbc88c298384f4b397e63e41240184dc9","impliedFormat":1},{"version":"59fdde76b9d1518ee3a6711b14dc0b7582b7f9cf702c0cb8acc0bda3aef9e1bd","impliedFormat":1},{"version":"0a20f875729ca5de76aa486ba9cbb1913e349ae2d7d1c2e1ad3b45e142ca815d","impliedFormat":1},{"version":"477b09f880a9f9364b68fe02e237f3779fbffb0761bfbc3f77fa895ca49c44ce","impliedFormat":1},{"version":"d85a0edc67a11fa750331746b55fd5af4b41f1bd11e550ff7090abc9e9f83ebc","impliedFormat":1},{"version":"666732d3b18e0ae093bc48e5cd08380a7fcc64c06b7d8d0b4899567c5de7f5cb","impliedFormat":1},{"version":"be789dbab62f36a20dcb50cf0e67d0ef6b3e3cac17bc0aa9bb30bbe51756ea63","impliedFormat":1},{"version":"202596f2a7cba63ba07d482e8af95b70ee54da4c177643afdeed07bf28c5997a","impliedFormat":1},{"version":"d1658de6ff4ccce2e9cfd8b11722a6279bd3524644d0b65e3e8fc6b69b5ca49a","impliedFormat":1},{"version":"dd751fbe8122c04b3f1686647424f16034ffbada51dadbcecd0dc828ab75e66b","impliedFormat":1},{"version":"4091c43b763549c33d662afe79d75c078622bef954d4a473eca6aef8c251c169","impliedFormat":1},{"version":"c6d04e229bb0767e5c49465fa0e8e242749ea9d6f5fd48580e0759dd202689ef","impliedFormat":1},{"version":"402c1b5455a8fa4f474bf64354f72af7c01e4ad9b1685e3063216b95167a3fdc","impliedFormat":1},{"version":"df38d6066bcf7ef916b9e971e9c92d3f54c12a21235fa5694062bb57f6a028c2","impliedFormat":1},{"version":"5990d3194dafd93fc7a9e51032d11a57756c31fdcd88fac3b9be08af303972c5","impliedFormat":1},{"version":"987562ea1c31f04677cd3b46cbd4cdc6363f6178dbfd4db2a0788fe22947b8a5","impliedFormat":1},{"version":"0de5e8597a103c005b774f8892352a5f123a5e272924fe967b7d82305113bc4d","impliedFormat":1},{"version":"16185bd9e115626e25bca46fb8238f9ef3706c22b62ce940ae66c4e4cfde0df9","impliedFormat":1},{"version":"5711b07fe1b6426486276dd67efdee7ec4e70bcfdcaf39c6626594bbd7d51c34","impliedFormat":1},{"version":"7f81c91c6febbd59728630098f6f2b1e4afeba6af9128645634520d5681096a1","impliedFormat":1},{"version":"269296ab0ca6cc30fad3ccb911b1ff589d4a2c6ea7077c26c7ea5fe650103d6e","impliedFormat":1},{"version":"a49ef7664e1afe51062e193f0008ed621d8a3af547d994123ca44dbbb68c75a2","impliedFormat":1},{"version":"165ee417439a725fbd0a04278830c1056354556188d6000e5dc8ecd12cd3cb10","impliedFormat":1},{"version":"9539893a03d2cf718e8c38adf1a845ec0183ab455c8b257c64cd6727f57b0e1c","impliedFormat":1},{"version":"5e0f0b5968cb81b81847619fb6643f364d0eeb630e575fd0029d22c1171b3a37","impliedFormat":1},{"version":"45fb63c6d3a608b091c3baaaafe97de027a061e2f10813aa97d003b654417ed9","impliedFormat":1},{"version":"9a1bce80c36643bbc3e66c7db014c849b81a1d2d3ebfa69000f03e64545566a0","impliedFormat":1},{"version":"f438823b9ca13c413beaee87829111be171b305995bcf71d67ddd941de6dd999","impliedFormat":1},{"version":"623e7ec6876645a7e93a1a67506f3852b8e5e79ba3cb4c9a90ff8a24d3377a12","impliedFormat":1},{"version":"0ddba574bf51b1e47c502caa07ff96528b0c49878c2521ceb322a94557a824ee","impliedFormat":1},{"version":"3111b876a50a391cac841049c1683d20bf7d83eb05d5ff10b0a49689ca0dc49c","impliedFormat":1},{"version":"de84187571b3fb57d7d47f3199fe75845d024fa2c4aeb0a8bca8a281e37e9b62","impliedFormat":1},{"version":"4e302b950595396f49e539c733b44c52b77a9d3b85cc7c6fd24fcc7df1e30031","impliedFormat":1},{"version":"668eb6f044ef3e07635b3da9b29413de381299f80fdeb90e3ba5bea910d9d588","impliedFormat":1},{"version":"f75b6da37adf4f4fcb1b3e6e30099d345bfcfcc2024dc304bf6eaf40ed477c5a","impliedFormat":1},{"version":"39701d3533318e98924f5e5a4fb0ea5b49527853ae63e78e26190955c1ba4d62","impliedFormat":1},{"version":"30cb04bc8d380ecb7053659c2b42b48f87ffd05af3abe9f7b4783e07777a8d96","impliedFormat":1},{"version":"96847849b0b8472d06b023c7f6fd630cb5cb3e6129bf16c6ce58a931084c1d04","impliedFormat":1},{"version":"f15bb0a6bb20f0a494969d93f68c02a8e8076717fe7dcda6db06ab9e31041c22","impliedFormat":1},{"version":"84e3928255909a8e580fca688a15fbedef5c190e5d1a8da1dcd99afb6a40e617","impliedFormat":1},{"version":"58b8d98c9e39b0a1bab10c9a19a61d9fcac111aba5a6ff47e86525c079ddcbbb","impliedFormat":1},{"version":"a69abca4388cc76962773b4c869d5d34781cf0be92853d7bec53eac7a2f75c60","impliedFormat":1},{"version":"471b5d5986eff907c7f4b7047b54c15648495f94e219a27fd8cc91f35fa0e970","impliedFormat":1},{"version":"75cc2a2e33c7d3fe1574d9c93712950b5556dd4af48a1d1e5a657c66ff2eedf9","impliedFormat":1},{"version":"05c44f2a752cfbef15a81e90bc63eb96efcd3d07dd9b378df5a150a06775a2fb","impliedFormat":1},{"version":"9699ff431424e42dfeeb6417ea7b4d1ed66fc6bfc530748dfedebd2683fcc1b6","impliedFormat":1},{"version":"496197b06b51aeae8323da87d042ed2224e654994a3d9b5e3350df9c9576dc50","impliedFormat":1},{"version":"9d744f7d5a08aa240bceb2755dc8c6ee681cad5e818009162e69ae915bba6b77","impliedFormat":1},{"version":"86b7e0f835e2d550541c27e03abf5270a42f5876e1e915568289142b317a0ffd","impliedFormat":1},{"version":"ac6990a9034baddaf28cb15200bd2f0a46efb118d08f4d341abc16669ad577a1","impliedFormat":1},{"version":"29faa0f1ab122161019ca07b328664d62b5b1ec742606fa5b34851603a49a77c","impliedFormat":1},{"version":"0e07fb22607b2eda1883d4521080a5a29ef90714c1ae598e53eae0b94bf1bd10","impliedFormat":1},{"version":"52cb5d5beedcff01d5b851653cfdbe9a8e8e953a8462a357e71d93eee3ed760b","impliedFormat":1},{"version":"ba6d810e67aef7d6ed15cdd8223d5a207a111077c88d99ce7af5fe959a079803","impliedFormat":1},{"version":"3e02766c76edcd0486eeecad81ca4982a532a80293d71a8d94973e89feb5be2b","impliedFormat":1},{"version":"34e45896ae4bd8f3b44772aae2989adf64febd060810a9e08fc72b07778e58bd","impliedFormat":1},{"version":"e9d1e246d3a0510d5ca97f6c154d00bed351359b868294905efe98052ec6bcda","impliedFormat":1},{"version":"5668bff27e260e0a51ee72b7e0f6e69bba542b8a69f553c30d86e124adf479dd","impliedFormat":1},{"version":"1b4262a15a86e72e78d7fdbb6a6d20e8794f7fa4aa7c54f0b18ac7270e4fab08","impliedFormat":1},{"version":"9334b283bedfcd488ccb33b3e942905c86fa163e919653a5379eb8f28a2d5f7d","impliedFormat":1},{"version":"f3f62eb4cf38d86cc7f56d0879b49656a21f2eef4fd0acef3936889327d7f256","impliedFormat":1},{"version":"e32c5cb1819686336a2101f31b91c2e8e06f8f8311abd1195c203b81b62247b0","impliedFormat":1},{"version":"683734687779547527b05fdcef60947f6fc51758185d788531e9ac7bde84fd6f","impliedFormat":1},{"version":"c418f31663f9aa18537f6443172821265c078de18427ff136a24c536e76b7fc4","impliedFormat":1},{"version":"dc14049ed7aab615142091af18c8033550203d91c18c5ad2101f891b877cf265","impliedFormat":1},{"version":"1df375435c44c94f1bce343de4ff81b8c82e644d6b33a801bc6cf4beceb76b71","impliedFormat":1},{"version":"fed5b5c20508c5f84a929161f452dbf769cc2d2ee1371b94ddc2feb418a0cf70","impliedFormat":1},{"version":"76755db046290dad61362d95c03b440a0feaf507edfb5744304c7f98c81faccc","impliedFormat":1},{"version":"e16841ad044e21c48c6065627566a2ac216e067cc34b9ad3b47312d208d9a262","impliedFormat":1},{"version":"7150b4a18287da2e25c68a12bd0cff78f6141a2425a27431a10cd4a91cb9626b","impliedFormat":1},{"version":"214a581fbe6902059a64de2bd75c56b6030c6388c29de93c4296380a99c04e4a","impliedFormat":1},{"version":"78b758d401e53f5319bc143ebdc7714ebe0f1e94fc3906d5e93816e5736bf299","impliedFormat":1},{"version":"ce50872ae30242ed1ce2ddb9d9226c85f17098e901bc456cfc365887ab553127","impliedFormat":1},{"version":"cae86d70eabc661dff2f46f34018ff4840228f01709c8399a9c012711dfe5292","impliedFormat":1},{"version":"77b463688f41048f449fa30b45393b81fd6dfe3eb71f7734c1a6d580373b6a12","impliedFormat":1},{"version":"b6ccce9156aa85ca2e836bc572d4697800739ab008b0a6ae9bfa0361b8baa04c","impliedFormat":1},{"version":"07dcca6e9f155b79d087216735842ab1f7c020ce41f095507afdffecbac06a03","impliedFormat":1},{"version":"1fab3bc9db401033ed6ef6dca9114b3a0a875b475b6c1b2ce52efddf3c4fa130","impliedFormat":1},{"version":"269b37626ed3fc5d6aff2b3103bfecdb86ab69e5fe28933b63a17ac83a547ede","impliedFormat":1},{"version":"1ef3cc7b03643e330cf9bcaeb42257a19f573bfafdaf51e2e45e52c19e20c3ff","impliedFormat":1},{"version":"e05f14953944c6b7f9c8a51c5739cad11e7ea4e441fd5659cbc3a5ebdc28bcfb","impliedFormat":1},{"version":"98fe9a0d3adc98c4aadc97a5bcb8c9589525e16e82e6714333e0315d1ff40a12","impliedFormat":1},{"version":"941c51312144ba38e2d86c081d212bc1f22f64eeb1dc342a1c7aeaaece7a7770","impliedFormat":1},{"version":"8d204669e89ac66eb2fa93e17daf42dc9fa33b3d865158327819df72f4fa3f1f","impliedFormat":1},{"version":"4f66c595621f6dd5c693d12c122def1c9eac9c48ace86deeb7c1a0fe54d63c61","impliedFormat":1},{"version":"6b26f80f079695a24ca28f6b19bb074ddb70cd79bc837ae8437e54ac8727aa14","impliedFormat":1},{"version":"1686e8b2a3bca066aafbb9bea2ac249e7205af7e6b878955741c66b3a4eaba63","impliedFormat":1},{"version":"f974c4abba2e7ae62cc358c6c1589df489406ef517a48355cbcc5f09cf11d8a8","impliedFormat":1},{"version":"949ab063079fbbcbf8a96c093b9cc465f83fd2ce49f4558492d6f95065cb201d","impliedFormat":1},{"version":"2d1c8bc1708e58c9aa73d71f89dc69d45fd00ed42841d022bbffa467c88464f4","impliedFormat":1},{"version":"55c3e286e757f731c3b80c1e6d4a567bcc6d5d512438016240e7da573a554dc3","impliedFormat":1},{"version":"33cb723eea3ced280f163fa717045e233b801081a64509d4d59b47620fde9ef5","impliedFormat":1},{"version":"8c357660e14e4ae047c44211f7d024d48eacf3d5ad6ac805095a436a4d3e268c","impliedFormat":1},{"version":"e67731d353b0f48ec4c7b1cee2358e2b7b6ea56c86775f2f3c07029b73b8bf06","impliedFormat":1},{"version":"e2eccdc38e22cc3882939c7fca91570a8379112c03f6206986e0bd78afeed21c","impliedFormat":1},{"version":"58a60f1ff614a331f5de62b4a629b5f41066430f7b72f65ec27f0cf841403c9e","impliedFormat":1},{"version":"bade739298ee5cd485966b3f2812cd94ed23be0bd8991624bde84db9e41e4240","impliedFormat":1},{"version":"4289204445b85c740954797654b504406befd2168731ec18efffb3ea22674a5c","impliedFormat":1},{"version":"e8ac4073fe7b469e55e1fc7b1540363d5a99b507839135fc97cfe5f2d0e36595","impliedFormat":1},{"version":"0f45169be3f2e0eb418bb1d5d480aa8fca7375af0b6e51dfccc3afbf77d9ef12","impliedFormat":1},{"version":"25699fd6154aa1d8ad42dd7739ebe65e15277c0f44d15ce6826cc43bde4ea5bf","impliedFormat":1},{"version":"d4fabc6a3e3110ed60c84e9ec6712265afe268601f3462198b57aa4359745c33","impliedFormat":1},{"version":"802353808bbaf39f8ce455fc7c459d39f13a2fefcf6f18a78c9ea0c61be089eb","impliedFormat":1},{"version":"a057b62631a72f836a8faa37332f03324b9610bf1bd7781fd6f93be063cd10f5","impliedFormat":1},{"version":"76c5f9421476e8762a83f970028b5b7e9ac13fade254d40c04c188f87be8fd7b","impliedFormat":1},{"version":"6378e4cad97066c62bf7bdd7fb6e2310f6a43cdf7aba950a2d37b4b0772c0554","impliedFormat":1},{"version":"3b6fddf2afbdf36f7bb869ccdeaffac8d53759e527e3425a6b8df4dca616d1fd","impliedFormat":1},{"version":"e88588861f78985ee212de6a72e45b445e5e04286b4ce1eb1d28d72bb781e269","impliedFormat":1},{"version":"22b9f52673fc11b687471594d6080d4319999e4d98903679a4ba94d24b056426","impliedFormat":1},{"version":"3d594041401ac69433c4a2ee492d356db4706adddd4f8201e7e5f542e58173b2","impliedFormat":1},{"version":"806aa43416ea1f5265e1cf94168fd4902348762aa8114dc53c131cff9f87b5ec","impliedFormat":1},{"version":"f27757e22127417f5daddd0ad4be81d5a743c95576d8c957ce39ef02a6cc1ec0","impliedFormat":1},{"version":"383679ac9fe44ffb52057dc5ad7ee2e4a90a3f4abbe9a1cf186d9a2cee617965","impliedFormat":1},{"version":"2477c532af85038f0cf6146355af295df4d165910c023fd2765a013af3135b4b","impliedFormat":1},{"version":"1cd30d17835a4624730ad50072746385e5251a16fe64a58ba44f85ddcde96ded","signature":"8f4f12b87300cf599f20415ffdff36e477b7ee99f60e12929dcbdc9c145e14b8"},{"version":"f4306336aa96007e6a860a290c686b5d5995f43a4e75754f36c40364aac319f9","signature":"c9b7a0df27bdc21f921275c20af8303500acd1a62f194c9effb8ec01204ff265"},{"version":"65717dc8e3a78d5270d9e6fa52c7381c543e87252d232dc7bc46ab58fbdd496a","signature":"4c866bdc068ab2771e940edd20f15781f167c8a5a3d63caf21509a324b4ab3dd"},{"version":"987339ae38c9341b0d90da7350e543c0d561d04b540f29a6912d387ffee30123","impliedFormat":99},{"version":"78b320333fa889c9532276db075578cdde53e41d0c5ff1dc901a22e5c9e25bd8","impliedFormat":99},{"version":"d6add5a006175d8e4ac5067baa29854010ae2be9eec488f3b09f62e48fdcbc73","impliedFormat":99},{"version":"49e7711e90d7bb03416d5681b51340d41a0511528d6faa578b929dbb9dfc6750","impliedFormat":99},{"version":"44bebcbc4a93fea28f3564a7763dd12f0f3bdec624eb8a63e97afd007d1ff4bd","impliedFormat":99},{"version":"58ff317d61b47e8fc6688bd50e6770311691202553f119d1e1d79b64d864e200","impliedFormat":99},{"version":"2bcba968352e7a0ab44a841f38846bc1137b4f2dd389e174962d2ecfe17f1f83","impliedFormat":99},{"version":"7531f6904a711cd870729de7bd8fb5829088eaf82381e88f81aa4a2c9ec57b75","impliedFormat":99},{"version":"e7bd54c49435fc3668d6124ec6c400da823e088d7791ea4edf9483d170e5402d","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"516c53364c6b242591c65afc8b0f0f0cee74ac8a04f52470a539fcb33da2e318","impliedFormat":1},{"version":"045fe6d9e971df69d53ed8f1551e60c4849b0529e407e5960b31096418fa8346","impliedFormat":1},{"version":"0974c0312c1fe25e56e8030b1830ce8bc071a973714ac6f2409894addc346fcd","impliedFormat":1},{"version":"d10db4f48a9957fba79c406fbc79af87d979d34a1bbf5e12ca4a53cef0f16cca","impliedFormat":1},{"version":"3493d3ac411c6977f391ab438a9940c3a8e06dc04b7e2d84e0571a30aa224314","impliedFormat":1},{"version":"2907069986d89f01c9151da8a01161545a283405369bf009dbad2e661c556703","impliedFormat":1},{"version":"0feee6a4ec2ca4ce1072d0bf3a9839094b5a651decd598b2fa79bcdee647fb16","impliedFormat":1},{"version":"5bac046f252b55e3b05035d5329e2ef15a944fe429d81ac7fe36a4cd8bb8ae7f","impliedFormat":1},{"version":"4e1949bcfbde9ae075bff5b15ce1d3a401624840cefdbabdd6516004b93b821d","impliedFormat":1},{"version":"12d41a4154d95453005e843ee2b749372c56973fd6f81311a95eecf451d582c9","impliedFormat":1},{"version":"1d7d547458413ad30676d4615d15dbf49d997e052dd9d131419451e727a6ea00","signature":"095a49138a1ce4cdc8f3c3ba55cce41b99259228501af1ed814a2e790a9d76af"},{"version":"bf8efd00f85b23667b3aa085270dbd4bf301b1bd3ae33f8c67723a69d373d4b2","signature":"b3c6bc906c87b1978420537ad779423fbc41246660b3fa651f680140cd11916f"},{"version":"b05f67fbf31701e85c3f299bd3ddf2a83d277eb616dcc1aad0f3c25c3fbf0da2","impliedFormat":99},{"version":"98f506ef1d9a5709fdd74c39e79d10922bde44e4ae6ff8827bf8a31f63833d18","impliedFormat":99},{"version":"51429f743902db4f2b5bf1fa85c1bf49ee06c7300b759b20b7f5526a80dc3e93","impliedFormat":99},{"version":"9766d327ed5b2e47f4d81b0f10cd337dea01b7acd017becf5ae7d95dd56792c2","impliedFormat":99},{"version":"f1eb6e94c9a698e55e1d93ddc305b84d80540e284dc5f0c8c793ac5ac1b9a326","signature":"c064be0040233a91b43eb9020c69c127a4641fc97aeca0249fe902e32567aac0"},{"version":"8328a921a2918c545c421b29231c54989da30ca30fe99c11cd782b33a1d1de3f","signature":"64321ccc804b3032b5d592406d8375fa1ddc0f9e9cc433226bc3f526fe86c886"},{"version":"27ac651cd08042a7b71330fd6a298f6fe6c39ab79195454d8badfc4f9103a9ec","signature":"f7ce4ec575def2779ebf7165f3a305b3e23bada5ae50f5f7e37a42b97c781e90"},{"version":"87400de291337a18f7be60efadc4eafb157070f3ba787220d0919eccd12fd39f","signature":"5272aa558cae6e125b58bee5cdef0713f5ffd01f57ac8675a33b646bb10d4643"},{"version":"a1d5052176b632daf59d7d0d70dfe895d8cc60627f09b1f9c7e146ec474030c4","signature":"e2452e92ae5d6c988d35cd29020996d7b7d7ead773eb8a4185f54a0e6d7020f2"},{"version":"d10fe662bd1e9af0202c4761e4a5dba92beb36efb770cdd2791ef2c09d24a9ef","signature":"a1cb8547a4fa001f56b1d735c4ffae50bc2bdf78645aed8bc14a001fee4327c5"},{"version":"de527ed5993c8cca72bb2c87b665371d61fe940ea22cb9434eb5d8face35468c","signature":"2a18eb9fc556c591d645b233ab5b295dd3ce075052f0f315988514524f2a4e48"},{"version":"d8f07a67e86a18bc4ee005bce253e41d7529d21f9a92864a6695f334546bf433","signature":"dd35e7ab40ba4bb66cf58713adcf7bb67fb9ee2ae16bc8780dcb6fde876cfcb9"},{"version":"9f129e758c00f0314c883ecff1bcb8c24157c8787132e05c775c71dac7a60e95","signature":"9bbe624b3561fd7345e1a2fd6675b15777834812eb073cb7c3bba1e0f61031b1"},{"version":"88232b9ee388d4d4e113c23fdcda22782fc7c4ffe71800743aafd3bbcb189591","signature":"a157eb0b595142f7eed0e52fcb9f7173648fb8ae775b4b22bcbb9cf1640c173a"},{"version":"9e5ed848775eed8a807fce3b272f5ab8d835d4d1b70c314a563fe52f45aa5840","signature":"491d09fc99ae31c5882b8d7b62d02ace8ab517f04712457067c6046f819e5e1d"},{"version":"6a46b4a9f8db9851548143a8797e92b528d2d63121e8562f7e9333ff896dfd01","signature":"0b2d89292e27758338832aac912e85cb5493340894dface461f88a648e2c5884"},{"version":"e1b2f07b105058544423657603b72af1a40f10f62c44e3707f8b69d2ccdc7592","signature":"8b87b6fb14e07b74956e1c79bdf06b70eb0075e966bd727527042e9bdeb3dc5e"},{"version":"dc4e6be15d4f1967147c80d2d8bb432cbfbc1b0e2ede8633bc87016f71c28ed1","signature":"0e4c4a0a9e0242a86c0111933da9ac1e061443acac66023c14d4233361df999e"},{"version":"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"dfcd866c260978314882d091e31a7b07773d9d726523112081e458fd2758a26b","impliedFormat":1},{"version":"9d4073b672a0fa8bad4de924b66e6610f2dd2206e3132d1a79f3cc6800d804a0","impliedFormat":1},{"version":"67e39a466cfb0e07507f1431c983f6dc1b6739436216f9a55c075ee82a68b130","impliedFormat":1},{"version":"26844826cb93d1cb95aa49dbaf3515600c53fd139a82c6e0acdbc4bd2c84953f","impliedFormat":1},{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","impliedFormat":1},{"version":"d78c698fa755ef94e3af591883bfee3a330ffec36392e00aaacdff3541cf5382","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","impliedFormat":1},{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true,"impliedFormat":1},{"version":"6968359c8dbc693224fd1ea0b1f96b135f14d8eee3d6e23296d68c3a9da3ea00","impliedFormat":1},{"version":"79d75a353f29d9f7fc63e879ccebe213baaaea26676fb3e47cc96cf221b27b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"dfdc7699360a0d512d7e31c69f75cb6a419cf415c98673e24499793170db5d6b","impliedFormat":1},{"version":"dcf46daa1e04481b1c2f360c7a77bf019885bd70353a92aa698b9c22b7fe3d6b","impliedFormat":1},{"version":"033350619c2cfcbeab2a483f4b221e0866e17cc4ac514240d285d35c35eecf7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"b197fb2d5fa71cebc66e5d10e15c7d02f15fcd3194fbdaafeb964262582f2a82","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a7f593d587f49ca97710c021c453ab1b95db5e39e58567f4af644f97a5fb0e0","impliedFormat":1},{"version":"dd4705d1d78af32c407e93e5df009962bed324599d6a5b2a9d661ba44dd99e43","impliedFormat":1},{"version":"3a02975d4a7034567425e529a0770f7f895ed605d2b576f7831668b7beea9fea","impliedFormat":1},{"version":"7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","impliedFormat":1},{"version":"cf87b355c4f531e98a9bba2b0e62d413b49b58b26bf8a9865e60a22d3af1fcd3","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a08fe5930473dcae34b831b3440cd51ff2c682cf03bd70e28812751dd1644dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f3e00b838cf23f7837ffca5da88ae25f0a81742af9ccadce5cb85ac72050929","impliedFormat":1},{"version":"304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","impliedFormat":1},{"version":"cbcb993f1fa22b7769074eb09c1307756e6380659a2990d6f50cfd8943bd8333","impliedFormat":1},{"version":"55a93997681797056da069cfac92878bff4d2a35e61c1c16280ee0cba38702f2","impliedFormat":1},{"version":"ea25afcaf96904668f7eebc1b834f89b5b5e5acafd430c29990028a1aaa0bcbe","impliedFormat":1},{"version":"df981b2ce32930887db27eeae29e48b9b841e4ba0bbba1162ebed04c778cd7e1","impliedFormat":1},{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be96458790a77cb357856dab45d1cc8383ac63ba4e085f620b202fb62a6e1db","impliedFormat":1},{"version":"02d85d03fd4a4f63cba0b133f0e0192368dfeb4338bd33f87788a4f6302de873","impliedFormat":1},{"version":"bb3a0ce56babb71d7c208ed848b4aafe545e7a7e06304fc0c8cfe3ad328cab7a","impliedFormat":1},{"version":"43bb766c0dc5f1150021f161aa6831eb2cc75dab278172408515cb6e47f697a9","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bcf09ba67bd0ec12a9f1efc1e58e1ba2cb1ff78920ce6cf67ebfe6003c54b82","affectsGlobalScope":true,"impliedFormat":1},{"version":"13ce7518e39051544dd1e3124c185665adda05a5021676f2606c2c74ad2c964f","impliedFormat":1},{"version":"4ac5899be65d5e2cabe3aaf3dfc2cf7641e54dde23db198d9f683dfabe228145","impliedFormat":1},{"version":"124dacf89c97915479ed6ad81b09ba42fd40962d069c0642fed42e2d9719f2ba","impliedFormat":1},{"version":"139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","impliedFormat":1},{"version":"ad06959073c066bb9543ef9c1dee37fc3140d2ecaae42b97bf4e27f2f03d6511","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"782abaae13e868dee4ea9c16d44499af251d112fba535c558d10ff5279b34678","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","impliedFormat":1},{"version":"98e7b7220dad76c509d584c9b7b1ec4dcbd7df5e3a2d37d28c54f74461ec0975","impliedFormat":1},{"version":"c61b5fad633f25bb0de0f95612191c1df9a6671cd66f451507b5223bff41b50d","affectsGlobalScope":true,"impliedFormat":1},{"version":"d21966ba3284ade60cb94eb2c533ab5b2af7fd0b4b28462043f6ebcb8400bd21","affectsGlobalScope":true,"impliedFormat":1},{"version":"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","impliedFormat":1},{"version":"b8e9e44ce8eba70af569523ff31d669cc239a93f548899a259f3224392a75e6c","impliedFormat":1},{"version":"005d1caa2a5d9bc096f75b598d0fd184bc848dd2665b050a17a17d5dc1ef652d","impliedFormat":1},{"version":"619735e4e221e1bf137ae3efa5330beee4a06039dccb876c822f9d8913a392da","impliedFormat":1},{"version":"3560d0809b0677d77e39d0459ae6129c0e045cb3d43d1f345df06cf7ab7d6029","affectsGlobalScope":true,"impliedFormat":1},{"version":"5ab086d9457abbc69cca270e5475073f2e8eb35b2fb810c516400de7b7c7d575","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a2fd53f2d963624b596fb720b390cbfe8d744e92cb55b48a8090a8fd42a302d","impliedFormat":1},{"version":"1f01c8fde66abc4ff6aed1db050a928b3bcb6f29bc89630a0d748a0649e14074","impliedFormat":1},{"version":"60223439b7ee9b26a08d527cacc8b34ea6c6741589ef4949f4669c9aeb97978e","impliedFormat":1},{"version":"48fffe7824c2e8cf8c812f528c33d4c4f502767582083df35920a7f56fe794b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"561bf7d1d3163db272980f9167b4b98f6a9ee8698c5955e9d9584e84088aad51","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","impliedFormat":1},{"version":"908217c4f2244ec402b73533ebfcc46d6dcd34fc1c807ff403d7f98702abb3bc","impliedFormat":1}],"root":[[419,421],451,452,[457,470]],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"alwaysStrict":true,"declaration":true,"declarationDir":"./","declarationMap":false,"emitDeclarationOnly":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":200,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"useUnknownInCatchVariables":true},"referencedMap":[[423,1],[425,2],[426,2],[429,2],[428,3],[430,4],[455,5],[456,6],[479,7],[475,8],[474,9],[481,10],[482,11],[483,11],[517,12],[518,13],[519,14],[520,15],[521,16],[522,17],[523,18],[524,19],[525,20],[526,21],[527,21],[529,22],[528,23],[530,24],[531,25],[532,26],[516,27],[533,28],[534,29],[535,30],[568,31],[536,32],[537,33],[538,34],[539,35],[540,36],[541,37],[542,38],[543,39],[544,40],[545,41],[546,41],[547,42],[549,43],[551,44],[550,45],[552,46],[553,47],[554,48],[555,49],[556,50],[557,51],[558,52],[559,53],[560,54],[561,55],[562,56],[563,57],[564,58],[565,59],[566,60],[79,61],[80,62],[99,63],[94,64],[95,65],[96,66],[97,64],[98,64],[87,67],[86,68],[84,69],[85,70],[90,71],[91,72],[92,72],[93,72],[83,73],[89,74],[88,75],[82,76],[478,77],[477,7],[76,78],[499,79],[506,80],[498,79],[513,81],[490,82],[489,83],[512,84],[507,85],[510,86],[492,87],[491,88],[487,89],[486,90],[509,91],[488,92],[493,93],[497,93],[515,94],[514,93],[501,95],[502,96],[504,97],[500,98],[503,99],[508,84],[495,100],[496,101],[505,102],[485,103],[511,104],[316,105],[113,106],[123,107],[122,108],[442,109],[443,110],[447,111],[450,112],[448,113],[446,114],[444,115],[318,116],[108,117],[449,118],[445,119],[177,110],[317,120],[307,121],[178,122],[310,123],[441,124],[234,125],[240,126],[241,127],[242,127],[239,128],[319,129],[224,130],[244,131],[248,132],[249,133],[250,131],[251,134],[200,135],[190,136],[199,137],[252,138],[253,139],[194,140],[255,141],[256,142],[185,143],[257,144],[261,145],[263,146],[265,147],[266,148],[267,149],[198,139],[260,150],[269,151],[270,144],[271,152],[273,153],[195,154],[274,155],[275,156],[233,157],[277,158],[278,131],[280,159],[281,160],[285,161],[291,162],[290,163],[293,164],[294,165],[295,165],[296,166],[299,167],[346,168],[320,168],[321,169],[322,170],[323,169],[324,171],[325,169],[326,171],[327,168],[328,169],[348,169],[329,169],[330,172],[331,173],[349,169],[332,171],[333,169],[334,169],[335,174],[336,171],[337,169],[350,169],[338,169],[339,169],[340,169],[341,171],[351,169],[342,174],[347,169],[343,171],[301,175],[302,176],[303,177],[304,178],[197,179],[305,180],[306,181],[186,182],[187,183],[308,184],[309,185],[311,186],[312,175],[313,178],[276,187],[315,188],[357,189],[345,190],[358,191],[300,192],[344,193],[314,194],[130,195],[352,196],[287,197],[356,198],[360,199],[202,200],[179,201],[169,201],[165,202],[191,202],[225,200],[170,203],[214,204],[144,201],[136,201],[262,205],[138,202],[236,201],[157,206],[132,201],[245,201],[171,201],[151,201],[152,207],[222,208],[158,209],[353,201],[369,205],[368,201],[107,210],[114,211],[126,212],[148,213],[149,214],[168,215],[418,216],[111,217],[125,218],[201,219],[120,220],[129,221],[115,222],[116,223],[243,224],[117,225],[118,226],[112,223],[121,227],[127,212],[128,228],[150,211],[119,229],[288,230],[282,231],[124,222],[211,232],[370,233],[213,234],[258,235],[371,236],[216,237],[217,238],[218,239],[372,240],[247,241],[219,242],[374,243],[402,244],[212,245],[215,246],[375,247],[373,248],[209,249],[377,250],[173,251],[389,252],[160,253],[161,253],[164,254],[163,255],[397,256],[396,257],[166,258],[167,259],[156,260],[226,261],[180,262],[400,263],[401,264],[220,265],[145,266],[134,267],[376,267],[135,267],[137,268],[139,269],[203,270],[140,267],[210,271],[141,272],[406,273],[143,274],[142,275],[146,256],[238,276],[237,277],[227,269],[229,267],[230,278],[228,279],[231,280],[221,281],[232,282],[189,283],[188,284],[181,285],[193,286],[264,287],[182,288],[259,289],[268,290],[192,291],[272,292],[183,292],[204,293],[412,294],[147,295],[205,109],[413,295],[162,295],[409,296],[246,297],[407,298],[410,296],[208,299],[408,298],[206,300],[207,301],[398,302],[399,303],[196,304],[286,288],[289,109],[153,109],[254,109],[154,109],[354,109],[355,305],[155,306],[359,307],[379,308],[279,309],[284,310],[393,311],[380,110],[394,312],[381,110],[133,313],[382,314],[383,315],[385,316],[386,317],[388,318],[395,313],[384,319],[387,308],[411,320],[390,321],[391,322],[392,323],[297,210],[298,324],[223,325],[292,109],[184,326],[174,327],[378,328],[159,329],[417,330],[175,331],[176,332],[283,333],[404,334],[405,334],[403,109],[415,335],[416,335],[414,109],[101,336],[106,337],[102,336],[103,336],[104,336],[105,336],[459,338],[419,339],[451,340],[458,341],[466,342],[462,343],[468,344],[469,345],[452,346],[464,347],[463,348],[461,349],[470,350],[420,345],[421,346],[457,351],[465,352],[467,353]],"version":"5.6.3"}
1
+ {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.string.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.object.d.ts","../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/json-canonicalize/types/canonicalize.d.ts","../node_modules/json-canonicalize/types/canonicalize-ex.d.ts","../node_modules/json-canonicalize/types/index.d.ts","../node_modules/abitype/dist/types/register.d.ts","../node_modules/abitype/dist/types/types.d.ts","../node_modules/abitype/dist/types/abi.d.ts","../node_modules/abitype/dist/types/errors.d.ts","../node_modules/abitype/dist/types/narrow.d.ts","../node_modules/abitype/dist/types/utils.d.ts","../node_modules/abitype/dist/types/human-readable/types/signatures.d.ts","../node_modules/abitype/dist/types/human-readable/formatAbiParameter.d.ts","../node_modules/abitype/dist/types/human-readable/formatAbiParameters.d.ts","../node_modules/abitype/dist/types/human-readable/formatAbiItem.d.ts","../node_modules/abitype/dist/types/human-readable/formatAbi.d.ts","../node_modules/abitype/dist/types/human-readable/types/utils.d.ts","../node_modules/abitype/dist/types/human-readable/types/structs.d.ts","../node_modules/abitype/dist/types/human-readable/parseAbi.d.ts","../node_modules/abitype/dist/types/human-readable/parseAbiItem.d.ts","../node_modules/abitype/dist/types/human-readable/parseAbiParameter.d.ts","../node_modules/abitype/dist/types/human-readable/parseAbiParameters.d.ts","../node_modules/abitype/dist/types/human-readable/errors/abiItem.d.ts","../node_modules/abitype/dist/types/human-readable/errors/abiParameter.d.ts","../node_modules/abitype/dist/types/human-readable/errors/signature.d.ts","../node_modules/abitype/dist/types/human-readable/errors/splitParameters.d.ts","../node_modules/abitype/dist/types/human-readable/errors/struct.d.ts","../node_modules/abitype/dist/types/exports/index.d.ts","../node_modules/webauthn-p256/_types/types.d.ts","../node_modules/webauthn-p256/_types/credential.d.ts","../node_modules/webauthn-p256/_types/publicKey.d.ts","../node_modules/webauthn-p256/_types/sign.d.ts","../node_modules/webauthn-p256/_types/utils.d.ts","../node_modules/webauthn-p256/_types/verify.d.ts","../node_modules/webauthn-p256/_types/index.d.ts","../node_modules/viem/_types/errors/utils.d.ts","../node_modules/viem/_types/accounts/utils/parseAccount.d.ts","../node_modules/viem/_types/types/utils.d.ts","../node_modules/@scure/bip32/lib/esm/index.d.ts","../node_modules/viem/_types/types/account.d.ts","../node_modules/viem/_types/types/misc.d.ts","../node_modules/viem/_types/account-abstraction/types/entryPointVersion.d.ts","../node_modules/viem/_types/experimental/eip7702/types/authorization.d.ts","../node_modules/viem/_types/types/eip4844.d.ts","../node_modules/viem/_types/types/fee.d.ts","../node_modules/viem/_types/types/kzg.d.ts","../node_modules/viem/_types/types/log.d.ts","../node_modules/viem/_types/types/transaction.d.ts","../node_modules/viem/_types/types/contract.d.ts","../node_modules/viem/_types/types/multicall.d.ts","../node_modules/viem/_types/account-abstraction/types/userOperation.d.ts","../node_modules/viem/_types/account-abstraction/types/rpc.d.ts","../node_modules/viem/_types/types/withdrawal.d.ts","../node_modules/viem/_types/types/block.d.ts","../node_modules/viem/_types/experimental/eip7702/types/rpc.d.ts","../node_modules/viem/_types/types/proof.d.ts","../node_modules/viem/_types/types/rpc.d.ts","../node_modules/viem/_types/types/eip1193.d.ts","../node_modules/viem/_types/clients/transports/createTransport.d.ts","../node_modules/viem/_types/errors/base.d.ts","../node_modules/viem/_types/errors/fee.d.ts","../node_modules/viem/_types/utils/signature/recoverAddress.d.ts","../node_modules/viem/_types/utils/data/concat.d.ts","../node_modules/viem/_types/utils/data/isHex.d.ts","../node_modules/viem/_types/errors/data.d.ts","../node_modules/viem/_types/utils/data/pad.d.ts","../node_modules/viem/_types/errors/encoding.d.ts","../node_modules/viem/_types/utils/data/size.d.ts","../node_modules/viem/_types/utils/data/trim.d.ts","../node_modules/viem/_types/utils/encoding/fromHex.d.ts","../node_modules/viem/_types/utils/encoding/toHex.d.ts","../node_modules/viem/_types/utils/encoding/toBytes.d.ts","../node_modules/viem/_types/errors/cursor.d.ts","../node_modules/viem/_types/utils/cursor.d.ts","../node_modules/viem/_types/utils/encoding/toRlp.d.ts","../node_modules/viem/_types/utils/hash/keccak256.d.ts","../node_modules/viem/_types/experimental/eip7702/utils/hashAuthorization.d.ts","../node_modules/viem/_types/experimental/eip7702/utils/recoverAuthorizationAddress.d.ts","../node_modules/viem/_types/types/stateOverride.d.ts","../node_modules/viem/_types/errors/request.d.ts","../node_modules/viem/_types/errors/rpc.d.ts","../node_modules/viem/_types/utils/promise/createBatchScheduler.d.ts","../node_modules/viem/_types/utils/promise/withRetry.d.ts","../node_modules/viem/_types/utils/rpc/socket.d.ts","../node_modules/viem/_types/utils/buildRequest.d.ts","../node_modules/viem/_types/errors/estimateGas.d.ts","../node_modules/viem/_types/errors/transaction.d.ts","../node_modules/viem/_types/utils/transaction/getTransactionType.d.ts","../node_modules/viem/_types/utils/blob/blobsToCommitments.d.ts","../node_modules/viem/_types/utils/blob/blobsToProofs.d.ts","../node_modules/viem/_types/utils/hash/sha256.d.ts","../node_modules/viem/_types/utils/blob/commitmentToVersionedHash.d.ts","../node_modules/viem/_types/utils/blob/commitmentsToVersionedHashes.d.ts","../node_modules/viem/_types/errors/blob.d.ts","../node_modules/viem/_types/utils/blob/toBlobs.d.ts","../node_modules/viem/_types/utils/blob/toBlobSidecars.d.ts","../node_modules/viem/_types/experimental/eip7702/utils/serializeAuthorizationList.d.ts","../node_modules/viem/_types/errors/address.d.ts","../node_modules/viem/_types/errors/chain.d.ts","../node_modules/viem/_types/errors/node.d.ts","../node_modules/viem/_types/utils/lru.d.ts","../node_modules/viem/_types/utils/address/isAddress.d.ts","../node_modules/viem/_types/utils/transaction/assertTransaction.d.ts","../node_modules/viem/_types/utils/transaction/serializeAccessList.d.ts","../node_modules/viem/_types/utils/transaction/serializeTransaction.d.ts","../node_modules/viem/_types/accounts/utils/sign.d.ts","../node_modules/viem/_types/accounts/utils/signTransaction.d.ts","../node_modules/viem/_types/errors/account.d.ts","../node_modules/viem/_types/utils/chain/assertCurrentChain.d.ts","../node_modules/viem/_types/utils/errors/getTransactionError.d.ts","../node_modules/viem/_types/utils/formatters/formatter.d.ts","../node_modules/viem/_types/utils/formatters/transactionRequest.d.ts","../node_modules/viem/_types/utils/transaction/assertRequest.d.ts","../node_modules/viem/_types/actions/public/getChainId.d.ts","../node_modules/viem/_types/actions/wallet/sendRawTransaction.d.ts","../node_modules/viem/_types/actions/wallet/sendTransaction.d.ts","../node_modules/viem/_types/utils/errors/getNodeError.d.ts","../node_modules/viem/_types/utils/errors/getEstimateGasError.d.ts","../node_modules/viem/_types/actions/public/estimateGas.d.ts","../node_modules/viem/_types/errors/block.d.ts","../node_modules/viem/_types/utils/formatters/transaction.d.ts","../node_modules/viem/_types/utils/formatters/block.d.ts","../node_modules/viem/_types/actions/public/getBlock.d.ts","../node_modules/viem/_types/actions/public/getTransactionCount.d.ts","../node_modules/viem/_types/utils/nonceManager.d.ts","../node_modules/viem/_types/actions/wallet/prepareTransactionRequest.d.ts","../node_modules/viem/_types/actions/public/getGasPrice.d.ts","../node_modules/viem/_types/actions/public/estimateMaxPriorityFeePerGas.d.ts","../node_modules/viem/_types/actions/public/estimateFeesPerGas.d.ts","../node_modules/viem/_types/types/chain.d.ts","../node_modules/viem/_types/errors/abi.d.ts","../node_modules/viem/_types/utils/data/slice.d.ts","../node_modules/viem/_types/utils/hash/hashSignature.d.ts","../node_modules/viem/_types/utils/hash/normalizeSignature.d.ts","../node_modules/viem/_types/utils/hash/toSignature.d.ts","../node_modules/viem/_types/utils/hash/toSignatureHash.d.ts","../node_modules/viem/_types/utils/hash/toFunctionSelector.d.ts","../node_modules/viem/_types/utils/address/getAddress.d.ts","../node_modules/viem/_types/utils/encoding/fromBytes.d.ts","../node_modules/viem/_types/utils/abi/decodeAbiParameters.d.ts","../node_modules/viem/_types/utils/abi/formatAbiItem.d.ts","../node_modules/viem/_types/utils/abi/decodeErrorResult.d.ts","../node_modules/viem/_types/errors/contract.d.ts","../node_modules/viem/_types/utils/abi/getAbiItem.d.ts","../node_modules/viem/_types/utils/abi/decodeFunctionResult.d.ts","../node_modules/viem/_types/utils/abi/encodeAbiParameters.d.ts","../node_modules/viem/_types/utils/abi/encodeDeployData.d.ts","../node_modules/viem/_types/utils/abi/encodeFunctionData.d.ts","../node_modules/viem/_types/utils/chain/getChainContractAddress.d.ts","../node_modules/viem/_types/utils/errors/getCallError.d.ts","../node_modules/viem/_types/errors/stateOverride.d.ts","../node_modules/viem/_types/utils/stateOverride.d.ts","../node_modules/viem/_types/actions/public/call.d.ts","../node_modules/viem/_types/errors/ccip.d.ts","../node_modules/viem/_types/utils/ccip.d.ts","../node_modules/viem/_types/utils/ens/encodedLabelToLabelhash.d.ts","../node_modules/viem/_types/utils/ens/namehash.d.ts","../node_modules/viem/_types/utils/ens/encodeLabelhash.d.ts","../node_modules/viem/_types/utils/ens/labelhash.d.ts","../node_modules/viem/_types/utils/ens/packetToBytes.d.ts","../node_modules/viem/_types/utils/errors/getContractError.d.ts","../node_modules/viem/_types/actions/public/readContract.d.ts","../node_modules/viem/_types/actions/ens/getEnsAddress.d.ts","../node_modules/viem/_types/types/ens.d.ts","../node_modules/viem/_types/errors/ens.d.ts","../node_modules/viem/_types/utils/ens/avatar/utils.d.ts","../node_modules/viem/_types/utils/ens/avatar/parseAvatarRecord.d.ts","../node_modules/viem/_types/actions/ens/getEnsText.d.ts","../node_modules/viem/_types/actions/ens/getEnsAvatar.d.ts","../node_modules/viem/_types/actions/ens/getEnsName.d.ts","../node_modules/viem/_types/actions/ens/getEnsResolver.d.ts","../node_modules/viem/_types/types/filter.d.ts","../node_modules/viem/_types/actions/public/createBlockFilter.d.ts","../node_modules/viem/_types/errors/log.d.ts","../node_modules/viem/_types/utils/hash/toEventSelector.d.ts","../node_modules/viem/_types/utils/abi/encodeEventTopics.d.ts","../node_modules/viem/_types/actions/public/createContractEventFilter.d.ts","../node_modules/viem/_types/actions/public/createEventFilter.d.ts","../node_modules/viem/_types/actions/public/createPendingTransactionFilter.d.ts","../node_modules/viem/_types/actions/public/estimateContractGas.d.ts","../node_modules/viem/_types/actions/public/getBalance.d.ts","../node_modules/viem/_types/actions/public/getBlobBaseFee.d.ts","../node_modules/viem/_types/utils/promise/withCache.d.ts","../node_modules/viem/_types/actions/public/getBlockNumber.d.ts","../node_modules/viem/_types/actions/public/getBlockTransactionCount.d.ts","../node_modules/viem/_types/actions/public/getCode.d.ts","../node_modules/viem/_types/utils/abi/decodeEventLog.d.ts","../node_modules/viem/_types/utils/formatters/log.d.ts","../node_modules/viem/_types/actions/public/getLogs.d.ts","../node_modules/viem/_types/actions/public/getContractEvents.d.ts","../node_modules/viem/_types/errors/eip712.d.ts","../node_modules/viem/_types/actions/public/getEip712Domain.d.ts","../node_modules/viem/_types/utils/formatters/feeHistory.d.ts","../node_modules/viem/_types/actions/public/getFeeHistory.d.ts","../node_modules/viem/_types/actions/public/getFilterChanges.d.ts","../node_modules/viem/_types/actions/public/getFilterLogs.d.ts","../node_modules/viem/_types/utils/formatters/proof.d.ts","../node_modules/viem/_types/actions/public/getProof.d.ts","../node_modules/viem/_types/actions/public/getStorageAt.d.ts","../node_modules/viem/_types/actions/public/getTransaction.d.ts","../node_modules/viem/_types/utils/formatters/transactionReceipt.d.ts","../node_modules/viem/_types/actions/public/getTransactionConfirmations.d.ts","../node_modules/viem/_types/actions/public/getTransactionReceipt.d.ts","../node_modules/viem/_types/actions/public/multicall.d.ts","../node_modules/viem/_types/actions/wallet/writeContract.d.ts","../node_modules/viem/_types/actions/public/simulateContract.d.ts","../node_modules/viem/_types/actions/public/uninstallFilter.d.ts","../node_modules/viem/_types/utils/signature/hashMessage.d.ts","../node_modules/viem/_types/actions/public/verifyHash.d.ts","../node_modules/viem/_types/actions/public/verifyMessage.d.ts","../node_modules/viem/_types/types/typedData.d.ts","../node_modules/viem/_types/utils/typedData.d.ts","../node_modules/viem/_types/utils/signature/hashTypedData.d.ts","../node_modules/viem/_types/actions/public/verifyTypedData.d.ts","../node_modules/viem/_types/utils/observe.d.ts","../node_modules/viem/_types/clients/transports/fallback.d.ts","../node_modules/viem/_types/types/transport.d.ts","../node_modules/viem/_types/utils/poll.d.ts","../node_modules/viem/_types/actions/public/watchBlockNumber.d.ts","../node_modules/viem/_types/actions/public/waitForTransactionReceipt.d.ts","../node_modules/viem/_types/utils/stringify.d.ts","../node_modules/viem/_types/actions/public/watchBlocks.d.ts","../node_modules/viem/_types/actions/public/watchContractEvent.d.ts","../node_modules/viem/_types/actions/public/watchEvent.d.ts","../node_modules/viem/_types/actions/public/watchPendingTransactions.d.ts","../node_modules/viem/_types/utils/siwe/types.d.ts","../node_modules/viem/_types/utils/siwe/validateSiweMessage.d.ts","../node_modules/viem/_types/actions/siwe/verifySiweMessage.d.ts","../node_modules/viem/_types/clients/decorators/public.d.ts","../node_modules/viem/_types/actions/wallet/addChain.d.ts","../node_modules/viem/_types/actions/wallet/deployContract.d.ts","../node_modules/viem/_types/actions/wallet/getAddresses.d.ts","../node_modules/viem/_types/actions/wallet/getPermissions.d.ts","../node_modules/viem/_types/actions/wallet/requestAddresses.d.ts","../node_modules/viem/_types/actions/wallet/requestPermissions.d.ts","../node_modules/viem/_types/accounts/utils/signMessage.d.ts","../node_modules/viem/_types/actions/wallet/signMessage.d.ts","../node_modules/viem/_types/actions/wallet/signTransaction.d.ts","../node_modules/viem/_types/accounts/utils/signTypedData.d.ts","../node_modules/viem/_types/actions/wallet/signTypedData.d.ts","../node_modules/viem/_types/actions/wallet/switchChain.d.ts","../node_modules/viem/_types/actions/wallet/watchAsset.d.ts","../node_modules/viem/_types/clients/decorators/wallet.d.ts","../node_modules/viem/_types/clients/createClient.d.ts","../node_modules/viem/_types/account-abstraction/accounts/types.d.ts","../node_modules/viem/_types/accounts/utils/signAuthorization.d.ts","../node_modules/viem/_types/accounts/types.d.ts","../node_modules/viem/_types/actions/getContract.d.ts","../node_modules/viem/_types/actions/test/dumpState.d.ts","../node_modules/viem/_types/actions/test/getAutomine.d.ts","../node_modules/viem/_types/actions/test/getTxpoolContent.d.ts","../node_modules/viem/_types/actions/test/getTxpoolStatus.d.ts","../node_modules/viem/_types/actions/test/impersonateAccount.d.ts","../node_modules/viem/_types/actions/test/increaseTime.d.ts","../node_modules/viem/_types/actions/test/inspectTxpool.d.ts","../node_modules/viem/_types/actions/test/loadState.d.ts","../node_modules/viem/_types/actions/test/mine.d.ts","../node_modules/viem/_types/actions/test/reset.d.ts","../node_modules/viem/_types/actions/test/revert.d.ts","../node_modules/viem/_types/actions/test/sendUnsignedTransaction.d.ts","../node_modules/viem/_types/actions/test/setBalance.d.ts","../node_modules/viem/_types/actions/test/setBlockGasLimit.d.ts","../node_modules/viem/_types/actions/test/setBlockTimestampInterval.d.ts","../node_modules/viem/_types/actions/test/setCode.d.ts","../node_modules/viem/_types/actions/test/setCoinbase.d.ts","../node_modules/viem/_types/actions/test/setIntervalMining.d.ts","../node_modules/viem/_types/actions/test/setMinGasPrice.d.ts","../node_modules/viem/_types/actions/test/setNextBlockBaseFeePerGas.d.ts","../node_modules/viem/_types/actions/test/setNextBlockTimestamp.d.ts","../node_modules/viem/_types/actions/test/setNonce.d.ts","../node_modules/viem/_types/actions/test/setStorageAt.d.ts","../node_modules/viem/_types/actions/test/stopImpersonatingAccount.d.ts","../node_modules/viem/_types/clients/decorators/test.d.ts","../node_modules/viem/_types/clients/createTestClient.d.ts","../node_modules/viem/_types/actions/test/dropTransaction.d.ts","../node_modules/viem/_types/actions/test/snapshot.d.ts","../node_modules/viem/_types/actions/test/removeBlockTimestampInterval.d.ts","../node_modules/viem/_types/actions/test/setAutomine.d.ts","../node_modules/viem/_types/actions/test/setLoggingEnabled.d.ts","../node_modules/viem/_types/actions/test/setRpcUrl.d.ts","../node_modules/viem/_types/clients/transports/custom.d.ts","../node_modules/viem/_types/errors/transport.d.ts","../node_modules/viem/_types/utils/promise/withTimeout.d.ts","../node_modules/viem/_types/utils/rpc/http.d.ts","../node_modules/viem/_types/clients/transports/http.d.ts","../node_modules/viem/_types/clients/createPublicClient.d.ts","../node_modules/viem/_types/clients/createWalletClient.d.ts","../node_modules/viem/_types/utils/rpc/webSocket.d.ts","../node_modules/viem/_types/clients/transports/webSocket.d.ts","../node_modules/viem/_types/constants/abis.d.ts","../node_modules/viem/_types/constants/address.d.ts","../node_modules/viem/_types/constants/contracts.d.ts","../node_modules/viem/_types/constants/unit.d.ts","../node_modules/viem/_types/constants/number.d.ts","../node_modules/viem/_types/constants/bytes.d.ts","../node_modules/viem/_types/constants/strings.d.ts","../node_modules/viem/_types/errors/unit.d.ts","../node_modules/viem/_types/errors/typedData.d.ts","../node_modules/viem/_types/utils/abi/decodeDeployData.d.ts","../node_modules/viem/_types/utils/abi/decodeFunctionData.d.ts","../node_modules/viem/_types/utils/abi/encodeErrorResult.d.ts","../node_modules/viem/_types/utils/abi/prepareEncodeFunctionData.d.ts","../node_modules/viem/_types/utils/abi/encodeFunctionResult.d.ts","../node_modules/viem/_types/utils/abi/parseEventLogs.d.ts","../node_modules/viem/_types/utils/data/isBytes.d.ts","../node_modules/viem/_types/utils/address/getContractAddress.d.ts","../node_modules/viem/_types/utils/transaction/getSerializedTransactionType.d.ts","../node_modules/viem/_types/utils/signature/compactSignatureToSignature.d.ts","../node_modules/viem/_types/utils/signature/parseCompactSignature.d.ts","../node_modules/viem/_types/utils/signature/parseSignature.d.ts","../node_modules/viem/_types/utils/signature/recoverMessageAddress.d.ts","../node_modules/viem/_types/utils/signature/recoverPublicKey.d.ts","../node_modules/viem/_types/utils/signature/serializeSignature.d.ts","../node_modules/viem/_types/utils/signature/recoverTransactionAddress.d.ts","../node_modules/viem/_types/utils/signature/recoverTypedDataAddress.d.ts","../node_modules/viem/_types/utils/signature/signatureToCompactSignature.d.ts","../node_modules/viem/_types/utils/signature/serializeCompactSignature.d.ts","../node_modules/viem/_types/utils/address/isAddressEqual.d.ts","../node_modules/viem/_types/utils/signature/verifyHash.d.ts","../node_modules/viem/_types/utils/signature/verifyMessage.d.ts","../node_modules/viem/_types/utils/signature/verifyTypedData.d.ts","../node_modules/viem/_types/utils/signature/isErc6492Signature.d.ts","../node_modules/viem/_types/utils/signature/parseErc6492Signature.d.ts","../node_modules/viem/_types/utils/signature/serializeErc6492Signature.d.ts","../node_modules/viem/_types/utils/blob/sidecarsToVersionedHashes.d.ts","../node_modules/viem/_types/utils/blob/fromBlobs.d.ts","../node_modules/viem/_types/utils/kzg/defineKzg.d.ts","../node_modules/viem/_types/utils/kzg/setupKzg.d.ts","../node_modules/viem/_types/utils/chain/defineChain.d.ts","../node_modules/viem/_types/utils/chain/extractChain.d.ts","../node_modules/viem/_types/utils/abi/encodePacked.d.ts","../node_modules/viem/_types/utils/unit/formatUnits.d.ts","../node_modules/viem/_types/utils/unit/formatEther.d.ts","../node_modules/viem/_types/utils/unit/formatGwei.d.ts","../node_modules/viem/_types/utils/encoding/fromRlp.d.ts","../node_modules/viem/_types/utils/hash/toEventSignature.d.ts","../node_modules/viem/_types/utils/hash/toFunctionSignature.d.ts","../node_modules/viem/_types/utils/hash/toEventHash.d.ts","../node_modules/viem/_types/utils/hash/toFunctionHash.d.ts","../node_modules/viem/_types/utils/signature/toPrefixedMessage.d.ts","../node_modules/viem/_types/utils/hash/isHash.d.ts","../node_modules/viem/_types/utils/hash/ripemd160.d.ts","../node_modules/viem/_types/utils/unit/parseUnits.d.ts","../node_modules/viem/_types/utils/unit/parseEther.d.ts","../node_modules/viem/_types/utils/unit/parseGwei.d.ts","../node_modules/viem/_types/utils/transaction/parseTransaction.d.ts","../node_modules/viem/_types/index.d.ts","../src/auth/EOAauthentication.ts","../src/policy.ts","../src/setupMessage.ts","../node_modules/@noble/curves/esm/abstract/modular.d.ts","../node_modules/@noble/curves/esm/abstract/curve.d.ts","../node_modules/@noble/curves/esm/abstract/utils.d.ts","../node_modules/@noble/curves/esm/abstract/edwards.d.ts","../node_modules/@noble/curves/esm/abstract/hash-to-curve.d.ts","../node_modules/@noble/curves/esm/abstract/montgomery.d.ts","../node_modules/@noble/curves/esm/ed25519.d.ts","../node_modules/@noble/curves/esm/abstract/weierstrass.d.ts","../node_modules/@noble/curves/esm/secp256k1.d.ts","../node_modules/@scure/bip39/esm/wordlists/czech.d.ts","../node_modules/@scure/bip39/esm/wordlists/english.d.ts","../node_modules/@scure/bip39/esm/wordlists/french.d.ts","../node_modules/@scure/bip39/esm/wordlists/italian.d.ts","../node_modules/@scure/bip39/esm/wordlists/japanese.d.ts","../node_modules/@scure/bip39/esm/wordlists/korean.d.ts","../node_modules/@scure/bip39/esm/wordlists/portuguese.d.ts","../node_modules/@scure/bip39/esm/wordlists/simplified-chinese.d.ts","../node_modules/@scure/bip39/esm/wordlists/spanish.d.ts","../node_modules/@scure/bip39/esm/wordlists/traditional-chinese.d.ts","../node_modules/viem/_types/accounts/wordlists.d.ts","../node_modules/viem/_types/accounts/generateMnemonic.d.ts","../node_modules/viem/_types/accounts/generatePrivateKey.d.ts","../node_modules/viem/_types/accounts/toAccount.d.ts","../node_modules/viem/_types/accounts/utils/publicKeyToAddress.d.ts","../node_modules/viem/_types/accounts/privateKeyToAccount.d.ts","../node_modules/viem/_types/accounts/hdKeyToAccount.d.ts","../node_modules/viem/_types/accounts/mnemonicToAccount.d.ts","../node_modules/viem/_types/accounts/utils/privateKeyToAddress.d.ts","../node_modules/viem/_types/accounts/index.d.ts","../src/auth/ephemeralAuthentication.ts","../src/client/networkRequest.ts","../node_modules/js-base64/base64.d.mts","../node_modules/@noble/hashes/esm/utils.d.ts","../node_modules/@noble/hashes/esm/_md.d.ts","../node_modules/@noble/hashes/esm/sha256.d.ts","../src/utils/encoder.ts","../src/auth/passkeyAuthentication.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/jsonwebtoken/index.d.ts","../src/auth/JWTAuthentication.ts","../src/auth/authentication.ts","../src/client/networkResponse.ts","../src/client/walletProviderServiceClientInterface.ts","../src/builder/userAuth.ts","../src/client/walletProviderServiceClient.ts","../src/client/networkSigner.ts","../src/utils/validator.ts","../src/builder/signRequest.ts","../src/viemSigner.ts","../src/client/ethUtil.ts","../src/client/httpClient.ts","../src/index.ts","../node_modules/@types/argparse/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/eslint/use-at-your-own-risk.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@eslint/core/dist/cjs/types.d.cts","../node_modules/eslint/lib/types/use-at-your-own-risk.d.ts","../node_modules/eslint/lib/types/index.d.ts","../node_modules/@types/eslint-plugin-security/index.d.ts","../node_modules/@types/unist/index.d.ts","../node_modules/@types/hast/index.d.ts","../node_modules/@types/triple-beam/index.d.ts"],"fileIdsList":[[422],[422,423,424],[423,424,425,426,427],[422,424,426,429],[454],[454,455],[568],[562,563,564],[565],[570],[500,545,546],[459],[494],[495,500,529],[496,507,508,515,526,537],[496,497,507,515],[498,538],[499,500,508,516],[500,526,534],[501,503,507,515],[494,502],[503,504],[507],[505,507],[494,507],[507,508,509,526,537],[507,508,509,522,526,529],[492,495,542],[503,507,510,515,526,537],[507,508,510,511,515,526,534,537],[510,512,526,534,537],[459,460,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544],[507,513],[514,537,542],[503,507,515,526],[516],[517],[494,518],[515,516,519,536,542],[520],[521],[507,522,523],[522,524,538,540],[495,507,526,527,528,529],[495,526,528],[526,527],[529],[530],[494,526],[507,532,533],[532,533],[500,515,526,534],[535],[515,536],[495,510,521,537],[500,538],[526,539],[514,540],[541],[495,500,507,509,518,526,537,540,542],[526,543],[77,78],[78],[77,79,80,81,82,84,85,86,87,90,91,92,93,94,95,96,97,98],[80],[79,80,83],[79,80],[79,86],[79,83,85],[78,79,83],[78,79,84],[78,79,83,88,89],[78,79,81,83,88,89],[78,79],[78,79,83,88],[77,78,79,83,89],[77,78,79],[562,563,566,567],[74,75],[469,473,537],[469,526,537],[464],[466,469,534,537],[515,534],[545],[464,545],[466,469,515,537],[461,462,465,468,495,507,526,537],[461,467],[465,469,495,529,537,545],[495,545],[485,495,545],[463,464,545],[469],[463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,486,487,488,489,490,491],[469,476,477],[467,469,477,478],[468],[461,464,469],[469,473,477,478],[473],[467,469,472,537],[461,466,467,469,473,476],[495,526],[464,469,485,495,542,545],[99,106,109,112,113,122,196,282,315],[316],[112,113,122],[99,109,112,113,118,119,120,121],[107],[107,112,142],[107,111,142,318,446],[99,108,110,177,178,196,307,310,317,318,384,441,442,443,444,445,446,447,448,449],[107,318,447],[107,112,142,177,178,196,307,310,318,444,445],[99,107,169,173,318],[99,109,111,112,114,119,159,176,196,282,316,317],[99,107,318],[99,107,112,142,445],[99,107,112,147,209],[107,109,112,114,148,177],[107,112,177,279],[107,112,119,147,159,176,177],[99,107,112,177,282,284],[431,432,433,434,435,436,437,438,439,440],[99,107,109,130,140,142,201,216,219,220,228,231,233,315],[107,109,130,201,235,238,239,315],[99,107,109,130,142,201,220,231,233,315],[99,109,130,142,201,216,219,220,228,231,233,315],[99,107,109,120,130,201,233,248,251,261,276,277,294,315,318],[99,107,108,109,112,125,130,142,150,153,156,183,184,201,214,216,218,219,220,221,223,315,318],[107,130,156,201,243,315],[99,107,120,125,130,142,156,201,243,247,315],[99,107,109,120,125,130,142,156,201,243,247,315],[99,108,109,120,130,190,201,219,232,315,318],[107,111,116,125,130,132,197,198,199,201,315],[99,108,109,125,130,142,149,150,156,183,184,189,201,315,318],[107,111,125,130,132,141,156,194,197,198,201,315],[99,107,125,130,142,156,201,315],[107,130,156,201,315,318],[107,109,112,125,130,142,156,191,193,201,315,318],[107,130,156,201,254,315],[107,112,125,130,141,142,156,201,315],[107,130,141,156,201,315,318],[99,107,112,125,130,142,156,201,315],[99,107,112,118,120,125,130,201,215,260,315],[99,107,109,112,130,233,262,315],[116,125,130,142,156,201,264,315],[99,107,112,118,125,130,156,201,243,258,259,315],[99,107,118,125,130,156,201,243,258,259,315],[99,107,112,118,120,125,130,142,156,201,247,258,259,315],[99,107,112,125,127,130,142,156,201,268,315],[107,109,112,125,130,142,156,192,201,315],[107,112,130,201,255,271,272,315],[99,107,125,130,141,142,156,201,315,318],[107,112,130,156,158,201,272,315,418],[99,107,120,121,130,201,216,219,220,224,232,233,315],[99,109,120,130,201,216,219,224,232,315],[99,107,108,109,111,112,119,120,130,201,216,219,224,232,276,315],[99,107,109,112,130,135,138,142,201,218,224,315],[99,107,109,112,130,201,279,280,315],[99,107,112,130,201,280,282,284,315],[107,112,119,130,154,194,201,271,274,286,290,315],[107,130,201,255,288,289,315],[107,125,130,194,201,288,289,292,315],[99,107,118,120,125,130,201,286,288,292,315],[107,112,130,201,286,288,292,315],[107,109,112,130,201,279,280,298,315],[107,111,112,130,156,201,345],[107,111,130,156,201,345],[99,107,111,128,130,156,201,345],[99,107,111,130,156,201,345],[107,111,128,130,156,201,345],[107,111,112,130,156,183,201,345],[99,107,111,112,130,156,201,345],[107,130,142,156,201,315,318],[99,107,109,112,120,130,187,201,315,318],[99,107,130,156,201,209,315,318],[107,129,130,156,201,315,318],[99,108,109,111,117,119,130,159,179,183,184,190,194,195,196,200,201,315,318],[99,107,130,156,201,315,318],[107,109,129,130,156,201,315,318],[107,112,119,130,156,201,315],[99,107,108,109,111,112,117,130,149,156,178,179,180,181,183,184,185,186,197,201,315,318],[107,108,111,112,130,142,156,201,307,315,318],[107,108,109,111,117,119,130,142,156,159,178,180,183,184,185,201,315,318],[99,107,108,111,112,130,135,156,179,201,282,283,292,310,315,318],[99,107,108,109,111,112,120,130,179,183,187,201,219,232,277,315,318],[99,107,108,109,111,129,130,201,226,300,314,318],[99,107,109,111,129,130,201,300,315],[99,107,109,111,129,130,201,315,318,344],[99,107,109,111,129,130,201,314,315,318],[99,111,116,120,125,130,185,186,190,194,195,197,198,199,200,201,224,233,234,239,240,241,242,243,244,248,249,250,251,252,253,255,256,257,260,261,263,265,266,267,269,270,271,273,274,275,277,278,281,285,290,291,293,294,295,296,299,315],[111,128,130,201,315,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,345,346],[99,120,130,185,186,187,197,201,276,301,302,303,304,305,306,308,309,311,312,313,315,318],[107,129,201,315],[107,130],[107,130,201],[107,130,353,355],[107,112,128,130,155,353,359],[99,112,131],[131],[112,131],[131,201],[99,112,131,201,213,224],[99,131],[131,190,201,318],[109,131],[131,150],[112,119,125,131,187,201,318],[99],[99,109,112],[99,112],[107,112,114,134,142,143,146,147],[99,107,109,112,114,133,148],[107,114],[99,109,111,112,115,116,117,118,119,120,121,123,124,125,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,146,147,150,151,152,154,157,158,159,160,161,162,163,164,166,167,169,170,171,173,174,175,176,180,183,184,185,186,187,190,191,192,193,194,195,196,197,198,199,200,201,202,203,208,209,210,211,213,214,215,216,217,218,219,220,222,224,226,228,230,232,233,234,235,236,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,255,256,257,258,259,260,261,263,265,266,267,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,287,288,290,291,292,293,294,295,296,300,301,302,303,304,305,306,308,309,311,312,313,314,315,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,356,357,358,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417],[99,109,110,318],[99,112,119,124],[99,109,111,116,119,130,176,193,197,200,315],[99,109,112,119],[99,109,112,123,125,128],[112],[109],[99,109,112,120,125,129],[99,109,112,119,318],[99,112,120],[99,109,120],[99,109,112,116,118,119,125,126,127],[99,109,112,114,115,116,117,118],[109,130,287],[99,109],[99,107,112,139,140,142,143,145,202,203,209,210],[99,107,112,120,202,211],[99,107,109,112,120,202,208,211,212],[99,107,109,112,120,202,211,212,246],[99,107,109,112,120,202,203,208,211,212],[99,107,109,112,120,202,211,215],[99,107,112,134,137,139,142,169,173,202,203],[99,107,109,112,120,134,202,217],[99,107,109,112,120,134,208,212,215,217],[99,107,109,112,120,143,147,202,212,215,217,245,246],[99,107,109,112,120,134,202,208,212,215,217],[99,107,109,112,120,202,215,217],[99,107,112,134,137,142,169,173,202],[99,107,120,202],[99,107,109,112,120,135,173,202,208],[99,107,118,120,128,258],[99,107,109,112,120,134,202,208,212,215],[99,107,143,147,173],[99,107,112,134,137,143,146,147,203,209,376],[99,107,172],[99,107,169],[107,112,117,142,143],[107,112,142,162],[107,112,163],[107,112,142,143,145],[107,112,115,163],[107,109,112,115,117,160,161,166],[107,112,139,142,143,145,165],[107,129,151,152,153,154,155],[99,107,112,130,151,201,224,225,315],[107,170,201],[109,201],[107,201],[170,201],[107,112,144],[107,112],[107,112,136],[107,112,135],[107,112,135,136,139],[107,112,140,141,142],[107,112,138,139,140,143],[107,112,131,138,142,143,145,146],[107,112,135,137,141,142],[107,112,137,138,141],[107,130,201,235,237,315],[99,107,130,201,233,235,236,315],[107,142,143,147,227],[107,134,142,143,147,227],[107,112,143,229,230],[107,188,201,214,224],[99,107,214],[107,157,188,190,201,318],[109,131,171,187],[107,158,187,188,201,318],[107,109,112,125,128,182,192,201],[107,116,128],[107,109],[107,109,118,128],[107,109,127,128],[107,109,119,125,128,182,201],[107,109,119,128,182,201],[107,143,147],[107,112,135,139],[107,112,135,142,143],[207],[107,207],[206],[99,107,203,207],[99,107,205],[99,107,204,206],[107,117],[107,398],[99,109,315],[107,109,128,151,354],[107,128,153],[155],[107,112,142,143],[107,112,147],[99,107,112,142,147,217,282,283],[107,112,203],[99,107,109,112,211,393],[99,107,112],[99,107,112,133,279],[107,112,135,141],[99,107,112,119,133,147,176,384],[99,107,112,133,282,284],[107,112,141],[107,112,141,142],[107,112,134,142],[99,107,112,133,209,389],[99,107,112,209,382,389],[99,107,112,209,282,386,389],[99,109,297],[128,136,142,150,169,222],[107,108,109,158,169,171,187,201],[107,119,131,165,169,170,171,173],[107,109,119,141,158,203,418],[107,109,119,158,418],[107,109,112,119,135,137,141,146,158,169,173,174,378,406],[107,112,119,146,158,169,173],[107,109,112,119,134,142,146,158,159,160,161,164,167,168,174,175],[99,107,112,139,142,173,282,284],[403],[107,414],[100],[100,101,102,103,104,105],[418,549],[418,419,421,451,452,458,547,548,555],[76,418,421,428,430,450,452,549,555],[76,418,453,457,549],[76,555],[76,421,452,457,549,551],[550],[76],[419,420,451,555],[420,421,451,452,549,550,551,553,555],[76,421,452,549,550,551,552],[421,452,549,550],[419,420,421,451,452,458,548,549,550,551,552,553,554,556,557,558,559],[418,453,456],[451,549,554],[418,430,450,453,550,554,556]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"abee51ebffafd50c07d76be5848a34abfe4d791b5745ef1e5648718722fab924","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a4060be62fa16312d69679ca894bbc75e936299c9ea567cd627ceb9f58a7e34","impliedFormat":1},{"version":"e52b1eba70a7158ed3020f4667c8acfcfec26753bb47a135c9ad97e9c0c4dd31","impliedFormat":1},{"version":"2047167a1c77832c2fd51ad6323d98e1772cbdc40857883a03f930074bc3a129","impliedFormat":1},{"version":"b166e33cf8226ac8781899da244397e77e5b6528271339ce26ece0c2c7242d7f","impliedFormat":1},{"version":"a623d5cf7925e72dbf4602862499564389c7c3dc0ce049733cc0ec756a846667","impliedFormat":1},{"version":"d9028ded7b00c211d789db29f1b2d9d1b7600a4edcbbd087f1faf0495229d179","impliedFormat":1},{"version":"63634c0855e639ea7f609613d799bbb0dc774ec9f3242bc272c5567dc5ccd485","impliedFormat":1},{"version":"592f06c425ab27b4bafec624ef5b153cbdde9ac58f7113100a2da1c4309d1309","impliedFormat":1},{"version":"19c8ab51b4b07c529d95cd4d5c8d100a68dca247ec83a5097d35106fd8a7acca","impliedFormat":1},{"version":"bec1d0ac62cee9b4d1ea8b64c4798c59c1726668b76d06b68a206e0cb0ac76a6","impliedFormat":1},{"version":"fb4f06b2af9ee4b2d2be8c964b0a8f6dd260be9048488ffcf04eb5c0fcb8bf61","impliedFormat":1},{"version":"f185055f36d76e2df5eeb87ae1148a25a125be2bff2095e1bd39c1c7ce85a640","impliedFormat":1},{"version":"9fcb4ef8bf8955c4e9c81bdf4e239d4c0c22869b6cf6ce2ecc95743bf683cb9f","impliedFormat":1},{"version":"979fdebc12d30becce6a15e68d99bc8a2a470a8dcf0898ac9e2d241a7e531940","impliedFormat":1},{"version":"1824ad7d4259910646279d667e517334c0aa24d5c810e8ea6da756fc2e02372f","impliedFormat":1},{"version":"989e9060e220ff86025044ba3c867a83512a655b7cf6253b2bd682192debf390","impliedFormat":1},{"version":"8b1feb568c859feb59236e9723b7a86e2ff8f9a8f2012366ffd1798164dc2798","impliedFormat":1},{"version":"8fab988b0129e674afc0bc0e95329b4052cf027f5d5b5b3e6e92d055b5ba88ef","impliedFormat":1},{"version":"4fe56d524ab24c225668803c1792945053e648b4e8fa4e50fa35594495b56732","impliedFormat":1},{"version":"2652931b8f7dca9a57f21aeb25b5d46851dcf17e4d5ed54b9b57d5d26e647680","impliedFormat":1},{"version":"d364c8df7d52199f5d011b4ded96f36dd114b984f5ee2e50ffe7d30ac1ab4bba","impliedFormat":1},{"version":"408f9eb3c7a3533bf5f07e0cde110a5ee0702864795ee6727792520fe60320b6","impliedFormat":1},{"version":"ba79eb15c36ff23e352ef608ceb7f9f0f278b15ad42512c05eedbe78f228e0e4","impliedFormat":1},{"version":"4cd233c6af471432253a67ae4f3b43c85e58a71418d98c3e162a1dac975c68f6","impliedFormat":1},{"version":"aa77c7d8ddc961e8192bcaa92da140e1205f8aee78bfadead5f52b8844d7d05c","impliedFormat":1},{"version":"37e37d3a525a207efab5458069fd9a27a174d2dc3af729702c81729ca03a349f","impliedFormat":1},{"version":"592be78d9e29c468162ae5c0caacab93517a84b9e119fa43839d37c8a22c96d1","impliedFormat":99},{"version":"9fb7f17cc5582417ed2484bfc9f493ed8e9a7493e023f07d5486860c8acb5f6f","impliedFormat":99},{"version":"6ba794b0e290825b3869e05c4ce9e0efdc9d68eb34d8434d61b2aa798a224c4e","impliedFormat":99},{"version":"b979e09ceeae224e71344ca6258d8ebc93ffc28262678b21f3f872b6f613ae29","impliedFormat":99},{"version":"976cc1f58ff3f255fdb41bdaf18430246a1024f38741fc0d048edb30ad7f5099","impliedFormat":99},{"version":"4a82d200fce0dd902da81b36928ae5c3a366770bea8b52f39936f7f11432f879","impliedFormat":99},{"version":"46c1ab579dd5d88d2a6435859aa8439d27f3f249848a4a8ab650f77135ace7b6","impliedFormat":99},{"version":"a2e86477a12540ef9e439245b959b2d8b96d674d5215d154ff22ad26141f4cfb","impliedFormat":1},{"version":"29150e44771dac0aeb711badc04e08fccd01b46efc560bd6e01b96d746a3f26c","impliedFormat":1},{"version":"e09f096004d70d6e98f5e5fee165849b3944f706861cdeffce5339dfd8426db5","impliedFormat":1},{"version":"1ddd1ca692a6c656ade0a85c9a722b3679b3d0bf113b699908e0325cf3537dbe","impliedFormat":99},{"version":"a7a4ea3e08f0ca7139ef99db3be34db005406e795bdeaa519998ad4666c5dfb9","impliedFormat":1},{"version":"48c022acf7a664fc81a3296858f08e2f70fdd57404f2ccc88bb951dc94311939","impliedFormat":1},{"version":"7fbc4600e6ef98e81e3c44329fd0cf7c53eda75cf666b17a6e4666e93e1b0159","impliedFormat":1},{"version":"0a7c25930355abdf0926057044de0c8f910a3196af6126282dd2186898a7d13f","impliedFormat":1},{"version":"007dfb1f314277f6e211fec9c5f62fd182e3bb76f1fe1f165228a259ae0b91b8","impliedFormat":1},{"version":"a6aa3bd9c165acb07db158897587581d7b081ce4271579b720a94f95c8c487d5","impliedFormat":1},{"version":"904714e49891cc1e136cf104f4bc9adfc846be9bd28ac55e101145a0d8103b30","impliedFormat":1},{"version":"9b8ba907ff8c52756b1a0aeac192a22591ac9431ac688cddad8111c8fd5124a3","impliedFormat":1},{"version":"c8b56ebca7f7c08fb96a65b2dfcbc8a6efb10b9b9ff060eca55042428e25e570","impliedFormat":1},{"version":"3fede259ef5c9dd9a97e662da9f6774dbc82f390d29563319b658ebd7f958135","impliedFormat":1},{"version":"d74e6cdb7ac0a4d675d598a09c8deed53dcb11a4e32e344ad6a831663bfb60dd","impliedFormat":1},{"version":"269605a13c650dc3326bc1fa1c65fc05fd8507256c83710974d20e704b55c914","impliedFormat":1},{"version":"ed94531f5270503b60d1938fd4929ce0b719e402862c49fe624eb660f75cc901","impliedFormat":1},{"version":"b9c9c9352d6606fe440735ccad134563017fc5aff8dcd418c58f778437339f06","impliedFormat":1},{"version":"a77c74ba29ae0c5b355aa140686b95239f1e579e51cec743af252fe59a245563","impliedFormat":1},{"version":"fe6fc233bd0daead47deecc6903a5571edaa4a9539c7157c4580d26dcc37a48b","impliedFormat":1},{"version":"d09f6a6dab49823b554255030c4ee8d49a2a993bd02f2cff2e444b2627dffc5a","impliedFormat":1},{"version":"35c6081d0c246583d33f452afa7877652db95b9b9393520b2fc3753795a1bb8c","impliedFormat":1},{"version":"5f5186291de127ff03bc059587fc5d23ccc3e1cb0cd277d5ad5da2e0d6085887","impliedFormat":1},{"version":"1065c8e64bf4876e3f9caa626f4f71fe64b755edfd23db5ceca6accd9c313f1c","impliedFormat":1},{"version":"0717c1a24cd66da2d50833ba78f89d994d1ebe494e0105ac67caa1e1a32a298d","impliedFormat":1},{"version":"cf4bdd9324f9116bf29daf9add3fefe4e609be0dc3bdba1759cf1a6654047726","impliedFormat":1},{"version":"0b59bc43ab08b3bb00a8a4978683c872fe4c6c3206bc68316ff7a3cbe70d75b0","impliedFormat":1},{"version":"d3763a4abd763d825a766d636661ee3ec52fa8477eb63c243b8dcd033ba23789","impliedFormat":1},{"version":"f4377e81d50af3f689cc5dd2005be3b79dfbbcb3f5a0301c843e8daf1cc9ddda","impliedFormat":1},{"version":"ac1e8ae42e98e9a296d467169321f4cf8802643302f619b025117c4ed5a2d200","impliedFormat":1},{"version":"6641f18545bf0ce6aaa467607f6a19a2896c4a6965deffd9c8f586f00950f494","impliedFormat":1},{"version":"27c66f434db3a00fb5b286c88582f2da3a85a2108cdfafe9bf63fa6df206aa2a","impliedFormat":1},{"version":"e2ef2006aa0a9b806063cb510989bafad85e71f21cd7e25783b8876203594dc7","impliedFormat":1},{"version":"5683b6c327ab05195ba14856985488b486117687e3f1b94991e787b25fd6cbb0","impliedFormat":1},{"version":"32d08e56282b632a4ff2aabf97d8e2ca72c872e99453de231684f0347a46c41c","impliedFormat":1},{"version":"f26ba893d9cda649365c19c9929d53ba069d829caa98dea1ad3c90374704cf54","impliedFormat":1},{"version":"0f9bfdd25e2e13e6adf81d98a2909fe1a7ade6cdcd380bc7c9a259effaf3c295","impliedFormat":1},{"version":"4179d52fc45e3c72cab28cedf19d10a915522d5f3f83979e61213137bfc794e9","impliedFormat":1},{"version":"665222ab0b8547fa189b3b4bef8598ca271e552339f871fcd4d7e86f979b8145","impliedFormat":1},{"version":"2748451f1cb5d1594fec48577685ef0cdefea02fea292873b9ab74aa47ff57ad","impliedFormat":1},{"version":"cece3e0e89f3e9a526ce76bf9bf3aab41bf83a58d625558a671f9058b5e822e6","impliedFormat":1},{"version":"11854416213ad2da216b2c09af4a4b16129e051a25ed8f3148ac5e62814341bd","impliedFormat":1},{"version":"5f03bcd31cb6649a36edd547407ab86887ec3c41347c03f52179bc58017fda13","impliedFormat":1},{"version":"48ff4dab14889a41f5b0b94aacb853b96f8778888167625a42ba7a45250a15b7","impliedFormat":1},{"version":"92c35a5a8200e9d5a30c9e36eb7db062b3ca1e03309bd0ec3416714695cc6dca","impliedFormat":1},{"version":"657e5c36539693988464477fb47f7aedfa8a487fd95606671156d52adab81101","impliedFormat":1},{"version":"e3e20ed4715775989c0ee8c2be8e657503503ba75c03defe13b99dc317baf3e7","impliedFormat":1},{"version":"c2f1b0272966ba4ec45818b50813210e3abaa993664e26db5617df45672e49aa","impliedFormat":1},{"version":"6faca0f0e857cab15c7ec26f36dc28b73730b184ce942a25654bbcf4ece22f59","impliedFormat":1},{"version":"40273b09b5738abd52321b86f426893ef84f9da766f2206207c4d9bd6c5b7f35","impliedFormat":1},{"version":"4ab90837f0df1a6c8039689ea77d7d28a06eb1bbf2bc129c271e8a6c01a0f391","impliedFormat":1},{"version":"2c6fcafbedc3bf7e030fbda5acc875e0f2f98b253477105ef5cf0f674409b525","impliedFormat":1},{"version":"171f9f3da4589275b3ca1472e2ee0f32f4b16d5e2c41f79db8bb209433f30d67","impliedFormat":1},{"version":"0d7db9b74a017be10aa36509dd2ae4499260381aabc6772feef677fa16f3a1f4","impliedFormat":1},{"version":"e59ef219cec3c3faab54d5cb12222a04d3e095c84abf94088920c1584832ce43","impliedFormat":1},{"version":"786c15fcfa8b821410e278a740f9dc81c44546259d1cc0143646876a0c030cc0","impliedFormat":1},{"version":"99ea681335aa97ba7618ac3db69a2e2da87da7faf8a39f822030ec4db96ca023","impliedFormat":1},{"version":"d7169a2b449d5b8e309edd84624649d04b746be48fe93b2e69bb7a85653b1e97","impliedFormat":1},{"version":"c462479720ea1932e5adc0bd4808be8ee2c83488be1012bf48f4bbb532b63758","impliedFormat":1},{"version":"d72479ce8210c21451cadef350179fbf3729c0e29005aca2d7e0c6ad031a4afa","impliedFormat":1},{"version":"d0e0354d3d4ac41cb7a67c10ca59652f8cba9eeb0929fcc878e492691f73d02a","impliedFormat":1},{"version":"9e8cbec0dabed8a1d03ab57736738a202df26cfbe180db391347df78a0509fa4","impliedFormat":1},{"version":"fbe06770551602ccc8e240a24793a8268b1bce44de38c26a7710f7bf1702f9b5","impliedFormat":1},{"version":"e4859560e5d635efa084427db27d6e31780eb570c2a567e95ed12f3828199710","impliedFormat":1},{"version":"6f29c691b977d5fdebefbc109c896fa863e95ae4464d959cc1506f45ad01da8e","impliedFormat":1},{"version":"ddf805d002fbf463fe2e40e78a4c7d1773a62f18716ce452cc02ba185c6c9c0e","impliedFormat":1},{"version":"d7aeffb82f803488ad4f918929a3a980e387c64c395ea793f6167c9704d4502a","impliedFormat":1},{"version":"2ede90710bab4dcdef47b532a8b3a1d63b7c366b058e95c705e9d9634f29f445","impliedFormat":1},{"version":"887a73b0167b36d4aed6d2549b19c4bcc6f2f50248b20d4d10ee2a10ef0516e8","impliedFormat":1},{"version":"d5e5bec490256e96a14ee3ee62df234b39130673a78c7cc23cbbd62daa5bb09a","impliedFormat":1},{"version":"d1d43f6f1a6a766dabe2a6db17f737d2c0cdefd747fc52b70dcc4ee011d6ff85","impliedFormat":1},{"version":"62c9a85d5dc9da38e54f1d802b7b62b82170f3a4571e3c992f1db09f60dce051","impliedFormat":1},{"version":"56e14052acc507ace03e94e8ec6cc22c84a65db751f11ca20349a4ea396f72ab","impliedFormat":1},{"version":"1c7dde9d6e45e71504fd8ba6a9c29db164e7a8040bc1782c2a80a3098d0a86c8","impliedFormat":1},{"version":"916e966405a9923eef3123175b1d31188945917edc14027ebe5df1c1f4ba0c70","impliedFormat":1},{"version":"d742f86f826cd1d46f45cc6c106cf34077b10239da02393fc2b6a6490bb4059a","impliedFormat":1},{"version":"e9ce8ab614cd43c203bdeedd6fb230c64d62dc240c7384d962fe39bdb0ed16d2","impliedFormat":1},{"version":"639e7fd024205c3c4af58bb193c1d7790618fcb8b70e9b15068c647ab729ee3a","impliedFormat":1},{"version":"2c26bbcb3898665e821d93f28d9c4b7d712ca23743d8a7a9d89e2aec794bdf40","impliedFormat":1},{"version":"c0e0fc040511ce5af4e546fabe949945c67507cf1f1bc7211448f2e6832bf0bc","impliedFormat":1},{"version":"112a590883718f00a1ce9fe88e7140fbe4c2c3ff30fc2dc797c0c2fe6a47185e","impliedFormat":1},{"version":"e6f70e3c94d2b1d7c5112ad6df2dd7c2ae5dc81bc89510bbdd4478614cf80594","impliedFormat":1},{"version":"146e5c86d78b4a7ff6dcaf9835b3a6a639dd414d21a30c69df5183bca5596d15","impliedFormat":1},{"version":"713472b1fbf211215a59f78d2b351a77b06d441d7bb7e69c45fe49f8d4784333","impliedFormat":1},{"version":"2e24d2d878e6b0e745d3814ccb2186520c6ffc6b3ee3facc329741c100ff42ae","impliedFormat":1},{"version":"b1dcb886b03955cb52ada9b74a8706b2038a3b028e1bd4b41343d6dec6cc9160","impliedFormat":1},{"version":"00b9f288c0a241fb4316737af41e0ff0e64be1c03c90640bc3a9f1449742ca9b","impliedFormat":1},{"version":"f392ed5b86fb56157e08a5fc1859506f8bb20f33a1a6d5922833e2c7a268a7e4","impliedFormat":1},{"version":"7f70f7d51c3232d6e7546bc8f9d6b91df3a9e001de4c755771dd052d9fbc9a07","impliedFormat":1},{"version":"175cdf7e9b2d7178e5b73a4f3dea1f02abe320f6585ee8a6c16991c92e4220e8","impliedFormat":1},{"version":"ef6b222405d44c0dcdea4b8ab7d3aa2ac0258995520c3ad2efa0fe161137807d","impliedFormat":1},{"version":"c6c694fe37d60819f29e998c03d875609d07a2f3d2a280d096474823384bff70","impliedFormat":1},{"version":"1a176b3032ec0fab791c658844c3c1d3df8fbe985b194858c8b31d736781942a","impliedFormat":1},{"version":"82e5bb555d1f1b9344b367e2761eeca6609ff1bc69908d779660e0ddb1c192c3","impliedFormat":1},{"version":"37bd33bdc57f46ff75b573c30c162cf2d1b5e160c230225d349ab01501e3a9b2","impliedFormat":1},{"version":"ea87e08b2a990ff767bcdc40e99eff30028d98af8d401f14b08974223c58c06a","impliedFormat":1},{"version":"389a2c2135dd3de1844b996d661ef3a5ffb978356994841fca0f0a99b1728e28","impliedFormat":1},{"version":"a582c8844a6809984a681db3997068d5d8144bee3f889c5240c559c5502c165a","impliedFormat":1},{"version":"e0494aecf0482850786831665c0f976125882c17084022efc6f8a51443b3a7f4","impliedFormat":1},{"version":"ede7ecc62da0236596749292448b282d9c5e846c95e107d6e87720204b792250","impliedFormat":1},{"version":"557981373fbd676739d62fb4aa7b601a639bfb39f7b563ab2c9a2350aa5d7298","impliedFormat":1},{"version":"078045f76bc547eeae562dde79c81e2565be6fecbdbbc4bfbd03fd16cfcad523","impliedFormat":1},{"version":"04783d0830346173973d5283d10b91fd7d6c1c0aaacd93a95455ddedaac4fc0d","impliedFormat":1},{"version":"6185cad87bf4da80c49a2f7a06af8e3e47eab0bfb31a9bf49520989b1b86056d","impliedFormat":1},{"version":"c002bfb107918122bba26d8d0736f293b22866dadc501f9ce27def3230233be5","impliedFormat":1},{"version":"131906682a56016d19849546fc5f9e0076b4e35bc2c5af362d79a50998215d4d","impliedFormat":1},{"version":"ee0c30ecd200ed26166dc9f9ca3f502e5584d61912f894563c7db45292b5833b","impliedFormat":1},{"version":"64248331a3a1c684ca70489fb8a94e48c5ca8bf86a5fb99179341edda11370ad","impliedFormat":1},{"version":"fa2d827d435777dbfc4a41a70d836b6a401bea8f77903cc22f939425f9da0b8b","impliedFormat":1},{"version":"8a59602dc83ec951feaf5cb7125393d3ebe38914c921e07ca0383a63857435d8","impliedFormat":1},{"version":"0654c77e8427f5125066d551e5f7c273735a92f4e7a2be6f12daf46ffa92ec3c","impliedFormat":1},{"version":"6f2a826f77810913e18a6a5ac87e5783f600961d4d7bc20315db13f69e2280de","impliedFormat":1},{"version":"14e3d141c66a44d32beff51678ba0abd236e18c520b12678a73936e78955cae2","impliedFormat":1},{"version":"bcc4218ae8d2f99608412f5917a663c7c764da0dd63be12d01ec49bf0148fe70","impliedFormat":1},{"version":"4136928c1cc5825cd17ecce5ae4a1671cf0047679e452d4886cfb33e74fed5c7","impliedFormat":1},{"version":"21f4388f6d904f8b0d17565fb331eb25d0f2af0704ed7d6247af4cc9631f7c67","impliedFormat":1},{"version":"546b944e81166843668e7b7a1153ccd1e565834ffc29e1df38aa6d26de9e1c81","impliedFormat":1},{"version":"47babc7ab6a3990895b389d6651d1841a17d7c7a9a57f86c0d72fe8d9230230f","impliedFormat":1},{"version":"f8d0e96fe8f2cbb5e617eec5f198ab78e13ba2c66176ad202b287aa3cc667e23","impliedFormat":1},{"version":"1375b2b59bde71a963ff2cb306eceea05060ded0b7cbcdaf1206e4e8245e605a","impliedFormat":1},{"version":"f5dcef5516ecd8836256359ed4b9c6bb8c73fcce697d1c343b11ee8e7fd15a8a","impliedFormat":1},{"version":"e55a68bbc963c9520f0492892d642fa145d34a351d483cd144a11e3346c18cfb","impliedFormat":1},{"version":"da14f80dc904a20fe5a98009f117d8f977ad6d50fdab685e75d6b38322ea56cb","impliedFormat":1},{"version":"ca90e5e191954b9b8c43ed5d5bc787107c071315c4acaae515e7d918e8814e15","impliedFormat":1},{"version":"8ef0c5c7cba59cbccd0ac5e17ec42dc4a8250cd267f9cdb08a4dcb1a099068ad","impliedFormat":1},{"version":"63ed74c721b55f614bef2b233b03c7e56377b0e38ea16f1dc3fc57a06ce2ca8e","impliedFormat":1},{"version":"c89dff0cb3845b6234ce201e2a2d8460d08dfdae2b5a5b137e17822b31188752","impliedFormat":1},{"version":"b30336ed279a38bc62e5678bf19efaf6f414bfbca31e4550932d59d810d654d5","impliedFormat":1},{"version":"1f142b1a6a8b7b29da43a88c8a5f6bbad28f7cf1b67457596ab6d71bed584e8a","impliedFormat":1},{"version":"a203895f2d4b51c8799af4a17e6d72657c6dfdc4a08ab338970e257e5e083d85","impliedFormat":1},{"version":"c67a3535fe218dac271adc4d9c91cabbcf99d09081dc3fe3567e3a354bf632e2","impliedFormat":1},{"version":"7670372101b08f0d0a2a8cf4d107d969df407a74cba20e9f3991b50d9d3c590c","impliedFormat":1},{"version":"324c0b50e53b8b0dd54dc0f50f0154e3e6fb17608df73de0803b5e9a532cf2e2","impliedFormat":1},{"version":"fe831d90ec6b5e04075ae831936f1e2049cce2473ad1aecf3d5ee37d66ea84cc","impliedFormat":1},{"version":"93b5102a702eb62880ae6fb3be2eb6910694ccf77a2e9063eb5d94bd0b2b32b2","impliedFormat":1},{"version":"0cb25d82f88175135d0827f552720abae64eb9863cba71e0b6ea6e76cf0da3d2","impliedFormat":1},{"version":"d0622e1a5d9ee2b4b8a1a6db2c0f02fc34f4f865d7ece6ec86800074210d2f4d","impliedFormat":1},{"version":"5300e082fe9398613c3b5a4975df67318951c46b4a033d159bbe082793ca2c3a","impliedFormat":1},{"version":"be05176f0f7347f4a9faed9a400c182f107b7499d79f4c6e67ec3d830ed6cde9","impliedFormat":1},{"version":"498b8e59b7659c0ce11ce3323bd0d23c923e21c7290e5bd96ce0f3ca639fb4fe","impliedFormat":1},{"version":"740bf9b794f8fcecb6c3761598372f16a7835dddb4c163a21ae0c7f472dc6bd3","impliedFormat":1},{"version":"12816e95a6bc1b4a98195c0e6747b33cfd178f0424579a3eb21b49911283f79a","impliedFormat":1},{"version":"ccc9e8f887951895386cafcff62aff2617397584ce48ca891646b901272b9d12","impliedFormat":1},{"version":"bffc26bac30d45f1e5fea885f17cafb6a943bcc21fd1122c71b9fe466ece8fdf","impliedFormat":1},{"version":"3f2a3b143fafe71c581c13fc479dba5b0b7ff34993f87b9085d87575b53fc993","impliedFormat":1},{"version":"81580d0db97bc8f13bcf79cc7a97e9606cca948df6f0b26e3084d5db0a41089e","impliedFormat":1},{"version":"fd4ddb3d82b68edf2f7dd1b10ca66c5b108007c46067d0dfac4167a4492577cb","impliedFormat":1},{"version":"8c5414d8170f8fca7d8cdf74dba186370e35cc895c3e25f10ce42fff3ef9b49d","impliedFormat":1},{"version":"2caa4ad00b1f3ca5b07ff3d84beab2d9a4a8d841b677aa1546b78054a890a902","impliedFormat":1},{"version":"c96415ec4a5ff2202c8f5db2b8163a605100b6b47435c5b31d8280e06233958e","impliedFormat":1},{"version":"93b1c61409fbf44c4e666937c0cacb36d006b9901a53a2750e520f6ba9b1fcc2","impliedFormat":1},{"version":"981af6a24b8e1531dd933ff6df096a7a50dfd79f24c5e5be1134b684465a807d","impliedFormat":1},{"version":"d3b51ab522194f5ffd145f57fc2b2017e35d11593a8a5468fd3da7767dba0d57","impliedFormat":1},{"version":"85e1ca7719d73273b0b07356071e046f27c039441666504e6143600f0f5de5eb","impliedFormat":1},{"version":"7c682517ded1d1e4ce341feb36a731499ed7241ee93de83aa2010d4f7add0555","impliedFormat":1},{"version":"f68e3a3eba1a531a71c8cb53bedafae2c25c376c147e3bc6ec96613a5de9dc84","impliedFormat":1},{"version":"d34648e4d5c8ccbcb2f5ccb5fa039e3be364ec95b0ef3a3750891e204c4bc3cf","impliedFormat":1},{"version":"367ef08f1d0de5ec4d4786cb8a1b8a17abf395bb0c5f8d151ec10fb66a2ce50e","impliedFormat":1},{"version":"ede4a9299b475e71baffcfd20b9b5056f77b8da69e7c824692fa7601be181ce7","impliedFormat":1},{"version":"c92c476c4463a4a96da5ed77010afd4bfa94944e298359bbff940cdde33c5f16","impliedFormat":1},{"version":"a484890e7212977036ce5965e7ca7b49e53436a66906a29093f91d4e02260fdf","impliedFormat":1},{"version":"4ea2003d86a9c68928ef069ce548c3e6ae35cbcb34184a71f1c566dde2160cf8","impliedFormat":1},{"version":"f727d3e75bfc036625d6920c725a3e4cbc564eef78f47d6b68c6351bb480d799","impliedFormat":1},{"version":"a87fcc9011e8a5e244d6e9af4902c315670aa852fa75dc82ae7cb62f98233a1a","impliedFormat":1},{"version":"b4eb4fd0fbf957fdb34dfc602b1dfd50c9dd20b9750e888d71351c2ebb143f43","impliedFormat":1},{"version":"90afaa269677aeb839cc0e7479e0c3152248e4c8b440954b66a0e13fff08d64b","impliedFormat":1},{"version":"e97434f04631c027264a37897935d5686cbb53547128043f8ce9df36a62f8456","impliedFormat":1},{"version":"49d38dec73850de29da6e77ac4636b7195d18ef7c7695851a2f2fe9fca859323","impliedFormat":1},{"version":"2b881659708008e1c27269e1eb8dc476af0c2ab2f1fbf50f6e5f8cb6758d8b1f","impliedFormat":1},{"version":"278c4281561f930857b40f04b092fc2a5649076ee00ecb6c1cb9d4abed3ad239","impliedFormat":1},{"version":"6d1f9b3f050467c2cc5292d2762b0ede9d605fcfff152210426da2eba607e1af","impliedFormat":1},{"version":"8f8c6a79e620f8a63952de19f38927f7da119cd0a5408d7289532f68b8017d98","impliedFormat":1},{"version":"bdf518ed49e9ad6926ecaee24a183828a23a061a1dfac8788cfc09da02a0bf91","impliedFormat":1},{"version":"c83ae875a44933a76a37949bc96569a414f5fd74f4089edcb4caad0db6bd7e6c","impliedFormat":1},{"version":"69870c54caf722bc568fd348b5e813500e964d820c7482bdb82d94d5aa6f19ed","impliedFormat":1},{"version":"504ffacc3312189dad74385206715390bd98e424aff384f67b21331bd16cf7e3","impliedFormat":1},{"version":"1870eb1fe1a14d19041559a003bb79753347b6da6d87703548b6b20faef30e6e","impliedFormat":1},{"version":"ed93611af4d148d789edfc67fd414195505a89691438ee261fa65d55bd66da0c","impliedFormat":1},{"version":"58ed0a6574485bcf18d4d775084258ed49f7b92ac9f8735488d19ab14bc6db88","impliedFormat":1},{"version":"02aeaa95c9b6125f8b6e5bcc16fc6df7d8f2bf945801defb73e1c13e1fe57c51","impliedFormat":1},{"version":"84a2bcda31149b3f26522b044a8aaafe6818000d81ba296f375ba4bb1d5b9859","impliedFormat":1},{"version":"fe995eb8b806358aebf1e963824ea181b2fa9cc52e2dc4022eec67730b742753","impliedFormat":1},{"version":"52db5fc6d8fa0809b2110d96434a06ad26776677e825a10f93fe133497f6c93b","impliedFormat":1},{"version":"d9411ee7bb83d2304f0fced054eef996c5fbc2dfee2936c42c8696f0ce1b5b51","impliedFormat":1},{"version":"cd6315088d4403254ff4a59c32c25c8588d2533f07a1204e0ec0a132e5d31395","impliedFormat":1},{"version":"204ef1918267feb2040caad874caebd9bbf4f018367517750eeae16d880b0698","impliedFormat":1},{"version":"f6e8311e83274671b80860cb83c1c6393971d596200c4fc504ac7dd3ffa50340","impliedFormat":1},{"version":"c4117a326ced8cc18ed60273de14f4c5e78a53cf2c59092f6278a8afca8d9ced","impliedFormat":1},{"version":"34787d4cfe21491065b9e8c3038a66c78747dc97b171b1201ff3913f2181e5c8","impliedFormat":1},{"version":"fe4c08b22b011d68b3625c665cc302f77bb8aed4b35853a53e3efaf082bc8e83","impliedFormat":1},{"version":"743e3303fed6823026dba4b34833ee6b59779678fd7daf64e1e9049114016b1a","impliedFormat":1},{"version":"7caae0b58bdfbedfbdd1a2f5b41779a08cbf62d62f7be63cd70cc71fb97165a0","impliedFormat":1},{"version":"b611b2a0b82dc6e520bc8c6698c0bf4481aba89c4923450f0753c062e4754c7e","impliedFormat":1},{"version":"68a9e5bafbcd95d796eaa02666490d05b3344ef667110560f07ad53bdd9d4d95","impliedFormat":1},{"version":"dcbc3cecf73f68c9d63280f3c9747bc6140b1eb9d8b5e5f04de58ea67c564a70","impliedFormat":1},{"version":"57f6aaa7e079189a64c2b15909cc89aa4a6f54c81b185108e906deeffdee1516","impliedFormat":1},{"version":"7b86682a3abdade9ceed5cfb5503097496223b93fc257de6795c4736efa841c1","impliedFormat":1},{"version":"07afa56980800740ec44e0b2e08d37d31c3ba1bcff58417ab7c26478bc37e4ac","impliedFormat":1},{"version":"02b6175908b56ca273252e8f734cde6cbc88c298384f4b397e63e41240184dc9","impliedFormat":1},{"version":"59fdde76b9d1518ee3a6711b14dc0b7582b7f9cf702c0cb8acc0bda3aef9e1bd","impliedFormat":1},{"version":"0a20f875729ca5de76aa486ba9cbb1913e349ae2d7d1c2e1ad3b45e142ca815d","impliedFormat":1},{"version":"477b09f880a9f9364b68fe02e237f3779fbffb0761bfbc3f77fa895ca49c44ce","impliedFormat":1},{"version":"d85a0edc67a11fa750331746b55fd5af4b41f1bd11e550ff7090abc9e9f83ebc","impliedFormat":1},{"version":"666732d3b18e0ae093bc48e5cd08380a7fcc64c06b7d8d0b4899567c5de7f5cb","impliedFormat":1},{"version":"be789dbab62f36a20dcb50cf0e67d0ef6b3e3cac17bc0aa9bb30bbe51756ea63","impliedFormat":1},{"version":"202596f2a7cba63ba07d482e8af95b70ee54da4c177643afdeed07bf28c5997a","impliedFormat":1},{"version":"d1658de6ff4ccce2e9cfd8b11722a6279bd3524644d0b65e3e8fc6b69b5ca49a","impliedFormat":1},{"version":"dd751fbe8122c04b3f1686647424f16034ffbada51dadbcecd0dc828ab75e66b","impliedFormat":1},{"version":"4091c43b763549c33d662afe79d75c078622bef954d4a473eca6aef8c251c169","impliedFormat":1},{"version":"c6d04e229bb0767e5c49465fa0e8e242749ea9d6f5fd48580e0759dd202689ef","impliedFormat":1},{"version":"402c1b5455a8fa4f474bf64354f72af7c01e4ad9b1685e3063216b95167a3fdc","impliedFormat":1},{"version":"df38d6066bcf7ef916b9e971e9c92d3f54c12a21235fa5694062bb57f6a028c2","impliedFormat":1},{"version":"5990d3194dafd93fc7a9e51032d11a57756c31fdcd88fac3b9be08af303972c5","impliedFormat":1},{"version":"987562ea1c31f04677cd3b46cbd4cdc6363f6178dbfd4db2a0788fe22947b8a5","impliedFormat":1},{"version":"0de5e8597a103c005b774f8892352a5f123a5e272924fe967b7d82305113bc4d","impliedFormat":1},{"version":"16185bd9e115626e25bca46fb8238f9ef3706c22b62ce940ae66c4e4cfde0df9","impliedFormat":1},{"version":"5711b07fe1b6426486276dd67efdee7ec4e70bcfdcaf39c6626594bbd7d51c34","impliedFormat":1},{"version":"7f81c91c6febbd59728630098f6f2b1e4afeba6af9128645634520d5681096a1","impliedFormat":1},{"version":"269296ab0ca6cc30fad3ccb911b1ff589d4a2c6ea7077c26c7ea5fe650103d6e","impliedFormat":1},{"version":"a49ef7664e1afe51062e193f0008ed621d8a3af547d994123ca44dbbb68c75a2","impliedFormat":1},{"version":"165ee417439a725fbd0a04278830c1056354556188d6000e5dc8ecd12cd3cb10","impliedFormat":1},{"version":"9539893a03d2cf718e8c38adf1a845ec0183ab455c8b257c64cd6727f57b0e1c","impliedFormat":1},{"version":"5e0f0b5968cb81b81847619fb6643f364d0eeb630e575fd0029d22c1171b3a37","impliedFormat":1},{"version":"45fb63c6d3a608b091c3baaaafe97de027a061e2f10813aa97d003b654417ed9","impliedFormat":1},{"version":"9a1bce80c36643bbc3e66c7db014c849b81a1d2d3ebfa69000f03e64545566a0","impliedFormat":1},{"version":"f438823b9ca13c413beaee87829111be171b305995bcf71d67ddd941de6dd999","impliedFormat":1},{"version":"623e7ec6876645a7e93a1a67506f3852b8e5e79ba3cb4c9a90ff8a24d3377a12","impliedFormat":1},{"version":"0ddba574bf51b1e47c502caa07ff96528b0c49878c2521ceb322a94557a824ee","impliedFormat":1},{"version":"3111b876a50a391cac841049c1683d20bf7d83eb05d5ff10b0a49689ca0dc49c","impliedFormat":1},{"version":"de84187571b3fb57d7d47f3199fe75845d024fa2c4aeb0a8bca8a281e37e9b62","impliedFormat":1},{"version":"4e302b950595396f49e539c733b44c52b77a9d3b85cc7c6fd24fcc7df1e30031","impliedFormat":1},{"version":"668eb6f044ef3e07635b3da9b29413de381299f80fdeb90e3ba5bea910d9d588","impliedFormat":1},{"version":"f75b6da37adf4f4fcb1b3e6e30099d345bfcfcc2024dc304bf6eaf40ed477c5a","impliedFormat":1},{"version":"39701d3533318e98924f5e5a4fb0ea5b49527853ae63e78e26190955c1ba4d62","impliedFormat":1},{"version":"30cb04bc8d380ecb7053659c2b42b48f87ffd05af3abe9f7b4783e07777a8d96","impliedFormat":1},{"version":"96847849b0b8472d06b023c7f6fd630cb5cb3e6129bf16c6ce58a931084c1d04","impliedFormat":1},{"version":"f15bb0a6bb20f0a494969d93f68c02a8e8076717fe7dcda6db06ab9e31041c22","impliedFormat":1},{"version":"84e3928255909a8e580fca688a15fbedef5c190e5d1a8da1dcd99afb6a40e617","impliedFormat":1},{"version":"58b8d98c9e39b0a1bab10c9a19a61d9fcac111aba5a6ff47e86525c079ddcbbb","impliedFormat":1},{"version":"a69abca4388cc76962773b4c869d5d34781cf0be92853d7bec53eac7a2f75c60","impliedFormat":1},{"version":"471b5d5986eff907c7f4b7047b54c15648495f94e219a27fd8cc91f35fa0e970","impliedFormat":1},{"version":"75cc2a2e33c7d3fe1574d9c93712950b5556dd4af48a1d1e5a657c66ff2eedf9","impliedFormat":1},{"version":"05c44f2a752cfbef15a81e90bc63eb96efcd3d07dd9b378df5a150a06775a2fb","impliedFormat":1},{"version":"9699ff431424e42dfeeb6417ea7b4d1ed66fc6bfc530748dfedebd2683fcc1b6","impliedFormat":1},{"version":"496197b06b51aeae8323da87d042ed2224e654994a3d9b5e3350df9c9576dc50","impliedFormat":1},{"version":"9d744f7d5a08aa240bceb2755dc8c6ee681cad5e818009162e69ae915bba6b77","impliedFormat":1},{"version":"86b7e0f835e2d550541c27e03abf5270a42f5876e1e915568289142b317a0ffd","impliedFormat":1},{"version":"ac6990a9034baddaf28cb15200bd2f0a46efb118d08f4d341abc16669ad577a1","impliedFormat":1},{"version":"29faa0f1ab122161019ca07b328664d62b5b1ec742606fa5b34851603a49a77c","impliedFormat":1},{"version":"0e07fb22607b2eda1883d4521080a5a29ef90714c1ae598e53eae0b94bf1bd10","impliedFormat":1},{"version":"52cb5d5beedcff01d5b851653cfdbe9a8e8e953a8462a357e71d93eee3ed760b","impliedFormat":1},{"version":"ba6d810e67aef7d6ed15cdd8223d5a207a111077c88d99ce7af5fe959a079803","impliedFormat":1},{"version":"3e02766c76edcd0486eeecad81ca4982a532a80293d71a8d94973e89feb5be2b","impliedFormat":1},{"version":"34e45896ae4bd8f3b44772aae2989adf64febd060810a9e08fc72b07778e58bd","impliedFormat":1},{"version":"e9d1e246d3a0510d5ca97f6c154d00bed351359b868294905efe98052ec6bcda","impliedFormat":1},{"version":"5668bff27e260e0a51ee72b7e0f6e69bba542b8a69f553c30d86e124adf479dd","impliedFormat":1},{"version":"1b4262a15a86e72e78d7fdbb6a6d20e8794f7fa4aa7c54f0b18ac7270e4fab08","impliedFormat":1},{"version":"9334b283bedfcd488ccb33b3e942905c86fa163e919653a5379eb8f28a2d5f7d","impliedFormat":1},{"version":"f3f62eb4cf38d86cc7f56d0879b49656a21f2eef4fd0acef3936889327d7f256","impliedFormat":1},{"version":"e32c5cb1819686336a2101f31b91c2e8e06f8f8311abd1195c203b81b62247b0","impliedFormat":1},{"version":"683734687779547527b05fdcef60947f6fc51758185d788531e9ac7bde84fd6f","impliedFormat":1},{"version":"c418f31663f9aa18537f6443172821265c078de18427ff136a24c536e76b7fc4","impliedFormat":1},{"version":"dc14049ed7aab615142091af18c8033550203d91c18c5ad2101f891b877cf265","impliedFormat":1},{"version":"1df375435c44c94f1bce343de4ff81b8c82e644d6b33a801bc6cf4beceb76b71","impliedFormat":1},{"version":"fed5b5c20508c5f84a929161f452dbf769cc2d2ee1371b94ddc2feb418a0cf70","impliedFormat":1},{"version":"76755db046290dad61362d95c03b440a0feaf507edfb5744304c7f98c81faccc","impliedFormat":1},{"version":"e16841ad044e21c48c6065627566a2ac216e067cc34b9ad3b47312d208d9a262","impliedFormat":1},{"version":"7150b4a18287da2e25c68a12bd0cff78f6141a2425a27431a10cd4a91cb9626b","impliedFormat":1},{"version":"214a581fbe6902059a64de2bd75c56b6030c6388c29de93c4296380a99c04e4a","impliedFormat":1},{"version":"78b758d401e53f5319bc143ebdc7714ebe0f1e94fc3906d5e93816e5736bf299","impliedFormat":1},{"version":"ce50872ae30242ed1ce2ddb9d9226c85f17098e901bc456cfc365887ab553127","impliedFormat":1},{"version":"cae86d70eabc661dff2f46f34018ff4840228f01709c8399a9c012711dfe5292","impliedFormat":1},{"version":"77b463688f41048f449fa30b45393b81fd6dfe3eb71f7734c1a6d580373b6a12","impliedFormat":1},{"version":"b6ccce9156aa85ca2e836bc572d4697800739ab008b0a6ae9bfa0361b8baa04c","impliedFormat":1},{"version":"07dcca6e9f155b79d087216735842ab1f7c020ce41f095507afdffecbac06a03","impliedFormat":1},{"version":"1fab3bc9db401033ed6ef6dca9114b3a0a875b475b6c1b2ce52efddf3c4fa130","impliedFormat":1},{"version":"269b37626ed3fc5d6aff2b3103bfecdb86ab69e5fe28933b63a17ac83a547ede","impliedFormat":1},{"version":"1ef3cc7b03643e330cf9bcaeb42257a19f573bfafdaf51e2e45e52c19e20c3ff","impliedFormat":1},{"version":"e05f14953944c6b7f9c8a51c5739cad11e7ea4e441fd5659cbc3a5ebdc28bcfb","impliedFormat":1},{"version":"98fe9a0d3adc98c4aadc97a5bcb8c9589525e16e82e6714333e0315d1ff40a12","impliedFormat":1},{"version":"941c51312144ba38e2d86c081d212bc1f22f64eeb1dc342a1c7aeaaece7a7770","impliedFormat":1},{"version":"8d204669e89ac66eb2fa93e17daf42dc9fa33b3d865158327819df72f4fa3f1f","impliedFormat":1},{"version":"4f66c595621f6dd5c693d12c122def1c9eac9c48ace86deeb7c1a0fe54d63c61","impliedFormat":1},{"version":"6b26f80f079695a24ca28f6b19bb074ddb70cd79bc837ae8437e54ac8727aa14","impliedFormat":1},{"version":"1686e8b2a3bca066aafbb9bea2ac249e7205af7e6b878955741c66b3a4eaba63","impliedFormat":1},{"version":"f974c4abba2e7ae62cc358c6c1589df489406ef517a48355cbcc5f09cf11d8a8","impliedFormat":1},{"version":"949ab063079fbbcbf8a96c093b9cc465f83fd2ce49f4558492d6f95065cb201d","impliedFormat":1},{"version":"2d1c8bc1708e58c9aa73d71f89dc69d45fd00ed42841d022bbffa467c88464f4","impliedFormat":1},{"version":"55c3e286e757f731c3b80c1e6d4a567bcc6d5d512438016240e7da573a554dc3","impliedFormat":1},{"version":"33cb723eea3ced280f163fa717045e233b801081a64509d4d59b47620fde9ef5","impliedFormat":1},{"version":"8c357660e14e4ae047c44211f7d024d48eacf3d5ad6ac805095a436a4d3e268c","impliedFormat":1},{"version":"e67731d353b0f48ec4c7b1cee2358e2b7b6ea56c86775f2f3c07029b73b8bf06","impliedFormat":1},{"version":"e2eccdc38e22cc3882939c7fca91570a8379112c03f6206986e0bd78afeed21c","impliedFormat":1},{"version":"58a60f1ff614a331f5de62b4a629b5f41066430f7b72f65ec27f0cf841403c9e","impliedFormat":1},{"version":"bade739298ee5cd485966b3f2812cd94ed23be0bd8991624bde84db9e41e4240","impliedFormat":1},{"version":"4289204445b85c740954797654b504406befd2168731ec18efffb3ea22674a5c","impliedFormat":1},{"version":"e8ac4073fe7b469e55e1fc7b1540363d5a99b507839135fc97cfe5f2d0e36595","impliedFormat":1},{"version":"0f45169be3f2e0eb418bb1d5d480aa8fca7375af0b6e51dfccc3afbf77d9ef12","impliedFormat":1},{"version":"25699fd6154aa1d8ad42dd7739ebe65e15277c0f44d15ce6826cc43bde4ea5bf","impliedFormat":1},{"version":"d4fabc6a3e3110ed60c84e9ec6712265afe268601f3462198b57aa4359745c33","impliedFormat":1},{"version":"802353808bbaf39f8ce455fc7c459d39f13a2fefcf6f18a78c9ea0c61be089eb","impliedFormat":1},{"version":"a057b62631a72f836a8faa37332f03324b9610bf1bd7781fd6f93be063cd10f5","impliedFormat":1},{"version":"76c5f9421476e8762a83f970028b5b7e9ac13fade254d40c04c188f87be8fd7b","impliedFormat":1},{"version":"6378e4cad97066c62bf7bdd7fb6e2310f6a43cdf7aba950a2d37b4b0772c0554","impliedFormat":1},{"version":"3b6fddf2afbdf36f7bb869ccdeaffac8d53759e527e3425a6b8df4dca616d1fd","impliedFormat":1},{"version":"e88588861f78985ee212de6a72e45b445e5e04286b4ce1eb1d28d72bb781e269","impliedFormat":1},{"version":"22b9f52673fc11b687471594d6080d4319999e4d98903679a4ba94d24b056426","impliedFormat":1},{"version":"3d594041401ac69433c4a2ee492d356db4706adddd4f8201e7e5f542e58173b2","impliedFormat":1},{"version":"806aa43416ea1f5265e1cf94168fd4902348762aa8114dc53c131cff9f87b5ec","impliedFormat":1},{"version":"f27757e22127417f5daddd0ad4be81d5a743c95576d8c957ce39ef02a6cc1ec0","impliedFormat":1},{"version":"383679ac9fe44ffb52057dc5ad7ee2e4a90a3f4abbe9a1cf186d9a2cee617965","impliedFormat":1},{"version":"2477c532af85038f0cf6146355af295df4d165910c023fd2765a013af3135b4b","impliedFormat":1},{"version":"e55a383bfdd0134ca560a442e9cb8b7fc2be59ac7773936cb26bfe05efb9ad02","signature":"81710a84fd6f983250a7d58fdecf0929cf6f0cad3a5fbdf3c159e1bca2dd9d98"},{"version":"f4306336aa96007e6a860a290c686b5d5995f43a4e75754f36c40364aac319f9","signature":"c9b7a0df27bdc21f921275c20af8303500acd1a62f194c9effb8ec01204ff265"},{"version":"65717dc8e3a78d5270d9e6fa52c7381c543e87252d232dc7bc46ab58fbdd496a","signature":"4c866bdc068ab2771e940edd20f15781f167c8a5a3d63caf21509a324b4ab3dd"},{"version":"987339ae38c9341b0d90da7350e543c0d561d04b540f29a6912d387ffee30123","impliedFormat":99},{"version":"78b320333fa889c9532276db075578cdde53e41d0c5ff1dc901a22e5c9e25bd8","impliedFormat":99},{"version":"d6add5a006175d8e4ac5067baa29854010ae2be9eec488f3b09f62e48fdcbc73","impliedFormat":99},{"version":"49e7711e90d7bb03416d5681b51340d41a0511528d6faa578b929dbb9dfc6750","impliedFormat":99},{"version":"44bebcbc4a93fea28f3564a7763dd12f0f3bdec624eb8a63e97afd007d1ff4bd","impliedFormat":99},{"version":"58ff317d61b47e8fc6688bd50e6770311691202553f119d1e1d79b64d864e200","impliedFormat":99},{"version":"2bcba968352e7a0ab44a841f38846bc1137b4f2dd389e174962d2ecfe17f1f83","impliedFormat":99},{"version":"7531f6904a711cd870729de7bd8fb5829088eaf82381e88f81aa4a2c9ec57b75","impliedFormat":99},{"version":"e7bd54c49435fc3668d6124ec6c400da823e088d7791ea4edf9483d170e5402d","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"6a1197b37f8f406bfb74528ca1fb90659c6d1a251d472b1c65affb5c6a6ba5f8","impliedFormat":99},{"version":"516c53364c6b242591c65afc8b0f0f0cee74ac8a04f52470a539fcb33da2e318","impliedFormat":1},{"version":"045fe6d9e971df69d53ed8f1551e60c4849b0529e407e5960b31096418fa8346","impliedFormat":1},{"version":"0974c0312c1fe25e56e8030b1830ce8bc071a973714ac6f2409894addc346fcd","impliedFormat":1},{"version":"d10db4f48a9957fba79c406fbc79af87d979d34a1bbf5e12ca4a53cef0f16cca","impliedFormat":1},{"version":"3493d3ac411c6977f391ab438a9940c3a8e06dc04b7e2d84e0571a30aa224314","impliedFormat":1},{"version":"2907069986d89f01c9151da8a01161545a283405369bf009dbad2e661c556703","impliedFormat":1},{"version":"0feee6a4ec2ca4ce1072d0bf3a9839094b5a651decd598b2fa79bcdee647fb16","impliedFormat":1},{"version":"5bac046f252b55e3b05035d5329e2ef15a944fe429d81ac7fe36a4cd8bb8ae7f","impliedFormat":1},{"version":"4e1949bcfbde9ae075bff5b15ce1d3a401624840cefdbabdd6516004b93b821d","impliedFormat":1},{"version":"12d41a4154d95453005e843ee2b749372c56973fd6f81311a95eecf451d582c9","impliedFormat":1},{"version":"1d7d547458413ad30676d4615d15dbf49d997e052dd9d131419451e727a6ea00","signature":"095a49138a1ce4cdc8f3c3ba55cce41b99259228501af1ed814a2e790a9d76af"},{"version":"bf8efd00f85b23667b3aa085270dbd4bf301b1bd3ae33f8c67723a69d373d4b2","signature":"b3c6bc906c87b1978420537ad779423fbc41246660b3fa651f680140cd11916f"},{"version":"b05f67fbf31701e85c3f299bd3ddf2a83d277eb616dcc1aad0f3c25c3fbf0da2","impliedFormat":99},{"version":"98f506ef1d9a5709fdd74c39e79d10922bde44e4ae6ff8827bf8a31f63833d18","impliedFormat":99},{"version":"51429f743902db4f2b5bf1fa85c1bf49ee06c7300b759b20b7f5526a80dc3e93","impliedFormat":99},{"version":"9766d327ed5b2e47f4d81b0f10cd337dea01b7acd017becf5ae7d95dd56792c2","impliedFormat":99},{"version":"f1eb6e94c9a698e55e1d93ddc305b84d80540e284dc5f0c8c793ac5ac1b9a326","signature":"c064be0040233a91b43eb9020c69c127a4641fc97aeca0249fe902e32567aac0"},{"version":"8328a921a2918c545c421b29231c54989da30ca30fe99c11cd782b33a1d1de3f","signature":"64321ccc804b3032b5d592406d8375fa1ddc0f9e9cc433226bc3f526fe86c886"},{"version":"d78c698fa755ef94e3af591883bfee3a330ffec36392e00aaacdff3541cf5382","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","impliedFormat":1},{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true,"impliedFormat":1},{"version":"6968359c8dbc693224fd1ea0b1f96b135f14d8eee3d6e23296d68c3a9da3ea00","impliedFormat":1},{"version":"79d75a353f29d9f7fc63e879ccebe213baaaea26676fb3e47cc96cf221b27b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"dfdc7699360a0d512d7e31c69f75cb6a419cf415c98673e24499793170db5d6b","impliedFormat":1},{"version":"dcf46daa1e04481b1c2f360c7a77bf019885bd70353a92aa698b9c22b7fe3d6b","impliedFormat":1},{"version":"033350619c2cfcbeab2a483f4b221e0866e17cc4ac514240d285d35c35eecf7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"b197fb2d5fa71cebc66e5d10e15c7d02f15fcd3194fbdaafeb964262582f2a82","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a7f593d587f49ca97710c021c453ab1b95db5e39e58567f4af644f97a5fb0e0","impliedFormat":1},{"version":"dd4705d1d78af32c407e93e5df009962bed324599d6a5b2a9d661ba44dd99e43","impliedFormat":1},{"version":"3a02975d4a7034567425e529a0770f7f895ed605d2b576f7831668b7beea9fea","impliedFormat":1},{"version":"7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","impliedFormat":1},{"version":"cf87b355c4f531e98a9bba2b0e62d413b49b58b26bf8a9865e60a22d3af1fcd3","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a08fe5930473dcae34b831b3440cd51ff2c682cf03bd70e28812751dd1644dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f3e00b838cf23f7837ffca5da88ae25f0a81742af9ccadce5cb85ac72050929","impliedFormat":1},{"version":"304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","impliedFormat":1},{"version":"cbcb993f1fa22b7769074eb09c1307756e6380659a2990d6f50cfd8943bd8333","impliedFormat":1},{"version":"55a93997681797056da069cfac92878bff4d2a35e61c1c16280ee0cba38702f2","impliedFormat":1},{"version":"ea25afcaf96904668f7eebc1b834f89b5b5e5acafd430c29990028a1aaa0bcbe","impliedFormat":1},{"version":"df981b2ce32930887db27eeae29e48b9b841e4ba0bbba1162ebed04c778cd7e1","impliedFormat":1},{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be96458790a77cb357856dab45d1cc8383ac63ba4e085f620b202fb62a6e1db","impliedFormat":1},{"version":"02d85d03fd4a4f63cba0b133f0e0192368dfeb4338bd33f87788a4f6302de873","impliedFormat":1},{"version":"bb3a0ce56babb71d7c208ed848b4aafe545e7a7e06304fc0c8cfe3ad328cab7a","impliedFormat":1},{"version":"43bb766c0dc5f1150021f161aa6831eb2cc75dab278172408515cb6e47f697a9","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bcf09ba67bd0ec12a9f1efc1e58e1ba2cb1ff78920ce6cf67ebfe6003c54b82","affectsGlobalScope":true,"impliedFormat":1},{"version":"13ce7518e39051544dd1e3124c185665adda05a5021676f2606c2c74ad2c964f","impliedFormat":1},{"version":"4ac5899be65d5e2cabe3aaf3dfc2cf7641e54dde23db198d9f683dfabe228145","impliedFormat":1},{"version":"124dacf89c97915479ed6ad81b09ba42fd40962d069c0642fed42e2d9719f2ba","impliedFormat":1},{"version":"139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","impliedFormat":1},{"version":"ad06959073c066bb9543ef9c1dee37fc3140d2ecaae42b97bf4e27f2f03d6511","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"782abaae13e868dee4ea9c16d44499af251d112fba535c558d10ff5279b34678","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","impliedFormat":1},{"version":"98e7b7220dad76c509d584c9b7b1ec4dcbd7df5e3a2d37d28c54f74461ec0975","impliedFormat":1},{"version":"c61b5fad633f25bb0de0f95612191c1df9a6671cd66f451507b5223bff41b50d","affectsGlobalScope":true,"impliedFormat":1},{"version":"d21966ba3284ade60cb94eb2c533ab5b2af7fd0b4b28462043f6ebcb8400bd21","affectsGlobalScope":true,"impliedFormat":1},{"version":"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","impliedFormat":1},{"version":"b8e9e44ce8eba70af569523ff31d669cc239a93f548899a259f3224392a75e6c","impliedFormat":1},{"version":"005d1caa2a5d9bc096f75b598d0fd184bc848dd2665b050a17a17d5dc1ef652d","impliedFormat":1},{"version":"619735e4e221e1bf137ae3efa5330beee4a06039dccb876c822f9d8913a392da","impliedFormat":1},{"version":"3560d0809b0677d77e39d0459ae6129c0e045cb3d43d1f345df06cf7ab7d6029","affectsGlobalScope":true,"impliedFormat":1},{"version":"5ab086d9457abbc69cca270e5475073f2e8eb35b2fb810c516400de7b7c7d575","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a2fd53f2d963624b596fb720b390cbfe8d744e92cb55b48a8090a8fd42a302d","impliedFormat":1},{"version":"1f01c8fde66abc4ff6aed1db050a928b3bcb6f29bc89630a0d748a0649e14074","impliedFormat":1},{"version":"60223439b7ee9b26a08d527cacc8b34ea6c6741589ef4949f4669c9aeb97978e","impliedFormat":1},{"version":"48fffe7824c2e8cf8c812f528c33d4c4f502767582083df35920a7f56fe794b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"561bf7d1d3163db272980f9167b4b98f6a9ee8698c5955e9d9584e84088aad51","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","impliedFormat":1},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"95da3c365e3d45709ad6e0b4daa5cdaf05e9076ba3c201e8f8081dd282c02f57","impliedFormat":1},{"version":"b0171c3d572e7f8a2266e4d1f2507f26549264d15706a61ccc8eb1b8e1ab7a2e","signature":"568a1ac85d12f2687ea547ba8dc2dba6c8c2b8a69ef6da93ffc16141537faa63"},{"version":"6bb65f455906a10046e1d979fd18593030b390ce61e4c61b925c590f07572ce2","signature":"5eba0625165c45ccd1854260662472a5457557367610db17e0a891e12b1cbf55"},{"version":"87400de291337a18f7be60efadc4eafb157070f3ba787220d0919eccd12fd39f","signature":"5272aa558cae6e125b58bee5cdef0713f5ffd01f57ac8675a33b646bb10d4643"},{"version":"a1d5052176b632daf59d7d0d70dfe895d8cc60627f09b1f9c7e146ec474030c4","signature":"e2452e92ae5d6c988d35cd29020996d7b7d7ead773eb8a4185f54a0e6d7020f2"},{"version":"d10fe662bd1e9af0202c4761e4a5dba92beb36efb770cdd2791ef2c09d24a9ef","signature":"a1cb8547a4fa001f56b1d735c4ffae50bc2bdf78645aed8bc14a001fee4327c5"},{"version":"de527ed5993c8cca72bb2c87b665371d61fe940ea22cb9434eb5d8face35468c","signature":"2a18eb9fc556c591d645b233ab5b295dd3ce075052f0f315988514524f2a4e48"},{"version":"d8f07a67e86a18bc4ee005bce253e41d7529d21f9a92864a6695f334546bf433","signature":"dd35e7ab40ba4bb66cf58713adcf7bb67fb9ee2ae16bc8780dcb6fde876cfcb9"},{"version":"9f129e758c00f0314c883ecff1bcb8c24157c8787132e05c775c71dac7a60e95","signature":"9bbe624b3561fd7345e1a2fd6675b15777834812eb073cb7c3bba1e0f61031b1"},{"version":"88232b9ee388d4d4e113c23fdcda22782fc7c4ffe71800743aafd3bbcb189591","signature":"a157eb0b595142f7eed0e52fcb9f7173648fb8ae775b4b22bcbb9cf1640c173a"},{"version":"9e5ed848775eed8a807fce3b272f5ab8d835d4d1b70c314a563fe52f45aa5840","signature":"491d09fc99ae31c5882b8d7b62d02ace8ab517f04712457067c6046f819e5e1d"},{"version":"6a46b4a9f8db9851548143a8797e92b528d2d63121e8562f7e9333ff896dfd01","signature":"0b2d89292e27758338832aac912e85cb5493340894dface461f88a648e2c5884"},{"version":"e1b2f07b105058544423657603b72af1a40f10f62c44e3707f8b69d2ccdc7592","signature":"8b87b6fb14e07b74956e1c79bdf06b70eb0075e966bd727527042e9bdeb3dc5e"},{"version":"d20e720af720ccfb99238939128da53b763f12631958ac0acc927a2b6a688aed","signature":"2774b13ddb961512b314a399012b2bbe3ae7e5dfd23a299643365597b99b444b"},{"version":"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"dfcd866c260978314882d091e31a7b07773d9d726523112081e458fd2758a26b","impliedFormat":1},{"version":"9d4073b672a0fa8bad4de924b66e6610f2dd2206e3132d1a79f3cc6800d804a0","impliedFormat":1},{"version":"67e39a466cfb0e07507f1431c983f6dc1b6739436216f9a55c075ee82a68b130","impliedFormat":1},{"version":"26844826cb93d1cb95aa49dbaf3515600c53fd139a82c6e0acdbc4bd2c84953f","impliedFormat":1},{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","impliedFormat":1},{"version":"908217c4f2244ec402b73533ebfcc46d6dcd34fc1c807ff403d7f98702abb3bc","impliedFormat":1}],"root":[[419,421],451,452,457,458,[548,560]],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"alwaysStrict":true,"declaration":true,"declarationDir":"./","declarationMap":false,"emitDeclarationOnly":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":200,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"useUnknownInCatchVariables":true},"referencedMap":[[423,1],[425,2],[426,2],[429,2],[428,3],[430,4],[455,5],[456,6],[569,7],[565,8],[564,9],[571,10],[547,11],[459,12],[460,12],[494,13],[495,14],[496,15],[497,16],[498,17],[499,18],[500,19],[501,20],[502,21],[503,22],[504,22],[506,23],[505,24],[507,25],[508,26],[509,27],[493,28],[510,29],[511,30],[512,31],[545,32],[513,33],[514,34],[515,35],[516,36],[517,37],[518,38],[519,39],[520,40],[521,41],[522,42],[523,42],[524,43],[526,44],[528,45],[527,46],[529,47],[530,48],[531,49],[532,50],[533,51],[534,52],[535,53],[536,54],[537,55],[538,56],[539,57],[540,58],[541,59],[542,60],[543,61],[79,62],[80,63],[99,64],[94,65],[95,66],[96,67],[97,65],[98,65],[87,68],[86,69],[84,70],[85,71],[90,72],[91,73],[92,73],[93,73],[83,74],[89,75],[88,76],[82,77],[568,78],[567,7],[76,79],[476,80],[483,81],[475,80],[490,82],[467,83],[466,84],[489,85],[484,86],[487,87],[469,88],[468,89],[464,90],[463,91],[486,92],[465,93],[470,94],[474,94],[492,95],[491,94],[478,96],[479,97],[481,98],[477,99],[480,100],[485,85],[472,101],[473,102],[482,103],[462,104],[488,105],[316,106],[113,107],[123,108],[122,109],[442,110],[443,111],[447,112],[450,113],[448,114],[446,115],[444,116],[318,117],[108,118],[449,119],[445,120],[177,111],[317,121],[307,122],[178,123],[310,124],[441,125],[234,126],[240,127],[241,128],[242,128],[239,129],[319,130],[224,131],[244,132],[248,133],[249,134],[250,132],[251,135],[200,136],[190,137],[199,138],[252,139],[253,140],[194,141],[255,142],[256,143],[185,144],[257,145],[261,146],[263,147],[265,148],[266,149],[267,150],[198,140],[260,151],[269,152],[270,145],[271,153],[273,154],[195,155],[274,156],[275,157],[233,158],[277,159],[278,132],[280,160],[281,161],[285,162],[291,163],[290,164],[293,165],[294,166],[295,166],[296,167],[299,168],[346,169],[320,169],[321,170],[322,171],[323,170],[324,172],[325,170],[326,172],[327,169],[328,170],[348,170],[329,170],[330,173],[331,174],[349,170],[332,172],[333,170],[334,170],[335,175],[336,172],[337,170],[350,170],[338,170],[339,170],[340,170],[341,172],[351,170],[342,175],[347,170],[343,172],[301,176],[302,177],[303,178],[304,179],[197,180],[305,181],[306,182],[186,183],[187,184],[308,185],[309,186],[311,187],[312,176],[313,179],[276,188],[315,189],[357,190],[345,191],[358,192],[300,193],[344,194],[314,195],[130,196],[352,197],[287,198],[356,199],[360,200],[202,201],[179,202],[169,202],[165,203],[191,203],[225,201],[170,204],[214,205],[144,202],[136,202],[262,206],[138,203],[236,202],[157,207],[132,202],[245,202],[171,202],[151,202],[152,208],[222,209],[158,210],[353,202],[369,206],[368,202],[107,211],[114,212],[126,213],[148,214],[149,215],[168,216],[418,217],[111,218],[125,219],[201,220],[120,221],[129,222],[115,223],[116,224],[243,225],[117,226],[118,227],[112,224],[121,228],[127,213],[128,229],[150,212],[119,230],[288,231],[282,232],[124,223],[211,233],[370,234],[213,235],[258,236],[371,237],[216,238],[217,239],[218,240],[372,241],[247,242],[219,243],[374,244],[402,245],[212,246],[215,247],[375,248],[373,249],[209,250],[377,251],[173,252],[389,253],[160,254],[161,254],[163,255],[164,256],[397,257],[396,258],[167,259],[166,260],[156,261],[226,262],[180,263],[400,264],[401,265],[220,266],[145,267],[134,268],[376,268],[135,268],[137,269],[139,270],[203,271],[140,268],[210,272],[141,273],[406,274],[143,275],[142,276],[146,257],[238,277],[237,278],[229,268],[227,270],[230,279],[228,280],[231,281],[221,282],[232,283],[189,284],[188,285],[181,286],[193,287],[264,288],[182,289],[259,290],[268,291],[192,292],[272,293],[183,293],[204,294],[412,295],[147,296],[205,110],[413,296],[162,296],[409,297],[246,298],[407,299],[410,297],[208,300],[408,299],[206,301],[207,302],[398,303],[399,304],[196,305],[286,289],[289,110],[153,110],[254,110],[154,110],[354,110],[355,306],[155,307],[359,308],[379,309],[279,310],[284,311],[393,312],[380,111],[394,313],[381,111],[133,314],[382,315],[383,316],[385,317],[386,318],[388,319],[395,314],[384,320],[387,309],[411,321],[390,322],[391,323],[392,324],[297,211],[298,325],[223,326],[292,110],[184,327],[174,328],[378,329],[159,330],[417,331],[175,332],[176,333],[283,334],[404,335],[405,335],[403,110],[415,336],[416,336],[414,110],[101,337],[106,338],[102,337],[103,337],[104,337],[105,337],[419,339],[549,340],[451,341],[458,342],[556,343],[552,344],[558,345],[559,346],[452,347],[554,348],[553,349],[551,350],[560,351],[420,346],[421,347],[457,352],[555,353],[557,354]],"version":"5.6.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@silencelaboratories/walletprovider-sdk",
3
- "version": "4.0.3-hackathon",
3
+ "version": "4.1.0",
4
4
  "author": "Silence Laboratories",
5
5
  "description": "Frontend SDK for Wallet Providers",
6
6
  "main": "./dist/index.cjs.js",
@@ -53,6 +53,8 @@
53
53
  "@noble/curves": "^1.6.0",
54
54
  "js-base64": "^3.7.7",
55
55
  "json-canonicalize": "^1.0.6",
56
- "viem": "2.21.54"
56
+ "viem": "2.21.54",
57
+ "@types/jsonwebtoken": "^9.0.10",
58
+ "jsonwebtoken": "^9.0.3"
57
59
  }
58
60
  }