UNPKG

goosefx-amm-sdk

Version:

SDK for the GooseFx AMM

1 lines 77 kB
import{get as $e,set as Sn}from"lodash";var dt=(i=>(i[i.Error=0]="Error",i[i.Warning=1]="Warning",i[i.Info=2]="Info",i[i.Debug=3]="Debug",i))(dt||{}),en=class{constructor(n){this.logLevel=n.logLevel!==void 0?n.logLevel:0,this.name=n.name}set level(n){this.logLevel=n}get time(){return Date.now().toString()}get moduleName(){return this.name}isLogLevel(n){return n<=this.logLevel}error(...n){return this.isLogLevel(0)?(console.error(this.time,this.name,"sdk logger error",...n),this):this}logWithError(...n){let t=n.map(r=>typeof r=="object"?JSON.stringify(r):r).join(", ");throw new Error(t)}warning(...n){return this.isLogLevel(1)?(console.warn(this.time,this.name,"sdk logger warning",...n),this):this}info(...n){return this.isLogLevel(2)?(console.info(this.time,this.name,"sdk logger info",...n),this):this}debug(...n){return this.isLogLevel(3)?(console.debug(this.time,this.name,"sdk logger debug",...n),this):this}},nn={},Cn={};function H(e){let n=$e(nn,e);if(!n){let t=$e(Cn,e);n=new en({name:e,logLevel:t}),Sn(nn,e,n)}return n}function zr(e,n){Sn(Cn,e,n);let t=$e(nn,e);t&&(t.level=n)}import{PublicKey as St}from"@solana/web3.js";import Ct from"bn.js";import xt from"big.js";import ae from"bn.js";import G from"bn.js";var tn=(r=>(r[r.ROUND_DOWN=0]="ROUND_DOWN",r[r.ROUND_HALF_UP=1]="ROUND_HALF_UP",r[r.ROUND_UP=2]="ROUND_UP",r))(tn||{}),te=new G(0),Qr=new G(1),$r=new G(2),ei=new G(3),ni=new G(5),se=new G(10),ti=new G(100),ri=new G(1e3),ii=new G(1e4),En=9007199254740991;function U(e){let n=H("Gfx_parseBigNumberish");if(e instanceof G)return e;if(typeof e=="string"){if(e.match(/^-?[0-9]+$/))return new G(e);n.logWithError(`invalid BigNumberish string: ${e}`)}return typeof e=="number"?(e%1&&n.logWithError(`BigNumberish number underflow: ${e}`),(e>=En||e<=-En)&&n.logWithError(`BigNumberish number overflow: ${e}`),new G(String(e))):typeof e=="bigint"?new G(e.toString()):(n.error(`invalid BigNumberish value: ${e}`),new G(0))}function rn(e){return se.pow(U(e))}import gt from"toformat";var ht=gt,Pe=ht;import Ke from"big.js";import wt from"bn.js";import bt from"decimal.js-light";var Fe=H("module/fraction"),on=Pe(Ke),Be=Pe(bt),Tt={[0]:Be.ROUND_DOWN,[1]:Be.ROUND_HALF_UP,[2]:Be.ROUND_UP},yt={[0]:Ke.roundDown,[1]:Ke.roundHalfUp,[2]:Ke.roundUp},P=class{constructor(n,t=new wt(1)){this.numerator=U(n),this.denominator=U(t)}get quotient(){return this.numerator.div(this.denominator)}invert(){return new P(this.denominator,this.numerator)}add(n){let t=n instanceof P?n:new P(U(n));return this.denominator.eq(t.denominator)?new P(this.numerator.add(t.numerator),this.denominator):new P(this.numerator.mul(t.denominator).add(t.numerator.mul(this.denominator)),this.denominator.mul(t.denominator))}sub(n){let t=n instanceof P?n:new P(U(n));return this.denominator.eq(t.denominator)?new P(this.numerator.sub(t.numerator),this.denominator):new P(this.numerator.mul(t.denominator).sub(t.numerator.mul(this.denominator)),this.denominator.mul(t.denominator))}mul(n){let t=n instanceof P?n:new P(U(n));return new P(this.numerator.mul(t.numerator),this.denominator.mul(t.denominator))}div(n){let t=n instanceof P?n:new P(U(n));return new P(this.numerator.mul(t.denominator),this.denominator.mul(t.numerator))}toSignificant(n,t={groupSeparator:""},r=1){Number.isInteger(n)||Fe.logWithError(`${n} is not an integer.`),n<=0&&Fe.logWithError(`${n} is not positive.`),Be.set({precision:n+1,rounding:Tt[r]});let i=new Be(this.numerator.toString()).div(this.denominator.toString()).toSignificantDigits(n);return i.toFormat(i.decimalPlaces(),t)}toFixed(n,t={groupSeparator:""},r=1){return Number.isInteger(n)||Fe.logWithError(`${n} is not an integer.`),n<0&&Fe.logWithError(`${n} is negative.`),on.DP=n,on.RM=yt[r]||1,new on(this.numerator.toString()).div(this.denominator.toString()).toFormat(n,t)}isZero(){return this.numerator.isZero()}};var At=H("Gfx_amount"),We=Pe(xt);function In(e,n){let t="0",r="0";if(e.includes(".")){let i=e.split(".");i.length===2?([t,r]=i,r=r.padEnd(n,"0")):At.logWithError(`invalid number string, num: ${e}`)}else t=e;return[t,r.slice(0,n)||r]}var z=class extends P{constructor(t,r,i=!0,o){let s=new ae(0),a=se.pow(new ae(t.decimals));if(i)s=U(r);else{let c=new ae(0),u=new ae(0);if(typeof r=="string"||typeof r=="number"||typeof r=="bigint"){let[l,f]=In(r.toString(),t.decimals);c=U(l),u=U(f)}c=c.mul(a),s=c.add(u)}super(s,a);this.logger=H(o||"TokenAmount"),this.token=t}get raw(){return this.numerator}isZero(){return this.raw.isZero()}gt(t){return this.token.equals(t.token)||this.logger.logWithError("gt token not equals"),this.raw.gt(t.raw)}lt(t){return this.token.equals(t.token)||this.logger.logWithError("lt token not equals"),this.raw.lt(t.raw)}add(t){return this.token.equals(t.token)||this.logger.logWithError("add token not equals"),new z(this.token,this.raw.add(t.raw))}subtract(t){return this.token.equals(t.token)||this.logger.logWithError("sub token not equals"),new z(this.token,this.raw.sub(t.raw))}toSignificant(t=this.token.decimals,r,i=0){return super.toSignificant(t,r,i)}toFixed(t=this.token.decimals,r,i=0){return t>this.token.decimals&&this.logger.logWithError("decimals overflow"),super.toFixed(t,r,i)}toExact(t={groupSeparator:""}){return We.DP=this.token.decimals,new We(this.numerator.toString()).div(this.denominator.toString()).toFormat(t)}},he=class extends P{constructor(t,r,i=!0,o){let s=new ae(0),a=se.pow(new ae(t.decimals));if(i)s=U(r);else{let c=new ae(0),u=new ae(0);if(typeof r=="string"||typeof r=="number"||typeof r=="bigint"){let[l,f]=In(r.toString(),t.decimals);c=U(l),u=U(f)}c=c.mul(a),s=c.add(u)}super(s,a);this.logger=H(o||"TokenAmount"),this.currency=t}get raw(){return this.numerator}isZero(){return this.raw.isZero()}gt(t){return this.currency.equals(t.currency)||this.logger.logWithError("gt currency not equals"),this.raw.gt(t.raw)}lt(t){return this.currency.equals(t.currency)||this.logger.logWithError("lt currency not equals"),this.raw.lt(t.raw)}add(t){return this.currency.equals(t.currency)||this.logger.logWithError("add currency not equals"),new he(this.currency,this.raw.add(t.raw))}sub(t){return this.currency.equals(t.currency)||this.logger.logWithError("sub currency not equals"),new he(this.currency,this.raw.sub(t.raw))}toSignificant(t=this.currency.decimals,r,i=0){return super.toSignificant(t,r,i)}toFixed(t=this.currency.decimals,r,i=0){return t>this.currency.decimals&&this.logger.logWithError("decimals overflow"),super.toFixed(t,r,i)}toExact(t={groupSeparator:""}){return We.DP=this.currency.decimals,new We(this.numerator.toString()).div(this.denominator.toString()).toFormat(t)}};import{TOKEN_PROGRAM_ID as Mn}from"@solana/spl-token";var Dn={address:"So11111111111111111111111111111111111111112",programId:Mn.toBase58(),decimals:9,symbol:"SOL",name:"solana",logoURI:"",tags:[],priority:2,type:"goose-fx",extensions:{coingeckoId:"solana"}},we={address:"So11111111111111111111111111111111111111112",programId:Mn.toBase58(),decimals:9,symbol:"WSOL",name:"Wrapped SOL",logoURI:"",tags:[],priority:2,type:"goose-fx",extensions:{coingeckoId:"solana"}};import{PublicKey as cn}from"@solana/web3.js";import{TOKEN_PROGRAM_ID as kt}from"@solana/spl-token";import{PublicKey as L,SystemProgram as Ln,SYSVAR_RENT_PUBKEY as Nt}from"@solana/web3.js";function sn({pubkey:e,isSigner:n=!1,isWritable:t=!0}){return{pubkey:e,isWritable:t,isSigner:n}}var Di=[sn({pubkey:kt,isWritable:!1}),sn({pubkey:Ln.programId,isWritable:!1}),sn({pubkey:Nt,isWritable:!1})];function an({publicKey:e,transformSol:n}){let t=un(e.toString());if(t instanceof L)return n&&t.equals(Se)?_e:t;if(n&&t.toString()===Se.toBase58())return _e;if(typeof t=="string"){if(t===L.default.toBase58())return L.default;try{return new L(t)}catch{throw new Error("invalid public key")}}throw new Error("invalid public key")}function un(e){try{return new L(e)}catch{return e}}var Li=new L("MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr"),vi=new L("MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr"),Ri=new L("SysvarRent111111111111111111111111111111111"),Oi=new L("SysvarC1ock11111111111111111111111111111111"),Fi=new L("metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s"),Ki=new L("Sysvar1nstructions1111111111111111111111111"),Wi=Ln.programId,_i=new L("4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R"),qi=new L("Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS"),Vi=new L("SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt"),Ui=new L("EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"),Hi=new L("Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB"),Gi=new L("mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So"),ji=new L("7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj"),Zi=new L("USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX"),zi=new L("NRVwhjBQiUPYtfDT5zRBVJajzFQHaBUNtC7SNVvqRFa"),Yi=new L("ANAxByE6G2WjFp7A4NqtWYXb3mgruyzZYg3spfxe6Lbo"),Xi=new L("7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs"),_e=new L("So11111111111111111111111111111111111111112"),Se=L.default;function vn(e){return an({publicKey:e,transformSol:!0})}var ln=class{constructor({mint:n,decimals:t,symbol:r,name:i,skipMint:o=!1,isToken2022:s=!1}){if(n===Se.toBase58()||n instanceof cn&&Se.equals(n)){this.decimals=we.decimals,this.symbol=we.symbol,this.name=we.name,this.mint=new cn(we.address),this.isToken2022=!1;return}this.decimals=t,this.symbol=r||n.toString().substring(0,6),this.name=i||n.toString().substring(0,6),this.mint=o?cn.default:an({publicKey:n}),this.isToken2022=s}equals(n){return this===n?!0:this.mint.equals(n.mint)}},re=ln;re.WSOL=new ln({...we,mint:we.address});var fn=class{constructor({decimals:n,symbol:t="UNKNOWN",name:r="UNKNOWN"}){this.decimals=n,this.symbol=t,this.name=r}equals(n){return this===n}},Ce=fn;Ce.SOL=new fn(Dn);import Pt from"bn.js";var Rn=new P(new Pt(100)),$=class extends P{toSignificant(n=5,t,r){return this.mul(Rn).toSignificant(n,t,r)}toFixed(n=2,t,r){return this.mul(Rn).toFixed(n,t,r)}};var Bt=H("Ray_price"),Z=class extends P{constructor(t){let{baseToken:r,quoteToken:i,numerator:o,denominator:s}=t;super(o,s);this.baseToken=r,this.quoteToken=i,this.scalar=new P(rn(r.decimals),rn(i.decimals))}get raw(){return new P(this.numerator,this.denominator)}get adjusted(){return super.mul(this.scalar)}invert(){return new Z({baseToken:this.quoteToken,quoteToken:this.baseToken,denominator:this.numerator,numerator:this.denominator})}mul(t){this.quoteToken!==t.baseToken&&Bt.logWithError("mul token not equals");let r=super.mul(t);return new Z({baseToken:this.baseToken,quoteToken:t.quoteToken,denominator:r.denominator,numerator:r.numerator})}toSignificant(t=this.quoteToken.decimals,r,i){return this.adjusted.toSignificant(t,r,i)}toFixed(t=this.quoteToken.decimals,r,i){return this.adjusted.toFixed(t,r,i)}};async function Co(e){new Promise(n=>setTimeout(n,e))}function Eo(){return new Date().getTime()}function mn(e){return typeof e=="object"&&e!==null&&![re,z,St,P,Ct,Z,$].some(n=>typeof n=="object"&&e instanceof n)}function On(e){return typeof e=="string"?un(e):Array.isArray(e)?e.map(n=>On(n)):mn(e)?Object.fromEntries(Object.entries(e).map(([n,t])=>[n,On(t)])):e}import Y from"bn.js";var ye=9e15,fe=1e9,pn="0123456789abcdef",Ve="2.3025850929940456840179914546843642076011014886287729760333279009675726096773524802359972050895982983419677840422862486334095254650828067566662873690987816894829072083255546808437998948262331985283935053089653777326288461633662222876982198867465436674744042432743651550489343149393914796194044002221051017141748003688084012647080685567743216228355220114804663715659121373450747856947683463616792101806445070648000277502684916746550586856935673420670581136429224554405758925724208241314695689016758940256776311356919292033376587141660230105703089634572075440370847469940168269282808481184289314848524948644871927809676271275775397027668605952496716674183485704422507197965004714951050492214776567636938662976979522110718264549734772662425709429322582798502585509785265383207606726317164309505995087807523710333101197857547331541421808427543863591778117054309827482385045648019095610299291824318237525357709750539565187697510374970888692180205189339507238539205144634197265287286965110862571492198849978748873771345686209167058",Ue="3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989380952572010654858632789",dn={precision:20,rounding:4,modulo:1,toExpNeg:-7,toExpPos:21,minE:-ye,maxE:ye,crypto:!1},_n,ie,N=!0,Ge="[DecimalError] ",le=Ge+"Invalid argument: ",qn=Ge+"Precision limit exceeded",Vn=Ge+"crypto unavailable",Un="[object Decimal]",V=Math.floor,K=Math.pow,Et=/^0b([01]+(\.[01]*)?|\.[01]+)(p[+-]?\d+)?$/i,It=/^0x([0-9a-f]+(\.[0-9a-f]*)?|\.[0-9a-f]+)(p[+-]?\d+)?$/i,Mt=/^0o([0-7]+(\.[0-7]*)?|\.[0-7]+)(p[+-]?\d+)?$/i,Hn=/^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,J=1e7,k=7,Dt=9007199254740991,Lt=Ve.length-1,gn=Ue.length-1,p={toStringTag:Un};p.absoluteValue=p.abs=function(){var e=new this.constructor(this);return e.s<0&&(e.s=1),x(e)};p.ceil=function(){return x(new this.constructor(this),this.e+1,2)};p.clampedTo=p.clamp=function(e,n){var t,r=this,i=r.constructor;if(e=new i(e),n=new i(n),!e.s||!n.s)return new i(NaN);if(e.gt(n))throw Error(le+n);return t=r.cmp(e),t<0?e:r.cmp(n)>0?n:new i(r)};p.comparedTo=p.cmp=function(e){var n,t,r,i,o=this,s=o.d,a=(e=new o.constructor(e)).d,c=o.s,u=e.s;if(!s||!a)return!c||!u?NaN:c!==u?c:s===a?0:!s^c<0?1:-1;if(!s[0]||!a[0])return s[0]?c:a[0]?-u:0;if(c!==u)return c;if(o.e!==e.e)return o.e>e.e^c<0?1:-1;for(r=s.length,i=a.length,n=0,t=r<i?r:i;n<t;++n)if(s[n]!==a[n])return s[n]>a[n]^c<0?1:-1;return r===i?0:r>i^c<0?1:-1};p.cosine=p.cos=function(){var e,n,t=this,r=t.constructor;return t.d?t.d[0]?(e=r.precision,n=r.rounding,r.precision=e+Math.max(t.e,t.sd())+k,r.rounding=1,t=vt(r,Yn(r,t)),r.precision=e,r.rounding=n,x(ie==2||ie==3?t.neg():t,e,n,!0)):new r(1):new r(NaN)};p.cubeRoot=p.cbrt=function(){var e,n,t,r,i,o,s,a,c,u,l=this,f=l.constructor;if(!l.isFinite()||l.isZero())return new f(l);for(N=!1,o=l.s*K(l.s*l,1/3),!o||Math.abs(o)==1/0?(t=_(l.d),e=l.e,(o=(e-t.length+1)%3)&&(t+=o==1||o==-2?"0":"00"),o=K(t,1/3),e=V((e+1)/3)-(e%3==(e<0?-1:2)),o==1/0?t="5e"+e:(t=o.toExponential(),t=t.slice(0,t.indexOf("e")+1)+e),r=new f(t),r.s=l.s):r=new f(o.toString()),s=(e=f.precision)+3;;)if(a=r,c=a.times(a).times(a),u=c.plus(l),r=M(u.plus(l).times(a),u.plus(c),s+2,1),_(a.d).slice(0,s)===(t=_(r.d)).slice(0,s))if(t=t.slice(s-3,s+1),t=="9999"||!i&&t=="4999"){if(!i&&(x(a,e+1,0),a.times(a).times(a).eq(l))){r=a;break}s+=4,i=1}else{(!+t||!+t.slice(1)&&t.charAt(0)=="5")&&(x(r,e+1,1),n=!r.times(r).times(r).eq(l));break}return N=!0,x(r,e,f.rounding,n)};p.decimalPlaces=p.dp=function(){var e,n=this.d,t=NaN;if(n){if(e=n.length-1,t=(e-V(this.e/k))*k,e=n[e],e)for(;e%10==0;e/=10)t--;t<0&&(t=0)}return t};p.dividedBy=p.div=function(e){return M(this,new this.constructor(e))};p.dividedToIntegerBy=p.divToInt=function(e){var n=this,t=n.constructor;return x(M(n,new t(e),0,1,1),t.precision,t.rounding)};p.equals=p.eq=function(e){return this.cmp(e)===0};p.floor=function(){return x(new this.constructor(this),this.e+1,3)};p.greaterThan=p.gt=function(e){return this.cmp(e)>0};p.greaterThanOrEqualTo=p.gte=function(e){var n=this.cmp(e);return n==1||n===0};p.hyperbolicCosine=p.cosh=function(){var e,n,t,r,i,o=this,s=o.constructor,a=new s(1);if(!o.isFinite())return new s(o.s?1/0:NaN);if(o.isZero())return a;t=s.precision,r=s.rounding,s.precision=t+Math.max(o.e,o.sd())+4,s.rounding=1,i=o.d.length,i<32?(e=Math.ceil(i/3),n=(1/Ze(4,e)).toString()):(e=16,n="2.3283064365386962890625e-10"),o=xe(s,1,o.times(n),new s(1),!0);for(var c,u=e,l=new s(8);u--;)c=o.times(o),o=a.minus(c.times(l.minus(c.times(l))));return x(o,s.precision=t,s.rounding=r,!0)};p.hyperbolicSine=p.sinh=function(){var e,n,t,r,i=this,o=i.constructor;if(!i.isFinite()||i.isZero())return new o(i);if(n=o.precision,t=o.rounding,o.precision=n+Math.max(i.e,i.sd())+4,o.rounding=1,r=i.d.length,r<3)i=xe(o,2,i,i,!0);else{e=1.4*Math.sqrt(r),e=e>16?16:e|0,i=i.times(1/Ze(5,e)),i=xe(o,2,i,i,!0);for(var s,a=new o(5),c=new o(16),u=new o(20);e--;)s=i.times(i),i=i.times(a.plus(s.times(c.times(s).plus(u))))}return o.precision=n,o.rounding=t,x(i,n,t,!0)};p.hyperbolicTangent=p.tanh=function(){var e,n,t=this,r=t.constructor;return t.isFinite()?t.isZero()?new r(t):(e=r.precision,n=r.rounding,r.precision=e+7,r.rounding=1,M(t.sinh(),t.cosh(),r.precision=e,r.rounding=n)):new r(t.s)};p.inverseCosine=p.acos=function(){var e,n=this,t=n.constructor,r=n.abs().cmp(1),i=t.precision,o=t.rounding;return r!==-1?r===0?n.isNeg()?X(t,i,o):new t(0):new t(NaN):n.isZero()?X(t,i+4,o).times(.5):(t.precision=i+6,t.rounding=1,n=n.asin(),e=X(t,i+4,o).times(.5),t.precision=i,t.rounding=o,e.minus(n))};p.inverseHyperbolicCosine=p.acosh=function(){var e,n,t=this,r=t.constructor;return t.lte(1)?new r(t.eq(1)?0:NaN):t.isFinite()?(e=r.precision,n=r.rounding,r.precision=e+Math.max(Math.abs(t.e),t.sd())+4,r.rounding=1,N=!1,t=t.times(t).minus(1).sqrt().plus(t),N=!0,r.precision=e,r.rounding=n,t.ln()):new r(t)};p.inverseHyperbolicSine=p.asinh=function(){var e,n,t=this,r=t.constructor;return!t.isFinite()||t.isZero()?new r(t):(e=r.precision,n=r.rounding,r.precision=e+2*Math.max(Math.abs(t.e),t.sd())+6,r.rounding=1,N=!1,t=t.times(t).plus(1).sqrt().plus(t),N=!0,r.precision=e,r.rounding=n,t.ln())};p.inverseHyperbolicTangent=p.atanh=function(){var e,n,t,r,i=this,o=i.constructor;return i.isFinite()?i.e>=0?new o(i.abs().eq(1)?i.s/0:i.isZero()?i:NaN):(e=o.precision,n=o.rounding,r=i.sd(),Math.max(r,e)<2*-i.e-1?x(new o(i),e,n,!0):(o.precision=t=r-i.e,i=M(i.plus(1),new o(1).minus(i),t+e,1),o.precision=e+4,o.rounding=1,i=i.ln(),o.precision=e,o.rounding=n,i.times(.5))):new o(NaN)};p.inverseSine=p.asin=function(){var e,n,t,r,i=this,o=i.constructor;return i.isZero()?new o(i):(n=i.abs().cmp(1),t=o.precision,r=o.rounding,n!==-1?n===0?(e=X(o,t+4,r).times(.5),e.s=i.s,e):new o(NaN):(o.precision=t+6,o.rounding=1,i=i.div(new o(1).minus(i.times(i)).sqrt().plus(1)).atan(),o.precision=t,o.rounding=r,i.times(2)))};p.inverseTangent=p.atan=function(){var e,n,t,r,i,o,s,a,c,u=this,l=u.constructor,f=l.precision,m=l.rounding;if(u.isFinite()){if(u.isZero())return new l(u);if(u.abs().eq(1)&&f+4<=gn)return s=X(l,f+4,m).times(.25),s.s=u.s,s}else{if(!u.s)return new l(NaN);if(f+4<=gn)return s=X(l,f+4,m).times(.5),s.s=u.s,s}for(l.precision=a=f+10,l.rounding=1,t=Math.min(28,a/k+2|0),e=t;e;--e)u=u.div(u.times(u).plus(1).sqrt().plus(1));for(N=!1,n=Math.ceil(a/k),r=1,c=u.times(u),s=new l(u),i=u;e!==-1;)if(i=i.times(c),o=s.minus(i.div(r+=2)),i=i.times(c),s=o.plus(i.div(r+=2)),s.d[n]!==void 0)for(e=n;s.d[e]===o.d[e]&&e--;);return t&&(s=s.times(2<<t-1)),N=!0,x(s,l.precision=f,l.rounding=m,!0)};p.isFinite=function(){return!!this.d};p.isInteger=p.isInt=function(){return!!this.d&&V(this.e/k)>this.d.length-2};p.isNaN=function(){return!this.s};p.isNegative=p.isNeg=function(){return this.s<0};p.isPositive=p.isPos=function(){return this.s>0};p.isZero=function(){return!!this.d&&this.d[0]===0};p.lessThan=p.lt=function(e){return this.cmp(e)<0};p.lessThanOrEqualTo=p.lte=function(e){return this.cmp(e)<1};p.logarithm=p.log=function(e){var n,t,r,i,o,s,a,c,u=this,l=u.constructor,f=l.precision,m=l.rounding,d=5;if(e==null)e=new l(10),n=!0;else{if(e=new l(e),t=e.d,e.s<0||!t||!t[0]||e.eq(1))return new l(NaN);n=e.eq(10)}if(t=u.d,u.s<0||!t||!t[0]||u.eq(1))return new l(t&&!t[0]?-1/0:u.s!=1?NaN:t?0:1/0);if(n)if(t.length>1)o=!0;else{for(i=t[0];i%10===0;)i/=10;o=i!==1}if(N=!1,a=f+d,s=ce(u,a),r=n?He(l,a+10):ce(e,a),c=M(s,r,a,1),Ee(c.d,i=f,m))do if(a+=10,s=ce(u,a),r=n?He(l,a+10):ce(e,a),c=M(s,r,a,1),!o){+_(c.d).slice(i+1,i+15)+1==1e14&&(c=x(c,f+1,0));break}while(Ee(c.d,i+=10,m));return N=!0,x(c,f,m)};p.minus=p.sub=function(e){var n,t,r,i,o,s,a,c,u,l,f,m,d=this,T=d.constructor;if(e=new T(e),!d.d||!e.d)return!d.s||!e.s?e=new T(NaN):d.d?e.s=-e.s:e=new T(e.d||d.s!==e.s?d:NaN),e;if(d.s!=e.s)return e.s=-e.s,d.plus(e);if(u=d.d,m=e.d,a=T.precision,c=T.rounding,!u[0]||!m[0]){if(m[0])e.s=-e.s;else if(u[0])e=new T(d);else return new T(c===3?-0:0);return N?x(e,a,c):e}if(t=V(e.e/k),l=V(d.e/k),u=u.slice(),o=l-t,o){for(f=o<0,f?(n=u,o=-o,s=m.length):(n=m,t=l,s=u.length),r=Math.max(Math.ceil(a/k),s)+2,o>r&&(o=r,n.length=1),n.reverse(),r=o;r--;)n.push(0);n.reverse()}else{for(r=u.length,s=m.length,f=r<s,f&&(s=r),r=0;r<s;r++)if(u[r]!=m[r]){f=u[r]<m[r];break}o=0}for(f&&(n=u,u=m,m=n,e.s=-e.s),s=u.length,r=m.length-s;r>0;--r)u[s++]=0;for(r=m.length;r>o;){if(u[--r]<m[r]){for(i=r;i&&u[--i]===0;)u[i]=J-1;--u[i],u[r]+=J}u[r]-=m[r]}for(;u[--s]===0;)u.pop();for(;u[0]===0;u.shift())--t;return u[0]?(e.d=u,e.e=je(u,t),N?x(e,a,c):e):new T(c===3?-0:0)};p.modulo=p.mod=function(e){var n,t=this,r=t.constructor;return e=new r(e),!t.d||!e.s||e.d&&!e.d[0]?new r(NaN):!e.d||t.d&&!t.d[0]?x(new r(t),r.precision,r.rounding):(N=!1,r.modulo==9?(n=M(t,e.abs(),0,3,1),n.s*=e.s):n=M(t,e,0,r.modulo,1),n=n.times(e),N=!0,t.minus(n))};p.naturalExponential=p.exp=function(){return hn(this)};p.naturalLogarithm=p.ln=function(){return ce(this)};p.negated=p.neg=function(){var e=new this.constructor(this);return e.s=-e.s,x(e)};p.plus=p.add=function(e){var n,t,r,i,o,s,a,c,u,l,f=this,m=f.constructor;if(e=new m(e),!f.d||!e.d)return!f.s||!e.s?e=new m(NaN):f.d||(e=new m(e.d||f.s===e.s?f:NaN)),e;if(f.s!=e.s)return e.s=-e.s,f.minus(e);if(u=f.d,l=e.d,a=m.precision,c=m.rounding,!u[0]||!l[0])return l[0]||(e=new m(f)),N?x(e,a,c):e;if(o=V(f.e/k),r=V(e.e/k),u=u.slice(),i=o-r,i){for(i<0?(t=u,i=-i,s=l.length):(t=l,r=o,s=u.length),o=Math.ceil(a/k),s=o>s?o+1:s+1,i>s&&(i=s,t.length=1),t.reverse();i--;)t.push(0);t.reverse()}for(s=u.length,i=l.length,s-i<0&&(i=s,t=l,l=u,u=t),n=0;i;)n=(u[--i]=u[i]+l[i]+n)/J|0,u[i]%=J;for(n&&(u.unshift(n),++r),s=u.length;u[--s]==0;)u.pop();return e.d=u,e.e=je(u,r),N?x(e,a,c):e};p.precision=p.sd=function(e){var n,t=this;if(e!==void 0&&e!==!!e&&e!==1&&e!==0)throw Error(le+e);return t.d?(n=Gn(t.d),e&&t.e+1>n&&(n=t.e+1)):n=NaN,n};p.round=function(){var e=this,n=e.constructor;return x(new n(e),e.e+1,n.rounding)};p.sine=p.sin=function(){var e,n,t=this,r=t.constructor;return t.isFinite()?t.isZero()?new r(t):(e=r.precision,n=r.rounding,r.precision=e+Math.max(t.e,t.sd())+k,r.rounding=1,t=Ot(r,Yn(r,t)),r.precision=e,r.rounding=n,x(ie>2?t.neg():t,e,n,!0)):new r(NaN)};p.squareRoot=p.sqrt=function(){var e,n,t,r,i,o,s=this,a=s.d,c=s.e,u=s.s,l=s.constructor;if(u!==1||!a||!a[0])return new l(!u||u<0&&(!a||a[0])?NaN:a?s:1/0);for(N=!1,u=Math.sqrt(+s),u==0||u==1/0?(n=_(a),(n.length+c)%2==0&&(n+="0"),u=Math.sqrt(n),c=V((c+1)/2)-(c<0||c%2),u==1/0?n="5e"+c:(n=u.toExponential(),n=n.slice(0,n.indexOf("e")+1)+c),r=new l(n)):r=new l(u.toString()),t=(c=l.precision)+3;;)if(o=r,r=o.plus(M(s,o,t+2,1)).times(.5),_(o.d).slice(0,t)===(n=_(r.d)).slice(0,t))if(n=n.slice(t-3,t+1),n=="9999"||!i&&n=="4999"){if(!i&&(x(o,c+1,0),o.times(o).eq(s))){r=o;break}t+=4,i=1}else{(!+n||!+n.slice(1)&&n.charAt(0)=="5")&&(x(r,c+1,1),e=!r.times(r).eq(s));break}return N=!0,x(r,c,l.rounding,e)};p.tangent=p.tan=function(){var e,n,t=this,r=t.constructor;return t.isFinite()?t.isZero()?new r(t):(e=r.precision,n=r.rounding,r.precision=e+10,r.rounding=1,t=t.sin(),t.s=1,t=M(t,new r(1).minus(t.times(t)).sqrt(),e+10,0),r.precision=e,r.rounding=n,x(ie==2||ie==4?t.neg():t,e,n,!0)):new r(NaN)};p.times=p.mul=function(e){var n,t,r,i,o,s,a,c,u,l=this,f=l.constructor,m=l.d,d=(e=new f(e)).d;if(e.s*=l.s,!m||!m[0]||!d||!d[0])return new f(!e.s||m&&!m[0]&&!d||d&&!d[0]&&!m?NaN:!m||!d?e.s/0:e.s*0);for(t=V(l.e/k)+V(e.e/k),c=m.length,u=d.length,c<u&&(o=m,m=d,d=o,s=c,c=u,u=s),o=[],s=c+u,r=s;r--;)o.push(0);for(r=u;--r>=0;){for(n=0,i=c+r;i>r;)a=o[i]+d[r]*m[i-r-1]+n,o[i--]=a%J|0,n=a/J|0;o[i]=(o[i]+n)%J|0}for(;!o[--s];)o.pop();return n?++t:o.shift(),e.d=o,e.e=je(o,t),N?x(e,f.precision,f.rounding):e};p.toBinary=function(e,n){return bn(this,2,e,n)};p.toDecimalPlaces=p.toDP=function(e,n){var t=this,r=t.constructor;return t=new r(t),e===void 0?t:(j(e,0,fe),n===void 0?n=r.rounding:j(n,0,8),x(t,e+t.e+1,n))};p.toExponential=function(e,n){var t,r=this,i=r.constructor;return e===void 0?t=ee(r,!0):(j(e,0,fe),n===void 0?n=i.rounding:j(n,0,8),r=x(new i(r),e+1,n),t=ee(r,!0,e+1)),r.isNeg()&&!r.isZero()?"-"+t:t};p.toFixed=function(e,n){var t,r,i=this,o=i.constructor;return e===void 0?t=ee(i):(j(e,0,fe),n===void 0?n=o.rounding:j(n,0,8),r=x(new o(i),e+i.e+1,n),t=ee(r,!1,e+r.e+1)),i.isNeg()&&!i.isZero()?"-"+t:t};p.toFraction=function(e){var n,t,r,i,o,s,a,c,u,l,f,m,d=this,T=d.d,g=d.constructor;if(!T)return new g(d);if(u=t=new g(1),r=c=new g(0),n=new g(r),o=n.e=Gn(T)-d.e-1,s=o%k,n.d[0]=K(10,s<0?k+s:s),e==null)e=o>0?n:u;else{if(a=new g(e),!a.isInt()||a.lt(u))throw Error(le+a);e=a.gt(n)?o>0?n:u:a}for(N=!1,a=new g(_(T)),l=g.precision,g.precision=o=T.length*k*2;f=M(a,n,0,1,1),i=t.plus(f.times(r)),i.cmp(e)!=1;)t=r,r=i,i=u,u=c.plus(f.times(i)),c=i,i=n,n=a.minus(f.times(i)),a=i;return i=M(e.minus(t),r,0,1,1),c=c.plus(i.times(u)),t=t.plus(i.times(r)),c.s=u.s=d.s,m=M(u,r,o,1).minus(d).abs().cmp(M(c,t,o,1).minus(d).abs())<1?[u,r]:[c,t],g.precision=l,N=!0,m};p.toHexadecimal=p.toHex=function(e,n){return bn(this,16,e,n)};p.toNearest=function(e,n){var t=this,r=t.constructor;if(t=new r(t),e==null){if(!t.d)return t;e=new r(1),n=r.rounding}else{if(e=new r(e),n===void 0?n=r.rounding:j(n,0,8),!t.d)return e.s?t:e;if(!e.d)return e.s&&(e.s=t.s),e}return e.d[0]?(N=!1,t=M(t,e,0,n,1).times(e),N=!0,x(t)):(e.s=t.s,t=e),t};p.toNumber=function(){return+this};p.toOctal=function(e,n){return bn(this,8,e,n)};p.toPower=p.pow=function(e){var n,t,r,i,o,s,a=this,c=a.constructor,u=+(e=new c(e));if(!a.d||!e.d||!a.d[0]||!e.d[0])return new c(K(+a,u));if(a=new c(a),a.eq(1))return a;if(r=c.precision,o=c.rounding,e.eq(1))return x(a,r,o);if(n=V(e.e/k),n>=e.d.length-1&&(t=u<0?-u:u)<=Dt)return i=jn(c,a,t,r),e.s<0?new c(1).div(i):x(i,r,o);if(s=a.s,s<0){if(n<e.d.length-1)return new c(NaN);if((e.d[n]&1)==0&&(s=1),a.e==0&&a.d[0]==1&&a.d.length==1)return a.s=s,a}return t=K(+a,u),n=t==0||!isFinite(t)?V(u*(Math.log("0."+_(a.d))/Math.LN10+a.e+1)):new c(t+"").e,n>c.maxE+1||n<c.minE-1?new c(n>0?s/0:0):(N=!1,c.rounding=a.s=1,t=Math.min(12,(n+"").length),i=hn(e.times(ce(a,r+t)),r),i.d&&(i=x(i,r+5,1),Ee(i.d,r,o)&&(n=r+10,i=x(hn(e.times(ce(a,n+t)),n),n+5,1),+_(i.d).slice(r+1,r+15)+1==1e14&&(i=x(i,r+1,0)))),i.s=s,N=!0,c.rounding=o,x(i,r,o))};p.toPrecision=function(e,n){var t,r=this,i=r.constructor;return e===void 0?t=ee(r,r.e<=i.toExpNeg||r.e>=i.toExpPos):(j(e,1,fe),n===void 0?n=i.rounding:j(n,0,8),r=x(new i(r),e,n),t=ee(r,e<=r.e||r.e<=i.toExpNeg,e)),r.isNeg()&&!r.isZero()?"-"+t:t};p.toSignificantDigits=p.toSD=function(e,n){var t=this,r=t.constructor;return e===void 0?(e=r.precision,n=r.rounding):(j(e,1,fe),n===void 0?n=r.rounding:j(n,0,8)),x(new r(t),e,n)};p.toString=function(){var e=this,n=e.constructor,t=ee(e,e.e<=n.toExpNeg||e.e>=n.toExpPos);return e.isNeg()&&!e.isZero()?"-"+t:t};p.truncated=p.trunc=function(){return x(new this.constructor(this),this.e+1,1)};p.valueOf=p.toJSON=function(){var e=this,n=e.constructor,t=ee(e,e.e<=n.toExpNeg||e.e>=n.toExpPos);return e.isNeg()?"-"+t:t};function _(e){var n,t,r,i=e.length-1,o="",s=e[0];if(i>0){for(o+=s,n=1;n<i;n++)r=e[n]+"",t=k-r.length,t&&(o+=ue(t)),o+=r;s=e[n],r=s+"",t=k-r.length,t&&(o+=ue(t))}else if(s===0)return"0";for(;s%10===0;)s/=10;return o+s}function j(e,n,t){if(e!==~~e||e<n||e>t)throw Error(le+e)}function Ee(e,n,t,r){var i,o,s,a;for(o=e[0];o>=10;o/=10)--n;return--n<0?(n+=k,i=0):(i=Math.ceil((n+1)/k),n%=k),o=K(10,k-n),a=e[i]%o|0,r==null?n<3?(n==0?a=a/100|0:n==1&&(a=a/10|0),s=t<4&&a==99999||t>3&&a==49999||a==5e4||a==0):s=(t<4&&a+1==o||t>3&&a+1==o/2)&&(e[i+1]/o/100|0)==K(10,n-2)-1||(a==o/2||a==0)&&(e[i+1]/o/100|0)==0:n<4?(n==0?a=a/1e3|0:n==1?a=a/100|0:n==2&&(a=a/10|0),s=(r||t<4)&&a==9999||!r&&t>3&&a==4999):s=((r||t<4)&&a+1==o||!r&&t>3&&a+1==o/2)&&(e[i+1]/o/1e3|0)==K(10,n-3)-1,s}function qe(e,n,t){for(var r,i=[0],o,s=0,a=e.length;s<a;){for(o=i.length;o--;)i[o]*=n;for(i[0]+=pn.indexOf(e.charAt(s++)),r=0;r<i.length;r++)i[r]>t-1&&(i[r+1]===void 0&&(i[r+1]=0),i[r+1]+=i[r]/t|0,i[r]%=t)}return i.reverse()}function vt(e,n){var t,r,i;if(n.isZero())return n;r=n.d.length,r<32?(t=Math.ceil(r/3),i=(1/Ze(4,t)).toString()):(t=16,i="2.3283064365386962890625e-10"),e.precision+=t,n=xe(e,1,n.times(i),new e(1));for(var o=t;o--;){var s=n.times(n);n=s.times(s).minus(s).times(8).plus(1)}return e.precision-=t,n}var M=function(){function e(r,i,o){var s,a=0,c=r.length;for(r=r.slice();c--;)s=r[c]*i+a,r[c]=s%o|0,a=s/o|0;return a&&r.unshift(a),r}function n(r,i,o,s){var a,c;if(o!=s)c=o>s?1:-1;else for(a=c=0;a<o;a++)if(r[a]!=i[a]){c=r[a]>i[a]?1:-1;break}return c}function t(r,i,o,s){for(var a=0;o--;)r[o]-=a,a=r[o]<i[o]?1:0,r[o]=a*s+r[o]-i[o];for(;!r[0]&&r.length>1;)r.shift()}return function(r,i,o,s,a,c){var u,l,f,m,d,T,g,A,w,b,h,y,B,S,C,v,O,Q,W,de,ge=r.constructor,Ne=r.s==i.s?1:-1,q=r.d,D=i.d;if(!q||!q[0]||!D||!D[0])return new ge(!r.s||!i.s||(q?D&&q[0]==D[0]:!D)?NaN:q&&q[0]==0||!D?Ne*0:Ne/0);for(c?(d=1,l=r.e-i.e):(c=J,d=k,l=V(r.e/d)-V(i.e/d)),W=D.length,O=q.length,w=new ge(Ne),b=w.d=[],f=0;D[f]==(q[f]||0);f++);if(D[f]>(q[f]||0)&&l--,o==null?(S=o=ge.precision,s=ge.rounding):a?S=o+(r.e-i.e)+1:S=o,S<0)b.push(1),T=!0;else{if(S=S/d+2|0,f=0,W==1){for(m=0,D=D[0],S++;(f<O||m)&&S--;f++)C=m*c+(q[f]||0),b[f]=C/D|0,m=C%D|0;T=m||f<O}else{for(m=c/(D[0]+1)|0,m>1&&(D=e(D,m,c),q=e(q,m,c),W=D.length,O=q.length),v=W,h=q.slice(0,W),y=h.length;y<W;)h[y++]=0;de=D.slice(),de.unshift(0),Q=D[0],D[1]>=c/2&&++Q;do m=0,u=n(D,h,W,y),u<0?(B=h[0],W!=y&&(B=B*c+(h[1]||0)),m=B/Q|0,m>1?(m>=c&&(m=c-1),g=e(D,m,c),A=g.length,y=h.length,u=n(g,h,A,y),u==1&&(m--,t(g,W<A?de:D,A,c))):(m==0&&(u=m=1),g=D.slice()),A=g.length,A<y&&g.unshift(0),t(h,g,y,c),u==-1&&(y=h.length,u=n(D,h,W,y),u<1&&(m++,t(h,W<y?de:D,y,c))),y=h.length):u===0&&(m++,h=[0]),b[f++]=m,u&&h[0]?h[y++]=q[v]||0:(h=[q[v]],y=1);while((v++<O||h[0]!==void 0)&&S--);T=h[0]!==void 0}b[0]||b.shift()}if(d==1)w.e=l,_n=T;else{for(f=1,m=b[0];m>=10;m/=10)f++;w.e=f+l*d-1,x(w,a?o+w.e+1:o,s,T)}return w}}();function x(e,n,t,r){var i,o,s,a,c,u,l,f,m,d=e.constructor;e:if(n!=null){if(f=e.d,!f)return e;for(i=1,a=f[0];a>=10;a/=10)i++;if(o=n-i,o<0)o+=k,s=n,l=f[m=0],c=l/K(10,i-s-1)%10|0;else if(m=Math.ceil((o+1)/k),a=f.length,m>=a)if(r){for(;a++<=m;)f.push(0);l=c=0,i=1,o%=k,s=o-k+1}else break e;else{for(l=a=f[m],i=1;a>=10;a/=10)i++;o%=k,s=o-k+i,c=s<0?0:l/K(10,i-s-1)%10|0}if(r=r||n<0||f[m+1]!==void 0||(s<0?l:l%K(10,i-s-1)),u=t<4?(c||r)&&(t==0||t==(e.s<0?3:2)):c>5||c==5&&(t==4||r||t==6&&(o>0?s>0?l/K(10,i-s):0:f[m-1])%10&1||t==(e.s<0?8:7)),n<1||!f[0])return f.length=0,u?(n-=e.e+1,f[0]=K(10,(k-n%k)%k),e.e=-n||0):f[0]=e.e=0,e;if(o==0?(f.length=m,a=1,m--):(f.length=m+1,a=K(10,k-o),f[m]=s>0?(l/K(10,i-s)%K(10,s)|0)*a:0),u)for(;;)if(m==0){for(o=1,s=f[0];s>=10;s/=10)o++;for(s=f[0]+=a,a=1;s>=10;s/=10)a++;o!=a&&(e.e++,f[0]==J&&(f[0]=1));break}else{if(f[m]+=a,f[m]!=J)break;f[m--]=0,a=1}for(o=f.length;f[--o]===0;)f.pop()}return N&&(e.e>d.maxE?(e.d=null,e.e=NaN):e.e<d.minE&&(e.e=0,e.d=[0])),e}function ee(e,n,t){if(!e.isFinite())return zn(e);var r,i=e.e,o=_(e.d),s=o.length;return n?(t&&(r=t-s)>0?o=o.charAt(0)+"."+o.slice(1)+ue(r):s>1&&(o=o.charAt(0)+"."+o.slice(1)),o=o+(e.e<0?"e":"e+")+e.e):i<0?(o="0."+ue(-i-1)+o,t&&(r=t-s)>0&&(o+=ue(r))):i>=s?(o+=ue(i+1-s),t&&(r=t-i-1)>0&&(o=o+"."+ue(r))):((r=i+1)<s&&(o=o.slice(0,r)+"."+o.slice(r)),t&&(r=t-s)>0&&(i+1===s&&(o+="."),o+=ue(r))),o}function je(e,n){var t=e[0];for(n*=k;t>=10;t/=10)n++;return n}function He(e,n,t){if(n>Lt)throw N=!0,t&&(e.precision=t),Error(qn);return x(new e(Ve),n,1,!0)}function X(e,n,t){if(n>gn)throw Error(qn);return x(new e(Ue),n,t,!0)}function Gn(e){var n=e.length-1,t=n*k+1;if(n=e[n],n){for(;n%10==0;n/=10)t--;for(n=e[0];n>=10;n/=10)t++}return t}function ue(e){for(var n="";e--;)n+="0";return n}function jn(e,n,t,r){var i,o=new e(1),s=Math.ceil(r/k+4);for(N=!1;;){if(t%2&&(o=o.times(n),Kn(o.d,s)&&(i=!0)),t=V(t/2),t===0){t=o.d.length-1,i&&o.d[t]===0&&++o.d[t];break}n=n.times(n),Kn(n.d,s)}return N=!0,o}function Fn(e){return e.d[e.d.length-1]&1}function Zn(e,n,t){for(var r,i=new e(n[0]),o=0;++o<n.length;)if(r=new e(n[o]),r.s)i[t](r)&&(i=r);else{i=r;break}return i}function hn(e,n){var t,r,i,o,s,a,c,u=0,l=0,f=0,m=e.constructor,d=m.rounding,T=m.precision;if(!e.d||!e.d[0]||e.e>17)return new m(e.d?e.d[0]?e.s<0?0:1/0:1:e.s?e.s<0?0:e:0/0);for(n==null?(N=!1,c=T):c=n,a=new m(.03125);e.e>-2;)e=e.times(a),f+=5;for(r=Math.log(K(2,f))/Math.LN10*2+5|0,c+=r,t=o=s=new m(1),m.precision=c;;){if(o=x(o.times(e),c,1),t=t.times(++l),a=s.plus(M(o,t,c,1)),_(a.d).slice(0,c)===_(s.d).slice(0,c)){for(i=f;i--;)s=x(s.times(s),c,1);if(n==null)if(u<3&&Ee(s.d,c-r,d,u))m.precision=c+=10,t=o=a=new m(1),l=0,u++;else return x(s,m.precision=T,d,N=!0);else return m.precision=T,s}s=a}}function ce(e,n){var t,r,i,o,s,a,c,u,l,f,m,d=1,T=10,g=e,A=g.d,w=g.constructor,b=w.rounding,h=w.precision;if(g.s<0||!A||!A[0]||!g.e&&A[0]==1&&A.length==1)return new w(A&&!A[0]?-1/0:g.s!=1?NaN:A?0:g);if(n==null?(N=!1,l=h):l=n,w.precision=l+=T,t=_(A),r=t.charAt(0),Math.abs(o=g.e)<15e14){for(;r<7&&r!=1||r==1&&t.charAt(1)>3;)g=g.times(e),t=_(g.d),r=t.charAt(0),d++;o=g.e,r>1?(g=new w("0."+t),o++):g=new w(r+"."+t.slice(1))}else return u=He(w,l+2,h).times(o+""),g=ce(new w(r+"."+t.slice(1)),l-T).plus(u),w.precision=h,n==null?x(g,h,b,N=!0):g;for(f=g,c=s=g=M(g.minus(1),g.plus(1),l,1),m=x(g.times(g),l,1),i=3;;){if(s=x(s.times(m),l,1),u=c.plus(M(s,new w(i),l,1)),_(u.d).slice(0,l)===_(c.d).slice(0,l))if(c=c.times(2),o!==0&&(c=c.plus(He(w,l+2,h).times(o+""))),c=M(c,new w(d),l,1),n==null)if(Ee(c.d,l-T,b,a))w.precision=l+=T,u=s=g=M(f.minus(1),f.plus(1),l,1),m=x(g.times(g),l,1),i=a=1;else return x(c,w.precision=h,b,N=!0);else return w.precision=h,c;c=u,i+=2}}function zn(e){return String(e.s*e.s/0)}function wn(e,n){var t,r,i;for((t=n.indexOf("."))>-1&&(n=n.replace(".","")),(r=n.search(/e/i))>0?(t<0&&(t=r),t+=+n.slice(r+1),n=n.substring(0,r)):t<0&&(t=n.length),r=0;n.charCodeAt(r)===48;r++);for(i=n.length;n.charCodeAt(i-1)===48;--i);if(n=n.slice(r,i),n){if(i-=r,e.e=t=t-r-1,e.d=[],r=(t+1)%k,t<0&&(r+=k),r<i){for(r&&e.d.push(+n.slice(0,r)),i-=k;r<i;)e.d.push(+n.slice(r,r+=k));n=n.slice(r),r=k-n.length}else r-=i;for(;r--;)n+="0";e.d.push(+n),N&&(e.e>e.constructor.maxE?(e.d=null,e.e=NaN):e.e<e.constructor.minE&&(e.e=0,e.d=[0]))}else e.e=0,e.d=[0];return e}function Rt(e,n){var t,r,i,o,s,a,c,u,l;if(n.indexOf("_")>-1){if(n=n.replace(/(\d)_(?=\d)/g,"$1"),Hn.test(n))return wn(e,n)}else if(n==="Infinity"||n==="NaN")return+n||(e.s=NaN),e.e=NaN,e.d=null,e;if(It.test(n))t=16,n=n.toLowerCase();else if(Et.test(n))t=2;else if(Mt.test(n))t=8;else throw Error(le+n);for(o=n.search(/p/i),o>0?(c=+n.slice(o+1),n=n.substring(2,o)):n=n.slice(2),o=n.indexOf("."),s=o>=0,r=e.constructor,s&&(n=n.replace(".",""),a=n.length,o=a-o,i=jn(r,new r(t),o,o*2)),u=qe(n,t,J),l=u.length-1,o=l;u[o]===0;--o)u.pop();return o<0?new r(e.s*0):(e.e=je(u,l),e.d=u,N=!1,s&&(e=M(e,i,a*4)),c&&(e=e.times(Math.abs(c)<54?K(2,c):Ie.pow(2,c))),N=!0,e)}function Ot(e,n){var t,r=n.d.length;if(r<3)return n.isZero()?n:xe(e,2,n,n);t=1.4*Math.sqrt(r),t=t>16?16:t|0,n=n.times(1/Ze(5,t)),n=xe(e,2,n,n);for(var i,o=new e(5),s=new e(16),a=new e(20);t--;)i=n.times(n),n=n.times(o.plus(i.times(s.times(i).minus(a))));return n}function xe(e,n,t,r,i){var o,s,a,c,u=1,l=e.precision,f=Math.ceil(l/k);for(N=!1,c=t.times(t),a=new e(r);;){if(s=M(a.times(c),new e(n++*n++),l,1),a=i?r.plus(s):r.minus(s),r=M(s.times(c),new e(n++*n++),l,1),s=a.plus(r),s.d[f]!==void 0){for(o=f;s.d[o]===a.d[o]&&o--;);if(o==-1)break}o=a,a=r,r=s,s=o,u++}return N=!0,s.d.length=f+1,s}function Ze(e,n){for(var t=e;--n;)t*=e;return t}function Yn(e,n){var t,r=n.s<0,i=X(e,e.precision,1),o=i.times(.5);if(n=n.abs(),n.lte(o))return ie=r?4:1,n;if(t=n.divToInt(i),t.isZero())ie=r?3:2;else{if(n=n.minus(t.times(i)),n.lte(o))return ie=Fn(t)?r?2:3:r?4:1,n;ie=Fn(t)?r?1:4:r?3:2}return n.minus(i).abs()}function bn(e,n,t,r){var i,o,s,a,c,u,l,f,m,d=e.constructor,T=t!==void 0;if(T?(j(t,1,fe),r===void 0?r=d.rounding:j(r,0,8)):(t=d.precision,r=d.rounding),!e.isFinite())l=zn(e);else{for(l=ee(e),s=l.indexOf("."),T?(i=2,n==16?t=t*4-3:n==8&&(t=t*3-2)):i=n,s>=0&&(l=l.replace(".",""),m=new d(1),m.e=l.length-s,m.d=qe(ee(m),10,i),m.e=m.d.length),f=qe(l,10,i),o=c=f.length;f[--c]==0;)f.pop();if(!f[0])l=T?"0p+0":"0";else{if(s<0?o--:(e=new d(e),e.d=f,e.e=o,e=M(e,m,t,r,0,i),f=e.d,o=e.e,u=_n),s=f[t],a=i/2,u=u||f[t+1]!==void 0,u=r<4?(s!==void 0||u)&&(r===0||r===(e.s<0?3:2)):s>a||s===a&&(r===4||u||r===6&&f[t-1]&1||r===(e.s<0?8:7)),f.length=t,u)for(;++f[--t]>i-1;)f[t]=0,t||(++o,f.unshift(1));for(c=f.length;!f[c-1];--c);for(s=0,l="";s<c;s++)l+=pn.charAt(f[s]);if(T){if(c>1)if(n==16||n==8){for(s=n==16?4:3,--c;c%s;c++)l+="0";for(f=qe(l,i,n),c=f.length;!f[c-1];--c);for(s=1,l="1.";s<c;s++)l+=pn.charAt(f[s])}else l=l.charAt(0)+"."+l.slice(1);l=l+(o<0?"p":"p+")+o}else if(o<0){for(;++o;)l="0"+l;l="0."+l}else if(++o>c)for(o-=c;o--;)l+="0";else o<c&&(l=l.slice(0,o)+"."+l.slice(o))}l=(n==16?"0x":n==2?"0b":n==8?"0o":"")+l}return e.s<0?"-"+l:l}function Kn(e,n){if(e.length>n)return e.length=n,!0}function Ft(e){return new this(e).abs()}function Kt(e){return new this(e).acos()}function Wt(e){return new this(e).acosh()}function _t(e,n){return new this(e).plus(n)}function qt(e){return new this(e).asin()}function Vt(e){return new this(e).asinh()}function Ut(e){return new this(e).atan()}function Ht(e){return new this(e).atanh()}function Gt(e,n){e=new this(e),n=new this(n);var t,r=this.precision,i=this.rounding,o=r+4;return!e.s||!n.s?t=new this(NaN):!e.d&&!n.d?(t=X(this,o,1).times(n.s>0?.25:.75),t.s=e.s):!n.d||e.isZero()?(t=n.s<0?X(this,r,i):new this(0),t.s=e.s):!e.d||n.isZero()?(t=X(this,o,1).times(.5),t.s=e.s):n.s<0?(this.precision=o,this.rounding=1,t=this.atan(M(e,n,o,1)),n=X(this,o,1),this.precision=r,this.rounding=i,t=e.s<0?t.minus(n):t.plus(n)):t=this.atan(M(e,n,o,1)),t}function jt(e){return new this(e).cbrt()}function Zt(e){return x(e=new this(e),e.e+1,2)}function zt(e,n,t){return new this(e).clamp(n,t)}function Yt(e){if(!e||typeof e!="object")throw Error(Ge+"Object expected");var n,t,r,i=e.defaults===!0,o=["precision",1,fe,"rounding",0,8,"toExpNeg",-ye,0,"toExpPos",0,ye,"maxE",0,ye,"minE",-ye,0,"modulo",0,9];for(n=0;n<o.length;n+=3)if(t=o[n],i&&(this[t]=dn[t]),(r=e[t])!==void 0)if(V(r)===r&&r>=o[n+1]&&r<=o[n+2])this[t]=r;else throw Error(le+t+": "+r);if(t="crypto",i&&(this[t]=dn[t]),(r=e[t])!==void 0)if(r===!0||r===!1||r===0||r===1)if(r)if(typeof crypto<"u"&&crypto&&(crypto.getRandomValues||crypto.randomBytes))this[t]=!0;else throw Error(Vn);else this[t]=!1;else throw Error(le+t+": "+r);return this}function Xt(e){return new this(e).cos()}function Jt(e){return new this(e).cosh()}function Xn(e){var n,t,r;function i(o){var s,a,c,u=this;if(!(u instanceof i))return new i(o);if(u.constructor=i,Wn(o)){u.s=o.s,N?!o.d||o.e>i.maxE?(u.e=NaN,u.d=null):o.e<i.minE?(u.e=0,u.d=[0]):(u.e=o.e,u.d=o.d.slice()):(u.e=o.e,u.d=o.d?o.d.slice():o.d);return}if(c=typeof o,c==="number"){if(o===0){u.s=1/o<0?-1:1,u.e=0,u.d=[0];return}if(o<0?(o=-o,u.s=-1):u.s=1,o===~~o&&o<1e7){for(s=0,a=o;a>=10;a/=10)s++;N?s>i.maxE?(u.e=NaN,u.d=null):s<i.minE?(u.e=0,u.d=[0]):(u.e=s,u.d=[o]):(u.e=s,u.d=[o]);return}else if(o*0!==0){o||(u.s=NaN),u.e=NaN,u.d=null;return}return wn(u,o.toString())}else if(c!=="string")throw Error(le+o);return(a=o.charCodeAt(0))===45?(o=o.slice(1),u.s=-1):(a===43&&(o=o.slice(1)),u.s=1),Hn.test(o)?wn(u,o):Rt(u,o)}if(i.prototype=p,i.ROUND_UP=0,i.ROUND_DOWN=1,i.ROUND_CEIL=2,i.ROUND_FLOOR=3,i.ROUND_HALF_UP=4,i.ROUND_HALF_DOWN=5,i.ROUND_HALF_EVEN=6,i.ROUND_HALF_CEIL=7,i.ROUND_HALF_FLOOR=8,i.EUCLID=9,i.config=i.set=Yt,i.clone=Xn,i.isDecimal=Wn,i.abs=Ft,i.acos=Kt,i.acosh=Wt,i.add=_t,i.asin=qt,i.asinh=Vt,i.atan=Ut,i.atanh=Ht,i.atan2=Gt,i.cbrt=jt,i.ceil=Zt,i.clamp=zt,i.cos=Xt,i.cosh=Jt,i.div=Qt,i.exp=$t,i.floor=er,i.hypot=nr,i.ln=tr,i.log=rr,i.log10=or,i.log2=ir,i.max=sr,i.min=ar,i.mod=ur,i.mul=cr,i.pow=lr,i.random=fr,i.round=mr,i.sign=pr,i.sin=dr,i.sinh=gr,i.sqrt=hr,i.sub=wr,i.sum=br,i.tan=Tr,i.tanh=yr,i.trunc=xr,e===void 0&&(e={}),e&&e.defaults!==!0)for(r=["precision","rounding","toExpNeg","toExpPos","maxE","minE","modulo","crypto"],n=0;n<r.length;)e.hasOwnProperty(t=r[n++])||(e[t]=this[t]);return i.config(e),i}function Qt(e,n){return new this(e).div(n)}function $t(e){return new this(e).exp()}function er(e){return x(e=new this(e),e.e+1,3)}function nr(){var e,n,t=new this(0);for(N=!1,e=0;e<arguments.length;)if(n=new this(arguments[e++]),n.d)t.d&&(t=t.plus(n.times(n)));else{if(n.s)return N=!0,new this(1/0);t=n}return N=!0,t.sqrt()}function Wn(e){return e instanceof Ie||e&&e.toStringTag===Un||!1}function tr(e){return new this(e).ln()}function rr(e,n){return new this(e).log(n)}function ir(e){return new this(e).log(2)}function or(e){return new this(e).log(10)}function sr(){return Zn(this,arguments,"lt")}function ar(){return Zn(this,arguments,"gt")}function ur(e,n){return new this(e).mod(n)}function cr(e,n){return new this(e).mul(n)}function lr(e,n){return new this(e).pow(n)}function fr(e){var n,t,r,i,o=0,s=new this(1),a=[];if(e===void 0?e=this.precision:j(e,1,fe),r=Math.ceil(e/k),this.crypto)if(crypto.getRandomValues)for(n=crypto.getRandomValues(new Uint32Array(r));o<r;)i=n[o],i>=429e7?n[o]=crypto.getRandomValues(new Uint32Array(1))[0]:a[o++]=i%1e7;else if(crypto.randomBytes){for(n=crypto.randomBytes(r*=4);o<r;)i=n[o]+(n[o+1]<<8)+(n[o+2]<<16)+((n[o+3]&127)<<24),i>=214e7?crypto.randomBytes(4).copy(n,o):(a.push(i%1e7),o+=4);o=r/4}else throw Error(Vn);else for(;o<r;)a[o++]=Math.random()*1e7|0;for(r=a[--o],e%=k,r&&e&&(i=K(10,k-e),a[o]=(r/i|0)*i);a[o]===0;o--)a.pop();if(o<0)t=0,a=[0];else{for(t=-1;a[0]===0;t-=k)a.shift();for(r=1,i=a[0];i>=10;i/=10)r++;r<k&&(t-=k-r)}return s.e=t,s.d=a,s}function mr(e){return x(e=new this(e),e.e+1,this.rounding)}function pr(e){return e=new this(e),e.d?e.d[0]?e.s:0*e.s:e.s||NaN}function dr(e){return new this(e).sin()}function gr(e){return new this(e).sinh()}function hr(e){return new this(e).sqrt()}function wr(e,n){return new this(e).sub(n)}function br(){var e=0,n=arguments,t=new this(n[e]);for(N=!1;t.s&&++e<n.length;)t=t.plus(n[e]);return N=!0,x(t,this.precision,this.rounding)}function Tr(e){return new this(e).tan()}function yr(e){return new this(e).tanh()}function xr(e){return x(e=new this(e),e.e+1,1)}p[Symbol.for("nodejs.util.inspect.custom")]=p.toString;p[Symbol.toStringTag]="Decimal";var Ie=p.constructor=Xn(dn);Ve=new Ie(Ve);Ue=new Ie(Ue);var Jn=Ie;function R(e){if(e instanceof $)return new P(e.numerator,e.denominator);if(e instanceof Z)return e.adjusted;if(e instanceof z)try{return R(e.toExact())}catch{return new P(te)}if(e instanceof P)return e;let n=String(e),t=be(n);return new P(t.numerator,t.denominator)}function Oo(e){var r;if(e instanceof $)return{fr:new P(e.numerator,e.denominator)};if(e instanceof Z)return{fr:e.adjusted};if(e instanceof z)return{fr:R(e.toExact()),decimals:e.token.decimals};if(e instanceof P)return{fr:e};let n=String(e),t=be(n);return{fr:new P(t.numerator,t.denominator),decimals:(r=t.dec)==null?void 0:r.length}}function Fo(e,n){if(e==null||n==null)return!1;let t=R(e),r=R(n);return t.sub(r).numerator,t.sub(r).numerator.lt(te)}function Ar(e,n){if(e==null||n==null)return!1;let t=R(e),r=R(n);return t.sub(r).numerator.gt(te)}function Ko(e,n){if(e==null||n==null)return!1;let t=R(e),r=R(n);return t.sub(r).numerator.lte(te)}function Wo(e,n){if(e==null||n==null)return!1;let t=R(e),r=R(n);return t.sub(r).numerator.gte(te)}function kr(e,n){if(e==null||n==null)return!1;let t=R(e),r=R(n);return t.sub(r).numerator.eq(te)}function _o(e,n){if(e==null||n==null)return;let t=R(e),r=R(n);try{return t.div(r)}catch{return t}}function qo(e,n){if(e==null||n==null)return;let t=R(e),r=R(n);return t.sub(r)}function Vo(e){return e==null?!1:!kr(e,0)}function Uo(e,n){return Ar(n,e)?n:e}function Tn(e,n){if(e==null||n==null)return;let t=R(e),r=R(n);return t.mul(r)}function Ho(e,n){if(e==null||n==null)return;let t=R(e),r=R(n);return t.add(r)}function be(e){var a;if(e===void 0)return{denominator:"1",numerator:"0"};if(e instanceof Y)return{numerator:e.toString(),denominator:"1"};if(e instanceof P)return{denominator:e.denominator.toString(),numerator:e.numerator.toString()};let n=String(e),[,t="",r="",i=""]=(a=n.replace(",","").match(/(-?)(\d*)\.?(\d*)/))!=null?a:[],o="1"+"0".repeat(i.length),s=t+(r==="0"?"":r)+i||"0";return{denominator:o,numerator:s,sign:t,int:r,dec:i}}function is(e,n){let t=e.divmod(n);return t.mod.isZero()?t.div:t.div.isNeg()?t.div.isubn(1):t.div.iaddn(1)}function Nr(e){var r;let[,n="",t=""]=(r=e.toFixed(2).match(/(-?)(\d*)\.?(\d*)/))!=null?r:[];return`${n}${t}`}function Pr(e,n=0){return e instanceof Y?e:new Y(Nr(et(e).mul(se.pow(new Y(String(n))))))}function et(e){if(e instanceof $)return new P(e.numerator,e.denominator);if(e instanceof Z)return e.adjusted;if(e instanceof z)try{return et(e.toExact())}catch{return new P(te)}if(e instanceof P)return e;let n=String(e),t=be(n);return new P(t.numerator,t.denominator)}function os(e,n){let{numerator:t,denominator:r}=be(e);return new $(new Y(t),new Y(r).mul(n!=null&&n.alreadyDecimaled?new Y(100):new Y(1)))}function ss(e){let{token:n,numberPrice:t,decimalDone:r}=e,i=new re({mint:"",decimals:6,symbol:"usd",name:"usd",skipMint:!0}),{numerator:o,denominator:s}=be(t),a=r?new Y(o).mul(se.pow(new Y(n.decimals))):o,c=new Y(s).mul(se.pow(new Y(i.decimals)));return new Z({baseToken:i,denominator:c.toString(),quoteToken:new re({...n,skipMint:!0,mint:""}),numerator:a.toString()})}function Qn(e){let n=new Ce({decimals:6,symbol:"usd",name:"usd"}),t=Pr(Tn(e,10**n.decimals));return new he(n,t)}function as(e,n){return Qn(!n||!e?0:Tn(e,n))}function Br(e){if(e==null)return;let{numerator:n,denominator:t}=be(e.toString());return new P(n,t)}function Sr(e){return e instanceof Jn}function $n(e){return Sr(e)?Br(e):Array.isArray(e)?e.map(n=>$n(n)):mn(e)?Object.fromEntries(Object.entries(e).map(([n,t])=>[n,$n(t)])):e}import{PublicKey as Le,sendAndConfirmTransaction as Bn,Transaction as ve,TransactionMessage as Re,VersionedTransaction as Oe}from"@solana/web3.js";import Fr from"axios";var nt=(t=>(t[t.V0=0]="V0",t[t.LEGACY=1]="LEGACY",t))(nt||{}),yn={CreateAccount:"CreateAccount",InitAccount:"InitAccount",CreateATA:"CreateATA",CloseAccount:"CloseAccount",TransferAmount:"TransferAmount",InitMint:"InitMint",MintTo:"MintTo",SetComputeUnitPrice:"SetComputeUnitPrice",SetComputeUnitLimit:"SetComputeUnitLimit",CpmmInitUserLiquidity:"CpmmInitUserLiquidity",CpmmCreatePool:"CpmmCreatePool",CpmmAddLiquidity:"CpmmAddLiquidity",CpmmWithdrawLiquidity:"CpmmWithdrawLiquidity",CpmmSwapBaseIn:"CpmmSwapBaseIn",CpmmSwapBaseOut:"CpmmSwapBaseOut",CpmmOracleSwapBaseIn:"CpmmOracleSwapBaseIn"};import{PublicKey as rt,ComputeBudgetProgram as tt,Transaction as Ye,TransactionMessage as Cr,Keypair as it,VersionedTransaction as xn}from"@solana/web3.js";import{TOKEN_PROGRAM_ID as Er}from"@solana/spl-token";var oe=H("Gfx_txUtil"),ot=1644;function Xe(e){let n=[],t=[];return e.microLamports&&(n.push(tt.setComputeUnitPrice({microLamports:e.microLamports})),t.push(yn.SetComputeUnitPrice)),e.units&&(n.push(tt.setComputeUnitLimit({units:e.units})),t.push(yn.SetComputeUnitLimit)),{instructions:n,instructionTypes:t}}async function Ae(e,n){var r,i;let t=n!=null?n:"confirmed";try{return((i=await((r=e.getLatestBlockhash)==null?void 0:r.call(e,{commitment:t})))==null?void 0:i.blockhash)||(await e.getRecentBlockhash(t)).blockhash}catch{return(await e.getRecentBlockhash(t)).blockhash}}function st(e,n){e.length<1&&oe.logWithError(`no instructions provided: ${e.toString()}`),n.length<1&&oe.logWithError(`no signers provided:, ${n.toString()}`);let t=new Ye;t.recentBlockhash="11111111111111111111111111111111",t.feePayer=n[0],t.add(...e);try{return t.serialize({verifySignatures:!1}).toString("base64").length<ot}catch{return!1}}async function Ts(e,n,t,r=!0){let i=new rt("GfxSimuLateTransaction11111111111111111"),o=[],s=new Ye;s.feePayer=i;for(let u of n)st([...s.instructions,u],[i])||(o.push(s),s=new Ye,s.feePayer=i),s.add(u);s.instructions.length>0&&o.push(s);let a=[];try{if(a=await Ir(e,o,r),a.find(u=>u.err!==null))throw Error("rpc simulateTransaction error")}catch(u){u instanceof Error&&oe.logWithError("failed to simulate for instructions","RPC_ERROR",{message:u.message})}let c=[];for(let u of a)if(oe.debug("simulate result:",u),u.logs){let l=u.logs.filter(f=>f&&f.includes(t));oe.debug("filteredLog:",c),l.length||oe.logWithError("simulate log not match keyword","keyword",t),c.push(...l)}return c}function ys(e,n){let t=e.match(/{["\w:,]+}/g);return!t||t.length!==1?oe.logWithError(`simulate log fail to match json, keyword: ${n}`):t[0]}function xs(e,n){let r=new RegExp(`"${n}":(\\d+)`,"g").exec(e);return!r||r.length!==2?oe.logWithError(`simulate log fail to match key", key: ${n}`):r[1]}function at(e,n){let[t,r]=rt.findProgramAddressSync(e,n);return{publicKey:t,nonce:r}}async function Ir(e,n,t){let r=[];if(t){let i=await e.getLatestBlockhash(),o=[];for(let u of n){u.recentBlockhash=i.blockhash,u.lastValidBlockHeight=i.lastValidBlockHeight;let f=u._compile().serialize(),d=u._serialize(f).toString("base64");o.push(d)}let s=o.map(u=>{let l=e._buildArgs([u],void 0,"base64");return{methodName:"simulateTransaction",args:l}}),a=[],c=20;for(let u=0;u<Math.ceil(s.length/c);u++)a.push(s.slice(u*c,(u+1)*c));r=await(await Promise.all(a.map(async u=>(await e._rpcBatchRequest(u)).map(l=>l.result.value)))).flat()}else try{r=await Promise.all(n.map