####################################################################### ####################################################################### # # Plouffe's Inverter Maple interface, version 1, September 18 2004. # Version 2, February 13, 2007. # version 3, December 7, 2007. # # # Copyright (c) 1986-2007 by Simon Plouffe # Author : Simon Plouffe # # This program is to be used with Maple 10, it has been created # from Maple 7 version. # A live connection is needed in order to work, preferably an ADSL, # Cable modem, LAN or 56k modem. # # This program makes a link to the website http://pi.lacim.uqam.ca/eng # and can make request to the website within a maple session. # # The program is self-contained and DO not need anything else than maple # and a connection to the internet. # There are 5 functions ; pilook, pismart, pidev, pilll and pialg. # # pidev, pilll and pialg do not need the internet connection. # # pilook makes a request to the Plouffe's Inverter and returns 1 answer # (if there is any). # # pismart is a personal souped-up version of the pilook function that # makes 231 requests to the inverter. The input needs to be a # real floating point number or something that maple can evaluate # to a real floating point number. The working precision is # 24 digits minimum, 16 is customary in order to return # any valid answer. # # How does it works?: # # -Save this file in your prefered directory for Maple. # -Name the file (for example) plouffeinverter, preferably # with NO extension. # The name of the file can be anything you like, # this is just a text file. # -Open a maple session. # -read the file by typing < read plouffeinverter; > and type ENTER. # # # Type any real number and watch it run. # pismart makes 200 variations on the input ans tries to see if # there would not be any collision against the tables. # There are currently 201 million constants in the Inverter on the web # and more than 1099 million constants on the author computers and # will (wishfully) be activated soon. # # pidev expands the input x into 320 different expansion like the # continued fraction, binary expansion, # Fibonacci representation and tries to find rational polynomial # representation of x. # # Examples : # # pilook(X); minimal precision is 16 digits, this is a lookup to # Plouffe's inverter and returns the shortest answer (in characters). # # pilll(X); precision has to be from 24 to 512 digits, will try # if the number X is a linear combination of known constants # like Pi, gamma, sqrt(2). # There are 126 tables of constants within the program. # # pismart(X); minimal precision is 16 digits, preferably 24. This portion # tries simple combination of the number X and simple functions. # There are 200 lookups made to the Inverter, uses the # function of Maple to make a request using . # # pidev(X); minimal precision is 16 digits, 24 is ok and 64 could # take a long time depending of your machine. # That portion expands the number in various bases like base 2, # Fibonacci base, Egyptian fraction etc. # and tries if the result is a sequence which is a rational polynomial. # There are 320 different tests in this portion. # For example you may try pidev(tan(1.0)); to see the result. # # pialg(X); Minimal precision is preferably 24 digits. # This routine will try to find if X is the root of a polynomial # equation of up to [sqrt(Digits)]. # For example with 64 digits will test if X is a root of a up to a # 8'th degree polynomial. # # piall(X); That one tries them all, pismart, pidev, pialg and pilll. # The necessary precision is adjusted within the routine. # # NOTE : To change the precision to 64 digits, type --> Digits:=64; # Usage : For best results and reasonable execution time use # the settings for digits with caution. # # # Author : Simon Plouffe # When : from various sources, beginning in 1986. # Licence: This program is FREE (yes FREE) it can be widely distributed # and it is encouraged to do so as long as you mention # the source. ############################################################################# # # Plouffe's Inverter # # 1XS1?. .. # ?XXXXXXXSSXSSOIOXXXXXXXSSIIOSOC # ;;?1IC1?;;;: .:;;:. . # SXXXXXXXXXXXXXXXXXSXXXSOSOSOCIII1 # :?!!!!;!?!;::..::;;;;;;;!!!;!?. # ?IXXXXXXXXXXXSXSSSSSSSSSOSSSXXX=. # ?XXXXXXXXXXXXXXXXXXSSSSSCXX1IIICI? # =X :? S? : # 11 ;1 X: .:: # I= = X ;. :::. # ??;OI?=?;; ? C . # :;;;S=!!!?!: ?. ?? ;?? # I . : :S !! # ? ! O! # ! :? :C # .? !; !: # .! !. ?. # ;; =; : # !:; ; : # !;? !. # ?.I. !. # ?:XI :! # ;?XX. .???!;!!=I? ?! ;! # ;.XXC .!!?!;!!!!;!. ?O=?!! # ; OXX: :;; ;1XXX # ;C?. :::....... !SSO?!? # ?OII1CCOOO=. ?CXXX # !!!;!;;;;;: !? # # original drawing by Yves Chiricota (1995). ############################################### with(gfun): with(StringTools): with(Sockets): with(IntegerRelations): # IMPORTANT NOTE : DO NOT fold long lines with strings containing http://..." # IMPORTANT NOTE : DO NOT fold long lines with strings containing http://..." # IMPORTANT NOTE : DO NOT fold long lines with strings containing http://..." ReadPage:=proc(s) local text, line, debut, fin, p1; text := ""; line := Sockets:-Read(s); while line <> false do text := cat(text, line); line := Sockets:-Read(s) end do; text := substring(text, 1 .. 1300); text := StringTools:-SubstituteAll(text, "", ""); text := StringTools:-SubstituteAll(text, "", ""); text := StringTools:-SubstituteAll(text, "", ""); text := StringTools:-SubstituteAll(text, "http://www.research.att.com:80/cgi-bin/access.cgi/as/njas/sequences/eisA.cgi?Anum=",""); text := StringTools:-SubstituteAll(text, "",""); text := StringTools:-SubstituteAll(text, "", text, debut .. debut + 300) -2 end if; if 0 < p1 then RETURN(substring(text, debut .. fin)) end if end: pilook:=proc(z) local server, s, text, valeur, v, w, ajoute; if nargs = 2 then w := args[2]; v := args[1] end if; if nargs = 1 then v := evalf(abs(args[1])); w := K end if; if 2 < nargs then ERROR(`wrong number of arguments`) end if; valeur := convert(evalf(abs(v)), string); server := `bootes.math.uqam.ca`; s := Sockets:-Open(server, 80); Sockets:-Write(s, cat(`GET /cgi-bin/ipcgi/lookup.pl?number=`, valeur, `&lookup_type=simple\n`)); text := ReadPage(s); Sockets:-Close(s); if length(text) < 10 then ajoute := " ... no match found" else ajoute := "" fi; text := cat(text, convert(w, string), " = ", convert(v, string),ajoute); text := StringTools:-SubstituteAll(text, "\n", " "); lprint(text); end: ############################################################################### # # Plouffe inverter, complement program for the # expansion of a real constant into a finite sequence # of integers. This is the expanded version of pidev(). # pidev is part of the program to # analyze a real constant. # # Generalized expansion of a real number. # The call procedure is # gendev(x) where x is the entry to be analyzed. # # Usage : the precision has to be 64 decimal digits. # 24 digits being the minimum and 100 digits is ok # but may produce long outputs. # To call the main procedure type # gendev(x): and where # x is a real number which can be either numeric # or symbolic. # This routine produces 320 different ways to # expand a real constant x into a finite sequence # of integers. For example, if x=sqrt(2) the # program will produce the sequence [1,2,2,2,2,...] # which is the continued fraction expansion of sqrt(2). ####################################################### ####################################################### ######### Bolyai-Renyi expansion of x (if 0 < x < 1 ). ######### Reference : Steven Finch : Mathematical constants (2003), p. 62. ######### If 0 < x < 1 then x = -1 + sqrt(a1+sqrt(a2+sqrt(a3+...))) and ######### a1, a2, a3, ... are either {0,1,2}, the algorithm takes x + 1 ######### and returns the list [a1,a2,a3,...an]. ####################################################### r2br:=proc(s) local v,liste, i: if evalf(s) < 1 then v:=evalf(s+1): liste:=[]: for i from 1 to 36 do: v:=v^2: if v > 2 and v < 3 then v:=v-1: liste:=[op(liste),1] fi: if v > 3 then v:=v-2: liste:=[op(liste),2] fi: if v < 2 then liste:=[op(liste),0] fi: od: RETURN(liste): else RETURN("The number has to be between 0 and 1") end if: end: ###################################################### r2cfm:=proc(s,w) local liste, S, T, U, m, pol, val, i: val:=w: pol:=[seq(subs(n=i,val),i=1..24)]: S := evalf(frac(abs(s))): U := 1/S: liste := [trunc(evalf(s))]: for m from 1 to 24 do: T := 1 + trunc(U): S := T - U: U := pol[m]/S: liste := [op(liste), T]: end do: RETURN(liste) end: ###################################################### r2cfp:=proc(s,w) local liste, S, T, U, m, pol, val, i: val:=w: pol:=[seq(subs(n=i,val),i=1..24)]: S := evalf(frac(abs(s))): U := 1/S: liste := [trunc(evalf(s))]: for m from 1 to 24 do: T := trunc(U): S := U - T: U := pol[m]/S: liste := [op(liste), T]: end do: RETURN(liste) end: ####################################################### r2pol:=proc(s,bas,a,b) local i, j, v, premier, fin, lll, liste, w, baz: v := abs(evalf(s)): fin := trunc(evalf(Digits/log10(bas)))-5: lll := [seq(bas^n*(a*n+b), n = 0 .. fin)]: liste := []: for i to fin do w := trunc(v*lll[i]): v := v - w/lll[i]: liste := [op(liste), w] end do: RETURN(liste) end: ####################################################### r2polk:=proc(s,bas,c,a,b) local i, j, v, premier, fin, lll, liste, w, baz: v := abs(evalf(s)): fin := trunc(evalf(Digits/log10(bas)))-5: lll := [seq(bas^floor(n/c)*(a*n+b), n = 0 .. fin)]: liste := []: for i to fin do w := trunc(v*lll[i]): v := v - w/lll[i]: liste := [op(liste), w] end do: RETURN(liste) end: ######################################################## pdq:=proc(s) local max, liste, prod, S, T: S := evalf(frac(abs(s))): max := 10^(Digits - 5): prod := 1: liste := [trunc(s)]: while prod <= max do T := nextprime(trunc(1/S)): S := 1 - frac(T*S): liste := [op(liste), T]: prod := prod*T end do: RETURN(liste) end: ######################################################## r2cf:=proc(s) convert(s,confrac): end: ######################################################## lucas:=proc(n) option remember; local k; if n=1 then RETURN(1) fi: if n=2 then RETURN(3) fi: if n>2 then RETURN(lucas(n-1)+lucas(n-2)) fi; end: ######################################################## r2luc:=proc(s) local i, j, max, aa, bb, lll, prod, S, T, kk, nn, listeluc: S := frac(evalf(abs(s))): nn:=1+trunc(Digits*4.7849719): lll := [trunc(s)]: listeluc := [seq(1.0/lucas(j), j = 2 .. nn)]: for i to nops(listeluc) do if listeluc[i] <= S then S := S - listeluc[i]: lll := [op(lll), i + 1] end if end do: RETURN(lll) end: ######################################################## r2fib:=proc(s) local i, j, max, aa, bb, lll, prod, S, T, kk, nn, listefib: S := frac(evalf(abs(s))): nn:=1+trunc(Digits*4.7849719): lll := [trunc(s)]: listefib := [seq(1.0/combinat:-fibonacci(j), j = 3 .. nn)]: for i to nops(listefib) do if listefib[i] <= S then S := S - listefib[i]: lll := [op(lll), i + 2] end if end do: RETURN(lll) end: ######################################################## pdr:=proc(s) local i, j, max, aa, bb, lll, prod, S, T, kk: S := evalf(frac(abs(s))): max := 10^(Digits - 10): prod := 1: lll := [trunc(s)]: while prod <= max do T := nextprime(trunc(1/S)): S := S - 1/T: lll := [T, op(1 .. nops(lll), lll)]: prod := prod*T end do: aa := [seq(op(nops(lll) - kk, lll), kk = 1 .. nops(lll) - 1)]: bb := convert(aa, list): RETURN(bb) end: ######################################################## pdp:=proc(s) local max, liste, prod, S, T: S := evalf(frac(abs(s))): max := 10^(Digits - 5): prod := 1: liste := [trunc(s)]: while prod <= max do T := nextprime(trunc(1/S)): S := frac(T*S): liste := [op(liste), T]: prod := prod*T end do: RETURN(liste) end: ######################################################## r2phi:=proc(s) local i, j, max, aa, bb, lll, prod, S, T, kk, listephi, v: S := evalf(frac(abs(s))): lll := []: v := 0.5 + 1/2*sqrt(5.0): listephi := [seq(1.0/v^j, j = 1 .. trunc(Digits/5) + 5)]: for i to nops(listephi) do if listephi[i] < S then S := S - listephi[i]: lll := [op(lll), i] end if end do: RETURN(lll) end: ######################################################## r2ef:=proc(s) local max, liste, prod, S, T: S := evalf(frac(abs(s))): max := 10^(Digits - 5): prod := 1: liste := [trunc(s)]: while prod <= max do T := 1 + trunc(1/S): S := S - 1/T: liste := [op(liste), T]: prod := prod*T end do: RETURN(liste) end: ######################################################## r2epf:=proc(s) local v,n,nn: v:=s: nn:=nops(v): RETURN([v[1],[1,v[2]],seq([-v[n],v[n+1]+1],n=2..nn-1)]): end: ######################################################## seq2alt:=proc(s) local a,n,nn: a:=s: nn:=nops(a): RETURN([0,[a[1],1],[a[2],a[1]-a[2]],seq([a[n]*a[n+2],a[n+1]-a[n+2]],n=1..nn-2)]): end: ######################################################## r2eff:=proc(s) local v,n,nn: v:=s: nn:=nops(v): RETURN([v[1],[1,v[1]],seq([-v[n]^2,v[n]+v[n+1]],n=1..nn-1)]): end: ######################################################## r2ep:=proc(s) local max, liste, prod, S, T: S := evalf(frac(abs(s))): max := 10^(Digits - 5): prod := 1: liste := [trunc(s)]: while prod <= max do T := 1 + trunc(1/S): S := frac(T*S): liste := [op(liste), T]: prod := prod*T end do: RETURN(liste) end: ######################################################## r2aef:=proc(s) local max, liste, prod, S, T: S := evalf(frac(abs(s))): max := 10^(Digits - 5): prod := 1: liste := [trunc(s)]: while prod <= max do T := trunc(1/S): S := 1/T - S: liste := [op(liste), T]: prod := prod*T end do: RETURN(liste) end: ######################################################## r2aep:=proc(s) local max, liste, prod, S, T: S := evalf(frac(abs(s))): max := 10^(Digits - 5): prod := 1: liste := [trunc(s)]: while prod <= max do T := trunc(1/S): S := 1 - frac(T*S): liste := [op(liste), T]: prod := prod*T end do: RETURN(liste) end: ######################################################## r2bk:=proc(s, b) local i, j, v, premier, fin, lll, liste, w, baz: baz:=evalf(b): v := abs(evalf(s)): fin := trunc(evalf(Digits/log10(b))): lll := [seq(baz^j, j = 1 .. fin)]: liste := []: for i to fin do : w := trunc(v*lll[i]): v := v - w/lll[i]: liste := [op(liste), w] end do: RETURN(liste) end: ######################################################## r2fact:=proc(s) local max, liste, prod, S, T, k: S := evalf(frac(abs(s))): max := 10^(Digits - 2): prod := 1: k := 1: liste := [trunc(s)]: while prod <= max do T := trunc(k!*S): S := S - T/k!: liste := [op(liste), T]: k := k + 1: prod := prod*k end do: RETURN(liste) end: ######################################################## r2p:=proc(s) local max, liste, prod, S, T: S := evalf(abs(s)): max := 10^(Digits - 5): if 1 < S then prod := 1: liste := []: while prod < max and S <> 1.0 do T := 1 + floor(1/(S - 1)): S := S*T/(T + 1): liste := [op(liste), T]: prod := prod*T end do elif S < 1 then prod := 1: liste := [trunc(abs(s))]: while prod < max and S <> 1.0 do T := 1 + floor(1/abs(S - 1)): S := S*T/(T - 1): liste := [op(liste), T]: prod := prod*T end do end if: RETURN(liste) end: ######################################################## r2genn:=proc(s, b,sgn,k) local i, j, v, premier, fin, lll, liste, w, baz: baz:=evalf(b): v := abs(frac(evalf(s))): fin := trunc(evalf(Digits/log10(b))): lll := [seq(i^k*(baz^i+sgn),i=1..fin)]: liste := [trunc(evalf(s))]: for i to fin do : w := trunc(v*lll[i]): v := v - w/lll[i]: liste := [op(liste), w]: end do: RETURN(liste) end: r2G:=proc(s) local i, j, v, lll, liste, w, baz: baz:=evalf(exp(Pi)): j:=k: v := abs(frac(evalf(s))): lll := [seq(i*(baz^i-1),i=1..Digits)]: liste := [trunc(evalf(s))]: for i to Digits do : w := trunc(v*lll[i]): v := v - w/lll[i]: liste := [op(liste), w]: end do: RETURN(liste) end: r2gen:=proc(s, b,sgn) local i, j, v, premier, fin, lll, liste, w, baz: baz:=evalf(b): v := abs(frac(evalf(s))): fin := trunc(evalf(Digits/log10(b))): lll := [seq(baz^i+sgn,i=1..fin)]: liste := [trunc(evalf(s))]: for i to fin do : w := trunc(v*lll[i]): v := v - w/lll[i]: liste := [op(liste), w]: end do: RETURN(liste) end: ######################################################## r2prime:=proc(s, b) local i, j, v, premier, fin, lll, liste, w, baz: baz := b*1.0: v := abs(frac(evalf(s))): fin := trunc(evalf(Digits/log10(baz))) - 5: lll := [seq(ithprime(i)*baz^(i - 1), i = 1 .. fin)]: liste := []: for i to fin do w := trunc(v*lll[i]): v := v - w/lll[i]: liste := [op(liste), w] end do: RETURN(liste) end: ######################################################## leprint:=proc(a, b, c) local mess, v, wildguess, aa: v := a: mess := b: aa := c: wildguess := listtoratpoly(aa,x); if length(wildguess) < 3*length(aa) then print(v, mess, aa, wildguess) else return lprint("No rational function found with", mess) end if end: pidev:=proc(s) local u, t, v, w, nn, aa, i, wildguess, mess: interface(quiet=true): v := evalf(abs(s)): w := 1/v: u := 1/(1 - frac(v)): t := 1 - frac(v): pdr(v): aa := %: leprint(v, `Prime-egyptian fraction expansion of x : `, aa): pdp(v): aa := %: leprint(v, `Prime-Engel expansion of x : `, aa): pdq(v): aa := %: leprint(v, `Prime-Pierce expansion of x : `, aa): pdr(w): aa := %: leprint(w, `Prime-egyptian fraction expansion of 1/x : `, aa): pdp(w): aa := %: leprint(w, `Prime-Engel expansion of 1/x : `, aa): pdq(w): aa := %: leprint(w, `Prime-Pierce expansion of 1/x : `, aa): pdr(u): aa := %: leprint(u, `Prime-egyptian fraction expansion of 1/(1-frac(x)) : `, aa): pdp(u): aa := %: leprint(u, `Prime-Engel expansion of 1/(1-frac(x)) : `, aa): pdq(u): aa := %: leprint(u, `Prime-Pierce expansion of 1/(1-frac(x)) : `, aa): pdr(t): aa := %: leprint(t, `Prime-egyptian fraction expansion of 1-frac(x) : `, aa): pdp(t): aa := %: leprint(t, `Prime-Engel expansion of 1-frac(x) : `, aa): pdq(t): aa := %: leprint(t, `Prime-Pierce expansion of 1-frac(x) : `, aa): r2cf(v): aa := %: leprint(v, `Continued fraction of x : `, aa): r2ef(v): aa := %: leprint(v, `Egyptian fraction of x : `, aa): r2ep(v): aa := %: leprint(v, `Engel expansion of x : `, aa): r2ep(w): aa := %: leprint(w, `Engel expansion of 1/x : `, aa): r2ef(w): aa := %: leprint(w, `Egyptian fraction of 1/x : `, aa): r2ef(t): aa := %: leprint(t, `Egyptian fraction of 1-frac(x) : `, aa): r2ep(u): aa := %: leprint(u, `Engel expansion of 1/(1-frac(x)) : `, aa): r2ep(t): aa := %: leprint(t, `Engel expansion of 1-frac(x) : `, aa): r2ef(u): aa := %: leprint(u, `Egyptian fraction of 1/(1-frac(x)) : `, aa): r2p(v): aa := %: leprint(v, `Infinite product of x : `, aa): r2p(t): aa := %: leprint(t, `Infinite product of 1-frac(x) : `, aa): r2p(u): aa := %: leprint(u, `Infinite product of 1/(1-frac(x)) : `, aa): r2aep(v): aa := %: leprint(v, `Pierce expansion of x : `, aa): r2aef(v): aa := %: leprint(v, `Alternated egyptian fraction of x : `, aa): r2aep(t): aa := %: leprint(t, `Pierce expansion of 1-frac(x) : `, aa): r2aef(t): aa := %: leprint(t, `Alternated egyptian fraction of 1-frac(x) : `, aa): r2aep(u): aa := %: leprint(u, `Pierce expansion of 1/(1-frac(x)) : `, aa): r2aef(u): aa := %: leprint(u, `Alternated egyptian fraction of 1/(1-frac(x)) : `, aa): r2aep(w): aa := %: leprint(w, `Pierce expansion of 1/x : `, aa): r2aef(w): aa := %: leprint(w, `Alternated egyptian fraction of 1/x : `, aa): r2fact(v): aa := %: leprint(v, `Factorial base of x : `, aa): r2fact(w): aa := %: leprint(w, `Factorial base of 1/x : `, aa): r2fact(t): aa := %: leprint(t, `Factorial base of 1-frac(x) : `, aa): r2fact(u): aa := %: leprint(u, `Factorial base of 1/(1-frac(x)) : `, aa): ############################################################# r2prime(v,2): aa := %: leprint(v,`Base 2 and prime expansion of x : `, aa): r2prime(v,10): aa := %: leprint(v,`Base 10 and prime expansion of x : `, aa): r2prime(w,2): aa := %: leprint(w,`Base 2 and prime expansion of 1/x : `, aa): r2prime(w,10): aa := %: leprint(w,`Base 10 and prime expansion of 1/x : `, aa): r2prime(u,2): aa := %: leprint(u,`Base 2 and prime expansion of 1/(1-frac(x)) : `, aa): r2prime(u,10): aa := %: leprint(u,`Base 10 and prime expansion of 1/(1-frac(x)) : `, aa): r2prime(t,2): aa := %: leprint(t,`Base 2 and prime expansion of 1-frac(x) : `, aa): r2prime(t,10): aa := %: leprint(t,`Base 10 and prime expansion of 1-frac(x) : `, aa): #################################################################### r2bk(v, 2): aa := %: leprint(v, `Binary expansion of x : `, aa): r2bk(w, 2): aa := %: leprint(w, `Binary expansion of 1/x : `, aa): r2bk(t, 2): aa := %: leprint(t, `Binary expansion of 1-frac(x) : `, aa): r2bk(u, 2): aa := %: leprint(u, `Binary expansion of 1/(1-frac(x)) : `, aa): r2fib(v): aa := %: leprint(v, `Fibonacci representation of x : `, aa): r2fib(w): aa := %: leprint(w, `Fibonacci representation of 1/x : `, aa): r2luc(v): aa := %: leprint(v, `Lucas representation of x : `, aa): r2luc(w): aa := %: leprint(w, `Lucas representation of 1/x : `, aa): r2fib(t): aa := %: leprint(t, `Fibonacci representation of 1-frac(x) : `, aa): r2fib(u): aa := %: leprint(u, `Fibonacci representation of 1/(1-frac(x)) : `, aa): r2luc(t): aa := %: leprint(t, `Lucas representation of 1-frac(x) : `, aa): r2luc(u): aa := %: leprint(u, `Lucas representation of 1/1-frac(x)) : `, aa): r2bk(v, Pi): aa := %: leprint(v, `Expansion in base Pi of x : `, aa): r2bk(w, Pi): aa := %: leprint(w, `Expansion in base Pi of 1/x : `, aa): r2bk(v, exp(Pi)): aa := %: leprint(v, `Expansion in base exp(Pi) of x : `, aa): r2bk(w, exp(Pi)): aa := %: leprint(w, `Expansion in base exp(Pi) of 1/x : `, aa): r2bk(v, exp(Pi/5)): aa := %: leprint(v, `Expansion in base exp(Pi/5) of x : `, aa): r2bk(w, exp(Pi/5)): aa := %: leprint(w, `Expansion in base exp(Pi/5) of 1/x : `, aa): r2bk(v, exp(2*Pi/5)): aa := %: leprint(v, `Expansion in base exp(2*Pi/5) of x : `, aa): r2bk(w, exp(2*Pi/5)): aa := %: leprint(w, `Expansion in base exp(2*Pi/5) of 1/x : `, aa): r2bk(v, exp(1)): aa := %: leprint(v, `Expansion in base e or exp(1) of x : `, aa): r2bk(w, exp(1)): aa := %: leprint(w, `Expansion in base e or exp(1) of 1/x : `, aa): r2bk(v, 1+sqrt(2)): aa := %: leprint(v, `Expansion in base 1+sqrt(2) of x : `, aa): r2bk(w, 1+sqrt(2)): aa := %: leprint(w, `Expansion in base 1+sqrt(2) of 1/x : `, aa): r2bk(t, Pi): aa := %: leprint(t, `Expansion in base Pi of 1-frac(x) : `, aa): r2bk(u, Pi): aa := %: leprint(u, `Expansion in base Pi of 1/(1-frac(x)) : `, aa): r2bk(t, exp(Pi)): aa := %: leprint(t, `Expansion in base exp(Pi) of 1-frac(x) : `, aa): r2bk(u, exp(Pi)): aa := %: leprint(u, `Expansion in base exp(Pi) of 1/(1-frac(x)) : `, aa): r2bk(t, exp(Pi/5)): aa := %: leprint(t, `Expansion in base exp(Pi/5) of 1-frac(x) : `, aa): r2bk(u, exp(Pi/5)): aa := %: leprint(u, `Expansion in base exp(Pi/5) of 1/(1-frac(x)) : `, aa): r2bk(t, exp(2*Pi/5)): aa := %: leprint(t, `Expansion in base exp(2*Pi/5) of 1-frac(x) : `, aa): r2bk(u, exp(2*Pi/5)): aa := %: leprint(u, `Expansion in base exp(2*Pi/5) of 1/(1-frac(x)) : `, aa): r2bk(t, exp(1)): aa := %: leprint(t, `Expansion in base e or exp(1) of 1-frac(x) : `, aa): r2bk(u, exp(1)): aa := %: leprint(u, `Expansion in base e or exp(1) of 1/(1-frac(x)) : `, aa): r2bk(t, 1+sqrt(2)): aa := %: leprint(t, `Expansion in base 1+sqrt(2) of 1-frac(x) : `, aa): r2bk(u, 1+sqrt(2)): aa := %: leprint(u, `Expansion in base 1+sqrt(2) of 1/(1-frac(x)) : `, aa): ########################################################################### r2genn(v, exp(2*Pi), -1,0): aa := %: leprint(v, `Expansion in base exp(2*Pi*n) - 1 of x : `, aa): r2genn(v, exp(2*Pi), 1,0): aa := %: leprint(v, `Expansion in base exp(2*Pi*n) + 1 of x : `, aa): r2genn(v, exp(Pi), -1,0): aa := %: leprint(v, `Expansion in base exp(Pi*n) - 1 of x : `, aa): r2genn(v, exp(Pi), 1,0): aa := %: leprint(v, `Expansion in base exp(Pi*n) + 1 of x : `, aa): r2genn(v, Pi, -1,0): aa := %: leprint(v, `Expansion in base Pi^n - 1 of x : `, aa): r2genn(v, Pi, 1,0): aa := %: leprint(v, `Expansion in base Pi^n + 1 of x : `, aa): r2genn(v, 2, -1,0): aa := %: leprint(v, `Expansion in base 2^n - 1 of x : `, aa): r2genn(v, 2, 1,0): aa := %: leprint(v, `Expansion in base 2^n + 1 of x : `, aa): r2genn(v, exp(1), -1,0): aa := %: leprint(v, `Expansion in base exp(n) - 1 of x : `, aa): r2genn(v, exp(1), 1,0): aa := %: leprint(v, `Expansion in base exp(n) + 1 of x : `, aa): r2genn(v, 10, -1,0): aa := %: leprint(v, `Expansion in base 10^n - 1 of x : `, aa): r2genn(v, 10, 1,0): aa := %: leprint(v, `Expansion in base 10^n + 1 of x : `, aa): ################################################################ r2genn(w, exp(2*Pi), -1,0): aa := %: leprint(w, `Expansion in base exp(2*Pi*n) - 1 of 1/x : `, aa): r2genn(w, exp(2*Pi), 1,0): aa := %: leprint(w, `Expansion in base exp(2*Pi*n) + 1 of 1/x : `, aa): r2genn(w, exp(Pi), -1,0): aa := %: leprint(w, `Expansion in base exp(Pi*n) - 1 of 1/x : `, aa): r2genn(w, exp(Pi), 1,0): aa := %: leprint(w, `Expansion in base exp(Pi*n) + 1 of 1/x : `, aa): r2genn(w, Pi, -1,0): aa := %: leprint(w, `Expansion in base Pi^n - 1 of 1/x : `, aa): r2genn(w, Pi, 1,0): aa := %: leprint(w, `Expansion in base Pi^n + 1 of 1/x : `, aa): r2genn(w, 2, -1,0): aa := %: leprint(w, `Expansion in base 2^n - 1 of 1/x : `, aa): r2genn(w, 2, 1,0): aa := %: leprint(w, `Expansion in base 2^n + 1 of 1/x : `, aa): r2genn(w, exp(1), -1,0): aa := %: leprint(w, `Expansion in base exp(n) - 1 of 1/x : `, aa): r2genn(w, exp(1), 1,0): aa := %: leprint(w, `Expansion in base exp(n) + 1 of 1/x : `, aa): r2genn(w, 10, -1,0): aa := %: leprint(w, `Expansion in base 10^n - 1 of 1/x : `, aa): r2genn(w, 10, 1,0): aa := %: leprint(w, `Expansion in base 10^n + 1 of 1/x : `, aa): ##################################################################### r2genn(t, exp(2*Pi), -1,0): aa := %: leprint(t, `Expansion in base exp(2*Pi*n) - 1 of 1-frac(x) : `, aa): r2genn(t, exp(2*Pi), 1,0): aa := %: leprint(t, `Expansion in base exp(2*Pi*n) + 1 of 1-frac(x) : `, aa): r2genn(t, exp(Pi), -1,0): aa := %: leprint(t, `Expansion in base exp(Pi*n) - 1 of 1-frac(x) : `, aa): r2genn(t, exp(Pi), 1,0): aa := %: leprint(t, `Expansion in base exp(Pi*n) + 1 of 1-frac(x) : `, aa): r2genn(t, Pi, -1,0): aa := %: leprint(t, `Expansion in base Pi^n - 1 of 1-frac(x) : `, aa): r2genn(t, Pi, 1,0): aa := %: leprint(t, `Expansion in base Pi^n + 1 of 1-frac(x) : `, aa): r2genn(t, 2, -1,0): aa := %: leprint(t, `Expansion in base 2^n - 1 of 1-frac(x) : `, aa): r2genn(t, 2, 1,0): aa := %: leprint(t, `Expansion in base 2^n + 1 of 1-frac(x) : `, aa): r2genn(t, exp(1), -1,0): aa := %: leprint(t, `Expansion in base exp(n) - 1 of 1-frac(x) : `, aa): r2genn(t, exp(1), 1,0): aa := %: leprint(t, `Expansion in base exp(n) + 1 of 1-frac(x) : `, aa): r2genn(t, 10, -1,0): aa := %: leprint(t, `Expansion in base 10^n - 1 of 1-frac(x) : `, aa): r2genn(t, 10, 1,0): aa := %: leprint(t, `Expansion in base 10^n + 1 of 1-frac(x) : `, aa): ##################################################################### r2genn(u, exp(2*Pi), -1,0): aa := %: leprint(u, `Expansion in base exp(2*Pi*n) - 1 of 1/(1-frac(x)) : `, aa): r2genn(u, exp(2*Pi), 1,0): aa := %: leprint(u, `Expansion in base exp(2*Pi*n) + 1 of 1/(1-frac(x)) : `, aa): r2genn(u, exp(Pi), -1,0): aa := %: leprint(u, `Expansion in base exp(Pi*n) - 1 of 1/(1-frac(x)) : `, aa): r2genn(u, exp(Pi), 1,0): aa := %: leprint(u, `Expansion in base exp(Pi*n) + 1 of 1/(1-frac(x)) : `, aa): r2genn(u, Pi, -1,0): aa := %: leprint(u, `Expansion in base Pi^n - 1 of 1/(1-frac(x)) : `, aa): r2genn(u, Pi, 1,0): aa := %: leprint(u, `Expansion in base Pi^n + 1 of 1/(1-frac(x)) : `, aa): r2genn(u, 2, -1,0): aa := %: leprint(u, `Expansion in base 2^n - 1 of 1/(1-frac(x)) : `, aa): r2genn(u, 2, 1,0): aa := %: leprint(u, `Expansion in base 2^n + 1 of 1/(1-frac(x)) : `, aa): r2genn(u, exp(1), -1,0): aa := %: leprint(u, `Expansion in base exp(n) - 1 of 1/(1-frac(x)) : `, aa): r2genn(u, exp(1), 1,0): aa := %: leprint(u, `Expansion in base exp(n) + 1 of 1/(1-frac(x)) : `, aa): r2genn(u, 10, -1,0): aa := %: leprint(u, `Expansion in base 10^n - 1 of 1/(1-frac(x)) : `, aa): r2genn(u, 10, 1,0): aa := %: leprint(u, `Expansion in base 10^n + 1 of 1/(1-frac(x)) : `, aa): ######################################################################################## ######################################################################################## r2genn(v, exp(2*Pi), -1,1): aa := %: leprint(v, `Expansion in base (n*exp(2*Pi*n) - 1) of x : `, aa): r2genn(v, exp(2*Pi), 1,1): aa := %: leprint(v, `Expansion in base (n*exp(2*Pi*n) + 1) of x : `, aa): r2genn(v, exp(Pi), -1,1): aa := %: leprint(v, `Expansion in base (n*exp(Pi*n) - 1) of x : `, aa): r2genn(v, exp(Pi), 1,1): aa := %: leprint(v, `Expansion in base (n*exp(Pi*n) + 1) of x : `, aa): r2genn(v, Pi, -1,1): aa := %: leprint(v, `Expansion in base (n*Pi^n - 1) of x : `, aa): r2genn(v, Pi, 1,1): aa := %: leprint(v, `Expansion in base (n*Pi^n + 1) of x : `, aa): r2genn(v, 2, -1,1): aa := %: leprint(v, `Expansion in base (n*2^n - 1) of x : `, aa): r2genn(v, 2, 1,1): aa := %: leprint(v, `Expansion in base (n*2^n + 1) of x : `, aa): r2genn(v, exp(1), -1,1): aa := %: leprint(v, `Expansion in base (n*exp(n) - 1) of x : `, aa): r2genn(v, exp(1), 1,1): aa := %: leprint(v, `Expansion in base (n*exp(n) + 1) of x : `, aa): r2genn(v, 10, -1,1): aa := %: leprint(v, `Expansion in base (n*10^n - 1) of x : `, aa): r2genn(v, 10, 1,1): aa := %: leprint(v, `Expansion in base (n*10^n + 1) of x : `, aa): ################################################################ r2genn(w, exp(2*Pi), -1,1): aa := %: leprint(w, `Expansion in base (n*exp(2*Pi*n) - 1) of 1/x : `, aa): r2genn(w, exp(2*Pi), 1,1): aa := %: leprint(w, `Expansion in base (n*exp(2*Pi*n) + 1) of 1/x : `, aa): r2genn(w, exp(Pi), -1,1): aa := %: leprint(w, `Expansion in base (n*exp(Pi*n) - 1) of 1/x : `, aa): r2genn(w, exp(Pi), 1,1): aa := %: leprint(w, `Expansion in base (n*exp(Pi*n) + 1) of 1/x : `, aa): r2genn(w, Pi, -1,1): aa := %: leprint(w, `Expansion in base (n*Pi^n - 1) of 1/x : `, aa): r2genn(w, Pi, 1,1): aa := %: leprint(w, `Expansion in base (n*Pi^n + 1) of 1/x : `, aa): r2genn(w, 2, -1,1): aa := %: leprint(w, `Expansion in base (n*2^n - 1) of 1/x : `, aa): r2genn(w, 2, 1,1): aa := %: leprint(w, `Expansion in base (n*2^n + 1) of 1/x : `, aa): r2genn(w, exp(1), -1,1): aa := %: leprint(w, `Expansion in base (n*exp(n) - 1) of 1/x : `, aa): r2genn(w, exp(1), 1,1): aa := %: leprint(w, `Expansion in base (n*exp(n) + 1) of 1/x : `, aa): r2genn(w, 10, -1,1): aa := %: leprint(w, `Expansion in base (n*10^n - 1) of 1/x : `, aa): r2genn(w, 10, 1,1): aa := %: leprint(w, `Expansion in base (n*10^n + 1) of 1/x : `, aa): ##################################################################### r2genn(t, exp(2*Pi), -1,1): aa := %: leprint(t, `Expansion in base (n*exp(2*Pi*n) - 1) of 1-frac(x) : `, aa): r2genn(t, exp(2*Pi), 1,1): aa := %: leprint(t, `Expansion in base (n*exp(2*Pi*n) + 1) of 1-frac(x) : `, aa): r2genn(t, exp(Pi), -1,1): aa := %: leprint(t, `Expansion in base (n*exp(Pi*n) - 1) of 1-frac(x) : `, aa): r2genn(t, exp(Pi), 1,1): aa := %: leprint(t, `Expansion in base (n*exp(Pi*n) + 1) of 1-frac(x) : `, aa): r2genn(t, Pi, -1,1): aa := %: leprint(t, `Expansion in base (n*Pi^n - 1) of 1-frac(x) : `, aa): r2genn(t, Pi, 1,1): aa := %: leprint(t, `Expansion in base (n*Pi^n + 1) of 1-frac(x) : `, aa): r2genn(t, 2, -1,1): aa := %: leprint(t, `Expansion in base (n*2^n - 1) of 1-frac(x) : `, aa): r2genn(t, 2, 1,1): aa := %: leprint(t, `Expansion in base (n*2^n + 1) of 1-frac(x) : `, aa): r2genn(t, exp(1), -1,1): aa := %: leprint(t, `Expansion in base (n*exp(n) - 1) of 1-frac(x) : `, aa): r2genn(t, exp(1), 1,1): aa := %: leprint(t, `Expansion in base (n*exp(n) + 1) of 1-frac(x) : `, aa): r2genn(t, 10, -1,1): aa := %: leprint(t, `Expansion in base (n*10^n - 1) of 1-frac(x) : `, aa): r2genn(t, 10, 1,1): aa := %: leprint(t, `Expansion in base (n*10^n + 1) of 1-frac(x) : `, aa): ##################################################################### r2genn(u, exp(2*Pi), -1,1): aa := %: leprint(u, `Expansion in base (n*exp(2*Pi*n) - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(2*Pi), 1,1): aa := %: leprint(u, `Expansion in base (n*exp(2*Pi*n) + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(Pi), -1,1): aa := %: leprint(u, `Expansion in base (n*exp(Pi*n) - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(Pi), 1,1): aa := %: leprint(u, `Expansion in base (n*exp(Pi*n) + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, Pi, -1,1): aa := %: leprint(u, `Expansion in base (n*Pi^n - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, Pi, 1,1): aa := %: leprint(u, `Expansion in base (n*Pi^n + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 2, -1,1): aa := %: leprint(u, `Expansion in base (n*2^n - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 2, 1,1): aa := %: leprint(u, `Expansion in base (n*2^n + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(1), -1,1): aa := %: leprint(u, `Expansion in base (n*exp(n) - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(1), 1,1): aa := %: leprint(u, `Expansion in base (n*exp(n) + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 10, -1,1): aa := %: leprint(u, `Expansion in base (n*10^n - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 10, 1,1): aa := %: leprint(u, `Expansion in base (n*10^n + 1) of 1/(1-frac(x)) : `, aa): ########################################################################################### ########################################################################################### r2genn(v, exp(2*Pi), -1,2): aa := %: leprint(v, `Expansion in base (n^2*exp(2*Pi*n) - 1) of x : `, aa): r2genn(v, exp(2*Pi), 1,2): aa := %: leprint(v, `Expansion in base (n^2*exp(2*Pi*n) + 1) of x : `, aa): r2genn(v, exp(Pi), -1,2): aa := %: leprint(v, `Expansion in base (n^2*exp(Pi*n) - 1) of x : `, aa): r2genn(v, exp(Pi), 1,2): aa := %: leprint(v, `Expansion in base (n^2*exp(Pi*n) + 1) of x : `, aa): r2genn(v, Pi, -1,2): aa := %: leprint(v, `Expansion in base (n^2*Pi^n - 1) of x : `, aa): r2genn(v, Pi, 1,2): aa := %: leprint(v, `Expansion in base (n^2*Pi^n + 1) of x : `, aa): r2genn(v, 2, -1,2): aa := %: leprint(v, `Expansion in base (n^2*2^n - 1) of x : `, aa): r2genn(v, 2, 1,2): aa := %: leprint(v, `Expansion in base (n^2*2^n + 1) of x : `, aa): r2genn(v, exp(1), -1,2): aa := %: leprint(v, `Expansion in base (n^2*exp(n) - 1) of x : `, aa): r2genn(v, exp(1), 1,2): aa := %: leprint(v, `Expansion in base (n^2*exp(n) + 1) of x : `, aa): r2genn(v, 10, -1,2): aa := %: leprint(v, `Expansion in base (n^2*10^n - 1) of x : `, aa): r2genn(v, 10, 1,2): aa := %: leprint(v, `Expansion in base (n^2*10^n + 1) of x : `, aa): ################################################################ r2genn(w, exp(2*Pi), -1,2): aa := %: leprint(w, `Expansion in base (n^2*exp(2*Pi*n) - 1) of 1/x : `, aa): r2genn(w, exp(2*Pi), 1,2): aa := %: leprint(w, `Expansion in base (n^2*exp(2*Pi*n) + 1) of 1/x : `, aa): r2genn(w, exp(Pi), -1,2): aa := %: leprint(w, `Expansion in base (n^2*exp(Pi*n) - 1) of 1/x : `, aa): r2genn(w, exp(Pi), 1,2): aa := %: leprint(w, `Expansion in base (n^2*exp(Pi*n) + 1) of 1/x : `, aa): r2genn(w, Pi, -1,2): aa := %: leprint(w, `Expansion in base (n^2*Pi^n - 1) of 1/x : `, aa): r2genn(w, Pi, 1,2): aa := %: leprint(w, `Expansion in base (n^2*Pi^n + 1) of 1/x : `, aa): r2genn(w, 2, -1,2): aa := %: leprint(w, `Expansion in base (n^2*2^n - 1) of 1/x : `, aa): r2genn(w, 2, 1,2): aa := %: leprint(w, `Expansion in base (n^2*2^n + 1) of 1/x : `, aa): r2genn(w, exp(1), -1,2): aa := %: leprint(w, `Expansion in base (n^2*exp(n) - 1) of 1/x : `, aa): r2genn(w, exp(1), 1,2): aa := %: leprint(w, `Expansion in base (n^2*exp(n) + 1) of 1/x : `, aa): r2genn(w, 10, -1,2): aa := %: leprint(w, `Expansion in base (n^2*10^n - 1) of 1/x : `, aa): r2genn(w, 10, 1,2): aa := %: leprint(w, `Expansion in base (n^2*10^n + 1) of 1/x : `, aa): ##################################################################### r2genn(t, exp(2*Pi), -1,2): aa := %: leprint(t, `Expansion in base (n^2*exp(2*Pi*n) - 1) of 1-frac(x) : `, aa): r2genn(t, exp(2*Pi), 1,2): aa := %: leprint(t, `Expansion in base (n^2*exp(2*Pi*n) + 1) of 1-frac(x) : `, aa): r2genn(t, exp(Pi), -1,2): aa := %: leprint(t, `Expansion in base (n^2*exp(Pi*n) - 1) of 1-frac(x) : `, aa): r2genn(t, exp(Pi), 1,2): aa := %: leprint(t, `Expansion in base (n^2*exp(Pi*n) + 1) of 1-frac(x) : `, aa): r2genn(t, Pi, -1,2): aa := %: leprint(t, `Expansion in base (n^2*Pi^n - 1) of 1-frac(x) : `, aa): r2genn(t, Pi, 1,2): aa := %: leprint(t, `Expansion in base (n^2*Pi^n + 1) of 1-frac(x) : `, aa): r2genn(t, 2, -1,2): aa := %: leprint(t, `Expansion in base (n^2*2^n - 1) of 1-frac(x) : `, aa): r2genn(t, 2, 1,2): aa := %: leprint(t, `Expansion in base (n^2*2^n + 1) of 1-frac(x) : `, aa): r2genn(t, exp(1), -1,2): aa := %: leprint(t, `Expansion in base (n^2*exp(n) - 1) of 1-frac(x) : `, aa): r2genn(t, exp(1), 1,2): aa := %: leprint(t, `Expansion in base (n^2*exp(n) + 1) of 1-frac(x) : `, aa): r2genn(t, 10, -1,2): aa := %: leprint(t, `Expansion in base (n^2*10^n - 1) of 1-frac(x) : `, aa): r2genn(t, 10, 1,2): aa := %: leprint(t, `Expansion in base (n^2*10^n + 1) of 1-frac(x) : `, aa): ##################################################################### r2genn(u, exp(2*Pi), -1,2): aa := %: leprint(u, `Expansion in base (n^2*exp(2*Pi*n) - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(2*Pi), 1,2): aa := %: leprint(u, `Expansion in base (n^2*exp(2*Pi*n) + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(Pi), -1,2): aa := %: leprint(u, `Expansion in base (n^2*exp(Pi*n) - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(Pi), 1,2): aa := %: leprint(u, `Expansion in base (n^2*exp(Pi*n) + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, Pi, -1,2): aa := %: leprint(u, `Expansion in base (n^2*Pi^n - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, Pi, 1,2): aa := %: leprint(u, `Expansion in base (n^2*Pi^n + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 2, -1,2): aa := %: leprint(u, `Expansion in base (n^2*2^n - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 2, 1,2): aa := %: leprint(u, `Expansion in base (n^2*2^n + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(1), -1,2): aa := %: leprint(u, `Expansion in base (n^2*exp(n) - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(1), 1,2): aa := %: leprint(u, `Expansion in base (n^2*exp(n) + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 10, -1,2): aa := %: leprint(u, `Expansion in base (n^2*10^n - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 10, 1,2): aa := %: leprint(u, `Expansion in base (n^2*10^n + 1) of 1/(1-frac(x)) : `, aa): ############################################################################################### ############################################################################################### r2genn(v, exp(2*Pi), -1,3): aa := %: leprint(v, `Expansion in base (n^3*exp(2*Pi*n) - 1) of x : `, aa): r2genn(v, exp(2*Pi), 1,3): aa := %: leprint(v, `Expansion in base (n^3*exp(2*Pi*n) + 1) of x : `, aa): r2genn(v, exp(Pi), -1,3): aa := %: leprint(v, `Expansion in base (n^3*exp(Pi*n) - 1) of x : `, aa): r2genn(v, exp(Pi), 1,3): aa := %: leprint(v, `Expansion in base (n^3*exp(Pi*n) + 1) of x : `, aa): r2genn(v, Pi, -1,3): aa := %: leprint(v, `Expansion in base (n^3*Pi^n - 1) of x : `, aa): r2genn(v, Pi, 1,3): aa := %: leprint(v, `Expansion in base (n^3*Pi^n + 1) of x : `, aa): r2genn(v, 2, -1,3): aa := %: leprint(v, `Expansion in base (n^3*2^n - 1) of x : `, aa): r2genn(v, 2, 1,3): aa := %: leprint(v, `Expansion in base (n^3*2^n + 1) of x : `, aa): r2genn(v, exp(1), -1,3): aa := %: leprint(v, `Expansion in base (n^3*exp(n) - 1) of x : `, aa): r2genn(v, exp(1), 1,3): aa := %: leprint(v, `Expansion in base (n^3*exp(n) + 1) of x : `, aa): r2genn(v, 10, -1,3): aa := %: leprint(v, `Expansion in base (n^3*10^n - 1) of x : `, aa): r2genn(v, 10, 1,3): aa := %: leprint(v, `Expansion in base (n^3*10^n + 1) of x : `, aa): ################################################################ r2genn(w, exp(2*Pi), -1,3): aa := %: leprint(w, `Expansion in base (n^3*exp(2*Pi*n) - 1) of 1/x : `, aa): r2genn(w, exp(2*Pi), 1,3): aa := %: leprint(w, `Expansion in base (n^3*exp(2*Pi*n) + 1) of 1/x : `, aa): r2genn(w, exp(Pi), -1,3): aa := %: leprint(w, `Expansion in base (n^3*exp(Pi*n) - 1) of 1/x : `, aa): r2genn(w, exp(Pi), 1,3): aa := %: leprint(w, `Expansion in base (n^3*exp(Pi*n) + 1) of 1/x : `, aa): r2genn(w, Pi, -1,3): aa := %: leprint(w, `Expansion in base (n^3*Pi^n - 1) of 1/x : `, aa): r2genn(w, Pi, 1,3): aa := %: leprint(w, `Expansion in base (n^3*Pi^n + 1) of 1/x : `, aa): r2genn(w, 2, -1,3): aa := %: leprint(w, `Expansion in base (n^3*2^n - 1) of 1/x : `, aa): r2genn(w, 2, 1,3): aa := %: leprint(w, `Expansion in base (n^3*2^n + 1) of 1/x : `, aa): r2genn(w, exp(1), -1,3): aa := %: leprint(w, `Expansion in base (n^3*exp(n) - 1) of 1/x : `, aa): r2genn(w, exp(1), 1,3): aa := %: leprint(w, `Expansion in base (n^3*exp(n) + 1) of 1/x : `, aa): r2genn(w, 10, -1,3): aa := %: leprint(w, `Expansion in base (n^3*10^n - 1) of 1/x : `, aa): r2genn(w, 10, 1,3): aa := %: leprint(w, `Expansion in base (n^3*10^n + 1) of 1/x : `, aa): ##################################################################### r2genn(t, exp(2*Pi), -1,3): aa := %: leprint(t, `Expansion in base (n^3*exp(2*Pi*n) - 1) of 1-frac(x) : `, aa): r2genn(t, exp(2*Pi), 1,3): aa := %: leprint(t, `Expansion in base (n^3*exp(2*Pi*n) + 1) of 1-frac(x) : `, aa): r2genn(t, exp(Pi), -1,3): aa := %: leprint(t, `Expansion in base (n^3*exp(Pi*n) - 1) of 1-frac(x) : `, aa): r2genn(t, exp(Pi), 1,3): aa := %: leprint(t, `Expansion in base (n^3*exp(Pi*n) + 1) of 1-frac(x) : `, aa): r2genn(t, Pi, -1,3): aa := %: leprint(t, `Expansion in base (n^3*Pi^n - 1) of 1-frac(x) : `, aa): r2genn(t, Pi, 1,3): aa := %: leprint(t, `Expansion in base (n^3*Pi^n + 1) of 1-frac(x) : `, aa): r2genn(t, 2, -1,3): aa := %: leprint(t, `Expansion in base (n^3*2^n - 1) of 1-frac(x) : `, aa): r2genn(t, 2, 1,3): aa := %: leprint(t, `Expansion in base (n^3*2^n + 1) of 1-frac(x) : `, aa): r2genn(t, exp(1), -1,3): aa := %: leprint(t, `Expansion in base (n^3*exp(n) - 1) of 1-frac(x) : `, aa): r2genn(t, exp(1), 1,3): aa := %: leprint(t, `Expansion in base (n^3*exp(n) + 1) of 1-frac(x) : `, aa): r2genn(t, 10, -1,3): aa := %: leprint(t, `Expansion in base (n^3*10^n - 1) of 1-frac(x) : `, aa): r2genn(t, 10, 1,3): aa := %: leprint(t, `Expansion in base (n^3*10^n + 1) of 1-frac(x) : `, aa): ##################################################################### r2genn(u, exp(2*Pi), -1,3): aa := %: leprint(u, `Expansion in base (n^3*exp(2*Pi*n) - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(2*Pi), 1,3): aa := %: leprint(u, `Expansion in base (n^3*exp(2*Pi*n) + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(Pi), -1,3): aa := %: leprint(u, `Expansion in base (n^3*exp(Pi*n) - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(Pi), 1,3): aa := %: leprint(u, `Expansion in base (n^3*exp(Pi*n) + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, Pi, -1,3): aa := %: leprint(u, `Expansion in base (n^3*Pi^n - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, Pi, 1,3): aa := %: leprint(u, `Expansion in base (n^3*Pi^n + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 2, -1,3): aa := %: leprint(u, `Expansion in base (n^3*2^n - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 2, 1,3): aa := %: leprint(u, `Expansion in base (n^3*2^n + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(1), -1,3): aa := %: leprint(u, `Expansion in base (n^3*exp(n) - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(1), 1,3): aa := %: leprint(u, `Expansion in base (n^3*exp(n) + 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 10, -1,3): aa := %: leprint(u, `Expansion in base (n^3*10^n - 1) of 1/(1-frac(x)) : `, aa): r2genn(u, 10, 1,3): aa := %: leprint(u, `Expansion in base (n^3*10^n + 1) of 1/(1-frac(x)) : `, aa): ########################################################################################### r2genn(v, exp(2*Pi), -1,-1): aa := %: leprint(v, `Expansion in base (n/(exp(2*Pi*n) - 1)) of x : `, aa): r2genn(v, exp(2*Pi), 1,-1): aa := %: leprint(v, `Expansion in base (n/(exp(2*Pi*n) + 1)) of x : `, aa): r2genn(v, exp(Pi), -1,-1): aa := %: leprint(v, `Expansion in base (n/(exp(Pi*n) - 1)) of x : `, aa): r2genn(v, exp(Pi), 1,-1): aa := %: leprint(v, `Expansion in base (n/(exp(Pi*n) + 1)) of x : `, aa): r2genn(v, Pi, -1,-1): aa := %: leprint(v, `Expansion in base (n/(Pi^n - 1)) of x : `, aa): r2genn(v, Pi, 1,-1): aa := %: leprint(v, `Expansion in base (n/(Pi^n + 1)) of x : `, aa): r2genn(v, 2, -1,-1): aa := %: leprint(v, `Expansion in base (n/(2^n - 1)) of x : `, aa): r2genn(v, 2, 1,-1): aa := %: leprint(v, `Expansion in base (n/(2^n + 1)) of x : `, aa): r2genn(v, exp(1), -1,-1): aa := %: leprint(v, `Expansion in base (n/(exp(n) - 1)) of x : `, aa): r2genn(v, exp(1), 1,-1): aa := %: leprint(v, `Expansion in base (n/(exp(n) + 1)) of x : `, aa): r2genn(v, 10, -1,-1): aa := %: leprint(v, `Expansion in base (n/(10^n - 1)) of x : `, aa): r2genn(v, 10, 1,-1): aa := %: leprint(v, `Expansion in base (n/(10^n + 1)) of x : `, aa): ################################################################ r2genn(w, exp(2*Pi), -1,-1): aa := %: leprint(w, `Expansion in base (n/(exp(2*Pi*n) - 1)) of 1/x : `, aa): r2genn(w, exp(2*Pi), 1,-1): aa := %: leprint(w, `Expansion in base (n/(exp(2*Pi*n) + 1)) of 1/x : `, aa): r2genn(w, exp(Pi), -1,-1): aa := %: leprint(w, `Expansion in base (n/(exp(Pi*n) - 1)) of 1/x : `, aa): r2genn(w, exp(Pi), 1,-1): aa := %: leprint(w, `Expansion in base (n/(exp(Pi*n) + 1)) of 1/x : `, aa): r2genn(w, Pi, -1,-1): aa := %: leprint(w, `Expansion in base (n/(Pi^n - 1)) of 1/x : `, aa): r2genn(w, Pi, 1,-1): aa := %: leprint(w, `Expansion in base (n/(Pi^n + 1)) of 1/x : `, aa): r2genn(w, 2, -1,-1): aa := %: leprint(w, `Expansion in base (n/(2^n - 1)) of 1/x : `, aa): r2genn(w, 2, 1,-1): aa := %: leprint(w, `Expansion in base (n/(2^n + 1)) of 1/x : `, aa): r2genn(w, exp(1), -1,-1): aa := %: leprint(w, `Expansion in base (n/(exp(n) - 1)) of 1/x : `, aa): r2genn(w, exp(1), 1,-1): aa := %: leprint(w, `Expansion in base (n/(exp(n) + 1)) of 1/x : `, aa): r2genn(w, 10, -1,-1): aa := %: leprint(w, `Expansion in base (n/(10^n - 1)) of 1/x : `, aa): r2genn(w, 10, 1,-1): aa := %: leprint(w, `Expansion in base (n/(10^n + 1)) of 1/x : `, aa): ##################################################################### r2genn(t, exp(2*Pi), -1,-1): aa := %: leprint(t, `Expansion in base (n/(exp(2*Pi*n) - 1)) of 1-frac(x) : `, aa): r2genn(t, exp(2*Pi), 1,-1): aa := %: leprint(t, `Expansion in base (n/(exp(2*Pi*n) + 1)) of 1-frac(x) : `, aa): r2genn(t, exp(Pi), -1,-1): aa := %: leprint(t, `Expansion in base (n/(exp(Pi*n) - 1)) of 1-frac(x) : `, aa): r2genn(t, exp(Pi), 1,-1): aa := %: leprint(t, `Expansion in base (n/(exp(Pi*n) + 1)) of 1-frac(x) : `, aa): r2genn(t, Pi, -1,-1): aa := %: leprint(t, `Expansion in base (n/(Pi^n - 1)) of 1-frac(x) : `, aa): r2genn(t, Pi, 1,-1): aa := %: leprint(t, `Expansion in base (n/(Pi^n + 1)) of 1-frac(x) : `, aa): r2genn(t, 2, -1,-1): aa := %: leprint(t, `Expansion in base (n/(2^n - 1)) of 1-frac(x) : `, aa): r2genn(t, 2, 1,-1): aa := %: leprint(t, `Expansion in base (n/(2^n + 1)) of 1-frac(x) : `, aa): r2genn(t, exp(1), -1,-1): aa := %: leprint(t, `Expansion in base (n/(exp(n) - 1)) of 1-frac(x) : `, aa): r2genn(t, exp(1), 1,-1): aa := %: leprint(t, `Expansion in base (n/(exp(n) + 1)) of 1-frac(x) : `, aa): r2genn(t, 10, -1,-1): aa := %: leprint(t, `Expansion in base (n/(10^n - 1)) of 1-frac(x) : `, aa): r2genn(t, 10, 1,-1): aa := %: leprint(t, `Expansion in base (n/(10^n + 1)) of 1-frac(x) : `, aa): ##################################################################### r2genn(u, exp(2*Pi), -1,-1): aa := %: leprint(u, `Expansion in base (n/(exp(2*Pi*n) - 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(2*Pi), 1,-1): aa := %: leprint(u, `Expansion in base (n/(exp(2*Pi*n) + 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(Pi), -1,-1): aa := %: leprint(u, `Expansion in base (n/(exp(Pi*n) - 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(Pi), 1,-1): aa := %: leprint(u, `Expansion in base (n/(exp(Pi*n) + 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, Pi, -1,-1): aa := %: leprint(u, `Expansion in base (n/(Pi^n - 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, Pi, 1,-1): aa := %: leprint(u, `Expansion in base (n/(Pi^n + 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, 2, -1,-1): aa := %: leprint(u, `Expansion in base (n/(2^n - 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, 2, 1,-1): aa := %: leprint(u, `Expansion in base (n/(2^n + 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(1), -1,-1): aa := %: leprint(u, `Expansion in base (n/(exp(n) - 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, exp(1), 1,-1): aa := %: leprint(u, `Expansion in base (n/(exp(n) + 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, 10, -1,-1): aa := %: leprint(u, `Expansion in base (n/(10^n - 1)) of 1/(1-frac(x)) : `, aa): r2genn(u, 10, 1,-1): aa := %: leprint(u, `Expansion in base (n/(10^n + 1)) of 1/(1-frac(x)) : `, aa): interface(quiet=false): ########################################################################## end: pilll:=proc(s) local v, i, n, nb, vv, nnoms,K; print(" The number of digits in the variable Digits can be set up to 512 digits, just type Digits:=512:"); interface(quiet=true): nb := 1+trunc(sqrt(1.0*Digits)); n := nops(val); for i to n do v := PSLQ([s, op(1 .. nb, val[i])]); nnoms:=[K,op(noms[i])]: if length(v) < Digits/3 then lprint("result found for",s): lprint(solve(sum(v[j]*nnoms[j], j = 1 .. nops(v)),K)):lprint(" ################### ") else lprint("no result with ",longnames[i]) end if; end do: interface(quiet=false): end: pialg:=proc(s) local v, i, n, nb, vv, j, k, x, vl, lmin, res; vv:=evalf(s); v:=[]: lmin:=4+Digits/2: nb := 2+trunc(sqrt(1.0*Digits)); for j from 2 to nb do res:=PSLQ([seq(vv^i,i=0..j)]): if length(res) < lmin then vl:=res : lmin:=length(res) fi; end do; if lmin < 4+Digits/2 then print(vv, "is the root of:", sum(vl[k]*x^(k-1),k=1..nops(vl))) else print("not a simple algebraic number of degree up to :", nb) end if; end: ##################################################################################### longnames:=["Base constants, Pi, E, gamma, sqrt(2),...", "Values of the Digamma function, Psi(a/b)", "Values of Psi(1,a/b)", "Values of Psi(2,a/b)", "Values of Psi(3,a/b)", "Values of GAMMA(a/b)", "Values of lnGAMMA(a/b)", "Values of cos(Pi*a/b)", "Values of polylog(2,a/b)", "Values of polylog(3,a/b)", "Values of polylog(4,a/b)", "Values of Zeta(n), n>2", "Values of exp(a/b)", "Values of GAMMA(a/b)", "Values of BesselI(0,a/b)", "Values of BesselJ(0,a/b)", "Values of BesselK(0,a/b)", "Values of BesselY(0,a/b)", "Values of BesselI(1,a/b)", "Values of BesselJ(1,a/b)", "Values of BesselK(1,a/b)", "Values of BesselY(1,a/b)", "Values of BesselI(2,a/b)", "Values of BesselJ(2,a/b)", "Values of BesselK(2,a/b)", "Values of BesselY(2,a/b)", "Values of BesselI(3,a/b)", "Values of BesselJ(3,a/b)", "Values of BesselK(3,a/b)", "Values of BesselY(3,a/b)", "Values of FresnelC(a/b)", "Values of FresnelS(a/b)", "Values of Fresnelf(a/b)", "Values of Fresnelg(a/b)", "Values of cosh(a/b)", "Values of sinh(a/b)", "Values of tanh(a/b)", "Values of AiryAi(a/b)", "Values of AiryBi(a/b)", "Values of AiryAi(1,a/b)", "Values of AiryBi(1,a/b)", "Values of AiryAi(2,a/b)", "Values of AiryBi(2,a/b)", "Values of Si(a/b)", "Values of Ci(a/b)", "Values of Ssi(a/b)", "Values of Shi(a/b)", "Values of Chi(a/b)", "Values of exp(Pi*a/b)", "Values of Pi^a/b", "Values of log(log(ithprime(i))),i=1..32)", "Values of log(ithprime(i)),i=1..32)", "Values of arctan(a/b)", "Values of exp(sin(Pi/n)),n=3..32)", "Values of exp(cos(Pi/n)),n=3..32)", "Values of exp(tan(Pi/n)),n=3..32)", "Values of hypergeom([1/2,1/2,1/2],[3/2,3/2],a/b)", "Values of hypergeom([1/2,1/2,1],[3/2,3/2],a/b)", "Values of hypergeom([1,1,1],[2,3/2],a/b)", "Values of hypergeom([1/2,1/6,5/6],[1,1],a/b)", "Values of hypergeom([1/2,1/6,5/6],[3/2,3/2],a/b)", "Values of hypergeom([1,1,1],[2,2],a/b)", "Values of hypergeom([1, 1],[2],a/b)", "Values of hypergeom([1,1,1],[2,1/2],a/b)", "Values of hypergeom([1/2,1/2],[1],a/b)", "Values of hypergeom([1/2,1/2],[3/2],a/b)", "Values of hypergeom([1/4,3/4],[1],a/b)", "Values of hypergeom([1/6,5/6],[2],a/b)", "Values of hypergeom([1,2],[3/2],a/b)", "Values of hypergeom([1,1,2],[1/3,4/3],a/b)", "Values of hypergeom([2,2,3/2],[4/3,5/3],a/b)", "Values of hypergeom([1,1,3/2],[2/3,1/3],a/b)", "Values of hypergeom([1,1,3/2],[4/3,5/3],a/b)", "Values of hypergeom([1,2,3/2],[4/3,5/3],a/b)", "Values of hypergeom([2,2,3/2],[4/3,5/3],a/b)", "Values of hypergeom([1,1/2,1/2,1/2],[3/2,3/2,3/2],a/b)", "Values of hypergeom([1/3,2/3],[2],a/b)", "Values of hypergeom([1,1,1/2],[3/2,3/2],a/b)", "Values of LambertW(a/b)", "First non-trivial Zeroes of Riemann Zeta function", "Values of BesselJZeros(0,n),n=1..32)", "Values of BesselJZeros(1,n),n=1..32)", "Values of BesselJZeros(2,n),n=1..32)", "Values of BesselJZeros(3/2,n),n=1..32)", "Values of BesselJZeros(5/2,n),n=1..32)", "Values of AiryAiZeros(n),n=1..32)", "Values of Int(Gamma(x))", "Values of Zeta(1,a/b)", "Values of Zeta(2,a/b)", "Values of Zeta(3,a/b)", "Values of Ei(a/b)", "Values of GAMMA(1,a/b)", "Values of GAMMA(2,a/b)", "Values of GAMMA(3,a/b)", "Values of gamma, Pi*sqrt(n), etc", "Values of diff(GAMMA(x))", "Values of the derivative of Gamma(x)", "Values of Ei(1,a/b)", "Values of Ei(2,a/b)", "Values of Ei(3,a/b)", "Values of Pi, exp, Ei and LambertW function", "Values of the fractional Zeta function and derivative", "Values of KelvinBer(0,a/b)", "Values of KelvinBer(1,a/b)", "Values of KelvinBer(2,a/b)", "Values of KelvinKer(0,a/b)", "Values of KelvinKer(1,a/b)", "Values of KelvinKer(2,a/b)", "Values of KelvinHer(0,a/b)", "Values of KelvinHer(1,a/b)", "Values of KelvinHer(2,a/b)", "Values of KelvinBei(0,a/b)", "Values of KelvinBei(1,a/b)", "Values of KelvinBei(2,a/b)", "Values of KelvinKei(0,a/b)", "Values of KelvinKei(1,a/b)", "Values of KelvinKei(2,a/b)", "Values of KelvinHei(0,a/b)", "Values of KelvinHei(1,a/b)", "Values of KelvinHei(2,a/b)", "BesselYZeros(0,n),n=1..32)", "BesselYZeros(1,n),n=1..32)", "BesselYZeros(2,n),n=1..32)", "BesselYZeros(3/2,n),n=1..32)", "BesselYZeros(5/2,n),n=1..32)", "Values of gamma(n),n=0..32)", "Values of Pi*cos(Pi*a/b)"]: #################################################################################### ################################################################################### pismart:=proc(s) local i, j, k, nn, a, dd, i1, i2, i3, i4, i5, i6, i7, K, list01, list02, list03, list04, list05; interface(quiet=true); #global Digits; # Digits := 24; dd:=[1/2, 1/3, 2/3, 1/4, 3/4, 1/5, 2/5, 3/5, 4/5, 1/6, 5/6, 1/7, 2/7, 3/7, 4/7, 5/7 , 6/7, 1/8, 3/8, 5/8, 7/8, 1/9, 2/9, 4/9, 5/9, 7/9, 8/9, 1/10, 3/10, 7/10, 9/10 , 1/11, 2/11, 3/11, 4/11, 5/11, 6/11, 7/11, 8/11, 9/11, 10/11, 1/12, 5/12, 7/12 , 11/12, 4/27,1/25,1/15,2/15,4/15,7/15,11/15,13/15,1/16,3/16,5/16,7/16,9/16,11/16,13/16,15/16, 1/18,5/18,7/18,11/18,13/18,17/18,1/24,5/24,7/24,11/24,13/24,17/24,19/24,23/24, 1/25,4/27]: nn := nops(dd); a := evalf(abs(s)); list01 := [seq(cat(`K*`, convert(dd[i1], string)), i1 = 1 .. nn)]; list02 := [op(list01), seq(cat(`K+`, convert(dd[i2], string)), i2 = 1 .. nn)] ; list03 := [op(list02), seq(cat(`K-`, convert(dd[i3], string)), i3 = 1 .. nn)] ; list04 := [seq(evalf(abs(a*dd[i])), i = 1 .. nn), seq(evalf(a + dd[j]), j = 1 .. nn), seq(evalf(abs(a - dd[k])), k = 1 .. nn)]; list05 := [evalf(2*a), 2*K, evalf(3*a), 3*K, evalf(7*a), 7*K, evalf(abs(log(a))), log(K), evalf(abs(log(1 + a))), log(1 + K), evalf(exp(a - 1)), exp(K - 1), evalf(exp(1 - a)), exp(1 - K), evalf(exp(a)), exp(K), evalf(abs(cos(a))), cos(K), evalf(abs(sin(a))), sin(K), evalf(abs(sin(Pi*a))), sin(Pi*K), evalf(abs(cos(Pi*a))), cos(Pi*K), evalf(exp(-a)), exp(-K), evalf(a^(1/2)), K^(1/2), evalf(a^(1/3)), K^(1/3), evalf(a^(3/2)), K^(3/2), evalf(a^(2/3)), K^(2/3), evalf(1/a^(1/2)), 1/K^(1/2), evalf(1/a^(1/3)), 1/K^(1/3), evalf(1/a^(3/2)), 1/K^(3/2), evalf(1/a^(2/3)), 1/K^(2/3), evalf(abs(1/(1 - a))), 1/(1 - K), evalf(abs(1/(1 + a))), 1/(1 + K), evalf((1 + a)^2), (1 + K)^2, evalf(abs((a - 1)/(1 + a))), (K - 1)/(1 + K), evalf(abs((1 + a)/(a - 1))), (1 + K)/(K - 1), evalf(trunc(a) + 1 - a), trunc(K) + 1 - K, evalf(1/a), 1/K, evalf(a^2), K^2, evalf(1/a^2), 1/K^2, evalf(a^3), K^3, evalf(abs(1 - a)), abs(1 - K), evalf(abs(a - 2)), K - 2, evalf(abs(a - 3)), K - 3, evalf(1 + a), 1 + K, evalf(a + 2), K + 2, evalf(abs(1 - 1/a)), 1 - 1/K, evalf(a/Pi), K/Pi, evalf(abs(arctan(a))), arctan(K), abs(tan(a)), tan(K), evalf(abs(GAMMA(a))), GAMMA(K), evalf(abs(Psi(a))), Psi(K), evalf(Pi*a), Pi*K]; for i6 to nops(list03) do pilook(list04[i6], list03[i6]) od; for i7 to 1/2*nops(list05) do pilook(list05[2*i7 - 1], list05[2*i7]) od: interface(quiet=false); end: ####################################################################### EISlook:=proc(s) local a0, a1, v, w, suff, req, suite1, suite2, long, nn,i,retour,seqn,seqnn; #system(`echo seqn:=[ > eislook`); # if nargs = 1 then #a0 := "lynx -dump -width=256 \"http://www.research.att.com/~njas/sequences/?q="; # w := args[1]; # suff := "&p=1&n=10&fmt=2\" | grep %N | head -1"; # req := cat(a0, convert(w, string), suff) # else #w := [seq(args[i],i=1..nargs)]; #a0 := "lynx -dump -width=256 \"http://www.research.att.com/~njas/sequences/?q="; # suff := "&p=1&n=10&fmt=2\" | grep %N | head -1"; w := seq(args[i],i=1..nargs); nn:=nops(w); suite1 := cat(seq(cat(convert(w[i], string), `,`),i=1..nn-1),convert(w[nn],string)); long:=length(suite1): suite2 := substring(suite1,3..100): a0 := `grep `; suff := ` table34d | gawk '{print $2}' `; req := cat(a0, suite2, suff); # fi; system(req); end: alias(pslq=PSLQ): piall:=proc(s); pismart(s); pidev(s); Digits:=110:pilll(s); Digits:=length(evalf(s)-5):pialg(s); end: noms:=[[Pi, exp(1), gamma, 1/Pi, 1/gamma, 1, 1/2+1/2*5^(1/2), 2^(1/2), 3^(1/2), 1/Ei( 1), Ei(1), LambertW(1), 1/Catalan, Catalan, Zeta(3), 1/6*Pi^2, 1/90*Pi^4, Zeta( 5), ln(2), ln(3), exp(-1), ln(5), 1/ln(5), 1/arctan(1/2), arctan(1/2), 1/ln(2), Pi^(1/2), 2/3*Pi*3^(1/2)/GAMMA(2/3), Pi*2^(1/2)/GAMMA(3/4), ln(Pi), exp(Pi), sin(1), cos(1)], [Psi(1/2),-gamma-1/6*Pi*3^(1/2)-3/2*ln(3), -gamma-3*ln(2)-1/2*Pi, Psi(1 /5), Psi(2/5), -gamma-2*ln(2)-3/2*ln(3)-1/2*Pi*3^(1/2), Psi(1/7), Psi(2/7), Psi (3/7), Psi(1/8), Psi(3/8), Psi(1/9), Psi(2/9), Psi(4/9), Psi(1/10), Psi(3/10), Psi(1/11), Psi(2/11), Psi(3/11), Psi(4/11), Psi(5/11), Psi(1/12), Psi(5/12)], [ 1/2*Pi^2, Psi(1,1/3), 8*Catalan+Pi^2, Psi(1,1/5), Psi(1,2/5), Psi(1,3/5), Psi(1 ,1/7), Psi(1,2/7), Psi(1,3/7), Psi(1,4/7), Psi(1,5/7), Psi(1,1/8), Psi(1,3/8), Psi(1,1/9), Psi(1,2/9), Psi(1,4/9), Psi(1,5/9), Psi(1,1/11), Psi(1,2/11), Psi(1 ,3/11), Psi(1,4/11), Psi(1,5/11), Psi(1,6/11), Psi(1,7/11), Psi(1,8/11), Psi(1, 9/11), Psi(1,1/12)], [-14*Zeta(3), Psi(2,1/3), Psi(2,1/4), Psi(2,1/5), Psi(2,2/ 5), Psi(2,3/5), Psi(2,1/7), Psi(2,2/7), Psi(2,3/7), Psi(2,4/7), Psi(2,5/7), Psi (2,1/8), Psi(2,3/8), Psi(2,1/9), Psi(2,2/9), Psi(2,4/9), Psi(2,5/9), Psi(2,1/11 ), Psi(2,2/11), Psi(2,3/11), Psi(2,4/11), Psi(2,5/11), Psi(2,6/11), Psi(2,7/11) , Psi(2,8/11), Psi(2,9/11), Psi(2,1/12)], [Pi^4, Psi(3,1/3), Psi(3,1/4), Psi(3, 1/5), Psi(3,2/5), Psi(3,3/5), Psi(3,1/7), Psi(3,2/7), Psi(3,3/7), Psi(3,4/7), Psi(3,5/7), Psi(3,1/8), Psi(3,3/8), Psi(3,1/9), Psi(3,2/9), Psi(3,4/9), Psi(3,5 /9), Psi(3,1/11), Psi(3,2/11), Psi(3,3/11), Psi(3,4/11), Psi(3,5/11), Psi(3,6/ 11), Psi(3,7/11), Psi(3,8/11), Psi(3,9/11), Psi(3,1/12)], [Pi^(1/2), 2/3*Pi*3^( 1/2)/GAMMA(2/3), GAMMA(2/3), Pi*2^(1/2)/GAMMA(3/4), GAMMA(3/4), Pi*csc(1/5*Pi)/ GAMMA(4/5), Pi*csc(2/5*Pi)/GAMMA(3/5), GAMMA(3/5), GAMMA(4/5), 2*Pi/GAMMA(5/6), GAMMA(5/6), GAMMA(1/7), GAMMA(2/7), GAMMA(3/7), GAMMA(4/7), GAMMA(5/7), GAMMA(6 /7), Pi*csc(1/8*Pi)/GAMMA(7/8), Pi*csc(3/8*Pi)/GAMMA(5/8), GAMMA(5/8), GAMMA(7/ 8), GAMMA(1/9), GAMMA(2/9), GAMMA(4/9), GAMMA(5/9), GAMMA(7/9), GAMMA(8/9), Pi* csc(1/10*Pi)/GAMMA(9/10), Pi*csc(3/10*Pi)/GAMMA(7/10), GAMMA(7/10), GAMMA(9/10) , GAMMA(1/11), GAMMA(2/11), GAMMA(3/11), GAMMA(4/11), GAMMA(5/11), GAMMA(6/11), GAMMA(7/11), GAMMA(8/11), GAMMA(9/11), GAMMA(10/11), Pi*csc(1/12*Pi)/GAMMA(11/ 12), Pi*csc(5/12*Pi)/GAMMA(7/12), GAMMA(7/12), GAMMA(11/12)], [lnGAMMA(1/2), lnGAMMA(1/3), lnGAMMA(1/4), lnGAMMA(1/5), lnGAMMA(2/5), lnGAMMA(1/6), lnGAMMA(1 /7), lnGAMMA(2/7), lnGAMMA(3/7), lnGAMMA(1/8), lnGAMMA(3/8), lnGAMMA(1/9), lnGAMMA(2/9), lnGAMMA(4/9), lnGAMMA(1/10), lnGAMMA(3/10), lnGAMMA(1/11), lnGAMMA(2/11), lnGAMMA(3/11), lnGAMMA(4/11), lnGAMMA(5/11), lnGAMMA(1/12), lnGAMMA(5/12)], [2^(1/2), 1, cos(1/5*Pi), 1/2*3^(1/2), cos(1/7*Pi), cos(2/7*Pi) , cos(1/8*Pi), cos(3/8*Pi), cos(1/9*Pi), cos(2/9*Pi), cos(1/10*Pi), cos(3/10*Pi ), cos(1/11*Pi), cos(2/11*Pi), cos(3/11*Pi), cos(4/11*Pi), cos(1/12*Pi)], [1/12 *Pi^2-1/2*ln(2)^2, polylog(2,1/3), polylog(2,1/4), polylog(2,1/5), polylog(2,2/ 5), polylog(2,1/6), polylog(2,1/7), polylog(2,2/7), polylog(2,3/7), polylog(2,1 /8), polylog(2,3/8), polylog(2,1/9), polylog(2,2/9), polylog(2,4/9), polylog(2, 1/10), polylog(2,3/10), polylog(2,1/11), polylog(2,2/11), polylog(2,3/11), polylog(2,4/11), polylog(2,5/11), polylog(2,1/12)], [7/8*Zeta(3)-1/12*Pi^2*ln(2 )+1/6*ln(2)^3, polylog(3,1/3), polylog(3,2/3), polylog(3,1/4), polylog(3,3/4), polylog(3,1/5), polylog(3,2/5), polylog(3,3/5), polylog(3,4/5), polylog(3,1/6), polylog(3,5/6), polylog(3,1/7), polylog(3,2/7), polylog(3,3/7), polylog(3,4/7), polylog(3,5/7), polylog(3,6/7), polylog(3,1/8), polylog(3,3/8), polylog(3,5/8), polylog(3,7/8), polylog(3,1/9), polylog(3,2/9), polylog(3,4/9), polylog(3,5/9), polylog(3,7/9), polylog(3,8/9), polylog(3,1/10), polylog(3,3/10), polylog(3,7/ 10), polylog(3,9/10), polylog(3,1/11), polylog(3,2/11), polylog(3,3/11), polylog(3,4/11), polylog(3,5/11), polylog(3,6/11), polylog(3,7/11), polylog(3,8 /11), polylog(3,9/11), polylog(3,10/11), polylog(3,1/12), polylog(3,5/12), polylog(3,7/12), polylog(3,11/12)], [polylog(4,1/2), polylog(4,1/3), polylog(4, 2/3), polylog(4,1/4), polylog(4,3/4), polylog(4,1/5), polylog(4,2/5), polylog(4 ,3/5), polylog(4,4/5), polylog(4,1/6), polylog(4,5/6), polylog(4,1/7), polylog( 4,2/7), polylog(4,3/7), polylog(4,4/7), polylog(4,5/7), polylog(4,6/7), polylog (4,1/8), polylog(4,3/8), polylog(4,5/8), polylog(4,7/8), polylog(4,1/9), polylog(4,2/9), polylog(4,4/9), polylog(4,5/9), polylog(4,7/9), polylog(4,8/9), polylog(4,1/10), polylog(4,3/10), polylog(4,7/10), polylog(4,9/10), polylog(4,1 /11), polylog(4,2/11), polylog(4,3/11), polylog(4,4/11), polylog(4,5/11), polylog(4,6/11), polylog(4,7/11), polylog(4,8/11), polylog(4,9/11), polylog(4, 10/11), polylog(4,1/12), polylog(4,5/12), polylog(4,7/12), polylog(4,11/12)], [ 1/6*Pi^2, Zeta(3), 1/90*Pi^4, Zeta(5), 1/945*Pi^6, Zeta(7), 1/9450*Pi^8, Zeta(9 ), 1/93555*Pi^10, Zeta(11), 691/638512875*Pi^12, Zeta(13), 2/18243225*Pi^14, Zeta(15), 3617/325641566250*Pi^16, Zeta(17), 43867/38979295480125*Pi^18, Zeta( 19), 174611/1531329465290625*Pi^20, Zeta(21), 155366/13447856940643125*Pi^22, Zeta(23), 236364091/201919571963756521875*Pi^24, Zeta(25), 1315862/ 11094481976030578125*Pi^26, Zeta(27), 6785560294/564653660170076273671875*Pi^28 , Zeta(29), 6892673020804/5660878804669082674070015625*Pi^30, Zeta(31), 7709321041217/62490220571022341207266406250*Pi^32], [exp(11/12), exp(7/12), exp (5/12), exp(1/12), exp(9/10), exp(7/10), exp(3/10), exp(1/10), exp(8/9), exp(7/ 9), exp(5/9), exp(4/9), exp(2/9), exp(1/9), exp(7/8), exp(5/8), exp(3/8), exp(1 /8), exp(5/6), exp(1/6), exp(4/5), exp(3/5), exp(2/5), exp(1/5), exp(3/4), exp( 1/4), exp(2/3), exp(1/3), exp(1/2), exp(1), exp(2), exp(3/2), exp(5/2)], [GAMMA (11/12), GAMMA(7/12), Pi*csc(5/12*Pi)/GAMMA(7/12), Pi*csc(1/12*Pi)/GAMMA(11/12) , GAMMA(9/10), GAMMA(7/10), Pi*csc(3/10*Pi)/GAMMA(7/10), Pi*csc(1/10*Pi)/GAMMA( 9/10), GAMMA(8/9), GAMMA(7/9), GAMMA(5/9), GAMMA(4/9), GAMMA(2/9), GAMMA(1/9), GAMMA(7/8), GAMMA(5/8), Pi*csc(3/8*Pi)/GAMMA(5/8), Pi*csc(1/8*Pi)/GAMMA(7/8), GAMMA(5/6), 2*Pi/GAMMA(5/6), GAMMA(4/5), GAMMA(3/5), Pi*csc(2/5*Pi)/GAMMA(3/5), Pi*csc(1/5*Pi)/GAMMA(4/5), GAMMA(3/4), Pi*2^(1/2)/GAMMA(3/4), GAMMA(2/3), 2/3* Pi*3^(1/2)/GAMMA(2/3), Pi^(1/2)], [BesselI(0,11/12), BesselI(0,7/12), BesselI(0 ,5/12), BesselI(0,1/12), BesselI(0,9/10), BesselI(0,7/10), BesselI(0,3/10), BesselI(0,1/10), BesselI(0,8/9), BesselI(0,7/9), BesselI(0,5/9), BesselI(0,4/9) , BesselI(0,2/9), BesselI(0,1/9), BesselI(0,7/8), BesselI(0,5/8), BesselI(0,3/8 ), BesselI(0,1/8), BesselI(0,5/6), BesselI(0,1/6), BesselI(0,4/5), BesselI(0,3/ 5), BesselI(0,2/5), BesselI(0,1/5), BesselI(0,3/4), BesselI(0,1/4), BesselI(0,2 /3), BesselI(0,1/3), BesselI(0,1/2), BesselI(0,1), BesselI(0,2), BesselI(0,3/2) , BesselI(0,5/2)], [BesselJ(0,11/12), BesselJ(0,7/12), BesselJ(0,5/12), BesselJ (0,1/12), BesselJ(0,9/10), BesselJ(0,7/10), BesselJ(0,3/10), BesselJ(0,1/10), BesselJ(0,8/9), BesselJ(0,7/9), BesselJ(0,5/9), BesselJ(0,4/9), BesselJ(0,2/9), BesselJ(0,1/9), BesselJ(0,7/8), BesselJ(0,5/8), BesselJ(0,3/8), BesselJ(0,1/8), BesselJ(0,5/6), BesselJ(0,1/6), BesselJ(0,4/5), BesselJ(0,3/5), BesselJ(0,2/5), BesselJ(0,1/5), BesselJ(0,3/4), BesselJ(0,1/4), BesselJ(0,2/3), BesselJ(0,1/3), BesselJ(0,1/2), BesselJ(0,1), BesselJ(0,2), BesselJ(0,3/2), BesselJ(0,5/2)], [ BesselK(0,11/12), BesselK(0,7/12), BesselK(0,5/12), BesselK(0,1/12), BesselK(0, 9/10), BesselK(0,7/10), BesselK(0,3/10), BesselK(0,1/10), BesselK(0,8/9), BesselK(0,7/9), BesselK(0,5/9), BesselK(0,4/9), BesselK(0,2/9), BesselK(0,1/9), BesselK(0,7/8), BesselK(0,5/8), BesselK(0,3/8), BesselK(0,1/8), BesselK(0,5/6), BesselK(0,1/6), BesselK(0,4/5), BesselK(0,3/5), BesselK(0,2/5), BesselK(0,1/5), BesselK(0,3/4), BesselK(0,1/4), BesselK(0,2/3), BesselK(0,1/3), BesselK(0,1/2), BesselK(0,1), BesselK(0,2), BesselK(0,3/2), BesselK(0,5/2)], [BesselY(0,11/12), BesselY(0,7/12), BesselY(0,5/12), BesselY(0,1/12), BesselY(0,9/10), BesselY(0,7 /10), BesselY(0,3/10), BesselY(0,1/10), BesselY(0,8/9), BesselY(0,7/9), BesselY (0,5/9), BesselY(0,4/9), BesselY(0,2/9), BesselY(0,1/9), BesselY(0,7/8), BesselY(0,5/8), BesselY(0,3/8), BesselY(0,1/8), BesselY(0,5/6), BesselY(0,1/6), BesselY(0,4/5), BesselY(0,3/5), BesselY(0,2/5), BesselY(0,1/5), BesselY(0,3/4), BesselY(0,1/4), BesselY(0,2/3), BesselY(0,1/3), BesselY(0,1/2), BesselY(0,1), BesselY(0,2), BesselY(0,3/2), BesselY(0,5/2)], [BesselI(1,11/12), BesselI(1,7/ 12), BesselI(1,5/12), BesselI(1,1/12), BesselI(1,9/10), BesselI(1,7/10), BesselI(1,3/10), BesselI(1,1/10), BesselI(1,8/9), BesselI(1,7/9), BesselI(1,5/9 ), BesselI(1,4/9), BesselI(1,2/9), BesselI(1,1/9), BesselI(1,7/8), BesselI(1,5/ 8), BesselI(1,3/8), BesselI(1,1/8), BesselI(1,5/6), BesselI(1,1/6), BesselI(1,4 /5), BesselI(1,3/5), BesselI(1,2/5), BesselI(1,1/5), BesselI(1,3/4), BesselI(1, 1/4), BesselI(1,2/3), BesselI(1,1/3), BesselI(1,1/2), BesselI(1,1), BesselI(1,2 ), BesselI(1,3/2), BesselI(1,5/2)], [BesselJ(1,11/12), BesselJ(1,7/12), BesselJ (1,5/12), BesselJ(1,1/12), BesselJ(1,9/10), BesselJ(1,7/10), BesselJ(1,3/10), BesselJ(1,1/10), BesselJ(1,8/9), BesselJ(1,7/9), BesselJ(1,5/9), BesselJ(1,4/9) , BesselJ(1,2/9), BesselJ(1,1/9), BesselJ(1,7/8), BesselJ(1,5/8), BesselJ(1,3/8 ), BesselJ(1,1/8), BesselJ(1,5/6), BesselJ(1,1/6), BesselJ(1,4/5), BesselJ(1,3/ 5), BesselJ(1,2/5), BesselJ(1,1/5), BesselJ(1,3/4), BesselJ(1,1/4), BesselJ(1,2 /3), BesselJ(1,1/3), BesselJ(1,1/2), BesselJ(1,1), BesselJ(1,2), BesselJ(1,3/2) , BesselJ(1,5/2)], [BesselK(1,11/12), BesselK(1,7/12), BesselK(1,5/12), BesselK (1,1/12), BesselK(1,9/10), BesselK(1,7/10), BesselK(1,3/10), BesselK(1,1/10), BesselK(1,8/9), BesselK(1,7/9), BesselK(1,5/9), BesselK(1,4/9), BesselK(1,2/9), BesselK(1,1/9), BesselK(1,7/8), BesselK(1,5/8), BesselK(1,3/8), BesselK(1,1/8), BesselK(1,5/6), BesselK(1,1/6), BesselK(1,4/5), BesselK(1,3/5), BesselK(1,2/5), BesselK(1,1/5), BesselK(1,3/4), BesselK(1,1/4), BesselK(1,2/3), BesselK(1,1/3), BesselK(1,1/2), BesselK(1,1), BesselK(1,2), BesselK(1,3/2), BesselK(1,5/2)], [ BesselY(1,11/12), BesselY(1,7/12), BesselY(1,5/12), BesselY(1,1/12), BesselY(1, 9/10), BesselY(1,7/10), BesselY(1,3/10), BesselY(1,1/10), BesselY(1,8/9), BesselY(1,7/9), BesselY(1,5/9), BesselY(1,4/9), BesselY(1,2/9), BesselY(1,1/9), BesselY(1,7/8), BesselY(1,5/8), BesselY(1,3/8), BesselY(1,1/8), BesselY(1,5/6), BesselY(1,1/6), BesselY(1,4/5), BesselY(1,3/5), BesselY(1,2/5), BesselY(1,1/5), BesselY(1,3/4), BesselY(1,1/4), BesselY(1,2/3), BesselY(1,1/3), BesselY(1,1/2), BesselY(1,1), BesselY(1,2), BesselY(1,3/2), BesselY(1,5/2)], [BesselI(2,11/12), BesselI(2,7/12), BesselI(2,5/12), BesselI(2,1/12), BesselI(2,9/10), BesselI(2,7 /10), BesselI(2,3/10), BesselI(2,1/10), BesselI(2,8/9), BesselI(2,7/9), BesselI (2,5/9), BesselI(2,4/9), BesselI(2,2/9), BesselI(2,1/9), BesselI(2,7/8), BesselI(2,5/8), BesselI(2,3/8), BesselI(2,1/8), BesselI(2,5/6), BesselI(2,1/6), BesselI(2,4/5), BesselI(2,3/5), BesselI(2,2/5), BesselI(2,1/5), BesselI(2,3/4), BesselI(2,1/4), BesselI(2,2/3), BesselI(2,1/3), BesselI(2,1/2), BesselI(2,1), BesselI(2,2), BesselI(2,3/2), BesselI(2,5/2)], [BesselJ(2,11/12), BesselJ(2,7/ 12), BesselJ(2,5/12), BesselJ(2,1/12), BesselJ(2,9/10), BesselJ(2,7/10), BesselJ(2,3/10), BesselJ(2,1/10), BesselJ(2,8/9), BesselJ(2,7/9), BesselJ(2,5/9 ), BesselJ(2,4/9), BesselJ(2,2/9), BesselJ(2,1/9), BesselJ(2,7/8), BesselJ(2,5/ 8), BesselJ(2,3/8), BesselJ(2,1/8), BesselJ(2,5/6), BesselJ(2,1/6), BesselJ(2,4 /5), BesselJ(2,3/5), BesselJ(2,2/5), BesselJ(2,1/5), BesselJ(2,3/4), BesselJ(2, 1/4), BesselJ(2,2/3), BesselJ(2,1/3), BesselJ(2,1/2), BesselJ(2,1), BesselJ(2,2 ), BesselJ(2,3/2), BesselJ(2,5/2)], [BesselK(2,11/12), BesselK(2,7/12), BesselK (2,5/12), BesselK(2,1/12), BesselK(2,9/10), BesselK(2,7/10), BesselK(2,3/10), BesselK(2,1/10), BesselK(2,8/9), BesselK(2,7/9), BesselK(2,5/9), BesselK(2,4/9) , BesselK(2,2/9), BesselK(2,1/9), BesselK(2,7/8), BesselK(2,5/8), BesselK(2,3/8 ), BesselK(2,1/8), BesselK(2,5/6), BesselK(2,1/6), BesselK(2,4/5), BesselK(2,3/ 5), BesselK(2,2/5), BesselK(2,1/5), BesselK(2,3/4), BesselK(2,1/4), BesselK(2,2 /3), BesselK(2,1/3), BesselK(2,1/2), BesselK(2,1), BesselK(2,2), BesselK(2,3/2) , BesselK(2,5/2)], [BesselY(2,11/12), BesselY(2,7/12), BesselY(2,5/12), BesselY (2,1/12), BesselY(2,9/10), BesselY(2,7/10), BesselY(2,3/10), BesselY(2,1/10), BesselY(2,8/9), BesselY(2,7/9), BesselY(2,5/9), BesselY(2,4/9), BesselY(2,2/9), BesselY(2,1/9), BesselY(2,7/8), BesselY(2,5/8), BesselY(2,3/8), BesselY(2,1/8), BesselY(2,5/6), BesselY(2,1/6), BesselY(2,4/5), BesselY(2,3/5), BesselY(2,2/5), BesselY(2,1/5), BesselY(2,3/4), BesselY(2,1/4), BesselY(2,2/3), BesselY(2,1/3), BesselY(2,1/2), BesselY(2,1), BesselY(2,2), BesselY(2,3/2), BesselY(2,5/2)], [ BesselI(3,11/12), BesselI(3,7/12), BesselI(3,5/12), BesselI(3,1/12), BesselI(3, 9/10), BesselI(3,7/10), BesselI(3,3/10), BesselI(3,1/10), BesselI(3,8/9), BesselI(3,7/9), BesselI(3,5/9), BesselI(3,4/9), BesselI(3,2/9), BesselI(3,1/9), BesselI(3,7/8), BesselI(3,5/8), BesselI(3,3/8), BesselI(3,1/8), BesselI(3,5/6), BesselI(3,1/6), BesselI(3,4/5), BesselI(3,3/5), BesselI(3,2/5), BesselI(3,1/5), BesselI(3,3/4), BesselI(3,1/4), BesselI(3,2/3), BesselI(3,1/3), BesselI(3,1/2), BesselI(3,1), BesselI(3,2), BesselI(3,3/2), BesselI(3,5/2)], [BesselJ(3,11/12), BesselJ(3,7/12), BesselJ(3,5/12), BesselJ(3,1/12), BesselJ(3,9/10), BesselJ(3,7 /10), BesselJ(3,3/10), BesselJ(3,1/10), BesselJ(3,8/9), BesselJ(3,7/9), BesselJ (3,5/9), BesselJ(3,4/9), BesselJ(3,2/9), BesselJ(3,1/9), BesselJ(3,7/8), BesselJ(3,5/8), BesselJ(3,3/8), BesselJ(3,1/8), BesselJ(3,5/6), BesselJ(3,1/6), BesselJ(3,4/5), BesselJ(3,3/5), BesselJ(3,2/5), BesselJ(3,1/5), BesselJ(3,3/4), BesselJ(3,1/4), BesselJ(3,2/3), BesselJ(3,1/3), BesselJ(3,1/2), BesselJ(3,1), BesselJ(3,2), BesselJ(3,3/2), BesselJ(3,5/2)], [BesselK(3,11/12), BesselK(3,7/ 12), BesselK(3,5/12), BesselK(3,1/12), BesselK(3,9/10), BesselK(3,7/10), BesselK(3,3/10), BesselK(3,1/10), BesselK(3,8/9), BesselK(3,7/9), BesselK(3,5/9 ), BesselK(3,4/9), BesselK(3,2/9), BesselK(3,1/9), BesselK(3,7/8), BesselK(3,5/ 8), BesselK(3,3/8), BesselK(3,1/8), BesselK(3,5/6), BesselK(3,1/6), BesselK(3,4 /5), BesselK(3,3/5), BesselK(3,2/5), BesselK(3,1/5), BesselK(3,3/4), BesselK(3, 1/4), BesselK(3,2/3), BesselK(3,1/3), BesselK(3,1/2), BesselK(3,1), BesselK(3,2 ), BesselK(3,3/2), BesselK(3,5/2)], [BesselY(3,11/12), BesselY(3,7/12), BesselY (3,5/12), BesselY(3,1/12), BesselY(3,9/10), BesselY(3,7/10), BesselY(3,3/10), BesselY(3,1/10), BesselY(3,8/9), BesselY(3,7/9), BesselY(3,5/9), BesselY(3,4/9) , BesselY(3,2/9), BesselY(3,1/9), BesselY(3,7/8), BesselY(3,5/8), BesselY(3,3/8 ), BesselY(3,1/8), BesselY(3,5/6), BesselY(3,1/6), BesselY(3,4/5), BesselY(3,3/ 5), BesselY(3,2/5), BesselY(3,1/5), BesselY(3,3/4), BesselY(3,1/4), BesselY(3,2 /3), BesselY(3,1/3), BesselY(3,1/2), BesselY(3,1), BesselY(3,2), BesselY(3,3/2) , BesselY(3,5/2)], [FresnelC(11/12), FresnelC(7/12), FresnelC(5/12), FresnelC(1 /12), FresnelC(9/10), FresnelC(7/10), FresnelC(3/10), FresnelC(1/10), FresnelC( 8/9), FresnelC(7/9), FresnelC(5/9), FresnelC(4/9), FresnelC(2/9), FresnelC(1/9) , FresnelC(7/8), FresnelC(5/8), FresnelC(3/8), FresnelC(1/8), FresnelC(5/6), FresnelC(1/6), FresnelC(4/5), FresnelC(3/5), FresnelC(2/5), FresnelC(1/5), FresnelC(3/4), FresnelC(1/4), FresnelC(2/3), FresnelC(1/3), FresnelC(1/2), FresnelC(1), FresnelC(2), FresnelC(3/2), FresnelC(5/2)], [FresnelS(11/12), FresnelS(7/12), FresnelS(5/12), FresnelS(1/12), FresnelS(9/10), FresnelS(7/10), FresnelS(3/10), FresnelS(1/10), FresnelS(8/9), FresnelS(7/9), FresnelS(5/9), FresnelS(4/9), FresnelS(2/9), FresnelS(1/9), FresnelS(7/8), FresnelS(5/8), FresnelS(3/8), FresnelS(1/8), FresnelS(5/6), FresnelS(1/6), FresnelS(4/5), FresnelS(3/5), FresnelS(2/5), FresnelS(1/5), FresnelS(3/4), FresnelS(1/4), FresnelS(2/3), FresnelS(1/3), FresnelS(1/2), FresnelS(1), FresnelS(2), FresnelS (3/2), FresnelS(5/2)], [Fresnelf(11/12), Fresnelf(7/12), Fresnelf(5/12), Fresnelf(1/12), Fresnelf(9/10), Fresnelf(7/10), Fresnelf(3/10), Fresnelf(1/10), Fresnelf(8/9), Fresnelf(7/9), Fresnelf(5/9), Fresnelf(4/9), Fresnelf(2/9), Fresnelf(1/9), Fresnelf(7/8), Fresnelf(5/8), Fresnelf(3/8), Fresnelf(1/8), Fresnelf(5/6), Fresnelf(1/6), Fresnelf(4/5), Fresnelf(3/5), Fresnelf(2/5), Fresnelf(1/5), Fresnelf(3/4), Fresnelf(1/4), Fresnelf(2/3), Fresnelf(1/3), Fresnelf(1/2), Fresnelf(1), Fresnelf(2), Fresnelf(3/2), Fresnelf(5/2)], [ Fresnelg(11/12), Fresnelg(7/12), Fresnelg(5/12), Fresnelg(1/12), Fresnelg(9/10) , Fresnelg(7/10), Fresnelg(3/10), Fresnelg(1/10), Fresnelg(8/9), Fresnelg(7/9), Fresnelg(5/9), Fresnelg(4/9), Fresnelg(2/9), Fresnelg(1/9), Fresnelg(7/8), Fresnelg(5/8), Fresnelg(3/8), Fresnelg(1/8), Fresnelg(5/6), Fresnelg(1/6), Fresnelg(4/5), Fresnelg(3/5), Fresnelg(2/5), Fresnelg(1/5), Fresnelg(3/4), Fresnelg(1/4), Fresnelg(2/3), Fresnelg(1/3), Fresnelg(1/2), Fresnelg(1), Fresnelg(2), Fresnelg(3/2), Fresnelg(5/2)], [cosh(11/12), cosh(7/12), cosh(5/12 ), cosh(1/12), cosh(9/10), cosh(7/10), cosh(3/10), cosh(1/10), cosh(8/9), cosh( 7/9), cosh(5/9), cosh(4/9), cosh(2/9), cosh(1/9), cosh(7/8), cosh(5/8), cosh(3/ 8), cosh(1/8), cosh(5/6), cosh(1/6), cosh(4/5), cosh(3/5), cosh(2/5), cosh(1/5) , cosh(3/4), cosh(1/4), cosh(2/3), cosh(1/3), cosh(1/2), cosh(1), cosh(2), cosh (3/2), cosh(5/2)], [sinh(11/12), sinh(7/12), sinh(5/12), sinh(1/12), sinh(9/10) , sinh(7/10), sinh(3/10), sinh(1/10), sinh(8/9), sinh(7/9), sinh(5/9), sinh(4/9 ), sinh(2/9), sinh(1/9), sinh(7/8), sinh(5/8), sinh(3/8), sinh(1/8), sinh(5/6), sinh(1/6), sinh(4/5), sinh(3/5), sinh(2/5), sinh(1/5), sinh(3/4), sinh(1/4), sinh(2/3), sinh(1/3), sinh(1/2), sinh(1), sinh(2), sinh(3/2), sinh(5/2)], [tanh (11/12), tanh(7/12), tanh(5/12), tanh(1/12), tanh(9/10), tanh(7/10), tanh(3/10) , tanh(1/10), tanh(8/9), tanh(7/9), tanh(5/9), tanh(4/9), tanh(2/9), tanh(1/9), tanh(7/8), tanh(5/8), tanh(3/8), tanh(1/8), tanh(5/6), tanh(1/6), tanh(4/5), tanh(3/5), tanh(2/5), tanh(1/5), tanh(3/4), tanh(1/4), tanh(2/3), tanh(1/3), tanh(1/2), tanh(1), tanh(2), tanh(3/2), tanh(5/2)], [AiryAi(11/12), AiryAi(7/12 ), AiryAi(5/12), AiryAi(1/12), AiryAi(9/10), AiryAi(7/10), AiryAi(3/10), AiryAi (1/10), AiryAi(8/9), AiryAi(7/9), AiryAi(5/9), AiryAi(4/9), AiryAi(2/9), AiryAi (1/9), AiryAi(7/8), AiryAi(5/8), AiryAi(3/8), AiryAi(1/8), AiryAi(5/6), AiryAi( 1/6), AiryAi(4/5), AiryAi(3/5), AiryAi(2/5), AiryAi(1/5), AiryAi(3/4), AiryAi(1 /4), AiryAi(2/3), AiryAi(1/3), AiryAi(1/2), AiryAi(1), AiryAi(2), AiryAi(3/2), AiryAi(5/2)], [AiryBi(11/12), AiryBi(7/12), AiryBi(5/12), AiryBi(1/12), AiryBi( 9/10), AiryBi(7/10), AiryBi(3/10), AiryBi(1/10), AiryBi(8/9), AiryBi(7/9), AiryBi(5/9), AiryBi(4/9), AiryBi(2/9), AiryBi(1/9), AiryBi(7/8), AiryBi(5/8), AiryBi(3/8), AiryBi(1/8), AiryBi(5/6), AiryBi(1/6), AiryBi(4/5), AiryBi(3/5), AiryBi(2/5), AiryBi(1/5), AiryBi(3/4), AiryBi(1/4), AiryBi(2/3), AiryBi(1/3), AiryBi(1/2), AiryBi(1), AiryBi(2), AiryBi(3/2), AiryBi(5/2)], [AiryAi(1,11/12), AiryAi(1,7/12), AiryAi(1,5/12), AiryAi(1,1/12), AiryAi(1,9/10), AiryAi(1,7/10), AiryAi(1,3/10), AiryAi(1,1/10), AiryAi(1,8/9), AiryAi(1,7/9), AiryAi(1,5/9), AiryAi(1,4/9), AiryAi(1,2/9), AiryAi(1,1/9), AiryAi(1,7/8), AiryAi(1,5/8), AiryAi(1,3/8), AiryAi(1,1/8), AiryAi(1,5/6), AiryAi(1,1/6), AiryAi(1,4/5), AiryAi(1,3/5), AiryAi(1,2/5), AiryAi(1,1/5), AiryAi(1,3/4), AiryAi(1,1/4), AiryAi(1,2/3), AiryAi(1,1/3), AiryAi(1,1/2), AiryAi(1,1), AiryAi(1,2), AiryAi(1 ,3/2), AiryAi(1,5/2)], [AiryBi(1,11/12), AiryBi(1,7/12), AiryBi(1,5/12), AiryBi (1,1/12), AiryBi(1,9/10), AiryBi(1,7/10), AiryBi(1,3/10), AiryBi(1,1/10), AiryBi(1,8/9), AiryBi(1,7/9), AiryBi(1,5/9), AiryBi(1,4/9), AiryBi(1,2/9), AiryBi(1,1/9), AiryBi(1,7/8), AiryBi(1,5/8), AiryBi(1,3/8), AiryBi(1,1/8), AiryBi(1,5/6), AiryBi(1,1/6), AiryBi(1,4/5), AiryBi(1,3/5), AiryBi(1,2/5), AiryBi(1,1/5), AiryBi(1,3/4), AiryBi(1,1/4), AiryBi(1,2/3), AiryBi(1,1/3), AiryBi(1,1/2), AiryBi(1,1), AiryBi(1,2), AiryBi(1,3/2), AiryBi(1,5/2)], [11/12* AiryAi(11/12), 7/12*AiryAi(7/12), 5/12*AiryAi(5/12), 1/12*AiryAi(1/12), 9/10* AiryAi(9/10), 7/10*AiryAi(7/10), 3/10*AiryAi(3/10), 1/10*AiryAi(1/10), 8/9* AiryAi(8/9), 7/9*AiryAi(7/9), 5/9*AiryAi(5/9), 4/9*AiryAi(4/9), 2/9*AiryAi(2/9) , 1/9*AiryAi(1/9), 7/8*AiryAi(7/8), 5/8*AiryAi(5/8), 3/8*AiryAi(3/8), 1/8* AiryAi(1/8), 5/6*AiryAi(5/6), 1/6*AiryAi(1/6), 4/5*AiryAi(4/5), 3/5*AiryAi(3/5) , 2/5*AiryAi(2/5), 1/5*AiryAi(1/5), 3/4*AiryAi(3/4), 1/4*AiryAi(1/4), 2/3* AiryAi(2/3), 1/3*AiryAi(1/3), 1/2*AiryAi(1/2), AiryAi(1), 2*AiryAi(2), 3/2* AiryAi(3/2), 5/2*AiryAi(5/2)], [11/12*AiryBi(11/12), 7/12*AiryBi(7/12), 5/12* AiryBi(5/12), 1/12*AiryBi(1/12), 9/10*AiryBi(9/10), 7/10*AiryBi(7/10), 3/10* AiryBi(3/10), 1/10*AiryBi(1/10), 8/9*AiryBi(8/9), 7/9*AiryBi(7/9), 5/9*AiryBi(5 /9), 4/9*AiryBi(4/9), 2/9*AiryBi(2/9), 1/9*AiryBi(1/9), 7/8*AiryBi(7/8), 5/8* AiryBi(5/8), 3/8*AiryBi(3/8), 1/8*AiryBi(1/8), 5/6*AiryBi(5/6), 1/6*AiryBi(1/6) , 4/5*AiryBi(4/5), 3/5*AiryBi(3/5), 2/5*AiryBi(2/5), 1/5*AiryBi(1/5), 3/4* AiryBi(3/4), 1/4*AiryBi(1/4), 2/3*AiryBi(2/3), 1/3*AiryBi(1/3), 1/2*AiryBi(1/2) , AiryBi(1), 2*AiryBi(2), 3/2*AiryBi(3/2), 5/2*AiryBi(5/2)], [Si(11/12), Si(7/ 12), Si(5/12), Si(1/12), Si(9/10), Si(7/10), Si(3/10), Si(1/10), Si(8/9), Si(7/ 9), Si(5/9), Si(4/9), Si(2/9), Si(1/9), Si(7/8), Si(5/8), Si(3/8), Si(1/8), Si( 5/6), Si(1/6), Si(4/5), Si(3/5), Si(2/5), Si(1/5), Si(3/4), Si(1/4), Si(2/3), Si(1/3), Si(1/2), Si(1), Si(2), Si(3/2), Si(5/2)], [Ci(11/12), Ci(7/12), Ci(5/ 12), Ci(1/12), Ci(9/10), Ci(7/10), Ci(3/10), Ci(1/10), Ci(8/9), Ci(7/9), Ci(5/9 ), Ci(4/9), Ci(2/9), Ci(1/9), Ci(7/8), Ci(5/8), Ci(3/8), Ci(1/8), Ci(5/6), Ci(1 /6), Ci(4/5), Ci(3/5), Ci(2/5), Ci(1/5), Ci(3/4), Ci(1/4), Ci(2/3), Ci(1/3), Ci (1/2), Ci(1), Ci(2), Ci(3/2), Ci(5/2)], [Ssi(11/12), Ssi(7/12), Ssi(5/12), Ssi( 1/12), Ssi(9/10), Ssi(7/10), Ssi(3/10), Ssi(1/10), Ssi(8/9), Ssi(7/9), Ssi(5/9) , Ssi(4/9), Ssi(2/9), Ssi(1/9), Ssi(7/8), Ssi(5/8), Ssi(3/8), Ssi(1/8), Ssi(5/6 ), Ssi(1/6), Ssi(4/5), Ssi(3/5), Ssi(2/5), Ssi(1/5), Ssi(3/4), Ssi(1/4), Ssi(2/ 3), Ssi(1/3), Ssi(1/2), Ssi(1), Ssi(2), Ssi(3/2), Ssi(5/2)], [Shi(11/12), Shi(7 /12), Shi(5/12), Shi(1/12), Shi(9/10), Shi(7/10), Shi(3/10), Shi(1/10), Shi(8/9 ), Shi(7/9), Shi(5/9), Shi(4/9), Shi(2/9), Shi(1/9), Shi(7/8), Shi(5/8), Shi(3/ 8), Shi(1/8), Shi(5/6), Shi(1/6), Shi(4/5), Shi(3/5), Shi(2/5), Shi(1/5), Shi(3 /4), Shi(1/4), Shi(2/3), Shi(1/3), Shi(1/2), Shi(1), Shi(2), Shi(3/2), Shi(5/2) ], [Chi(11/12), Chi(7/12), Chi(5/12), Chi(1/12), Chi(9/10), Chi(7/10), Chi(3/10 ), Chi(1/10), Chi(8/9), Chi(7/9), Chi(5/9), Chi(4/9), Chi(2/9), Chi(1/9), Chi(7 /8), Chi(5/8), Chi(3/8), Chi(1/8), Chi(5/6), Chi(1/6), Chi(4/5), Chi(3/5), Chi( 2/5), Chi(1/5), Chi(3/4), Chi(1/4), Chi(2/3), Chi(1/3), Chi(1/2), Chi(1), Chi(2 ), Chi(3/2), Chi(5/2)], [exp(11/12*Pi), exp(7/12*Pi), exp(5/12*Pi), exp(1/12*Pi ), exp(9/10*Pi), exp(7/10*Pi), exp(3/10*Pi), exp(1/10*Pi), exp(8/9*Pi), exp(7/9 *Pi), exp(5/9*Pi), exp(4/9*Pi), exp(2/9*Pi), exp(1/9*Pi), exp(7/8*Pi), exp(5/8* Pi), exp(3/8*Pi), exp(1/8*Pi), exp(5/6*Pi), exp(1/6*Pi), exp(4/5*Pi), exp(3/5* Pi), exp(2/5*Pi), exp(1/5*Pi), exp(3/4*Pi), exp(1/4*Pi), exp(2/3*Pi), exp(1/3* Pi), exp(1/2*Pi), exp(Pi), exp(2*Pi), exp(3/2*Pi), exp(5/2*Pi)], [Pi^(11/12), Pi^(7/12), Pi^(5/12), Pi^(1/12), Pi^(9/10), Pi^(7/10), Pi^(3/10), Pi^(1/10), Pi ^(8/9), Pi^(7/9), Pi^(5/9), Pi^(4/9), Pi^(2/9), Pi^(1/9), Pi^(7/8), Pi^(5/8), Pi^(3/8), Pi^(1/8), Pi^(5/6), Pi^(1/6), Pi^(4/5), Pi^(3/5), Pi^(2/5), Pi^(1/5), Pi^(3/4), Pi^(1/4), Pi^(2/3), Pi^(1/3), Pi^(1/2), Pi, Pi^2, Pi^(3/2), Pi^(5/2)] , [ln(ln(2)), ln(ln(3)), ln(ln(5)), ln(ln(7)), ln(ln(11)), ln(ln(13)), ln(ln(17 )), ln(ln(19)), ln(ln(23)), ln(ln(29)), ln(ln(31)), ln(ln(37)), ln(ln(41)), ln( ln(43)), ln(ln(47)), ln(ln(53)), ln(ln(59)), ln(ln(61)), ln(ln(67)), ln(ln(71)) , ln(ln(73)), ln(ln(79)), ln(ln(83)), ln(ln(89)), ln(ln(97)), ln(ln(101)), ln( ln(103)), ln(ln(107)), ln(ln(109)), ln(ln(113)), ln(ln(127)), ln(ln(131))], [ln (2), ln(3), ln(5), ln(7), ln(11), ln(13), ln(17), ln(19), ln(23), ln(29), ln(31 ), ln(37), ln(41), ln(43), ln(47), ln(53), ln(59), ln(61), ln(67), ln(71), ln( 73), ln(79), ln(83), ln(89), ln(97), ln(101), ln(103), ln(107), ln(109), ln(113 ), ln(127), ln(131)], [arctan(1/2), arctan(1/3), arctan(2/3), arctan(1/4), arctan(2/5), arctan(4/5), arctan(1/6), arctan(5/6), arctan(2/7), arctan(3/8), arctan(5/8), arctan(7/8), arctan(4/9), arctan(1/10), arctan(3/10), arctan(7/10) , arctan(9/10), arctan(4/11), arctan(6/11), arctan(7/12)], [exp(1/2*3^(1/2)), exp(1/2*2^(1/2)), exp(sin(1/5*Pi)), exp(1/2), exp(sin(1/7*Pi)), exp(sin(1/8*Pi) ), exp(sin(1/9*Pi)), exp(sin(1/10*Pi)), exp(sin(1/11*Pi)), exp(sin(1/12*Pi)), exp(sin(1/13*Pi)), exp(sin(1/14*Pi)), exp(sin(1/15*Pi)), exp(sin(1/16*Pi)), exp (sin(1/17*Pi)), exp(sin(1/18*Pi)), exp(sin(1/19*Pi)), exp(sin(1/20*Pi)), exp( sin(1/21*Pi)), exp(sin(1/22*Pi)), exp(sin(1/23*Pi)), exp(sin(1/24*Pi)), exp(sin (1/25*Pi)), exp(sin(1/26*Pi)), exp(sin(1/27*Pi)), exp(sin(1/28*Pi)), exp(sin(1/ 29*Pi)), exp(sin(1/30*Pi)), exp(sin(1/31*Pi)), exp(sin(1/32*Pi))], [exp(1/2), exp(1/2*2^(1/2)), exp(cos(1/5*Pi)), exp(1/2*3^(1/2)), exp(cos(1/7*Pi)), exp(cos (1/8*Pi)), exp(cos(1/9*Pi)), exp(cos(1/10*Pi)), exp(cos(1/11*Pi)), exp(cos(1/12 *Pi)), exp(cos(1/13*Pi)), exp(cos(1/14*Pi)), exp(cos(1/15*Pi)), exp(cos(1/16*Pi )), exp(cos(1/17*Pi)), exp(cos(1/18*Pi)), exp(cos(1/19*Pi)), exp(cos(1/20*Pi)), exp(cos(1/21*Pi)), exp(cos(1/22*Pi)), exp(cos(1/23*Pi)), exp(cos(1/24*Pi)), exp (cos(1/25*Pi)), exp(cos(1/26*Pi)), exp(cos(1/27*Pi)), exp(cos(1/28*Pi)), exp( cos(1/29*Pi)), exp(cos(1/30*Pi)), exp(cos(1/31*Pi)), exp(cos(1/32*Pi))], [exp(3 ^(1/2)), exp(1), exp(tan(1/5*Pi)), exp(1/3*3^(1/2)), exp(tan(1/7*Pi)), exp(tan( 1/8*Pi)), exp(tan(1/9*Pi)), exp(tan(1/10*Pi)), exp(tan(1/11*Pi)), exp(tan(1/12* Pi)), exp(tan(1/13*Pi)), exp(tan(1/14*Pi)), exp(tan(1/15*Pi)), exp(tan(1/16*Pi) ), exp(tan(1/17*Pi)), exp(tan(1/18*Pi)), exp(tan(1/19*Pi)), exp(tan(1/20*Pi)), exp(tan(1/21*Pi)), exp(tan(1/22*Pi)), exp(tan(1/23*Pi)), exp(tan(1/24*Pi)), exp (tan(1/25*Pi)), exp(tan(1/26*Pi)), exp(tan(1/27*Pi)), exp(tan(1/28*Pi)), exp( tan(1/29*Pi)), exp(tan(1/30*Pi)), exp(tan(1/31*Pi)), exp(tan(1/32*Pi))], [ hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],11/12), hypergeom([1/2, 1/2, 1/2],[3/2, 3/ 2],7/12), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],5/12), hypergeom([1/2, 1/2, 1/2] ,[3/2, 3/2],1/12), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],9/10), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],7/10), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],3/10), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],1/10), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2 ],8/9), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],7/9), hypergeom([1/2, 1/2, 1/2],[3 /2, 3/2],5/9), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],4/9), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],2/9), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],1/9), hypergeom([1/2 , 1/2, 1/2],[3/2, 3/2],7/8), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],5/8), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],3/8), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2] ,1/8), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],5/6), hypergeom([1/2, 1/2, 1/2],[3/ 2, 3/2],1/6), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],4/5), hypergeom([1/2, 1/2, 1 /2],[3/2, 3/2],3/5), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],2/5), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],1/5), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],3/4), hypergeom ([1/2, 1/2, 1/2],[3/2, 3/2],1/4), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],2/3), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2],1/3), hypergeom([1/2, 1/2, 1/2],[3/2, 3/2] ,1/2)], [hypergeom([1/2, 1/2, 1],[3/2, 3/2],11/12), hypergeom([1/2, 1/2, 1],[3/ 2, 3/2],7/12), hypergeom([1/2, 1/2, 1],[3/2, 3/2],5/12), hypergeom([1/2, 1/2, 1 ],[3/2, 3/2],1/12), hypergeom([1/2, 1/2, 1],[3/2, 3/2],9/10), hypergeom([1/2, 1 /2, 1],[3/2, 3/2],7/10), hypergeom([1/2, 1/2, 1],[3/2, 3/2],3/10), hypergeom([1 /2, 1/2, 1],[3/2, 3/2],1/10), hypergeom([1/2, 1/2, 1],[3/2, 3/2],8/9), hypergeom([1/2, 1/2, 1],[3/2, 3/2],7/9), hypergeom([1/2, 1/2, 1],[3/2, 3/2],5/9 ), hypergeom([1/2, 1/2, 1],[3/2, 3/2],4/9), hypergeom([1/2, 1/2, 1],[3/2, 3/2], 2/9), hypergeom([1/2, 1/2, 1],[3/2, 3/2],1/9), hypergeom([1/2, 1/2, 1],[3/2, 3/ 2],7/8), hypergeom([1/2, 1/2, 1],[3/2, 3/2],5/8), hypergeom([1/2, 1/2, 1],[3/2, 3/2],3/8), hypergeom([1/2, 1/2, 1],[3/2, 3/2],1/8), hypergeom([1/2, 1/2, 1],[3/ 2, 3/2],5/6), hypergeom([1/2, 1/2, 1],[3/2, 3/2],1/6), hypergeom([1/2, 1/2, 1], [3/2, 3/2],4/5), hypergeom([1/2, 1/2, 1],[3/2, 3/2],3/5), hypergeom([1/2, 1/2, 1],[3/2, 3/2],2/5), hypergeom([1/2, 1/2, 1],[3/2, 3/2],1/5), hypergeom([1/2, 1/ 2, 1],[3/2, 3/2],3/4), hypergeom([1/2, 1/2, 1],[3/2, 3/2],1/4), hypergeom([1/2, 1/2, 1],[3/2, 3/2],2/3), hypergeom([1/2, 1/2, 1],[3/2, 3/2],1/3), hypergeom([1/ 2, 1/2, 1],[3/2, 3/2],1/2)], [hypergeom([1, 1, 1],[3/2, 2],11/12), hypergeom([1 , 1, 1],[3/2, 2],7/12), hypergeom([1, 1, 1],[3/2, 2],5/12), hypergeom([1, 1, 1] ,[3/2, 2],1/12), hypergeom([1, 1, 1],[3/2, 2],9/10), hypergeom([1, 1, 1],[3/2, 2],7/10), hypergeom([1, 1, 1],[3/2, 2],3/10), hypergeom([1, 1, 1],[3/2, 2],1/10 ), hypergeom([1, 1, 1],[3/2, 2],8/9), hypergeom([1, 1, 1],[3/2, 2],7/9), hypergeom([1, 1, 1],[3/2, 2],5/9), hypergeom([1, 1, 1],[3/2, 2],4/9), hypergeom ([1, 1, 1],[3/2, 2],2/9), hypergeom([1, 1, 1],[3/2, 2],1/9), hypergeom([1, 1, 1 ],[3/2, 2],7/8), hypergeom([1, 1, 1],[3/2, 2],5/8), hypergeom([1, 1, 1],[3/2, 2 ],3/8), hypergeom([1, 1, 1],[3/2, 2],1/8), hypergeom([1, 1, 1],[3/2, 2],5/6), hypergeom([1, 1, 1],[3/2, 2],1/6), hypergeom([1, 1, 1],[3/2, 2],4/5), hypergeom ([1, 1, 1],[3/2, 2],3/5), hypergeom([1, 1, 1],[3/2, 2],2/5), hypergeom([1, 1, 1 ],[3/2, 2],1/5), hypergeom([1, 1, 1],[3/2, 2],3/4), hypergeom([1, 1, 1],[3/2, 2 ],1/4), hypergeom([1, 1, 1],[3/2, 2],2/3), hypergeom([1, 1, 1],[3/2, 2],1/3), hypergeom([1, 1, 1],[3/2, 2],1/2)], [hypergeom([1/6, 1/2, 5/6],[1, 1],11/12), hypergeom([1/6, 1/2, 5/6],[1, 1],7/12), hypergeom([1/6, 1/2, 5/6],[1, 1],5/12), hypergeom([1/6, 1/2, 5/6],[1, 1],1/12), hypergeom([1/6, 1/2, 5/6],[1, 1],9/10), hypergeom([1/6, 1/2, 5/6],[1, 1],7/10), hypergeom([1/6, 1/2, 5/6],[1, 1],3/10), hypergeom([1/6, 1/2, 5/6],[1, 1],1/10), hypergeom([1/6, 1/2, 5/6],[1, 1],8/9), hypergeom([1/6, 1/2, 5/6],[1, 1],7/9), hypergeom([1/6, 1/2, 5/6],[1, 1],5/9), hypergeom([1/6, 1/2, 5/6],[1, 1],4/9), hypergeom([1/6, 1/2, 5/6],[1, 1],2/9), hypergeom([1/6, 1/2, 5/6],[1, 1],1/9), hypergeom([1/6, 1/2, 5/6],[1, 1],7/8), hypergeom([1/6, 1/2, 5/6],[1, 1],5/8), hypergeom([1/6, 1/2, 5/6],[1, 1],3/8), hypergeom([1/6, 1/2, 5/6],[1, 1],1/8), hypergeom([1/6, 1/2, 5/6],[1, 1],5/6), hypergeom([1/6, 1/2, 5/6],[1, 1],1/6), hypergeom([1/6, 1/2, 5/6],[1, 1],4/5), hypergeom([1/6, 1/2, 5/6],[1, 1],3/5), hypergeom([1/6, 1/2, 5/6],[1, 1],2/5), hypergeom([1/6, 1/2, 5/6],[1, 1],1/5), hypergeom([1/6, 1/2, 5/6],[1, 1],3/4), hypergeom([1/6, 1/2, 5/6],[1, 1],1/4), hypergeom([1/6, 1/2, 5/6],[1, 1],2/3), hypergeom([1/6, 1/2, 5/6],[1, 1],1/3), hypergeom([1/6, 1/2, 5/6],[1, 1],1/2)], [hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],11/12), hypergeom([1/6, 1/2, 5/6],[3/2, 3 /2],7/12), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],5/12), hypergeom([1/6, 1/2, 5/6 ],[3/2, 3/2],1/12), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],9/10), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],7/10), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],3/10), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],1/10), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2 ],8/9), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],7/9), hypergeom([1/6, 1/2, 5/6],[3 /2, 3/2],5/9), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],4/9), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],2/9), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],1/9), hypergeom([1/6 , 1/2, 5/6],[3/2, 3/2],7/8), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],5/8), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],3/8), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2] ,1/8), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],5/6), hypergeom([1/6, 1/2, 5/6],[3/ 2, 3/2],1/6), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],4/5), hypergeom([1/6, 1/2, 5 /6],[3/2, 3/2],3/5), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],2/5), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],1/5), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],3/4), hypergeom ([1/6, 1/2, 5/6],[3/2, 3/2],1/4), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],2/3), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2],1/3), hypergeom([1/6, 1/2, 5/6],[3/2, 3/2] ,1/2)], [hypergeom([1, 1, 1],[2, 2],11/12), hypergeom([1, 1, 1],[2, 2],7/12), hypergeom([1, 1, 1],[2, 2],5/12), hypergeom([1, 1, 1],[2, 2],1/12), hypergeom([ 1, 1, 1],[2, 2],9/10), hypergeom([1, 1, 1],[2, 2],7/10), hypergeom([1, 1, 1],[2 , 2],3/10), hypergeom([1, 1, 1],[2, 2],1/10), hypergeom([1, 1, 1],[2, 2],8/9), hypergeom([1, 1, 1],[2, 2],7/9), hypergeom([1, 1, 1],[2, 2],5/9), hypergeom([1, 1, 1],[2, 2],4/9), hypergeom([1, 1, 1],[2, 2],2/9), hypergeom([1, 1, 1],[2, 2], 1/9), hypergeom([1, 1, 1],[2, 2],7/8), hypergeom([1, 1, 1],[2, 2],5/8), hypergeom([1, 1, 1],[2, 2],3/8), hypergeom([1, 1, 1],[2, 2],1/8), hypergeom([1, 1, 1],[2, 2],5/6), hypergeom([1, 1, 1],[2, 2],1/6), hypergeom([1, 1, 1],[2, 2], 4/5), hypergeom([1, 1, 1],[2, 2],3/5), hypergeom([1, 1, 1],[2, 2],2/5), hypergeom([1, 1, 1],[2, 2],1/5), hypergeom([1, 1, 1],[2, 2],3/4), hypergeom([1, 1, 1],[2, 2],1/4), hypergeom([1, 1, 1],[2, 2],2/3), hypergeom([1, 1, 1],[2, 2], 1/3), hypergeom([1, 1, 1],[2, 2],1/2)], [hypergeom([1, 1],[2],1/2), hypergeom([ 1, 1],[2],1/3), hypergeom([1, 1],[2],1/5), hypergeom([1, 1],[2],1/7), hypergeom ([1, 1],[2],1/11), hypergeom([1, 1],[2],1/13), hypergeom([1, 1],[2],1/17), hypergeom([1, 1],[2],1/19), hypergeom([1, 1],[2],1/23), hypergeom([1, 1],[2],1/ 29), hypergeom([1, 1],[2],1/31), hypergeom([1, 1],[2],1/37), hypergeom([1, 1],[ 2],1/41), hypergeom([1, 1],[2],1/43), hypergeom([1, 1],[2],1/47)], [hypergeom([ 1, 1, 1],[1/2, 2],11/12), hypergeom([1, 1, 1],[1/2, 2],7/12), hypergeom([1, 1, 1],[1/2, 2],5/12), hypergeom([1, 1, 1],[1/2, 2],1/12), hypergeom([1, 1, 1],[1/2 , 2],9/10), hypergeom([1, 1, 1],[1/2, 2],7/10), hypergeom([1, 1, 1],[1/2, 2],3/ 10), hypergeom([1, 1, 1],[1/2, 2],1/10), hypergeom([1, 1, 1],[1/2, 2],8/9), hypergeom([1, 1, 1],[1/2, 2],7/9), hypergeom([1, 1, 1],[1/2, 2],5/9), hypergeom ([1, 1, 1],[1/2, 2],4/9), hypergeom([1, 1, 1],[1/2, 2],2/9), hypergeom([1, 1, 1 ],[1/2, 2],1/9), hypergeom([1, 1, 1],[1/2, 2],7/8), hypergeom([1, 1, 1],[1/2, 2 ],5/8), hypergeom([1, 1, 1],[1/2, 2],3/8), hypergeom([1, 1, 1],[1/2, 2],1/8), hypergeom([1, 1, 1],[1/2, 2],5/6), hypergeom([1, 1, 1],[1/2, 2],1/6), hypergeom ([1, 1, 1],[1/2, 2],4/5), hypergeom([1, 1, 1],[1/2, 2],3/5), hypergeom([1, 1, 1 ],[1/2, 2],2/5), hypergeom([1, 1, 1],[1/2, 2],1/5), hypergeom([1, 1, 1],[1/2, 2 ],3/4), hypergeom([1, 1, 1],[1/2, 2],1/4), hypergeom([1, 1, 1],[1/2, 2],2/3), hypergeom([1, 1, 1],[1/2, 2],1/3), hypergeom([1, 1, 1],[1/2, 2],1/2)], [ hypergeom([1/2, 1/2],[1],11/12), hypergeom([1/2, 1/2],[1],7/12), hypergeom([1/2 , 1/2],[1],5/12), hypergeom([1/2, 1/2],[1],1/12), hypergeom([1/2, 1/2],[1],9/10 ), hypergeom([1/2, 1/2],[1],7/10), hypergeom([1/2, 1/2],[1],3/10), hypergeom([1 /2, 1/2],[1],1/10), hypergeom([1/2, 1/2],[1],8/9), hypergeom([1/2, 1/2],[1],7/9 ), hypergeom([1/2, 1/2],[1],5/9), hypergeom([1/2, 1/2],[1],4/9), hypergeom([1/2 , 1/2],[1],2/9), hypergeom([1/2, 1/2],[1],1/9), hypergeom([1/2, 1/2],[1],7/8), hypergeom([1/2, 1/2],[1],5/8), hypergeom([1/2, 1/2],[1],3/8), hypergeom([1/2, 1 /2],[1],1/8), hypergeom([1/2, 1/2],[1],5/6), hypergeom([1/2, 1/2],[1],1/6), hypergeom([1/2, 1/2],[1],4/5), hypergeom([1/2, 1/2],[1],3/5), hypergeom([1/2, 1 /2],[1],2/5), hypergeom([1/2, 1/2],[1],1/5), hypergeom([1/2, 1/2],[1],3/4), hypergeom([1/2, 1/2],[1],1/4), hypergeom([1/2, 1/2],[1],2/3), hypergeom([1/2, 1 /2],[1],1/3), hypergeom([1/2, 1/2],[1],1/2)], [hypergeom([1/2, 1/2],[3/2],11/12 ), hypergeom([1/2, 1/2],[3/2],7/12), hypergeom([1/2, 1/2],[3/2],5/12), hypergeom([1/2, 1/2],[3/2],1/12), hypergeom([1/2, 1/2],[3/2],9/10), hypergeom([ 1/2, 1/2],[3/2],7/10), hypergeom([1/2, 1/2],[3/2],3/10), hypergeom([1/2, 1/2],[ 3/2],1/10), hypergeom([1/2, 1/2],[3/2],8/9), hypergeom([1/2, 1/2],[3/2],7/9), hypergeom([1/2, 1/2],[3/2],5/9), hypergeom([1/2, 1/2],[3/2],4/9), hypergeom([1/ 2, 1/2],[3/2],2/9), hypergeom([1/2, 1/2],[3/2],1/9), hypergeom([1/2, 1/2],[3/2] ,7/8), hypergeom([1/2, 1/2],[3/2],5/8), hypergeom([1/2, 1/2],[3/2],3/8), hypergeom([1/2, 1/2],[3/2],1/8), hypergeom([1/2, 1/2],[3/2],5/6), hypergeom([1/ 2, 1/2],[3/2],1/6), hypergeom([1/2, 1/2],[3/2],4/5), hypergeom([1/2, 1/2],[3/2] ,3/5), hypergeom([1/2, 1/2],[3/2],2/5), hypergeom([1/2, 1/2],[3/2],1/5), hypergeom([1/2, 1/2],[3/2],3/4), hypergeom([1/2, 1/2],[3/2],1/4), hypergeom([1/ 2, 1/2],[3/2],2/3), hypergeom([1/2, 1/2],[3/2],1/3), hypergeom([1/2, 1/2],[3/2] ,1/2)], [hypergeom([1/4, 3/4],[1],11/12), hypergeom([1/4, 3/4],[1],7/12), hypergeom([1/4, 3/4],[1],5/12), hypergeom([1/4, 3/4],[1],1/12), hypergeom([1/4, 3/4],[1],9/10), hypergeom([1/4, 3/4],[1],7/10), hypergeom([1/4, 3/4],[1],3/10), hypergeom([1/4, 3/4],[1],1/10), hypergeom([1/4, 3/4],[1],8/9), hypergeom([1/4, 3/4],[1],7/9), hypergeom([1/4, 3/4],[1],5/9), hypergeom([1/4, 3/4],[1],4/9), hypergeom([1/4, 3/4],[1],2/9), hypergeom([1/4, 3/4],[1],1/9), hypergeom([1/4, 3 /4],[1],7/8), hypergeom([1/4, 3/4],[1],5/8), hypergeom([1/4, 3/4],[1],3/8), hypergeom([1/4, 3/4],[1],1/8), hypergeom([1/4, 3/4],[1],5/6), hypergeom([1/4, 3 /4],[1],1/6), hypergeom([1/4, 3/4],[1],4/5), hypergeom([1/4, 3/4],[1],3/5), hypergeom([1/4, 3/4],[1],2/5), hypergeom([1/4, 3/4],[1],1/5), hypergeom([1/4, 3 /4],[1],3/4), hypergeom([1/4, 3/4],[1],1/4), hypergeom([1/4, 3/4],[1],2/3), hypergeom([1/4, 3/4],[1],1/3), hypergeom([1/4, 3/4],[1],1/2)], [hypergeom([1/6, 5/6],[2],11/12), hypergeom([1/6, 5/6],[2],7/12), hypergeom([1/6, 5/6],[2],5/12) , hypergeom([1/6, 5/6],[2],1/12), hypergeom([1/6, 5/6],[2],9/10), hypergeom([1/ 6, 5/6],[2],7/10), hypergeom([1/6, 5/6],[2],3/10), hypergeom([1/6, 5/6],[2],1/ 10), hypergeom([1/6, 5/6],[2],8/9), hypergeom([1/6, 5/6],[2],7/9), hypergeom([1 /6, 5/6],[2],5/9), hypergeom([1/6, 5/6],[2],4/9), hypergeom([1/6, 5/6],[2],2/9) , hypergeom([1/6, 5/6],[2],1/9), hypergeom([1/6, 5/6],[2],7/8), hypergeom([1/6, 5/6],[2],5/8), hypergeom([1/6, 5/6],[2],3/8), hypergeom([1/6, 5/6],[2],1/8), hypergeom([1/6, 5/6],[2],5/6), hypergeom([1/6, 5/6],[2],1/6), hypergeom([1/6, 5 /6],[2],4/5), hypergeom([1/6, 5/6],[2],3/5), hypergeom([1/6, 5/6],[2],2/5), hypergeom([1/6, 5/6],[2],1/5), hypergeom([1/6, 5/6],[2],3/4), hypergeom([1/6, 5 /6],[2],1/4), hypergeom([1/6, 5/6],[2],2/3), hypergeom([1/6, 5/6],[2],1/3), hypergeom([1/6, 5/6],[2],1/2)], [hypergeom([1, 2],[3/2],11/12), hypergeom([1, 2 ],[3/2],7/12), hypergeom([1, 2],[3/2],5/12), hypergeom([1, 2],[3/2],1/12), hypergeom([1, 2],[3/2],9/10), hypergeom([1, 2],[3/2],7/10), hypergeom([1, 2],[3 /2],3/10), hypergeom([1, 2],[3/2],1/10), hypergeom([1, 2],[3/2],8/9), hypergeom ([1, 2],[3/2],7/9), hypergeom([1, 2],[3/2],5/9), hypergeom([1, 2],[3/2],4/9), hypergeom([1, 2],[3/2],2/9), hypergeom([1, 2],[3/2],1/9), hypergeom([1, 2],[3/2 ],7/8), hypergeom([1, 2],[3/2],5/8), hypergeom([1, 2],[3/2],3/8), hypergeom([1, 2],[3/2],1/8), hypergeom([1, 2],[3/2],5/6), hypergeom([1, 2],[3/2],1/6), hypergeom([1, 2],[3/2],4/5), hypergeom([1, 2],[3/2],3/5), hypergeom([1, 2],[3/2 ],2/5), hypergeom([1, 2],[3/2],1/5), hypergeom([1, 2],[3/2],3/4), hypergeom([1, 2],[3/2],1/4), hypergeom([1, 2],[3/2],2/3), hypergeom([1, 2],[3/2],1/3), hypergeom([1, 2],[3/2],1/2)], [hypergeom([1, 1, 2],[1/3, 4/3],11/12), hypergeom ([1, 1, 2],[1/3, 4/3],7/12), hypergeom([1, 1, 2],[1/3, 4/3],5/12), hypergeom([1 , 1, 2],[1/3, 4/3],1/12), hypergeom([1, 1, 2],[1/3, 4/3],9/10), hypergeom([1, 1 , 2],[1/3, 4/3],7/10), hypergeom([1, 1, 2],[1/3, 4/3],3/10), hypergeom([1, 1, 2 ],[1/3, 4/3],1/10), hypergeom([1, 1, 2],[1/3, 4/3],8/9), hypergeom([1, 1, 2],[1 /3, 4/3],7/9), hypergeom([1, 1, 2],[1/3, 4/3],5/9), hypergeom([1, 1, 2],[1/3, 4 /3],4/9), hypergeom([1, 1, 2],[1/3, 4/3],2/9), hypergeom([1, 1, 2],[1/3, 4/3],1 /9), hypergeom([1, 1, 2],[1/3, 4/3],7/8), hypergeom([1, 1, 2],[1/3, 4/3],5/8), hypergeom([1, 1, 2],[1/3, 4/3],3/8), hypergeom([1, 1, 2],[1/3, 4/3],1/8), hypergeom([1, 1, 2],[1/3, 4/3],5/6), hypergeom([1, 1, 2],[1/3, 4/3],1/6), hypergeom([1, 1, 2],[1/3, 4/3],4/5), hypergeom([1, 1, 2],[1/3, 4/3],3/5), hypergeom([1, 1, 2],[1/3, 4/3],2/5), hypergeom([1, 1, 2],[1/3, 4/3],1/5), hypergeom([1, 1, 2],[1/3, 4/3],3/4), hypergeom([1, 1, 2],[1/3, 4/3],1/4), hypergeom([1, 1, 2],[1/3, 4/3],2/3), hypergeom([1, 1, 2],[1/3, 4/3],1/3), hypergeom([1, 1, 2],[1/3, 4/3],1/2)], [hypergeom([3/2, 2, 2],[4/3, 5/3],11/12), hypergeom([3/2, 2, 2],[4/3, 5/3],7/12), hypergeom([3/2, 2, 2],[4/3, 5/3],5/12), hypergeom([3/2, 2, 2],[4/3, 5/3],1/12), hypergeom([3/2, 2, 2],[4/3, 5/3],9/10), hypergeom([3/2, 2, 2],[4/3, 5/3],7/10), hypergeom([3/2, 2, 2],[4/3, 5/3],3/10), hypergeom([3/2, 2, 2],[4/3, 5/3],1/10), hypergeom([3/2, 2, 2],[4/3, 5/3],8/9), hypergeom([3/2, 2, 2],[4/3, 5/3],7/9), hypergeom([3/2, 2, 2],[4/3, 5/3],5/9), hypergeom([3/2, 2, 2],[4/3, 5/3],4/9), hypergeom([3/2, 2, 2],[4/3, 5/3],2/9), hypergeom([3/2, 2, 2],[4/3, 5/3],1/9), hypergeom([3/2, 2, 2],[4/3, 5/3],7/8), hypergeom([3/2, 2, 2],[4/3, 5/3],5/8), hypergeom([3/2, 2, 2],[4/3, 5/3],3/8), hypergeom([3/2, 2, 2],[4/3, 5/3],1/8), hypergeom([3/2, 2, 2],[4/3, 5/3],5/6), hypergeom([3/2, 2, 2],[4/3, 5/3],1/6), hypergeom([3/2, 2, 2],[4/3, 5/3],4/5), hypergeom([3/2, 2, 2],[4/3, 5/3],3/5), hypergeom([3/2, 2, 2],[4/3, 5/3],2/5), hypergeom([3/2, 2, 2],[4/3, 5/3],1/5), hypergeom([3/2, 2, 2],[4/3, 5/3],3/4), hypergeom([3/2, 2, 2],[4/3, 5/3],1/4), hypergeom([3/2, 2, 2],[4/3, 5/3],2/3), hypergeom([3/2, 2, 2],[4/3, 5/3],1/3), hypergeom([3/2, 2, 2],[4/3, 5/3],1/2)], [hypergeom([1, 1, 3/2],[1/3, 2/3],11/12), hypergeom([1, 1, 3/2],[1/3, 2/3],7/12 ), hypergeom([1, 1, 3/2],[1/3, 2/3],5/12), hypergeom([1, 1, 3/2],[1/3, 2/3],1/ 12), hypergeom([1, 1, 3/2],[1/3, 2/3],9/10), hypergeom([1, 1, 3/2],[1/3, 2/3],7 /10), hypergeom([1, 1, 3/2],[1/3, 2/3],3/10), hypergeom([1, 1, 3/2],[1/3, 2/3], 1/10), hypergeom([1, 1, 3/2],[1/3, 2/3],8/9), hypergeom([1, 1, 3/2],[1/3, 2/3], 7/9), hypergeom([1, 1, 3/2],[1/3, 2/3],5/9), hypergeom([1, 1, 3/2],[1/3, 2/3],4 /9), hypergeom([1, 1, 3/2],[1/3, 2/3],2/9), hypergeom([1, 1, 3/2],[1/3, 2/3],1/ 9), hypergeom([1, 1, 3/2],[1/3, 2/3],7/8), hypergeom([1, 1, 3/2],[1/3, 2/3],5/8 ), hypergeom([1, 1, 3/2],[1/3, 2/3],3/8), hypergeom([1, 1, 3/2],[1/3, 2/3],1/8) , hypergeom([1, 1, 3/2],[1/3, 2/3],5/6), hypergeom([1, 1, 3/2],[1/3, 2/3],1/6), hypergeom([1, 1, 3/2],[1/3, 2/3],4/5), hypergeom([1, 1, 3/2],[1/3, 2/3],3/5), hypergeom([1, 1, 3/2],[1/3, 2/3],2/5), hypergeom([1, 1, 3/2],[1/3, 2/3],1/5), hypergeom([1, 1, 3/2],[1/3, 2/3],3/4), hypergeom([1, 1, 3/2],[1/3, 2/3],1/4), hypergeom([1, 1, 3/2],[1/3, 2/3],2/3), hypergeom([1, 1, 3/2],[1/3, 2/3],1/3), hypergeom([1, 1, 3/2],[1/3, 2/3],1/2)], [hypergeom([1, 1, 3/2],[4/3, 5/3],11/12 ), hypergeom([1, 1, 3/2],[4/3, 5/3],7/12), hypergeom([1, 1, 3/2],[4/3, 5/3],5/ 12), hypergeom([1, 1, 3/2],[4/3, 5/3],1/12), hypergeom([1, 1, 3/2],[4/3, 5/3],9 /10), hypergeom([1, 1, 3/2],[4/3, 5/3],7/10), hypergeom([1, 1, 3/2],[4/3, 5/3], 3/10), hypergeom([1, 1, 3/2],[4/3, 5/3],1/10), hypergeom([1, 1, 3/2],[4/3, 5/3] ,8/9), hypergeom([1, 1, 3/2],[4/3, 5/3],7/9), hypergeom([1, 1, 3/2],[4/3, 5/3], 5/9), hypergeom([1, 1, 3/2],[4/3, 5/3],4/9), hypergeom([1, 1, 3/2],[4/3, 5/3],2 /9), hypergeom([1, 1, 3/2],[4/3, 5/3],1/9), hypergeom([1, 1, 3/2],[4/3, 5/3],7/ 8), hypergeom([1, 1, 3/2],[4/3, 5/3],5/8), hypergeom([1, 1, 3/2],[4/3, 5/3],3/8 ), hypergeom([1, 1, 3/2],[4/3, 5/3],1/8), hypergeom([1, 1, 3/2],[4/3, 5/3],5/6) , hypergeom([1, 1, 3/2],[4/3, 5/3],1/6), hypergeom([1, 1, 3/2],[4/3, 5/3],4/5), hypergeom([1, 1, 3/2],[4/3, 5/3],3/5), hypergeom([1, 1, 3/2],[4/3, 5/3],2/5), hypergeom([1, 1, 3/2],[4/3, 5/3],1/5), hypergeom([1, 1, 3/2],[4/3, 5/3],3/4), hypergeom([1, 1, 3/2],[4/3, 5/3],1/4), hypergeom([1, 1, 3/2],[4/3, 5/3],2/3), hypergeom([1, 1, 3/2],[4/3, 5/3],1/3), hypergeom([1, 1, 3/2],[4/3, 5/3],1/2)], [hypergeom([1, 3/2, 2],[4/3, 5/3],11/12), hypergeom([1, 3/2, 2],[4/3, 5/3],7/12 ), hypergeom([1, 3/2, 2],[4/3, 5/3],5/12), hypergeom([1, 3/2, 2],[4/3, 5/3],1/ 12), hypergeom([1, 3/2, 2],[4/3, 5/3],9/10), hypergeom([1, 3/2, 2],[4/3, 5/3],7 /10), hypergeom([1, 3/2, 2],[4/3, 5/3],3/10), hypergeom([1, 3/2, 2],[4/3, 5/3], 1/10), hypergeom([1, 3/2, 2],[4/3, 5/3],8/9), hypergeom([1, 3/2, 2],[4/3, 5/3], 7/9), hypergeom([1, 3/2, 2],[4/3, 5/3],5/9), hypergeom([1, 3/2, 2],[4/3, 5/3],4 /9), hypergeom([1, 3/2, 2],[4/3, 5/3],2/9), hypergeom([1, 3/2, 2],[4/3, 5/3],1/ 9), hypergeom([1, 3/2, 2],[4/3, 5/3],7/8), hypergeom([1, 3/2, 2],[4/3, 5/3],5/8 ), hypergeom([1, 3/2, 2],[4/3, 5/3],3/8), hypergeom([1, 3/2, 2],[4/3, 5/3],1/8) , hypergeom([1, 3/2, 2],[4/3, 5/3],5/6), hypergeom([1, 3/2, 2],[4/3, 5/3],1/6), hypergeom([1, 3/2, 2],[4/3, 5/3],4/5), hypergeom([1, 3/2, 2],[4/3, 5/3],3/5), hypergeom([1, 3/2, 2],[4/3, 5/3],2/5), hypergeom([1, 3/2, 2],[4/3, 5/3],1/5), hypergeom([1, 3/2, 2],[4/3, 5/3],3/4), hypergeom([1, 3/2, 2],[4/3, 5/3],1/4), hypergeom([1, 3/2, 2],[4/3, 5/3],2/3), hypergeom([1, 3/2, 2],[4/3, 5/3],1/3), hypergeom([1, 3/2, 2],[4/3, 5/3],1/2)], [hypergeom([3/2, 2, 2],[4/3, 5/3],11/12 ), hypergeom([3/2, 2, 2],[4/3, 5/3],7/12), hypergeom([3/2, 2, 2],[4/3, 5/3],5/ 12), hypergeom([3/2, 2, 2],[4/3, 5/3],1/12), hypergeom([3/2, 2, 2],[4/3, 5/3],9 /10), hypergeom([3/2, 2, 2],[4/3, 5/3],7/10), hypergeom([3/2, 2, 2],[4/3, 5/3], 3/10), hypergeom([3/2, 2, 2],[4/3, 5/3],1/10), hypergeom([3/2, 2, 2],[4/3, 5/3] ,8/9), hypergeom([3/2, 2, 2],[4/3, 5/3],7/9), hypergeom([3/2, 2, 2],[4/3, 5/3], 5/9), hypergeom([3/2, 2, 2],[4/3, 5/3],4/9), hypergeom([3/2, 2, 2],[4/3, 5/3],2 /9), hypergeom([3/2, 2, 2],[4/3, 5/3],1/9), hypergeom([3/2, 2, 2],[4/3, 5/3],7/ 8), hypergeom([3/2, 2, 2],[4/3, 5/3],5/8), hypergeom([3/2, 2, 2],[4/3, 5/3],3/8 ), hypergeom([3/2, 2, 2],[4/3, 5/3],1/8), hypergeom([3/2, 2, 2],[4/3, 5/3],5/6) , hypergeom([3/2, 2, 2],[4/3, 5/3],1/6), hypergeom([3/2, 2, 2],[4/3, 5/3],4/5), hypergeom([3/2, 2, 2],[4/3, 5/3],3/5), hypergeom([3/2, 2, 2],[4/3, 5/3],2/5), hypergeom([3/2, 2, 2],[4/3, 5/3],1/5), hypergeom([3/2, 2, 2],[4/3, 5/3],3/4), hypergeom([3/2, 2, 2],[4/3, 5/3],1/4), hypergeom([3/2, 2, 2],[4/3, 5/3],2/3), hypergeom([3/2, 2, 2],[4/3, 5/3],1/3), hypergeom([3/2, 2, 2],[4/3, 5/3],1/2)], [hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],11/12), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],7/12), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],5/12), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],1/12), hypergeom([1/2, 1/2, 1/2, 1 ],[3/2, 3/2, 3/2],9/10), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],7/10), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],3/10), hypergeom([1/2, 1/2, 1/2, 1 ],[3/2, 3/2, 3/2],1/10), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],8/9), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],7/9), hypergeom([1/2, 1/2, 1/2, 1] ,[3/2, 3/2, 3/2],5/9), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],4/9), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],2/9), hypergeom([1/2, 1/2, 1/2, 1] ,[3/2, 3/2, 3/2],1/9), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],7/8), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],5/8), hypergeom([1/2, 1/2, 1/2, 1] ,[3/2, 3/2, 3/2],3/8), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],1/8), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],5/6), hypergeom([1/2, 1/2, 1/2, 1] ,[3/2, 3/2, 3/2],1/6), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],4/5), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],3/5), hypergeom([1/2, 1/2, 1/2, 1] ,[3/2, 3/2, 3/2],2/5), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],1/5), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],3/4), hypergeom([1/2, 1/2, 1/2, 1] ,[3/2, 3/2, 3/2],1/4), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],2/3), hypergeom([1/2, 1/2, 1/2, 1],[3/2, 3/2, 3/2],1/3), hypergeom([1/2, 1/2, 1/2, 1] ,[3/2, 3/2, 3/2],1/2)], [hypergeom([1/3, 2/3],[2],11/12), hypergeom([1/3, 2/3], [2],7/12), hypergeom([1/3, 2/3],[2],5/12), hypergeom([1/3, 2/3],[2],1/12), hypergeom([1/3, 2/3],[2],9/10), hypergeom([1/3, 2/3],[2],7/10), hypergeom([1/3, 2/3],[2],3/10), hypergeom([1/3, 2/3],[2],1/10), hypergeom([1/3, 2/3],[2],8/9), hypergeom([1/3, 2/3],[2],7/9), hypergeom([1/3, 2/3],[2],5/9), hypergeom([1/3, 2 /3],[2],4/9), hypergeom([1/3, 2/3],[2],2/9), hypergeom([1/3, 2/3],[2],1/9), hypergeom([1/3, 2/3],[2],7/8), hypergeom([1/3, 2/3],[2],5/8), hypergeom([1/3, 2 /3],[2],3/8), hypergeom([1/3, 2/3],[2],1/8), hypergeom([1/3, 2/3],[2],5/6), hypergeom([1/3, 2/3],[2],1/6), hypergeom([1/3, 2/3],[2],4/5), hypergeom([1/3, 2 /3],[2],3/5), hypergeom([1/3, 2/3],[2],2/5), hypergeom([1/3, 2/3],[2],1/5), hypergeom([1/3, 2/3],[2],3/4), hypergeom([1/3, 2/3],[2],1/4), hypergeom([1/3, 2 /3],[2],2/3), hypergeom([1/3, 2/3],[2],1/3), hypergeom([1/3, 2/3],[2],1/2)], [ hypergeom([1/2, 1, 1],[3/2, 3/2],11/12), hypergeom([1/2, 1, 1],[3/2, 3/2],7/12) , hypergeom([1/2, 1, 1],[3/2, 3/2],5/12), hypergeom([1/2, 1, 1],[3/2, 3/2],1/12 ), hypergeom([1/2, 1, 1],[3/2, 3/2],9/10), hypergeom([1/2, 1, 1],[3/2, 3/2],7/ 10), hypergeom([1/2, 1, 1],[3/2, 3/2],3/10), hypergeom([1/2, 1, 1],[3/2, 3/2],1 /10), hypergeom([1/2, 1, 1],[3/2, 3/2],8/9), hypergeom([1/2, 1, 1],[3/2, 3/2],7 /9), hypergeom([1/2, 1, 1],[3/2, 3/2],5/9), hypergeom([1/2, 1, 1],[3/2, 3/2],4/ 9), hypergeom([1/2, 1, 1],[3/2, 3/2],2/9), hypergeom([1/2, 1, 1],[3/2, 3/2],1/9 ), hypergeom([1/2, 1, 1],[3/2, 3/2],7/8), hypergeom([1/2, 1, 1],[3/2, 3/2],5/8) , hypergeom([1/2, 1, 1],[3/2, 3/2],3/8), hypergeom([1/2, 1, 1],[3/2, 3/2],1/8), hypergeom([1/2, 1, 1],[3/2, 3/2],5/6), hypergeom([1/2, 1, 1],[3/2, 3/2],1/6), hypergeom([1/2, 1, 1],[3/2, 3/2],4/5), hypergeom([1/2, 1, 1],[3/2, 3/2],3/5), hypergeom([1/2, 1, 1],[3/2, 3/2],2/5), hypergeom([1/2, 1, 1],[3/2, 3/2],1/5), hypergeom([1/2, 1, 1],[3/2, 3/2],3/4), hypergeom([1/2, 1, 1],[3/2, 3/2],1/4), hypergeom([1/2, 1, 1],[3/2, 3/2],2/3), hypergeom([1/2, 1, 1],[3/2, 3/2],1/3), hypergeom([1/2, 1, 1],[3/2, 3/2],1/2)], [LambertW(11/12), LambertW(7/12), LambertW(5/12), LambertW(1/12), LambertW(9/10), LambertW(7/10), LambertW(3/10), LambertW(1/10), LambertW(8/9), LambertW(7/9), LambertW(5/9), LambertW(4/9), LambertW(2/9), LambertW(1/9), LambertW(7/8), LambertW(5/8), LambertW(3/8), LambertW(1/8), LambertW(5/6), LambertW(1/6), LambertW(4/5), LambertW(3/5), LambertW(2/5), LambertW(1/5), LambertW(3/4), LambertW(1/4), LambertW(2/3), LambertW(1/3), LambertW(1/2), LambertW(1), LambertW(2), LambertW(3/2), LambertW (5/2)], [RiemannZero(1), RiemannZero(2), RiemannZero(3), RiemannZero(4), RiemannZero(5), RiemannZero(6), RiemannZero(7), RiemannZero(8), RiemannZero(9), RiemannZero(10), RiemannZero(11), RiemannZero(12), RiemannZero(13), RiemannZero (14), RiemannZero(15), RiemannZero(16), RiemannZero(17), RiemannZero(18), RiemannZero(19), RiemannZero(20), RiemannZero(21), RiemannZero(22), RiemannZero (23), RiemannZero(24), RiemannZero(25), RiemannZero(26), RiemannZero(27), RiemannZero(28), RiemannZero(29), RiemannZero(30), RiemannZero(31), RiemannZero (32)], [BesselJZeros(0,1), BesselJZeros(0,2), BesselJZeros(0,3), BesselJZeros(0 ,4), BesselJZeros(0,5), BesselJZeros(0,6), BesselJZeros(0,7), BesselJZeros(0,8) , BesselJZeros(0,9), BesselJZeros(0,10), BesselJZeros(0,11), BesselJZeros(0,12) , BesselJZeros(0,13), BesselJZeros(0,14), BesselJZeros(0,15), BesselJZeros(0,16 ), BesselJZeros(0,17), BesselJZeros(0,18), BesselJZeros(0,19), BesselJZeros(0, 20), BesselJZeros(0,21), BesselJZeros(0,22), BesselJZeros(0,23), BesselJZeros(0 ,24), BesselJZeros(0,25), BesselJZeros(0,26), BesselJZeros(0,27), BesselJZeros( 0,28), BesselJZeros(0,29), BesselJZeros(0,30), BesselJZeros(0,31), BesselJZeros (0,32)], [BesselJZeros(1,1), BesselJZeros(1,2), BesselJZeros(1,3), BesselJZeros (1,4), BesselJZeros(1,5), BesselJZeros(1,6), BesselJZeros(1,7), BesselJZeros(1, 8), BesselJZeros(1,9), BesselJZeros(1,10), BesselJZeros(1,11), BesselJZeros(1, 12), BesselJZeros(1,13), BesselJZeros(1,14), BesselJZeros(1,15), BesselJZeros(1 ,16), BesselJZeros(1,17), BesselJZeros(1,18), BesselJZeros(1,19), BesselJZeros( 1,20), BesselJZeros(1,21), BesselJZeros(1,22), BesselJZeros(1,23), BesselJZeros (1,24), BesselJZeros(1,25), BesselJZeros(1,26), BesselJZeros(1,27), BesselJZeros(1,28), BesselJZeros(1,29), BesselJZeros(1,30), BesselJZeros(1,31), BesselJZeros(1,32)], [BesselJZeros(2,1), BesselJZeros(2,2), BesselJZeros(2,3), BesselJZeros(2,4), BesselJZeros(2,5), BesselJZeros(2,6), BesselJZeros(2,7), BesselJZeros(2,8), BesselJZeros(2,9), BesselJZeros(2,10), BesselJZeros(2,11), BesselJZeros(2,12), BesselJZeros(2,13), BesselJZeros(2,14), BesselJZeros(2,15), BesselJZeros(2,16), BesselJZeros(2,17), BesselJZeros(2,18), BesselJZeros(2,19), BesselJZeros(2,20), BesselJZeros(2,21), BesselJZeros(2,22), BesselJZeros(2,23), BesselJZeros(2,24), BesselJZeros(2,25), BesselJZeros(2,26), BesselJZeros(2,27), BesselJZeros(2,28), BesselJZeros(2,29), BesselJZeros(2,30), BesselJZeros(2,31), BesselJZeros(2,32)], [BesselJZeros(3/2,1), BesselJZeros(3/2,2), BesselJZeros(3/ 2,3), BesselJZeros(3/2,4), BesselJZeros(3/2,5), BesselJZeros(3/2,6), BesselJZeros(3/2,7), BesselJZeros(3/2,8), BesselJZeros(3/2,9), BesselJZeros(3/2 ,10), BesselJZeros(3/2,11), BesselJZeros(3/2,12), BesselJZeros(3/2,13), BesselJZeros(3/2,14), BesselJZeros(3/2,15), BesselJZeros(3/2,16), BesselJZeros( 3/2,17), BesselJZeros(3/2,18), BesselJZeros(3/2,19), BesselJZeros(3/2,20), BesselJZeros(3/2,21), BesselJZeros(3/2,22), BesselJZeros(3/2,23), BesselJZeros( 3/2,24), BesselJZeros(3/2,25), BesselJZeros(3/2,26), BesselJZeros(3/2,27), BesselJZeros(3/2,28), BesselJZeros(3/2,29), BesselJZeros(3/2,30), BesselJZeros( 3/2,31), BesselJZeros(3/2,32)], [BesselJZeros(5/2,1), BesselJZeros(5/2,2), BesselJZeros(5/2,3), BesselJZeros(5/2,4), BesselJZeros(5/2,5), BesselJZeros(5/2 ,6), BesselJZeros(5/2,7), BesselJZeros(5/2,8), BesselJZeros(5/2,9), BesselJZeros(5/2,10), BesselJZeros(5/2,11), BesselJZeros(5/2,12), BesselJZeros( 5/2,13), BesselJZeros(5/2,14), BesselJZeros(5/2,15), BesselJZeros(5/2,16), BesselJZeros(5/2,17), BesselJZeros(5/2,18), BesselJZeros(5/2,19), BesselJZeros( 5/2,20), BesselJZeros(5/2,21), BesselJZeros(5/2,22), BesselJZeros(5/2,23), BesselJZeros(5/2,24), BesselJZeros(5/2,25), BesselJZeros(5/2,26), BesselJZeros( 5/2,27), BesselJZeros(5/2,28), BesselJZeros(5/2,29), BesselJZeros(5/2,30), BesselJZeros(5/2,31), BesselJZeros(5/2,32)], [AiryAiZeros(1), AiryAiZeros(2), AiryAiZeros(3), AiryAiZeros(4), AiryAiZeros(5), AiryAiZeros(6), AiryAiZeros(7), AiryAiZeros(8), AiryAiZeros(9), AiryAiZeros(10), AiryAiZeros(11), AiryAiZeros( 12), AiryAiZeros(13), AiryAiZeros(14), AiryAiZeros(15), AiryAiZeros(16), AiryAiZeros(17), AiryAiZeros(18), AiryAiZeros(19), AiryAiZeros(20), AiryAiZeros (21), AiryAiZeros(22), AiryAiZeros(23), AiryAiZeros(24), AiryAiZeros(25), AiryAiZeros(26), AiryAiZeros(27), AiryAiZeros(28), AiryAiZeros(29), AiryAiZeros (30), AiryAiZeros(31), AiryAiZeros(32)], [Zeta(1,11/12), Zeta(1,7/12), Zeta(1,5/12), Zeta(1,1/12), Zeta(1,9/10), Zeta(1,7/10), Zeta(1,3/10), Zeta(1,1/10), Zeta(1,8/9), Zeta(1,7/9), Zeta(1,5/9) , Zeta(1,4/9), Zeta(1,2/9), Zeta(1,1/9), Zeta(1,7/8), Zeta(1,5/8), Zeta(1,3/8), Zeta(1,1/8), Zeta(1,5/6), Zeta(1,1/6), Zeta(1,4/5), Zeta(1,3/5), Zeta(1,2/5), Zeta(1,1/5), Zeta(1,3/4), Zeta(1,1/4), Zeta(1,2/3), Zeta(1,1/3), Zeta(1/2)*(1/2 *gamma+1/2*ln(8*Pi)+1/4*Pi)], [Zeta(2,11/12), Zeta(2,7/12), Zeta(2,5/12), Zeta( 2,1/12), Zeta(2,9/10), Zeta(2,7/10), Zeta(2,3/10), Zeta(2,1/10), Zeta(2,8/9), Zeta(2,7/9), Zeta(2,5/9), Zeta(2,4/9), Zeta(2,2/9), Zeta(2,1/9), Zeta(2,7/8), Zeta(2,5/8), Zeta(2,3/8), Zeta(2,1/8), Zeta(2,5/6), Zeta(2,1/6), Zeta(2,4/5), Zeta(2,3/5), Zeta(2,2/5), Zeta(2,1/5), Zeta(2,3/4), Zeta(2,1/4), Zeta(2,2/3), Zeta(2,1/3), Zeta(2,1/2)], [Zeta(3,11/12), Zeta(3,7/12), Zeta(3,5/12), Zeta(3,1 /12), Zeta(3,9/10), Zeta(3,7/10), Zeta(3,3/10), Zeta(3,1/10), Zeta(3,8/9), Zeta (3,7/9), Zeta(3,5/9), Zeta(3,4/9), Zeta(3,2/9), Zeta(3,1/9), Zeta(3,7/8), Zeta( 3,5/8), Zeta(3,3/8), Zeta(3,1/8), Zeta(3,5/6), Zeta(3,1/6), Zeta(3,4/5), Zeta(3 ,3/5), Zeta(3,2/5), Zeta(3,1/5), Zeta(3,3/4), Zeta(3,1/4), Zeta(3,2/3), Zeta(3, 1/3), Zeta(3,1/2)], [Ei(11/12), Ei(7/12), Ei(5/12), Ei(1/12), Ei(9/10), Ei(7/10 ), Ei(3/10), Ei(1/10), Ei(8/9), Ei(7/9), Ei(5/9), Ei(4/9), Ei(2/9), Ei(1/9), Ei (7/8), Ei(5/8), Ei(3/8), Ei(1/8), Ei(5/6), Ei(1/6), Ei(4/5), Ei(3/5), Ei(2/5), Ei(1/5), Ei(3/4), Ei(1/4), Ei(2/3), Ei(1/3), Ei(1/2), Ei(1), Ei(2), Ei(3/2), Ei (5/2)], [exp(-11/12), exp(-7/12), exp(-5/12), exp(-1/12), exp(-9/10), exp(-7/10 ), exp(-3/10), exp(-1/10), exp(-8/9), exp(-7/9), exp(-5/9), exp(-4/9), exp(-2/9 ), exp(-1/9), exp(-7/8), exp(-5/8), exp(-3/8), exp(-1/8), exp(-5/6), exp(-1/6), exp(-4/5), exp(-3/5), exp(-2/5), exp(-1/5), exp(-3/4), exp(-1/4), exp(-2/3), exp(-1/3), exp(-1/2), exp(-1), exp(-2), exp(-3/2), exp(-5/2)], [23/12*exp(-11/ 12), 19/12*exp(-7/12), 17/12*exp(-5/12), 13/12*exp(-1/12), 19/10*exp(-9/10), 17 /10*exp(-7/10), 13/10*exp(-3/10), 11/10*exp(-1/10), 17/9*exp(-8/9), 16/9*exp(-7 /9), 14/9*exp(-5/9), 13/9*exp(-4/9), 11/9*exp(-2/9), 10/9*exp(-1/9), 15/8*exp(-\ 7/8), 13/8*exp(-5/8), 11/8*exp(-3/8), 9/8*exp(-1/8), 11/6*exp(-5/6), 7/6*exp(-1 /6), 9/5*exp(-4/5), 8/5*exp(-3/5), 7/5*exp(-2/5), 6/5*exp(-1/5), 7/4*exp(-3/4), 5/4*exp(-1/4), 5/3*exp(-2/3), 4/3*exp(-1/3), 3/2*exp(-1/2), 2*exp(-1), 3*exp(-2 ), 5/2*exp(-3/2), 7/2*exp(-5/2)], [673/144*exp(-11/12), 505/144*exp(-7/12), 433 /144*exp(-5/12), 313/144*exp(-1/12), 461/100*exp(-9/10), 389/100*exp(-7/10), 269/100*exp(-3/10), 221/100*exp(-1/10), 370/81*exp(-8/9), 337/81*exp(-7/9), 277 /81*exp(-5/9), 250/81*exp(-4/9), 202/81*exp(-2/9), 181/81*exp(-1/9), 289/64*exp (-7/8), 233/64*exp(-5/8), 185/64*exp(-3/8), 145/64*exp(-1/8), 157/36*exp(-5/6), 85/36*exp(-1/6), 106/25*exp(-4/5), 89/25*exp(-3/5), 74/25*exp(-2/5), 61/25*exp( -1/5), 65/16*exp(-3/4), 41/16*exp(-1/4), 34/9*exp(-2/3), 25/9*exp(-1/3), 13/4* exp(-1/2), 5*exp(-1), 10*exp(-2), 29/4*exp(-3/2), 53/4*exp(-5/2)], [(-gamma-2* ln(2))*Pi^(1/2), 2/3*(-gamma-1/6*Pi*3^(1/2)-3/2*ln(3))*Pi*3^(1/2)/GAMMA(2/3), ( -gamma+1/6*Pi*3^(1/2)-3/2*ln(3))*GAMMA(2/3), (-gamma-3*ln(2)-1/2*Pi)*Pi*2^(1/2) /GAMMA(3/4), (-gamma-3*ln(2)+1/2*Pi)*GAMMA(3/4), Psi(1/5)*Pi*csc(1/5*Pi)/GAMMA( 4/5), Psi(2/5)*Pi*csc(2/5*Pi)/GAMMA(3/5), Psi(3/5)*GAMMA(3/5), Psi(4/5)*GAMMA(4 /5), 2*(-gamma-2*ln(2)-3/2*ln(3)-1/2*Pi*3^(1/2))*Pi/GAMMA(5/6), (-gamma-2*ln(2) -3/2*ln(3)+1/2*Pi*3^(1/2))*GAMMA(5/6), Psi(1/7)*GAMMA(1/7), Psi(2/7)*GAMMA(2/7) , Psi(3/7)*GAMMA(3/7), Psi(4/7)*GAMMA(4/7), Psi(5/7)*GAMMA(5/7), Psi(6/7)*GAMMA (6/7), Psi(1/8)*Pi*csc(1/8*Pi)/GAMMA(7/8), Psi(3/8)*Pi*csc(3/8*Pi)/GAMMA(5/8), Psi(5/8)*GAMMA(5/8), Psi(7/8)*GAMMA(7/8), Psi(1/9)*GAMMA(1/9), Psi(2/9)*GAMMA(2 /9), Psi(4/9)*GAMMA(4/9), Psi(5/9)*GAMMA(5/9), Psi(7/9)*GAMMA(7/9), Psi(8/9)* GAMMA(8/9), Psi(1/10)*Pi*csc(1/10*Pi)/GAMMA(9/10), Psi(3/10)*Pi*csc(3/10*Pi)/ GAMMA(7/10), Psi(7/10)*GAMMA(7/10), Psi(9/10)*GAMMA(9/10), Psi(1/11)*GAMMA(1/11 ), Psi(2/11)*GAMMA(2/11), Psi(3/11)*GAMMA(3/11), Psi(4/11)*GAMMA(4/11), Psi(5/ 11)*GAMMA(5/11), Psi(6/11)*GAMMA(6/11), Psi(7/11)*GAMMA(7/11), Psi(8/11)*GAMMA( 8/11), Psi(9/11)*GAMMA(9/11), Psi(10/11)*GAMMA(10/11), Psi(1/12)*Pi*csc(1/12*Pi )/GAMMA(11/12), Psi(5/12)*Pi*csc(5/12*Pi)/GAMMA(7/12), Psi(7/12)*GAMMA(7/12), Psi(11/12)*GAMMA(11/12)], [Psi(1,11/12)*GAMMA(11/12)+Psi(11/12)^2*GAMMA(11/12), Psi(1,7/12)*GAMMA(7/12)+Psi(7/12)^2*GAMMA(7/12), Psi(1,5/12)*Pi*csc(5/12*Pi)/ GAMMA(7/12)+Psi(5/12)^2*Pi*csc(5/12*Pi)/GAMMA(7/12), Psi(1,1/12)*Pi*csc(1/12*Pi )/GAMMA(11/12)+Psi(1/12)^2*Pi*csc(1/12*Pi)/GAMMA(11/12), Psi(1,9/10)*GAMMA(9/10 )+Psi(9/10)^2*GAMMA(9/10), Psi(1,7/10)*GAMMA(7/10)+Psi(7/10)^2*GAMMA(7/10), Psi (1,3/10)*Pi*csc(3/10*Pi)/GAMMA(7/10)+Psi(3/10)^2*Pi*csc(3/10*Pi)/GAMMA(7/10), Psi(1,1/10)*Pi*csc(1/10*Pi)/GAMMA(9/10)+Psi(1/10)^2*Pi*csc(1/10*Pi)/GAMMA(9/10) , Psi(1,8/9)*GAMMA(8/9)+Psi(8/9)^2*GAMMA(8/9), Psi(1,7/9)*GAMMA(7/9)+Psi(7/9)^2 *GAMMA(7/9), Psi(1,5/9)*GAMMA(5/9)+Psi(5/9)^2*GAMMA(5/9), Psi(1,4/9)*GAMMA(4/9) +Psi(4/9)^2*GAMMA(4/9), Psi(1,2/9)*GAMMA(2/9)+Psi(2/9)^2*GAMMA(2/9), Psi(1,1/9) *GAMMA(1/9)+Psi(1/9)^2*GAMMA(1/9), Psi(1,7/8)*GAMMA(7/8)+Psi(7/8)^2*GAMMA(7/8), Psi(1,5/8)*GAMMA(5/8)+Psi(5/8)^2*GAMMA(5/8), Psi(1,3/8)*Pi*csc(3/8*Pi)/GAMMA(5/ 8)+Psi(3/8)^2*Pi*csc(3/8*Pi)/GAMMA(5/8), Psi(1,1/8)*Pi*csc(1/8*Pi)/GAMMA(7/8)+ Psi(1/8)^2*Pi*csc(1/8*Pi)/GAMMA(7/8), Psi(1,5/6)*GAMMA(5/6)+(-gamma-2*ln(2)-3/2 *ln(3)+1/2*Pi*3^(1/2))^2*GAMMA(5/6), 2*Psi(1,1/6)*Pi/GAMMA(5/6)+2*(-gamma-2*ln( 2)-3/2*ln(3)-1/2*Pi*3^(1/2))^2*Pi/GAMMA(5/6), Psi(1,4/5)*GAMMA(4/5)+Psi(4/5)^2* GAMMA(4/5), Psi(1,3/5)*GAMMA(3/5)+Psi(3/5)^2*GAMMA(3/5), Psi(1,2/5)*Pi*csc(2/5* Pi)/GAMMA(3/5)+Psi(2/5)^2*Pi*csc(2/5*Pi)/GAMMA(3/5), Psi(1,1/5)*Pi*csc(1/5*Pi)/ GAMMA(4/5)+Psi(1/5)^2*Pi*csc(1/5*Pi)/GAMMA(4/5), Psi(1,3/4)*GAMMA(3/4)+(-gamma-\ 3*ln(2)+1/2*Pi)^2*GAMMA(3/4), (8*Catalan+Pi^2)*Pi*2^(1/2)/GAMMA(3/4)+(-gamma-3* ln(2)-1/2*Pi)^2*Pi*2^(1/2)/GAMMA(3/4), Psi(1,2/3)*GAMMA(2/3)+(-gamma+1/6*Pi*3^( 1/2)-3/2*ln(3))^2*GAMMA(2/3), 2/3*Psi(1,1/3)*Pi*3^(1/2)/GAMMA(2/3)+2/3*(-gamma-\ 1/6*Pi*3^(1/2)-3/2*ln(3))^2*Pi*3^(1/2)/GAMMA(2/3), 1/2*Pi^(5/2)+(-gamma-2*ln(2) )^2*Pi^(1/2), 1/6*Pi^2+gamma^2, -1+1/6*Pi^2+(1-gamma)^2, 1/2*(-4+1/2*Pi^2)*Pi^( 1/2)+1/2*(2-gamma-2*ln(2))^2*Pi^(1/2), 3/4*(-40/9+1/2*Pi^2)*Pi^(1/2)+3/4*(8/3- gamma-2*ln(2))^2*Pi^(1/2)], [Psi(2,11/12)*GAMMA(11/12)+3*Psi(1,11/12)*Psi(11/12 )*GAMMA(11/12)+Psi(11/12)^3*GAMMA(11/12), Psi(2,7/12)*GAMMA(7/12)+3*Psi(1,7/12) *Psi(7/12)*GAMMA(7/12)+Psi(7/12)^3*GAMMA(7/12), Psi(2,5/12)*Pi*csc(5/12*Pi)/ GAMMA(7/12)+3*Psi(1,5/12)*Psi(5/12)*Pi*csc(5/12*Pi)/GAMMA(7/12)+Psi(5/12)^3*Pi* csc(5/12*Pi)/GAMMA(7/12), Psi(2,1/12)*Pi*csc(1/12*Pi)/GAMMA(11/12)+3*Psi(1,1/12 )*Psi(1/12)*Pi*csc(1/12*Pi)/GAMMA(11/12)+Psi(1/12)^3*Pi*csc(1/12*Pi)/GAMMA(11/ 12), Psi(2,9/10)*GAMMA(9/10)+3*Psi(1,9/10)*Psi(9/10)*GAMMA(9/10)+Psi(9/10)^3* GAMMA(9/10), Psi(2,7/10)*GAMMA(7/10)+3*Psi(1,7/10)*Psi(7/10)*GAMMA(7/10)+Psi(7/ 10)^3*GAMMA(7/10), Psi(2,3/10)*Pi*csc(3/10*Pi)/GAMMA(7/10)+3*Psi(1,3/10)*Psi(3/ 10)*Pi*csc(3/10*Pi)/GAMMA(7/10)+Psi(3/10)^3*Pi*csc(3/10*Pi)/GAMMA(7/10), Psi(2, 1/10)*Pi*csc(1/10*Pi)/GAMMA(9/10)+3*Psi(1,1/10)*Psi(1/10)*Pi*csc(1/10*Pi)/GAMMA (9/10)+Psi(1/10)^3*Pi*csc(1/10*Pi)/GAMMA(9/10), Psi(2,8/9)*GAMMA(8/9)+3*Psi(1,8 /9)*Psi(8/9)*GAMMA(8/9)+Psi(8/9)^3*GAMMA(8/9), Psi(2,7/9)*GAMMA(7/9)+3*Psi(1,7/ 9)*Psi(7/9)*GAMMA(7/9)+Psi(7/9)^3*GAMMA(7/9), Psi(2,5/9)*GAMMA(5/9)+3*Psi(1,5/9 )*Psi(5/9)*GAMMA(5/9)+Psi(5/9)^3*GAMMA(5/9), Psi(2,4/9)*GAMMA(4/9)+3*Psi(1,4/9) *Psi(4/9)*GAMMA(4/9)+Psi(4/9)^3*GAMMA(4/9), Psi(2,2/9)*GAMMA(2/9)+3*Psi(1,2/9)* Psi(2/9)*GAMMA(2/9)+Psi(2/9)^3*GAMMA(2/9), Psi(2,1/9)*GAMMA(1/9)+3*Psi(1,1/9)* Psi(1/9)*GAMMA(1/9)+Psi(1/9)^3*GAMMA(1/9), Psi(2,7/8)*GAMMA(7/8)+3*Psi(1,7/8)* Psi(7/8)*GAMMA(7/8)+Psi(7/8)^3*GAMMA(7/8), Psi(2,5/8)*GAMMA(5/8)+3*Psi(1,5/8)* Psi(5/8)*GAMMA(5/8)+Psi(5/8)^3*GAMMA(5/8), Psi(2,3/8)*Pi*csc(3/8*Pi)/GAMMA(5/8) +3*Psi(1,3/8)*Psi(3/8)*Pi*csc(3/8*Pi)/GAMMA(5/8)+Psi(3/8)^3*Pi*csc(3/8*Pi)/ GAMMA(5/8), Psi(2,1/8)*Pi*csc(1/8*Pi)/GAMMA(7/8)+3*Psi(1,1/8)*Psi(1/8)*Pi*csc(1 /8*Pi)/GAMMA(7/8)+Psi(1/8)^3*Pi*csc(1/8*Pi)/GAMMA(7/8), Psi(2,5/6)*GAMMA(5/6)+3 *Psi(1,5/6)*(-gamma-2*ln(2)-3/2*ln(3)+1/2*Pi*3^(1/2))*GAMMA(5/6)+(-gamma-2*ln(2 )-3/2*ln(3)+1/2*Pi*3^(1/2))^3*GAMMA(5/6), 2*Psi(2,1/6)*Pi/GAMMA(5/6)+6*Psi(1,1/ 6)*(-gamma-2*ln(2)-3/2*ln(3)-1/2*Pi*3^(1/2))*Pi/GAMMA(5/6)+2*(-gamma-2*ln(2)-3/ 2*ln(3)-1/2*Pi*3^(1/2))^3*Pi/GAMMA(5/6), Psi(2,4/5)*GAMMA(4/5)+3*Psi(1,4/5)*Psi (4/5)*GAMMA(4/5)+Psi(4/5)^3*GAMMA(4/5), Psi(2,3/5)*GAMMA(3/5)+3*Psi(1,3/5)*Psi( 3/5)*GAMMA(3/5)+Psi(3/5)^3*GAMMA(3/5), Psi(2,2/5)*Pi*csc(2/5*Pi)/GAMMA(3/5)+3* Psi(1,2/5)*Psi(2/5)*Pi*csc(2/5*Pi)/GAMMA(3/5)+Psi(2/5)^3*Pi*csc(2/5*Pi)/GAMMA(3 /5), Psi(2,1/5)*Pi*csc(1/5*Pi)/GAMMA(4/5)+3*Psi(1,1/5)*Psi(1/5)*Pi*csc(1/5*Pi)/ GAMMA(4/5)+Psi(1/5)^3*Pi*csc(1/5*Pi)/GAMMA(4/5), Psi(2,3/4)*GAMMA(3/4)+3*Psi(1, 3/4)*(-gamma-3*ln(2)+1/2*Pi)*GAMMA(3/4)+(-gamma-3*ln(2)+1/2*Pi)^3*GAMMA(3/4), Psi(2,1/4)*Pi*2^(1/2)/GAMMA(3/4)+3*(8*Catalan+Pi^2)*(-gamma-3*ln(2)-1/2*Pi)*Pi* 2^(1/2)/GAMMA(3/4)+(-gamma-3*ln(2)-1/2*Pi)^3*Pi*2^(1/2)/GAMMA(3/4), Psi(2,2/3)* GAMMA(2/3)+3*Psi(1,2/3)*(-gamma+1/6*Pi*3^(1/2)-3/2*ln(3))*GAMMA(2/3)+(-gamma+1/ 6*Pi*3^(1/2)-3/2*ln(3))^3*GAMMA(2/3), 2/3*Psi(2,1/3)*Pi*3^(1/2)/GAMMA(2/3)+2* Psi(1,1/3)*(-gamma-1/6*Pi*3^(1/2)-3/2*ln(3))*Pi*3^(1/2)/GAMMA(2/3)+2/3*(-gamma-\ 1/6*Pi*3^(1/2)-3/2*ln(3))^3*Pi*3^(1/2)/GAMMA(2/3), -14*Zeta(3)*Pi^(1/2)+3/2*Pi^ (5/2)*(-gamma-2*ln(2))+(-gamma-2*ln(2))^3*Pi^(1/2), -2*Zeta(3)-1/2*Pi^2*gamma- gamma^3, 2-2*Zeta(3)+3*(-1+1/6*Pi^2)*(1-gamma)+(1-gamma)^3, 1/2*(16-14*Zeta(3)) *Pi^(1/2)+3/2*(-4+1/2*Pi^2)*(2-gamma-2*ln(2))*Pi^(1/2)+1/2*(2-gamma-2*ln(2))^3* Pi^(1/2), 3/4*(448/27-14*Zeta(3))*Pi^(1/2)+9/4*(-40/9+1/2*Pi^2)*(8/3-gamma-2*ln (2))*Pi^(1/2)+3/4*(8/3-gamma-2*ln(2))^3*Pi^(1/2)], [Ei(1,11/12), Ei(1,7/12), Ei (1,5/12), Ei(1,1/12), Ei(1,9/10), Ei(1,7/10), Ei(1,3/10), Ei(1,1/10), Ei(1,8/9) , Ei(1,7/9), Ei(1,5/9), Ei(1,4/9), Ei(1,2/9), Ei(1,1/9), Ei(1,7/8), Ei(1,5/8), Ei(1,3/8), Ei(1,1/8), Ei(1,5/6), Ei(1,1/6), Ei(1,4/5), Ei(1,3/5), Ei(1,2/5), Ei (1,1/5), Ei(1,3/4), Ei(1,1/4), Ei(1,2/3), Ei(1,1/3), Ei(1,1/2), Ei(1,1), Ei(1,2 ), Ei(1,3/2), Ei(1,5/2)], [Ei(2,11/12), Ei(2,7/12), Ei(2,5/12), Ei(2,1/12), Ei( 2,9/10), Ei(2,7/10), Ei(2,3/10), Ei(2,1/10), Ei(2,8/9), Ei(2,7/9), Ei(2,5/9), Ei(2,4/9), Ei(2,2/9), Ei(2,1/9), Ei(2,7/8), Ei(2,5/8), Ei(2,3/8), Ei(2,1/8), Ei (2,5/6), Ei(2,1/6), Ei(2,4/5), Ei(2,3/5), Ei(2,2/5), Ei(2,1/5), Ei(2,3/4), Ei(2 ,1/4), Ei(2,2/3), Ei(2,1/3), Ei(2,1/2), Ei(2,1), Ei(2,2), Ei(2,3/2), Ei(2,5/2)] , [Ei(3,11/12), Ei(3,7/12), Ei(3,5/12), Ei(3,1/12), Ei(3,9/10), Ei(3,7/10), Ei( 3,3/10), Ei(3,1/10), Ei(3,8/9), Ei(3,7/9), Ei(3,5/9), Ei(3,4/9), Ei(3,2/9), Ei( 3,1/9), Ei(3,7/8), Ei(3,5/8), Ei(3,3/8), Ei(3,1/8), Ei(3,5/6), Ei(3,1/6), Ei(3, 4/5), Ei(3,3/5), Ei(3,2/5), Ei(3,1/5), Ei(3,3/4), Ei(3,1/4), Ei(3,2/3), Ei(3,1/ 3), Ei(3,1/2), Ei(3,1), Ei(3,2), Ei(3,3/2), Ei(3,5/2)], [Pi, exp(1), Pi^exp(1), exp(1)^exp(1), exp(1)^exp(-1), LambertW(1), 1/LambertW(1), exp(gamma), exp(Pi), exp(-gamma), Ei(1), gamma^Pi, Pi^gamma, 1, sin(1), cos(1), tan(1)], [Zeta(1/2), Zeta(1/3), Zeta(2/3), Zeta(3/2), Zeta(-1/2), -1/2*ln(2*Pi), Pi, 1/6*Pi^2, Zeta( 1,2), Zeta(1,11/12), Zeta(1,7/12), Zeta(1,5/12), Zeta(1,1/12), Zeta(1,9/10), Zeta(1,7/10), Zeta(1,3/10), Zeta(1,1/10), Zeta(1,8/9), Zeta(1,7/9), Zeta(1,5/9) , Zeta(1,4/9), Zeta(1,2/9), Zeta(1,1/9), Zeta(1,7/8), Zeta(1,5/8), Zeta(1,3/8), Zeta(1,1/8), Zeta(1,5/6), Zeta(1,1/6), Zeta(1,4/5), Zeta(1,3/5), Zeta(1,2/5), Zeta(1,1/5), Zeta(1,3/4), Zeta(1,1/4), Zeta(1,2/3), Zeta(1,1/3), Zeta(1/2)*(1/2 *gamma+1/2*ln(8*Pi)+1/4*Pi)], [KelvinBer(0,11/12), KelvinBer(0,7/12), KelvinBer (0,5/12), KelvinBer(0,1/12), KelvinBer(0,9/10), KelvinBer(0,7/10), KelvinBer(0, 3/10), KelvinBer(0,1/10), KelvinBer(0,8/9), KelvinBer(0,7/9), KelvinBer(0,5/9), KelvinBer(0,4/9), KelvinBer(0,2/9), KelvinBer(0,1/9), KelvinBer(0,7/8), KelvinBer(0,5/8), KelvinBer(0,3/8), KelvinBer(0,1/8), KelvinBer(0,5/6), KelvinBer(0,1/6), KelvinBer(0,4/5), KelvinBer(0,3/5), KelvinBer(0,2/5), KelvinBer(0,1/5), KelvinBer(0,3/4), KelvinBer(0,1/4), KelvinBer(0,2/3), KelvinBer(0,1/3), KelvinBer(0,1/2), KelvinBer(0,1), KelvinBer(0,2), KelvinBer(0 ,3/2), KelvinBer(0,5/2)], [KelvinBer(1,11/12), KelvinBer(1,7/12), KelvinBer(1,5 /12), KelvinBer(1,1/12), KelvinBer(1,9/10), KelvinBer(1,7/10), KelvinBer(1,3/10 ), KelvinBer(1,1/10), KelvinBer(1,8/9), KelvinBer(1,7/9), KelvinBer(1,5/9), KelvinBer(1,4/9), KelvinBer(1,2/9), KelvinBer(1,1/9), KelvinBer(1,7/8), KelvinBer(1,5/8), KelvinBer(1,3/8), KelvinBer(1,1/8), KelvinBer(1,5/6), KelvinBer(1,1/6), KelvinBer(1,4/5), KelvinBer(1,3/5), KelvinBer(1,2/5), KelvinBer(1,1/5), KelvinBer(1,3/4), KelvinBer(1,1/4), KelvinBer(1,2/3), KelvinBer(1,1/3), KelvinBer(1,1/2), KelvinBer(1,1), KelvinBer(1,2), KelvinBer(1 ,3/2), KelvinBer(1,5/2)], [KelvinBer(2,11/12), KelvinBer(2,7/12), KelvinBer(2,5 /12), KelvinBer(2,1/12), KelvinBer(2,9/10), KelvinBer(2,7/10), KelvinBer(2,3/10 ), KelvinBer(2,1/10), KelvinBer(2,8/9), KelvinBer(2,7/9), KelvinBer(2,5/9), KelvinBer(2,4/9), KelvinBer(2,2/9), KelvinBer(2,1/9), KelvinBer(2,7/8), KelvinBer(2,5/8), KelvinBer(2,3/8), KelvinBer(2,1/8), KelvinBer(2,5/6), KelvinBer(2,1/6), KelvinBer(2,4/5), KelvinBer(2,3/5), KelvinBer(2,2/5), KelvinBer(2,1/5), KelvinBer(2,3/4), KelvinBer(2,1/4), KelvinBer(2,2/3), KelvinBer(2,1/3), KelvinBer(2,1/2), KelvinBer(2,1), KelvinBer(2,2), KelvinBer(2 ,3/2), KelvinBer(2,5/2)], [KelvinKer(0,11/12), KelvinKer(0,7/12), KelvinKer(0,5 /12), KelvinKer(0,1/12), KelvinKer(0,9/10), KelvinKer(0,7/10), KelvinKer(0,3/10 ), KelvinKer(0,1/10), KelvinKer(0,8/9), KelvinKer(0,7/9), KelvinKer(0,5/9), KelvinKer(0,4/9), KelvinKer(0,2/9), KelvinKer(0,1/9), KelvinKer(0,7/8), KelvinKer(0,5/8), KelvinKer(0,3/8), KelvinKer(0,1/8), KelvinKer(0,5/6), KelvinKer(0,1/6), KelvinKer(0,4/5), KelvinKer(0,3/5), KelvinKer(0,2/5), KelvinKer(0,1/5), KelvinKer(0,3/4), KelvinKer(0,1/4), KelvinKer(0,2/3), KelvinKer(0,1/3), KelvinKer(0,1/2), KelvinKer(0,1), KelvinKer(0,2), KelvinKer(0 ,3/2), KelvinKer(0,5/2)], [KelvinKer(1,11/12), KelvinKer(1,7/12), KelvinKer(1,5 /12), KelvinKer(1,1/12), KelvinKer(1,9/10), KelvinKer(1,7/10), KelvinKer(1,3/10 ), KelvinKer(1,1/10), KelvinKer(1,8/9), KelvinKer(1,7/9), KelvinKer(1,5/9), KelvinKer(1,4/9), KelvinKer(1,2/9), KelvinKer(1,1/9), KelvinKer(1,7/8), KelvinKer(1,5/8), KelvinKer(1,3/8), KelvinKer(1,1/8), KelvinKer(1,5/6), KelvinKer(1,1/6), KelvinKer(1,4/5), KelvinKer(1,3/5), KelvinKer(1,2/5), KelvinKer(1,1/5), KelvinKer(1,3/4), KelvinKer(1,1/4), KelvinKer(1,2/3), KelvinKer(1,1/3), KelvinKer(1,1/2), KelvinKer(1,1), KelvinKer(1,2), KelvinKer(1 ,3/2), KelvinKer(1,5/2)], [KelvinKer(2,11/12), KelvinKer(2,7/12), KelvinKer(2,5 /12), KelvinKer(2,1/12), KelvinKer(2,9/10), KelvinKer(2,7/10), KelvinKer(2,3/10 ), KelvinKer(2,1/10), KelvinKer(2,8/9), KelvinKer(2,7/9), KelvinKer(2,5/9), KelvinKer(2,4/9), KelvinKer(2,2/9), KelvinKer(2,1/9), KelvinKer(2,7/8), KelvinKer(2,5/8), KelvinKer(2,3/8), KelvinKer(2,1/8), KelvinKer(2,5/6), KelvinKer(2,1/6), KelvinKer(2,4/5), KelvinKer(2,3/5), KelvinKer(2,2/5), KelvinKer(2,1/5), KelvinKer(2,3/4), KelvinKer(2,1/4), KelvinKer(2,2/3), KelvinKer(2,1/3), KelvinKer(2,1/2), KelvinKer(2,1), KelvinKer(2,2), KelvinKer(2 ,3/2), KelvinKer(2,5/2)], [KelvinHer(0,11/12), KelvinHer(0,7/12), KelvinHer(0,5 /12), KelvinHer(0,1/12), KelvinHer(0,9/10), KelvinHer(0,7/10), KelvinHer(0,3/10 ), KelvinHer(0,1/10), KelvinHer(0,8/9), KelvinHer(0,7/9), KelvinHer(0,5/9), KelvinHer(0,4/9), KelvinHer(0,2/9), KelvinHer(0,1/9), KelvinHer(0,7/8), KelvinHer(0,5/8), KelvinHer(0,3/8), KelvinHer(0,1/8), KelvinHer(0,5/6), KelvinHer(0,1/6), KelvinHer(0,4/5), KelvinHer(0,3/5), KelvinHer(0,2/5), KelvinHer(0,1/5), KelvinHer(0,3/4), KelvinHer(0,1/4), KelvinHer(0,2/3), KelvinHer(0,1/3), KelvinHer(0,1/2), KelvinHer(0,1), KelvinHer(0,2), KelvinHer(0 ,3/2), KelvinHer(0,5/2)], [KelvinHer(1,11/12), KelvinHer(1,7/12), KelvinHer(1,5 /12), KelvinHer(1,1/12), KelvinHer(1,9/10), KelvinHer(1,7/10), KelvinHer(1,3/10 ), KelvinHer(1,1/10), KelvinHer(1,8/9), KelvinHer(1,7/9), KelvinHer(1,5/9), KelvinHer(1,4/9), KelvinHer(1,2/9), KelvinHer(1,1/9), KelvinHer(1,7/8), KelvinHer(1,5/8), KelvinHer(1,3/8), KelvinHer(1,1/8), KelvinHer(1,5/6), KelvinHer(1,1/6), KelvinHer(1,4/5), KelvinHer(1,3/5), KelvinHer(1,2/5), KelvinHer(1,1/5), KelvinHer(1,3/4), KelvinHer(1,1/4), KelvinHer(1,2/3), KelvinHer(1,1/3), KelvinHer(1,1/2), KelvinHer(1,1), KelvinHer(1,2), KelvinHer(1 ,3/2), KelvinHer(1,5/2)], [KelvinHer(2,11/12), KelvinHer(2,7/12), KelvinHer(2,5 /12), KelvinHer(2,1/12), KelvinHer(2,9/10), KelvinHer(2,7/10), KelvinHer(2,3/10 ), KelvinHer(2,1/10), KelvinHer(2,8/9), KelvinHer(2,7/9), KelvinHer(2,5/9), KelvinHer(2,4/9), KelvinHer(2,2/9), KelvinHer(2,1/9), KelvinHer(2,7/8), KelvinHer(2,5/8), KelvinHer(2,3/8), KelvinHer(2,1/8), KelvinHer(2,5/6), KelvinHer(2,1/6), KelvinHer(2,4/5), KelvinHer(2,3/5), KelvinHer(2,2/5), KelvinHer(2,1/5), KelvinHer(2,3/4), KelvinHer(2,1/4), KelvinHer(2,2/3), KelvinHer(2,1/3), KelvinHer(2,1/2), KelvinHer(2,1), KelvinHer(2,2), KelvinHer(2 ,3/2), KelvinHer(2,5/2)], [KelvinBei(0,11/12), KelvinBei(0,7/12), KelvinBei(0,5 /12), KelvinBei(0,1/12), KelvinBei(0,9/10), KelvinBei(0,7/10), KelvinBei(0,3/10 ), KelvinBei(0,1/10), KelvinBei(0,8/9), KelvinBei(0,7/9), KelvinBei(0,5/9), KelvinBei(0,4/9), KelvinBei(0,2/9), KelvinBei(0,1/9), KelvinBei(0,7/8), KelvinBei(0,5/8), KelvinBei(0,3/8), KelvinBei(0,1/8), KelvinBei(0,5/6), KelvinBei(0,1/6), KelvinBei(0,4/5), KelvinBei(0,3/5), KelvinBei(0,2/5), KelvinBei(0,1/5), KelvinBei(0,3/4), KelvinBei(0,1/4), KelvinBei(0,2/3), KelvinBei(0,1/3), KelvinBei(0,1/2), KelvinBei(0,1), KelvinBei(0,2), KelvinBei(0 ,3/2), KelvinBei(0,5/2)], [KelvinBei(1,11/12), KelvinBei(1,7/12), KelvinBei(1,5 /12), KelvinBei(1,1/12), KelvinBei(1,9/10), KelvinBei(1,7/10), KelvinBei(1,3/10 ), KelvinBei(1,1/10), KelvinBei(1,8/9), KelvinBei(1,7/9), KelvinBei(1,5/9), KelvinBei(1,4/9), KelvinBei(1,2/9), KelvinBei(1,1/9), KelvinBei(1,7/8), KelvinBei(1,5/8), KelvinBei(1,3/8), KelvinBei(1,1/8), KelvinBei(1,5/6), KelvinBei(1,1/6), KelvinBei(1,4/5), KelvinBei(1,3/5), KelvinBei(1,2/5), KelvinBei(1,1/5), KelvinBei(1,3/4), KelvinBei(1,1/4), KelvinBei(1,2/3), KelvinBei(1,1/3), KelvinBei(1,1/2), KelvinBei(1,1), KelvinBei(1,2), KelvinBei(1 ,3/2), KelvinBei(1,5/2)], [KelvinBei(2,11/12), KelvinBei(2,7/12), KelvinBei(2,5 /12), KelvinBei(2,1/12), KelvinBei(2,9/10), KelvinBei(2,7/10), KelvinBei(2,3/10 ), KelvinBei(2,1/10), KelvinBei(2,8/9), KelvinBei(2,7/9), KelvinBei(2,5/9), KelvinBei(2,4/9), KelvinBei(2,2/9), KelvinBei(2,1/9), KelvinBei(2,7/8), KelvinBei(2,5/8), KelvinBei(2,3/8), KelvinBei(2,1/8), KelvinBei(2,5/6), KelvinBei(2,1/6), KelvinBei(2,4/5), KelvinBei(2,3/5), KelvinBei(2,2/5), KelvinBei(2,1/5), KelvinBei(2,3/4), KelvinBei(2,1/4), KelvinBei(2,2/3), KelvinBei(2,1/3), KelvinBei(2,1/2), KelvinBei(2,1), KelvinBei(2,2), KelvinBei(2 ,3/2), KelvinBei(2,5/2)], [KelvinKei(0,11/12), KelvinKei(0,7/12), KelvinKei(0,5 /12), KelvinKei(0,1/12), KelvinKei(0,9/10), KelvinKei(0,7/10), KelvinKei(0,3/10 ), KelvinKei(0,1/10), KelvinKei(0,8/9), KelvinKei(0,7/9), KelvinKei(0,5/9), KelvinKei(0,4/9), KelvinKei(0,2/9), KelvinKei(0,1/9), KelvinKei(0,7/8), KelvinKei(0,5/8), KelvinKei(0,3/8), KelvinKei(0,1/8), KelvinKei(0,5/6), KelvinKei(0,1/6), KelvinKei(0,4/5), KelvinKei(0,3/5), KelvinKei(0,2/5), KelvinKei(0,1/5), KelvinKei(0,3/4), KelvinKei(0,1/4), KelvinKei(0,2/3), KelvinKei(0,1/3), KelvinKei(0,1/2), KelvinKei(0,1), KelvinKei(0,2), KelvinKei(0 ,3/2), KelvinKei(0,5/2)], [KelvinKei(1,11/12), KelvinKei(1,7/12), KelvinKei(1,5 /12), KelvinKei(1,1/12), KelvinKei(1,9/10), KelvinKei(1,7/10), KelvinKei(1,3/10 ), KelvinKei(1,1/10), KelvinKei(1,8/9), KelvinKei(1,7/9), KelvinKei(1,5/9), KelvinKei(1,4/9), KelvinKei(1,2/9), KelvinKei(1,1/9), KelvinKei(1,7/8), KelvinKei(1,5/8), KelvinKei(1,3/8), KelvinKei(1,1/8), KelvinKei(1,5/6), KelvinKei(1,1/6), KelvinKei(1,4/5), KelvinKei(1,3/5), KelvinKei(1,2/5), KelvinKei(1,1/5), KelvinKei(1,3/4), KelvinKei(1,1/4), KelvinKei(1,2/3), KelvinKei(1,1/3), KelvinKei(1,1/2), KelvinKei(1,1), KelvinKei(1,2), KelvinKei(1 ,3/2), KelvinKei(1,5/2)], [KelvinKei(2,11/12), KelvinKei(2,7/12), KelvinKei(2,5 /12), KelvinKei(2,1/12), KelvinKei(2,9/10), KelvinKei(2,7/10), KelvinKei(2,3/10 ), KelvinKei(2,1/10), KelvinKei(2,8/9), KelvinKei(2,7/9), KelvinKei(2,5/9), KelvinKei(2,4/9), KelvinKei(2,2/9), KelvinKei(2,1/9), KelvinKei(2,7/8), KelvinKei(2,5/8), KelvinKei(2,3/8), KelvinKei(2,1/8), KelvinKei(2,5/6), KelvinKei(2,1/6), KelvinKei(2,4/5), KelvinKei(2,3/5), KelvinKei(2,2/5), KelvinKei(2,1/5), KelvinKei(2,3/4), KelvinKei(2,1/4), KelvinKei(2,2/3), KelvinKei(2,1/3), KelvinKei(2,1/2), KelvinKei(2,1), KelvinKei(2,2), KelvinKei(2 ,3/2), KelvinKei(2,5/2)], [KelvinHei(0,11/12), KelvinHei(0,7/12), KelvinHei(0,5 /12), KelvinHei(0,1/12), KelvinHei(0,9/10), KelvinHei(0,7/10), KelvinHei(0,3/10 ), KelvinHei(0,1/10), KelvinHei(0,8/9), KelvinHei(0,7/9), KelvinHei(0,5/9), KelvinHei(0,4/9), KelvinHei(0,2/9), KelvinHei(0,1/9), KelvinHei(0,7/8), KelvinHei(0,5/8), KelvinHei(0,3/8), KelvinHei(0,1/8), KelvinHei(0,5/6), KelvinHei(0,1/6), KelvinHei(0,4/5), KelvinHei(0,3/5), KelvinHei(0,2/5), KelvinHei(0,1/5), KelvinHei(0,3/4), KelvinHei(0,1/4), KelvinHei(0,2/3), KelvinHei(0,1/3), KelvinHei(0,1/2), KelvinHei(0,1), KelvinHei(0,2), KelvinHei(0 ,3/2), KelvinHei(0,5/2)], [KelvinHei(1,11/12), KelvinHei(1,7/12), KelvinHei(1,5 /12), KelvinHei(1,1/12), KelvinHei(1,9/10), KelvinHei(1,7/10), KelvinHei(1,3/10 ), KelvinHei(1,1/10), KelvinHei(1,8/9), KelvinHei(1,7/9), KelvinHei(1,5/9), KelvinHei(1,4/9), KelvinHei(1,2/9), KelvinHei(1,1/9), KelvinHei(1,7/8), KelvinHei(1,5/8), KelvinHei(1,3/8), KelvinHei(1,1/8), KelvinHei(1,5/6), KelvinHei(1,1/6), KelvinHei(1,4/5), KelvinHei(1,3/5), KelvinHei(1,2/5), KelvinHei(1,1/5), KelvinHei(1,3/4), KelvinHei(1,1/4), KelvinHei(1,2/3), KelvinHei(1,1/3), KelvinHei(1,1/2), KelvinHei(1,1), KelvinHei(1,2), KelvinHei(1 ,3/2), KelvinHei(1,5/2)], [KelvinHei(2,11/12), KelvinHei(2,7/12), KelvinHei(2,5 /12), KelvinHei(2,1/12), KelvinHei(2,9/10), KelvinHei(2,7/10), KelvinHei(2,3/10 ), KelvinHei(2,1/10), KelvinHei(2,8/9), KelvinHei(2,7/9), KelvinHei(2,5/9), KelvinHei(2,4/9), KelvinHei(2,2/9), KelvinHei(2,1/9), KelvinHei(2,7/8), KelvinHei(2,5/8), KelvinHei(2,3/8), KelvinHei(2,1/8), KelvinHei(2,5/6), KelvinHei(2,1/6), KelvinHei(2,4/5), KelvinHei(2,3/5), KelvinHei(2,2/5), KelvinHei(2,1/5), KelvinHei(2,3/4), KelvinHei(2,1/4), KelvinHei(2,2/3), KelvinHei(2,1/3), KelvinHei(2,1/2), KelvinHei(2,1), KelvinHei(2,2), KelvinHei(2 ,3/2), KelvinHei(2,5/2)], [BesselYZeros(0,1), BesselYZeros(0,2), BesselYZeros(0 ,3), BesselYZeros(0,4), BesselYZeros(0,5), BesselYZeros(0,6), BesselYZeros(0,7) , BesselYZeros(0,8), BesselYZeros(0,9), BesselYZeros(0,10), BesselYZeros(0,11), BesselYZeros(0,12), BesselYZeros(0,13), BesselYZeros(0,14), BesselYZeros(0,15), BesselYZeros(0,16), BesselYZeros(0,17), BesselYZeros(0,18), BesselYZeros(0,19), BesselYZeros(0,20), BesselYZeros(0,21), BesselYZeros(0,22), BesselYZeros(0,23), BesselYZeros(0,24), BesselYZeros(0,25), BesselYZeros(0,26), BesselYZeros(0,27), BesselYZeros(0,28), BesselYZeros(0,29), BesselYZeros(0,30), BesselYZeros(0,31), BesselYZeros(0,32)], [BesselYZeros(1,1), BesselYZeros(1,2), BesselYZeros(1,3), BesselYZeros(1,4), BesselYZeros(1,5), BesselYZeros(1,6), BesselYZeros(1,7), BesselYZeros(1,8), BesselYZeros(1,9), BesselYZeros(1,10), BesselYZeros(1,11), BesselYZeros(1,12), BesselYZeros(1,13), BesselYZeros(1,14), BesselYZeros(1,15), BesselYZeros(1,16), BesselYZeros(1,17), BesselYZeros(1,18), BesselYZeros(1,19), BesselYZeros(1,20), BesselYZeros(1,21), BesselYZeros(1,22), BesselYZeros(1,23), BesselYZeros(1,24), BesselYZeros(1,25), BesselYZeros(1,26), BesselYZeros(1,27), BesselYZeros(1,28), BesselYZeros(1,29), BesselYZeros(1,30), BesselYZeros(1,31), BesselYZeros(1,32)], [BesselYZeros(2,1), BesselYZeros(2,2), BesselYZeros(2,3), BesselYZeros(2,4), BesselYZeros(2,5), BesselYZeros(2,6), BesselYZeros(2,7), BesselYZeros(2,8), BesselYZeros(2,9), BesselYZeros(2,10), BesselYZeros(2,11), BesselYZeros(2,12), BesselYZeros(2,13), BesselYZeros(2,14), BesselYZeros(2,15), BesselYZeros(2,16), BesselYZeros(2,17), BesselYZeros(2,18), BesselYZeros(2,19), BesselYZeros(2,20), BesselYZeros(2,21), BesselYZeros(2,22), BesselYZeros(2,23), BesselYZeros(2,24), BesselYZeros(2,25), BesselYZeros(2,26), BesselYZeros(2,27), BesselYZeros(2,28), BesselYZeros(2,29), BesselYZeros(2,30), BesselYZeros(2,31), BesselYZeros(2,32)], [BesselYZeros(3/2,1), BesselYZeros(3/2,2), BesselYZeros(3/ 2,3), BesselYZeros(3/2,4), BesselYZeros(3/2,5), BesselYZeros(3/2,6), BesselYZeros(3/2,7), BesselYZeros(3/2,8), BesselYZeros(3/2,9), BesselYZeros(3/2 ,10), BesselYZeros(3/2,11), BesselYZeros(3/2,12), BesselYZeros(3/2,13), BesselYZeros(3/2,14), BesselYZeros(3/2,15), BesselYZeros(3/2,16), BesselYZeros( 3/2,17), BesselYZeros(3/2,18), BesselYZeros(3/2,19), BesselYZeros(3/2,20), BesselYZeros(3/2,21), BesselYZeros(3/2,22), BesselYZeros(3/2,23), BesselYZeros( 3/2,24), BesselYZeros(3/2,25), BesselYZeros(3/2,26), BesselYZeros(3/2,27), BesselYZeros(3/2,28), BesselYZeros(3/2,29), BesselYZeros(3/2,30), BesselYZeros( 3/2,31), BesselYZeros(3/2,32)], [BesselYZeros(5/2,1), BesselYZeros(5/2,2), BesselYZeros(5/2,3), BesselYZeros(5/2,4), BesselYZeros(5/2,5), BesselYZeros(5/2 ,6), BesselYZeros(5/2,7), BesselYZeros(5/2,8), BesselYZeros(5/2,9), BesselYZeros(5/2,10), BesselYZeros(5/2,11), BesselYZeros(5/2,12), BesselYZeros( 5/2,13), BesselYZeros(5/2,14), BesselYZeros(5/2,15), BesselYZeros(5/2,16), BesselYZeros(5/2,17), BesselYZeros(5/2,18), BesselYZeros(5/2,19), BesselYZeros( 5/2,20), BesselYZeros(5/2,21), BesselYZeros(5/2,22), BesselYZeros(5/2,23), BesselYZeros(5/2,24), BesselYZeros(5/2,25), BesselYZeros(5/2,26), BesselYZeros( 5/2,27), BesselYZeros(5/2,28), BesselYZeros(5/2,29), BesselYZeros(5/2,30), BesselYZeros(5/2,31), BesselYZeros(5/2,32)], [gamma(0), gamma(1), gamma(2), gamma(3), gamma(4), gamma(5), gamma(6), gamma(7), gamma(8), gamma(9), gamma(10) , gamma(11), gamma(12), gamma(13), gamma(14), gamma(15), gamma(16), gamma(17), gamma(18), gamma(19), gamma(20), gamma(21), gamma(22), gamma(23), gamma(24), gamma(25), gamma(26), gamma(27), gamma(28), gamma(29), gamma(30), gamma(31), gamma(32)], [1/2*Pi, 1, 1/2*Pi*2^(1/2), Pi*cos(1/5*Pi), 1/2*Pi*3^(1/2), Pi*cos( 1/7*Pi), Pi*cos(2/7*Pi), Pi*cos(1/8*Pi), Pi*cos(3/8*Pi), Pi*cos(1/9*Pi), Pi*cos (2/9*Pi), Pi*cos(1/10*Pi), Pi*cos(3/10*Pi), Pi*cos(1/11*Pi), Pi*cos(2/11*Pi), Pi*cos(3/11*Pi), Pi*cos(4/11*Pi), Pi*cos(1/12*Pi), Pi*cos(1/13*Pi), Pi*cos(2/13 *Pi), Pi*cos(3/13*Pi), Pi*cos(4/13*Pi), Pi*cos(5/13*Pi), Pi*cos(1/14*Pi), Pi* cos(3/14*Pi), Pi*cos(5/14*Pi), Pi*cos(1/15*Pi), Pi*cos(2/15*Pi), Pi*cos(1/16*Pi ), Pi*cos(3/16*Pi), Pi*cos(5/16*Pi)]]: val:=[[3.1415926535897932384626433832795028841971693993751058209749445923078164062862\ 0899862803482534211706798214808651328230664709384460955058223172535940812848111\ 7450284102701938521105559644622948954930381964428810975665933446128475648233786\ 7831652712019091456485669234603486104543266482133936072602491412737245870066063\ 1558817488152092096282925409171536436789259036001133053054882046652138414695194\ 1511609433057270365759591953092186117381932611793105118548074462379962749567351\ 8857527248912279381830119491298336733624, 2.71828182845904523536028747135266249\ 7757247093699959574966967627724076630353547594571382178525166427427466391932003\ 0599218174135966290435729003342952605956307381323286279434907632338298807531952\ 5101901157383418793070215408914993488416750924476146066808226480016847741185374\ 2345442437107539077744992069551702761838606261331384583000752044933826560297606\ 7371132007093287091274437470472306969772093101416928368190255151086574637721112\ 5238978442505695369677078544996996794686445490598793163688923009879312773617821\ 54, .57721566490153286060651209008240243104215933593992359880576723488486772677\ 7664670936947063291746749514631447249807082480960504014486542836224173997644923\ 5362535003337429373377376739427925952582470949160087352039481656708532331517766\ 1152862119950150798479374508570574002992135478614669402960432542151905877553526\ 7331399254012967420513754139549111685102807984234877587205038431093997361372553\ 0608893312676001724795378367592713515772261027349291394079843010341777177808815\ 4957066107501016191663340152278935867965497, .318309886183790671537767526745028\ 7240689192914809128974953346881177935952684530701802276055325061719121456854535\ 1591607378582369222915730575593482146339967845847993387481815514615549279385061\ 5377434785792434795323386724780483447258023664760228445399511431880923780173805\ 3479122409788218738756881710574461998928868004973446954789192217966461935661498\ 1233397292560939889730437576314957313392848207799174827869721996773619839992488\ 5751170342357716862235037534321093095073976019478920729518667536118604988993270\ 61066, 1.7324547146006334735830253158608296811557765522668050220484361328706553\ 1408655243008832840219409928068072365713733927403365107436497600204952701830359\ 6396707305909442397072331782502002116520644502668898642307209759154925790298538\ 6242668645399738708733475686831200919062320293838264477037106913572870186987484\ 8379175096982546494247936298597909980639465903315417212997411168731674397067564\ 7931510886944585857234503333160104720811477804102357058856131680928997503865932\ 0003337641038813549358882749898767608270906880, 1., 1.6180339887498948482045868\ 3436563811772030917980576286213544862270526046281890244970720720418939113748475\ 4088075386891752126633862223536931793180060766726354433389086595939582905638322\ 6613199282902678806752087668925017116962070322210432162695486262963136144381497\ 5870122034080588795445474924618569536486444924104432077134494704956584678850987\ 4339442212544877066478091588460749988712400765217057517978834166256249407589069\ 7040002812104276217711177780531531714101170466659914669798731761356006708748071\ 013179523690, 1.414213562373095048801688724209698078569671875376948073176679737\ 9907324784621070388503875343276415727350138462309122970249248360558507372126441\ 2149709993583141322266592750559275579995050115278206057147010955997160597027453\ 4596862014728517418640889198609552329230484308714321450839762603627995251407989\ 6872533965463318088296406206152583523950547457502877599617298355752203375318570\ 1135437460340849884716038689997069900481503054402779031645424782306849293691862\ 15805784631115966687130130156185689872372352885092649, 1.7320508075688772935274\ 4634150587236694280525381038062805580697945193301690880003708114618675724857567\ 5626141415406703029969945094998952478811655512094373648528093231902305582067974\ 8201010846749232650153123432669033228866506722546689218379712270471316603678615\ 8801904998653737985938946765034750657605075661834812960610094760218719032508314\ 5829523959832997789824508288714463832917347224163984587855397667958063818353666\ 1108431737808943783161020883055249016700235207111442886959909563657970871684980\ 728994932964843, .5276716789686822587690324396669956076700476748563834523467367\ 7085900100797755980455451937322110358847014187946040187698617902899105659873892\ 8466700642441805435692255122075402006874316439014031958033650241671952654300755\ 4024735233140249788697917219180347055438922430045277779950030073606480284658408\ 2444876967332176018376118094041763096944911567764253992182382462708277019432793\ 7640756982177868114041961029578743586591323866331643962261436174293608287591310\ 35119708653818128702267451158762998844411471046430673282, 1.8951178163559367554\ 6652093433163426901706058173270759164622843188251383453380415354890071012613895\ 6971811095317944653742588149164163064688088186682538828669632338545095227555258\ 4813922121664599363599485433062854557616252281668681188028566378466656868886464\ 2429701909079047289030909933801909174699979183024948075858520888678370504137378\ 7840741646025838762836216227315975150610519254747276807032519631326806756707408\ 1472282422426968668416432079587467267122677092755988754777656819174952725603954\ 608115985285493707, .5671432904097838729999686622103555497538157871865125081351\ 3107922304579308668456669321944696175229455763802497286678978545235846594007299\ 5608516439289994614311571492959803594376698474635606134226846135698957045397762\ 4855707865877337063566333012384304556354297860850901542908192085605575237481965\ 8465950807273089050157336183159607066710803928391836014949964634934844831746591\ 5933636893368097149085698371751009354679216674755288973147558892503057282246048\ 65124854109688318448770433467727016574464765200627013360495, 1.0917440637039061\ 0145415947333389232498605012140824734500591379742325941109475838127796198555372\ 2057792972361920839986224930527898806431023616390766931037446813574878740713444\ 2144941142319057606969890305629337534541056204668793397936295336186107820704519\ 1125803795579830163245532162222374838866124790547178668681341023318383752472680\ 0055283392278019838232140405159386808777880685588092481019903780791166532258117\ 7940126228245457182702788067772535434522024240726088208460654719219101957397460\ 745848256629488029729, .9159655941772190150546035149323841107741493742816721342\ 6649811962176301977625476947935651292611510624857442261919619957903589880332585\ 9059431594737481158406995332028773319460519038727478164087865909024706484152163\ 0002287276409423882599577415088163974702524820115607076448838078733704899008647\ 7511322599713434074854075532307685653357680958352602193823239508007206803557610\ 4823573394231914982983618997706903640418086217941101917532743149978233976105512\ 24779530324875371878665828082360570225594194818097535097113157, 1.2020569031595\ 9428539973816151144999076498629234049888179227155534183820578631309018645587360\ 9335258146199157795260719418491995998673283213776396837207900161453941782949360\ 0667191915755222424942439615639096641032911590957809655146512799184051057152559\ 8801543710978110203982753256678760352233698494166181105701471577863949973752378\ 5277937030956025701853182790003076547107563048843320869711573742380793445031607\ 6253177145354444118311781822497185263570918244899879620350833575617202260339378\ 587032813126780799005418, 1.644934066848226436472415166646025189218949901206798\ 4377355582293700074704032008738336289006197587053040043189623371906796287246870\ 0500778793510294633086627683173330936776260509525100687214005479681155879489036\ 0823277761919840756455876963235636709710096948902085932008051636478878338846044\ 4451840598251452506833876314227658793929588063204472197908477340910590208378289\ 5492782638903797635833439420451591208180995934544487745879650088088940870111163\ 47106931614618428879815486244835909183448757387428394082760287563, 1.0823232337\ 1113819151600369654116790277475095191872690768297621544412061618696884655690963\ 5941699917232990813908042742414584071574570045349282003514716219207087783480910\ 8370293261887348261752736042355062193737506171117453492968677507330760668693411\ 8905862833795279512033449589046886262694822083503298363214902053212395572484664\ 6225501156660455882686787653504495435137197495148863132897472588575145532476189\ 2324749088343183216559962899648054020498855660906710813145472438251775250469502\ 552514132207698095596477686, 1.036927755143369926331365486457034168057080919501\ 9128119741926779038035897862814845600431065571333363796203414665566090428009617\ 7915597084183511072180087644866286337180353598363962365128888981335276775239827\ 5032022436845766444665958115993917977745039244643919666615966401620532520502151\ 9226713512567859748692860197447984320067268129753091990077465655860152657373003\ 7561532683149897971935039837858131992288488642533510425160251084990434640294117\ 24327576341508162332245618649927144272264614113007580868316916497918, .69314718\ 0559945309417232121458176568075500134360255254120680009493393621969694715605863\ 3269964186875420014810205706857336855202357581305570326707516350759619307275708\ 2837143519030703862389167347112335011536449795523912047517268157493206515552473\ 4139525882950453007095326366642654104239157814952043740430385500801944170641671\ 5186447128399681717845469570262716310645461502572074024816377733896385506952606\ 6834113727387372292895649354702576265209885969320196505855476470330679365443254\ 763274495125040606943814710469, 1.098612288668109691395245236922525704647490557\ 8227494517346943336374942932186089668736157548137320887879700290659578657423680\ 0422593051982105280187076727741060316276918338136717937369884436095990374257031\ 6795911521145591917750671347054940166775580222203170252946897560690106521505642\ 8681380363173732985777823669916547921318181490200301038236301222486527481982259\ 9109745249089645805346700884596508574844411901885708764749486707961308582941160\ 21661211840014098255143919487688936798494302255731535329685345295251459, .36787\ 9441171442321595523770161460867445811131031767834507836801697461495744899803357\ 1472743459196437466273252768439952082469757927901290086266535894940987830921943\ 6737733811504863899112514561634498771997868447595793974730254989249545323936620\ 7964810514647520612294223089164926566600365074577283705532853738388106804787611\ 9568298934544973507393185992166174330035699372082071022775180215849942337816907\ 1566767176233660823037612291562375720947000704050973342567757625252803037688616\ 515709365379954274063707178784454, 1.609437912434100374600759333226187639525601\ 3542685177219126478914741789877076577646301338780931796107999663030217155628997\ 2400522932467619963361661746370572755217963749718324565349285620234152505727015\ 5193600879777389725688193540712766154731221809527948521292821358059722567672285\ 2872404615894481783646713286739984246377595931894238439343534510509750544541947\ 4050136598708786738321313057297204065948538383872366275387654556271816151165993\ 09152432073649116778639006758725857787663915838368239504254879562394840310, .62\ 1334934559611810707199388180572584123413091114795295865323329355179450491639054\ 6077379969500084037235955675770402515859425168373704794653761877367442658167609\ 0859335469060381824494118203480696917327600469962615905511807600723419733105109\ 2403231772688562998371234205844711623532731979719577637574835668770352227707342\ 1334192804351272043543764840400426366442104971302150968187210052638671431243929\ 4528091401075361900567434285708105035017022022845862485731887712203078461402853\ 920920127909016917232389002982107911, 2.156810432291609984641272551729233297709\ 5065496584835236589520335389906756050447138059934609529064755651310302873886201\ 8603766807699772332764017029533598401612643967550996872581393623704371601743223\ 3920552562212153963647188472847758884035985880119348386002130384000091635469294\ 4417580516793400218532293955898056443516251419552977679437310815979251331276275\ 7057633531514568259712480483741113648364220902567991604377758416164151044881957\ 97893790941508464229016076733632680516183313550036766571917075523423282391497, .463647609000806116214256231461214402028537054286120263810933088720197864165741\ 7053006002839848878925565298522511908375135058181816250111554715305699441056207\ 1933626616488010153250275598792580551685388916747823728653879391801251719948401\ 3955838185115095021633306493872154609732078555557208601463227565242673052180457\ 4640086974505838973638964890026486877853780128236331217164578146836900993340528\ 8824862445623881190901589497679971970114967760016450062530168121256093353041349\ 396630129319242748402931611194920616208, 1.442695040888963407359924681001892137\ 4266459541529859341354494069311092191811850798855266228935063444969975183096525\ 4425559310168716835964272066215822347933627453736988471849363070138766353201553\ 3894318916664837643128615424047478422289497904795091530351338588054968865893096\ 9963680361105110756308441454272158283449418919339085777157900441712802468483413\ 7452269518236901123909403445996853990611342172288627802915801063006197676244565\ 2605995073753240625655815475938178305239725510724813077156267545807578171330193\ 6, 1.77245385090551602729816748334114518279754945612238712821380778985291128459\ 1032181374950656738544665416226823624282570666236152865724422602525093709602787\ 0684620376986531051228499251730289508262289320953792679628001746390153514797205\ 1670019018523401858544697449491264031392177552590621640541933250090639840761373\ 3477475153433667989789365851836408795451165161738760059067393431791332809854846\ 2481849020546548521956132515616474675150427387610561079961271072100603720444836\ 723652966137080943234988316684242138457096, 2.678938534707747633655692940974677\ 6441286893779573011009504283275904176101677438195409828890411887894191590492000\ 7226333571908456950447225997771336770846976816728982305000321834255032224715694\ 1817555449952728784394779441305765828401612319141596466526033727584020580635513\ 9432410320158394153827008552405210323387989550693638926386839167072816915423096\ 2733188118647749652229105564440907800963416463532740195630152839860021250692996\ 8705710068645447544970671212164354741292862624425305534516751066369888795702949\ 4999, 3.62560990822190831193068515586767200299516768288006546743337799956991924\ 3538729121618360136723384300361471751392420719965891524094022559977426458890361\ 4506064137448968541949992019267730379946308922124123183237079920843973699070939\ 0562092923234287027419144860395713683503686548799596836847647585148909040416634\ 0763033971806680595773423790855908071457831297635636882558792881119063516815850\ 8494748815027886731073105248798251663661287931641844174438276457548009199147768\ 019228150926119943229978378353634595543419476, 1.144729885849400174143427351353\ 0587116472948129153115715136230714721377698848260797836232702754897077020098122\ 2869798915904820552792345658727908107881028682527639391426634590290248477335886\ 9937789203119630824756794011916028217227379888126563178049823697313310695003600\ 0644054872638802232700964335049595118150662372524683433912698965797514047770385\ 7799539982584256602284850148136217915925250567076386860280763456889750512334360\ 7814399141442642959671289778113652645234504105900716081857082498118818318689767\ 2845928, 23.1406926327792690057290863679485473802661062426002119934450464095243\ 4235069045278351697199706754921967595270480108777314442804441469383584471744587\ 9609849365327965863669242230268991013741764684401410395183868477243068059588162\ 4498444914309667784136716319634147840382165112876377314703473538331628212940478\ 9193622482022100603206544336273655727182374498961885805959168487264547901339783\ 4026595101499643792422968160799565381423536206957600770590460899883002254304871\ 211791300849327379580729427301931042601691939325, .8414709848078965066525023216\ 3029899962256306079837106567275170999191040439123966894863974354305269585434903\ 7907920674293259118920991898881193410327729212409480791955826766606999907764011\ 9784087827325663474848028702986561570179624553948935729246701270864862810533820\ 3056137721820386844966776167426623901338275339795676425556547796398976482432869\ 0275696429120630058303651523031278255289853264851398193452135970955962062172114\ 8144417810576010756741366480550089167266058041400780623930703718779562612888046\ 3608173452, .540302305868139717400936607442976603732310420617922227670097255381\ 1003947744717645179518560871830893435717311600300890978606337600216634564065122\ 6541731858471797116447447949423311792455139325433594351775670289259637573615432\ 7549641754491775115131222730100631357078232236771401517468995936678730674227620\ 2450776374406758749816178427202164558511156329688905710812427293316986852471456\ 8949043423754330944230240935962395831824547281736640780712434336217481003220271\ 297578822917644683598726994264913443918265694535158], [-1.963510026021423479440976332998755567193159604660434107047127253871654970717\ 0541021486737172845841245986344092909484539483315444860028039502895155009150754\ 6011495547539968020811828802004037860518934161623946419985864391180357851492647\ 5658932248969787036559645991719930682654640094355172345234229508999919546536871\ 2197405373560047099394340758926807790168605274970066795055528458989606369193323\ 3799072178893685475408558420512926456432015426023333712737070496429482731028816\ 31579699401054274065359023349282349738644, -3.132033780020806322996419074287268\ 8541554282967204180641927512030351707571687550630894331896183749671246976980892\ 7714387991053660039952664270250281952737058796731619102039625750428140174684386\ 6444715419366942795850283877833346977600436480585542891585882595286755945172349\ 4645955749006060419718991753785923342002249921246768325207020309811456864536891\ 7127698025546958586681842900786024807060650754400185237195178427280550126671014\ 0386692363729788771520408538883521727838886950294449573433085434182798754287553\ 5735, -4.2274535333762654080895301460966835773672444387082422716552795595189567\ 9582985331706855445695206134613170993356816029300556398702653622562318486595661\ 4391980770825097579020903861374880975744756125655948569234185646849755342989020\ 6183011156704093048811352668799064572003142484460725661083066793061233772122255\ 4097632170526646828381513368867111032300815783309430807689092108446353470296676\ 6197947297221766133831074239253904604314116558146328781988546337944160543363449\ 7751458945007350986741205786587155625899576503, -5.2890398965921882955472079624\ 4995210482558827420664281017585866419162475409161965254657782431957036241240792\ 0515625721613856985807717782082226730993430395506614284911816265390881152195425\ 6486632687956748357697038201173631269169084939943914823093685959307199092339787\ 4610271732882400446732834599417287749839501811907281775174238320429842503201532\ 5389984747407442429854726593174382606991678499557886597456345118256905511255299\ 0682504879079291777114262079739124416300857493825078105225417806605881688294374\ 460641588, -2.56138454458511614573067548204752845582636109651081015723395367521\ 2611042930541383972160692353613817412775985213644636351933478805698210532128154\ 4939064888546517153557445715672563182670990127878722221928307068858594146079182\ 7967286844232621505974549893292544991511437220748709978387027498920249048465697\ 4407097802525249358702281807633794554454295466307720057934368733627676802078774\ 0159664108725750117094221696868045953975408207297750396650130326542000175904374\ 131949950535545685893368543335207418138139984162473, -6.33212750537491479242496\ 1574845777722590494813533669148003996157410081182234498377985284831823272511064\ 9230746114850409180776295659501959065660963542605843834469147396819128658799893\ 0037004155007097541536369924100156175699066797835678569432495239935412045351216\ 1745545570964797943688303968227998650682786875430769237540410360217494400803623\ 4143400452640229208808093831334201502663888959869547826974882108951360970275479\ 4651410141454443491182878685442702324893569597531386861583051550456419347764725\ 72194330201824, -7.363980242224343198549515303016881047819916235590324152184038\ 2392576787574633769662528081942404253996285286661905077855692059128639517441638\ 6712343390985468855589529028149478316742574282472304161649410402547827391129168\ 6978493408170090640962274841918770360692042459656439590062135479541005961776120\ 8997425706108982627175026653361538584724632824177147495518678270516872366625288\ 8826810016562175737079617007446049052312363751064417133077455161196241094773642\ 79352069627584831258938877008904013400179398646145414735, -3.685517980285815333\ 6230314391599381363817695885151726598439716162315195863878776656094503714388288\ 9969884716813750542000001112645727882450524185355281586306264471760950424367630\ 9588909911055631449762698400971891259282302136228642208810129782446651704213117\ 4376948666519027664239797250655813980831725910205914928561741970873610587823319\ 3230500539259102888551080086679018516922546857712938235939456465484606463055399\ 6026092724205579650387069194493707858718985896631097988352434769992820749101383\ 8484965543648279734, -2.3658187572949825972134734122721161859605604629897042696\ 0745295331452440325977573269313292721236500957440179584040018563746171851410800\ 8479717357065381530100280638643500229179922172059540994189674708779434673805592\ 9821964412167036881632074452019067606114197628017135956244803962699551194380048\ 4090056493150241383890875264817520722334627534957015286756322751693307014412651\ 7707225411349361158547429576496804271148117360750059737063804291761595332761917\ 2505577401118828795142800962953733983672211096868319136415784, -8.3884926632958\ 5486780274292308634300005144604244947714311608692468290782344331334889741939780\ 2115908494583825114190765308296210224535901785974741220161487839163316043907473\ 5057347168837621147917228460648329919149381365278648054695894181613217437831257\ 1523219408094151141743406980487088499892498551716501694269554623040958364462957\ 5513233832495026440359253170919616070380832400229404634588058005451304023917772\ 8129148485742327190376890652576473143230502466578829820015587829495937651774810\ 484216502286145831870864, -2.75399904914513957576401921880456810525149539368810\ 2310546283227990411398969047628398708279517492328234101130235217676887468558208\ 8478558351103191478833819520687840099612501843765409719155156346679835875848370\ 2532118318796015073927274302001463702408090652076904946376894459201776654331285\ 0649188909625897395178238119180196766711623168309384070770362630650202652320634\ 2615777637856627992968423000340284864416958497118748544026121734517396296445510\ 820897105323642662617882642134886984262287220972657979377083788049, -9.40794327\ 7131831913203754029332698875242224004584365553077607277813615212338071819217210\ 8488579994857745643549261096159203351243563975075991414961871931623309611569794\ 5644986637958705820950720081579625142793819465690575527457238659160467304319268\ 6903226793641042423849643054898537986082706373233660300846798889815511407668062\ 4123832019551498208365690822186098560234821384184109550705009936035164547281353\ 7806032797719572832394260786275882702962265727386243475123253035720421617366383\ 08279693634501815488044486117, -4.761235072755230770840259411527150173138548530\ 7362268171568428454456223835737762760626416774910360610087981432744231033722866\ 2567783582406269698796199313186263367204001683525778837732523048253573597791102\ 9844880205742700762117973868228015869952135064711581041857576128590199325246276\ 9469594173632829211041107649808459732056140767453760475189271980093707705259395\ 4974452305547066923938511220684471689101642816101357005616389557686759418825327\ 67047285243444507736683394083550824247527686480113419744246573112661725, -2.266\ 7641875628987865646375491377616018088314957136378448058835823398212090770708755\ 7660671255925308187985247572970764468904022774732076164002284755915313925269598\ 7624456969481186777932972041099074763200406860533949569108940268398409502849698\ 7367026958239511749364491476080964164782292172011145221093261252371879131618120\ 8714340655608507513919465311550296096798894394674800857105002305439273557539562\ 8180723514147512355231190896802084069696233434415301823599533386413499505014513\ 2233029496745642044465328132664350, -10.423754940411076795168216219010025404291\ 6425624441889203263920841088679108815262702315398349121992798082424931902410127\ 4488012287822253922521130572560958480842619711913766752099998934522971341293400\ 7606123473945701194487607281508844017931068308715411645501036776477037258774510\ 8651317951554999297778853537624392401595350080516680247342709299379683957628846\ 4380452703733674105234414249205855789947768823821185991924873808098010629866627\ 1946068871889293064179864887713700708396995693145221671576618228273753486006, -\ 3.50252422220013298896449450737198159953790828840450209566491975126416371903591\ 0359052034930192472963152558493309060990861314130506550559545277941206272887888\ 3440394252147326427287118561984579214460254592306437444589543389323346477235289\ 0648958999888003674386339797798702859422961831709565727973413316725322340226966\ 0947916098292519947988408670242768885005241024295795150070463652393485372278740\ 8989392849548385936672199602266344191050748379744141785604956323722242688759330\ 910143701148841162323386526717334454030, -11.4368624219937049857160180493989712\ 6144062407926649866490117160942148735355033639806935264944949994308639181244102\ 9666856881872718124179615671798716575413911954090877541527733868553837830154498\ 1283670702317056113812226716369915120669208899057517214407229069288452233192799\ 4816634616013403573419452679115277239933540351821998283097669597122128555812819\ 2554773736701082244326143482277152626886967322820072807129533978462867827071092\ 7878213023242306528352947427157704414046722776650337041195094180751913823237558\ 45, -5.812330719880080419599734673554528510901841680400462005595086458669174481\ 3814527764388115086280898973078371834249360172704201216938714951001861139320429\ 6990334523343432402571396146208502825989715164756060542358277482739891218067634\ 6434565511314531075157181803393224808530656050723578367151825646277264292819387\ 8288883025356681085719394299958574876469659460027273179264953531073857117363068\ 1895790375207373725301945455504303983738809514810351210842843907181593030409269\ 84411498271970936124546132868099863258598204, -3.867245729937982788050448550213\ 7550664747474231688105062485507002804663759366803541631742652583471699468148382\ 9366406704740792006291239741942267208751524134728692151469849298477171701989003\ 8095729574799354283875731871688137170909709127907300597940151409657919856041397\ 3239173844919570978807767277834426623066223599009827519205618011582280245662189\ 8355362553155807771944075766616453179227817250321761231329205507801751844043365\ 7957750740644423796966397959125902154672523220815112205169486823329565978598302\ 5216520, -2.8493391574966804153437972661695645710563428231407847900920632995736\ 8986537652380205565138547016747984097315701611370607168350582577738860921168419\ 9594296620745442619502838255064907608991493745479276056849544568562132848913964\ 3787590446848197864109214819393994878992687006714378792114845600297831750443054\ 1453646951608897882031588288754230930393901758288786882948344378749267051665957\ 7283204814803697440540354273882954447074351811627719994541150337002040475977542\ 6948064951102910261028019946849856464734938047230, -2.2068799221396432591119658\ 0020013847875883679457448472387959640068383717116106494704895101677195611997849\ 8518534343840825794750803713077529700012635171386121779494798543990408193933619\ 6597981924792438595150678669680162329989121209245405612941088929863448721621329\ 6357317577714126131164236812524319912699707767443748010550314493304205912349820\ 0261774381356224559958774073345385575806417209842698366226169180766461674659768\ 2166082339171544377939242274599702819043455313197043484359480285506325177189450\ 411988618860, -12.4479053284274923828981198442246746474680475401105595041613327\ 6999145657845513435130455807855727030673485064917596094637889540238770925198447\ 1197581990171583843791503477360998224159481932811038890234175527109402584194079\ 7343306171453623025682912751619120711923039126516321184690323254314778966390843\ 7829378690955444078651645363468564643452134515554406264792950848271781573122047\ 6743950509682159623974342428323987254720329362618788685035514355558836519121928\ 731378033330059703646559697658443950034122769276670673, -2.44443125791916074592\ 9319542015772505406082410149279215328253942266756299146608182081432925130165719\ 8746273916715155435064304289527053409567822993516689257269576311019327634321422\ 7102117471030800268739699055767893887565283337508636619153243812527717611362189\ 3273154779677152314277948783156831174423545588598279979482588586818900925674083\ 5458575725825791554441456556869144592164333437681962035717393239552536650982463\ 2191753943440107067798980802173825684508421185479163389065214718368159445485089\ 41630893254934275], [4.9348022005446793094172454999380755676568497036203953132066746881100224112096\ 0262150088670185927611591201295688701157203888617406101502336380530883899259883\ 0495199928103287815285753020616420164390434676384671082469833285759522269367630\ 8897069101291302908467062577960241549094366350165381333355521794754357520501628\ 9426829763817887641896134165937254320227317706251348686478347916711392907500318\ 2613547736245429878036334632376389502642668226103334904132079484385528663944645\ 8734507727550346272162285182248280862688, 10.0955971254270940817920040998925163\ 6051890411928097814194168320083102131254508547675242867122397919581070785200363\ 9423678411316234001417148413941675276552295733285696412437115105294167227088305\ 6400325141460262648366525445899560304819589771275310097299359984658382982993762\ 5885461571749778963290460487730369856581632374569358195899783414256290338060372\ 5382443457909211323871171325352876048354864082354760677838921386439331033686149\ 8135818105069374561373029173781549095715502223439330990032008518213900640818807\ 02, 17.197329154507110739271319119335224021506894401494167700545334333194148980\ 6292433988366255071274730818126212947275927407100595385486369192030633755778344\ 6491695305608639313131472381586105815303170814155042121538224366840134017207784\ 1341441345890789440343713268608077709468889336256996995473589305264758848578826\ 3141145791798912100214523993515269205922637069947015712583384055469213817134698\ 7023417907712771998310076241279356811926723053627807847865236214133119704735763\ 9585013148134355687301968042484252463941590, 26.2673772054237791233024662150319\ 0788838988399080040938445663873863547305090742040997292929530322331572217864134\ 5109468601410036415345721441966068895459754094465626840378644716069061117921402\ 7830169057003136683299293106937099729083675998045355818216614648826136474801972\ 9663971831719000463845899643500343956439062506276469555515366820158624447096382\ 5871744529527219264847013961299114076827151519454865691187533701663360662247590\ 1388428348293746101764870420234796215589239477318767802680786915377282725401762\ 02689, 7.2753565905295974375370275490099566339472232942736103997029482525915491\ 4113814200577365293944282585761685512658695746358614460728937315677166571375655\ 3336451626192375822219369219965332826537520704071967758646153000443013388475608\ 2734445429473612376442949370110692989341889211084779621534132885206203116185706\ 9611883278053876837181694887836359260365514431251852633603898905740639135118531\ 5704982698332395486970350770379766818629702335407617196097381347908504278715371\ 7915012184792806151242252887893150415894073572, 3.63620967090235767599441475371\ 0295290927094622046135053847282972777570448220480884187711787862108550721224515\ 4351153770053185221116263449504216172290627827650588247054709549484556541293911\ 9353520793641577115517808000581624461970130556648177866077843490520166265572889\ 9883167388452291788426021665021417054260638570901493610028396242801868344390434\ 8722563854454252127417901220340315852891722195685925131508260125017077469438480\ 9515032355906866680225026684139588956797956349612133561570130678635178542592624\ 41885683, 50.357471436911693185673525211150002960569982514683863674935557625087\ 8186032241498225901814998124100622559600164466600059529671378424348192062617076\ 3883037945712605769032751747450653680977496720559137460806681465592229499887234\ 6534589401530602848170615411408584578272679034376914365095251203612719871954696\ 3958639901133414027220456684165900752886125496323118202994142930801727054515022\ 2749353784693807078651756664451081492599771066331268159098019880806095321020203\ 1517148094258393731200954817325857737933192309739, 13.4016227409367142379515788\ 5713981433745548366531859173013383900360953589531246017777777141178511116338360\ 2445747089551569193823373861645357234835280892871763119960155957350591981847062\ 0511540986929270276666667749161198638989705542685244530249845761278704853874493\ 5104327967878890036572259024644563148660502692394038445518021583608533907256742\ 0536253382276979923570815925190680171766367649041803857348018151821902786146568\ 4823880888299422464302109807301832704478031991014486602573807398178753564807948\ 10998932063, 6.4422648126306293065535968460942356104549944015181741636701665091\ 7033739981600826606532749593804135379328447909982410487085008409432964444023266\ 0544798327613382000446719969256039672814938283207416540589042254458980997262693\ 9162662516683360164928821806130192768558879426210039861544309373889719571166019\ 8565645162135796888566913255572326614972229466060446771217274145912990701984622\ 9633483322615752760817276397820874741216454031381105020689888210509449490107594\ 1514080213933161395301550577487505856649030656790757, 3.94149745484905770570432\ 3665568261380775955863781596495641232462252866795777703886777739920319504772680\ 9772643884498861748308706488466990798339407642436330326007845065742851954369839\ 5822448714843632295069629613049223387649206008375920836536333418986082806364899\ 2897165490240537251401173385001593799558754307288512047201970684511871249453937\ 7461698620012205372903331846842426491985283218652571142918499959298590961689863\ 2294903288059729432349389531587725776991993728766919427641373150858566345871595\ 95642898005585, 2.7446928385428259073281903175274111774554120637293029989378721\ 7426477877271175900753915376020370271122467005510006642687925793979911147696934\ 2242362636737416078044519920533389961736832882158671639931135060681317069673912\ 7486762316956953824218810744094551931592281574678813606743313682414505329822076\ 7905365568995469930444638458037330998600593330471508707726669865710419062675308\ 0011649671337372032366828460123242398267070013929198611775748505344143601222183\ 2745828939183088563680310273301759781129652865227712583, 65.3881334449880344731\ 4299933439596085458310777327618212411565413045195623506294144567260169726782761\ 5929777780341150048240088695795685373670762443402471174649093227559528687715161\ 9989649146020023370622130778063399959930714477635994156595846694098042658892742\ 8466513521259343159459140264607693108719562813088261551191636328037558863542781\ 7664450831752276238337540990912231577216895469495290113282815939669658842487035\ 8171389742263784516945498234194173150761257655272671487660873747842493224333841\ 09818154649924228, 8.1617776327615078547654431118820481501308627124705043629737\ 2763247590855089047996366358793438889846997465355022123978623564220333512096287\ 4582510864457587910810036920580498345918995978686129157448437820938328010916868\ 5838285146470220314803932480583019026416240379217272413579841798172410430205090\ 3409463051913989522922945266702235290052600668736172475666713221834893050334809\ 2191198273837254997029428284104522119493271265593510034747630616601581670654239\ 3234851739218370124572168247804993145793548745246829926288, 82.4128913389918798\ 4076088692473876437448988922281410613627771457077144939425772590561393058046393\ 6166321849758903718584238211010225418707027668274919411219888487766946311829593\ 2408191789111203473889016275345350978712435797454556277249317714198909253759978\ 4472124090824108297658423242922407776041051234077328300336151767665252262769264\ 3939227798798911834606663104375325712012919040878914475474614700374284583040482\ 3922562514202764174644432562648285999023707633788500748164231958023259279967549\ 95972393553680136241, 21.485314924725014445986528478599294800491249736578870916\ 8282289453616349170932547491835974336615292910105042944051099341490461218063751\ 4460520444042995557194525414717566338079966076169114907500496581079291404011719\ 4879892421024483694866222869293377035214019434393074593152361910989469378877781\ 3295843154727119957227631826270965185476034005269757024067233571525830714576957\ 4446705947231541452920852077599829683599492649952744057529365694774568763394984\ 4863888746342899404758460426651535559688631844997330173940009, 6.04562488007135\ 9697354394965620207185062651279499550266167783124909864370997035261699268564300\ 9070507871529271478224227901329476651080486784029808453384132070940567724424196\ 4880408459765861912478867717444944818233798009322632856352486787164184294398781\ 7007128975393730819353097779166227935536413257732951866489010711858491270834291\ 8943698841020209107631365649090350039082042324697199791896828299191566267952549\ 4599725489543836358115810394508701840836777409003245394844027990693050916738402\ 32616906072774982478151, 4.1308374060928007905904011804455692914247848329395501\ 4430331029100894195944324386927328103570309382802064985382772746729159260716403\ 8744210305813789373040846752313664375179582281700740094923021551731139446102441\ 7392178701339889652395208078218671977624672242237330804081135593675085250099123\ 1715136003973609037017973050959722646784604484025579972740081916212255932133281\ 1137152160208265625086147422084762825059431005657368360342326814834031200043075\ 5038054037104458099335577838081308825408163203112967275605477033, 122.450409947\ 3477714855728057457759769517339058819853098716284546726822078820438358443962336\ 4097835998159444083898054639529436068728735932746659035097985371986618070420586\ 7597380475522285994778906098873082880326627992881542198444161870225231557174131\ 1242518427009682671579628070162177612110939412128836383763472240167838924858787\ 0722040770699188059624348790151795503468678774889813196788986626485469829165758\ 4094761319873449341807131228992485857191337807048106536924911892815776644883427\ 65991426927273963863511273, 31.544797374415479723143340603625031777961803316615\ 4321103159197482259960991528249533082096436317780456249910814370308271423856085\ 7451386094682963907691692690601890420844406974714068618055141616979478159742092\ 1389580859434041210595128128480459190907503961852803107421900273467304435611508\ 0706952310534390717265982946289876835471577572726294171519508764395012170306818\ 0854398976796059949756420536899764230762837725200081943461026867745352607571076\ 7016014825307807501186887732397138629064674026426552405834077432096, 14.6123001\ 8719206404962619589897591420463056232235060373532091679793818699945685440938668\ 0592732800149668206935939399288966584370995537193908999315315508238891360625943\ 7127048496627507411735553925060608289937309386086354838052635215362156568418659\ 9835065735532454805498176005781839980306810342761304420891880934585265256988957\ 7337135372286572871311850202319845036937108987219825742224766226206856659951035\ 3895159576782649298208401445914153034915920797818380231002887531154858817891840\ 66077627408108110090177509469, 8.6250684318077993019607884922366191513257968504\ 6567450518656174307098500784321956186194034387810166506446703225211511923263232\ 3240609532160458410967275181507581095146170230605293917810733115581669519918953\ 2115427333218991218412351325686509424376938200451031259304089255009559825279374\ 1223791791235644943360378187222364218069900942938858267662048052017471243223160\ 2741344378544407294488877493992455105887571808733543564442525762606709128848120\ 1640877696547501676387668294850020797816575590245456994116370641792334, 5.81398\ 6877713753284189734508032369830284002348082133113910027534255639561514501601748\ 8231495799001610686226665381775855783009547715246324884023291145663787125818862\ 3317058384320661083063893328340157397548179240137622077016766191693464128715534\ 1642682703636914181794574944793867814529973937433621957739341416105090536587760\ 2642771463512020436309637275609515095529010387465566345668502919606163087217288\ 6975846298557333735105157479056691102456772039704468481945026553057890212251445\ 35922314060712237617703196844056, 4.2596439380005817090867858459507978806612366\ 7206525343080037850115813332472399206997602517820116387528734336635237605131547\ 5737449474269241539747609408620248844678734306453470302965007347932179268670877\ 9234944523365558185040242153117342250216693477999215475403074237225585526470582\ 1611191675800816848756773999746261714415561184208613563523208823788885865618248\ 0413894732233148399459256725898125613710721364478400647224676281684578088534166\ 8289156806459798736887408417690488948290624288568910192506415179389994679, 3.30\ 2949677075167271844177534651269775436096354514052938638529559157799199235198472\ 6024063646400716808037033124386823832788436131488856135000299697274615647096381\ 0409774560404302072812309215651827048755833226553115820501068395070884254650693\ 4084028960627497347819267658779315537900337162164291592483559661989073818682449\ 9053615300807868023303043002406758612850671344507473720620357909693233971904944\ 9466019070887300981803107855449255938118491270760564547985412849183654305413878\ 94484193045674256677588438570130574, 2.6677071635102718347322671602159179511033\ 8710974154288371837170840952977865113137253257960479287363479672197945147465115\ 2011385172340632982655766245666942162143687651015966651824770261616041955540721\ 4442901122693043100967321034085834474992213389768337634740163963412915185424935\ 2257838179147171106495392923284992084672088190072770259021430116041364309276989\ 3369302846020489172721589696967495256009316478412509387222088996058163453422083\ 4791173708906841992404278229038035027567404149852027570824330865679321185445, 2\ .221394438927162009686584666786250005343460260061133342580878586550456366587865\ 0224522684975046737915184057648111448262946821405626237743962408637290511921252\ 2204107740636555852904110609538859087311377902062694451642905889657309905534926\ 1728438647842028399821969165460779062085488750118385378092454912773310293498630\ 3110846969321123383164044711362478235251480882074081931170677563697976694386721\ 7995317854488304275694766066414731740541608677004811105000433430645083624992649\ 79171884657920415669774112824838956925, 145.46496249837241666603148463273081958\ 0103287977516837802020860680519601430526375307496729737622329529260230554932623\ 5674283802194126310374101351715865005968191569466590279909122915656993276795719\ 1905051822639622090495161660490940639093306934969438233094131253391048783491437\ 9491833897316656507654419086253416111203676771361555191240818142799258008930175\ 5731984302125522978241976314859136182739372116515609664496120794750446019290107\ 7558688647583169460634407969010985813121757691357324568866682889602569407232829 ], [-16.82879664423431999559633426116029987070980809276698434509180177478573488100\ 8383262610382230530693614046788209133650071858887943981425964992869555720910602\ 2603551849612910409340686820573113949194154618947352974460762273409335172051179\ 1885767148001358383221611953693542855758545593502644931271778918326535479820602\ 0900952996325332993891118433384359825944559060043071659505882683806492175962032\ 3933311082304425067544480034962217656364945514960593689992855428598314684911670\ 05864083164475130021845938377493118607585, -55.12212239940160755245575595481501\ 8569084190626029762165728920637113916360343866394289562898504511448566785767979\ 2695920326158012205302235995713763624798813568114637866989507448182025024226933\ 6509062838454564749076933053209804415639608795999492675743195018039334505667502\ 8217517649059401753474023336370692766743027041695470753122748445435977590903070\ 4775962428796339970776152938818865377824711012184008666987415708158727312143920\ 7793100148756075593119894352219465254384523348762461006360643602973049688147746\ 7877, -129.32773993753692033333796717884398988728980950283815276865628330675572\ 9358964945125574930987328546842247396759679273532185955011230383205438601011192\ 4931855494880753002794890156247852933120734037472049762688690210554944895835290\ 0906551267122002802625686900412729364808888421298744447841878953960436037374288\ 7425767107248329699940490483205782904833139984529515072958799909751181177339384\ 0847100306773784876575806896905384544219120411658280489937102438954001976627539\ 7215491045715609308926102506090563615249233659, -251.47803611443593305919809003\ 6750362063734028016006145617583491267750143701848365506935294526828009057507297\ 2870122567387115875509430773458477152897371602583929539690808156139910104071808\ 4523429941272469856519513878424076898249007045667226581148348809220207338159667\ 2904151907320812717149146340060131911145248638658260046502274151312137483121896\ 3335589769078673902329628567062872011350055847516571288029299686512849555333107\ 1767782026277289199882519223366717805055599050271366044400622211292867952354754\ 854242967, -32.2391286235783569505312674666615797627929630223608832448949233024\ 6433295587440894326426577594590130460754448029987791588148389550746252319408963\ 9664002636236685830284374054819297244296461199226998909285334693014912550712717\ 7155095483538228577774728295979141212503868875759825895930623648347625992814541\ 2787380579835762668920794910433257931955424247843106452518005416538961130208867\ 9587458803617185949949415562541479754616331350526402805345124341570536750552816\ 272392642521312227160532311110385719442621460943532, -9.96283153714345815957500\ 4118491006949765779110735317756008937137283125385042235723803642961772947276956\ 8944898629864983233699184316700689358683681796744489212601882248151271769947207\ 1436622927455587202669674288056184649038074869877945035544252921935698662196422\ 8772544783939969980120267918024983163798016047260314330100981127958903913080388\ 9622327895181439883686564186787426346144775787882053700140535105701242796427785\ 8520507681526767785805324072697135548637082304073694642631304309476016578781321\ 18641927957600, -687.6815220686583147781301145273628859971705893846006621948281\ 6441021937649378744200850877503569792113317712274435604008414615259993283718787\ 1032054234290667461867028410381957704724984811785676043633908838902734621653602\ 6214835870842653556146652711552299447943037127676601569959551087851048819839945\ 6288117827217944640793030269467629706917931267240399018944283942628408506843042\ 9488338329820400941088908631482619762945884842231359026785058305955533489674452\ 10075454385864101770943189754035349185563130582970219942, -86.98348226334630716\ 0744553299659885544162124645279416200788829397006326357287756798372580861776324\ 8896342410648812453825569670249944494589218610470579282425731621865013120099663\ 6130095308428969388597034091907212147956259791477275058644279302547511128291347\ 3247234368880892149769884826851880316027544740214071913038089408819568109522088\ 6608043892301968713305019745267077640734089222985227981439697187093943411315315\ 7235778839496672884490328285321260511972243393298892080020248874714642406479832\ 1832817751994304663, -26.346441760300812412714345539688398042243130553617759757\ 0930708803152508560665022212739292465693856573087018488568211140828792576694438\ 5933383340102722534873752263214608008625119389971255513781824638083029958376193\ 9217320678132155852995280190500723901100510025998149724250185930103244236780652\ 5404533046535497190285962659663129120351986571731450090482388642973382963958659\ 3568800245887292492587037550892085668537076652043399241270919047327405623084872\ 7339396408172743159803442355791163403910246536714650511157093, -11.455129362906\ 6388558026599575343058298986545480781298754690916521283702059441038356651190881\ 5673954819330376541477107636544945788415243827793252821810751223830610825358279\ 4805655864183561763746469070221046140941991006572331320268757607353102647247422\ 8664187098828959371949945538236686602213187751987369173522621254882725753203787\ 9144840390010700935321028711503107327366923158333898424244109666816760711698075\ 1984079755570065737641453323558688173498737839435214855323857311650281513164925\ 695418450609448591743349, -6.07957344979715386487358466588281066505390597302801\ 6152712803669497230699939135900140652533548546258307715694859231945389926386362\ 0991076630343683234581902606293617194167708370139583666938939267117672923814818\ 6271182175468363416291069407003964267608083096752804673855474892663264083119348\ 4704497863612239911168528758752238589638512651612227934547056621588513835851408\ 1469549119778286412293519544475103650015992378831241811688573672991800322391313\ 516965952233424656633509423360865025236106524829682349585356089484, -1025.75333\ 8118135682595668930056517357574118120949406449433303984358500285743797804057719\ 8871180262440480008708864321159291721770690398480503787366518866812852421946866\ 9111086896868446725926399949595648344610428356729644703296000068352500804945863\ 1426806326458201671259876965935509139293467751247033115165225028592619696441385\ 0141463940198651797487665219597063211088812186334401060793738849358304628713586\ 5176292361148654241891194354614720193095715776090356143615052557709529647188266\ 95888914998301721487889883011, -38.96211849703414401759315471776719110016710111\ 0079751859149067089495209952385963979787288310293035289231453470798803673756311\ 2095526329837399727572563234744346994225849103387706587627666813482594390841148\ 3820459237557092150144376324622299453976842632168443157153024608027807203177491\ 3364857648280241317479548306748213672234745377195099976646319463924486093057070\ 9729661980288790640445480293575679719008629945611065758679588537859382313742949\ 71089141648602152027338876981769719089850881676618606604186454722379351, -1459.\ 8122620992450937292323288050007816583482170399973403244306961103436441124752561\ 2777592398858745239765521214858931734985475646475806834711700672747325227286879\ 4466309329388840358078830063273462525256317723965019379461306245937816465718761\ 9823710138896099816339285803739210841402005412703252490661020637086223337823688\ 8553166245555864983285551251782321829537098954747796655652610917424294712265492\ 3375392993844986100709330900783267312728644538385721366267899429930902492238224\ 3443093752723878226378907898470438, -183.65837304213394982514287529380243423044\ 1596492733357136031137404645955632786662910310892300216702090575140337649494185\ 7254638309065734713571687862196901238286008658223183439318682149701365441887904\ 7083630488372029196980222138225010774025452944042942025812015809555571996041407\ 1762119844629840613760929395173496198894978005316692737620468556079655066896414\ 0201528812775301107702900304915032080916450402882552151705756404623405577048230\ 7435024269888952915963703765693167862533105473654759987651757951534281378051, -\ 23.6940267562413184671136578847077719890741462016203676846794134303527146287438\ 3310079056698259699712236972711863436685350078521066617723288431536855879163585\ 6423327482843771323364929408114144241651514808747841104210914075721455167794343\ 9646860834563218191612499170634890033628485301095172679395629457995991195485987\ 8500429074412827750657395270433291437518603038861801237584988506052292450236194\ 4057512835807263726108478730910106324749861816886216645815946798696329779622484\ 539031869943660757613208515053963192479, -12.4195741105775285891717440618513744\ 8818788434673055505857978326391349196141944862235675693281953435095497258071803\ 4587925808554808128697902892139936634362516018771791197594295710850685786922618\ 6876354024506928150705197048963959498288965117652352563454042459834064524815392\ 4107346236462485898670544628434599872545869950274843242647930696362215378422905\ 5192644118235179566831266201956774105143942557179861452173161457747553448045038\ 3033594411543270636645219281216308743704249988762081489749533678612386167534232\ 36, -2663.903137242972747712790121708222773713917414370183259733489988091182713\ 6848447961109113038796468187106647453807912884329399249132017449057190976203729\ 4893573350468547389507479960865347912763251011500347770589881152729840761024103\ 2287217833120662427221865294364582962432907485401346746415545220037937766305035\ 7657076631293994575888395013441501721184243350461707675181695613650803060622498\ 1370157007216342577546162793567639885776051531144284119985091975910925738226140\ 98150515003842598771445455933355115831040108, -334.2887664487152664597953058183\ 1937865418715367803826896104156416299918797489759950266508760635464649440109459\ 3217582008871367897958650198916463055131656709082436788519431312329680758304916\ 7016946570937340730960009493164602414312144823945795141132738744583455094916459\ 6981834100824333300492450646479914465847883365097562756353479397134303057781942\ 6499598556829150921196902193495639378680331466176981310170656083263550497854128\ 9474956114138474245488354903432040490421269483699055715106370022970088423715636\ 5844428, -99.859203101323222650468929223737245356882426251060768676914800769300\ 2947810327719345491928004796099778799355248388099452889441749304000857904389180\ 3091219050912396820460020270226149245848500932497717492492937019675273660189281\ 3516046090739643861939704277211439521547900810749800042955365866613836771929595\ 2735026496098574651897120133302043500769556783945034914546652895191533774698848\ 4078496376996810681808884477818912755790329612409460177387054119803787708180782\ 3900452399586970527180802786461942294355412864008, -42.652409569493918017887672\ 8149727694090396414587725974452547252606480655109301428534230021199845203348252\ 4172851647713625276392142712812366074294042861307852125792603506746391349855992\ 9161337754476825408515980315322252715451604987338799041241542173333482465465763\ 7463777923066815580186804560541040386509330854854755235183302106315616086615694\ 9072693570149082681510136260948833648446625690888144835678205673812027476939584\ 2000824189918220396551806043494659910940908312230656077619119627240753366452475\ 925696662271, -22.1926173584002953281649339714885544856827285465218510787820568\ 8897097425995017712857442993258017617016358525179310198932850762469247921242617\ 8805222356971308555271555046094931309343615691130261704696174270683331868406582\ 1433520984388350930543047344369711993050862746626758571312724545090699935034337\ 6710089065116079866578049484664919161767853627391153878898574638437452102266978\ 0541681939535007302916648092100042496147724532897891737890945357359665194328664\ 059834993553896388710590921401062492467891993699262445, -13.0922436918261027136\ 9654374428626691860591878194232124040291065963329824266865301805189711935394470\ 2307634766315489121073801014518272417532324825752791139149153918485644733374941\ 1089990578086091586417286848904886540994043559371717118889793299283888551984797\ 0539872393977885588793209188475107862144771384126556894638387018060692708622994\ 4355589419454274843704832178489524186656737124726062921944256339143309224217340\ 1245830533261673443719620355158155998139041713685645454616884532356869001701016\ 56330840122275966, -8.425741890701916789635261456737018280045185160282745735141\ 4644913675275065156402349022630901581510755630389818666179189334155182783459009\ 6867674628109070006465578913223633804685281766371618227014237560974663433178733\ 3326709652795756329806212480942267471744457591320686027942036300270916492137562\ 0938970372433297147010353459868720445282550245106827494234775400428988597211266\ 3143419550116096118794505907828223318304467985337494013151054048753076447035743\ 87488340677468225657227781996644196718944552960167451981823, -5.779739951262627\ 0587562718093970030570908979152914656065137453442218021073130513380924065710761\ 6390266312222104946700799835975307593633798681539519357950658432438808790772678\ 1527116357684733378347453129320157840917108346569678433914259759270180312142431\ 2673970061609751326140145890896465054136694636523793992813874435480086624802267\ 6300470868493141961001019768878877265615089313227067945338156958593603257796742\ 4572417198587946408870073471435973828482965888349469845942456457333234266889093\ 3644234227154160127503, -4.1625446640811872361958195797166147909892869415876071\ 0269684745722028002264322687248243324616348184530010965769058115419702561850867\ 7700427489152218611801623513386414302151429760571806237518761346069531071018864\ 3523886890749274043935528570352510381776174180636559752968365837804370604848685\ 1168975452247377397016986397844410064109862139698226686950344607816847754579429\ 7664183151630157634449243733899396860301969408615471116479774219433922244751938\ 7615189804200658003931775397902304298871815679283123220379909742, -3457.9388943\ 6422742205872819386769283601057049203088271574785857142736987396711036545426939\ 9869738506764341081135607164629818247495252566115042968545855777603909700940204\ 8804696938353739462678472539412815178390890642492353093140734850521307813862850\ 8226340361391578620882147485690348835524035516919695845798875347193134889935609\ 3476087552224479464434809916868326887472104930213403930916643842560168053961053\ 5319704485471640017292683514982534006013886957815762018217848170820277267383020\ 262069496278688554485793681], [97.409091034002437236440332688705111249727585672685421691467859389970855456827\ 1961901218672347529925509691732517238468173125664417113040814353803163244597286\ 3790051328197533263935698613435577462438119555974363755554005708143671809756597\ 6846018240707015276550415751560830104630142197636425339875152968526893411847891\ 1560152361981602951040994410294418108888154045891623477745633976819607725329717\ 6309792285703092274179508864894903966609683248618448970094816039731830925194426\ 5977254225522972627189869282860368299171, 488.183816543814241755770762322105592\ 6353843809351085370625677296591941576857652397958548050352451702700802719235363\ 7228025770980920753417010721556808378211403721505336052644981491048947050804754\ 5263062339517502329309397667220461732583660370899736052181665245067923118861961\ 5427626941484169334335802721358835353776916311809904988058487469266969817712509\ 3596412950753333943287754647323594412642027135216802619771700619102547726678716\ 9985620911712599619187439293675383840656330928183860763387469852146295034190436\ 40, 1538.7821440091883960227912438290350567684018466456630170123130395785305131\ 8269554436532217806987028955511079510225221421820026358765064787912385207378532\ 7014415849061266848887696236962020229890736985786385820410701000177735650285518\ 5846893678759054322965007846400039481820870087757071599429172661072035934159553\ 5614939112816202576059204641353226388807140358644953860892248979247349203449074\ 7289111112952087916829393284133794801897632255323407969474421233816493719739718\ 9045913339945505969895321802359738015103422, 3753.24499486472578015196254421678\ 8905310959817298161124375756810531671053618604489081978745087798479613979493855\ 1002136048386649277243420395669973362514911490071208118782115829016643582243218\ 0447853388060414633759995864680414461892035869149852713461953545302818305781950\ 6665624365134094369488178861803006383476065853075679393907251682329072113371139\ 2372817478548573746971774401438537121073186053325359649074682645839296262156101\ 4042248177051857796872319769826061439758264901979144253265899120854714928896437\ 15234, 236.19525903394709448238653574905497300847562440830475744174144240075756\ 6260219530987361463040710656351948063057562868177498325404429015191623895956103\ 3086153259130084969343805779698130860314741993339519320979931019321204820006789\ 4403592293993195750173972796548515946159534517599689316794130601844656268399776\ 6861934855963973406286005417521830359092814912783794306708954427790555518678913\ 9463242828218700977105324217002664701552349149012917945850370749879028619895788\ 9729939722501135793763779896016885866294646287, 47.4070410453457753976984296779\ 2297128684246273170400543199326645910857532131467321432619772390271154180537216\ 3325815655755079901661116885156076539382087238628252077704078278568354476844123\ 3906270328160779015767387533318611070024861621053014005337095396296552351645084\ 8552524080613878552455852073252406956956658167280166537324483341058319904576763\ 6057237396807359041837465975229545946418074048423069712252088877364733803352580\ 3100437169110449100364669017812402648329984239508866919325249311285760948978709\ 87655398, 14409.903055508424362863577020315433580350215121838840649578327645587\ 1320539983155443926859051396118834554643744331067710943787989494937712778449460\ 6885007151080003393213682701468504475485511422904650876907690130107428611324265\ 1976621632761372861304865193820956615567331462055487099107134814196269376814376\ 9376890002338338130104020699163981816013028849467736811223202087592998723850025\ 5513148274513896476029018486523080493779630819016870611991327166622874632600370\ 9929661147106082548418287929411563405146773477935, 902.877647306542522669533489\ 5778035685047666642393458664383162630422472737836671668005887226613793240322625\ 6704208673933613346562567333966617363335183501548167938329590469954574401716062\ 6595871036525111696217226715053770352843005111735508404198746981699904847929027\ 2887902881638711859862280214804159915378467217205821972885480521471797254436410\ 8377835981728013415643481737953429623480125891196290014949275404439687406174126\ 1818353186356021486806964432718386991246212774525589650101128753126317616276331\ 01347834092, 179.54032888630475979093064912123390771878063182341517006506860561\ 7092618674694894520633667549301536759141136716195192296405422751903744859338770\ 3642131775891164534801725569053388478290929131633318385450891571658890080928586\ 1461248408070704860789521976777846271065149827913511646250454090530969043345923\ 3673510383842107562109816738971650756400215400519273002198450253878069906676898\ 7379320022941116103096724448850910063402765849790274589750631117224881064959784\ 6215803908834376951244848749028911514376549263519737, 57.4602809789720396434510\ 8418551353776173458299210456852786501382541086598720319079254007341307474030673\ 1898756098461816124491044404757347522980142731290372067333826267775776022446305\ 4858616640488238704402149140338867290852464132689259779733464698134863698497572\ 2972746047076419915719606930538367228048745477741444412321358065533309020153084\ 9652977603816113607018630964274857102217451850053773069307604085913442899293653\ 2882304306813234933439943812072923517052275261261347606851674113849617190175431\ 94803663413659, 23.912404227883998332656166503433773393202599833690493545907261\ 0321204942353502195423709088667259483691941640324359845944929203828554838066114\ 1040212518553149110082587059588020426031735651421431669437312961627914096945239\ 6265256791748006642719083566225851892525301892493993013949611966632154932486928\ 6813005297702136741751591640587099884193251499940900999587110158311582538207219\ 1374556825522924549516893841080132280700927969371230445601080766297814642655280\ 5793972111465071300206537685075609845269237047251325916, 24580.1434190635662185\ 1100444664701022572405283109442883128294511881061702049250723998298733251446995\ 6967308505567717789910889625733610395642378909155968757110811492293693512981331\ 3702186600889965394061690401061116444220864729837366651766753390480898863373096\ 0608047758213937524823896879894849836480955176258713313690000480193666389432171\ 6282373962595692399427776229745477608470855532981384298855010751542306636667493\ 9673474955270575088672327626955191496850669651083980527886213434679990535390112\ 30484670846920509, 305.35409506135429646865130883836327543430103367560805986375\ 5781207220483020558520051815627764955071714498264122049800859376219363293253932\ 2889717296067935903491432630699999284851939519107307425197535204575960605884438\ 3728196657166001562249290764236772879246053597455266668732798990744776283762777\ 8094341179344992316214695535773141152953292959841826108113940076604737616575765\ 1992687118715768735982084285335984349568862457476704036758966671292586624833904\ 7727086986684643723791598174588793250473965766326110488573, 39370.3436576856748\ 7089511486874540594532739040959666026719136120170170800184689933539199550084571\ 2911735134339215890808403837400705561052164778402949747039929076102934813009925\ 8674130754486141055886570770088261923476238700050242299178176837867963031338376\ 4191668692849645586621134999418430614277228754945609673776381587876121210484738\ 6492676901254266309777383501739269380686629620266663260860171979189347968066450\ 2189861445960282345706877903426112857506116642865878299946795140068737840672444\ 81115853358337011359, 2463.4029085493783162106621453832168748742817480852949891\ 8938608381778325269785821085284069098252459045567584887900206181478615199694841\ 9463789631829908373151467777100194661489301113225383651798190199940487978090926\ 1602005363748562995975866744313481754743489777241596664986843672477568910697378\ 3039374964222906020582833557165835916792199292151890408486229284428514807903128\ 5622949916156480228720340855762958520163594664076506573440933099642614600490821\ 7979554274808351460214982383844773361248410311095619826485476, 155.394019307472\ 4302464133790674830098282080000002059545582559049643056229220647804050691633192\ 4364649618702293378307640841724884604962651760246087584971066913982219649521024\ 0639265680247428328724925020915394610295077364763809536678088257218719639810906\ 4874542883590227745272171882812512844399282987732320056178385399046554685025713\ 5399455207695504494948376681487117458197356587374956811449174976519591872706442\ 3998469280704903245544729876709745261372636184578591048209772078089597792991648\ 53256931577859134090271, 64.217660794673823203594486176190282032726758814666586\ 3554325229189500277378697271950860115623010223790466502921112357985982706234139\ 4487070677024104385171356398031348317121389172626445335090485454306495960896019\ 0524758820980197261682398187333361331456499281382756234298906132570133267066496\ 1120633988973938615134860779727086101427507194138312114623465982964181001746368\ 5519714894532356127739125616549678328916740224963470121609320140904725241757864\ 8536678994936967939577577984321226878436717720818843337320182362, 87850.6576718\ 8914527821289950660178690150339184403913044834535871312064962242654870227867821\ 3317691425944019227136015982093772260041696304316292771437010111226634589348945\ 0901484567137292777187398459322971290564901432814013894824972737301854686658552\ 0620181170646978911134076050174114016659380972969401850176421561439380825950222\ 6594149612472282324968370105881592325277982018526303355071038068653275947037536\ 2768679400325302307330259619551264384865454891266917709891223603924228745595616\ 36658323556417554964192077, 5493.8127278638113363549689330352209467955715971052\ 1469922146276186677058351988631128266638828032362716457097261678723005949897399\ 1311024980014376197613202510167722015134660481259932947333315325602477167174744\ 9112836037883690960429002565846737287179800249678432033608828601448680281033548\ 9126604840818827703656687889501238345450517669268484138917903924328363987058588\ 5155435560771220256075997223293263778312831226066389336182831823851885051619696\ 4541310760382193762674720346332779866271436113382713305866421592684, 1087.11841\ 8461959745522665597029742045962084918778475860719213873330929497097351071340256\ 9934696578346362955045875582213915779912037561822919318693154198964501114391402\ 0356669621652158374216052098083060020149579631599814981452598738395318451686279\ 2434297206539265526736927136289328389937896714767063191690653383870510388150925\ 5058993530673793339372726079166524862098668159736112845556290007040517628653153\ 1287081877266083863672885892898200136498510869299589959906874539637995366428392\ 49005937262007523954311044651, 345.15635028202791350645606938371421959578065939\ 7627384507475315713923894411929236789686726133933854580789489307172974824964479\ 6426794481477679024022274367544574725425363881235563036599790386637200274087285\ 0787992251572989726980335232106156643407606438137392456635589688769208126131296\ 5094233771758032531462774977409962050103674287224672968940471357486362692175187\ 1299049890970106680479981598808349583866036352264839935351102414969857112507354\ 4536683368089081301901180934764457550832738379391796668851436679557327, 142.132\ 8100471842934949489865421574145779338805664235767317093058876281395206252076720\ 5582247189620914270565712248796543942645629238854844168375468812538379379827989\ 2439916182420815269539251593717441546030910496213731331092970510614962478631840\ 5770218403250935683278747476893914258295784032231184075472611807976653772113745\ 7704917460535794290334302194623044961734323656441407913323794154088486873483112\ 0744601980092095232198766572231417248176905323417914976368252161704878444312588\ 02005545235738237512053340179573, 69.044412685778110485066536979012368815034863\ 7708276251850165046930132140596165885893119373111831983803417095992385190839662\ 3888332011153755424466703927519602796790400093476843308129807299829812726286825\ 6327422779328172186553807182949879144093047078239134538880856249468048935000158\ 3862776041787980333963821754234720191087168674477148124563621606069705797856001\ 2005464819155840295014835357503350827602522038211838518908228779840185525590154\ 0675340414286515883614418220924364632433503569216477286724939103297067866, 37.6\ 1006565819239859785809642904497632645607660996243671776338256860501877684978070\ 7494226760424064414560486877738665108772937089414458188839650619782508419844839\ 7699097374158058023568039935126642129180239878568516387553641551454207915316443\ 4307935143706328888520104229928532793740349534827076402196642987828636660251183\ 3630629146186222725861164917487999208811955601398091947936677486906106490761150\ 3821055350294184954957101031966963196409934714587642693751933494436533738836760\ 81996480992610376958924687840708277, 22.286159382607851304677450521269421320470\ 8068312638858129207602337995567903685646670257832827868715785383043484608992813\ 1922036701097426553707158682296864296089150393189099899436915402240452653915313\ 5462528245353069596706629111644647250496156261760883268150892782499390753413413\ 3334120474293460433339766645630151026247715786656016822462243395744927476709913\ 6323873528980164678616671521031717592467446165871201406709273312538819912541762\ 5608874509823765309833405696341614418493948194595105905341997125990215203338, 14.0857082728984726220417900436247495042048321020926099569200678001101611908371\ 8841482878576263016887173216096202063881988973108420756933490697721010492114360\ 9521916044822730061358468479284233642883996835915987989148867982191716081197275\ 8997586371159012670983830727693038249634514743694501343521575124739081137726457\ 2858302536776149452951490315028258622824241731556467001339789074576548860488512\ 0770888134851056911681195892846746327472578542088859161814870080317825791803276\ 716177244096594829736415912669439162513, 124420.7829190908249374486718065152247\ 5224592857879699841966421822473392078374502956391294173650665811511425736936972\ 5340086729781629114914864308488903059152158478554182073632935598511970495122709\ 3328231620552163235520056739324642464400543888731262812065734139721230580701926\ 1323871745584562059192616999980366376424813038178045756628317926185402709936854\ 6155547618460736906137963472598523330427434447054894867717207905331537161064478\ 0684666396432942059979964587877805493798296534777567095094082072201221981343928\ 8], [1.7724538509055160272981674833411451827975494561223871282138077898529112845910\ 3218137495065673854466541622682362428257066623615286572442260252509370960278706\ 8462037698653105122849925173028950826228932095379267962800174639015351479720516\ 7001901852340185854469744949126403139217755259062164054193325009063984076137334\ 7747515343366798978936585183640879545116516173876005906739343179133280985484624\ 8184902054654852195613251561647467515042738761056107996127107210060372044483672\ 3652966137080943234988316684242138457096, 2.67893853470774763365569294097467764\ 4128689377957301100950428327590417610167743819540982889041188789419159049200072\ 2633357190845695044722599777133677084697681672898230500032183425503222471569418\ 1755544995272878439477944130576582840161231914159646652603372758402058063551394\ 3241032015839415382700855240521032338798955069363892638683916707281691542309627\ 3318811864774965222910556444090780096341646353274019563015283986002125069299687\ 0571006864544754497067121216435474129286262442530553451675106636988879570294949\ 99, 1.3541179394264004169452880281545137855193272660567936983940224679637829654\ 0174254167583414795297291110643482361003305885414226155258621182660719114811432\ 2833434155915620917505682592366523385211910858011501770153617023853945368317754\ 5997365041559306913842280346227627161503664990138463931446545975367506865906665\ 9908655271882299390424900088726099122595399456757895239664849394565387077684991\ 5267862420102148181505489465626518090454557334694072090834120045982996048100827\ 4465304821349390094163156091434787732491342, 3.62560990822190831193068515586767\ 2002995167682880065467433377999569919243538729121618360136723384300361471751392\ 4207199658915240940225599774264588903614506064137448968541949992019267730379946\ 3089221241231832370799208439736990709390562092923234287027419144860395713683503\ 6865487995968368476475851489090404166340763033971806680595773423790855908071457\ 8312976356368825587928811190635168158508494748815027886731073105248798251663661\ 2879316418441744382764575480091991477680192281509261199432299783783536345955434\ 19476, 1.2254167024651776451290983033628905268512392481080706112301189382898228\ 8842679835723717237621491506658217338023758803316301665903296103947930471025505\ 9983822777919276890077651016901455331657915948759445277305159342900375786380960\ 4923883457598118730701935708569137276575665900075615110888436648859469735490742\ 2104274315256883690344122216191277103829476596619740089124903044847131387169334\ 2339292758081122479133494312298056797168920141846155840539527809038656737462661\ 4176030655633718426736164075692542761987441407, 4.59084371199880305320475827592\ 9152003434109998293403017788853136230039273106444998974039408287785074569124894\ 4586344566628878315388090355247710186437836562133846461755884515329720235923883\ 8958098280871793712957737671620988265269097666156817879665057942656114061619192\ 9957909228525227922584121701728758907783478563561545218948988226286386147878273\ 2364924482585588235264174979611066118985884999936425903079406052316906379387952\ 9186960496436666698167407109152026528392684379450501144070662079688121293528080\ 55195916, 2.2181595437576882230590540219076794507705665017714695822419777526461\ 8516812300473651099168335617917698238908330081714477261776114813426895281663018\ 7053178977662597166341787649424939621713151092531329112139111947076868616694835\ 6048091822939660253058520442984049348667960908189741143698053595163118562957467\ 5073209850561282103855279071540445656823271878519992221586206707060394006620249\ 8569853901684756000912020198284638335628402690954310871923575057309573023874406\ 0255356864026734130423008403892151284355609549688, 1.48919224881281710239433338\ 8321342281320599038759924735338679564045080163121934938245116319794320791035448\ 3526624260087973110744473330436955258842581427073174841298046257648894832843281\ 2893121944100199872917814856100310148863867280419083326306321718677445349414052\ 3983418641833981953296210519653799487111924768827240937746251146432168929378732\ 5572506280821099048909888323455474883472897505001088950143502328660699347030103\ 3714820082594508801896697373207104478979213221024899926060321884673845278613621\ 47079232676, 1.1642297137253033736363209382684586931419617688911877529848944678\ 6183546607895374475595790803713873569634335321613566759945685976151051040386052\ 1235893636028714221763921722024352187854421060904097477572626044657124253119404\ 5567523533914990743206637610741798299834775284289282722828263458531843761856295\ 9980531333689913678698557441749683060388003031739623097582367395986732104831021\ 4225148573080123301118951756673808130167130315216896471448944517052402323231743\ 5918014719600913249159043008597211423340772330778439, 5.56631600178023520425009\ 6895207726111398799114872853461616744626322907502817802305503389653621021754659\ 8196333384688347776576928798063538635510061680004776023831054249706795590819467\ 0656683733657850007919485493884964007047805848263726357767339120243860221577092\ 9246913870414761172368953647333097808048659367166676520490048461451286509508847\ 0836368067315716893218797128753828167300887574101795065838914042787469022675376\ 6530211501903974016445722175792842311310823580518768989848718496858892799416297\ 12667228542986, 1.1287870299081259612609010902588420133267874416647554517520835\ 1433377051098750398705540090443840975746514148956320921900321530017291738593242\ 5907592643593704740625188362578607390226406777094716134347980403218437092031813\ 2558529534388950980545214237496211505603650295768508721789931986675254357421442\ 2328782772473662819816747959440915912050391861413505734006919248523807899372903\ 5670015034479769371482636279010788034823360067938198470464383811879044084275934\ 5363628428431116766709180457060337717752829726467767692, 6.54806294024782443771\ 4093349428996262621135187384135148940168819148576204738239137790561761994319309\ 9847302964417868757322273043537626113155438811945161099098296847444505350859170\ 9671185709269491884083619895759565152480412994517774894590927136224716528712411\ 1732233881484551498177906658339093327690108176301807325662910176274165537175070\ 4807913518330858512030467319039795126350075475357844555203542033785478816529588\ 7102140405240446972728044982252345456664806955913455559084039157071146213154773\ 83525015915654310, 3.1491151177599365909701136646807688922297786117662526847907\ 6150003942798453296946351532580945890961941129128747312584038781979351380924762\ 6029278099943966819837846588236260348054803736669504087748763493128602134350035\ 6475061076351890456628132819075979562583660655399537609406768096161370859469188\ 7241524124645982672575291689636061026615440291204475188488736296674787474142959\ 8258905925851471515739486058420896011115691683275283908277619487795271308885217\ 3426435917766501823722844708283201154284803638364804287238, 2.06751172656022935\ 3024612406308826943559214211492387528050717590234603390293976728510685630093050\ 1694611656573958835434281107712270897137104356790049017936524076398438034276151\ 5584298288848115984996106387285261326991272135337137578879501537810371519688328\ 9049386608102990288140918631418630663588742274791830771862146300875052214173726\ 8554789952208423189732467766969879944212907805444982706493638301646837685388928\ 8682636698330965547606039946955448919122075097120169120411783592042529773998562\ 65255510365743760785, 1.5585810329024750082750092912459739225208504720945386922\ 6673662932897255838784229989921737197710664093281287581337592118076213713548373\ 0579746236822816641260955617387503844008572867817851519922064853058534892715142\ 8226797980045320824053757465778414605374608680148081121713317385950698020496741\ 8161908449777490443746674793403977950705370211309320002676572377396583802347885\ 6124015764836930505099035695183985715482587031639174512430873698812075009263032\ 0223536322563736894008417496974300459191799513808997293687897, 1.27599267549344\ 4058485305607789874948454588992911051916228146376207101476123929851631002059657\ 5857815380188232711047721037726860424786677886337116646604987521569243346642876\ 1886902869528553271485793754229930896677516836016676219828915188931756255850436\ 5847836407328957879551843262964004235695347386780147836944096479284770360279022\ 8759952811689319792015977257416479476089503872116416840388644740025895743685990\ 2889374744200716302476010194283725056559498757140263825746387814635604465005005\ 91938561048474928092428, 1.1057670723295673266198492942473375292315469768200388\ 4894538002358641849334792056250328643409504019046210073625543573646013157369080\ 0688809044682204229866591599852941995818992546918010513287603642432809188367853\ 8342776778762418770233103839885528733784804629952677874213626702405025947070288\ 6449137983713356382517572466823761681530752180966832229637845142314997767342803\ 6344722817644236019786425967428876087441746226778618096087703610482868458279065\ 5746142483675366617961078781379760405994200834417993444045774755, 7.53394159879\ 7611904699229841215133624610419588149075940983127897776663657198906412833528626\ 8103568536592492169132587541703151627234690686480469053038481796313244595717149\ 2478004343093722551739983494496083141399708831594533785943430340333108738560896\ 4452908471484831899309076101791487812124809242975353596717496024773178874075830\ 2608417759157805256806839228224931829349737003105206163848228964581582074835960\ 3572963436570254232198573636096140415948098449204362545507889446768788134692290\ 07853202732062213377315992, 2.3704361844166009086464735041766525098874008033589\ 2498777512693467316153135800179179864766837101480650850720127645680024810057555\ 4998379615427022855985781499577272440710792542155400668715731992428067449638182\ 9924973414711091480193867037169595198314130590733941687725536295928873899027852\ 9383348571119857284008636718068997887947460999173374652930611865747675467003080\ 4087072831972624498157676394305393284185926075373844487967149502968398397321638\ 1405487791973583222650663965210089235035054501908120546784447446752, 1.43451884\ 8090556775636019739456423136632207772206667330770679858095094197302096914630956\ 9665256322935994654337852243849128199801596594869891238506296090656798750085223\ 8002902970375021224889801368825435511825497159903369224292164035496067562608682\ 8020446640190733527321326795167413459246435705136921727953688114902419953738888\ 7637235087502959175499259992124809899525021666624684693566484367005591458485927\ 4230129232893271901166684170733334763435641294113319626212945159847569558086053\ 07599998869179942799067931067, 1.0896523574228969512523767551028929711478700677\ 6756512051370404325362641746587950335958967483618424463823104815185711715316148\ 7618196030680737936549680455079816815196812591820500816266169019572204951256551\ 1602198872895895614597272625671469217981418462051849888442524310711992612261155\ 8632671202354647155730271451058714728557459950863917105268549017401458555455667\ 7850133726857848381776707416541946775976220835984328404047978173226222648751685\ 9259944997417977536184033791641566637869201180559556192144245192198513, 8.52268\ 8139219475950514392214439559754758831469322020898532701617905887016992951383027\ 4945063524070243825247428095969641862294236122688579553713358332598415475362442\ 1183447746762492081757374982923457758189926072657685503316045684278242349455400\ 8585344249290112712827281397072846612697256865433391553777487062433205119006653\ 7428000099454736584970402350553085397221419348991306561350125694644470266918155\ 5539604757411083894083628001682459611780411754511383498893440418512025392081668\ 94310728316681399279558202692350, 4.1065795667160611966422907889183605403210524\ 8515292424696498238258668389976146475762372391056786611761686632619352299601691\ 0854275861592847824802199095363335375489651524882567785482160065850066976024020\ 2969577308797226944618797523578148708246396531927294606915523369908665495260640\ 3312622887962806889001982275766537203426338606847212565406108544083903534271014\ 5643025555328101406486511043231595893096375799027538872043544830056981724959055\ 9507889516953629449743790634904937031809410617892756105963007842751721687, 1.99\ 2893522756922757718203562637987517141360387650030406292209968142477353781190380\ 7977077441157048695892577746678943367949115389797017908864656635241995208788397\ 2759829767282445326920134410446344385482266859061754589600823599458136384042642\ 6110231031945185195081904585285048686088247821317044352775290386956927347252353\ 6557290620735320664295416161447310316214969663340949165758619411395942620593417\ 6769771867892717486190026434177922947500635352277396362282985619325141350870345\ 23424207932443894139594658394108006, 1.6007161184139832896776129264068336971616\ 2103883996537283002376424226646058180870362545980207113667046177628950901215549\ 1164783962871231035203858839963295988259870032662327871200153441604825981803450\ 8564485947605719057385974411121496853377068267806480079281294626622170597460608\ 3381864265140350877719481959452199367532806853544083521259311736857117568719729\ 8148163654172896366851429433548614618942525481072676764859230620490941683225086\ 6188374506391876866780176952432169845480504460570882909904311204623658377158, 1\ .190151186912872714603859053883035264871381437770114232024031093426762133617865\ 8689051146794869681688038713153063683839406634542283524264306924099415471916482\ 1227537839043768774563611348418911447375000232272784057489213408555892115265965\ 7058832624234085016048467107253190858664422122717933188645260565708250773665691\ 0251779742202667104044983345177124289917818691945938470681328849427634859055706\ 7475853467405402916563880023907596802151048787970680957606466021515249538718064\ 21107205480973481055203847185554334081, 1.0777588331334957972570063330770163292\ 0595374072476678635897539844059597442055203259104060550514106121107550804107269\ 4599724508196374835989197041753513996231440745015021772143882512602607627967803\ 9861484048553129709541640969391622118751645693510379338971004706607481698871411\ 5737847513410683195815968684957207529216559442753877484785702533545382228555036\ 6547200871324435022902478539329627980080877055416624060468357773997321433602948\ 7950415658305864269415037893373861621924740846986257850999217271746366646863605 , 9.513507698668731836292487177265402192550578626088377343050000770434265383322\ 8210115371637942664472097973952589211021534398110449840829907939520968633135461\ 8680906660939214152669874439474620560529459409830016273413516035643324812559220\ 7365865902281964223458963876429848535579144780344413047597010886052171553521315\ 1027783021873866710176377025530688737305900132232369511327337747876354182498408\ 1030028562872568717787066167487902000748659356094025775060929327075327728322795\ 66869234752061509375441863049855314538360, 2.9915689876875906283125165159049177\ 9111280602492171511274411965095638876787632021799025995255765056542142562682614\ 2022375700443136855925650397383325006996517314922174456932336695015447079633770\ 7384362546758711991444633860968972435829606947586857092391044807390467619752418\ 6031618193782973959519480201743913443011990444796696241868095063666961053085663\ 7969389447447898344572092861444178404787086639877496651271434401893110574781747\ 1876771222037733141958565910986961895946897766862548817919277143304046506272460\ 258, 1.298055332647557785681171179152811617784141170553946247921645388254168150\ 8189757986774126693716135746614661303185421185148587401567799547966060240732719\ 0303280719632702575075802554611604822524198061530050057430990124097483452428727\ 5070766258221863413341712303427462059259682219487031376860312782637239487437774\ 1398105533025367932715614496789239253203919320645218582701755477555584914850269\ 9576274969414312661126751886415299852179894310514798399854808838405354059890299\ 61298600897374973379524966130406697971372882, 1.0686287021193193548973053356944\ 8077816983878506097317904937068398157217702544756691772642101896852128458834645\ 8966783255286139252190768849979551937903454158408340415263369380419710411739686\ 1933914696846525489027584593274905391976811953749761498249869529838962557004077\ 4860383671444967416269399382239539746370524422148572520957564072855374248350056\ 7630092918158678626393201640924708259758438031536234349487571805967533568289513\ 6397163951088084165746673883084413670848443258626325442158358745766800667912019\ 973990, 10.50587485607868519189500282084781068437501927672900062200704708082411\ 4389826762565151552697896163463133970352964528035454790659123575234755497994456\ 5974953156808296717562729739072378128758682057578153468839097299003726190323304\ 9478147513638402069571071320867182126309400784487555055953026298739113507879555\ 2277893010158746556498053438043067520651830815167424698653707822642930652115219\ 0367332087669847192654860761776164208028268767856143517150871776100178263858078\ 57590255946276094590588298783447310489803791697, 5.0776078371901076929799361400\ 5897313258704076488507038439183884646036615345216333509244151514828977801998661\ 3086102155190910397081510842372119770052938911941952522784260371413519836628184\ 7132803539591120414096712536962480416074301413230780827034404569136905484135451\ 9771552136138315064464035175481625005706563139822693255718435391033715313468469\ 8778135897214939670369938373777526983530288576698573906425720887646682541620043\ 2813218990868978562685228451526298306772256878159200479365463742695447767378837\ 180986935, 3.307353786957645939505091020621773134726191519511346350821166161241\ 2336791278547651679837411749735021578710141857092830699922597440020130210643747\ 6975270363287140393920006393532171457224675392980990674767706730853009065222504\ 1667936210988511923341021206105557439846175601786033135739877613415587925669036\ 2408260358301203056605504431993450237062510781418255617878376961682523188078165\ 4090313608822238284161803362738120210665882381426045210931560711213299517127599\ 59803458673515297183991490963613611064713195336548, 2.4471061094851702315257252\ 6115194683050333291569755818429175267760628699060116345830864276901557159473845\ 3696189275344033428863577655372709016319006012916463035476565960925868375508499\ 1084521290202648521770659989147649400484102023500009987805756268180586249010226\ 3036335718352332783965450117747589270946429777622046292839138217159433946160250\ 7014321031297906572937842423303053587474394942416158092875544412960564156279982\ 0317374488252480301420050934031066331744415601664080101565756716866810482594476\ 188330731292, 1.948374472990454589841197521621020256301417013580369745455508051\ 8724484044667017978703895383360358568963271009219042598452925075224815253064154\ 9391788803799476729183928062755285715012575871322557178558754912576817025793465\ 9028506880988576813288662165176523269652110209811124760198129632506857886900955\ 4639545408617877655076620915172310803895510964687966202803359390588523220512257\ 2350637757069733280879676691091936941221537460519621139858168223535190300231939\ 50848401583325117828242217776552281322698081543079525, 1.6289981246086859580741\ 9599193155485766267176778930163086333389653772535118529309727899005288326002883\ 1705325747237739972403265858950632842916979897071771797506473295921298204313794\ 8447227358114109465777329269141309435910122714636702230532461247481910730254481\ 0603450906198366912251148169083608970531957901910993516380908196098757928621810\ 8033614027271044679261121277723750890206025291129691923256551433920939555771681\ 4546582764497290273237177434676389491646262038514969139421647136281859222794234\ 775116913660646, 1.411339002904189318475070089021603088963275133663784330606082\ 4019276963657500789335282528581635027699872010323359843294070479621309066308770\ 6742103924339368625478278540734707603890978199837605897215120793267388759760811\ 0948103456328114779471019536195852107197070621236419289327099113247882504012149\ 8572842222377960263587186061884922377182850439157540139089325390566129645004105\ 9408111155975177967020019793778198540448384329843917141646917472273582884302809\ 39959458487635932872404651509678872867806988299752650735, 1.2568727418003687295\ 9661009615324890313456391529840136279067757220400489436755519416695750911266996\ 8645532025587748835386539923661896473232883549941580504690704880039582108289590\ 3242188860442590451210994424583511099441219644990114437566405092472856075490206\ 8884619255206431901812237485976057674385713211186108720575065712987227927377238\ 5418013980619282013297640135488498182334356562803805066817641456872146335105831\ 4908912466107972445885526932790953992582130944953656092703346777077591687119366\ 577040974640871097, 1.144410637437571830880742896838374180314897432204267199722\ 7703273523350374296933939671680780399109055310824134893693503993257210306930869\ 3359418892957227852229162425091758262854409660958350110837062570374985695095345\ 1204764373036552454791383968277417103461285887069367565328645829737253832450103\ 4605441746931562279037595512206932408687715354151409820661475487135590314286860\ 4298140201680439203267228501148049200981576533969307176300388535572384665158589\ 36068682558514690741883534509855514347041403901971637729035, 1.0614037379121565\ 9558860630835671673889632313795506426788096410045496758481036465209563240151930\ 5317998034994212161149775713143865818651843223301026579921489612385992428493534\ 3046153668948876440282674562318627624532315952577144267837366904679457844462187\ 5850077746969409417200685516696101882852603821222050195763392298596867869158341\ 1684140887906497827242155857716516439359345508921917941581188600676739887139663\ 1590651416791287746094019125472771751925871712211706925628331362647698493477754\ 009891000778496203540, 11.49942818607399066388560985243920097987661520136529721\ 9538517839364725399567611835343591985722983814570209848389408847304597304096038\ 2992618042881470288660072537600821144493194329250685515864805412688437280379733\ 5437579142928282643623571236833541708882389199149079403006474060988209540560424\ 7206686776285918049213274933125173318647803746099516829744696512374210089464347\ 2244225550896546947795966956541974166990504983556144943217194772264138900962618\ 13914818234233544226346335021919758424934804884496607310626153, 2.1275570586022\ 2197157227843934429335060956922181323753485986251612600153464149438615631734255\ 5852241374273565152254390476337882123179822998287299588592743435460615180070423\ 9403439472221809806142948270558474905660004802482012152847890900609917628146395\ 8310873491287849837934999059909412243345435186779341398683063928446341000683641\ 7492033850858255921684528865283412980120035813140549958700532225265014050478467\ 1400717716630675957521491654072448851373896721741493559208818170473864119379127\ 818227263731587219989965, 1.528709197087111005047302663828105693597737976624121\ 9244435652916814959294194476274150253614608990035261604997999047335637414416363\ 9483665046633832748779576181220248849994190901040644877612841943084290576332673\ 6460561599317563583227022988809581422595052551122177162676201425020323479529154\ 6209882629933940256987841707140662285542539731955221117365665378675345358326704\ 4157661188703078012047060119946688360889880766313675738160756473419696030028794\ 26162475690974611289182037767793792283182808929542930300439423835, 1.0555465648\ 1346630231370148473426220981037911485842872841489262028460123999365368332691645\ 1205039754949068962901143732868306407331632810043468477776918504715576840059754\ 3771816187565981658735256563914002237432180398933093770043630103525172762972293\ 6446465683991238693664035017781977971766254548779614107350310338639280023494693\ 1945363828823145666311711241089919311827211218489275619000368539147201862297435\ 2662096495597842818627779192882541454347172099412073629806001377360536447214799\ 431122902049161020892832464], [.57236494292470008707171367567652935582364740645765578575681153573606888494241\ 3039891811635137744853851004906114348994579524102763961728293639540539405143412\ 6381969571331729514512423866794349688946015598154123783970059580141086136899440\ 6328158902491184865665534750180003220274363194011163504821675247975590753311862\ 6234171695634948289875702388519288997699912921283011424250740681089579626252835\ 3819343014038172844487525616718039071995707213214798356448890568263226172520529\ 5035804092854124905940915934488364229641, .985420646927767069187174036977961391\ 7355564963858858542347570100894041189137604476803765983235882605942733907039993\ 6529129254369250289877895397760090273211749425971331921960772094982044972367815\ 5352046921945514664715426879113452120810922219243757158515782537391549771950190\ 1956741907530777886931635096421619635241212373202996462542027076771147814021299\ 9701118134620821929168288782399422951184173911379629911681249027150625417722613\ 1132308201558307860216702185565789579043336285848645446700256500740038108500378\ 81, 1.2880225246980774573706104402197172959253775651128605504999870225339612626\ 7569883621607381641761386618678876040807516222611115631569418371589095629394839\ 2471818882737492855191586723553210871030258801881229074579835098556043568092197\ 4506702450796417900453295529571387356157950991717786643685988006971660525572483\ 1314537937299721522621026238287090507850592621737506373414849158823979606197047\ 3205852921035326947430043421141383943663873307279159056219572597615078692233820\ 7389889667967633270044438203224842696154498, 1.52406382243078452488105649392630\ 2192565933737406403475104287291464991798251808853738818663392785516992665720441\ 8679083393659589019476211486910880056787909093310462280054896068536423058822751\ 8977378645007953804510990074711983359302409934298129181562540028892220043545005\ 2612304432940047345051046708274889552726662520002469231630531296726025507048372\ 7804330143023260434630629410525863872069812836891575082998237877500518661252122\ 4824236785968008886108565793863972905401158418000637057617363671182311471830156\ 84127, .79667781770178376654473596239162647403944841245829743620972901895999942\ 8642979671209032885335963953133372713372349811497228355503795610576242685418025\ 1598487820298486230948809823328204418504090667484172195939587800981033460987292\ 7298023360522998454772727499410864483295784078995643448254713169259711253055703\ 1399080828016089430689641964127746541858530543169083330644953985854695040188148\ 5781927931800543384306571666134541608536987813850628165372509444085743714648995\ 7970761281803676878344760968560567009700199730, 1.71673343507824046052784630958\ 7930757279377487105405563873156314763688625504514100370461663250824815884193062\ 8197717736296831466554232856557839253472389342070083279971541664691835750907675\ 6230954426603581508844070791798487793606570022789618844470146977586589575804415\ 9104442027584561415536942344246608673845743824795579654255559188559644907598843\ 1239363261180107167716904923375227579297460639511222690930311453899843229572937\ 7152042326667999868688743647773077138123631264923783543689492068971327533630878\ 54053326, 1.8791692715958358364559564093450710543995426217203344514418253443518\ 0011596049714593526046079346497090589557324290342808055441133478992609820217398\ 0457279256547867823826993255130432566375628446833858934439709801743195215746172\ 1907631768625576669914707606952163826259729268225253665929108083475678372609666\ 3171910967476874040308607831569081162970134183272484393269364254679278504722633\ 6314250883032948814373828197945243327751729025367814427298644292046413131292839\ 5533379192704608134643405853143193385754577598313, 1.14712149837668758048594413\ 5081116840533913970287873783809476591677690748363427688392712141706003452972427\ 5432367286510182935747507198009859224733962492779620210120170796785425627536645\ 4246160434066075516146384129326701996350107056762768490430561840754296359886473\ 3525663964214766429416322723020819024611426312243638586408927196316109766371022\ 2751016363415614332286087460108802059128278768120585227962909580048698260320063\ 6859537014104998677279235913731307220529080764436616098358516311385055945875189\ 93370032292, .72634581975463257022043562900130086179826512757226752133751347980\ 6737589848045854267913568414876652766823903911450099404160322305298277907030795\ 7783747414995684093330741134973227917606860973177645088452817443476180272833725\ 8025246658792666085449860348192233132747085120823159945485260733895004379177978\ 8986635862070134805127639069691006205642675779535213648131223442264790884041428\ 6747758971017945023538682565244728552154956327289754953317860862515638518361777\ 0443730136780712513528535903242864863824556647146452, 2.01941835755379634532029\ 0521167099589948280952134449605131964872679314959210482405822259316526340030640\ 0501966506295314461280135660274139417720806186693979688523431574045404761063527\ 3329597809314833707981493072349241007438925048030014151592550593414847087110341\ 3660833185708284673510894370180981881512064802230742620915112952428121999308602\ 3677636478771231111186291982601998442709287075039318233014997985533142809842646\ 4447092438285988390138202770267200728673944433662112277591462957249968698354729\ 71051957707239, .86307398227064746240508909413401549533247062934842713501214158\ 1554733989366183565581143689291342996875896434260850117705159923758306662550757\ 0371327432537050608680368634096378507178880597292572952009767700846188009359599\ 1208892001353987919836314143040186149824626596671208396608051567115031753346224\ 7025791074547719441938185602140933950016273119167576560421033251171113682720127\ 9275410299789766182546066357538820304483639639866687887313582939724555731701914\ 7842876708529467687291214699138798593134790154590863982, 2.14273180037669310488\ 0407884896452638386509294121518032526293827505333732546263690873810727648087779\ 0855649915138510469958683218666722089032641869481188826604866278879321771610196\ 4168252401752669269581269217253619731322217300992397099067768356374894123930025\ 9509530908854403193476415590008786539432261130277182839625721963035859479749154\ 3781705176023253475456027648633524822629206500272324980298398891024056089765067\ 8127154523051576606320777059516314142091999388222849459197817395488433194923210\ 31577676950351754, 1.4125904598087849206800753977530209906891447242848433005511\ 5216782249833905185619346773087044376626521586157899836193921990334026402412538\ 2543787390155014275261502424164403685826558808624790417065774314845277489320400\ 1981300413299951365027737435819662269839727546373303938787855040576740501303246\ 8011440299392776808128795120551967358052791858041633307195273347713873568362234\ 7996358057029079880979730736400800169436159904889393945831946783947472518826825\ 5673200793932150480489053802718917433821540916888588854842, .689587614192281125\ 7293761665545185486549485595936388760512671738432210485992731040313916081763964\ 8535945940772436478977681679063067154314300332662324098275653568102995684736955\ 9437910710282110116200782727907766638625277105702961963490795132446577874711228\ 7082101106639082750740616282494700135082071232507259726444904412394614465502788\ 6408515045729012577353996222877819517834983452358414506282464806989442192932462\ 7915419844790585748070739541094455135587585106865871404092137048573393958645922\ 91822397146512499557, 2.2527126517342059598697016463684951186156272222949537650\ 4173983007887029828946187029840543227637751896524072723033030704090039306382441\ 5181172632509269923462067987018309951635871956514705091314137665772768445485348\ 0733631773098303464933116737276634581271434451133150463267127184484460005228085\ 4829193073495154827227033452411574456400055560371433368082178095906279915752607\ 5204045601416521120978001744373360578181799267684403238164585057398953467505530\ 0527096994171694345741674302752389700685684042520441553649629, 1.09579799481807\ 5521677168142370107278445148450764203406638623643198254835730898334251933314870\ 4104177298666656338017093038633459326902534661479521858483951037770873576350791\ 0117485075010022914374680973970270518490534252318096800431873065328567198435979\ 9458861546498320291333358869066132132414243474778309068918722686251083653792919\ 1631224711760258137578074783136781318603174627721135023875132728049722230322902\ 0374641939483956928789463308808601059117884375299744544342955175700175288274138\ 35241500303699270770286, 2.3519346107987927604636809576493869633656930186025812\ 2107023140797838350077919617674777483074521088362818656408851317723021898932653\ 7001897933772448120919099508825169455097225653829527334376357855798586095133994\ 1540405681620871695182305183487098594360366782390982694397511238034076575435872\ 7994759847499162841044690025731405182325520777446735394976842517549081521022632\ 5970485305159243849589867109929701588094406101807383270320736950692722101180429\ 2584026183555447790264469622095440891654767900449562245861514563, 1.62484025249\ 2094979953144454869780227463047976784356331257439908481699846983184415066729588\ 8683358926464615189961493534495261912661852258415423494924723949456241260066839\ 2669885857129349992226913376343688548454205802206461711916631069891296652841835\ 3704235844937855405388049123074305947894209498593128240046138532878393144676199\ 0984618149209852275038332720962590907938066485752935449687211824679098415201398\ 8479381278249976331097255282041139480397925194130854351213836623540964665988382\ 77539025836073840750786159, 1.1961484095166536068825550465495102325961051170255\ 2123993257880240194346506781185983493750455701952359196362547155509646022593798\ 4214617557451352784879361515590650518441715130264547809460371019497747059973523\ 4350343553402628422262874801356021333900610405387109779902125328707015937012334\ 4203756073994909551578046012466122580381351260318333440730573096088498365294493\ 9603164354253366769428161898613801935612362722827969933462588559023573161507766\ 6325893593237298655868561602385238691417224756821538579764605705735, .894906146\ 6119931614600514693388029414096030142712326035361881526647625755193393979493549\ 1645355258024973909801997532028544995274107849953399551040285178490028652151105\ 4279788691329572382432078901126468996573499389516069989771368686465760183399959\ 9276587660535674101288996617852985796247152989655525265196970819072822659097144\ 8805250371160132423938612547705751843330148028944017795308637042482923248453233\ 1522082263090883239106205650151064137989942360528289158173322125422654237183948\ 03557599439098539092961726286, .66699542134033048766462154930192740489828464890\ 6568524718893783882965767114361928225053477589687269111249044352314181656213712\ 8711514302258880404911895773584782552414596831229167946140498945261158818904189\ 9566426356458384672361431986262538604206304747154916689609202244354009806337084\ 9783528519136662185337264859036488301762932946784137984367983364659854789195639\ 7299767749231233439403368771533546986250070032998602618246197589306499575981946\ 7253733694486497290532657491578050706900553663660991046893165201976663, 2.44229\ 7311182889750915549352194088582086841107091500783320560936231471902958135600600\ 7994410211322521146623650388609774212200530444858920172818848934111903748775893\ 1431673410009131373338201102746869474481610536592344410624657391060606982476843\ 3552725428855340153715010458331170906868785111540384565633621175284630496174856\ 7354740006938702085161467839311358438106328352119263642307077444576698619129769\ 6108808376748616811483748100082062714027866861583690198128607684427206244769257\ 76619781845442735169448580673200, .75497440066026524138309889820506571996353672\ 9770035307673426696992521006682761671352683794015737846226908403554064156333437\ 0207612641706482795635379949519023763306383790073424721303170627671097604063352\ 7892502060465896405758628241306128334118199297997553780422379039860896897914015\ 1380239073772193893343577554144680367243049253029090600497219086208722416776311\ 5246805233081400646385651221828603396498509297363755095229031116544769709576522\ 6603478345089458385696360370826115048819449604859010737557319203261841845], [1.4142135623730950488016887242096980785696718753769480731766797379907324784621\ 0703885038753432764157273501384623091229702492483605585073721264412149709993583\ 1413222665927505592755799950501152782060571470109559971605970274534596862014728\ 5174186408891986095523292304843087143214508397626036279952514079896872533965463\ 3180882964062061525835239505474575028775996172983557522033753185701135437460340\ 8498847160386899970699004815030544027790316454247823068492936918621580578463111\ 5966687130130156185689872372352885092649, 1., .80901699437494742410229341718281\ 9058860154589902881431067724311352630231409451224853603602094695568742377044037\ 6934458760633169311117684658965900303833631772166945432979697914528191613306599\ 6414513394033760438344625085584810351611052160813477431314815680721907487935061\ 0170402943977227374623092847682432224620522160385672473524782923394254937169721\ 1062724385332390457942303749943562003826085287589894170831281247037945348520001\ 4060521381088555888902657658570505852333299573348993658806780033543740355065897\ 618448, .8660254037844386467637231707529361834714026269051903140279034897259665\ 0845440001854057309337862428783781307070770335151498497254749947623940582775604\ 7186824264046615951152791033987410050542337461632507656171633451661443325336127\ 3344609189856135235658301839307940095249932686899296947338251737532880253783091\ 7406480305047380109359516254157291476197991649889491225414435723191645867361208\ 1992293927698833979031909176833055421586890447189158051044152762450835011760355\ 57214434799547818289854358424903644974664824215, .90096886790241912623610231950\ 7445051165919162131857150053562423199432420427939965501361454718512415318310964\ 3686751036397916328805801372537893626707208019842705397063044248448112033731501\ 4282339828793304767477940438110706226538231311710605360918124321765495681954880\ 3741839091923055715539348436349161400354286060783941487682076693210337134102918\ 1487772769557934598397729232460489922179729283514428720585051791298157315449528\ 2638298125659285491695490973240050659236587599112008399342485899456583575854741\ 954662040, .6234898018587335305250048840042398106322747308964021053655494390968\ 5365245648728457594250732658537166705809220917454300913572925538657276083439788\ 4563700485702959840448719897781913147622929124177692868003044263555347421643563\ 0933079863195955591015950083877830407525955510607129829834144998333123646390471\ 9546201019147355149646661802212515453048665724727151203147164712457563283611833\ 3266199006517129047142731790377850674531474575569369864582644536326432841628744\ 08110789024998910541412740183475436165535875268190, .92387953251128675612818318\ 9396788286822416625863642486115097731280535007501102358714839934850344596097963\ 0257822478830308691775799042014275332219995578278983938373732927138059433771800\ 1447344860560519306374526676320390142325343327590132983986434821709548094070700\ 1423152826074485074657076045466663533765392465426121013327573836884345311222167\ 8715076705109073934181079559750403459068858067761583019568485101631272244259586\ 1678968114334900348409020602722689852238131956674124606318878709431344523223942\ 531010552364, .3826834323650897717284599840303988667613445624856270414338006356\ 2754603396008969223701378534228354714842428866149355590075601020096759792084420\ 9177728870211163961202287381623351697595850670788660192671574052612124826221576\ 5061901640578812361838848504530726857649289693900785227023698346247985616001177\ 6930242123642639856872275155790394227600991772374291837925531427152938363715057\ 6466444243075128751392020044884689410971734174773765642661423295086359359542428\ 17381602066553515031846580945366305120738346677667866, .93969262078590838405410\ 9277324731469936208134264464633090286662774221210995889458949745889837948067461\ 9216347965886265769706978657613020709582811236140085879999005283172064662035481\ 6604118031475113671553307457679774022071400228152114241092846871906866681965975\ 8449925917903964526575755636222470855011956264445985561300357997214138236167992\ 9291678002389116644056592669091180951326814584931179536556072203278818798424473\ 4303388048458936495361290002082604944533200417548865426063177939931485520841884\ 404896904456550, .7660444431189780352023926505554166739358324570803952458540452\ 8464215538885687472352822927668054849344996248839987004553419542483163334907118\ 4186488902386028108259478201089926192436127389378290407877027300635468859913732\ 5083942815336330350954685107618325549288375883429890386354276785479071197343786\ 2212657458447986010919038540364093587057986214266319524669775310432619727459108\ 1664059529100478433049718341010480702516053973833988279083285873262939148089765\ 75396039524971736904887847685270758665224810475416458089, .95105651629515357211\ 6439333379382143405698634125750222447305644430153170085193501718792810970811381\ 6758997175514030042089870661937696999263152122703131823787857774379704010327182\ 1710092100151805260400569521169918366873203287842014520598059403152056129112418\ 3948360178127527540337397868520519684337034175399261969838197780488928876574682\ 3698814891403173171546713025097838272442629206138328052191270206885066366710410\ 3625112293996694899391187025696233263801136524326158945514267813558805530422356\ 829063998479941386, .5877852522924731291687059546390727685976524376431459910722\ 7248075727847416235195750850404986274133596005313160275265936633893032593590773\ 0532605932244639247267533498281326306790797948584416132696440466930435833235417\ 9808275091640310654946729507984481054770944203628524135846764487429347690040690\ 7315361723132626206913836019138732704478601355923324123249694463111708683371038\ 5117155062483937579429526984453952600329836816522317922714336131061820899272583\ 36836121514686626574514176861920201209090710401122671712140, .95949297361449738\ 9890368057066327699062454848422161955044495058995190308296286666970504280673607\ 2359293540850574486989502472945577873451605269603984059345898810206343370084918\ 4666084045263982807089616120115350192556717904484227890980317606172473370637414\ 2732278352674722030300275711881667547791935695066283663527827040822061450644752\ 7710954395133080404212671161973156205467217282837640441936010478048589087179091\ 1347719948594055302857942035018490700883077161603955856862689031522284599763907\ 940253263903982906454, .8412535328311811688618116489193677175132924984205378986\ 4265011768165110690164227324308652266978546166056492527837632540922526839517656\ 5164643625749800362668107159129616665137415489937340963185779388529855206824239\ 4646609302152771415385053348948552251559595016730395765620098640088179626491750\ 0416584887958506692138267506468266196285797966482580090474511851895588753575606\ 3351365795883691638817999947248067019671666571373946794975743584771907795806946\ 33364870389255194643819469038157816920151356530277615431658014, .65486073394528\ 5064056925072466293553183791199336928427606295604505895089949354892092170896788\ 4698301226326021838141074986204382640314430449808409315167969024894281257984992\ 2758268471026048833979701203963595134269272350757999798289897302996685557603936\ 8196338127085073734966984881679878140360023949239164750564627592307517358086960\ 6036964068535327239307514764991316929431595637761131933618735663733061041154101\ 6892914770681283843753789833835276587515261855641251664300196434140078486194561\ 929103102617798328660968, .4154150130018864255292741492296232035240049104645368\ 1242622333237843978094487298972137114191596422334761874048329732515271890589935\ 2983976856834236637050268635920615817648233394839396613596941581609980807678945\ 8504489425999059772157359715310819584808294431461460286245941682529441519352793\ 2935607966665559087164549022662768447840882509679840007271415761005859683641978\ 6474191371175319076085948089284382902321467506586950037666547330110693709817912\ 13514907224448694415846357922814280398335727791295045874065755727, .96592582628\ 9068286749743199728897367633904839008404550402343076310423213979855516347561741\ 8580704518884021118643816215374459253789221236385674763620843035960605338533637\ 9554100085751394301613807101319519713666561490067947178561651213433158950386869\ 1614031763397947113246147916753491110482019210303956925085774318756450615119444\ 6774147882096983583248630686539172451468162659949975819119713870375780901114704\ 8610921768286161401041902711023956484727846438175301436056444573706333284552608\ 367098190622457196751776463], [.58224052646501250590265632015968010874419847480612642543434704787317104407168\ 3200816840318587915857185644360650489146599186798136823369642378773825725010992\ 9962743222844331003799992915992481983519651639544303608552353044440070694089579\ 8825240484258951884831776140190390103335718199288320690217750217107978748011892\ 3160603600142231361205647643339999513925265283248002249999929565934223416281635\ 3039711620356983022403475865530547884975280102097233778110588758554381953749840\ 5830813559191936551336887299687975831883, .366213229977063487616746297664262763\ 8020634155896782205109153133448785067521492485652493476090744826965987410631354\ 6957987090132371134361215782086802801730429992205451477224482875293626762179413\ 8778532618442683147917054286259100754134492626992900043404125338218471113533235\ 4716912837043043341068115269906620547738793568915613761533522274715900924222459\ 5207224297182379677169185027951327187526854985550149992931195069286698041819670\ 8578034593198539887056535740531772783272811924929978517893257491711848015721850\ 44, .26765263908273260691918382848781157581985706691385459386520135311269334363\ 1925776853950306802525093033230831371561870381859156468004848098344384404189158\ 4712878576603976135714548488502590877336386622001676370200807312652600366157450\ 6976092543891001473265745137064943613861153434486424795892751347872230715493394\ 9090204309311239583141018464034322833844153395012859166781754254333761979900103\ 2487571567256952816197878023146062439844813658740456945035593416043310120987924\ 5501221109958116305669049853075732039205236, .211003775439704772611185096074072\ 5172460210625590953706905162487386356573932500913520089120995016775872723145265\ 8706238757969595475629568156690657838202668890957767480332142819017216450286919\ 6835392603268165868097282777555741339538650960909899683908755361318318482077115\ 8680529482038270398505974888387790133624792198517417429866639673197478032892503\ 0784549030375208793453234585635871128007833657571324273851901853373062950576872\ 5947319592117185325597517129583506192312354644960884693565263780491577475033546\ 95415, .44928297447128166446473340237631938445532726953526663737590461614870469\ 2359473184815704928606586903755694190806860389171135948246592441207361340053529\ 1915712073096292893167015485120401809613239154259645041184592616135780136109602\ 2120453089438463177344889630730237668111903263657948250960674720515162737081062\ 5437232165767876939442815522768583351941558018748613174521391874479248309002314\ 8270810444447793755899086806299016712609040762871609184551199050689293559432212\ 8101756281026525239536520845022775040816635049, .174179562741650007877412363745\ 1713005673736831048463595488155109617167658995633539943726655938139254413669790\ 4812535026530151634217423593228419990491114352301512795057076697397004920133551\ 2768703910703913238792517015629493204013605028172249009472545906154066804696537\ 7706978222136660855580714424788007853374050054019023748101133204015837542141603\ 0839631958461737838756251773353224289754843518029004856446187081262140143185955\ 4576661788648945787463713359358697294284880747134655393396379247541374275754477\ 66201612, .14831179749879259271661904502677300986953193914643421859334366452343\ 4177987596909238967388760942683651488435382885958963737122048329121970967495479\ 0419088423441526660203636833133135730900535528992788619781209216112466642833163\ 6247976201880837581553910695233311713750321249562109761717498233451371307030361\ 4089780799932507574085179880261828022227606722333319822898049807575605791600341\ 0966628838551111064811653254449999133336875801669836957349883856006008475701437\ 9809110290677522672250894719541583634223884183476, .309225794504008876038818314\ 1334041395869542522121094420004373699924292255263826569279249230299842915581345\ 9618423170283508428586789105692516811401520067379773724668309435701479063593644\ 8252347415667457045724158077269902218989853212838740723188922231672832862569404\ 1845302682001365923005561451998087699158359487646206076593434578458237032706075\ 8972115885874874748276137746044301579211345059701465680025254918516590987114112\ 1597954330142326601918103942507081525997687157123150132949524652946762527479026\ 95312172394, .48617635378668689141264523664039909779243625392607607651960763614\ 4187529470775557699831735993131634311584091233908673098034779332548767182086694\ 7026053190606091666470157968922930825907438939891330755612389067125480729000368\ 0015157921715870430669926813550157893332051041418667355452683933015247774593521\ 3079941582774414834841379173177229503256117769131647154556178636549132981151087\ 4773724463721963568763187091011623847821776194128751660422219129736923876960209\ 2362729653374782228392759755411742733776402666701931, .129139860109953405668935\ 3043446094486235219371321578281325758182878460918825156519273890161732725643817\ 6870047348102688806035393982867666054190400358139560722960684704371630994965971\ 9328213461474063988225698160394273071593856537437809562724990140202638329040256\ 3067230271929780500719854763511104446796960271629038104784373290608490781162572\ 0464675367015306910472835632893709225374592653842735691524261547371484453852074\ 9998680726084933864708249200184261373814684304863722546054988367149242025366643\ 21277659114770, .41765546829258511407821482203574987922660315912831928141870768\ 4639681904615501846877220927241945309629672349715766157435110475606864680508831\ 9282452637139549679867645788144125418878784656431774395900572979419585724804890\ 4456391823238986609246989417927352580950406016162862600198788554439701157767754\ 0393488200458219995644828599161779268385644500130848092497081875926325519725507\ 3018448908751235869277947537405824012829443425288168578152141756757402352634330\ 2145976712223833165080243189786617379689755361060836836, .114360206978510030599\ 4265765428921179929440377536944324111022613874716145144789981827825861863388189\ 9442058761083045725416408967710864480088286029717843223763786014637552563209878\ 6510911413102871421961930157418488858943589168940515436329332656369123205376559\ 7121413967536083013723319842272714417412153552054758366663817544409822605175865\ 3455441944172532350261950189563533516438406907615288304129620797438367223240140\ 7593920066866166985637322821797203695250513910108896098042530422128797976410198\ 53247088072479450, .23596532445583519175240352478525478258001493244067523911554\ 4678657240739417731791466195924610931262473130752761010476478487291806237849365\ 7629964505206152142889944566876045042465922230116610070061990900742964764713937\ 0158123936796820845477490658270862347141590434396327843890026626311690510848417\ 5817424463841822649866474114952185714566537276037283714194899074248495569445839\ 4314594474377597139101540049692215315537345579131873880716428580904659968931945\ 2396005296068629294004649552838882915312060164638978730129, .507035006116303120\ 4445116418683115608100266267188353675086626720810441814314987321918019591944728\ 7886929418081000486913323264413744310629112248750845297032180895547480353665273\ 1056560478490901629941112106495235239878101751481445157187870876466607684481863\ 3193219639746223918035405745140847667132057712410517135680893554477808924167666\ 3119584598483010641939756429605978328697196431059510273889428828770460760808303\ 3048203596376024244847657070066482598582926520896645211774362348005235639611399\ 04835688800261576681, .10261779109939113111383736905723221370568993941926829953\ 1531222661717416475678552658006933909326088140373290739170040444611312058858936\ 4436530940927374806437199978909643777540558073030897568959536754962191575948291\ 8359591203092478380318307631654741797457378296233374153864963176934007947422625\ 0779193020434383681281946644384159846820474487999596406864554920436239663917524\ 9365610136181384902093337384221922097047250942449265611652084575405906692426862\ 6281838584900919536022938674850449578648437327290059274060167, .326129510075476\ 0695300356941749960457055886799979178149550525392318035228687899905404490235165\ 2614831429843925343646230348323220932289539090380368995423762078043709780980338\ 4803234692540288897911803135327508054098764597952469220288886095578687758882150\ 7430492846326641910399951896522731813448257807602903118259030016330492999760003\ 1429369720093059398339046447417594335707015542844387860676873658100963954755686\ 6808640871546269979034669567519900772740499470226601042952643495973243887186128\ 71402619767611873286312, .93063220042155216632695076871115450379731068462822096\ 9130614084502810602878443402394316067309220747275916372467302640301254620910206\ 5331250364567980307580832283909463191527686844606270804884666826085934322598631\ 7495206826810426750763955474916356031744074078199874613751135156266494976060125\ 5640302267850353899566833027313984100458808953875983759454562195098245228898783\ 5856113786653212473886212305253781214538699428324011929775226074040676208560274\ 5122473393598598901323498850537843213218702838016128394646117593e-1, .190827888\ 5096862411821576093772325459768339920122050967419916716007836448440430399534099\ 2414170726856514845807742923284195731609088421520393358337078163004055596242967\ 3136717107837442651391816971822647617320154263097092972335723621288341083001284\ 2234116858291748971207336214467094508203905252965213326026453155388051581468624\ 4830279354284051573289345935067017569620454937323989586174424757163315624569153\ 7275866779379941611559451256655056586639438339391240542928189690899891631715337\ 07686466809380671316049418080, .29399671925406975971083145448155790338024160805\ 1953096038810347384603545197363510862704563361623830196492392161126738927102681\ 8839509863022125508758002405902770888853512534200983762531554265541194815596919\ 4751764058072119079179788370056127334346378654995045791749796576966060279849736\ 7852905794069083012965858913960993816360631185284022491294645124992072370485696\ 0712314527710862778126695047393198906972587740836221304220873466387531288014113\ 8842788970501798981271738173214204851998783055895780897332961163956367, .403472\ 1609698950007274525307992347784273808894088778532291524047602242360282821633174\ 2993070238804005885560564028785621416009940267791985590023269326519585546124656\ 5101143210830733254784988012456895952364701609065531548499216189713551406098717\ 3641044621926879732129866912463767425105611174543778960554572279475517008073277\ 7800697592129836370151147669031083708997303160937049177386828774672005340984312\ 7051067070831686140453430522491963467169495667150511239102580342583186395631307\ 92641859892641468293741638772111, .52044902714041472500037932427322867569540088\ 4182658082782772354709456452136779316069633718953827174932206870232142620472462\ 9927039073448270290054258073531835560173120428620130924515516274165022360005415\ 7129460502031160932524614222296333939016620113238380160419395709811837187116766\ 8349301296042858972798037098486613202905003168012740157884465786580574201950182\ 1389932499225091777717373290574197758582131986408625661138275321778550448268370\ 6454043260383500075887659167969871446414160439683772950914041353268828350, .851\ 3692959996686325908291067410325283590744915683134486337105180896182893287068297\ 9517727998256073794331028332724619553195748444792385586965265173886132298735933\ 1534463684797469514209261392480251367835138684182557913508521362467265978545170\ 1792029229598784586435495164498323082512302234320138561150572549290447581998676\ 5575193117791381811636961762518786301599721425165722322267384559788203433220159\ 5891399204796752661697964559201695740792950782978592938394677553190082779959553\ 84253923285942854313011667738018402e-1], [.53721319360804020094062322559496582667040249934037817068976193071832408092013\ 8397330412359975439670048146974677371153207103955406610478058132836530073592656\ 2707379012241397359527348915123991651842176819316335516715603858582986577225029\ 5110179438183080901370148413790366358193061775417075294255287603976638564643424\ 6650258538350589744793887431863265942746058336613885816725697613557322566323857\ 0267681813658115776718410791623501231457823829096171182856277982092298809139049\ 2966522732957694913719525141899147834581, .348827861154840084214251935386992855\ 3662453745265499098803075362880099466100770380711690370205803195313320759177595\ 1399189867358746157189823079411170096205146690899726385505673444416807736202691\ 3194445033869085997866217428012205879784085959781529161882419948183729570578954\ 7692347063411324655361334270880618007237056343061709445763660010969876740750741\ 7271917610564542576484493421622992751184948386373989098397022327824755936833128\ 6249855594132446550006277633074709974412982741960019162820554500275549980298398\ 62, .73806064483085791066377614636565032547367306985351329858054523307043380943\ 9596066358231571800051006014679976736738430956764860368970021309208950244336397\ 6387161020023454212727411345361646001748710369936461733505420180797713726213324\ 5841150284898881045967548994319382412159646551108878087986286600530235756040799\ 4746034634377600646524232477454689228455881725979231748805861532995706032121638\ 3458374719253486247839532282454879369379101017825298461440741493847489419288052\ 3550957641950080493373155201570353229040952, .258461395796573305288000129873672\ 6120216253535279880474758408141508572995156401217871299658249150170363361103825\ 9133564268475370000218688175409146594798263269872188020312756120536227244890989\ 7755171835838359628998090629354179180606599191532362070193585347438845933698493\ 1469666148979207692307206241927878540044226626145544784847381520522031290851526\ 1784940162988993241596473645805095496953254888371635312166968507384734566770604\ 4717009202511617615721325114508089057923262547969155758688860072465297992201913\ 28912, .84442580886220444850434487734851288670395649823535409974927427501451778\ 0555993369717428168941825432786771296422649691847191127096559669435086783605934\ 7571486185199083275746640870985924501992290261789498063891478746193777964830716\ 4182107117919936436599777755538025237747172875436262986007092737494749615910739\ 3487782728898706745514519382940556363162464972388754124302442846773218699799675\ 9492252285809203528222068531801124436642507059000709156854964185279074600155055\ 3031102694959309380951123251598791845104373105, .205324195733310318790627879202\ 0131638404989462611761097970455619266501013607855124928386701732622784929943376\ 8444031906579062864994442227438443520794612795264746937087735920200205329186299\ 0947132699288202889628896909900966165888779560916642555286710937294124527797134\ 0422114707335530816389239362139823733152239913962161383236424365164234203886701\ 0386923874458589949503802575811706521827365823055528849711478302436350084403955\ 2923779957544077331034904304513113953084396298999852289113089963898876342885085\ 50874460, .42287782019144397979149566028121441846534255615940484124880895200274\ 0566500270791118160970229144442423377198637831243774656469973099648430540819474\ 2665495149629254073372664280332758334634075913162882077349804566492092338522376\ 7481559467416945331038408557188499180122535464615629242184763251908023359869584\ 2743231450211721492731638440007273395811368423879958074257578304126187723072804\ 2651444662007148728254783416771654402628749297086311837778317292696546576594753\ 7063566307200981887163875364133100467976953852471, .656002513632980683234661192\ 8113322291802755981380034005592650591591334739951647556973750472042511316482102\ 5784953883087009904892667229390394553741008124888243902524489674935064130789936\ 6827645867833961598014081049173632394917417442727366418924744930130720300362970\ 5343595514232408318088937990098292501842616686375572751993885727407381607136634\ 0942737311428072996525107155689085190763142229744031409685227141685329506512816\ 6699744694100949172979984270421378446072371606534046881672074473716887625775212\ 00331872734, .91060585540584174737285114797428104582880709884746164548667060410\ 3445176718346660357821501707690943049049768852961332871322513020000768620378009\ 2980717853511895816075604656450743500793963677865284348787704155881020630519002\ 8074808745227241994969177395026588768787369852262340321807818329973208222087496\ 7484576522678419489417490156841568203350056721645225560246529345213605080718235\ 9859841045883554668707740055967616796439915962703948196763887054800093287727852\ 1108928117024369188831383527004381581819471379232880, .170323552748304917963875\ 2516604567327559230492963969340239631737821505940321015038171032662654994792389\ 5172974932909450068129432190346614174072740700075605795762406873999998896812750\ 9321615008236275734359911030229900607885815732385642725856830003165089713743908\ 3175444130424158314260174607340827620744922841499391675799168886252229176288197\ 6180699954974758085422993031238250579948033666588214626565533647386259069835091\ 3441802561439742969188057411634587855826252095685528721467178985851228476906244\ 43686925667420, .95586997978394296767124397062402575151583022147949676570475489\ 3038025815446747451403567787678733140580347141356901663953474086308555604420406\ 7183462429110197016942480805647345409276362993404368670112516489354389857187825\ 5206093507670687193317401632346495086471846628046664691976970770980703781764224\ 4651332233301525027853789523960994087164810527435845288996548686281174229712636\ 8274682725742222648762001829589627103880818682282882199809770018033666540663370\ 2078847166041371647449719032016450122656271876704439201, .145523169930489353670\ 4927938075153820697766086353279807120747510790157838884982674052207215602241945\ 6787724413381411840488895234273294712190759932655359339223697687392629367570958\ 5459191094581179018206693073411897501959703138833716478165721052739364725248434\ 0847147444374803993004759338346063472702233378361164329478346196454601518632813\ 5994913702329348696291870178477042411331209805453080623633266349675348076399257\ 3012672061146686936389049511008543497402316609781001105969067926887533632101809\ 11520424403566122, .29690464035230970244591013213733747392685134421203873021555\ 0738284709986453854304593619565082384433083166406378703905705184715543923846642\ 1848617654433412033595659377608989189900540722321396724830759685587391262755118\ 0216931410125868128755544416330574727872725994785183582739320817015672175143870\ 8989346139784429277355821108268016860147398813300091643972258382200585335450598\ 1808130729595178534849201648619244493828751240657898319159139140827416615115895\ 5379614623183994147261757044036995265059251800651282473989, .455128485627620599\ 0526213871930011910268464610097694111812916147959258816920782058698066153836827\ 3861780856652241636290399435566055942312436305336745310935404363455022353109870\ 5048431420847010024216053979890217657967069591763198946476395592333963378828862\ 3892719220058135365839604918780559187136887223328985738260827548705185723301711\ 9223601010673034462916588888103572052245216522856800811128460360835231061019737\ 9974584834893619390868539735981968896027153116809060173755223715261759838558692\ 06695107860928183168, .62156588058946023759844196533808685571202986085638784268\ 9258993571499026436371066949832521634696306599296719354501479357110953599419019\ 2838527421407399826340476741056015340985606277333938874253943111829565891041716\ 7228429073755229997547709631608008050177256920642304654050189158708062184486802\ 8346374482677486008711678352241633217792453748180712792675151655500827090253883\ 8714609899455148354078971329851367779494837478232492107098118654886250829699217\ 6907333300870942568745830958163742488651307027931870857018722, .798280732402777\ 5018824392560162516156538209977691411740713997369226692972422890163910583090192\ 2830233560211723237902583734714484665597349463296735649617848349176410176589564\ 2575927044647562201760863528892145653904875948274216893305510792729746588261118\ 8394506451185077812463653736637364095729272155540871716465069511721967185918469\ 3659510413615028040189138504827898076748574028135780298105566189234791255377168\ 9490800420411825602562581307672718832030695120371943513863534570410236760086954\ 33616990371623850561560, .98883010309500492257006422182301828489490586291200537\ 3179577537597043786292158394376781012057265007681074033355177552441133661414930\ 2227574748567175725399539103431628803540855417607053617234314191212225261558561\ 2365715589626942455788500658581990146975543704686981424562235185679601316945749\ 1022546702494908452474134530479930547879396193932509380347429736414069386557122\ 8881373760297709296792557670487007165349930870868857804853101416163121021484294\ 0219246535749593068044150466044537836710211431824226918636306186, .127029540979\ 3485990426937768985767601950223632683210404858745645488119783530465634896463957\ 5706408786605523604222659249267599974149732192579115764315391242347765621223431\ 5566657806537327734226257877277793031845370721398694551542535640916707467089029\ 0186554246562199673351600692026794856528902396985482866492649935942610307259529\ 9903012546773781827449257586852655796212393786935397781034383887536364478503780\ 7344545840498368197962697446967200650833711968548623545155778195453962212870158\ 13232334542931201532293433, .39491652343322170590069833471211781178092074785080\ 8866699878810040549633660465031165176258686504940051311216114091433048313372803\ 3894928157568289291352265891353497370268219301673055304923513242842666447404394\ 7478450976796183194552566173254017160031533556443521430785821115684303070120489\ 1226731987468245279076966136980447731950898226020949998199895142522029871500310\ 6313102841834479520735422039392131480999968208666830688315913539053296375793506\ 6425871802430744521661386313682768892908343417531284084822604864936, .686484962\ 9546578850955782387443358620764906604300020463677167257014013715711267129077186\ 5447812051173932159998226241703827712652663467514751841896681432446092954538193\ 6798672646950632266443608183334270193366393706821779485495396691253492457805174\ 2013068603672261638673196406663326684373686258890117203184968498739462989743177\ 5257658657419115071123577373261279387208207868913250873368067755977251375029674\ 9935608762296836267694821232330688241009467246190888797364644823938131678781765\ 08137154657495076513461052618, 1.0139271141996067145473354520955967458943604512\ 5835230673533895846234579190937424191793609806547115113453370138568947649980816\ 1238129267324228501271369779922261757123933672938466013058241896562896942079696\ 4850073906776867032640415343511998578407948513707368435580018447224123101616827\ 7609051602133851329254874945850546773074084244015285425123701189166091549967235\ 2995041700685347388353182493778347975635215871128242287129277932081636299972564\ 9315725990596157060868746715184871199892346969142648949897784546541424, .112707\ 6525987445315669058640975357510989889123801148222958280959108777722876326374425\ 1360892325637673925943952684024226329384123372142614942211671473563316272314329\ 8980250236841628017157095014298606372020033116539308230501171658316433879729582\ 7212664742689621051568283587688933674351994557182157185117813288240330755205082\ 9183429447693270485119262730304185538474481317067669750188099567295401214723715\ 4516112097035138227218414723095558264590353683385686522524583967583350753582391\ 42781366358217352112031035286158, .22884459250283621539844992307180031769304741\ 8055238956798935049513787167422685445666480320609510419144949469002755628520604\ 9642635775212743242438387168005031866626592887264303568736892415431753662803078\ 1572338645464300511292340107605026829064134490045868024690431492924025556475549\ 9105465567116452540718196137807104474537956263339026449988963296556440807447038\ 5392472745688215720517056238404427135101775556217621246141648921570404773612498\ 7647883690142539580399088151126388280944108173320052830103229834408696735, .473\ 1857596857627493529134583961372950657980417690919593286091407364397363578210379\ 7160025579116836587292584807195040923518034093848917722828760027266289000360769\ 9422146603020609036912246497366392667166817889280393598058376255817370581635745\ 7609889086776052171344422514851306831473402200905068640647979317839302337200160\ 7654864018040383334145041373623392765068439049744901346960155777594043233833329\ 7542059484077872164079375270146614291013228999515602779061717308879249823222561\ 03564942394861416868953323544006685, .60261151712136317750084790457899625544139\ 8311230614715756039558674838910521083428571996201562124484976095288692037663296\ 5217235361916606857329596639954868693903404485012360060046631930583204427533490\ 5743801334471780591330955192412558208082760687069288739239309726032358801073266\ 2487337156368200616599754300234745427420429686779913937138939620625942993479832\ 1917143865919220569583756951676007682662576599890086929044261673196594496342032\ 9157966575637561295303500883303068551443050426413687626252815690124539142218, .\ 8809521681137377203347014379935444277402088705959831086255196201915644921230102\ 2386642321951973642249768345287852402821048826145815783523287072704479423574763\ 2786558493982953198073608831598224831528331806743716022849103977959101497307458\ 3059874632863297029533464932974649405229120945084176592600426362345567011906215\ 2999432173920018539052451821524385177020994573529759229690916190512895224285690\ 7431838610161223693445739951693325670633077001391873275336973908992905946376216\ 84022398578675683791655094193392823562, 1.0336880941403208204513473148750517097\ 1387438792821971046805782929581744200609658159880023101891433061073846717830845\ 7485068202263294962553910858322561862814736799187010805426984673561944160244866\ 5084418086108858029497867290086669117212131383548943791946084754558122443658367\ 1639351901607252042029109257320472522239433127954952823452258979823587788719760\ 3339945420788664246246725294662257608583040537367220753289378666300727665741614\ 5311776913899834964967229761291757617453840606352758331954840407633890131712670 , .1012886844792229896190970404297686145943414049119983760657481000766535182869\ 5586881782467553571189616105458120531661582628242750865540905415123521923435580\ 2325109983804002450489363001015699044758963940065606048003447785792794770922538\ 8802597989893830001827679200326858999106492714681736178780718898368780844488548\ 5705967837216007626540332862170371539931864615034389500568946598850912668753196\ 5117152659155468159527631173403117280006633559893573127019404325579110328720495\ 69275631363442257697444737982892345438736, .31240017789289262075728165832093358\ 7934792103816414715243022137706830056260710602970700873046674636152567469091606\ 1327793774246535533950169749617825214553534343954078790015519814831656315224155\ 7285079294089708385544843763901181489675299819517403561333666675048233221767584\ 8400478843324905078395189812287875115088118122223499223292275309222752622411049\ 4202073323368605524479954888359804273828168653148222399396094392107526030209163\ 2243535185130953135457219430965313494266899193740698596424897888392071211868997\ 175, .7800639342576615608835690998593831324362839440702152139999679350732928692\ 2208019384898133078708426726144851466260379376077107497661822725474491050251027\ 5072749107203040130138109207441690098334516672192692430071718893231257613264959\ 8414363377546583387024916831812740765235688448759606682340185779053106911286028\ 9254948794852392846075294342937104317078321313949354230437803669147029299253883\ 3246347813129457532932276378471465964164444707033309727589044207783954234129929\ 27627941833685178608848540798885070563408242, 1.0496589501864398696458324932101\ 0007043835542898355233615857273354469994469186472999523312328283288526342532387\ 1792348055660889586043278099841634545608292894459167866463917142629359418372584\ 5219796236723667979447506405079272890509158527979125321792731660059929775707002\ 0016448974232974993048639068079745299382987521017537278153584911516121989806269\ 0697106140454400797013952876973952559375706937758766270904668312346708636342885\ 0278556549530313085558908358021795698239575839851377033192732676112345441826765\ 378599, .9197109488931652065435063787501593000174483707415517071651512618240252\ 6081095118307218906481421179414872917853417308120447528045823407762624335710095\ 8808050633791916341805804392972464721910970037484581735004807970986840813879345\ 9482969366191679616708800119116299512076526019588492210617876897022394104144828\ 2786948104385511233836996583746890398527700023270155425112713023902933413654107\ 3115164850031057429919963761734637990101608794603918185899700753069755109093659\ 65866043186859296187963940609359033422478569600e-1, .18619187898857876613044565\ 8940033869439048955926903628502805081594758297451208694676848548594978547633194\ 1064751382559293889716942515847994793938738308494056626504399355990303235834877\ 2010015357695639706745441260878686949366671042246492161603704641109536267523274\ 0882559997085100279373224487846100129662673042570822099066905063151079016859584\ 6447106330168556134428685282844174727688928942779229474503655496132794216449145\ 4838220531051459241065292985013074001057190819282461088272205679724546874958197\ 628017964324, .2828769291832155156785177108286605909708152768014587387297394466\ 2450410279317624591486764729603711765729784913504958845951080964905924856417749\ 4900076472730681913560318129296864155708032953715106985695700481136206107396464\ 8528246658240221203086618860984639366561905740269883751904351258720828769275737\ 5041731921377622869533029769724202697736105877423548122015858244774963892685343\ 7522337352532197739503460120762828428023404660632972792096878124986425220010104\ 57784858837566751696152116151208509368453020672623053, .38228421559392735970838\ 0055235567175327858216093064259990243070363826303527830561297959719109671811419\ 9545236341043741372920623232609034282522634492136225949971320869589794346034833\ 1529654796217050450522564190266572039619041776760005613292298565338470693485647\ 8289077364283294701695456011873939175778414215741788694442470164629320931050924\ 3458823798103082865916710699475124220551583818588223204163312881822305818443508\ 6591002794230088547487263206437190750772732710241847608644281294575275969396402\ 423941725163182, .4847302377640401297204213738553997115951720341651769542459997\ 2261762052378061285026273718708872061052229803446221535686430146421884746159857\ 7913289321932076494746114638988823815343523855099381870713246780106656626605341\ 5313976255876838826923738118812561419490033552206570230985013051011922617155362\ 6594692062381135409978153758891135935431930344695675584172228260614434188139187\ 0650813265995580221267758322032507984985446481848022130506506897026157177418401\ 80495380428227001562171757883053091231930673159006723501, .59061348165126016795\ 8829667059507591816716261917833158511822593353611148248116905609829484571089418\ 3093114077866145197374483235173319928277252198823355918337173944800688771578019\ 7974281552788781322407317753024659533926324049407109084708174035176825116533211\ 8250998037304168497210888276339936587827803152305266440657546154845977227234532\ 3305811008826834873058601924509751347200934224600496246836548809313096829516525\ 5773799915344438150364836515376694150884045608900743492005037775077900284566732\ 533893867976281189, .7004531447213153189332875727635593410242170187084758813522\ 7780060947688532372998188879790838504167141587562720301418219353325472182736741\ 1402914523574621694700885730110682966093621527433782726621765180394045556986173\ 2476498396408416278400805032669130843455428738892669270518986929233627253114158\ 5119431274537069073867304399683306349605760928092712746802302506194310677682126\ 3374928614995339688283309324995489939046992278942872338493777944234475726546758\ 67555550675824496650203022002741742452999644174440901941843, .81495888147191132\ 0382491996799511695034373883880044244905003412811818866751366614640132830897440\ 5885772754978517898488416445013125496898853832134406600419907854240912809218856\ 3689074543614776046641876924181379532619985232584340798592590993591006734565277\ 6485170480400024481022304850638983527762914783321713726318184205700502715535137\ 9943184494698773849179308704113508811325234835902698787541931140791128096547986\ 1389019175321728614686001755938945808519865708877990278499386766617047606376811\ 901802484237305975880, .9351737540358294400373124117061926222330895513680208071\ 1525815946454689790314075665837790001836924100333879980981613896889784615795760\ 9994456264195465906277467118965294445838596395833824002400585207064746173041720\ 5287319731056039315239589188955604135515110643127373829410976202665410580907907\ 9624011598325839517638956800221029403120020997198355526975524909890073895404105\ 3092055031507403887575457270022496067446504466453281169358419668275245730362889\ 96212785538267648423979719331919350394415032370121256775579381, 1.0628393734249\ 7774434692541611382311041486355366226580397131509176676860719387355996528782510\ 7032454757698621488916551065779678367562947699041763646260911105934361410286520\ 1442071328959644595602419419166216935519739495053357412122461920266120127551969\ 6782509052000140614661888646253942200182916069876152271363232630846756786188196\ 1350090524340183733733649772655810902881214258540220955312822221883594023440672\ 3646010875447215934439567798810588259968876439970799102981990668636064078144501\ 689751167994118279532951, .8422360966669366165601323368609633671269088430736089\ 8926018042800669467635712022355829395052027744719241536775547696123622362908256\ 7859168033435148670383598186979588852474121277617816968113750312710824738221353\ 5023023542851519745904114152238109324432128536991941207427616033709387478241910\ 4176210070601804315357316494692286585378481435079604947977105651705590567598950\ 1672360630052864985134368512671482594093686269815617615977002706234408482358303\ 19349642803994599099994824449606317300457819688818673463655815273e-1, .44165176\ 5872352956221398744214165448652226096691215438896971494819282755562732387943599\ 5393791446205241006596421590820016443551105763928915808215635622534800470988587\ 0661648393084334836251723405112970397880565560316620171548774461969787959271533\ 2757513061637797620011670995504796928861537961037892917095515420605247433414943\ 0454982870553585617735036509577144194058612513374266663686395476492036758953419\ 6870619933716069586676018750161894684963708224170493764500258999133017514949585\ 979725138388563194554753595363, .6358638598208318911078275267657097001914851303\ 4545588539089881146547741288565055623545935650989957355084942591928650921394580\ 9107759756977925759651753763906591242036503562485630722160192468956223393930311\ 9467508589621776867345828431491663252641223353988152587831971395454843432829597\ 3241108378648596787158346762924882219819538544237915692885288970841581011795426\ 7382859402608011404871825031008124874636508035469983876987547716415207516361926\ 81472240426711609054743459532662885185882238969129033326045397012568565, 1.0739\ 0495017513094824102354179959198460759907144195127957185245595417829803966612034\ 7891085941373342051930445892203008493467756844797295750432900830589715582966323\ 2385460467172223825540614127646816731059397027869823523102788425884818107291594\ 7168536308825412550506531392179323047714298104129915112568110885546050263259883\ 0580335854518982927093036626953381741314043956823580225701026436828623783047818\ 7135667059455914832456462340333444263420051736452377233454016463719134523489989\ 553428355712562641723512624405242], [.51747906167389938633075816189886294562237747514137925824431934797700828158186\ 4976936485777826560900647722864999993500396459287987951163235458629151960516350\ 4301749621549691105059040522303538054580189331291755400919549072579130199041452\ 5114543158525930069719445861687005338284566142321649345602229582554897593005206\ 3375382272161007327915979098262973542448287986405417985034860075302216726633490\ 2610237431634746696056210835255626694532445737806394340978467877685799577030244\ 1584698130812806984494318314982119585713, .340791130856250752477640944012202315\ 2122808582868996278686462741215169180720208608409444536189947885979549981407322\ 3837357668616488492436892344977021002112976016611802981343355264479983328883362\ 2263068092217255431240644007140242053520603355500409191900367054839744526776306\ 8061691707914488022803821150840047894599984550377958045977339826789133495893894\ 4765416313757268996305858013112025246634012999360678038026930279111177960663163\ 9243434862796575778738724150402089548950177030333297359927773164527786196298908\ 29, .69919359449299809540702260849718121951534934751545290997293176683694496096\ 9639813348070882085711124939842250987471709818719668087609732776102007699966586\ 0182982189345872474096034952751758528740960200118305285560146976328129049262778\ 2653984052504360910176294810687269285988366903716839167016928101555401706376299\ 7048709270391542037154618232646890268660494603877282950486527492569255572693704\ 0407506656965997384364560493780325264450839406334698407926340043171537505194321\ 2620432926533860629868584588155050727926620, .254116190746343534059673713153520\ 5829398478245574739638781062235368841219816968908002184321733360974089287828447\ 8454838753526804450070321437784930816509464709433394660954276693381062530697772\ 9555621609167198413589645927967100469307086201939776479934595225346858366566455\ 8698310505709336795106762364734026256124152463439045336899073712070732165954226\ 9699439081372901131978719639263268149684044665980698133667309912679668579273066\ 1580612743999748681214847958827519127556745836928279716556816603028820718063713\ 42415, .79222102797282777952948578955735741116739480858778316087280447831968760\ 1563850474617938926295539747811350695309951585586858862741365191786740260990685\ 8716227552898933994162770334464553188583572075895920721749170556587975853177825\ 2722151134343834169547018991665823967999456744443791058832121727395955124436309\ 1375436518045975414222624854670095279054360687097516425639825271114931976988946\ 1402438920623270502273806212460772034530236705892048664267759153779274220398304\ 6572554274912168695903887942563244207201417027, .202605582860833791807362945658\ 9476943549067245369742214252808038822793769079789654710664623466353395762289771\ 0621776121219612782219327371882413934580801552359376481102885096152039134487150\ 6384796140154002675798936872723131609008051324479849456797551670460199592887402\ 8083337909018871921921977796709998688230760781515485901630272146936737658352060\ 7602130899725847623013102044658541142069164611149113931915885622147262594654500\ 6435912540125450132629910143643019710510133155440328237365245430818139070303014\ 21908771, .41091056478308658448529524323956671960386849829833164206726485842842\ 0365113906683169563232353340624135456291785210183355983749124392700729487081751\ 8645940441609760111466583337692936744577600332018927946466725999790694473054013\ 3372351636683375600711008709001956358412095527144590220908407287878148237236952\ 9726084752337614522536801195706763495940259300673341186400458691876492200330060\ 8151893918191257187201758008536217997273468760942508675357469133565441078341722\ 2311294032448889316593593924210776325571737084118, .625851669503663923880813185\ 2300902713117552728687626406392570643535342210023845293014938433983942813421199\ 1543594601541924715796202844806245167277588721455748136962071624283005470615544\ 7874171835398121931838677661658050130920356351974912692197594743328028143912244\ 0301961919255175678334530453164776912710484426830003249175772954422415221113448\ 2879313375467066992927816383914307526333926089545449421237236682134376027688166\ 6465632619948877935053400692461696109365938511499612717644876927743123453752783\ 34926598625, .84882119128171258752987968381330665100903196400137211053011861379\ 1864930009817198067062577240231987174726536776767786168220261528634054727367433\ 0340955177162176473395750683280829071790373947740907577592189540972147396938271\ 3081974857613387997796356937230627812035135515729156869167809937450322945146091\ 1184952828067240413016412272583385198206801381027149787467373523796477738766809\ 3948201194181426310762613201257447442618866880236534828198930802356005495329167\ 0256573182814870937592217603048477037678505683749136, .168463171730571834210101\ 5277755798173820502993762550753250277206041743588450978650895803419890826126113\ 0889459558710262063914792831111353096167659476089290679268203208743913249844571\ 2597798148388030123866274255821355804846200908521481136075804763648725559440427\ 6700718399614385922862553928227825982240885829483118288813270717670601771006042\ 8006374458410571712057882418333348820691937643292675977544118274912142205467770\ 2967390643267752272896797828343306973153905825210161069483453478425631405837958\ 35835082222745, .88690820689825810247307374028840687497612307351816832330026845\ 6787069994776399221403039572955570551773431828056219460333777312629419513237596\ 9193429562044353908248762217879733536094985055687812921535651254335842451066875\ 1840687313545982270534976878366309990767261678104484130293109679699294504137467\ 1377143286869228282990709195101956702679910652014432752897908079899270044265020\ 7123377581102670188087380439581375569366195827901941767162636972530936415026135\ 5305878304182593270301068795180061374331069749392594701, .144170375529993322593\ 3816956191408759558402896906874134098177588797547124344825277160562806038935177\ 3856823754553377263372190680794553823628785403587626570350567164992235848521666\ 8842684599601494084049439684003549260344319824344165939013357936119327509910621\ 8636462481615203758488328423013860374434502649259282718961550140053754062247835\ 2011916544620557105225795497776210303153787600444602952619882451851040047756146\ 7749054989209044433965856867486260774559005933671529449133514136286895202387755\ 89775748371185611, .29113384727381273831445101995782948350521235382598636260480\ 1356562412785466256340431661482543215573690961399438363466181252165306363979334\ 5399209890405354116295735778641038066637491456236018321330987985788075217425229\ 6233824222711245128215456475844522139709072249481949366554653530884614044182678\ 5250530878018338337507559620834002044364777105636877600025119664557629948929593\ 3706555306146445282753021208910136991254910859553147905767988238024846111760609\ 7393733917898176416938902799020077417317227636671712762106, .441184021090159375\ 1226925217640619888123270430693544305370861169068454945888719083381601161788978\ 4644040950840711473356734085095460538217302786420292432330672546783899836808311\ 4361375039293847222671075893190946838790176853048712004032549156560566580861889\ 7408877258249686633304489154133854373802866507994264426895883405544362543273809\ 9223684928967550497408429248811793961313389638719603038870574384567977051356554\ 8836061468879462608619786685747738618725787976731920385145342784191432908515486\ 71228887908308578936, .59469381038877967008768898780639468948431880108673721825\ 5247772822151450144709809521792098987923948811043849043510050386808620930619829\ 4785231626589674456153523233748588473674993836902874098285909835388632141318120\ 7128846276156220486267926184250019103992308973362781713185647713423354670273522\ 2468792715110276874022261096860889764732170776235364078669441319805380907712174\ 6908243558650914152817394393028145608739382886983399467311633973957174515860873\ 9820006478402183026754986593181165812746741399116786660119180, .752159814788714\ 3810074893209506294735936921200639838864554433457646065988503985068278338074998\ 5794621702184677254914304931024502250861350277752084436077116782012042466567017\ 1326055253957365541852666857622722803225383973649524504043991013537921917154340\ 9340029877512136611588616204429729887146423584441755241392490063387940719852438\ 8437913825915660234344137702889544370863903871336907425969813478719399281576866\ 6471843453527285437217034508660916702417499185100657894859715483265861953326666\ 19168595375927028706974, .91429668382131617655942421220906414409746572695758046\ 1830492996040788652069081254367102745794161349541380381893992060473744428360159\ 2125505495204859124641702974061934936874846069851240456715490331715159679796598\ 9376497202678478986058410358153347704909581437941463349994120265964612505913701\ 1381342970763234918732243602839322765027591654412007588292793610985672718950544\ 2421022028106367924349227636454673577921822435692300115522230389790050693390369\ 6009258095022453684644121651815300436455439269978101966001676850, .126001680814\ 5903985106470416004938305952572991368795237450336006143689038241227270936475940\ 8193522581615409781768886166577320101246903547830850221171577556944515390599834\ 1200629314503923566801865907209001440760202175882642031316397225183141144155587\ 0016064619922106409242220187240343053539516523392165824076704213280886203396931\ 1635911192647221759677971197669661525532918600371945121537366516291532392123017\ 9035718358310373128856281277728906900929847570176125285149233141093391581626433\ 45178588621865446682214361, .38453192237371436063186442493024773645381419058415\ 1620676374404514713759809811697002042670028809873030807811519511529911841408294\ 9325537385542845356002000272705404351337721933462954811809336979841971849402508\ 4032321184042666771380055629025071392020478238717748610192099523105127481455165\ 7084485189239134894152231939898997336030466609041696484584805851997816774554804\ 3973201841761893094763877246461467634289056851448892624665501010205815025368770\ 3920472186062448500443338994498805137290903210765233139838844315195, .653247804\ 2399217805517922010998439821313005238350809057858387320690814637415106341709577\ 8203351032102388767279086581223171110540260033215158223307030167786437382481273\ 0681625399734362985913879174331728790941785209633327878303592328391346414942647\ 4917881298448694828412083345706916195780979857884768957951539178451856998413510\ 9434080326388568086900316805375917645222347702433471309150320954837633321015620\ 5170917637803603710704548981819546230713116971194742804173455568271425574082067\ 12090894752511467184592884385, .93494292812902321658646424472489877869178174331\ 7325834175810810985223389765434714132543871919629337808499421692519756886500539\ 4577535821334926210873738170716419990669118879247492643042656511806925187837936\ 8072853304716845600612081639789728722514018293637616221634432008517409105843528\ 5251537366942056824936766599653238861881286305451433866240021952776025585762922\ 4016203178535160374846362031934006654047965022909023189107138395744538568839439\ 8824361950634512488650769586940902940857546346796633399761007110020520, .111900\ 2751525975722995266351453940193069946455944765825875840050961383821450357601217\ 5271475548925066492181296155311880085249888717775112841323206222818345735660942\ 0886406803529360500720617712479722849397528308171058881331853580724317473277516\ 6730198771527912122263563594061708382743717157954543240138065889870327252350647\ 2407500651725349947194611368576325523422688696339247967648485905292066563544319\ 2267598886150313558042155021409071515910614531349463075343913996978185523746114\ 70813369907286388469380537612414, .22545462149748541543195160140189278994194029\ 9710869236509001807362758276344771972139571487812809884561425747539306621779768\ 2418461209927306694760240188034797025197140497864354388437709411780839749084173\ 9475003395817461594734740599919869795174487139252237181727814458481328738564296\ 9631483382924486643320705960619959309391590139329140393951298580058846261424016\ 3366295828453333806844876439336289731907295770689179703312076118296597227027054\ 0507203346071740433276274211605945885307624722022239771834065772178789094, .458\ 0620233069927470741307552135579453083770371383583839334338888377975879007351273\ 9490511749401703941191443389304706358498399310414776733026637966268719403482899\ 0692853709472885876022983769814253268285652207997393275926208242426333905697109\ 2595588390113114306508859146352508758674536807560459933422569885484607317739452\ 7955309290418903174175846953919861627427421581592700883279350995999173900185153\ 4072177256096590845314951657685693537589481687153171402440297625874300559459521\ 90036390433034969761032288877463521, .57745227918772417310814102368466809533135\ 3962767807943622242275400435495385009484713779021204145999268735680617483393253\ 2634948714251094031350254688298695662937406827135234478842429670864953309122216\ 3229890517028371622333576033271382322201999798391657739679918390153891090872434\ 7579454696623623325426824275744091471959229487730201680553663322305557668261553\ 8840177756394338073151899083271851079764916813720527584441429042107507644643287\ 7708198976018252421557530754681574036062357327759114147458140977881128846762, .\ 8235892086181638710738667690327322111478630429025661008422379122448291594050354\ 2683907439068424761431326706289562338495849193927984507767724589437001942614048\ 3221263920892696369924428420878236775889939631685983733771704212139224936267458\ 8261140346172189651771457543538088903244223536968311066524143271215740283315853\ 8367870179792681256876673556110381249885539969629462840308355477510276870382126\ 1060677351608127644437523864447334661052267484305267220932786083757241929931849\ 60420910249923501598635024496749573473, .95106552027293857809540046885774289645\ 8748717366384216118812848481506054357990734166382502709499162287757144618053573\ 0703655296817180554179578902940101772802872963685521952124847829339182317410160\ 0523496615069733144101709238619393935179996202522501109952889336032733488709117\ 7728475849482558501595911314351026077369448571918938207992446056836587100525760\ 9874964339031360290498377398167084685466092277022335725166439563780672957113007\ 1775661467379478143508996503278399232402758303582816328990321459056153576426817 , .1006377531198711537989914174794242537209363804413734012886446722830547140193\ 7747852662260613850907515462545772361797294433703189195572892479754617683574744\ 5247898648234425844976504103202801181207515125786168873772146840311561328017698\ 8808682018273059344092815346313955741043019153716486281049346693555076312522562\ 2134476905506577558790312347711621701263576938317419629921242175221535719349950\ 7663362360941646898804843694541533783072812140872127323821201195614865351738040\ 76802367769841280092365301007313886084201, .30599453530775616150393061236553069\ 7100731081495515096613741832555389547215213559492922502657636907427836772815716\ 8998739866416399144012193828347752206260983187014729922634678576705747003573069\ 5585193071899070843308135776315252326201808560475273293794172097032352984981418\ 7877645952536486840250588501229640878847558028852562611102838185164032146180966\ 3930677970831529476943170784278832978214439539742592992508311494645806901266383\ 1878525248166374798272196032821678408722760916497343969586698106401927026613120\ 476, .7362172409491384086968593234760666537287758563019818737438019544761340344\ 3714850288473283649162521731511979554866976915306704475667919583587430500815540\ 3406451540619882701692615765653983061374625253683715887855749326288890831375274\ 2287800574304425324590564211625481629564762186895098948419246503120730629904012\ 2793198890523064427286498439216541646344594670658032059489609154996681257167867\ 3791487342133866495802173022094894746416301268614318146787927846424518535026844\ 71197371212198046428381548827157221907648048, .96400537120407803367778431153350\ 8991578630304708241330506603878866764734601143717170397189287879427482065031753\ 7007209344476007486495790876649526789726295689332498300194254021442850177218131\ 9922596474969419888982711504492952460351777512380355099705633409610552235902355\ 8794175193433514302499846905812873912553924422835481911548008491433842520037169\ 4373781795738288441081749886680511297591064281251272818275240256498185978552904\ 3372419579640170813839906080860793015118916181600677111935066182658887026473045\ 537654, .9143517252108330942620660155110220913234211564404461344269756242216862\ 7203426859050705363633336005599878125518039728688686968375052962722476760617621\ 0941170969404317735124219336962453789462538162206618205276034110862131333500817\ 2812460926267566169015813852917376477581042658780781506236573915632548474710169\ 1789657111524741578481057307104145554630192766201959089830747696822365130482600\ 4448440203860420701412474819314659481137600409586739270254894135795808123784269\ 06643834832712985145994608193299331185057034860e-1, .18396311913756022206136754\ 9393945099502288409011716449174838008347404332603331814429909910928542316376626\ 5053172065021092475588862353364683547165226619053333217250344134965186504087544\ 7638412562750352896774991677298722197692102439963681357867926280653961851325327\ 8720137460744781881985480123261521464229449701576376223547797409954894280708255\ 0101237972394373111352227138319821929956699113475759301551843524805323429259447\ 8842691906765848254062580696130798425695759293841362539861710007025915089593483\ 097453987944, .2776508697232800905266249855953877299058939399563976639649487688\ 0522730272332486584539215372094877004913994619826694968789954286541415437991643\ 6311844461819892344796227848369042882198068173026477293220153024508068253892542\ 1362724359171200650434427287336700623360963072670088852757862865371150255575155\ 0415489520849079824672869465490386196232464544004007129909210459677337683734846\ 9204304633741030825228639133908275229036063941863522886678911373300784294292465\ 87438636361277114151308764645293644539077592354511741, .37257516358489900721971\ 9481909866904699888033427290266539547766207370526835779433552380461622705530790\ 6723575427151480168597289261819913810550123882279195567827945163337644872115024\ 3848441209903007863771734983291427407578846785685906212188951974406218084384514\ 6286906839752974959174300266191029332713364310116800001267536874404948519289066\ 8776762174739669632358613769324144807564829513577964051649061635697947516921741\ 3685251035440701607367875868578639507123850573971628740391936743368573625841701\ 761243285175780, .4688250128439196574721906830079047084289553563201816704337395\ 7873830231079404301125194860728429130338125535601652754944176349314348311096576\ 9143326768331037926197243957463384069749557234921958891265265253478587706277141\ 1345514914244260842925972142227244714781898484180125918922156960672783817226551\ 6478973488445053484533152996818306814786284547662768672774455712264994359103258\ 9626553281203587501225577015446038800349240516193487057177175189681617994745914\ 64811109537843144467106124946011180011013256642274920153, .56650536536628411014\ 0881802665642395168725156688418403919018430858701218983459749068279459200158277\ 2760151924775447650492125293314791188158493553884502321862041043353162018372699\ 6618525138810349972041906511694033018555181083329543317884166516034935802663571\ 9609027119314128069294100090349054773207434607225987168216401636793581776512887\ 6045084327150785090992927923150201148316467792998867703442802976580958412299403\ 7793734657005754225786611652490864215869467400561795877775057483824142851280418\ 530971514720112749, .6657425946202886350538106223914616630898016232390194714612\ 5546310448281584317300818628217938416488137799905301922652210467149423981997741\ 2697506575756440673079525408427234673884758558056937755604063773864304092692371\ 3418494898524181661600193859944680744199917673375571502231244545423870308430538\ 0296262685096716907033526272146736050106393518277793732261722684290863627170166\ 9806731350748967731691491352493708721339932095866214993204294967099677953153762\ 12829891277830610127972309989497156747537072760144942230610, .76669327630311407\ 0607185523168787916575947256980379913097285375290440262619067056177680688172812\ 5942469460706479981511954737780941079664694088423623605664565827017669397578332\ 6210973649380673015939631694143330067965562448120874658530514362910915981651354\ 7859504704803019741861754191396430622087093507622097225981163576615137325584940\ 5954771285661885398233382710167710777846617933450619060505069948187683718685150\ 4491315682499669500437741889048288724338860843679989045509417557349522991444297\ 973966745065323691717, .8695595946341944659665880443528872298304821871746751920\ 3631883947770503488659473754270128074182827020269541778109332065792360625143542\ 7137169109006055762654269690228094407082650630905807618931421752345867561579749\ 1712486547337261104840938207207391388399942602551398302670732452038178945634445\ 0404944645399430367020017975325885801475638060001897154441434633229294460682133\ 3089575537159705572958837789545525747155473661344702986541869840642637395847517\ 46050878354954678767332467757987626235661678050015028471533507, .97462083128434\ 2938114542246623995528171978372848688980038171083870668098082098854442531035154\ 6951632695060998416267941841275829686838419453334665340832047321292765040466466\ 8221498564115164733187588662623951256556522999847392536351864108965165416479398\ 4973137785309460471919555979639404902715279506712752625619027168170309594561390\ 8381571123610843193504387710054152536831240129558445376300039983034807816931937\ 7026229145583277447751635983295553303351728293493721875321642629057308292655620\ 255836970412884639443876, .8377470068206486406507408078711999117949059115626669\ 9292569866896408347345307816737163366430266106761277342572412773671903944685124\ 8926441644432359714077209715859851818162950802824815811981541034460435062569141\ 5559041286430167524002621026081349329420926225904097001359803121743173487411402\ 2996044498294733834399587679636333740127570298174101929977399966896980773734463\ 3338862652820044416892447885474111691178733815208208749079062549656973727857266\ 35082052437678249741048719395864070671364065540495123725811259993e-1, .42855350\ 1210998895539047567429938375958726777907490646886678759563144291788019051776879\ 9752400119839265742851483805252653102964529825771456173656880582347551534805580\ 8928233250850043848861206705625130789879988163205592107330106184532309997575306\ 5741399758938849975366008975811459449857658971131742589829710873862687496884671\ 2660691085187624300785561190397812255650517774797187570125385247316585379463930\ 8517405598187406252967701483499677511248125166986103112575215126089934989248110\ 163487750394009837064903054060, .6076568336978543516217352313533657548103270858\ 2907091808798111476098294791799238488512604685225640515821208450402599168825825\ 1373790978018538281176615331100017278239855984037627296115885455218199446335318\ 1322155384096433297600191023247905705248712925753212823918596461496786794355725\ 4185015859528918075759211897235652462619334601647173620456157179938931532282322\ 1188605457250857114059046580958324319568614813554512423047467778092081522703678\ 26716592274454084404666855958126413543167578858301863668998700634129460, .98348\ 6924947541618440522961561911608886500441374755879128330337874895616210934403310\ 6519433688575303591662200007260526744036893772485156247332082474733709228701901\ 3011445008563502587718531697358841721726793173504764586002713617736980074971569\ 1301261691505860224790523623033995805049791795594315864871004101163556650405611\ 6356966410976174740780328185543472783500641257607311193853521453344796856366529\ 5463514971202154356094918959186236986714228368825120636523149930223364747446768\ 960847461574463948963747451907240], [1.6449340668482264364724151666460251892189499012067984377355582293700074704032\ 0087383362890061975870530400431896233719067962872468700500778793510294633086627\ 6831733309367762605095251006872140054796811558794890360823277761919840756455876\ 9632356367097100969489020859320080516364788783388460444451840598251452506833876\ 3142276587939295880632044721979084773409105902083782895492782638903797635833439\ 4204515912081809959345444877458796500880889408701111634710693161461842887981548\ 6244835909183448757387428394082760287563, 1.20205690315959428539973816151144999\ 0764986292340498881792271555341838205786313090186455873609335258146199157795260\ 7194184919959986732832137763968372079001614539417829493600667191915755222424942\ 4396156390966410329115909578096551465127991840510571525598801543710978110203982\ 7532566787603522336984941661811057014715778639499737523785277937030956025701853\ 1827900030765471075630488433208697115737423807934450316076253177145354444118311\ 7818224971852635709182448998796203508335756172022603393785870328131267807990054\ 18, 1.0823232337111381915160036965411679027747509519187269076829762154441206161\ 8696884655690963594169991723299081390804274241458407157457004534928200351471621\ 9207087783480910837029326188734826175273604235506219373750617111745349296867750\ 7330760668693411890586283379527951203344958904688626269482208350329836321490205\ 3212395572484664622550115666045588268678765350449543513719749514886313289747258\ 8575145532476189232474908834318321655996289964805402049885566090671081314547243\ 8251775250469502552514132207698095596477686, 1.03692775514336992633136548645703\ 4168057080919501912811974192677903803589786281484560043106557133336379620341466\ 5566090428009617791559708418351107218008764486628633718035359836396236512888898\ 1335276775239827503202243684576644466595811599391797774503924464391966661596640\ 1620532520502151922671351256785974869286019744798432006726812975309199007746565\ 5860152657373003756153268314989797193503983785813199228848864253351042516025108\ 4990434640294117243275763415081623322456186499271442722646141130075808683169164\ 97918, 1.0173430619844491397145179297909205279018174900328535618424086640043321\ 8290195789788277397793853517053027919116225455886739818144833310185379291633807\ 2656731752530409653556187696279541392262368531663257941071900605201585468749971\ 7465717681429653824871216633548382779862939408442423567825861976622722509553799\ 3124525473925526074334907031655027888895844886090759268459967973270934399830432\ 2790839149048083067316693908715825046123608895131717686500863758719267460349109\ 5845633171604344620803867621162654907987534374, 1.00834927738192282683979754984\ 9796759599863560565238706417283136571601478317355735346096968913851323968961453\ 6514910748872867774198403354403157983010339845621210694635852439065833539646769\ 9756769669142780431433394749521537890280025904555197935310837008421073293990461\ 0708564123560589062259977609869475407632000048163295125867692506307344136325556\ 0136030500737330241318703795102662477939546502254670420155104055822242392505108\ 6883772707742600217710001954557789898360467454061219526507654611613565486791500\ 80858555, 1.0040773561979443393786852385086524652589607906498500203291102026525\ 8295257474881439528723037237197112452364847028269002635429954807338397096627058\ 1799604618992754222287297459333028151505628361773822843314456080832422954810544\ 8330242444025342557729678131210219300293539759947471253066555422609054213890586\ 2261719420106571687932281345678361664583889939376037174803194216204067646834039\ 3167867267217637270198235200529512467927023032221755036681688727329342110703109\ 0859015672309012324105536985366566441668282853678, 1.00200839282608221441785276\ 9232412060485605851394888756548596615909785053390258398950393069127169586157408\ 6047658470602614253739707224301530691324987642510909294868767654539697941540782\ 6022964154483625066862905670736452160153142442132633759881555805259145408489015\ 3952774745613345102874061327466069276339001629427086422011231622092412657533262\ 0546229321545466517994503866277822356477616603302814923645703993011193839850171\ 6792600206492306979585094584579665485400269451187594815614303757761544433433983\ 99851419384, 1.0009945751278180853371459589003190170060195315644775172577889946\ 3629146515191295439704196861038565275400689206320530767736809020353629380731906\ 9594984287395362160333472235259673205217893232883206654401387592799132860488839\ 7614769364778976980697119206336102294405438873150121902207640098938249208777468\ 3640358090211703211108053398818156708705589184686966698150450615766596757222141\ 5404875729560004561966547703808093643469710926151783782529506836035725223798192\ 8759558341942850758126416814792596209657015454354519, 1.00049418860411946455870\ 2282526469936468606435758208617119141436100054059798219814702591843023560629835\ 5060729481412986032997979400447244829145234059466610182786474368048680934036355\ 9802370626936931946760085394075876231621472810991507989405738788514513850619364\ 6693689850240779780284012446398964440471384781971192996138529735759773672460996\ 7740419801666912020439191695619131906017963928954154978909500712752666365661446\ 5842497201232885762662179439935192225053382089955118320514329103446130085292868\ 17774724937296, 1.0002460865533080482986379980477396709604160884580034045330409\ 5213325201968194091304904280855190069947454298094526631426950124931787027874908\ 8047367626239874267340011196773455118989216125999216834776808426871842262612650\ 5349643679039632644904492822598122304319328389493580961307210375164723796376478\ 8713815577143261895666762330235782495789243457411909804717427518034987345338202\ 0946785450345019741441245438905169670518847419626309960951347204003762901150231\ 3014707253429954050781356232056978416674811077368001360, 1.00012271334757848914\ 6751836526357395714275105895509845136702671620896726829844209812892713953268135\ 5390234484052117973406407648522438051093909672968392968499606677161057324962996\ 3829923832241270645534397908243398166611006072226482820829098611322006055919574\ 7981701055145609809178778054142240131902850013919626769149963140110698888170240\ 3979020344328006738565320812915345167677244149656282942946774829239171420624478\ 0089073848414269889226664737755564722803627352500667467421430107203284172610080\ 04663910400101061, 1.0000612481350587048292585451051353337474816961691545494827\ 5520225286294102317742087665978297199846751288049061720872850805431616550473275\ 8375412105018997048159105561567647701210317140138410057107537362585260935340691\ 4082706250014192756699157840076591546690284465992342582423766958193669798988746\ 8880096464094149439873278383617929234362314006609307600455866402945309381984209\ 4390981404558596873265568072929858593044830258311766409262623998254161222081579\ 9798582294160026538626017458506641893953488859081554367803, 1.00003058823630702\ 0493551728510645062587627948706858177506569932893332267156342279573072334347017\ 5484943669684442492832530297757588781904321794404770003433234833231074275648790\ 8423389159614985200731960289091129154799437770423351329528892987614029093651971\ 2027742814844783938628585764015602171709262445062551067078139612739627072939186\ 8652012454711829243413221051914519730330815139436487149274134676999780326420740\ 5850437706141632690829109101557634435725518614739598061977480786101122106841937\ 37952987459771384698, 1.0000152822594086518717325714876367220232373889904715311\ 5310520358878708702795315178628560484632246234627121875727895643809584057710305\ 1278727892422440879424254371597742405259582764431988897839822754096321897737763\ 4626926030781773977136262507590206569355170605514582117761859065578105938675483\ 2919592367477366752255698854552944648907074431981939979306497300337650529247104\ 9920250231334694102279633924761284347085731580331376133140405716530872363030272\ 6688572474374166538515876607223105151205206919851985579184770, 1.00000763719763\ 7899762273600293563029213088249090262679095379843972935643290282459342081738636\ 9166712096026615971011037260139196197159769468248868775038126940940489553894141\ 0178728305136626706952964898182943671017135027230948505793683977280922126659530\ 7676088278270895438200896075799314507936798835644434448699534665208412166261551\ 2216479027606599003620475899323050891460620948685614349562648294036184379015696\ 1448267705547652173596343730496956285133820687392006647575299070060351118809487\ 14819889330112995661664, 1.0000038172932649998398564616446219397304546972189533\ 3114317442998763003954265004563800196866898964954930921049231696176166192099336\ 0907581839433621258947199658567824178892750880103592008551745650463973394298366\ 1268451133345106852386781127522240013084315247665564823880113272761924231113675\ 1333419454202782288326779454369900762340790353471391103506244324480156220944299\ 1451322467626897073139680375597650309007991057759735010800568753625530929532736\ 6457893705052241667854390197132911586172359517311134757072507694, 1.00000190821\ 2716553938925656957795101353258571144838630235933046761823949705341309312664227\ 1180763027067164825596661845609758534245303980743080879166125394530373129421920\ 4836891165949553976248071922165903793556012396728953045609537304946699699074253\ 3204678067798243163437070178609249449342074692232407459451341774232568458015333\ 8300005387041393494420975609442141117246442933113944757953728706022430042079883\ 0474755238200940699901562860116186597398952481469248923804319788041411315297782\ 20386075705902287295959489, 1.0000009539620338727961131520386834493459437941874\ 1059575005648985113751373114390025783609797638747895485158808681545098941906266\ 9945775714773686016316321832375029203457725272356560152637553780619129493932696\ 3199921139379468314361025766709515387867775771519002102175148927432658162156456\ 5841749332562734020075873033547269977567793745007836208314283675796947201460287\ 6350599785144684033485888777888632142316854990382350841948860007863801977785801\ 3197429188577998507420901671034103314516523969319054182601265012623, 1.00000047\ 6932986787806463116719604373045966446694784937600207487376596839087898159833876\ 6385644972561326638121189938008974874972967423914255409417096385045411044655577\ 5097439531847838476586199984556849765411823474458558883059872219716844038230202\ 0957444129357282569742241016251903667676345721557726728908039481200000475033806\ 2609903023985105336095995821641678717358084690538904792875541754786851965072258\ 2741077706005291156906084410883005063172391842624352401532191926314851397848969\ 82090692811454541571478925488, 1.0000002384505027277329900036481867529949350418\ 2177965826984960311647445893562291482131615616774398545467628898736874378132707\ 0450749019540908785758521173381244859815055306908879859267641540252161876218757\ 1702588482624703218419435591477083329279647065393432811859136515723356449056544\ 8670965352394620950062111431618970297944544277183555314381336241455779793793216\ 5204119995833943003901074302606692711772497176137938381951559096470214795415647\ 0529590324996458202915338194705333209131800518581249190101244716395464, 1.00000\ 0119219925965311073067788718882326387254997784519858603225797236243730427435123\ 1743133522358598376394514960036686305383144377233708331055022604714614305141359\ 2223850853394341737927333405637847325136037386779153526791677094755722508969455\ 0842676883929237928177753379185386303676085676274646216000794779671881234713787\ 1263171438886498351106145747757907978208436611340884867181573107358727647742153\ 2817221199292958732524117409542453200842836026158378292492352970167691510359169\ 80856997361694048903462667298701, 1.0000000596081890512594796124402079358012275\ 0391883730279586424697232172449535546854484820683282500361388996860009396025782\ 3513222253360353453057139710425718429282446348783959671557218173884060942978047\ 3796135800184331085291842174107259592900052477269924826430046897797168436363492\ 8037259963875843379815719140516647464404970025550198385309163908934243395793554\ 6049825621468509238590534848805637896794877380675971643971739991705177516982566\ 4744341011514182137927277806716652341016449374395761691841353825902976622, 1.00\ 0000029803503514652280186063705069366011844730919543312398681339013384460767464\ 0820691715628962004337884609498228718862056818678196629193230091001065168130265\ 4526439685187828765686665783126158565050381460966182879795932329490941065021473\ 0659217134078558515427039163979663476694793782947195158409826750034019141475557\ 7262920988920410975861696687446335395908190605675907877885462262792426305786718\ 5289712547137858649578268296613152048342188319822393899787098759644637333229214\ 65846344748160450097092844629851501, 1.0000000149015548283650412346585066306986\ 2886478816788591054743596878997129674486251025848617940565462097458556636555225\ 5120632425948098002298248196521666063662466312955017462795597320776979132394846\ 6451172430518563893433198098404038317233621984275023895825342261546679406198323\ 8730260233792190966751674926966416080171367614617514858771730396955256971809413\ 5692662734771492162310011038627790797354360786696649451807455250657649669258485\ 8099348117196493520323986064468794681252576282189545323234051136393293991461, 1\ .000000007450711789835429491981004170604119454719031882565829993239578352147606\ 2715708679008371003135237649339518303948243863280796328717056928610889333858700\ 3424421846255968170525702971267035637555861027281333180183505502852252149472143\ 4044972268639123855579242025540772738659463599393209774660479455425011499984878\ 3664705305306399596043167751841693946402898330710263454798390038073035640269322\ 3621532807088589845661720706616271858799428465547767060586739404315080443059569\ 97685557679059235226618924840376018915, 1.0000000037253340247884570548192040184\ 0242323289305929581151976933470616960496030436497373880193006652887239443630902\ 6231734580121497670036412609138123421383529945717123110822041870244416494993799\ 5055535559435823042746505582161293191410020705872555122560701910042676513599132\ 8539538728227012239928020035685838190197185814553105708842759424597479138049541\ 6450921391006842560037441568027949897880250610545562517897882923647716500152462\ 5090346801477695721155353971046439941487945105211288867657386266325786925472549 , 1.000000001862659723513049006403909945416948061665330469200665774893805558091\ 6932658178773814745210048071719673331841809967350872412125544269742079428502647\ 7111596734095292912549627887005080648409450263565350759466841659183729585191687\ 8375434830210041014498927019251874634095071458404730591959388843540445439412511\ 1573482540016658326797665091800584857781612281621019831602533465541461011237817\ 0639583118626463674038580051725457472197377337195912398132415475715783564130473\ 21828692651619817995301401942484386590312, 1.0000000009313274324196681828717647\ 3502121981356795513681618500861336044196067294049636350362460402792908631212338\ 8047291007867151509866153218472063849668794552542625317788216920254569232817043\ 2987715454205599079742644906494026834744225086017938246607276641012826639554718\ 6267998645846255914201183315521644096777126710727109382419244794835955650041762\ 5455492581879507957249537532898478676860230291751230413668134167029062897815332\ 2102287679892044688037512533027133117166984975411183953552175547705415239667454\ 034, 1.000000000465662906503378407298923325122007106269185336947307372971693371\ 1756698898095826495821914066709509473392851990940381802440168304764639360210145\ 8401269222147875016160952782554305524335570540385991551120809099373051278590765\ 0389958016518159574830186950463469012697389070506516860686639264145857624899539\ 8372426559831408251810888029261922167395584004072769402242064276766949245404856\ 1383386469274321427754612614071604716873598344881383291511847634269218824173901\ 11158228502062196040697545653256379209117141, 1.0000000002328311833676505492001\ 4559759404950248298228453031107760225838791218939217058679071472183795835348400\ 1335025278235873856732500235726773861010468743185749436896951002102540231320027\ 9629772127047664913511619199647906560732316071049079615804506100947509756168058\ 2729458190740497736257390361394363316699307374870617523556905183276275365469303\ 9156134684395964858767917998888748167609004357019019781223325097692674043470430\ 7138278851215055681442885721800023703987660727630049485681942878506538454508151\ 845876], [2.5009400136621287455413390068556870240651439253433653897959029103151869378046\ 1124749726921231588568431428755769772128610564819647547270953948783727606219282\ 1432740708337905093744583781923835110690784656432660369046006017985704771581045\ 4621269620983509403120238424896299051455703674307747013785788855863399362068334\ 9789008184401236803550413832933932684878793456831236437476167211681018003184550\ 7446752603250165639587430921910191629215822957971788985012953676050984151330521\ 7654856156763810287758413908378739635944, 1.79200182565575550322998522002322714\ 9387446466720824570556711894752889486126611318885176437596940806732336231923692\ 9857506434665837359323270480748176645605116606509654349529661915347399059288712\ 9379305750128433727546779349750482791647825508480355711199186625420507525014800\ 7714214544728112685549784973853996081414049400670271275301120016894562435360235\ 2882005404698602315238578622277489019882333899165705867855993538998994569470205\ 4917106135915750532117103029743532239923397724894113633537271352290114473990722\ 92, 1.5168967963882133955398076502624355998415000917729256660390717801351229080\ 4385563679409808507495896917874413371187746068746979585391323799134158929306057\ 0176337190935752209808904647507106171111330590015460790221857733831081432492635\ 2136337553154828447125169950933410634557869946815824539490645946784603613494301\ 8814690600682783269760346033114739747508952193210196323768608652708665046951816\ 9233727025948748963218987924877794731429854990154231662078417378615007712678239\ 5994906802550394636531134660449455821297080, 1.08690404952122888863827969701311\ 1481199637292770989898176680721536231188600092219387254353498021514470496235643\ 1419208494104545249602365476904394342736881140477142851543061247138179669867531\ 6298939897195623367349538733909907173169115545960593313831186542769639277834413\ 7485354400671084919238464904089863892141621591199379348387425288421782215271019\ 8153401710219521444277576468132564681422340302442411359621618484266352770005715\ 6238316529561653063923297963394193463491221110758856449187395468133972002513361\ 00103, 2.4596031111569496638001265636024706954217723064400830207485457366574665\ 5294336586087049718527593080150231473428246900121186337712075437526296118469824\ 4101923873118980752553546206085511483915775565746633877944570171310441342807039\ 2400118009500678776532765788933267408406757286069763530707024830787976497135853\ 6453667794798885764350775292027626440943674563617429733882907545820713144111178\ 0821000982879041851154009302479120281398259013017885255364674104394383435360895\ 9061631100006953027575114561158169143244239902, 2.01375270747047652162454938858\ 3065270017542394145867311568989300879781300858867940632437935585178804433833189\ 8308254040110152144406355672122332987484386680282011586454587874291207920063096\ 5060600921217463393850030357063699427616544996501143702775766090743941848020782\ 0274577576004204405549230335409075504574436947127205505014343553351048370903828\ 9252808309858661569629055863671855916538876487871607583264379193591502607043197\ 9788985248995747051034655380666111891853903345517915681035852637043851420271400\ 27843110, 1.3498588075760031039837443133280073303782996973593658030499179899396\ 1258739953989129379648578409671518299391504649664982355528131790474617633017469\ 7914134611623510180348776728882134107658893142886237546315268956423659470780978\ 3127571812767283650152262538909248650074823610797424315444671631752030110032404\ 3075013626627538383671033940360545996238238568815268700588373582478898742519788\ 6420284295232160460715877468752268409382011717510538865639999807997927323672819\ 5764382044821547394723096246557547381714430117168, 1.10517091807564762481170782\ 6490246668224547194737518718792863289440967966747654302989143318970748653632917\ 1204854012445361537347145315787020068902997574505197515004866018321613310249357\ 0280479345868504945256450571221126611637703262846270429655732360018511389770936\ 0028476944337273065885305300281115400782088891070540371248138749983287976307467\ 0691187054786420033729321209162792986139109713136202181843612999064371057442214\ 4415090336036251289221394926835152035695503537436561443727574053783953183240082\ 80741587539, 2.4324254542872079323138746358241990686676015314007739079278227891\ 1394835377464443296251422875314866344662879794869085894488672364476959470815703\ 3475628481077602909711693864425165882762927320005027183276824272515480249183912\ 6230850432523307186523024911245641918740696443123729340067305407370969810122501\ 2631173143205299865075600589549061308444057958936900803040165921542257327059231\ 8976531647959092745428000318665054730980797958468277777520570940092190815759513\ 4793011424660565520621443986555782570205566720823193, 2.17662993171624818259555\ 1076540203473041302078895892655887379255488911687311319970600625797970404973210\ 6018340734356789301710571911523422776828152310578680905837953493505243204474756\ 5559676855183651918520875062132860476322361506806083948600008482380997266041537\ 2910212765131462819201905542565028757987056070963630397926891772910257782132910\ 6640529045154373742270107557035762083050089802990502313418968239463492952451169\ 3682230757229120049836296353700264403261740263357253004470900388662472985099348\ 77945427566441, 1.7429089986334577941148684868695286946460241046700175303534300\ 9374078137114965956613705551065907868144078821483170394988276572679575489228426\ 7909732374776955828290455817192358704075280355882602275549018526178361107268508\ 1547593535013566880040262256933615561898514435957931844697455713093295142388513\ 3001293360538334543935081682465528523153408454170636522844736622424284710167833\ 8023653961182744046409848526239238304571439921921785370214814931755839277364086\ 2874382195132417939586319359878187538484070438407895970, 1.55962349760678071553\ 3709286979471186394824011422142354390278431543563850133106326427581612492994015\ 4291690687790911892034313472913009338081812742875981542679428692014554046462774\ 7124335496403684890560126515082044356109036418969684002680706573764321127422471\ 1610488408163429996975965380735458403715668902086948727573587608046597528110439\ 6369405004989838515961807060780193585223170467410098393561846764258334526134406\ 9580981779783028420380129189040969167767124189196008579490449091199450976122355\ 90841727696669221, 1.2488488690016821709327689903526765869616857931069688179582\ 7550419639209818040579597875693128993597077542418436678171766507689470972032397\ 1361015584479414185952278165089090402722789485520863096723168345655344016246133\ 5359306548520791845446413548196350973898761257264359095351085690453489984874488\ 2589221447180339749612677930566160214461037326362269117011762572791257664347944\ 3861401528225052026289032040359087746246356840547640991664454311093921157957648\ 1451773524364659619277086136397949725096559698781237715777, 1.11751906874186364\ 8622059716481652777261102713202755108345226529259694965815131067749480379826956\ 9583494043891242113918459686507926196581127736425474209695352456418428476010446\ 5596130554740773961929034874290855287394458521424952636635359933582984240736065\ 5948229968419712474247566916084649758886189058068660714951561589545833123671658\ 3639564900310753368823868728242779999582787457356737669112651215899142810661452\ 4893431131598618094427803853536342558427104921407771540170786467043924224807975\ 21178902758448949697, 2.3988752939670979146916457337162967482854658716985788909\ 0225468415922888146176102400664096605589994540970604479022317238366851064290105\ 3402942981728466383394216038392535941081295174341364571289054152920005236511459\ 9127765461194296495868806078425740156443170654110850357197257207238024278759061\ 9808059939847139058639235611536186440767088422974774709002036371052227777095276\ 7225875581720916130942594269872370646566394366133034635079771602028772048872464\ 5842209737625598839322957552850408363177621816469422057528191, 1.86824595743222\ 2406501835620188104453114972283722554086214766375984825912652124756712949757115\ 4201862722606011076723331611246562792431684365711106551298480177408128274336411\ 1975678582636183271443636986357517802600792325352169247236470175643786771066055\ 0278729807488483442117617104502914633232373499629314549310087333428842877365991\ 5144202907618366922084320198159440770089812405599009106189864446521859754735093\ 9283026863439204130498519658072461790063008574138003217060504988791946556773500\ 58381465319058542215369, 1.4549914146182013360537936919875185083468420209644156\ 8119524132818414195431929187233659015539130445296957765150762850024768088517713\ 6386677015270320578069417044403139891904326472038291285054443867999837030048042\ 9894782044803458430168704433746033470228965520882336625238375181627178228485034\ 0164655121318429552273347539020305891412623533791571237529482021021964945311388\ 1850972481529103752812199694672520571103118623221717544254160299824878382304972\ 2257827990913311315098085914257339867666555983193986287648424667, 1.13314845306\ 6826316829007227811793872565503131745181625912820036078823577880048386513939990\ 7949417285732315270156473075657048210452584733998785564025916995261162759280700\ 3979847293203456303406594694353727210578799691705039784490022263632424121050787\ 4149907384970375943947807442141724270887360480309232132682376030360884168286810\ 3254484801895448781399602905234105650824927303319551625961103399305295784124165\ 1177817941167302874314336274048309797109721413383205245206496390016093302847955\ 88333296588150858774878290, 2.3009758908928249278679394707553013875139170237366\ 2621868405959008691992719831386601180280238512611689408890245184054182494992787\ 5584603424597936533812643437494278070440663090956304646273387377819062067293642\ 6838572231909648111747643070394563889288157408974142338837977852834813242531909\ 5899080110498125186316947282137652523411979589937594434178941843214002545020431\ 9630555188725735778404872672859548267848627997484673225981891134993553138821583\ 3426439820448988368484738642160952345065650144968307194573153609933, 1.18136041\ 2865645980305112152507184327830189310838963797856194280226455285592297456623669\ 7385044276319177248035243412434646309419980001159379134489589565336067463202992\ 0566268665687122788621212205237196409797666363474366552139132280421146515936363\ 3427684368847106031092402563954250854969907708182365874416564649582398760625785\ 9460560866184529749427654868639320353734466131053822457305897532828142226134883\ 0754501234300341649712309979196117321584250559432303426214158637109013424392500\ 43880602472435163435607656061, 2.2255409284924676045795375313950767570536341350\ 4848459611858395555662261021440632023826379767119915026374251878156387711619774\ 6193798559636871037473684722842264488653406553543171859853770308502456826643632\ 2566107981353612878565372651371916784242712981211048062112321018218386552976117\ 7122197280182015244109749705730481655103968571107321004815337077771507606892421\ 2676571376261256237115495209516306743748573000343277733921042673037632633059339\ 2310001336430012170646918858863852200544786278050437541065302175410156, 1.82211\ 8800390508974875367668162864513382238808546435386320547476588819650298619237506\ 0718416118245331315119800847332121626044110519463883315778008040305567352208109\ 8237050196239186431333355469849020826565819096981909073475474982717784827329663\ 2519555680103657666608285041805784544684249073313149299742201583460832292433499\ 4024003607158857838836700251997574690694528244226081404137107750912008552063862\ 2832754508196777090185276580638432870030301097369079132817232894072526533618788\ 52840216078432671025692004896090, 1.4918246976412703178248529528372222806432827\ 7393742528159563315007236509870802709400057437513952043329951460497123743275541\ 4992625360214171623077260040340749187386715072494548721261766065662007270426439\ 5870570315311010113322105932230805422737018500206392527053756957956714524982829\ 1603063662914248706786240500135015780994424648274211586532348960625147895085675\ 1152882743026890454918621329601176806190830176196964044845381142559439070970942\ 2970678591252231962614242903953472550464640291350443541007504729798861517, 1.22\ 1402758160169833921071994639674170307580941520503641273425098599206233083637816\ 2422887440133724739690278375658207122265787233573569832242020309178384785246819\ 6963515090275879656423105784038067892980765878816657563573480602908117582872101\ 9922342994677573684811086347747810017723624730421169883400179416109608569554257\ 1483137857337255389395629838996166948042413390150120448531013703286631913011774\ 5025529439090023275431137278565353847987589636920249682466927599785832165897017\ 05722000174830857894638389397270733, 2.1170000166126746685453698198370956101344\ 9158470240342177913303081098453336401282000279156026661579821888590471901551426\ 2358520338972206019428730964785075381568776374034698657567639183749516751465156\ 8288075236749574281618696995461994430935724354794718402112273103810579343166906\ 6102528974953365851523515428128349852016086796779295780343556299576318905479401\ 6880444400611670635262530167513378032461084456820742853384220230248238958655535\ 4774310749769616652969642118068340110781772498665520671707631307487877232454, 1\ .284025416687741484073420568062436458336280865281463089217507296872207765867238\ 0027533064194395535689016628317496796873058547542360464884275017798987295923100\ 4569930548795441439028562847893962382677677712299522775202663224663064708173306\ 9968994483008913738788665340792307019364475576900863249397326089673426702228030\ 5488952281848337640193731911188466878182995610252695213374482027360261186306457\ 7296326810030174378208742508592545893457848762315076236235260673221070347093979\ 74702977901786944203395857528200121442, 1.9477340410546758566390212079283453143\ 5960408718297218705469756522268474481810255562609699046708681006893029596385162\ 8868468241693004925811682940599658244509951159483313592056668251917016389862735\ 8183092735625225593259123492229885804664670277248148769854783503232108487505763\ 9149997185038488261284767215084076888789440715383834606611400777776686875610205\ 5247295943466200936712225172747044602366790977797331647609432487006234097840934\ 8216078637368060937809883714663813842867435625227041243085305301573981227999478 , 1.395612425086089528628125319602586837597906515199406982617516706031739015645\ 9518469697888172958302241352111844104188620961221232927778929393063493941717478\ 9249374621227268560348092179958696226096931583384300548777832985600553109367999\ 2145466169898215623308599070119486045938278074673553410482582976369968617125771\ 0375418500471157455884931898864855678333322359489810607345175796105663087942811\ 4483622369315567860482597797282456450492427879910831761455411518602792260362532\ 53437234083843775543494286760205395204855, 1.6487212707001281468486507878141635\ 7165377610071014801157507931164066102119421560863277652005636664300286663775630\ 7797004671166975219609159840971452490059796929422659098403914719948464659489244\ 8968689053364184657208410666568598000889249812117122873752149721955119716090340\ 9111561979986983996064265509175457462630448307519475825878262543993195571269007\ 6545322881476100957739788486181443265208203424170104718338591510630125661475533\ 8082520260614009728919590840501489150294406956331137767638009584808932951224722\ 636, 2.718281828459045235360287471352662497757247093699959574966967627724076630\ 3535475945713821785251664274274663919320030599218174135966290435729003342952605\ 9563073813232862794349076323382988075319525101901157383418793070215408914993488\ 4167509244761460668082264800168477411853742345442437107539077744992069551702761\ 8386062613313845830007520449338265602976067371132007093287091274437470472306969\ 7720931014169283681902551510865746377211125238978442505695369677078544996996794\ 68644549059879316368892300987931277361782154, 7.3890560989306502272304274605750\ 0781318031557055184732408712782252257379607905776338431248507912179477375316126\ 5478866123884603692781273374478392213398077774900122895607410753702391330947550\ 6820865818202696478682084042209822552348757424625414146799281293318880707633010\ 1933789974072998696009530330751532081882368469479302991355877144568312392327276\ 4602588339996461212849285209678905138824663987122813726861064735626379295182227\ 8429484345861352876938669857520015499601480750719712933694188519972288826362559\ 719411, 4.481689070338064822602055460119275819005749868369667056772650082785936\ 6744667137729810538313824533913886163506518301957689627464772204086069617596449\ 7369353817852989662168665551013510154682529306976521685822071458432146288702013\ 8313859420629944036619284573500390451174476933030615777686181806397484602444227\ 8949433305735015582659896397844432731673272892965742245615647491824920983754364\ 9247181181159589614678046907517447568655794700624111359896636434160259967708693\ 06818489027486154939606572993825141256308186375, 12.182493960703473438070175951\ 1679661831827677900631613115603983418381851261433144100602555230062957887416497\ 6170442788361811914791233047345329826015811045541072018313739514744649945165471\ 7351068766561930625802865260193536467207192409692803364079606911493550622113836\ 2334114138159767905921323408537753498244989714414975770215407176767339164770012\ 8283229509044157024350254547986278083590260873502804790184457610585004322758059\ 1138451370955021989027015948203050699786611782723421385602057685650752712109951\ 200549622], [1.0555465648134663023137014847342622098103791148584287284148926202846012399936\ 5368332691645120503975494906896290114373286830640733163281004346847777691850471\ 5576840059754377181618756598165873525656391400223743218039893309377004363010352\ 5172762972293644646568399123869366403501778197797176625454877961410735031033863\ 9280023494693194536382882314566631171124108991931182721121848927561900036853914\ 7201862297435266209649559784281862777919288254145434717209941207362980600137736\ 0536447214799431122902049161020892832464, 1.52870919708711100504730266382810569\ 3597737976624121924443565291681495929419447627415025361460899003526160499799904\ 7335637414416363948366504663383274877957618122024884999419090104064487761284194\ 3084290576332673646056159931756358322702298880958142259505255112217716267620142\ 5020323479529154620988262993394025698784170714066228554253973195522111736566537\ 8675345358326704415766118870307801204706011994668836088988076631367573816075647\ 3419696030028794261624756909746112891820377677937922831828089295429303004394238\ 35, 2.1275570586022219715722784393442933506095692218132375348598625161260015346\ 4149438615631734255585224137427356515225439047633788212317982299828729958859274\ 3435460615180070423940343947222180980614294827055847490566000480248201215284789\ 0900609917628146395831087349128784983793499905990941224334543518677934139868306\ 3928446341000683641749203385085825592168452886528341298012003581314054995870053\ 2225265014050478467140071771663067595752149165407244885137389672174149355920881\ 8170473864119379127818227263731587219989965, 11.4994281860739906638856098524392\ 0097987661520136529721953851783936472539956761183534359198572298381457020984838\ 9408847304597304096038299261804288147028866007253760082114449319432925068551586\ 4805412688437280379733543757914292828264362357123683354170888238919914907940300\ 6474060988209540560424720668677628591804921327493312517331864780374609951682974\ 4696512374210089464347224422555089654694779596695654197416699050498355614494321\ 7194772264138900962618139148182342335442263463350219197584249348048844966073106\ 26153, 1.0686287021193193548973053356944807781698387850609731790493706839815721\ 7702544756691772642101896852128458834645896678325528613925219076884997955193790\ 3454158408340415263369380419710411739686193391469684652548902758459327490539197\ 6811953749761498249869529838962557004077486038367144496741626939938223953974637\ 0524422148572520957564072855374248350056763009291815867862639320164092470825975\ 8438031536234349487571805967533568289513639716395108808416574667388308441367084\ 8443258626325442158358745766800667912019973990, 1.29805533264755778568117117915\ 2811617784141170553946247921645388254168150818975798677412669371613574661466130\ 3185421185148587401567799547966060240732719030328071963270257507580255461160482\ 2524198061530050057430990124097483452428727507076625822186341334171230342746205\ 9259682219487031376860312782637239487437774139810553302536793271561449678923925\ 3203919320645218582701755477555584914850269957627496941431266112675188641529985\ 2179894310514798399854808838405354059890299612986008973749733795249661304066979\ 71372882, 2.9915689876875906283125165159049177911128060249217151127441196509563\ 8876787632021799025995255765056542142562682614202237570044313685592565039738332\ 5006996517314922174456932336695015447079633770738436254675871199144463386096897\ 2435829606947586857092391044807390467619752418603161819378297395951948020174391\ 3443011990444796696241868095063666961053085663796938944744789834457209286144417\ 8404787086639877496651271434401893110574781747187677122203773314195856591098696\ 1895946897766862548817919277143304046506272460258, 9.51350769866873183629248717\ 7265402192550578626088377343050000770434265383322821011537163794266447209797395\ 2589211021534398110449840829907939520968633135461868090666093921415266987443947\ 4620560529459409830016273413516035643324812559220736586590228196422345896387642\ 9848535579144780344413047597010886052171553521315102778302187386671017637702553\ 0688737305900132232369511327337747876354182498408103002856287256871778706616748\ 7902000748659356094025775060929327075327728322795668692347520615093754418630498\ 55314538360, 1.0777588331334957972570063330770163292059537407247667863589753984\ 4059597442055203259104060550514106121107550804107269459972450819637483598919704\ 1753513996231440745015021772143882512602607627967803986148404855312970954164096\ 9391622118751645693510379338971004706607481698871411573784751341068319581596868\ 4957207529216559442753877484785702533545382228555036654720087132443502290247853\ 9329627980080877055416624060468357773997321433602948795041565830586426941503789\ 3373861621924740846986257850999217271746366646863605, 1.19015118691287271460385\ 9053883035264871381437770114232024031093426762133617865868905114679486968168803\ 8713153063683839406634542283524264306924099415471916482122753783904376877456361\ 1348418911447375000232272784057489213408555892115265965705883262423408501604846\ 7107253190858664422122717933188645260565708250773665691025177974220266710404498\ 3345177124289917818691945938470681328849427634859055706747585346740540291656388\ 0023907596802151048787970680957606466021515249538718064211072054809734810552038\ 47185554334081, 1.6007161184139832896776129264068336971616210388399653728300237\ 6424226646058180870362545980207113667046177628950901215549116478396287123103520\ 3858839963295988259870032662327871200153441604825981803450856448594760571905738\ 5974411121496853377068267806480079281294626622170597460608338186426514035087771\ 9481959452199367532806853544083521259311736857117568719729814816365417289636685\ 1429433548614618942525481072676764859230620490941683225086618837450639187686678\ 0176952432169845480504460570882909904311204623658377158, 1.99289352275692275771\ 8203562637987517141360387650030406292209968142477353781190380797707744115704869\ 5892577746678943367949115389797017908864656635241995208788397275982976728244532\ 6920134410446344385482266859061754589600823599458136384042642611023103194518519\ 5081904585285048686088247821317044352775290386956927347252353655729062073532066\ 4295416161447310316214969663340949165758619411395942620593417676977186789271748\ 6190026434177922947500635352277396362282985619325141350870345234242079324438941\ 39594658394108006, 4.1065795667160611966422907889183605403210524851529242469649\ 8238258668389976146475762372391056786611761686632619352299601691085427586159284\ 7824802199095363335375489651524882567785482160065850066976024020296957730879722\ 6944618797523578148708246396531927294606915523369908665495260640331262288796280\ 6889001982275766537203426338606847212565406108544083903534271014564302555532810\ 1406486511043231595893096375799027538872043544830056981724959055950788951695362\ 9449743790634904937031809410617892756105963007842751721687, 8.52268813921947595\ 0514392214439559754758831469322020898532701617905887016992951383027494506352407\ 0243825247428095969641862294236122688579553713358332598415475362442118344774676\ 2492081757374982923457758189926072657685503316045684278242349455400858534424929\ 0112712827281397072846612697256865433391553777487062433205119006653742800009945\ 4736584970402350553085397221419348991306561350125694644470266918155553960475741\ 1083894083628001682459611780411754511383498893440418512025392081668943107283166\ 81399279558202692350, 1.0896523574228969512523767551028929711478700677675651205\ 1370404325362641746587950335958967483618424463823104815185711715316148761819603\ 0680737936549680455079816815196812591820500816266169019572204951256551160219887\ 2895895614597272625671469217981418462051849888442524310711992612261155863267120\ 2354647155730271451058714728557459950863917105268549017401458555455667785013372\ 6857848381776707416541946775976220835984328404047978173226222648751685925994499\ 7417977536184033791641566637869201180559556192144245192198513, 1.43451884809055\ 6775636019739456423136632207772206667330770679858095094197302096914630956966525\ 6322935994654337852243849128199801596594869891238506296090656798750085223800290\ 2970375021224889801368825435511825497159903369224292164035496067562608682802044\ 6640190733527321326795167413459246435705136921727953688114902419953738888763723\ 5087502959175499259992124809899525021666624684693566484367005591458485927423012\ 9232893271901166684170733334763435641294113319626212945159847569558086053075999\ 98869179942799067931067, 2.3704361844166009086464735041766525098874008033589249\ 8777512693467316153135800179179864766837101480650850720127645680024810057555499\ 8379615427022855985781499577272440710792542155400668715731992428067449638182992\ 4973414711091480193867037169595198314130590733941687725536295928873899027852938\ 3348571119857284008636718068997887947460999173374652930611865747675467003080408\ 7072831972624498157676394305393284185926075373844487967149502968398397321638140\ 5487791973583222650663965210089235035054501908120546784447446752, 7.53394159879\ 7611904699229841215133624610419588149075940983127897776663657198906412833528626\ 8103568536592492169132587541703151627234690686480469053038481796313244595717149\ 2478004343093722551739983494496083141399708831594533785943430340333108738560896\ 4452908471484831899309076101791487812124809242975353596717496024773178874075830\ 2608417759157805256806839228224931829349737003105206163848228964581582074835960\ 3572963436570254232198573636096140415948098449204362545507889446768788134692290\ 07853202732062213377315992, 1.1287870299081259612609010902588420133267874416647\ 5545175208351433377051098750398705540090443840975746514148956320921900321530017\ 2917385932425907592643593704740625188362578607390226406777094716134347980403218\ 4370920318132558529534388950980545214237496211505603650295768508721789931986675\ 2543574214422328782772473662819816747959440915912050391861413505734006919248523\ 8078993729035670015034479769371482636279010788034823360067938198470464383811879\ 0440842759345363628428431116766709180457060337717752829726467767692, 5.56631600\ 1780235204250096895207726111398799114872853461616744626322907502817802305503389\ 6536210217546598196333384688347776576928798063538635510061680004776023831054249\ 7067955908194670656683733657850007919485493884964007047805848263726357767339120\ 2438602215770929246913870414761172368953647333097808048659367166676520490048461\ 4512865095088470836368067315716893218797128753828167300887574101795065838914042\ 7874690226753766530211501903974016445722175792842311310823580518768989848718496\ 85889279941629712667228542986, 1.1642297137253033736363209382684586931419617688\ 9118775298489446786183546607895374475595790803713873569634335321613566759945685\ 9761510510403860521235893636028714221763921722024352187854421060904097477572626\ 0446571242531194045567523533914990743206637610741798299834775284289282722828263\ 4585318437618562959980531333689913678698557441749683060388003031739623097582367\ 3959867321048310214225148573080123301118951756673808130167130315216896471448944\ 5170524023232317435918014719600913249159043008597211423340772330778439, 1.48919\ 2248812817102394333388321342281320599038759924735338679564045080163121934938245\ 1163197943207910354483526624260087973110744473330436955258842581427073174841298\ 0462576488948328432812893121944100199872917814856100310148863867280419083326306\ 3217186774453494140523983418641833981953296210519653799487111924768827240937746\ 2511464321689293787325572506280821099048909888323455474883472897505001088950143\ 5023286606993470301033714820082594508801896697373207104478979213221024899926060\ 32188467384527861362147079232676, 2.2181595437576882230590540219076794507705665\ 0177146958224197775264618516812300473651099168335617917698238908330081714477261\ 7761148134268952816630187053178977662597166341787649424939621713151092531329112\ 1391119470768686166948356048091822939660253058520442984049348667960908189741143\ 6980535951631185629574675073209850561282103855279071540445656823271878519992221\ 5862067070603940066202498569853901684756000912020198284638335628402690954310871\ 9235750573095730238744060255356864026734130423008403892151284355609549688, 4.59\ 0843711998803053204758275929152003434109998293403017788853136230039273106444998\ 9740394082877850745691248944586344566628878315388090355247710186437836562133846\ 4617558845153297202359238838958098280871793712957737671620988265269097666156817\ 8796650579426561140616191929957909228525227922584121701728758907783478563561545\ 2189489882262863861478782732364924482585588235264174979611066118985884999936425\ 9030794060523169063793879529186960496436666698167407109152026528392684379450501\ 14407066207968812129352808055195916, 1.2254167024651776451290983033628905268512\ 3924810807061123011893828982288842679835723717237621491506658217338023758803316\ 3016659032961039479304710255059983822777919276890077651016901455331657915948759\ 4452773051593429003757863809604923883457598118730701935708569137276575665900075\ 6151108884366488594697354907422104274315256883690344122216191277103829476596619\ 7400891249030448471313871693342339292758081122479133494312298056797168920141846\ 1558405395278090386567374626614176030655633718426736164075692542761987441407, 3\ .625609908221908311930685155867672002995167682880065467433377999569919243538729\ 1216183601367233843003614717513924207199658915240940225599774264588903614506064\ 1374489685419499920192677303799463089221241231832370799208439736990709390562092\ 9232342870274191448603957136835036865487995968368476475851489090404166340763033\ 9718066805957734237908559080714578312976356368825587928811190635168158508494748\ 8150278867310731052487982516636612879316418441744382764575480091991477680192281\ 50926119943229978378353634595543419476, 1.3541179394264004169452880281545137855\ 1932726605679369839402246796378296540174254167583414795297291110643482361003305\ 8854142261552586211826607191148114322833434155915620917505682592366523385211910\ 8580115017701536170238539453683177545997365041559306913842280346227627161503664\ 9901384639314465459753675068659066659908655271882299390424900088726099122595399\ 4567578952396648493945653870776849915267862420102148181505489465626518090454557\ 3346940720908341200459829960481008274465304821349390094163156091434787732491342 , 2.678938534707747633655692940974677644128689377957301100950428327590417610167\ 7438195409828890411887894191590492000722633357190845695044722599777133677084697\ 6816728982305000321834255032224715694181755544995272878439477944130576582840161\ 2319141596466526033727584020580635513943241032015839415382700855240521032338798\ 9550693638926386839167072816915423096273318811864774965222910556444090780096341\ 6463532740195630152839860021250692996870571006864544754497067121216435474129286\ 26244253055345167510663698887957029494999, 1.7724538509055160272981674833411451\ 8279754945612238712821380778985291128459103218137495065673854466541622682362428\ 2570666236152865724422602525093709602787068462037698653105122849925173028950826\ 2289320953792679628001746390153514797205167001901852340185854469744949126403139\ 2177552590621640541933250090639840761373347747515343366798978936585183640879545\ 1165161738760059067393431791332809854846248184902054654852195613251561647467515\ 0427387610561079961271072100603720444836723652966137080943234988316684242138457\ 096], [1.2213626520593159481293401000483501260848440004159212427038483927389666360539\ 5914919649533225953464585837923488162450580789874569610925511605117419040714042\ 5769285846345649628482642149192397604834205794936833104290526557340085051565655\ 7315126726559124188244814716138254667661185732564623319139183577147566948602219\ 1882404116629124565088322932688262496244591245408634612938352593933708775535931\ 9945596041870608261677824157562799387182161736671911504245690272903645999741711\ 9680364472956622311937988690519438614890, 1.08689583914498901950603435873903327\ 8925280811553721082272034173351607894586588599354605815216359554574601627104257\ 7829347265131586466243145186628047084593281585589620944365944695363903032322160\ 4031309033482291528095241586013415325187106885487679750638025772438034964802879\ 4461522676309390789996268829519146252183017265142232725618214216696688570814340\ 8204833084392221584093562936602030934073664041660854534890768910866135035030911\ 7783372577356067020920605004499634603644766717403371071116926985150898118838034\ 83, 1.0438760054014020097844081722286695210629285904666773388752834914841229776\ 4164071002294021683455757792510358158377425741230254942448836217909695668407954\ 7367448797053677822555858880128248476352769289607108516053987053650791461315269\ 5841419421206536488684305306467102103924942370683693121751342328406905558787426\ 5837759872886220504143991232565565123425275090526259388643094336001783532530255\ 0948056143911552219382997164264188525823628200020426620045944643955752499531917\ 9186869542583141160510749353146424812864726, 1.00173686477692943970108153164705\ 6440524617136763547288354192741520198852697480076745967484883430548644667661399\ 2642072487157545086192830406898903309746497157302585511672031480122729659634428\ 8596918137183998902625839076972350871103607560695151613968086996797856802806709\ 2810798224401221625612912639925567370200089428454373179831498659773501512108263\ 7462976993446525519358354572424746430780752975432335726054028869197601314310223\ 9914776855022610969354135548549056717975550218242843412631003513945158005833712\ 35340, 1.2129851657286843177238378562523238527951661341644205312383668685126169\ 7793689044483434936046356871850235697757917259524356124553562682672299998193438\ 9742019214107709303126446551631292303390843888593924752731238146622994716485611\ 6829478323640221361593168233209092513252294816303047582895072708978590315496858\ 6421991394352048642843290311755165121369887245525111391473033501859901353944289\ 9978852343534168349384877908207459809010222203404507008481719675110284793834600\ 3746044001178395914314091067320230080328649590, 1.12630301830680919805079992666\ 2638399050728010296435013440040118412618034154194736359236228437708166837328541\ 5244370715455107766719475191362255173050693427060337740608379391489802975283870\ 4474852152242847187581087738704781611427079188113756523096954978902834556761757\ 4451507381394675652666107226170076847960305047339788827498895955340926813857112\ 6802035815152326562338749631252863864296066928944903703577229399662783262832738\ 9288312849844982764007045307027916190020015133654267215179989066483635272476130\ 50302852, 1.0226268793515969911199098026156213544932388690429383508243669179539\ 9843488377451276011492409942932015085264563540308503853736563250204590602991311\ 6253578627891363110583926221037061188745655157929116830671461141686999385230860\ 9963614156117172527188946080747227637679314729549325780438937405382787189213315\ 0708502825266843048482779774120732691831364383918331650204551689799887500178795\ 5758899126744184109870015377551574081818967676711345710692992926683612721291859\ 9317905344152618931540697420280454009158018292601, 1.00250156293409560140021055\ 7642054244369975323100123277413000368027444339223550725521887786540763170432430\ 4788196523526071678728433700087798803925889949209663316851158238456766753676613\ 3129505155219939375440710225178501517789899087158148128752118970642911493048312\ 7319591731238328565058409714281769923513963368714722971756393160955000318802192\ 2382554995413396955259069615361232408717190277906886084693217717184970694238590\ 8112873642793995810347899997051751771878243602822796115517022514386221881249097\ 69348316223, 1.2075022318590848509899711560816276498554545541336405890057936847\ 8018710453353094519350941646677389393768186244218144828011590705243690641705754\ 2281666257137018485331456752463749961386317137712485517471290095040922373217776\ 0281957311710003780549712281088723765987597615273822964045916498464706775764064\ 3502989399544073029903475949437399027266927530111082427560869048290501100695530\ 1519573896414381599180647250043053866044710418692082245062230929052086651007055\ 3926293962706801522161296388072622144699386709210288, 1.15704953917018890459364\ 9554777013973784913123328578655710528125173112468978976112167236893755003758579\ 4914837596896059391408418253057605004427111332003585539988435530709157770661841\ 3524222666997746506903704725112567136570260325279186625212296860409346838405363\ 4701765060828099510284859529847043694989198879468140433634934658086254299212039\ 7736626029443250971714786974968878991518138061131424579346164871237316957662280\ 8794024340159319353160566421253427478195440757177952761667384268903312906379916\ 27093946121210, 1.0786617519443663453708568243548263231216239899805575894366074\ 8407217175294765446836616847729169151630259408495149823462181120000811071745988\ 6988651169159316254952612790057248953465136389204486409724510196136703999306196\ 2707560515186333724181297912806337448941542192889164461691497941951544281723681\ 3029239625195189761060945873190141360926561966758922849163682188254585851143769\ 8968566607695828585812622687019878054700374199130015526584262433173656328730458\ 3063894834255275094468066299963415980267467203274332650, 1.04999573475813790518\ 3539219109116742906625747369568951618478373514454708323942154786840685199151789\ 7784513433076338354067215732795498361786369590135786020620664057776553136190069\ 1847414726152417195966695995206891639719660391098614542428504028351442100183144\ 7841667812449918171803588715739972566208839808837619965266182104104719377974186\ 5979680100722510042619260437990353899288419867731871295289466918039569606550088\ 1862102443695908221557876227683028835399107200957058960301166489973134180094429\ 67454284950502579, 1.0123838352690549587741525164568629565291513380854548235500\ 3305779772364975436564489217574116360635189426222808282825439916079884231507105\ 5863129713085425526083304540671768453317974156724472388883388806804546229027475\ 6681155812780780293987942331174817215122726950391962866576861113849496015960249\ 0410302524239724389232719631641891009222783291131960782612029546861937644961814\ 8997300809909263375900525893718315447968048919822745867019942136022024680809809\ 5438853163234584686078848125112920050085083923830453555678, 1.00308880206666687\ 8560727174999566539339046115337341165166086441523778206800918477773667649398446\ 4153459391529694520995414702001583018176381342194387626067336097383308800915446\ 0280615703260368786791671769689811046708551766391816479727102093610345416337855\ 0972033395199374479800565626430793126972915419834604225315540143000932822228874\ 1032039789052062624382168737047349226606005982221164398753412074318160722069702\ 2186931774781076411485463607615993164076900933951311727904849228148154314196893\ 87759101819723643668, 1.2007624759528557831881614863693933666120273987356155803\ 0140138732827279610387231046719944939979928970466799271508836562258546967082698\ 7002621365553842868272631311866827887209864934930032062395767096320585015467864\ 1040338164898295330401340248537812343971688403411837740320169690898250019380053\ 1103201481184544586257438185815469294897184245802600367072772876297019926624069\ 3534116479034681504590316588732563568021281955812045792769767719473048556449181\ 6701306266898809200799146782108500112177487849546350694783438, 1.10006646437938\ 5506488704171804869425989063620276345811101423456287862838545852631192526639558\ 0011486849277582793796654463814686619125039542748747063517614086227859513378982\ 5265708684717836715383160073151589312376249019890127892568807120417675724867522\ 4673191972330308066045913319944036897808359413388999468873494272235250009446386\ 2992715353334286344408329054768442549571932730855581811282034356248608950517292\ 2609439425032772957869250092021897841495116797925929478825420935038684694301308\ 13869309450542887711451, 1.0354664501283920184426451809980608030613709655239479\ 9607840309312156160065648861697399244924142127390343250092621591699591811482140\ 0408619671615580531315509748276678254937942878077077648091217196730139898711380\ 8877298758001345213588492776712694950131194127098970632056336729282073263194139\ 2088958585492519844496017864968892142884997135000250484662377275182276656268068\ 3838169284320559680078959406983549965347861738919171717571296081643664822497638\ 0239646019486233315752154371666993787851084399851200534604060978, 1.00391006635\ 3354485127846727252467697483599132257643909787725713179185018304786387505121872\ 3280154229279162143630527903273506964041342706769610633802511780467836441192136\ 8053832282944377820674304958240877312081357020340910549965272503791572856740190\ 6520239767037533005213825882518744923012142571080286119519599753892764987370772\ 7530122694483044692871557689505221755509251453024763329847899727523210110106701\ 1498147439240510153178008501629286328897057282248924642997238506968269824708138\ 25073716776861417294780546, 1.1812932588197847048226581393230620799678017886847\ 5030947883006415228617382090295280237230213569380725157394681756073194107157847\ 5554888640790584878978398882375941202004711084867105900122440663414557050530597\ 2421916977870146324760185275980211049709217380482676453257251705955452970054405\ 1714286895987826998666071265284705345639864431818853463249539146173170007750839\ 8034157800896755371544875044377527475683853652587125834251646802245731414492808\ 5006065471215395074021073832787722614741209325371183779778900434117, 1.00695651\ 0078365274081894714347692598308048544768830429731834264993615058626641527659474\ 3322570108652207815767039474639021898837546321871042007605116824586499385779265\ 1366576549328963796206913708412141658461987335754966577054461300481761021570041\ 6776570708183127187689148018136165747946019662331527096904051678479274420714000\ 4691505503283640263530421302328344180678621930386641031417056284419673569571762\ 3574382354167038007213361503690566878149085351092357854484289300849470413249348\ 55873004481998431878216507805, 1.1665149228698027314312369966211724224327206572\ 9222280171962370802279377995186033879069571765671440822044671926707763370303207\ 8979310911251240827720313593334957731133556298877360849689297725230661032161409\ 3364855321041166402090812740921356651025572805451043797893041398132750874728209\ 3175193455787667888536536845519478257694502825904536237779755696706581638164339\ 5022859495298409185804056027873081226330305267120520605132789313705146507315382\ 2371526936469258008673359469856066856181403694516607768789050557723517, 1.09204\ 5364317339541840880210840510802109150439590324883561292219666955257661279550424\ 9579267681176547404992653008060439614786847662763326529265966203673084625752873\ 7335054901089254393360293596157499846458787583629347943042019404262659385530745\ 5252480137124359770220189440198774607373697993370858842942715954073408067971929\ 6105775378383057122996760868396033174890503449684642582848944238265490435940502\ 0982232901010712737930332980997393068815181290517969234980289204259530023700971\ 14140027861707926138735813771362, 1.0404017822293412410219218705961468405218965\ 2835908002263756991215252635116577910835840762317453302748673834095309615394794\ 7692963241242645351138589273120032353574041835797594208447421366574789365601001\ 5987004878676883005742057340039645442997620032953401006212320929235841532709126\ 7964519208743772490415706189464021735544255324442600887334448788344146509829224\ 1090493147611777514505737194729251437196301641209600785090434204117482826182680\ 4275391369285515928999687911050575333324482279863153669817490543676237869, 1.01\ 0025027795145835262739416520727848886908455388285929349652810247444974087466607\ 3057922774292286797067081838827057074061887316161785645547999324078219570644336\ 7704603332526584452493102921534964867191814073206754197473009449431080886257812\ 6481722820803453208479446092650733779884555926817198528090398333770918881556094\ 4422673513560046237321999760751632138454539218118579299674393198357896923156641\ 4900612201551806889329294593107175080453675471144813118862792007809658836214538\ 99970412503338715751123097765617764, 1.1456467780440013276475708003815183884962\ 7978193433545550707035827335620677234829628089114954638619043006257572955765944\ 3269445428317362396225942301193482087579681035222800386659734422876207830048318\ 5784988381876730479523812689147229811124660564585045388376856914830631110211360\ 6969188875238359533976287851143097678586754096763101510912379069164357662598388\ 1435293807209596057219141277677340370772884329534669211689458012216197892136282\ 0913489574923162586446736922044241472904514355202384097394822362871441702915, 1\ .015686141223607923354734491287226289488594947237910002922426945499074607205960\ 3024200090026587355349178639399702706923987995856482836077871244948977471784030\ 2634922907837573476313900146809932049578427201227647882665954986299660398167560\ 3821125562895264149860328001260556149721178400833241912905740056376279300596861\ 5531672990220525707007063157685670015014719895777887253015915155376059309429188\ 6636906917111111226703546964043976848663133888171910171535966140749800485613403\ 85391246116937240114649534508822100546, 1.1142359006021992923538468359400493127\ 0447866725670377069891958857247240705963802633824742738980587494385736878353898\ 4661215157908927128560113373023163237993430609572495464290381562344886745558980\ 7152191224299398982190658721270034297741155294658341687380147065412411383814229\ 4827440718448215057628586318269299905504298979660290086405230470997980029622573\ 6329501189633947676673429097785788982247697864102885118641953114814367979703370\ 5700883796570202598611247765179672098872667235235837741266463961871965719875076 , 1.027971275421311545458243227919407439316929694410135122751513086229082717055\ 1699242524533983038779640733910506987822317802240744174420871142051022893900039\ 1495063295174995464113132815041219049550392300417715693635899984852189685057899\ 1063135478138272181875163780059278288527502058966563716110511624358322454225396\ 4348420714595188026007152977447529282842059342553708142404296607601133710947995\ 9935135755099697809444377900997091319776049575958936698533409822361900240013915\ 91658854324008686758457219104610125276961, 1.0634833707413235192631844154453565\ 2932952317482110498916957207468792671850569185443456383184133386321402620626858\ 5496584211574527840033976454535783190365004875651853223990697623916011097707673\ 9869409855388779460377122111653287321663731483128995723917359295616246216272807\ 6984820618393852676383731812951643927707202092756188728406344201088980138257001\ 7183610749276322648377561818239912810898375102132084398753976677388822509534478\ 4967451100533789686397997891654406509508996416057231614176202215459717912448903\ 888, 1.266065877752008335598244625214717537607670311354962206808135331213575016\ 1227754703948183571472801018710361346890561387866044362393033515852308035320408\ 7479038254091424413629537343957256009955459264383832271986915605884922065483773\ 0455888207587137793406681660316586859939633883248110710860751436113421585189289\ 6832534291282057095473946847102180340532245748472898560854131259106642658548604\ 1953676393413332239794806146843056926857542747147676823976258758906117320596729\ 09398267903329572497321596618516832256105584, 2.2795853023360672674372044408115\ 3335328584110278545905407083975166430534323267634272951708855648589898459552063\ 6838109558057220914990904985515625876533047340230843084267862316107822209223421\ 7628420349982332060033963816208906572562160692941368819995872172126755882951570\ 8962309948371149708374282052378951080596421077867018897936343603820634172137259\ 6265637554583900281276475262141795452758076658350794177318830471402513772194022\ 7475092963991185095752207104787404163260012818373852929370557540021074452003939\ 175844, 1.646723189772890844876306125493315463109825314339320039961375306479816\ 9235961848888447487351044961894161787890212106260188447709588375296602552902277\ 7285716066431073324356195779693881080680984082373372617308561082007523689041270\ 7074328025616523835791071958805520566466206817211680269097445967692754745161317\ 1878843567813154280889741280811713570567798000185758668083185249138880473608252\ 8399594391282121261581814354934136380337918425034650850364193989132089275702238\ 05502457252056860208211172943024811131830266070, 3.2898391440501230357059082299\ 0605602611180157534839416125528705344053812810694973324070513417838122219340846\ 5961654679181121260638390910113637741297874737624980397215061438163717583086175\ 3964515785207689723598032584993035238239289703790819954960397879528423835134676\ 6116171420991967458447353913510971538513036177229884938048029043198934128571976\ 7079063146505902171775488316102991044827919211179064700238891928775598563984043\ 3009268048415840668016828403990712328057813567707129779622527756828124519475360\ 661908096], [.80070869576605570546442734695447292516603245719545554639595934986422782009433\ 8548566586175172686763457789453304689137869385692411851123981224035926579982975\ 4259017725355228545706286259530765703142003173865178371476755640076171861572235\ 1174539462229450477370151524625560062702466237177691724446280187642260360948071\ 0117318930185681029387575428936308269612989747745606035275619907933454139099458\ 5292620570959461886606770308638645379966102395707052946913083219304551786822608\ 0326198938003448229931612880894522272583, .916722747890740172175868313484471806\ 7019604658436980171085426167626349804553124608873053058388721624907163186758809\ 9137136443984544821940545743196924299264420175285887417093581897373094805732133\ 7394711103955325233440793090882471513996409558888922548311973331173677798615181\ 6366265028017895856557067921680950505353169213129462578731740958579437472464456\ 7122545301934421722168925387476649791452344975444013094349603459645871405182533\ 7568318850862773469713052076492784044403879092556656334469156430451713521188069\ 62, .95706590747993547025648243892845396435566908724871326926104234538602338740\ 0154963992675263977946770600621622015611175176874825227811849133110594993286659\ 7941276420165023897893351435796927145733286264817707786799280382727469606175471\ 3745978164281131118079401074089460552608508712441988519418534415366995080555398\ 2077826406971206748159426327710546496890934159605956838016072806284565073825542\ 3859993132545257849243784594496539924141689347422598534370942491042918645151517\ 6697691847061027823586982750009965084119511, .998264642263997166086577343489774\ 9239981892926891055166197578521393290302827398843976770043479120748570816310095\ 7449652125221768495045239491196449635991168149246724795299239602307153064697399\ 3768983077070465686923637987488820742875131901614794808988623933483136783108529\ 5284885387802741004886058053806161182020143258267032297287784148994001552130454\ 0526023504798463129818594666342036716551198306872706477139208864689969959257901\ 2295801554724699815294996375441511784042029171816223978258129888880895540310679\ 03537, .80752379812254477730240904228745534863542363027564440133049546282729446\ 3620786449450075000603412417589088529159345167047943913339884844534545427021542\ 7803353132202246963359416166425923448623523529399691551462530903076068781915105\ 9449869690332049943462461026250528466842134192817335254144117871454360140344513\ 8158124178427221534713086299953280105908186964615942243468548468984825822961815\ 7504459971478409581565730362854333527125643265111297025918096912560653486308998\ 7516394067756788943388581674387485862356761440, .881200888607405280838801662879\ 4589580426870395479847253956123346167960183314132872118171317726469484068520871\ 7431179602397422199897399053714301437751882692728502990266038164597271536287185\ 7591459042135308711329084235632820724663619528498051426912699319938905221124653\ 7082452583321502974851043940062327495544278050772428957461992182818127855696768\ 3620134917704238219405036102671719313922347094403864992675172915472212589229928\ 4884082460797837328295773826713725877110171347311621716306430564435718308967245\ 77137485, .97762624653829608756974619972239867210922875494069579996167979748068\ 9263597568208819882679327694645803877162271787115007520268082273623672971596004\ 2106824890619963281123111266818396140207489150575495406916630875734082480414637\ 7139772964277564127257628253635118227961518430812977083480789636584036943949642\ 4004958214980312069559731186263700460739309223911745766562364244977021777332038\ 7042708190592273982031906778498541970810945307840621868542218856958635528836609\ 1746951740337246898340494066464396779009850162362, .997501562066040032281286898\ 4747920848320082326843663078011887463880114997092956792816176459693148993633876\ 5798874543360425525044576206235345138400730821925910828060393787871803148316734\ 2361321752842028858445966063749814186908649929387381314075182034944308902302005\ 6894830304299922448274788892808892227482878796087878257945010000405175784159651\ 9930517782878735730468238812878826629363118227375366872999389262214489717924668\ 5831786210247215747425634119820293424604157696770554336499664802810404868041496\ 21803595349, .81201227577138210113839290358827865026881908312980154316277372429\ 0631639632593838808657971527525324036184221327109202646812819480809082870073781\ 2827416942621019455352347743069533303687537390196626583600935856538917356549162\ 3837149450263978070662013341362211069419416580364066222841975043126931673146286\ 9294563641802350840045346862829629656850370604527505714691611736855361756846904\ 5533258273402830493863393513016302505687541096361763307130585115801268643298892\ 7702687757080640525784669640328267061958010365885518, .854388224541356206801826\ 1954310764714579261626056992453108898961615458887523556923683130240290141251000\ 8410514336796363305836648977484669836552748535797851853351454361918808384083844\ 4388748550335556666902834890324462619954562797933777142185022980881638155244538\ 5940129884806228160737197292583892317531793059410266588677353525118268871686372\ 8779332014699201852837579943232676254053490666870969305112607653712742072608612\ 9029547244174454778388671028255913070699084125909818223946810239764666237626564\ 54307643819945, .92431524204027875042052952351476376950820019612446128483015450\ 8327861946308167943822007014298129205710736720746744351595397243744965425668013\ 7941977565084511042442723402094955935190964147858935534447394045765526484674335\ 2034523352967385474977840534847476882177450796839377538784859498307573512422866\ 6996207827294711172084129784899233579682882519752215858887758834029705962651312\ 6424916644538496137049842503949023368705842281699587777268526957864041251121690\ 5423579765611711777476236731663434234587736361061196707, .951223612213523361108\ 5784585983656681826245601622027878555812922769969035277335856058111047763895550\ 4584604968084750537026528413265599545666319222087427828558220108272339120611826\ 4908032801580667559717048404860281066797356994399190635269542836504851923014072\ 9746484672618790975167407372371054535281658776160971988148148975706478766878256\ 1597606469446076008274974516451353186117189077367754635279866046102637419751891\ 6964182989123988614672428601138299483621467122984520401995858417996245782984679\ 52634858941535285, .98769237270674470341721701987801592089432170826397843402229\ 3528563025043857784060921671902805131841929910828575735990188935499563764689205\ 1952284971615832792991077444186741455867234506492738554260365888721989786820571\ 1403338204139539814329006457175126604748589950642106092352798879887200684685711\ 3631087170798747748825751980512441089959321147215294073159417438268823691686272\ 6434639739773127049948972191873338162342148957019362878359901345663103139182675\ 7614515337437510698589964004831298828684987449239363848734, .996915960927094327\ 2741868495579821215445176448561833043163233198642587745481854280432916293060613\ 6512004523473796692352195558629339461396951751948388686947636742112933950034603\ 8509647329122854245443820579739766799069629249891300603513977918189528319559165\ 8419663626923280514895867308066439466894117328729028620096455318157253423460815\ 5670420651027483738172978398111573882968227446338744406240937301492180531070142\ 9093815162554354865085056896253640582649293457774478884768752741556804508750857\ 59730861575668364299, .81756036100058493700955143495779421251817502119597332344\ 3980333029389583874250891437128587913132884495426439909564917048175536288334223\ 7922497835727453368101136284324432129965361869730556980232547927789847294655701\ 5416794645604061924839691849760253774684113387680903074902550238349179817508976\ 7896124215648738642022245357181489352058498796620806903221698972077563542436557\ 5279161988212290263077043002881833104963021486137179309786341161231013396279878\ 1532522842274962019405064667214629043066505802657217665850773, .904702223002763\ 5056225080245033741874872278124289889119802635341297178375668196584097384414495\ 4821392274536050010482174114830663197178528188559531772445965818559648267367087\ 7631477754423947346304408788757619367708349579785739416445108659944333211486624\ 6170680261129294356542936127786496955554110367851619084844390771452666137943901\ 0781799852157237147148608329469073360323515339087752804885817576340874920907280\ 4832413390735248896714353544317946477568949170382809838100828042028696726729923\ 25604950064457685992561, .96515153613281961647320771068221865784405449812735304\ 2096070408880115370084765547776442351332863007116568076686028768337387554863898\ 2246900495779732368353502015364057131220777111974680441714232527274344427209258\ 0195436788033656075635424330643049223309244140809086889359592725902192461644724\ 7402864113379719823974664071631700629643786633473947404422342220737114544535675\ 3237695183722938246090047722151667201048941949031924173554997368142776661623156\ 2928755797270830641680228456872794051060866441543881619427090638, .996097563041\ 9852046207689994531747123951775904482831912767833339715737288292636613764250422\ 1674704810946618708923866168595909749289991063235569128200799599982190563825154\ 4652113006509801721132980983350131239734934571161864839869383913010808189624155\ 3204293957706774106428030283216859042319076543115765517942978224251724697370948\ 2326887320459498821431645263126012036385040847327884097913475854914748844387359\ 1636869570007039417519905103694436664647692546054606605785284282859766220920640\ 39081009617898362448965430, .83378030464238982764892244811811881919033929992885\ 0549274722246775242625709405840183596624817103429112590407406692048157733852213\ 9843499183703833747592246364173827667484706191278458976623008841336473162012629\ 0545781032480475146444717357228516142377031919260116095942750624305921711944148\ 3791788943648668383472239287937272454749152606935963810735651898692781555576405\ 4201160043352335675323081148903492879380408950689399860056010283423480741303487\ 7852617996769278132309109380750529350959448128684693951902940187218, .993067602\ 5840309931496217094873900534910022696874510105859970551099782341983396544379090\ 5198830580902367581728276381599579844913635256463459970951584401665422797423191\ 3731507126726445381283554109163194420938122662491925347085233408159032460095783\ 5348415248898710482610798661332617749774466833861903365792690095423121148003779\ 5192755221908274379262262558563790249647910610343629217225839152389818846331421\ 0388217101569036303261246579854547843135432215290587557263330287102032357362085\ 85994024750313502059111811763, .84628735275048026608920342809255546530305912274\ 6978872759202756986856631752175894709516321093181593506073853826386019582286321\ 0435433356487414397343681397493707088552013805459241575213625408330281137324561\ 6981230378691730837187085428352008025291706733755649123067542131655372098767073\ 6469139758917968705665466209597478217203606175809476685888220321258340616187426\ 9942381045127304766441358737301829640309200195984625927360138078306710070217705\ 1923127838379797883807277697819012751448777028482958482340613458633392, .912004\ 8634972107759548939784257425286096979130212377464943665188004675521783694202315\ 8616153264464165660282013567006391846856402826774391642371635620068207321900809\ 3148086428496961078339367759269804518396968092451891152930601253708332327362762\ 6197401740831119226300988236772162278816764120030570745140821471134450898681344\ 2960082984157167912453639999524903025713474608482800841723317386307595267114538\ 0527781808012244516599716259796059185752464333383952814652942902992880809384395\ 12432996239970725255846168730718, .96039822665956345034416530660742792258232452\ 7371017871302739002617363884588524127153976624713012682045497690603955928282284\ 2640987983800620846923792573006847838244378565173705057129251396837312653300020\ 5734641561805987810032239190814107283846044223569158524363563404573148456673314\ 2416578475378856921879708637653775430838841891447302184695965861535732571235777\ 9764737987013363547999253762390891351183475352634631810166093109272352783628897\ 5680385238629145357799011722689742674925955786164406931920369885834445411, .990\ 0249722395763908175076200832671191563303563557559171064266075769217481127402287\ 0259960034062691609338593863192091846251310716230994922238498966144278401990395\ 9560913818616528553295384478729010806286092048510175662358159110094400916188062\ 8075307386101406155709190366146359064469616972461253837534851134589256035013651\ 4197189826994126086749716924711612506031249462297192643165292487011372085483357\ 5163338089149242614771416256594570407915171419716224517774689273830944256012155\ 78239110480666503748647070075026053, .86424227516664862355573110382092321061093\ 7444234802105713722431891199294114355161537655247543190279326521273298014641809\ 0664109473986354107428162351379020942315951098202148073685093976688715240286916\ 9631338497912920862863164850742439240503027633444635062962520717855396838148480\ 1724024226212003883383624995844997305018337824267304082620829677371719967786217\ 1898151821785371235047993268704904368326825601804460130246089183289706006073375\ 9616681086026494948057263302829019635900628075061414561863318715235740885330, .\ 9844359292958527049236911404547618478525047620134550935369837434264659448319413\ 2278283314359194803200250033283933440433769029315149051775333195434951339317332\ 2305703551513197203665460696379968065829433414366505894648779476669968564199231\ 9759837478267409911632703084206793068211799225374893374227018615546117650511651\ 9679196923136409871444994164182075773815826114609644851022169708556347775469846\ 5556198645027193341104681402432589437920038336773484087003451261394223197514730\ 27855045686145998779712179003119950622, .89193746813272714327964405025303944561\ 6433785052048381166576991136618654749321221180837485984671579211451544917851736\ 6741044621531206261827199099782571874833141763620801961685155921954601362769013\ 3241094027821606808619641587609567755603698627042735018309576270895548637720613\ 4981841803540798428358460938165319679589249156371988802707966280714953746932314\ 8234593586917996986773921720663853483347685135194295122248600850049437934298690\ 9575127159850774567869114996123614617094178778929306421982127264726454016940106 , .9724145291150974903534294993893432488588741668739115582725129705668634215938\ 6628284594015586969059822729995815152187423908979886495606888367461850968835219\ 3365285306525745821789286584835356585601689303505650637008633761396695985383669\ 0247835781940723496581921557556717894537682120800365689095778765165102360023836\ 2258392290239139956969933356818144965573744544529919479636335668281976553927812\ 0446122347692871810641554171989141728499911517471684694849471232936213447646778\ 95457417806409784871222628784776321146803, .93846980724081290422840467359971262\ 5568926797096821576554705168024483425860925007342101429019355360285361507602817\ 7346549326892310197629424296951382811418420493012577206734601850456743543995762\ 9453454492631268115046785167489619070900123971154900237831766725250458276558637\ 5476216035484008016120893020593735529906119366282097321853076798218196494614898\ 0034019923340936262376013114798408697814181079867994869393015177155630322663867\ 2038332099993501626643679662566072151753424357233596676421260291796925883172502\ 232, .7651976865579665514497175261026632209092742897553252418615475491192789122\ 1527244016718060009891563397492925982760357620408487685520887862246280119463504\ 3000621684026314734672618256151707142493145589701261231902194162816319453039821\ 5578967206773058932437885452599841944140645699240527134712704963939214909496912\ 4049294071472226206820766450323991630048113848450087900293808608922549992977377\ 8234420971423753350247010577525128400347886690056922369171635031885777887129873\ 70092775893643208533914574350935475694688840, .22389077914123566805182745464994\ 8625825154482218607603128349706010853957768010705014811511853429366049237044901\ 0093912098413025133508886153461510329522923180230242553651376828182017203471677\ 1270836772100274911022805315745308947565959223432731303839088273592217378343346\ 4599323576503717731469537634613303109823225379202454812785302276248533546151452\ 8618042894872032811932082359627405055653833534227593275433511662040054133162471\ 6266595490514080548244230718704229586261252753181473998761400694183237510990260\ 437065, .5118276717359181287490517442834117196256651139575417813505189918966571\ 4220247145996273985879443026677851872803440830572274948323767886130818922435400\ 1810895235219863330881341230082835699063922111999991243643438157985821403270081\ 3344886355823788430748885166391330702720534828662017511232156070598821867138469\ 2670926793323520087228572538880140606759173556633128498067624995849318931840119\ 7241285825560885860605529451366527942878202592001652555332260364178145645119166\ 37509898014016051116092490985517550647793837803, -.4838377646819799632728777885\ 1203433631811020069773760931781520714990205667116651311006346877041302178119126\ 5486249083025067211750888564606148718877471724313832280470263714470734069287730\ 2406108866886819171252768077849595374605359816227495263736003591143358438560333\ 5174974307753392890623371429272787437934595586246964389543006065130107231006458\ 8435095314113046673862741126017157993248176238176532283746568053985597521573996\ 5472419314998592672946291899447338160730874722962874107406077449664116549050664\ 0304747562e-1], [.47496395513416420107126521775748364895843606872189003603147526720980379141698\ 7446145491391194929749354460230136973062009456431515707541520459187761330375998\ 1914755443699801217875491602747545035033413718030154148960367858291872738019413\ 5676933964612888533896373896244181057586948362011968483948486613611780469903085\ 0495180663693520409534180873060361375650531223339059265324206496911289910549570\ 2964571748757498501408336395256334050628637921530192341868476691300911423483378\ 9058877148341050014950778566376218352741, .799653326022566159978512321665775399\ 6965701464892552491934408372175626111048071362327644188680094090006086764052046\ 9668944474733229571564628609587868619215865567263568219821541343992309004880982\ 6577976547360279070114168391779760162660979731338051759016878669178907918225861\ 8930260471060338455225603952758890022153367930762683368623319805892292376168641\ 2513607765367676742593530106656236346762628462351258520904533039724972143136043\ 6191431329112121310190678058436054975712545990403447435717527402336475067197196\ 27, 1.0790123157413436607979455636950113843462452739616163384202245133346818990\ 7686171079879729116919916426101450178506263490582304119758202619868031988660158\ 7458481102955785698034898031783268504070639416759926109537392068254780083015622\ 1578467857741491429101140579028535309506788273618661509315338818850422439583452\ 4870690769277338436246907597279265550790822250900962766248930264170176988989498\ 1187562239187325567339033639692170379372695819093435190327047958330323241559743\ 2119983500599382809116863479168085159524245, 2.60709271130476989599584540347738\ 5627341423463204174352931790955718686096177294490102036089591910836788863265064\ 2428862093651019360340014435333816115887472385929233241103440906315230390773105\ 7398405561008075427289252179794598166617369142876390131947434965375781789164842\ 8371057924095308795877343590942362144631783043605991510660560500193440598959847\ 8085889145236893697022725426790937800979519724058705335789575530248811129882101\ 6307697572174535355335804830662460176419854546626388401862411463281074159060017\ 65823, .48673030816290052158171159418441492006079500296689682866148849068459092\ 7405716690479559390670297507149177756410218092208821181722296366403036282000078\ 8963944424766140775371875648454251462917966710798348142986943772459978621212288\ 4787167416466043532919727817496378975220630737802592515530854071661152923109158\ 4758082231689973740938134961948204062127245789117828365261844020400606187150927\ 1244125323707915091868069432345618238037793531294915128975279106734296862520063\ 1480857068935613156564971084095633700339983311, .660519859915101548740181613498\ 5509895911955013969488066553489472091839860300565380337480364156225419489165565\ 9167892709545302256359303877699083976931376019247821393294503950404357441561539\ 0310691899455610818058798086551763495878702402903135338658877702440159372890598\ 4339212620409799386580851670254458368492855053643151668293173737570087863262228\ 9789885585391848142187710538698952440319662488457466114484447228539337941866262\ 6794848828870475671184716155534993603394058166807755684541571171437176736346936\ 05107838, 1.3724600605442973766448858244409698346886176004445001121463669331348\ 8506350210867477207161001543568056245141177974988631332466982650836917554275294\ 6223465758432419583590707323722549536698427333020121870828178265190117344252138\ 6421003349240382103266408573459806618612471316502398629022049843484048431435152\ 0068012868487032363039293999459967221462879167545091686379793047253338274724552\ 4374147279026801410007346431677567456908890351825014839846311453067242998553709\ 8077839547718252586918134812200292551638812348296, 2.42706902470201661251850602\ 0428061899826011685384347951399419294174963627501900353249656338446689495485155\ 9202442956536629907665056594051739492892191689723164197613346719604505006020973\ 6501885454874538959257610951963920683075036564120665850925447572442031582926767\ 7656362254480084799954477326041529549020773100562862639718058796555704401101679\ 5692269098002750910766586987281348252077714116816184618366133935581580995148074\ 9538095766163936258403675243781544290617403449118942213855692097066065669349394\ 22271479900, .49477168063125482686451181468148852402747545290315764733394701494\ 3886647900204014202645681894257347359099334685384766145911594492152893848231979\ 7149910353146937894238800973571172759424271938626206107308609279675689624083360\ 3911105718693101600053273111598661356239763624654826588154743482933864735113970\ 9247220026420435351946522907366363655881815575170870309990373927738624548254172\ 8826047425094881470713539104095666549822404258019345303587154105878025909957513\ 7167636505600244870155192676410657438638592884399729, .584911337084171264819838\ 2629707254519218129973876948253636247121989821295074244797342349708097466961186\ 0303985683986305164563292650857257012345600381467020770328521569731904394784372\ 5654369623023138288086559941777119771632122900658015448440143204226612758903146\ 9241312167817387288458415652097609974802412577572376817933087588525716971132872\ 7185265551252152043110899645921630452841135662425782524515288105767527623813134\ 5694438706312419867078516487216535440756872520780671138310641163292827267021899\ 27216225318189, .83849055621398282188364863627873479173824140537221577454958262\ 2854202627094319862664483472366502910323561823184719514052224714041169427864059\ 8818544955199553167575085657249287672880551355213376314580337066425422256778331\ 7042790753551415214717714028996876464886932626357738656662225382302377311147353\ 9616888783430831495625700939240997345911902609662619397716572140964564497031795\ 6905511495191152834315832081505825134671481103658327748954836020570871921127326\ 8771418430898956107368136216232688559800518913062783742, 1.02350423039778808226\ 5310292036096371502883662544080670378861423950783476509310654567875674018033738\ 0358941783203906891636217041411944890041159272356962464328532058863568054774605\ 3631760753772106951172888765980258826328335310714917905285297416030239523295864\ 0227072118985352166420338483407902048694624547786386076435245197188024009702791\ 3132946230663831871382879304342261329830821286448505390716413897953137196408353\ 3151040032997456402192633760136201845210710188007314748446592173983995465843907\ 85464322398044722, 1.6524737667845599426833766472778732118412119135758109510972\ 6401307442067076715875332497508426373799699405515854083608158914461579289658887\ 8933377212308682061621897148013158805495797369608265575128903758327130226982397\ 7038068178487137658957954920114345143038783458176067998882041327583502342684888\ 8274069486170515687060724543250526496607933551730504834387067329276208544835559\ 3053898880697251129095889983574665589563085256131638027119284065039852499678721\ 8430330718775753633476278756637135368618163552643682516945, 2.32339096781097903\ 4488072627263339538391965252068681056541167460982981596839754417138644482913573\ 2475234210841570524823474687609398249254136627651899668810382252221069828275224\ 3757715334561734954302522471705796132243897452926358174813148664394239074165721\ 3448901239715896429399245139613588630944501874057241031662488763156059489686731\ 6012722457979370822692411911436841981457614729601556322599463116124489815611241\ 9701163934753705999010630295379585311984503068015771294706669361697432876509942\ 14847838425904002236, .50505259159251237431623527967064877602767370219617217421\ 7589195516592375509870926555733013282411849276054616030498563595985294980549216\ 6698344096531464696682423151718242709761176219786859596076054070699693242570809\ 9155323330350723350066513698784434367573756796244207082884314031360449808526668\ 1076451685290655209124165322958730361656729930847003605184262813865598949002322\ 7793939761590109563987363359285245668300554434476598399844979807564353020589206\ 4302909658822742168983715160773694020679542966513432309092257, .745847890728717\ 0685024981226318740050224431866849795262348318993683353000920139329476735749549\ 3157074697762145082660167713663163730920557374336007990321529659267344693039475\ 5274423423499851002520948999461603471558741875011035440303302234270650680137032\ 6556709341207628273126957395718074520522353219018698896873092155772906503824389\ 0913414088424972575928000984233370213949235165476869304033275982782661544322209\ 2825138764818480409897132734363253242267964549394472759666065190870610489844331\ 09241047078320216773218, 1.1712809338488707058905962817325659572833515409131324\ 2628636494867933914956107317807655662619988143269857715307232756744225246508064\ 4605934044214174201692551927159522619163082825931155805869505166672520207222506\ 0861968153647080828671266944901167175600380835089984998496100886102478616934928\ 9006436548715158387830718503243476003412812105214915691825166248000504892349461\ 2458812683636207243758135332851130209012396810644875772527459588603074109200439\ 6202003844927225212127795522688126570203632893089436000656921012, 2.20786908674\ 4970060007612144849820586385246509762812037100883232507087055163749192763093552\ 0216501029820895483378027113033635461404334816348774483695819602359637970276025\ 3534716044630835412606652913549546497208808204776306985582904212776772256724454\ 8875147479453797114934701641407973354085162289575660534099661499902109555563779\ 6529355786927173591631563102420490067184851064382287826467046336377210142929278\ 2432538900585054812708342985492062510586238455484843063856603464859316871674475\ 80938478518155930005728195, .53750805692439365224023322039938682628351063238109\ 8835201386032226059580273654323178008336876105211489414100422824549950912888086\ 6560893398630526442972894218318462633108582719981242967047508908579075416301831\ 3702217990066753857744445940483098036003398111293890933416443841016725439485068\ 7699482929584155272849531397013017036532672765346812764718286268583012076372653\ 9702929064279502425602481656262033155662955243933722514600077368284288716648604\ 3927338431208037517774382456648485170806866392852160735618314599521, 1.92792440\ 2447825785097527949416588050607466415749210095292516580866738566138509083293484\ 8302887778653915970902183513230197712554788888160001187255877916382968883342595\ 4869313516891500661871286724713235644550601691606210057430245502161968907159219\ 7627622621418933477413523569415403818380529962412810849530141044720796632355688\ 7240345087300243100849332268048322857244139074048038800162929526188237066310378\ 1308709799936922420063847070925666345275188429786896404237270684966133225850962\ 41142696976771063478868083681, .56534710526589566836936763586304478231473189627\ 8304386934153816539445229831802441259012837560441247718991982137351085695864156\ 2911092010019395403845919981115716086606030566745350784757255048903935783865348\ 4923604643116239033330122404166923490208809721061718199545669878878646459479569\ 9149807318160272126291361614716015643803145344393686300877268705780801003172791\ 5828226134733520861379461801327961236199134196394257822636802541678817142674170\ 9750458889700357046080563237179835751409133656107454651059552985629715, .777522\ 0919047292894678125902055206780660681786039262708559653274317874508785282403098\ 7143863683957115927597441272892656348131085783300712115898972875823371055439427\ 9838201579722198025872625477799015586463831908347125492604698487594485494498409\ 7559993337532698070654671354015531991428065653754966427592505223987779847494495\ 4502820174451590179889805255511418827071168984476396648794758245388874823462083\ 4573042022361194131108569852612822757186656076598378776883399749355690342773881\ 07266164761335291363963198197609, 1.1145291345244344061695860290501196511631963\ 7236291693892091123324706304261942269245831607430106792312910741396654380226424\ 9263280455069820088547218846376141213293953560644999587129454120323449836055472\ 1957686447694970786544905083019692618430805836871886526641575902149706137070158\ 2831840286968106625463838019811777533116281001509375051415737850356289866675390\ 4323416499183208734936515725569763874001589017352145880354734289752613295632921\ 6215298658208243696264170194408929876773945470127776595333553764064328449, 1.75\ 2703855528145906617431848985762394038245973516126063646677624484266135524265386\ 5913441586880174071515004218073621210148830137220392112026762444548846359149841\ 4495826843867580238335067211036468695464497772770705584979418638305260890543441\ 0777937173916158267393433003748525560696619276230809295696637511968145000662148\ 5663168020321260173085758982899283785773945709663044827483324788580109809202408\ 6620571935331412765311174889602497288080822970170573035703649102123187626288439\ 67806427731036584944729589661397157, .61058242211646411935094509113329144824191\ 0102914900414802924313196277320395560969759202946690217275978016698944105139808\ 5613091693917903390477356658450094514013829771729307651246927096338439504753626\ 0677644505572477990056835857581876952101387428556625735385876138290330830052865\ 2214332224554151841312343871811372020827002009123564530276717203605233801421115\ 8627907075515169114727779031594703770347828089416062163639334087125696436595959\ 4768700599948525001893303373364187386753965899929831164288806983045033147359, 1\ .541506751248302816169516140575501607398623536416241605941241441711892211901684\ 7235276025743604167856967605888589955646379925584667868500750246034620524265715\ 1969239305303084191458243488207266889843519836697607461256213339578251510769210\ 0201052822189173388332177440458915858608453973675844030472557230622198657833031\ 7312786763486596655530811705679093092336706366058066718331913251504152050896992\ 5566733749891093587390753422734904058652464595277036053555008130251094287167123\ 20010763809349863431061395972262775456, .69676998859806131199265616849928255019\ 2271609892854734411625235401782447939506577312213807172252506656862060259914072\ 0593315152072132952123442309424223965134218549460976924249607953553571291921075\ 2379053638524189712176375205627864603128752198580173611909609410882014955596612\ 6889806349317261318714215945314835235467442406721265875751610998314265858121048\ 2755230931822557440598005627157420437484710495079778156984214138245251815416309\ 0390901071703930806993646868688112377813380707105572070381049617097575739235900 , 1.276584366893580156803881437301085642190327957259059785225410404503918903290\ 0378412665208698210287619906314810413129265277253771096061706336168361435466285\ 1661791300704246913465870171759683332405284729490762569775182085367896673787820\ 7539047326070915946732459355440768650724655792609926194371516947509992044997729\ 3161745201193284916438241465476522484469347736361417382359864055379258307238082\ 2466856554950603757954669448466407510500890684113328733599681322175645744117056\ 77601739770748884160779288823694219283826, .92441907122766586178192416753021698\ 9538768311953529684815019740632919960095016048678180760982359120004273688407290\ 5835199177064148876424345167276563633953329139799863993490723602638694867723046\ 8237592737790977883002994546654825607094160547875637743429736784627856231110527\ 8363890798629708591309313889294456386283273716150205089130140747274457779536228\ 8788312440162952130116060426336718098679634675679874719269500276077441146952602\ 5811705897143639102542113914057152102486890243779465072408978799594396943604751\ 255, .4210244382407083333356273792126090361362197482266604722989695514552126781\ 3810183909212513954736530451093460968037544680396770560901135263100064719264761\ 5224217839968037435378358643432658494547938418263866092752245362949296379496877\ 9793208180119098186775614798155341165361860841957093889527835437786420093940374\ 4854375495579507095147062507297111079729078406209297708670150212874096145047762\ 9599651100079368814415434896600583817156622895358881980917533639783649553332389\ 66469582017049543581441812045185508959688677, .11389387274953343565271957493248\ 1832998326624388808882892529789977663195206806311655975109795824478695509917916\ 8707669556935386257931086275896573491744985359779914660652550328107941666565232\ 9559376787310363182179742611282102912070364526816972252348862115572934455206329\ 0440072907232131596604425611605861471241773627879269513410418170671668059560893\ 5629903204374893925039533612599970397908350457788180450915469296368800981409530\ 6593092765239537207103064205324365875211868355762019785560306848543499207355472\ 632065, .2138055626475257367216209962508620177978810648011410920203426648643864\ 6305588198510977413141718717958829008153626133603491680581267273874479375312325\ 5297417329475416642888360170420536299708019985677868534269034273547283995107745\ 6040825390721399387449074618961176887279785223796135830939087708692564044322282\ 7446535735510239918812425290010228509992181770790909589930903435918058966471321\ 7907776592377789918376697136755312967992483464204607207727308034423754885185116\ 35271647265776043700250448791029054698475256188, .62347553200366186029169529476\ 0139259960055787434453038385991720783726126799928994588052374550157723832346504\ 3622230719373338592487466476285470747558547752291466585313600128711021066249517\ 0045365059918105322606104140571847060926644897405882307279238484634954137887406\ 8749713370521339241539788534797609796213569434158867547228742329419129709727504\ 7528322754317845613761020793301104700466347007945828428755218813400904155460736\ 2831254205624492281099516316483456837976549791209820049360604900772049206964760\ 965068116e-1], [.20045870824807978467867248436945597289933552255474784649335147011172778039013\ 1822731182022532129139121259918354289570549086313437314153446080070563201403781\ 8583667338447078294138867992190498151815067885854594540904140185146572957141621\ 0805666835944384417705806278986312622632368374137774360430823829857711417078914\ 9400125236744726688449739839661503852213247403218948952518557076806811741845621\ 2720030681106952864856039376334605983862970181199955208410266936010607453644991\ 2556653491274291487988349669833295909109e-1, -.32976942878227245781638457291109\ 6867831536852188019751345588281247615532729482586207888371620932623784174317092\ 6138897489165554500039326020430732143974254787864019499507674305741867900932915\ 3723775507744956144355187815921475308288995353893191989405938255924281509248554\ 2563179203382624693553458623844974866447298292356682277186725261452711525869236\ 6237726669028855130427403772216435770675651693895112839999707782616857936928508\ 0013489451120814494923607424222698573894998121772973580287053615686900932491906\ 233659, -.576863380697398262982516377275846836036502954409363185010234883162830\ 5322806473565604371653098305776709711187997217563376277632992168788862645394570\ 4864861790351016709620127277586973533230145482081453218118563035146263218529328\ 6010522469869268573004540501804987571806060265437994232483652574953025054261124\ 9771913642299537322284615078889837537628727008961794717067571469878492966038289\ 4020039950349506809988896535539563227819550508514154876710932908247174108093039\ 740870170456505491502820917271702276503769928384, -1.65176716768437272253775662\ 3611907101371590910196146887726029270178621191978593855860061580298375331422694\ 3411860303154628293005941160530466329955258506779394814480716408253392537518676\ 9719755678787118337048059962324933424502854586507714652647003888490154554142609\ 4727786318340825430885963936295264205805431548631037925106603740083159157078799\ 8878056634058120249571299591040874632363405098820937986698574551570431391797859\ 9232320405374489922303125893461663421630976948129061196555898887519995353007925\ 81404881678, .56283066352055390319167282698774729499356274185965282729271496125\ 2720256665423198419470152425724487500803669919870763165670618173321788228491120\ 9067559929715258841867484871045181607299985442496035307445955105744081159818104\ 7322234245492484389650884016073776037478128592353433391955921415517539776681935\ 3342699846547983506724107270103032264958843692829387198216166360448583644519635\ 0677762646632955049033197870438916950266312017500003404167633100477569753552160\ 2894437567313460114580524114128373235067115820097915e-2, -.19066492933739506743\ 3745215250651588563564166337596079210745101095941419593840149971854591167732768\ 3669663705558662266368676526778181920305204647704146335957253855297441282860493\ 5748050476714800815663092638832876584243812289071379379049831716329776879612839\ 3543023867704616011272793450576451724215159398815914199570623769311682027294393\ 4682902392040845104778969622806189327440222636185522455975768036528001762862556\ 5691891633499851463953468980948867057741239085073978176651670825391439558446508\ 220541312611048449, -.807273577804519465748690704367260097162758053879937682744\ 9945628582280327336999007005494980979858413854936496624802554781762945268829263\ 4606579385392809535106800324003762888791409714203038774615570869747060090264827\ 1364676181585472974705620871074286026615683367574824940809699445054724998879045\ 5092641609646596262587251679470870887777124593485833702857764158734629582442228\ 1468406904475813952280961700877677004754460752149247944519773445527169050080423\ 846364915147319339865628014948309834949293939883887025776408, -1.53423865135036\ 6844122398958348606381280336400400266993342666244674858038489902652468117728781\ 4320826370371850031821033597341885410256944540042495940285620878239601652881580\ 3270470745220374114569173822499309352410612778149488392288943946630810958421525\ 5818917241640062258998104337875869898473428972760028638657173245504352187813115\ 1312360729020456236017440736449987517643673283286831513551889240452702302046421\ 3744756182040317311241211707836357526492665179276314997317539272661230948652001\ 06245513208008103170125, -.4133630560161718343227239595986560599015339783811510\ 7976546672805360598426745262518094320268889672974372847293397247190199629787231\ 9617935583282267234517254755997839588161860010064297803235561062702321945187212\ 4584390698602989979038170138338243761651354796618728052610980393591340103568432\ 7118191858661667109219243939994959404506332274825238535798160503637171986328257\ 2419521456076353140498573669086472872819212106508669196525999992231232575876366\ 25772762034953540542450015920648973187930475034707293051643402754e-2, -.1088229\ 7430158945192550018477495492068264632325148065446462453797924139050711333131280\ 9113009128991208810180863007056569386980411775360159847637475555923445606189058\ 2762421192619132790676099167707310076902466629089507115599162626898157101206794\ 1135547742645641107914763757214845652569227068805366581887104744683248797225426\ 8796812944069451623707495348149651742693977662237634146082482195518816612688251\ 6172699540721088138466072114653575411357612795160163387956863165530086403233154\ 0422696558695665955543890759613, -.36637871037436578486268431866362474415081279\ 6047934054907370116427957209211404522802072747302729343625125255473089019970308\ 0051436905586927381705632997210070365687643554429667430079702516601988175828562\ 4474651834336084841860545485375025120496184445490617052807632168337799243828183\ 2642775714927330028566234017038363956602940984587012063719597853562218867035846\ 8976169384022889898894718657691297470259533950962477315723011497771856824552483\ 4890614481311038359007219125614987451740989110565215212280303268485788652, -.53\ 0417863658158679740006692437054877544009950224137589392759658222714696415034056\ 9963116499892297051183726446330098422249255249893718940731786835982447059264452\ 7063956333486917064944859562396814119654226927203997907298535050064094005543241\ 0408642335065578944077833104485025882735536204320589359709951093760034558264936\ 3238782199391177635041641760196238974220268583571249303348748204345908516733983\ 3092198070158563132372352626664859132707630146881107842795875674700422376558679\ 573556854416582731829576046998099640, -1.01081330571692924477265844608199583643\ 2754001672719491800724145243783937014688852058091335806099677098679595244369575\ 3763703447411986152193459264679758577476699861214668418865595379515413618000984\ 9169755432567800868446341732221888632196130638002242459137182420076704013993281\ 6164628246614130544696802397100188196483653168055274793322817474325313555057908\ 6304621091037960241428362898377065170200405841398754827957264672541816071534162\ 365388839502308748469807659704219464830348581748293133054384622311023270140673, -1.4660967440101808083552647462333728352371420411727611297103314493199857959724\ 1960021451008704120527375707182797903508638697229343097514651274103805591944003\ 7987300692562705590344801167116236079379328002825356637844270516284660530396085\ 3672656141839510426879072991171129579133865119936419928607289290350287512963590\ 6400699348071775298447828901171176025362949267810484630175068130442183858149697\ 5640657018634135798843263117136663270796036342808884913739356738719320174104462\ 0370768329173841194901088787477689542103, -.16508230225285088929897618757852329\ 8465401858792223915051678437635009847430741479336036099141695515737405624337908\ 4833491868630778377955426349225807458945946442978500933708027529661232089462660\ 8125423668224451410151705879271375603335035515589570890268672165673831968654331\ 8960336732765040132686903209890507444539635569018879088078673016620998371621334\ 6677319385017387256512343357989763816114693728837827154961296258612269645107541\ 7375266518714409071781298923440550020348163311789344698045010622932353311100516\ 287e-1, -.277546966762134964465241894156922258985766734279793697064841173328009\ 8334797071515127193456454186502760225580006585716479312556845588744334337616605\ 3482944687993390947367186885536306850015997971970789473061830766995308153839117\ 8723339116111862159290955422107534082836990780533127958212094708729389252506727\ 7645125375507481451172030731465281301849321582572771964793632216306356206494877\ 7533019487643627748800728003441023031118160987562123474436587980784755167914108\ 813647763330022548548246865498483620362992510847, -.651800205793257178168037139\ 4001976346422595089006623223994991240644385323477982201807731893708554006563405\ 0706939234327335255766222506717824982129294476854242970679111912382481008970552\ 0312473747850594266421274431766611583337990737993365102837344780102146398208854\ 3292632195128427411726897212832350646266989947984618031449623477943177472907762\ 6971208024818477362085816811616438564338593106669352413587964958226913668446952\ 4156521752749103384335319488206928070411096143679936672376107372902158215847187\ 58214201682, -1.389680625143840529155822777450186931436665760648481351143789649\ 4575543845992415283368876876808316018407525550087133620347544696158874400773662\ 5678634563800686807861152442730505877844634494808876904293465699268454841746445\ 4347661832678281135974276192157579334811159650935473617499598029695961809041253\ 4828930371487401446419859818302962409812722610800153019726596590190834256499966\ 7397267142426883055695661946013245644831510262585375056609981979778389787077770\ 79269014584667670481105570631119495282729979433158952, -.5481678845988407432124\ 5074745221596444694355647457258482383960459150363255178975492481308781672341141\ 8328589415975300049457732615371473457050114977907421469303907593704014931554270\ 0649305053049412737039034612651000332309395691763856595674373544068910919007883\ 4181036933883779491677247380348883505142573930462267797348023465855360234639813\ 7803296840079269400541873006891757026990503254057997071572310235445563448723536\ 8237582543585795999845905634603114525227456366656550056246822701795564852250106\ 5929568923924954e-1, -1.2016451169601891619422080038213340629668963433068202222\ 9682765738925812121662820540520764320004232596764713290107100327678193750530628\ 7438061602738592627730519674913381260618352137950707294964862300523357492692409\ 2869776374183304129659268247904118301592272165214711563829093720991192167133935\ 0732293892558128548029432203200092127290765269373500037547434469278469766928877\ 8304285787964371810972566790451914210569640357296189283415140401255135812355036\ 4717809519939953699053794609486433758600775286487879470907731, -.86802279656606\ 7618183608014362343204067712139875124944126646984310710408438575587684211411818\ 0793309351195604505926607214191000135461335252869904787906108738021369997055970\ 2157639171791026092844637631809961124617243520593393521250080953196922092776626\ 1892464266685189835200256236415439900151010391557501226892961638202829003403908\ 0761773716946778657861047805684269060364579650194381380823824453970612323716458\ 8282356218318868217567848402970736656027032985587077657560627732428518964156296\ 387968104188197098761742e-1, -.308509870115590346085092765352644391212725516351\ 2112654159544283103846409674813490753844412189616247146054131418773666288187704\ 7565050857823911304605235947616124356703127437298218321948926289591416422446719\ 6679476369789085502920543398459044693570444375600157101847177573543406874368479\ 3426114338288089391101561523047242039599266901490947285162735863074514551503369\ 0076523105555335541733441589845457610575417239846551098008866962137527970287368\ 474352729212434567878476671254047629059091010775451159837161551330088, -.606024\ 5684270095551718606336450018427363670516078955661417803153709622553947905995043\ 7020489416440878019585943074370795200364049963173442224465071265755054012651501\ 5175106482306474465862107041260022912261615131102899203167034751488106022028296\ 8528869420853889476157155844487277607999321343426583581169491564187108468469162\ 6424593257830502223467683295323516677466914412690736423620501632068541231154794\ 8642292277630521346050911233352006181941122964808024523093343557913370109510817\ 31695375905337539138136490694826, -1.081105322372115122854835048234953756356431\ 0712392919822006466269386478944643172772563287827646302384190641361687452222816\ 4733371115943196009857891006106442709002554469474028118580275414334783430381628\ 5639443462720139641111071105061854120345983078590755453013898707064244999325374\ 8709667132046521195531890306949455545552206774443514550493276870266754680683542\ 9910587306650369139570023411338799509837535059696178457087363723517029530640214\ 68662541925726608147076687821683306826329484369042786335545011045916020781, -.1\ 3717276938577239752281437939658185520084264033268876646345384085839441949683593\ 0230976083407330771766735702380429806399809751367387124167048471472253496016054\ 2437684976936010805168773235047565241045833127448577809821397438553737738349435\ 4475225681792090926636173142874232218579443338141514610449764392181239121300104\ 2210752913919091738995019513595563049884486768598866844236374074828519500676942\ 4591766832710915667985297846417324150306599588580598086534457960791092991382278\ 8612972380682794152547958230312214172, -.93157302493005868694972601019009708802\ 4756829068903318644346795123548686212902098657121598196314751942837453971894536\ 5692361152904677690240299309555698930052094232494584718291681011944891359252459\ 9405103266565264554001164985308023145676413879287441956751351934728692328422664\ 7949115123882303022842232388770878799147249055980080337384740795729855721563514\ 2319396006476882422588196348093159725409341285253027640570878761976301423662376\ 3860970100759697838944685716299896723672798632069303274304331214964772135832444 , -.228229712698700664549393358561864121437308816796335203946060457428184178598\ 7905773188139299036182251721414957704594025344663118550414163681943936982228835\ 6931465998009900145289250364990827329237333937847652549671941210362959824789128\ 9259584175407834648580876633974560257557846616505563179974942383829604727107114\ 4224870019954011969399721871948153938089210777211430002468335869324178333186390\ 9185208704791946223950012011373267010389938871269098669471712540606980504071642\ 032384304128596774763729417994032416530947, -.734373073454472607761165475056707\ 8261945777351992319886898603995364645101672763577442639810504269904117598467992\ 2635845463835091011505406207271091478929975399574644216926178001662553470884799\ 3379481480891642788326474700518501406378587316867796267508470779754126284994536\ 3909134482308956151332090789203278387450926830123267947908387815254198819024735\ 9029359965313318027124731105090914823285009923731689649574252940745178285728134\ 6031585537952005108762565376609535239952671970377018781151310221579245203418308\ 73787, -.4445187335067065571483984750683319103735651244015110204148911793882396\ 8793141728600040643311534111986534166279374081164055681338354759796819979290414\ 6036077103229242522971913215175368613970424661377491583193599865350790384785927\ 1403058474307084767569680354049635976995380144648334195291509751991365796871859\ 8146534067485308974352477431247361717388157802401283595995695029485205835217220\ 3461338774692704738063337370241498000315618819404281639839842172424993561111847\ 79734767914715496891416765420755846998952365090, .88256964215676957982926766023\ 5151628278175230906755467110438476119997893235133713010772003592199368022027613\ 6715812837348812432557590865881537721508081663899394609844806584474050753740888\ 5739279912338593339666825433741427463427058960486302031296296530802441173386393\ 9390969132655691389756321731062408716595200539355138934509977372940920737210690\ 2773655887163822800032314324071223044121385478869915895190015125559997914722881\ 3789714743643034160404720741759817291766271680914018906998217793543857354380553\ 383892517e-1, .5103756726497451195966065927271578732681392270858461355718392719\ 3273139504182179771141307500414274885965351148572986457825496706433932011877570\ 1099688346610991493834224188556085431984980418482135930289105050286139747212540\ 9525563424390376929551434683227962880451222127435658798326586053134073232821285\ 3469959329866070479761284851685028306342298478092809268180854763446886861099363\ 4491074299172970806311653093704783993597996349516066465695359240507638593943379\ 13884343289997028760080551596607524610599108693438198, .38244892379775884395506\ 8554978089862367710009241824645177975130147550399745588619903814673298694751223\ 2294163237737469681403009218652944465884888242047164227630568715209546420303010\ 7653534472499230148396697652376693767171553139572575533923812986619886245284539\ 4353200559266081970294364792928393795141814169391121386264556901490112283276533\ 4597894134341153344795138816000465477270027015008190835080952846829088637832647\ 8383896386561974965608133544942031813213522017309050923551313043045892972936140\ 017200373473669, .4980703596152318878274723503620898061150625326568153042997462\ 9407406321557566995812355070589537398192385672943001934612775337251591109454305\ 0074024012999730851446377594493271835804721950823221520618551680086498462052887\ 7943471228342602484704971655416765167782553767639446186166285701034136780872569\ 0388220912845456942452760782731815659470938892009897092927618567055291280971341\ 8653257842339599337802734689489738096287843007000400161579796393585177314389653\ 40710080572498681788853753577060532754715708249648523373], [.50818955478331446297774970417657572217428641569340987343993586967833713665681\ 2017278716073766199771527720772368455333196218406038005705506742811998783653619\ 5964359281310798684820621211923171515589152619860411235851099726031652075391808\ 6067217698117731127274773863280502255059588077112277268181122949846658806618157\ 8858384669008464395058776288292048625404899991145175710076168264535843874101880\ 9726618351176594122907204322011840039771770858365527770035535333672907884086489\ 3121756109501838469153804245721737295396, .304249774269071057967796953118609261\ 8709447973852943531728108985523555730310702930166652964442578461918651576671092\ 7454180928141411297177542036616390676227119989525987840650099290957285434828829\ 7583268320851114637331924104888521614021600627518501479099609822156799543763547\ 0409364394299827139686847226849890740305066991089920241715372390939615295921507\ 6996736072431037776072802098391665975578190631395910159305640019270259614217462\ 5735382921521995421685011047281483629015283533699733218593055956459577030983561\ 44, .21288727944635354220404220118551872617667697338001785855934905814116784585\ 8610752525994178444901763985470157688700955053789316974863333999709699673608404\ 9722611869832308169410451169404307387851708136260839908358876583494941831714493\ 1934078405876293511511205789761658986724187942943994114493099447131345102517184\ 0467258153533621191560854829859337683167191788764257681557000012749553304376392\ 6156169744104561283115153432511461652374653035585145546007798777180435261348103\ 5548607894370618397522728291033262009546512, .417028461152241656909294453501970\ 5537429966700412221914302805294670746731307028881031143042184162606713825604667\ 2912632106790704934128945248508971992467599834607153164838651284511603244003824\ 5996730982137167769351228640466103991179789192170690967615518425914396503216893\ 6455785059286728666995112350014369121199810394328910494131950725498781341786626\ 4561946159517813557080725910486300601298491612833321484030967627080742386299954\ 9298204512554639108729510221654550737530186655565773475080964052281594299391866\ 12003e-1, .49712644816096427667703522503522120551938284826972205153440158690342\ 1169622973323769477459393571561078354342690421911463691916729662889930181843513\ 8204091890185119380337031897455086796734799252374228159564539175556578739208505\ 9683790889701942695879254749072997438777088115155059876528283674366370168194098\ 2942050494122771090107909565210573565938793924539518351910086687369088221002752\ 8396171973516123460118675378583916055926641789422101933623912097913646978621943\ 5211493288759422735874209913804967785194549095638, .371879677777008654742801015\ 9898233224380955637361161459302613202842630808762297413595966927174238048727068\ 8168821420676889735969998488357646976236873071554320171276569703190759971199961\ 8259156236068441419875387631176392594387738598258376347444498281466917989289359\ 0549185964487737280942447132935281758840378924141841062897966758334130645684128\ 3299596051342865457593509579224557085326617065514493649612649752883172775775305\ 5169773546813719586468528720587786167518153289068079382373834781962231219455317\ 54444856513, .15169384000359278032872631078204257983075900655152157281819943532\ 3502901072731770616388976235837173220456667901857610012220948242314956275426860\ 2506296307379477262743013542560391918269527231981733988657487773459857258661986\ 1498611616883990139034577341519515334354520001463448352856819741845608829237009\ 4754610994711948064349346245278775512695534249293360721295304528616541534639200\ 9322838978968009704989313313220963521209599380245644833850614771777634365057781\ 0546640574657298774310785991821894808539048037108552, .500625260470926921138090\ 6431223150211288069322201957131301415176389432420381273393597528584775149247447\ 0358577056347523310298698259400695771247915489099634303515605259557951087166745\ 8943498278929408197313738631157145674811273670351608569065269791944078196147132\ 5737648324439051613129470865157447295584536819771833744715848347168464956681589\ 1216809460527080152898691746359125759989005373328128701054699477013312688682647\ 3845300728917543180019706915412597441314807815919099576029820248753561629543112\ 81462102929735e-1, .48980934414228709694120706840475612181899338926553564326715\ 9519174878470530373510408164920681162483102152949219950033779864311450313184800\ 1427031271156783821653430672068631337916157700597916877083038765468820070636736\ 5775931428542995909101349706502907840497877802871795913779874232142917220370140\ 9905745993597767290733445966221923125633053118464611736965913168485016856656799\ 0424409502842486558720533556042627242944988461682151124750196706281311162168464\ 7347758191452065533735085055533409258103069069777744514966, .419046241716735676\ 7958721950022016891686980563663148294193966770468054797474675989817819424899721\ 6936124173992363724542454702160210660450138245420593099714112607944794229275762\ 0688757506531237036141383533801694979548995021495661567706542182283374656376413\ 0427230639851849589181788527050185435233267965781056748946189910667248318695530\ 1067350191411716223583382522707363459227679835630339021096727655297379298455215\ 5558566181623468690538345502718130086172534679960823772501765949291938982720633\ 61841431488094773492, .28863322073268585877316239517777963578285677940229030978\ 9472311986474369797489070091701889891976827328083489764708459381304269153227949\ 7816505993527410746316103342326870518747132460873983162099633437910174173892269\ 8590974662262825567904904792967330518375855557663336781667060659924000792368364\ 6866445136391231134180303311329690127569056807809646909006885769210396855626880\ 9865012373009096455591823774126468138739928153375416902237282602697606569532417\ 5594074116711528189152074237441373138402103092336678496270484, .227754537210526\ 2106483736467747316258555776135261872879899664380919546187933254367886107780581\ 4948321157698179055686044185722993250386453672055345005565907944604491797871172\ 0112171534150080636476343729978575175221154121300152165072579528455429117413706\ 8807767491144061325582420745571556303312321498328043555433244457504968922864691\ 0939855025564704485989785240020761231075249583689166679961289674764552003541928\ 1531097108935852679975564320956064718867195541673953872800391682622722393052343\ 78600063273690134259505, .11179839487747733743125953503747185174520404827337887\ 6776858647608316549929233873588948509953464596833124967904615180194241299330824\ 0907509077569356832374339102416569348790111737346508957697456094864367884620859\ 5999708733310329672680985906596071795054120053125790941728504753483101598566984\ 4962004276307633620640608321779890033195424951046446829521516463034595915012976\ 5201605883740774147446985918394432227153141701916486905827745227976681415592959\ 3192281230457972986138126226122133329806985722440788645684251269, .556413335507\ 2170560441969043652327417046449027636266412432587441654135510987803878977056013\ 6417545028915514292511039262307503094191287642688140906460609873168813033243673\ 5426218914413003812789159428016283909627897570095001696886121179527232143773437\ 1970622261946008195927047516557260536443120506195998970332082160651279350589966\ 0203922872967685598045713333871869194202534679547653706493505024056416863200787\ 8118431232959676415925843397663192950425345181553870104847111558370990309767136\ 95204994484365774637006042e-1, .48072732786026680029964708444682620682819857342\ 7311788829881935406488289816281804057250209575102377304529746466183203871146282\ 4187516092271884049711052053274732698733817910587490038666406362500287454258766\ 0281468660461023337147293765025399160819498547007483829654775986218797996921373\ 0392677025975793651313639412052730133149052069799552409064161305124902910851703\ 9182634727126885399851294448166273886469385104448494025676665500919155480212434\ 0983624334665514420164186282719928915302765678548760369504736564111833, .328009\ 1727492498420683313327572225525283505979043893485998101216595537155370434738972\ 6217479299762164558886122977260196226493892008472178094985581724722962128519072\ 4464932989491214709537457794261834305384873074139214167286883364981408588502582\ 0896703510553868649310566201731719446414663233939383922964501071368389914860568\ 1379157786566404614906576344690340600584855872969465754148269556601026261163905\ 0886993776933319357253066149882576053275135152031817464240456913571758085299811\ 52113905609289209882413815998059, .19081526701982352448108906072427459297977479\ 7731690591332382576208496991088769963455073125023156972150365470187429325665390\ 7259507442576982478805185519666085728780276531039453603934692498180593749997472\ 0650833729861015339681610968614141941908655075595396494069950416378110958166917\ 9581867259840991897180400445280577186708621547668395657805808700740471564174560\ 4011223620003560722086863580796164329068902339469252215358965193191343730976779\ 2057217912148384999025484872945196094113755476503319080111115967096616235, .626\ 2214981123482544424427602970150849808379778680562206858105629092373528874651187\ 2684220362961772151726822153079658434316857551937649283038455515098011936502830\ 5623892870697500153175149261925083997928235145497694942131986008582815633913638\ 6831920158597447482386230049875182351022534960826576665782705187503795850373128\ 9263344758516016654801745357622535330641546914723922424414889034156583031782208\ 7432519764951544856881339300961207785688941316970417705309208282437102802658090\ 28132764760486584154654635510441636e-1, .45389747767101492229635067834373795511\ 6444840166567171291189552742677577343322582155861894886680381950711820678639355\ 2074767875169227818551238444227233013611582467881672289924618850868701388644231\ 7151759324838541855468825395709766918812586905671792212756408118406214140495289\ 7042738382282605471663748720138039785216026229746705176707992032666767861827051\ 0892532673588536616488434449541951812448847282997108043891226418520018572002687\ 3209622120114649677921425749108860898983298259812481584037541088912314656340155 , .8362302027703587460984770925743880597625366183073156779868887464391881037876\ 3998148710993711826319082928809905463308850462904090310834896242890352334354792\ 2050754897872233457804775826778695175616748141118239629722532397337747261297101\ 7160852693130263952137414586098698527465081901456029487431037492732982580129372\ 1054368797562406951433305436319992485684244779779102821824956546070188005615122\ 5728949461749353888570681913733682571584523040539292523171545610809284192804312\ 02569644170049880058671231705899737921412e-1, .43286480262063982116562078184112\ 3160037215538106505253249789572868050182479429918656431527029305947135252974035\ 6419405169543660072613252165329404279842789063625307358526403552942143208862245\ 3347974681283760549293184916191627046603383772257909904730770985397164065742508\ 2311375540747444969909502843238008503847500205068954697441222315317313409432237\ 7563972020652740425962397155605254501062433670188657425899107572714289928194921\ 6900619175054120951736792586673203219431024469497375296303056568571118787203265\ 338217, .3137040256049221309664602060932185007360697733182308088380561021701463\ 9534118939338489156220047502181010527723706068880304355453171519506514439028000\ 0892778111087419359487908395018241787556127521248051849554757997975773565533168\ 9691824341403726444657068287971179304327577936785219403990967547121342610210621\ 9486245799140460891403575722440629678145612530173051739807740208604705853164511\ 9053637970710892706021800220192414328664231646269521464891203301002482188729355\ 52764004570083593316271664667027240383810679488, .20402675573357059628126876130\ 9581218283061186502802534672174639565840478886273818978384626329484313042203750\ 5871462916819397942533755363853605737203739536263629482076331915881468541705313\ 1513373319912926429230092765546661763596453962861214569637602004620651534836628\ 9070678786752916298768788686745665004986437966598600853159512953016495988645994\ 0116326256827240490380850662735304747900898324760886518064805771526028499786299\ 6029005833965313103363558506386580280431318857735057417104671835400189487206389\ 712562395, .1005008340281251157683029815981292634650901865317088925816270069880\ 3470557633204455837756755203884689531755774389598608642106349193237433889700592\ 0930344959903618822248356415034197617039704638187171033790629806307167167480009\ 9642740707403846400481559981312560978124017898885846352745468217194855023554105\ 0900122538237887208835240941616601211995516607704744537016320732081251522654308\ 3472894155772517533040060576399410718059998920523139100575032853509609232026149\ 09504118899488085179060973377059164372960223216748, .40199246158092220525210490\ 5699607050515398469859297270481289455524679947156142968975696012806413306075887\ 7431565986511044812213576057714376405752377036603654163528819417647578386119557\ 4259087160542776843559709472490770821573959418063462945851542077347635791165804\ 5680675078291692735808011320136280901308781895438269019146533280846231159757180\ 2910747496952936542742908336940093027859974668961897143356588724871781647601398\ 8840492445420064855924784821122919069899193960612953089621227595799142628667741\ 337247147601, .1259791089454679259077071756314495044065532094148493424107896798\ 0523634693606980424941437559576170797680909413020518969298095114509165126510159\ 4567014668148360435939733118841235468008644084827927429142602677873174492285052\ 6065287267183886633228581105621727438569422715153499581605693379031336450055129\ 7812666003779232831024476200640222527877583991983747150706850729853319503556252\ 1750707761026001300744703956505419647590562174684912999904684478783082675346255\ 08517678555951127578594668300949251090760052809766775, .35219798041516228987221\ 5594063815616215287536344232582156722231316415108730067377399114374442513606982\ 1915550225562138512148969340170493815306860011753411300105326360958557371977529\ 3737891525646473212307719021446453927384112717701998605396006561585141417408471\ 8377380096494517840559369232857660430901010939976266295956853653151802839166454\ 1833370488467207937107048680530298111667472559287613617534077150495133964312830\ 7551889483306849913130728019081311702520814734048282649112841091585524270448585\ 226915790071996, .1689922230584792334496878171890807032094366545928099519383810\ 6693311965254237078174450710556000826740346134024973036301883861682821539877901\ 4960005869265802223876000539982673293176665098564375210035120049897965986819023\ 5531241118587897823277776598738751439071032284385645475639298083326661410196783\ 6091664349276016606849166761964953877162205554369167285386910078615382398054961\ 7746217904857852901520952541280319153969989429775862407274601550932820437405554\ 39340206815883379024826905732119664155038099644434675058, .25789430539089631636\ 2479659523209634187743149640794572730945190870565863389439686725362283015828481\ 5105776389936462871485394359292979648247349420146962693509169778146989639110740\ 0830696094154538084267866284323038046698724066499433700734845701239890709248465\ 7804267680189913271562744232104732437617781818620752677971043674563301716149432\ 3959946757085679594685134675528564377026468497652867386691780394663852875638906\ 4522668304734438451666525689303288532774235983773452061228710654916248146913807\ 293981695466395222, .5651591039924850272076960276098633073288996216210920094802\ 9448947925564096437113409266499776681441006467788605552630267685763768491717981\ 2041131208121026800269393282976405349784432001810070603449166180011090742647500\ 5202217652768067393953214523580764185552864263863356945490086085250847809664924\ 5186461937460814440257590600781760591369796280540225648482120978185706116912010\ 4640590331007709383961848022256652540799883190225491662945792334196333799183815\ 67314745036762070096863213519437946063200125040950902887011, 1.5906368546373290\ 6338225442499966624795447815949553664713228798460854503753536118511612214759422\ 8925237756413504280564822133397889345672291361645082407371777654132183763333492\ 1725227835116047303290496931214146795962631816177968102921455127315064858912154\ 0440111945494905902133506105487095941983761531489405950861022421929337649632170\ 3061493190139245211762532775594899172034356302833057665619015387791675057921277\ 1691801358092307971120647498090374117561462465963240267231190418295679319735496\ 902785321958949348197, .9816664285779075856520109078674034841349457649523762049\ 0196895851925547381313362532378634799250271812276696994352826480560368421655743\ 5842259067761757871248946663891448476134131896696266635736337211841488506957188\ 4235148499736142629234475988250944828458743644482655901537786741321009810286761\ 7169287259392745479475936755489434947170917646231028894389207261893962277376287\ 2857526945841260876507157324068504556453121119421530987892240376268189049249096\ 18261308134732655747157455723376826542682647250576516179395968, 2.5167162452886\ 9844152819174812237767238894730339694921899453955368621236219984898054786113286\ 2365487985430963394853275144389779974386803030551367846867207309204353783476685\ 0107277309570952811649702000233303932592586843992778535656938613510512689669963\ 1416735992046962956481886845649629223116016631778821632003837199967885306710745\ 6549809649283402792334452155748880378136077219023965473807075031761184850825312\ 1063525381279097153117656052649561864600357643292907931826566755364370853947870\ 735489471781192290007561], [.41184871010971991037902225568822295464699674280772480586900844937950473237034\ 0308187606062072885229682872052543172526379844750154825447268691650274970069447\ 6101872984982704574086897042523845509980897657391635817185069554194622247021526\ 8014839582395373730985292221275006461247111620740613126876113464748241568224419\ 5291421371998510588290815508219547512830463283230629841877297515173514930936218\ 6274945777513263849134365003046512973773084277604821118490129130139080909809867\ 1720560341673854279755111283015815818608, .279435359065340455187983119453766803\ 3714609711664453599155539354281548917402670044222308323576988872023125385059585\ 3022273272265963747596505136651698411686258065023518455384499272854938544530074\ 2601732709971396239333474409548981519160605942352015029446381066857661861896695\ 1352333106619642949997197062438682574694499395108927312996541180058949161196836\ 8281566706716469244582911307496297224915661313702246285136299490266943955321084\ 1829036888029907008203143927880725862978303480409026181480511944905107930737099\ 96, .20384479749479670076712434491419402799486105901250099827587625300644678952\ 4023907880290352167853144219186302475552726031498032519337553910488618172406583\ 8064128653567692261419564361008299852958016969604518137421746808047895366603339\ 1899333637514548610836551159095031800058604819627677245169441531556377327225463\ 6957146797134557975114016551487050912412059640665544784945170030735584420750175\ 2295615628911574234780175986745346272378207585692011567100443275956005640001333\ 8236235307931352258394818998142836874929936, .416305081492329730335696552051897\ 4635795471850716225669183890038504659666674303468299064277951688448384511890733\ 6795792041941906596776987339162862051256094871838778419566529295934636802479667\ 0808636573277267702488516818494920836744272026796385269266666970477343110810445\ 3024706568328447443424065604030975100681966059482782112532594976341237451869154\ 5906290099614179703325128673866050945761807448143501078779973722911209710365461\ 6292526077479650239039774647538228282853379813069032977372337489053647608901616\ 31767e-1, .40594954607880567460492234553386175620430423463227678001202102538943\ 4694468683237492594717938052059085161441363573429748018430022202216968604006812\ 8081231790336163159820140794098601162427452990727911472005566884898575018310672\ 8840507365039152143959756972902900848174829740189823153028033971592741255964910\ 5733369490802465699527481268359969910538825681170872138278436928116373347097690\ 2471669579999846681707945447561985072020178015149150534631830582433854048213128\ 0455268955202279575397093390557603592820719652039, .328995741540058947848792096\ 9653696140465028237423016038758987812726535523405598336158268898173891238580292\ 0003880769542084159448236471552180093563323714981281185110496478633650364124468\ 3967511745060499857289823788139693614017853440313925367617857577220739922044185\ 3677708910076443707266585255059351240406243947946713992359103871049079370472256\ 9602148546106507470707913382850156263957243453259052763522607534553735518057264\ 4194337267207245246861173454820754258223945837875649394163038325867770229419538\ 16533388476, .14831881627310400774140879018696864006144933249194553170722539832\ 4018306156679201063666763263205295430836851642071320757425236781420598586932918\ 9300081972226350403563725889886657216589511892468021361093063600702214928408608\ 7474752659202194577204775018593150565455650809110304439321136319815239536957063\ 5122701687574228068422788797199408307418969360801672073926923535696328507532207\ 8054002390096784196208892941160642120230959853344863422130174538821892209455132\ 8034058568599861238698562281781424167357913474608444, .499375260362419975563365\ 5243780648405856135414156651596546797279376386887201406988549473163999237487816\ 7565313838781698384361126943443610775269132436260744702286356638617483364397956\ 7810827240597789669205448606490038415002898498018580261909537074269249628900357\ 6052056247404837018047392198435440295645287553210004319945343659100075942458242\ 0122921866047992470490241748840040580976834664908555404328993230123400969925564\ 1201407008306581000576156522584443508059653437560055238661308480347607533632733\ 37110067891317e-1, .40197026963565605291929252033205429864572303755504914328643\ 9709348722758315699395061386662893862864023468854229146940898008415083394376347\ 0579544688039873938029039963652709716006188751169012742197615309913909347601456\ 0113663620503086286068383434101260089894749724835876639077639787689804299603965\ 9176477556878505183034564984224814397475927569225198163529143911089332122409295\ 2688296370895737208160644332908350131908735971099581479360462661086661725667969\ 0067389030902676645924308625844505272934976660031514189099, .360214114947573184\ 3734655482788551444287810249472358156558983483570865278705746060611913153295299\ 0383152552643961651987594036463256797559408220097495104272365116202339688242055\ 9438148944402973167073451613291871403809223096439271068037656608791896833331362\ 0452203958367476460173128332892428588555943197731613239923138695828410916646447\ 7554417020414513025586044406369773107391754581578876002895575805171427731675248\ 4444506201518360283257922148122535108326547146912361115259464521212442886478276\ 92677343813540555894, .26719797785547874615296214753876992880346151718929809966\ 5499377827266350845730619092790325977318871809932657267949457498468825532433690\ 3290922572717735626574930563787689605638019494885690963008118008526964328495892\ 2788383200247430570217052098920946803849012822285936049405044075003585702233725\ 6948177279231251181098398244276074228194618737252059910498059926089987722054065\ 2208188193122933008763799483129243536628760878900956669495602048997283940802411\ 8847347878165014324925653107530002689028344002771012252855058, .216780228619982\ 6752973069655303579821515009206347641707245340063759285516694588328625019420486\ 7392149049719410839644084400242008626553450715981620357783083385596454498625681\ 8462619754241729726181702426603993659496768481286794466480496666192644228510053\ 5357005603062943896963713872783278342904783279117997096402750634281512354602537\ 6678405507131775200157670670671945167145509884771119967532049409723191977930134\ 2058729859273325232706000771820630272069540705011026768283822332122211420538732\ 73601365591549616529548, .11042664986117210588315396612371358945413586158040813\ 5992408511807139784292474901502719836378888220380695430807615527837185848447194\ 9487123868271242434955124176061851256374647291522995068589950491838330525177447\ 5168617842386486286662042220624877269762177989355741492554250248190828650289815\ 0774472254703280391220962145261983597514789419293951937962574464090025962945378\ 1600062295499067776187769521231676387583248980024723713230097021155060902297043\ 5013398950518142493712839955338175159992119418419157721188923393, .554698657639\ 7524202349941499391498843953114350265294630028495925307766579585051094259384716\ 1139597000803638525282051946619089722642270445181198995103940298644202878707409\ 5003691454684146002708417525747800343828540983694485334545947687319549052775314\ 3717587948356238606470047753811383627150082963754205042205754429673770388327936\ 5925666951727867695044555426730794393039644156372793812892150467977609155336795\ 8443867546299565990837743802916678365194246724921186931675639412612488308411807\ 31517235303579549624153461e-1, .39694448065080562421384329904739164719693548466\ 4909750507430990142670733271155619883786902085377581878473627264217617819674671\ 4894489709830679029590059321353900821968373446626874718497352063699627378826215\ 8863635998393056656240317506731464560372330957407840568166276935730590563888658\ 5509610880488786122782689719774407395900101984396566656562578124996158624211375\ 3844813922134747143051141494173762027705441358710672843685077236087116812203808\ 2088651700364528887739670424967541906530133592802691450810315740072145, .297487\ 5523613260175785367046703310895813221425216614878745589253885612270622589045979\ 6924518192260396049701709817527898192165229706152455205914846138945610835671354\ 8586208756549058621502336775689017662103703115450304988593909474288310652455274\ 8995264230280315599711597699140418806062585216718358317909851640192574746831650\ 9390471771846234812325503175796272226730836225118630925540215279569481276899908\ 8101522149160428598555380788024888326837734873164528583557368599649241533754390\ 91589987455838060877445948221443, .18422335698889761503349402641924742447996507\ 4785463412269819524292291712351026719229590181435185300726094352714645554215312\ 1299420452145238269972969468055690194349195041828267943195063923580576760897199\ 2946446023561876017460228401433831711286463211144641856893482239786179307660202\ 4182452709666251970553759245594852426831874389272338466461233983943868751418148\ 3503554650545549318905369459437325029373818620109495219073276392806442113013810\ 2135970475338369315649941824973855394347083046828174819301765065057283974, .623\ 7800913449468109423113558793611769262708341807678482572430262853275655786721783\ 9179653813516336550292945039317681143639194199824562761940583150469791273401791\ 3450998305749855366854853640571474712638744099407156223594157940365320872922267\ 8963815093918826672351088118816179619667326118277605924991520429196441452394849\ 2503118592552628491671077239756873405015350320182515163981548183752110641226050\ 0458006345096514922212620317609386311180806654057963824144028979122953061101586\ 42467179183949174152995301635047878e-1, .38152923089001863002671704442198029412\ 6492571455516402249257428255454891419605274848621800932027539386077518590946874\ 3138629586169523186048478109620564451583274143093051724674107476995048913786449\ 0999699679605113571302713980373913179286558418067011346328333581190196426126568\ 9708876328772387650013294126766080172928854795823903096479227833630612000738872\ 4327117442703976793173668877884499979928207813576070840426939317261168777080503\ 5823269875614508875486780944954884538262586819004431705569544766067723767184094 , .8304431618571874081588730646068608405401006972304093586655622016822313253893\ 5966172770044149576686024551134864076548441975208611855836690509916685060170331\ 4802929834822318038828432642842559964835483642867749279613550958595170117646823\ 8891965425060815615378626293640392734054748698549256906676312525252118164773968\ 7200093914794660661923893930169213577009770084544301402577327427823965987076732\ 2184372547891840835073496423060173683262741485652447458699796334227829326467586\ 58968289154327610917649268511998412106476e-1, .36884204609416999420525263094403\ 8049470225370653371842682830495413241343354982080406664504909835851590352786248\ 9068287108553387265005903880092234642617382202778714358400857261810887225143590\ 4089376854887253398526569605203362603354569579563510739752081728514954706622873\ 9440378859775634434180634396558780162344573872928086403597997184526966049369468\ 9062039647610981570588735122727719004561079563913166980911139889478441648725779\ 6156826812751171116969602135455315872099406400283558456731132125856648784027425\ 097232, .2867009880639157397457798538343480230707317535527079372699115664383521\ 4016338760469675443352416750495033268384512369430732290502925589738549059620407\ 6100280817927379250763276902324395528451854738209342844595782004131768819856145\ 3975809894135835496214351899806122790931912210759690494558399850952523025058829\ 9233024217587606243951903512104314061597415768255135213227405536459887805436719\ 9931947719120196880053251412806633161272135708053458822387502548333048754993453\ 15823749037815510182884549984127219859866985164, .19602657795531874410691745970\ 9828751054639407683967722331679201364708312216753373716852378958059731546049730\ 3391478653309735003504760672833008070223821938547850362972996272633377264372135\ 6304601023514051518491481319824421332909543075970206025961624533203010748575773\ 3158027793389850528362585992948362855166850861657055244099857505811990522802167\ 3662060506863466696252790437892318846546649186366361976312687536419548562996333\ 1188554719025302188298374449149485167752707992881020617703720490845990932879805\ 446138566, .9950083263923599539792276932788415982130678537707683809997611690571\ 6120497739780219339822226159700334534374549760887082681410731838044013585341355\ 0263213344746549022757553937227625975317834685770075722557625884055821542803263\ 3569152391361059719729284010743675986189650139203989767080799975482758581219609\ 5629275417865203683756345809415941799738314184062826115506860744005482706549034\ 1351248701851351467450348886321479031612196163133357572450874670068056721329919\ 72355353755338529798607310594565089140072458618392e-1, .34924360217486219252328\ 1016426251335476152866568549445571380016577367330332406940865922761230050954132\ 8561000587375713122980493762339838721624372819482161178639545905791663621013445\ 0037146637661666865067529431478582070165191532799633573005792953636626810319323\ 3815051040456290159889198687276224511188198735736245228516175224517512517998608\ 7893894452866960146163096548815824403228908278624039532329520834970670316259067\ 3358008545197986653805077964131084801665871086724357269436035246627720636967316\ 168437593756551, .1240259773227269227315749766638173991856304009911350086436206\ 7159375472971530891192267885849695469028467663125305056765989968848425031244399\ 0356614489517582366416802660616802249703030654061680141339871272651441006331528\ 0560215562919968786673844193598164574835770614535805935279789246849698681052914\ 2251883520892776520175564132900536127668470329690042571803587844415670057343632\ 9215475746713848009810137098680471574009008803535987418065216120453944908039134\ 03972012135846479969683264329640965883093943879316049870, .31515459258952443174\ 6960922777867519034496952566210371551128292831606684168157228915451959537624042\ 3811029354703760747264483702557732609962100419015349534315767221706709509155261\ 3554874860120187917276591291683575790195585484201725783085289304606746685057413\ 0271446405593185732485599043178414919497160397277281654961618530883863028757897\ 9384771200574153972438524440540629517835083739655941442096369724713731572020937\ 1938752101612843294688586894058833071106239590130371447438613383292244776391637\ 265989715506840875, .1643625438142707353637986982858223411212994344020802916028\ 2079985575718515517847811624886925839712632591889408009275355524330629657709794\ 0324055654991836084353015662361067158677891758527892838414595174194927191816922\ 1422613679442608782544967987060533262612057421495943375778919821493121783415454\ 7899027839439844253549696196093867771526245382213983434685133826103919340096773\ 6010263973775275980449747811349428199361240951302513677087355982288206175751005\ 24472444652112368414977060311850105848880826523907486831880, .24226845767487388\ 6383954576141531640800628654437959753506925305893359846884415001326989593873969\ 7916578033440054147562024720172278888349705186454800574116456037932819353668842\ 9837683902238722805946005892470487466848914555257296635133187911528441608287317\ 5983380917044195789046356490158266097053450699953777033157360461456886474214777\ 4278819885284400540004169905729311131592959562420172780677598641908427628981168\ 0738129035184069582006693373271809790911064316034152393999556439816726558643757\ 683106427436440854700, .4400505857449335159596822037189149131273723019927652511\ 3675817178013822247801554793079659238119825416260641364791998370604891170846723\ 1602807674502243279818340473533573708213131284260839112113233616413446407818538\ 4415280484753267482993683173482977170169722420083977889847208425873705757084398\ 4229307707409552336206018536041577299249322975774794615057779363188898886331855\ 9886836382371746251122082787871415925163087535893778550908030120322681478096011\ 85942217141855711786602410725017032846720579851602460451016583, .57672480775687\ 3387202448242269137086920302689719675440121139020764087116289612184948399543306\ 3402922588067799768801031278222095223050536923391820326324406333371159984594979\ 9359125051012533121529648717781556965046274942642149116769790977823701066741456\ 6031462468415822802666414348413284780373148974566145020363077156193742985837641\ 0047545429692132537545421305340344877505954847761134453982834228293541831761631\ 6425477134124562155980775626981682643235491460436875403896328824987456093327396\ 706320623040761121235395, .5579365079100996419901212131560893995294501319279998\ 0955055951939931292053042856241511574004455149476445261237048956521518538633693\ 3998866476348741566336165704636521643332331657121007133663264718491755531767710\ 4518583514599364685612482466835384213695745992953336821736927855170675248386976\ 2372363228322826126695522272309820995125733202673591481060140258778957337397134\ 4264199392797312120049026975310573158704911498846883380617390616077337995719103\ 61052346427884726873695189891610794467603846581710950867825078940, .49709410246\ 4274038010816276264422242521234969519006818879872428918724175767054746101681708\ 0882081849499503676812873444316634386011157295421524073438045004818590071154137\ 6308073801416294731146023801936783497484518118717407940773940769169540973458864\ 2748931012495822943117909718024270682469060599197406159844700391230218789016513\ 8706569158034483141053400821045506719179239373626256033110967086657693856501662\ 8707187158926848533099720161789488151780592378421503455124234271844415689299697\ 631594781161982524719958055], [.69556521036479159360888918762873976776798142161312877982176421865707516165052\ 9948135889279702749915759214274505278860593544761885988555616837864841619199951\ 2121991434390404402699992153939702192812560103347733644745139697159669315987841\ 5262230925940065480314912579015345423463597047897152998854237225051782638087985\ 4482252482985529348416496011331867758077456966344290999573204474963134728611503\ 9694670636706564130084206492252764613875085830775611665103348098647487610145845\ 8818435118335357251362534639614518745957, 1.35338761762764490858353169459655257\ 4058738827162832373952851403952022170821444856525313143598076685772336035686320\ 9814859363275345156971991548614321616020386286577485327873860647198753666770957\ 4197074721911626062960808046348639014352317537527512170609952309613652101098368\ 1740926842940284365411899504772345419042845028942736093495729895681163384512748\ 6742655676329390692853836937729795961326866180508723316098225396325184635099889\ 4401310976026862810042835338643963686540369151202588903822226293382913543235159\ 84, 2.0790706869233691781439125987850259731046208204818804972005779134961763203\ 0108750291578677105728171959724189487613327062076437451460524351491120032764444\ 9426042507712866190212605463426034818969444558658393995183542544689452823027068\ 4472476569213078946411703850524500757968518584058813030272524162854167104001290\ 8764482912168005185201205448905496238844765328270722098084808341359472796560640\ 7650209233524069858677572261178281667967668809016212214043371630979610985413644\ 5445861113018505694607905078276705971773614, 11.8706590842100327539159022020655\ 6105987572748857342859685508391828723593784981437815946031344645860407054833824\ 3995205387116782142203969396805808802549063566003852251506092031582616103245784\ 9866720211514964401531862784588400306375238070204093880686972809264418916382240\ 9471442126642002902550155519421620983079195312729473564985035650809216447285003\ 0583650850643223902097188867421344368986650401556673562638644684889137768543724\ 1652208353551209726648351497046974869101226512895932257822548481322421834475215\ 92552, .71653357877601907478645253111159328630206172475381988378273582438311364\ 5797242912275356429423227398068672089532113339303934439906404018245765885980539\ 6697347194251570783334694361779577625752996625839546413681321551044134321842234\ 5656639436233652652180982324973828274739665280242461107766690048218098971292830\ 7242333600584715985543510317514677391378145906195111834262912902138851489265513\ 9220396609945543673930844156296652107099663453013140355662024976510681035611333\ 9178323002625611810421938676764560379196465473, 1.05028353531291795143003082963\ 3280748787490535393142015067747481938110447046235996831567915143554841245877902\ 7699448191246771718865413991791786770215716586334340425020946266974806244837271\ 1892513808618414931867783758062192329277784802472710301244112889613237789816109\ 2392984590498805917453665683340632979678768559346307130591007242649762642781986\ 6820855013859730967462675828991502758822731594183805834319926243099683319592783\ 8387122661324806485452025453370144686166928750310126900289211164832320222800230\ 34906932, 3.0559920334573249788505197526059437029911485386257743249218195899987\ 3928835318959959243806779905771141962284167905716317565382877168174537193510084\ 7370838876953962925295487312318739935824960218060945926274227334172590338883677\ 8049895380332366817208443633762219462695793355721222053047367313368759779904076\ 5241436893734312577067088866833786220586224938710498381447338506919012915444975\ 3358321136722195316845322642321170790532799912828529207978710718940653671131373\ 6618478807929045947302344716993996238570634963945, 9.85384478087060613484854659\ 6678817151324487697653989365673193593127769302591086172688752055274292176649235\ 6822324709585832601956524473062178855169353228070961985010933834195615302840061\ 1893616205535185809328223839690028946261104186822236244170254356286248790225721\ 8744459653087024319127669897794336959881045501770482432231235318182840071047088\ 4486325811946566153657485350066725254438216607167373466450670489402618444750353\ 3946177407740768344451197905907560023569510427784326436639920354062308554067990\ 61111029343, .73097687467697671012578960179049940676181266854071803974499772364\ 1943388758823402075670526118011972409050793765876389833965589036644077647765979\ 6777420207344911709133998864579568267022431393469205077467202680178523862357412\ 2319573808795989162381005609158361680134523058852706347322769668728276164917067\ 5065458390457280642308241692741111488874152939320738085053180783088860338858740\ 5053620731106525891834703193896424941154754486162805190581859188367084371187296\ 0364603768090479851219174278342872537348998748067328, .899364593254974839202426\ 0064734329871309108393495760927319491395803556304549137041525648319292111980738\ 6056537001775264722355662949293407412541413159709547420425717454208828702341274\ 6303723025344084780909507410059204518025877605843681215153111582948594279736791\ 1734054719857845092712866728826823596244770602975375819213779764419341879833265\ 8774046377962349745738216654471485126378705803928957905092659562675153328005223\ 6375497418580395844353720732313260565690387757578385970930895858121005610573395\ 36644854601535, 1.4443673073580645397514674069952095437819535527742984747378647\ 1939817466866047473878425853319280292025724053394060104037077785582176938971285\ 8436976936507847731283546179239866472655161598703410945406742673962039915627998\ 7613688882405070676888561952061638920650076990185423641816585673007309284066642\ 9498133502127725941356638445124947630513117355759512048522374709239517383252299\ 7005958036385721239728770652113597577732518008163852792233456759860722342054426\ 8767031289411979035174393925260298516989511981010661779, 1.92085758151895599918\ 9439883987796959187824905480064105395265312190790958873798223474554829758349614\ 5661949534018924850394718665963463852381108596398018160360639228998080329309065\ 2075322629707557771853199686613547171755287983577405713680863940330441171145585\ 3984176603502459364517517694966086797014217120870517978229587323551114547426996\ 9938126717144772708537023867266599970898221768798801167122048839430139096814517\ 9615646782990415465061693158085674190703844841460946873938289630645240929455054\ 80091591219349349, 4.2624703545859249993150901618081208433395683654539926396845\ 9283269319157096213272494029972554274106918442577069512956220230685013289088054\ 6449492786314678608479628848569249383659575059942682117831293152612271679165698\ 9716131686467831732583957015208998830101484130715420724656553346396344543841371\ 6451575130287250944063646558124122653562629546699788470028252778256667750189087\ 5565431587143271680994230531058017603446224648035331466489061042124114884814978\ 4896998512723891471784472724274856994265069228957569611444, 8.84340789161928337\ 2215041249995892099848191127919383364987378197025498291613853246049008722122457\ 7003713008420890736055733120206322747596059834345605039074559557762937336261458\ 6887063088435973623359526284535921255928890284150333582991036620031180451043310\ 8908635115565997343582959581257647264037013107184027953502679988701456079016547\ 1270167959651705318456495037845067438245274336189096223646633605925047682540123\ 6429179570191267395363534838400231335053239542603640201260881936877383838719216\ 88491728848507180601, .74957752103115352385464449537324275015467547019369643064\ 2126656062904038715833253783946691640408001942966123275326510139349364228134780\ 5777610158592890065737132858649631669299845391543090795363995541020078165856712\ 1898003626265736650054726299372925916228180811040648167675850000693171749445610\ 7940832973799221335135014741372079780290637887550360649117146415869062851528910\ 8283618290750709292420577200546158769629797567128345553189127669162332760351460\ 9883822921573751102493967054877859344925448460212681731527713, 1.23206651075391\ 0634796513650115731948172009299312377841890414910575865873719895771089717994153\ 1766341897913992455937415298930913264985020600930531926926625659172742311526345\ 3315049994918900517933245164829403478642083919480415803299684828091223955457663\ 8766379054942081474600834486503012752123730702817542794094785397507907560423034\ 1752985995643152426062769216350663680193994681601652065281487454381539198678403\ 1432677452357695765560491901385488800202842187782647998168932039844296226323227\ 64222491726524323621361, 2.3594857971652553349483098072082283629073913701631266\ 9453427148855061397413660315306485461722830094140815254964031256657217853377321\ 3575822522153426624806967390637926647098670887717782768474199139399870839384248\ 9060151325030765264681714485026874622547169980546273989646687199524092446750334\ 7976686360410620803957919496200761890302940334418143057736232272087891741158961\ 0764925364607472901173591372427691812125681645496382003184851928424249844298150\ 3207551974766154969880564185244236006358690550338044311105988569, 7.83111829911\ 5751163464338156997980076834856197030767471602077893029396618228990503102650478\ 9257712738963411869011517061709197601791721173449226521707854147843093673980435\ 8187478639796733717886035326703432487267010567472180673978074627168294362219555\ 4059386662988242742811441082090640087550451049775863421731200602767224690978980\ 7622983071217814851622465647836007959872543214549366387557011904554274772647300\ 3579428622129589381868072194177967448206893658630546129830721337018807610278198\ 90614978086584712724114830, .80930492203885380832116132551886140398453990493381\ 4788699906848735079530470278712322304958023242800636677059147030508803119244770\ 7715303733975132738889740881562718589176120135567564695061653056930908239907674\ 7194677814440407257622733399067577346491797120786504764734084695777326060909804\ 2271514781539762245774793874625548449660529394721535288079170502512716115941390\ 4487370099191350697737718956921407618421412105115491081295039324596575567653331\ 6601408535122158757964312035295659928623753775493084208302272428415, 5.79844420\ 3064059363577463438671096129257368335139377852718928753925236164389986871013544\ 3398051952416030295462146272953723451207370260431851130248288719882942169780194\ 3676339684340186761650970340133008709319315729054414821613009621491330862282784\ 0585212291051347615875955158078371894129819813912643661255336347684570254074551\ 6971160009598072563507044418989553688352555169523529341025003044858456608376750\ 7361888092256066744170002413370032329304603386557282261271912064584967724651717\ 71031560397682801645275278879, .86178163447218034668975353918481585523366595925\ 0586951490242230841411961536918229204511236772634531424272371109685126503042551\ 3927152751322961392074826910280823041311318425633559386822557976118977183669988\ 7663178190501028304277281042908725082581752628081919360137483967548647390411196\ 6246077116633568312945022328815396165143139490776763280391752056184005895679145\ 9246927864149652815047702802216192269046340944406568331859445824267016453973851\ 0196219760971083516906065362722869317143237774715150743858795604676659, 1.30283\ 4939763502176671366228147714824678495045070101054836188172763680286300434983566\ 4301622048675643053260289596322370548598009915861580088924566901819782387537789\ 9555249930945946088330875396256312078981327328577197142519761242389416831383628\ 5958075485097066487976969830423311743162349514403654002153192257673671642370186\ 2512436171105198548493348251473388173099138160601075306718245596721626405055729\ 1329256920208742796197946882300321931159881841638177541943302113959269455734526\ 37922433411757858559012735828267, 2.1843544247326873797232797106318545560516541\ 5001795358225153073105598932588437936127410600601750894238752504981223764758689\ 2866362980167843460257887123871167766936932538543525576762839405111911848129193\ 0389796783328531538638965224224160361798412636331181573048987998479500606138792\ 9895145233064254792350751799092695189227844993163289592029168880387611300614074\ 3379919428486076554925709913117629542183387045569476491864182530291959966347196\ 1875545734703715155631110809705609209992966507963709686967603518314783314, 4.77\ 5972543220472248749564557241906081471797252661819355347813337282106140862599376\ 0896326007456211636294363149777519603982019238560874510912241047512262262637316\ 7646080225431500505201296588891853098384712308571919551687246603079512365152966\ 2230964676089395535689420886071904002263491124998088347832296392319632747386640\ 7766887329999263219710552107686580120215058266406918134089004966763240328578654\ 0544192001264816435787331109203172652766217874519430235844973133394214923798992\ 71020304405658515847363978943349014, .94958046696214023217778111231532620122029\ 2328083825164719146489568291883995921975090673650142787726039975470839194736600\ 8910567251401443787468232859543194167742284927157047384029602994513915561636417\ 3629956057904988164203752045505828890073773707718750249465139940086100207604048\ 9900558299646299537334941171587942670566015345303431888074708590551445094015933\ 0767255145157492169012508113478385095008500306605838635171557028663031509737627\ 1362326845395630440983570511754568587678030199778319979465852597577177788071, 3\ .747025974440711638034133270845574052770079769054337478067752860675651220775589\ 0693590847766502793752812247906937414384033773590608086403067441231616623047695\ 9825470216974261599452139782966951599062359831284948067214530661992930782001993\ 6167214092574182362641555502866587350884280446801288328264128489715791681542141\ 6863353329039909899959271443771761016338388654015159272079224360817353811011014\ 3053661995386579137183081490172730177341110380491732502431946789790605584827155\ 96513045407605274862917292898904531201, 1.1259725310625939162466979894658986601\ 4930316825748334618925613807721968091095979554898400746295500674581877058905367\ 3010430536508126885552947037897620012845673041291564310244974941488045200148829\ 0584029873474644048886716550535128258297663755102156040013538022959187270138272\ 3882824799752995373051769852119331457739617776634039955739423977679415687922827\ 1482737830916979164535568575496705971913819881158134318869461004740972013131257\ 6292758848201444465034144842739648997239576511185947511466193955853146682547617 , 2.708506780771503009140268815844774406328916276081917916846690915643633194363\ 4860574374244987435259398266371044413391082699439334041173503448914572479190820\ 3581739313816263868381237549429187596345790355568974940299224509622382853204745\ 6652676310489280972088137008940510740651150486527759412198418255481247101695743\ 8651857093913231588710478417493500304615522363157656353136728412076371888054521\ 2178311292912072066463538782207084174934599347446519380428725712607492994966231\ 75423246358454623883495396648311887275953, 1.6564411200033008936964454031740915\ 1153410075946407744605542781452619658951451904946629879241916741255350717954073\ 5053328549743922291775943698429807897888651910918856648226576499262593108788625\ 4516334162416038604462247270788447321549733571254845780489233396611700563796431\ 3830113376598850368985952691502677720179502788079335246643892310503331693181601\ 0740197004199072218310635420252097293281493983590948897281360931507269579535435\ 0486503930705900969391111363104928816439582481248355737250724223053809345509032\ 114, .6019072301972345747375400015356173392615868899681064560177679591685535829\ 4623784016886370695825821535464409978314005090846929281349329460565572696199622\ 9204217094039414565239898817305872419468521761855743732977546539712814124031477\ 4019981917638877074452972303579900048574417337625128356868335502420710970567174\ 6804831449084187916459985229374192116547546018937740358438988222225515627004038\ 8900949086492351537410223430581636047414076682713848065808860493170931150812245\ 06995861816524782263480077652369760188395313, .13986588181652242728459880703541\ 1023887234584841515530384442054318561766405398639293899713678171752576116534225\ 0370761221110859632436943965194199010610970264493098296015165990893888347055661\ 0179185387462747313173934767233696704057358641299386403372444583804020790019498\ 9849293032188322099741697867834893938283145329522971833262813611198542851648797\ 8752131551213714702384325974899738369492869160308098633435867923366212642748508\ 0244791980881262912297809048315487938191094764871074807005345728465113507978938\ 666699, .2773878004568438160853596614387540232856976491560747265877060539778199\ 7538554803988463298595862966309097665014619932610051950145084717916232430848245\ 2117413458029029745961529790082809956775762304698611009196090554324296071764750\ 9302338511432232975056751224397922237198441355788260831642525570623309521184600\ 4831001266533862783217259268924589139592064849536840637781148026125075452151838\ 6369001491444667753107180790367903859970871273342353595110384682258187088934366\ 85865794341105094554421748222666484172991232889, .73890816347747063648993540591\ 2175821019757442109620053067230101186408154232647890799986699037694461927099790\ 0423196218672290499357036617394594184702312546529796240984322312922616171646314\ 3121265289812018988432110004162870359315151908540027633085782112292566248103032\ 2382564529981859135237431324712156971898096555761155256054839516502571658112948\ 4803722542778256935109555115764066631011322356076600400823877083719313244182557\ 3630186575884141921884595096754867053197242430644380997819508661787834353903977\ 144399616e-1], [-.8570388141339065259314932188425955759822763905579360531694232560785840285767\ 9649932349055693338966035989163852903649656647071428024786862108255030579784303\ 8059726381389112439829971212616445073719687670857008672574075291852855048964470\ 9185787740490182980945759070725688620131990291100517232792864080199376841243313\ 0490211711172753508219452141849534794454651029480311393832477442712997325190493\ 5808965031249329414666452498134188988206542512340402664712567488567403588392588\ 07984105477419985820624888841487568674150, -1.291009111168222010321479552570047\ 4573338862023850536327962766981786108269954052951352707233938824097883047835163\ 3855327005625657684688456515284211939321637309404662646400962382408521035997735\ 7132301065698202522783541220367688015802986770352223099378043999523161490302620\ 3402432425258961415730416191173313037129848095540173774577738176653534833891099\ 4689256421126430208952874087939013268366071799656133049833123180913827951635492\ 7922691262211544044924515591303533700200352986190547817670623889471668516051157\ 3992, -1.7192943974311581272835911469070105507166338891931534520800982202176555\ 1129222908483035583915722456124267775174876893082686579861372917846370299709635\ 8457345908012719254128303183509411147906352670990489992101155244857547655315704\ 4218410852583948537752010822458231586832342676018149348468911927247081919090711\ 1280387405429805648702081561613358174648699529173319532491329650596086762270872\ 6473824227471457377019843854095052102749958091673651925907879651115021435016787\ 3317350767379159440787206596456403431452774477, -7.7216009148277687902260032036\ 7545507760668699071878316432739430360201770612968708911455712878779170136471975\ 6574761828441247925841440476267051974709636871071639948361863702645409450695097\ 5589544293108743102819204989180305600267414815474111322304304059770501733053616\ 1766747855289635163903118819878088241175787585161900590349855670073589732220993\ 7186343639264522682452984117459614220614943379119740991048837778776803452413115\ 3474968308215677554874220982205299757095382532282238446290112940219972834025631\ 476594208, -.873126582456328817022315910405866241017596296212490624313534117488\ 6409691613072722018651633743456998517807141948981690392422263063838459279842188\ 7293743784407971305403039142784339105294346125067645281105010240247701299857904\ 2972724858808897135617354646150860535522043534426637378065406618784925916286505\ 9762547406363450289964354334780646202679270222842594633550191310613854265903189\ 1779676224161124391798922094728356131973679882873602388643868042476940383417635\ 651232539875733257584272778486002092840418481164428, -1.10324987190763336965573\ 3032461257733583369412136044990615129850679111936019128997502836078331124838526\ 5960955245316063453587671490784375607708078558283443257982693187630974221580759\ 4022785997712104242354157932057613561456818220315527835048655765796064269858872\ 4261470945239535300303056208616348027235552827403967785687490525301281309480026\ 8136320722622296311653155505497864303055489001232599678264509220082270118749841\ 7682045885460740242112208563455120900807279591422465959799297155579784267083811\ 58659390684628, -2.293105138388529047247075970944416934873901601558764297058986\ 4032670354747136779016872735136953775460671140264422096530273757915207038760645\ 6355351365695928606885395006901871297736426846050252177035741987532231950428441\ 4798153262146679173372747373747892266203090093981116892636785138930867287297302\ 3699044838801500494379723661596489705217360992175360016993451214915580130050790\ 8924800583977373573873355318452108718814033420269275439039057409136237147149308\ 21985887454496570095100537351261893010946277578514103655, -6.458951094702026987\ 7020529913980764234182374655583189530631544581559009769461252989748277536885012\ 9391307879614635479591428469972639759466856589500475583822040944958803417761623\ 6994114047747919933896057468090544070559297438200633916892068122821046572674331\ 3111190974850549727541061902459538742941441307810772750190438217378688002141282\ 2027554207944189351175595977873118182525381364402847235592193668012703729328203\ 7757562620212781713924043240991361339318073384580358818690461649066453984770587\ 5515813271271389861, -.88404924645065450471803074432385949459868356283377522504\ 1931642369977747066691946473597769378028790107719267641873448726743361859812783\ 1192932947917529107465203647956422783752456499509869637794985467398402343461905\ 8857056548110980602410125625195957929127964649789586475955544190629197954040926\ 6684235489727772346499442895116375898063378478216839343512112831811161375546490\ 4186433590498496903300710496900818062709313581364900399676868742689203860096586\ 8281182442251446318620471316933768786701826962125480266205938, -1.0038887272066\ 6637444550304197101722261100645816668491993867846237198758784080638177054201451\ 1762257092583425604876890175867652609476013601819234095203687080792195071169177\ 0956837534960042452306889057516097310292894420589635836690604065346642817251873\ 0503276670231927259451838813373829313640783673868474428338727473158515716318552\ 8965211181445460665658547655418640818559319241254381145587034826325391410431571\ 0926411111668323187203030928458128116893993289009550189888637631646483533964040\ 569470631873577309761872, -1.34565696229076539099388088191958588700853269749837\ 6209200146743135742882653946733562947868682673740242453549656753748695050387090\ 1001531919899659601146214429829040673043896527862529278654703691885374271930315\ 4435852552915691553449136794994410727407129220588683722387934450697691132427246\ 4749227663024739361062175240741869168360170199876804520079415626136849011473036\ 6341501557277561425857796334986192457403295208039300759843117035036955339795011\ 062514317854456856310579783681666983546894720720250597843548244599, -1.62672433\ 0333016180532566349626028832502164719635268407606349719312171180737719149760568\ 3195337565149722596216416816682915875941758313844789251376599384800090110749280\ 2162477086701336344667902160376183721320284476558358603534969617489213521496288\ 1637051641010711153123033130150642496387397650822587937152006918113760915206668\ 7580187531090958539281650259668988423652744391790170201943260791974489972902789\ 8874844730017419641070977710957057433085454499395423651420235056860319800381691\ 04829043008392094438803979728, -3.013498721755602508281685466069815186647319667\ 7875521224866321848124185708170014920345325013580781106709023263314033045439333\ 7809808678467901057602484111587524367088660836336720172276420264768614139107071\ 4857624349663618345027924461311823423859841229202974655265335442196635607270348\ 2063176645576746283626258616774615995616724559148530364344026189768200006307297\ 3794529547881477635095806281641912832055724474179933858054386068962115314967164\ 05603190271147471546701078051174227991815385328009234641076435672106996, -5.828\ 8786303426797159707273013214629363006178147936487979811379577683789805169774939\ 9726976232529536261648424130747319623578324101099369971307063719022378271749086\ 3205484540954039527457351993137005210817075636545415885415759886023524893674630\ 1640027133896807549809218255925080442457168594968298697549158973479428692602724\ 1768609068862874347137459139676514811239928000351910404997599910242755129017493\ 2790979404447999767107094161635727084820289248983089656467522457752669294711659\ 8496404700324670217003129258933627, -.89793774261408101992868989776210798245108\ 0418917094984185209320016366185883601235582473310624646361194329031422401191548\ 8772303418737266190378118873275697549909111468096997706779700364086939510851537\ 7215571442534828469279924198574315994466047594531503261301179081817449920864021\ 1863331279234470131361159658994845925560029307509600867007257262007730847326647\ 0445835632936362118055758125325907663102310926212634904727934783327554678522376\ 1243931737167183832862419658607899287894442228880545596492554854413007950663, -\ 1.21715010265001237300185464235955667267604319805873437796603971870021454858621\ 5520044598484505417866417118883399422305899950418046346980834820395977967481544\ 8994916584027970972959979545529882643813724578083411378525717468638874825863861\ 1141797271697051648727229832499965660440034589664311613419226585033053577854727\ 5295584222491678964049814669394629075806471967669363919966737365261468090056212\ 8357536154058440267834944634239435514000369470187226290497690055899255533139210\ 995653506240653170377976846323031340839, -1.88336181445054551811470061592038812\ 8127370162430568260310096369836161352860045982607622000005792903000262079807202\ 3356583250570248244319217799297671494650544511942881488913141141280688442034506\ 6978240356782369103163959898657492780487254885918655044901538507017838008313206\ 7593669470807524743178762755890367771064730121709591236533680134652346483720361\ 7389548462025811776913242747374256913801406890573437181176065437698050906549481\ 8964102109722172940056553239547427283919263667211982555077781387674056730823899\ 65, -5.199936112534774995959287448765799209947608948439811668656722285233158751\ 2033494459826211330204196513601600532227486843395102152773276009205779561209615\ 8165357092452696339349810358403926251283772636172161990831978981958528787070599\ 5845109214121274362096655557013928322152191101559694906849324043347341627572161\ 4017388598632493973360431437020622021731232613562115992406385170199329402299197\ 8492183660765324333091570802754691297690112552778955906974819989326243587133195\ 38739885500369474045327084664105961078922449, -.9413246266577204571899800269715\ 1403843492370845068885232186478357774185894470660222887784556082233806450755125\ 9590322040470947224366523275690513998231969213743644674019447927626517484467099\ 0144902578623204856262357406969239799544512872015083940393994876993858185967979\ 5075571758034641557477818721956219259636089339596853039145402193778142866177438\ 9070741311717808930704620917238814675936191059145328133585815203831242826909567\ 8132760910687086884713858540272916555722368157325455535516907729423099104382960\ 9485718, -3.9468697005546463830965255934898263674329154609899433529461501761352\ 2305215757572029262679687219916492092619158656343205407252461399107169088983493\ 5160058766873852422332319952585044198181130015467321194278969742893630087918678\ 0941651852629173425083809213127246411463551694730275147908790578070904403917427\ 4932608388881939841864069581567404000325707731777605519752217098812016837757474\ 1530839317321036541967498622752242582189942633361334061050547720635278721207775\ 8403653949403364439885781644321799691981233584060, -.97814417668335891952721876\ 3034969431538835077897272736361425228619697694759969237660777167017045848658551\ 4879631560788462616620360330983139748159509551304403623743292006452871949033029\ 6310379593556391937577961097937978801710776033026142187629375681099954240544871\ 5299499099439734903837291813591989777691102805783684356776059322195703245049128\ 1258770883232478099136597440524988650614168855915643553261855232005115361653608\ 0900664581539444227406695744626013472688777313991783259043904043322073892340876\ 086895401038, -1.26039134717738759292356881491218734410383686215144810947883711\ 5130873094126482650487316934968754146833850280928505677008490489745647582986407\ 5093465350097190979613760651530004843901922871607527172487245211055923063824737\ 0565429156887324016055319076674852913630239644812866294133957439911629831373836\ 6670336299625530081446829336623768569108490009861584795772868271652164021987054\ 5771971356913960436758218661662427623061040404792997638253410934149539159819268\ 778663399918269966792468387893482734708585682505452407, -1.78087204427005140532\ 4935848061535118634141989735303673629758760577628447932382110176163418808894038\ 7184293566180690362459344842022022450334752721125656940655397112778603573347339\ 3589628787130057885606866245002749767953358345605972507982850750406388465038754\ 6486697322767930910171487442808194261103545219514132821349606072554955376019627\ 2834918827296372545531370607714568245239360035438013715946035189249214993891186\ 7413504752561897344283474708883604047404939643911670817092180373023188977226366\ 28641654177617840, -3.323824988111847168858244969650241757945897485701920570507\ 1347217689613344055879990492910815305547548726823681973760655811747222715927681\ 7162455085989189870716509122797446355768716076151314738494472037877315434648656\ 1088954280494051055275077297955069776285271235762963005598140131686878528460920\ 3649799738140098637404064206886657093987797976254578633081193792590196546649925\ 0729696674011585472119818470778852811998884255444989211766962688043148136191772\ 25341182616183858797686968969147157215579206794707857671999, -1.037594550769285\ 4197376713214064219751338179982627790109493995255657555557577767099581281600020\ 2709908616358341496846649706291963517605065695745652274060801213708962582881681\ 1162981819916590304700817194317071408180738263310701457974175953852632810821004\ 4336778363852591370050831864804156587784288050034215983670167009845957595178683\ 8822138543790896487918210137825312835587176704679961465181682082078739839858684\ 0143863067813511332235580054284578935743736351051777537782438467084244760300845\ 7536641718584449601331, -2.7041052293152824441077620692569580372412834439634000\ 7941035562919205222326070794760996767534166549864988942029578209978827157152216\ 3054597763792028552841306040969640236736594263927194515168614571400025786150113\ 7381712707813673762325822340354598169719754691278513655233112510188743272758353\ 1584363092056016474405699129207035978813065307171477099597549798566882685406876\ 1292740292963790518373857468241306232613275583986433530538143471957864043432337\ 4637535499999938881718482683649099573190601892441128852446280762, -1.1512660218\ 4734208624056947677440416511074627209077411631552384187292060400701637418997220\ 4196344975305144626867505783566609566371700461135476092666782673113720784159656\ 7926957171395286653178385562939222510868148859945694405603491883914397318684897\ 0094810070436787620437740914227066263649049800223535480947169430220806343448614\ 4937218441817715965071530660495940121499905148791227802439138407434666122845383\ 0873918663028502269282576335872763196466052545124523290564138476987223468947873\ 850663489442464033715261807, -2.08816577988838626619096216374537639929606914388\ 2959801787605561856435208579641029015683558785879119379305447200047918856181044\ 9713866131550002535152416124045292024086561163245210011862001880243797429771966\ 8171999995617663001898106487312669202446160589993471492298670514975314634015429\ 4327437421926978578093242362456287809191963984487960973767553657093626185456046\ 0518964355462532298180938589159298634307641628446168480886477620830409356096402\ 925051409929938924111716170592971888764605848537610309788277705952117, -1.47147\ 2392670243069188584635323297453241088055435748322955922383406694090952357067886\ 8634705980974507427173395904931472603822957011919081229168205907226988262044905\ 6825863240087987592551104770307026641131874807725861787248494578814948397375136\ 4317966778390801085251590020516055213485355446872859715460742679163118448549597\ 5491241330489090682737384134579825993872999512463355578007920149266705444396817\ 7488553964755898497746187857726311698956405799189960186857273519864872291446127\ 82480247939786426752598813308929, -.7812128213002887165471500000479648205499063\ 9071644460784383324612778439153856021672762923800480563461035944069505479954638\ 4072763088051135894299724496925283869916704560256547939492444704265929647777905\ 5002475092583050685491805062705746560005436501167070689836489058471101913575173\ 4189745100586734387772411316474282346309316179544589853039257237072852813399121\ 5501769790733023504549146823644700048451983374912574009479440091368174641654398\ 46747711917028102225916513551033407709857277670402346784478681752992557819, -.1\ 0703243154093754688837077227747663668748089823505386052579455723131997749949067\ 2496075092987456142194848617389402534750989909677539407029182096849666272900800\ 9924975273650878001714208648003898152713876577891403588288389697942039940782110\ 1161937730327416592708117879239899669879183533853293506485632243085646125746198\ 5067798807804738267118980861498839564688316603091612755963990584132400938149074\ 7952747218645910424433906802328662798398278151133695398878626553346552996230637\ 4246457385802858805430937865975186338, -.41230862697391129595282982063344532288\ 5050565583462843627069887412223568758832395023913308623230288983809843361929673\ 6264235976566393572039155969959490546719312197418566612754439963355815737848361\ 2299105615142075792200864570278850290871751578145420025970906900132675123588609\ 0121628727718636654881658067140860498820664618426968758834149334409900189427527\ 4628233241254098612116781889948630073129332285191400372437105240663216374457560\ 9889976976750978860078437186633034566373177974047597783142603600437817636758481 , .1459181379667857988787599405358775712760801965467009998451033687684798278698\ 6827339694694495998904089288127698548695420739592301285341299984688991547700642\ 3482927002963458982278911292329429498346064419930697876162560669267395441274629\ 2017001271756634247436397222809690024334107444372407088092424015683120452905101\ 9983596373156830807118715227044571482154871667262378402018729826131274290754414\ 5830270453803431379431258605169104092596387927573095922706626179922476061127842\ 70289700895675835402371900174215578858323], [.11258544162299348345061347275400309588640091163029970065307922253168561062091\ 4747861114807678735144343352095168631051561604041613187715828612311647606441619\ 3770620031505662790672338847727965468874815869672888346502866171149973260256247\ 6277337742425283059303186005134178120118210611946719151723931153628413907946211\ 0405747343000050607118626516063609779744312473405962761944613362167973848227943\ 2779702197957149984980704873056706512319571857557963544197552910113751886682961\ 1810722308834939186680677641801504777122, .437537559367453921878733766180872382\ 2489864908985472853668252117210307276577616615461051312176122477392108653131169\ 8791380405453116435370220264528456702969758918071082757162493846426231180941877\ 1704560919048079529572475005163648609398667033847924351815954769856083551252046\ 0688345540659291353220692317061228407842286819711721417294368266024904078410960\ 9166643098729434658288793143917402816114153946797105170026376140204602444206746\ 7409843283424001920002978828884021655381236299203396759930780007904313678652804\ 89e-1, .22017064058905007205005606538179635414879118242591617790408012406517317\ 5203090978981681602990291107948468246780096731541138279451443589804903982507592\ 0350059509953416990123884231881418093018394938420190536004172629357321938209231\ 2851306178638591560315892652738150579029733215807057594679465459378385990957917\ 8241347595919008233219478091423308303550502303191941570149573432988199794642958\ 6639309466674136280348772351665868693268379474293955675796220123090914357408482\ 8212353775328524432969983977345045904828240008e-1, .868558011549463118774843242\ 3271115414251286646140289215194707992196371837931452984931547592315230333495162\ 7911430407815277759020018835472567500315542731969968687521107551718399448810735\ 1095577027014710786379815442032604859132204581545741857817403625745784016420346\ 5480614098101724067455340856759221187811121349338154346612398304856537939900794\ 7339681099151622502656589803539080342864691149883523385698865966386982231415982\ 3480832077720094975832590530953519645409683054209070577786115721413975753739796\ 64484592408e-3, .10825972537098592510820402284072117386320424912059375005080778\ 6505014378774727503124399450700076360550458438267123903102023652803042626878151\ 4407925666104880618589581171193582282786708067687878054321115161669769118277193\ 3681761870981695009862889439810017725429950072327136707341861321653672942296640\ 5014168215218815892918063966411647094054838016379040145210331892315474198402966\ 8666588119406360066178438785681271117816696030898245540485217587234756942998451\ 0006937345253131657511212756007768884385000370955172263, .637896532296416130713\ 6845240600033494188354247896031078215063188615208879353833247467424924506872434\ 3880308129539337920089748957704994632026196251553012582600309015989276555838263\ 2437634471592756125958436604176454544975464350176540000622868181173170264055190\ 2659170325551752775545252625264067323243146499489814967091371379410785987502804\ 6963304120316400290505296419315556709369662811976249623243238567730000447056161\ 2745448363872804592510091585598228194615404197621825706015796551290850584614399\ 95282606605813384e-1, .11334612660978455595067730735337488954845492032794532036\ 3706824639790943988960419841884158605148320144748596230190182903977106837356707\ 3651751144538937370823985461524156451410911567572750050343979105901294550178216\ 0277240094422253623345707983747071840107033806799931375391709054255910950831023\ 4364540331430117301730146681558528292160372422814186485501118412000153261210553\ 1074044840719957981473771411699447323024255994208604751294812314361647840826070\ 2682771156822418890595343605768336953901724831645932688689931e-1, .125104199224\ 1759124029271397424202112361458659731851152717332749557855147296046802382069585\ 7333209430233072785254021409618988781819948644554342792129282802613730106326866\ 5493203274344429849369338299912692983993749366555535165016836434315698160581827\ 2722636217979789926843428005939164236682792310806606599414347974028586723727262\ 0089824843679020662889997366375520720343536080410916115612281145873753322314522\ 4329577091139052727859285359806406516914532263508916680419002880909552972763673\ 89597262653476927730275919e-2, .10543120753893888287225525217092637576271942828\ 6185391654684766636710545840190546775138344934158306957837726697293872275421206\ 2892322406167364602456559807771464634302413104127188259036826064151418337490596\ 1052502910748781757105351376304559768657491268246117434819514611932224923436843\ 4209012349404118506544299019036580045610760167341315903152729924702650970979599\ 1949775332091098093814343369386694791305376589133912436408319346890134508033176\ 3404059874644173083332172479617111280238013709895489541586867166944207, .795020\ 6047001144997569248191420963020826097838662623720350809848132694962834514335694\ 0470209361037364869866813193831990305643419888777496887828889377794476817496401\ 2193058288986987587968606318845300828072714640354025213616144087606208579399542\ 1211992903622948968008887093373847894933233930655514036942660773269712765790593\ 7090018305756022197312015955718667335180508150793473098897597395457113509194554\ 5131999902233632034732116249603806431701033065984025499202225963645230756613777\ 03077561720208954471129317945523e-1, .39582157306697253787472201714819634303339\ 5841323124741945071609208640216766938160360416736805749379214935217985477808491\ 1583105649009824594483098130129064245774937511667049998577922175526613054168686\ 2533434102782156921182914589798188795845582967381972214094078339164776431985392\ 5301666291670436489278013878198688485186886718474421650047575049387168037028676\ 6445386560173988629451428333297181552925393715848993168056515904904521010484729\ 1294808624658409071638187868410718034774258740563359122315422599901567527642e-1 , .2510031731076995726585780862282442655652648650172615566362940210065892375397\ 7689238092183937479115326354925250127963418364038583282445763394468488328136204\ 5592036467511108785021465704718986600284128820563637804212036507532262433188164\ 0699085248605932086795247065298485340608246808151540348202153459218923767500526\ 0304868089430266981893121817598370381463926125109543637003697575974272588871493\ 5822869637975738881188816308130998991921761344599855953859740535392171429878404\ 39862648962606253907293898112439008580194e-1, .61982813717589218928167011196162\ 9082231490362504493255830522932287470039126078259163915158242498039613751694129\ 1632650989104864898254297693317291936288620891129628257857352754362298662544678\ 3980108757083874553875018821176516075367406672005866559268507074913738544407212\ 2987263224107857299136686561625653981147841743117730612015126766841488985391417\ 7952984105384259660936703701934113176561088573970904713877620436324081607500896\ 3147631227479910174225042331440987547060372475338205116093762934887214049337729\ 535806e-2, .1544798153676177681172747142147604270685290362813210928220702026033\ 8148231137795577975669429306048254598957042533928199351444628586400697476831224\ 7162901657110373249396777740876021362574066738094628838586078025145934666086376\ 9779147871918244661976423838964883113724107611247585319534233365281800140019944\ 4505266229127178266283452034914905605644414395982071800592392770363687404553995\ 5678490819192827845802635704564999033026209759673884232884916601944221237332439\ 24782434244989239622954552488751915980288982580135e-2, .10195715512938881107468\ 2436205219179576144945187474348690242677827728133666656758336341827513850998722\ 8857150780981853456796812851090230547621541913166846669781235848123647898672118\ 0628203668141567820429563760572329349614021217710412526775832076412475128349566\ 3360322918444443445907903897600680230200751699984349310998696671145360858579808\ 7364921161565221095948760244956130479712447829570592951682718252755441473404642\ 2880796398824646685306361968062544920458280041380504631630300392965285091997650\ 881251944150190, .5043711158178601187004390698175725789834170698229989558203106\ 6977290948827313514721287680220408759419043402344107339167133664117641394255235\ 3360911606266205101756330501126862851997766585022121937309542842992865170048635\ 8325215774756372096849456173010129595400455092688149176309709134466294775655804\ 0359126035609499479868205313337129146587656418191410742006258128867022170368952\ 8135553169705952676159322133491399077723071179178990682575497385459284493520936\ 89832664824583477427450075368101889676228817046659207220e-1, .17785026022666554\ 5435035238019296405025720442882648423056960200095776481830488118802691157845840\ 8910148332659325951344716757641743103422901625281492082693069292719743838356762\ 2645241649061567196731488130666915295142391017115269699428374102807890981364933\ 0261663743321344218259717018827885350709624032963960701304336539096065079518611\ 7503819177600792440955844442336141983627023254089910365433843148013538429759389\ 0727723614535912758456049246112682709384068667264138351471645480632420038264755\ 712527201881919898596e-1, .1955669373597278019938310777243561514258367668753956\ 6904288125244052536848421975421743465206270685002870599137782553782809755731318\ 8214834577513868298706273835512098508742232258436353938766291518572359688801725\ 8295997927885920220023653906674294681144648169855736197233796706355139329279890\ 3045550532895189924178330643591572566167560029714765435651952036602574249153423\ 8651183810843828464424380567111863849105900262139495865024215255919055718181790\ 44939945131780730205854297537969571463395863312116675613109883888e-2, .91939312\ 4093488913114165112980909876883341722849890983799751375698599881969287556283037\ 5440766089056986557718882627944312728843494021218849335826444247561559614891040\ 3361502958581691634107388798945408306801117187166535205135441612476095935368847\ 9086318944728035765857987085923944333230388897369668813416553652281343841020643\ 0622021900765623225252307680908586966673678536984367248748147644005665417955637\ 7923118692785389447189521600774383561925749014277007321528789445807679614025974\ 562915636132244082338291247977e-1, .3480266753934778763722203258426926593004602\ 8000516161475677692665893340814735498749424077150950362256358578383877576966350\ 3467090216834928607628367020114347767204906698561612755864582763492634402364724\ 2732317690510788965247899448295550913377241144896451693376855845324722326337573\ 2224811706070279689461420629546217682884297202671331286987905131323020218970607\ 1862833113918555029944956106049648221782213651915725685208359171452913547802013\ 43398257050688455737018616433202732967634449887397441450627170247957235904e-2, .843529163182031785171850420183645223396818120259596685951497758526683237532855\ 4214961690008344954038231428417797278241064616396115759820990847665035289606905\ 1404293924697989125313887082163896961665129315322753202481211849532916189497829\ 2173549390112704694506876605771074966486209523193271608007685838641057497046821\ 1019020142520325706909427397637267482337648020991636889600950787217879041945553\ 4061973830490227342032650740583282631027939029213359273832258970786850171373869\ 251235732793037446498909224974138896321e-1, .4636527896759910528601285719644913\ 2988917861862888854101105212433133939857314905808652719433200915373481674510603\ 7479513335029938923491024452956870309992022049959754855893162424831276444155365\ 0417162508935997630022685186841681272931907483954643759444769503604378541358088\ 6512867572367670855151728739312413423866541333914247530751980891024643737899755\ 2642157643900869615107680897889400963702503583472341355896760398193315411157044\ 8636561660217556084301740917379419083650008467359163679373068189170586078768781\ 9916e-1, .202680035614882596155780640482407491065905958450673492766967143233239\ 5673441001346648449152711146227571958801736469553824872169636356071854826998740\ 3351900538833003669839653474176568709999120699605355277238983229410967486025911\ 3058214835712801231951090680444902614782307593371480981513481440039965791321297\ 0480722435117675567966092639340125791338330196987862084530272228040986213178674\ 5566870993937269238323837770840541054316032534484414772370959003232263885947225\ 162170780461592994394545357507388734881995667137e-1, .5016687513894677579709600\ 5394352142360065900711970035333827403670979183241461617220166019088402107535326\ 0644374584654197809669685482116582987319851850746539748882354976111550254876063\ 2168967776961580234434004470303055294394668068155174280081241260822140647501322\ 0747518479335318104586000036730668442286809066277323057213838272618429636110004\ 2441439273939175228973864980481517388900106075075793897367572140975407478611234\ 5941866519413531004382913035096307658587146176472196581479135152996165658675013\ 7542401015646e-2, .736668804948754469752910518492329204552171956428760675569651\ 4354087634768930037901236844872928404089436192731196125649798618847470197189585\ 1075000650387779802740016711427699090102540895965505767177862670579268406627397\ 1392966635746221005766820031086018832546033612479774790248890630673888632319240\ 2605509304314140181648354554875849269777154420071062679643169056236498641203241\ 1711951098950531534655905874703403250097639180451426925080361857629897086314136\ 143047032141135208061536117683765936051096518150913022094e-1, .7853269659864516\ 0930770862356302542361692719191152636361095070571838317174018684246939978926418\ 7110339118692862917485495197648755039766631173836162983321614286171121342500487\ 9394932315420697076351131190853493430721269442144374167928494514542698010766767\ 9094724630884333500558938461300168437456959525512660202945229266853409260013528\ 9847610904920830172941544151940045974130701536360026885471085596311153945906890\ 9854745143042289182632101405888837053956891366816590571657948332837038229648071\ 3776926466574287126584e-2, .576419593567124227372000537486024640586160582240060\ 2422875289462322708086943589414090430406226505399728270371587034310757046710687\ 5980415521315019637214603399011664207897078788303532749999789586518849890859296\ 5046012443487454723698159536492689866144954924523861089980919393947527290767835\ 7759499316014987307025615511923564344545553480534742978914968557394836907502978\ 8587239928856018002698162437640957736578452659265587811295204165072694457816447\ 820510049152075945761407793338290836208398532938630389098285347773e-1, .1401793\ 7070436144760116324784923220060309766853275411121226684630364801800945233785410\ 7649438283596526230092004000536671923734481496944401153422541744091016073769485\ 1005860137226815982080424424371228387776914043808570720315217942625236916881217\ 9028931011721160688646901242118480116567719264393554192822593268835438431121453\ 8009053680855654114907782470827196506538912965463630536360636656524819422318357\ 4929617951995907339225802331684815028377006270966489725858999118615642439581805\ 6941495996419624482346447192667e-1, .319061491777382538132657773525179925785505\ 7625792669824579131120566326494793310753311469977801993717171565029400034799005\ 3830810648174677514767724405287601207740594428135053327882783253941492463570270\ 8875050245158442622026687548183437544848499767633659909304075509065211167619552\ 0701010783408684700224195626636013675286363407719884428130582267973574534573669\ 5406111222626751230840851663943698389974218857603721114807915777345100958678449\ 025806837098488819726089712868450493179526511491743669254212523426234579937e-1, .135747669767038281182852569994990922949871068112778187847546352255063734194033\ 2022094883616136512817416803625780035334328891608694689919611485411157988211898\ 4375434829132559580457556893995834769431147830053838386105780877712428411697709\ 7564682421640569571087463814188550535866031060541298818451209692346440073394448\ 2773161900743355672887846072295402549324277261419630748857013830851928450007688\ 4023808880909286646170205011828524953588680837557216421995771487830523204953788\ 952606256849081089565935086420755281817, .6889484476987382040549500158118671053\ 3136294328992240693855176705576030569731515761339494096225697374683910713255754\ 4735923823025645232694153980794125675562576710900504528823935299425711817032512\ 9853051117913238001184392728604459239237814053755136960018082744688402080306017\ 6442265662612432298290847461674645560055445089560286711433514484853123335105387\ 5021808305382104440905838962395092457642963002502260909194233333636384791950397\ 2316493094721634645642321440922992781627955557250050822043118289130044989827646\ 8, .337834618335680730673624915003444150929897627736151766758750028454142958512\ 0067217463669377811592319191561624298396062780398586700942818705765332120956954\ 9540209221131226044562107654911796219237411793752174300123551055042378122139043\ 0095484757043147277459652922879012668445646170801122741066130497581702747248158\ 0109579089022896785158458882766715212772550839473112868410834113447663702694939\ 3436972245460974287272118213509539532792984481758490960776307740864855927847361\ 695912937432980054819233914009296730132748, 1.276466147819164282483354831408153\ 8882006437326308347860596554104915682383470705488024162278884888318050636952457\ 7205906560943665888146768919664702038097177761691418828009015513539832049917151\ 9602360750308045195851551784101541076415290001154480866190901508495577091957509\ 8591151544775506886110020554848120743310746991062980266044667494935662930448451\ 9558478130306747297945432777187244887355115365575235823167909051653348171552867\ 7392357372101852514811787607800171235231430283828293936946023973294205040682990\ 2047], [.97870308109696826271621210910740794063778618021398575500059085145600686895494\ 8511154634148045173740321132067895054651411846715623134882413759283097183503648\ 1450687873343087068469436514303517731799553513529361387452142963484584955656415\ 4032923539059103902341224127017267618366863898927369160106946445357212424506625\ 0639640632656147996105674980881590311080210520303136197293928524451238920341093\ 8527156708876592387772987889173829264478996645216476752471985191807156527625567\ 0641145347395065622613571911399849680153e-1, .413413403332842456115023817855858\ 0485733429244125750260192801899103893408274583998891469081609545077435524191597\ 6826535147752130451698189004396088988265170360476518901442247013238438373469424\ 0658112296159466047299882620275711794088399536720322718383613331837668771564592\ 0168417341946780228291476077209659611793136858558154310658278288016226739373532\ 6955571119782363299735439133810820835511156366715351170261177090784122221559183\ 2629883790509540505584120128190982760572360185545600048591783130949372279556248\ 44547e-1, .21389120495088693425714416659677370019663996011291522463163669044921\ 2023151597938327184264277483216514726298670419097743157308650084096372347722342\ 6494247665411169598989569205574970429121484651951892839792728251042959024281535\ 2055673708232957887022139360444895666920876727944217708622573947849361036160901\ 2682753164782192746715323878531194272978826869521155886581297207433412462401457\ 7529871589618862302984777010601418811221832737070638990569877111852335459084268\ 5488468362376310094630167081484410756519155441831e-1, .867553317594186719094381\ 4347789885927239514827886439843757571017892897190929479940984223604931527552012\ 2276650860248775438807337219530122794419287023459543166343411660430707935975261\ 2538016171744698794976799048802376898989265311120962696529837251376795662486682\ 8365391974410376185532859331699395868179059616575284491644772790443794224968332\ 3555169649072734275568158161714150936485553277139568671696111932728070296933345\ 6192066806261031226460758400462778650236094806082379549455167435480084847858721\ 05320012704318e-3, .94586304274801166264085058898904109596363557796081776473995\ 7047047826351985096338668021503700366026001591183152624546143192644872311931734\ 6347700691971561809481603304147312373860211041679386780881813573497972133159795\ 2746402463638998303966727144115530343135291341438906217845674492525980412235262\ 0867056787137740776048298885263563989444242988692599934150999205975024029007337\ 2328301651128723844726253275472019308860013820732699459552232243781498640515594\ 5365397554686368397150867119390411751202871648503535764252e-1, .587869443641917\ 1301489004273588279637589245685859128567838418330507127407018623740483112484846\ 4834044659912936567333749858905093496625239431087431730172537891687540096150744\ 0376881933680495849554164357121167388818777775050406319242255744274812518070250\ 3230061940496849430047779462320725353990866555022365812875112675492114062108145\ 5150206503740368042825294599638032046291834890348496303765028897450719177829523\ 4355328866841275081095599028679893426685182984404770207940116866473209459290577\ 64937175427512325438744e-1, .11165861949063964039645734857392261633766795005607\ 7447531561913460994441136264649378957424270073237350351820086883567086479771271\ 9703357324786352917729899517160604770494879775630477898717939695669118801740404\ 7236544024364367878779550503529505712424957007019848097105423045499517240946757\ 9834620943647377273396256132068107490322501431250156657230961205687470795945403\ 9721302843738666396398924546357007439210342924489262355880769912488589992880399\ 5565609417204874686435055920710110920747178096967189404133138939305e-1, .124895\ 8658799918845444150281337596339218850146964011508170709487265877730985718428276\ 9868305325981999636482880302003634319720931068098620539986414169956349374465288\ 3447094925647596827929315944273730955245124691632701581888834610777314250499896\ 6503554948898413204721766450537411364650960797807169906309222762392076163274230\ 8199746709132324372591321431310620525001525886720233532430621158973544178498707\ 0984587450133203571698223040291478540488741104906672269470271742333992298611729\ 58924046623974252459833218728605e-2, .92420830908844017930015267158843521684057\ 7513690590292317156217439945665777298000794620199836661200166207006884714143737\ 0611445682826391080661627206727737395458845658708537914806210025928884733180508\ 4637043949318591947641193089824938796757920647144938400521174614641420738584666\ 8032701654717725016842052084129948594769311691589695646911801803860913404348591\ 0833926042005915750796213012571353155309558856502747804921502474329619667977338\ 5685987308148428696626976168432653726891686234804965358366355270605410399540e-1 , .7187664246668912444422807157169389993036790154433570923284871389953375434340\ 7580360464643961205627609552962844217373190788285422542804829274417878801845627\ 9980449451156524261691453671825733806654893515313442075710468108648524705268911\ 1766615618240407106144317099528150546627884549759546666438229649766596603495357\ 6796906238866739342254190578445910187951622613502280447577596862991407285650478\ 8981497601759727999481997440600713965539227357065012048797837648215476598151346\ 84822021756229135045899424297843176094960e-1, .37597478239444735730134207624807\ 9741842612657570118739656432518502969167364622849120381592202187328050208454178\ 7369539909052817179585951671833198062831711587075869122804853409349906243396078\ 9369038330302581705872752948274863673970853959125782748736463795639827785729384\ 8061988515341022046790007847712090246769572430615952640823222670477712248959255\ 7715684616512176968867214363510703259142930535410894227727828401704582011623105\ 9639010786326432284743166335469378142859580205737108712780170678038222392830490\ 814994e-1, .2428741657639867772930288628824525149912958269423598040482173641468\ 1578984831162275447634442643091661391323806936478427745606255538909825555980695\ 2259604667696393697147644769635239860549821871501012026695666074543913684335806\ 9997159972832406252344331789657954672985749175457372601173801720169894743722107\ 7284038970611782988923265262702631844865189546335097430492368008016083642809624\ 8613958706388831779804818417453674025469744231883888007642350860134495510824974\ 72756798498691533396178514327381925271143328476827e-1, .61474760438042495311686\ 7523540638419290104595969478990938307770123301477449005260280662460486214149634\ 8048692803760345737136460989849206286215621029876332459347921712063036975647244\ 9124571000166179086004607240831184917814017244041856565661743825273299715561172\ 2790882159880918577965407651011313666124235272224091048160587186519201481432442\ 0226369097017392795397684711753783422485187021256287574211289561491107847807355\ 6399707994830494202457570252329383294014794500590486100807957160863024608078497\ 025133646180032e-2, .1541622824460029148802620332487670367042938191569729088805\ 9466911392097771237689233976195944513808944202587171100115171880287141662540437\ 4406242798405589922823068739387066060610878413368202090610252546087912457470102\ 0823710882102323197270105467246309999988737760256836557106099318246243068244064\ 0240346941737876957468541736862405804484268951082359646159513703179589747651324\ 3582524461464601422394987425701449753248952405622915307376019312480370906145556\ 46787025372661739497373983367444164526381558161365511193180e-2, .89741309058399\ 3469078046771505295525033918008952489634301476444395720921741048111543843311391\ 5873122679899383721820939679514140183485274047685176212536521363513087461357480\ 3892320112053345108088608095578901703252666244777115166638048322271453765026993\ 9095076812772992105308533625346829897351017925297792831235746049715477330294694\ 1936784695080023962666359754843733637805324574029101903188664629844890163185720\ 8994501371442580126992583809197679541193907292574725585703805207454048542477404\ 825032277663611685998454e-1, .4725794455347975062880943044168529917300304364032\ 7849218325027113678089032408836303763143132604118750845094214056071001000980718\ 6250932847036797587217998885558868728021971433255098343835303359004477299742306\ 0173262638371477090127748542791254646699792907263296579478182807064040516137757\ 3794463624945990616377184841840861686700706591261515472843730153994627960696025\ 6005610362264093608973652250973883327157980724809581246419696249652891015628051\ 16557542297000769680776744865985354204149675330768447433693483160566e-1, .17373\ 0344746343303720937635537676060490925673951184900096337206787737624540436214480\ 3861632145859675593513779208085414427713816034291943702774094381279435123544983\ 1642519665191839899381738217686417738514422862121345686384208953986783447962180\ 8790279551242928948505616669691495222043566338708171463962403294858645488714716\ 2944647535185431930050994495778682634332402680496719011837723655375756857678420\ 3210620169921935888325474602723459754447756109722092138861955257581803336463116\ 488653560659280655320608784238920e-1, .1950583109929692886929169953803170686855\ 7442409453659348055080849503760966118240504494187995143366952209335398442366122\ 6800970429309355869363912550866437460675588334574454765558045796410378137855687\ 1859319316515386588787864715129483664820444586259706582871805496688367785710825\ 0862746925092936870667168771328099580034103128026575731826621422476217935218489\ 8548475906983415042592996089901171046931228893656051755430553315309065511299419\ 48539818450495725758397608114406149027720585542265523766902689412016711117453e-\ 2, .818898494936548844151984584946338867132428715643888161234955810378491136976\ 4681945309569741976266541399563721158045019553724846670121473326436293417624374\ 3568411575583943302657948581149438424614136676591047617267900940330777509469129\ 3051168721845019926874047876052867207945960841837475699385710882572358551201757\ 4131423752261827894321083690273314987460105695260984353431435734529712474768706\ 7879525970318960807396496156674905470978511684346665969686831715049897594137824\ 494578362596766452382227446106341010546074e-1, .3464191644593896641025968040842\ 9551571185669890402198126775869086993562688919396353314778066144232709378010861\ 5476530790405420591747565151929070487802732353554156987305013946739272602978840\ 3693417177020361012873769224967118907768029634575755223763032320545284188586048\ 2204365820509333821177713126936749107633339342863265995840003908676444182379402\ 9853160311203513772482449284171533345339688843278374325982078498662667136894717\ 3335435234939801518224465013516131861474001875262107766071390764288087123389827\ 1600602e-2, .758177624849447194239281492675396583725043038864507339478734815462\ 4672663527930630714494118140803546980811179588105219485202577270814032128161892\ 6286205801323969734398833769528564284923356769206307639725165150860453212775693\ 2130099559690075155767347056563826369901505320472261617683496163118270734282447\ 4039522508484199880538881715184072923520335100716929571531839840907926795145310\ 7004396160795327714307765373907017676167637073249663297008758692961669588404058\ 729708181816961446930508018316831396194551041096869e-1, .4366509671584168986437\ 2201022084214959407932154455377738672035994039581699589262090928616881247041511\ 1727926814089171059411194025852473685449376573863188628407498376877911611774535\ 7342213842319089329108501784756188140980225256428360430401584921233127655015678\ 4966878480393037002283176387947260433160937462860989050718119111864233608831798\ 0108501805303594742499728340997206545096147168033638730592552757390623633637775\ 9393785752589745234365549400844382401453036860753457749187612188176618926643032\ 1436867212198305e-1, .197346631170302701904219919417158326908725110488207403556\ 5700420617767649524274143028527007728597568475096109178339837258323765358195635\ 4419342732653668589141357048641618946182919260928131498785845700518578158447931\ 3429663230852456574374628376389909685652937931546200586544002161102252344545858\ 8489239612561665450984538165739608175776791804497529529768219595537165259651760\ 9804623347948354094045869808808504746593264888855632192457588375352611066336166\ 020680397518172746624281625628162898230227440291413962474206e-1, .4983354152783\ 5631617200731955744790567374974150124638933345614802394568646575734907986219209\ 7008725195780686568795236430100015607049091346842388882042932484258946184373532\ 0699072679933355956759269436465577373880159184644153262514322948043164442189790\ 9337520276999283992844925297463827514228921046368474973671506772868948656651881\ 5289855050021389472450320084257398446812839541256547123752784701777630411225973\ 7078864260195939568562949657279454953843538946640645892609281541229515594968299\ 2806134049300238359233942e-2, .670739972996505565063516066490803506588035332813\ 2974914329094564844692010539668077147211573694559836109499352528554835706172072\ 2558654915023683183390674220072283798390895491568409269988372146949091372154066\ 5269663132424401257005658362084575357625303643122234163282488061686222913138389\ 3985792814645157163278498997102479610777939596537546042766680079673648845367723\ 0839016050689576214095920105121856329145066071311142371217923938005639838635268\ 183230645230517262617692664159287992492791738033828577339311757988057e-1, .7771\ 8892859626769289086728557773456325384459156249756119816293235718928905299725985\ 9772438368949027491271718507013694150721472251198179859089856640274748560902871\ 7733421220793958784536113473064889536766845022156003444971502481771775797363091\ 6070517906687053461832079654414026514749422696074196295185960699063709564172531\ 6140067879149902768473338264800612876640715715607726893663824249595608561292489\ 8144416579250967389025855309906601690626858075177309621056366747670203667296110\ 6895098172828503937203140844834180e-2, .535263096358461519612387180805631114870\ 5707264658273348680788735820139775515046556551839262820054793185726149327648750\ 5240648614199156805910215726347672811415990149932656578062814450785667328736185\ 8867984722912056196711486499560959365216928677750503686266281053837304023510624\ 7495532599444633013302025366652528529560643627960028356572753471640642531387690\ 8097973470389156673132949830397084294142403894689959381421073157619254955429744\ 906335223257246454496037742674997252216613709474279071927845332426925035825187e\ -1, .13760733770526921829362690325590797868922439538570191344411828567679689337\ 2045858515530596806921597282134063290346470923700389145065187582697154202626643\ 1275280866764065713027806396633200044488588174166391251389289909217151168018160\ 0502197214042247607909042297141894236013583680815836501139694997425160130388271\ 5903978488632406667218753893646575564253705841209359656094430593787640771123777\ 6225236452040369738552589153582594033402422437625755235965656023541046567909532\ 5944049440646908502220623303586685998444791e-1, .306040234586826413074136309664\ 1393763358782065501743747299605554895596167673499796585694647652380634585186841\ 8841290154955379680535576939644886781948504740365871870020794077008461681735149\ 3359433056907725068175234887305353956746963262767495886619531750366810190854111\ 9678070920992514905637209290977922137260272332247954544857500603291330975761914\ 5317998265969957630826399582513488228242489621348776571564653165711809598375096\ 3965598844139309373753700057760157053742424480140203330955815377044062878386259\ 09165693e-1, .11490348493190048046964688133516660534547031423020526041196879444\ 0997532740758655694412584663480874350283567468236391208012946561725584583152547\ 8098515166360592630408326817536443123699710817333216431256315837348827202397774\ 9761367504083991401928954079015593875681138355537711525068843794560918819223265\ 7241355483627430006109283916778795012255976000674448779277098723699033684447264\ 8137187240097446043190785000791644942624287014681735505884405870203886869585649\ 4998436203112045556390857159526585352269445207344327, .352834028615637719150620\ 7876191884610951482075010678369927893147532331585216014799335880314529109262095\ 6973507587071191798090700895416507699303099968014831531409174309436031077304878\ 9778163502588119456812820540234696268968401692038317543909697629023683295540294\ 6323893380670907719095670489036113399528419105398517769912881730523387285060094\ 2306180089273784104683120655738724881337293983290006940659485563281199805076592\ 7929374397141801364676020949912607417326458176350760718059820945659960121373855\ 29770860798330, .23208767214421472723777653992470747974693506194645796471689370\ 0635760085171433289924081127931638392907418088459577781230831031878233137180445\ 9073014199706590376288321935617676460785071458204308459890161320468424444919805\ 4331187674717569332900571875121094908797850595953689782322161532838122457162752\ 4257168095897695697562412396057383980179813679876801217388146184618875727106001\ 0780149628240834748532116843343525470959832312783182294347981056265444498531400\ 6001052527417021841465008174045971123430383842639600784, .446059058439617226735\ 9407998627412276487989956849792160356794638499695462807604481923517133476078501\ 3807942069365478384783747205598144009433679776279077281687043373935738191166381\ 8259130873229279084362459692403825728235217272245124315631280425030950110578394\ 3822616896693020821728094365986199086307123658103558992311394207562171616556398\ 7376511012778159709494520492061326249181628197369499075026873689478983505605702\ 3572187919521954444301831943707658021845409248302621404384066588458355549399414\ 78636683806441200], [1.9925607777482549507633870816747340513613046249687164647335062897343314168363\ 2551480561345600092956555638228360303603057719045744877348104810543832486317589\ 1745364584600613809649365630225234981935172667078884573749521810664024215472015\ 8715816507575484958185618315955038925423479646651484775417591328645203349845868\ 9663827699020740262426108126142080012054680096809023962802937989683085659115648\ 8048021677429909296704660510562600229908337064322243597482123617925906620925613\ 3557182649743637492701449050735335016210, 5.43983944360306298940776384599681279\ 6469388982476109102746074222195924339635475215748123768347129474505760798758305\ 2046412264417363495346148170493603831134339539277735088978247781937814900845666\ 5619196701290174408591330140944738351188329530370989760850095785593269424159848\ 5004775222901294526934787268781073296076519749451363514561977337210360841660573\ 8654751666808964335472508225739209787796946893693605792998654662801701677513225\ 2995066479289027479737360395480052422852520260306363842390814317546493940668839\ 08, 11.058551612973515715888726037863136055248425212274642724982998498116328236\ 5220817247945737922441514183277755971905023338854920388676871950702540814592949\ 4470348513997754341105540425622823563512397329832021728641839628276415363354555\ 0704635538996427037187731906154613894775567747710096405462345480055042453878964\ 8694020874768376332521269375202564749724569582660042883705601030269564641248057\ 3790856656010286088899138049334792238561750610237125381773523178703245597154523\ 7026011684308821014323480785489627382403759, 287.502910732345555989977498253050\ 8510643588831889664606774538049946123486045728395659290836123069173344820233829\ 2012781550016787334892926696687279287276627282268537736025655284861430951697615\ 0254112563245995317949363204810106716966745059918589214968209091888363217209026\ 7015171683181760054079146682521313980836386580986796471070691166944053879473605\ 8181620932996106302003480536079135863577756160976603603690642999036418755803759\ 0128377024244648697509401641219364287607142176416501302792740469806623144331118\ 39783, 2.0790271498873873544404949966546222229542655024198299037342347670915101\ 4028847871775812923383302505841289351092602551288423104818097196250473825084572\ 2606916041199185362722675200796442396459129254599734017338988055255805489197280\ 9735747727476304942665524409521599736353099802723028386612349862325692841487100\ 4529660134410045370881260233420304270963423669177363244140165046959805394107429\ 1395611779025356770060327866856040069825926787132411591933533461009136583054524\ 9632157485254808384639150147690576787633212881, 3.66132996080915283854026969816\ 5067414698311316805925992563198895603785263305016528981084936825779231222853421\ 6486641245945306565251398935746442026880899277165754782246439729254167872262643\ 0152537214569603744285261974547154433238683961640914394563353169138981051049371\ 9556734377751853988525701405141540064502909960639478397089338067042044908560470\ 5610002883852701864112130565274188840668342232228048995219662560281600421594580\ 0928406772386494668409972910896769892244916531852566712137617588093204024492494\ 60244875, 21.745740283593130568981684175147261187962941191282995611625164199793\ 1469858567060053883253953424870900266036896401309741510168616377200049884434252\ 6202905827145883908556062273918081577553149545342642804598969382634071960347665\ 7342030588478949421798936613187460303658442702131054564933783193260911363079566\ 2167759216004911621015321977835187535870437875894841422936204976004675771102438\ 8009628819050810352230949738048537272712755643734854289303771624600493413942953\ 4220103160057855890226709959216026747544304544126, 199.503964642114139309489437\ 9540044049263157656384641352648632911567303496793236238070246974439325330284698\ 6956489371482532819467955460552953165962792562511424038978320234035168110628221\ 9743742095655782551458220877457644996082971203005653907343305346981670073874412\ 0525455553162205711825078752819282687466416831359725112843427651602125058220434\ 4854187853369340739839162939886158533408420462601636539473795437236339498901551\ 4284616439209793031474276333619327447620076120048054709466540991783122367507092\ 06444920668, 2.1394696486544524246475384187101121892415539571197732367601918931\ 3825927260755666887290436565978428527946362065860664327233416982460206855570543\ 3989910581967298923979029841887520136022474257393191753160981531007736831438753\ 7913014678848407721541053573220497513654244050707341586963097523757248610617737\ 2814450140494931679714006671603386450584865968864253100136003068968856031068633\ 9019669407008456472734162129036262266742060185188565698239633727970396574512892\ 9798799498380382453539833480268212064767384006755122, 2.89756314831124942276893\ 3708188124561687012298572319063817208213977039464962916861840830252913432634022\ 8159222368855127159347785452046887607316637707786299985142322359484032105794765\ 0186394311676507058185386471050078853227009388711319571597671584609442662108346\ 7084316716173756038400578724050944207943182269950905749591137841131831037641841\ 3546138480886962281786631390027687792067209344395738856618212698121792189582656\ 6780286063980486632398808408459349118110358389741080649213294479846112740849634\ 45001728000785, 6.0382128627030151649889313014614891493532741953596902836058956\ 1268763143427202892228781419186059342324962774537088325938702499499953923083035\ 0254971466948207149378274810988448068846636890853617034922307332905885921938628\ 7113559052013395958270594430321587760828970427303298976205930961056551153754650\ 0154969486002896538446468496373911204438412741700505314452206167358719029411458\ 4912000080507711746455157555759533793304212939755702826935927937555687623508669\ 4438454484973020137364631752560343517142295022944660779, 9.66736334723309007861\ 7789769981182687848095737204369144657555328809342791441402660203372407930607003\ 5837714686289068718412451038247532225756147956148044185951408589354929536665398\ 7970712587456116924512287355741221099227131236813243616849185147517224793450998\ 3155866834746419306749168110755292635258601591703716978468388153168039473124277\ 7854516457815309059799486707041961198872819246043110642765633675388763132073684\ 1421450556454325994970252971521735703378011974581575681168895511887579648391654\ 45876482885116793, 40.014706958057884936519188103550960801897327202661744708258\ 5995073131448094263532777876726141484076196538870947970021414099062669889145137\ 9697881228914078953793855678513640325843197290909240463561054213183757533947368\ 8448325335669762325221356805699533461395214063461485452079102144515060323725723\ 3633824565875577418363354356636763037867159947202860106464134233358621829653734\ 7314278316498669625804396476309682402057910708844962122552083344415688646301352\ 8250331733329077687953653327511084831700378661326180901994, 161.504733016958079\ 7343588151271893973356594055546175816263139750074419508458891128460208014811178\ 1185420683624176037738266708513232077059832136458727903721524542919539418809814\ 8077248509264092601747739955933523787389639225676323626686518078249554871929453\ 1738043333199038486138925176022512393836107378033697441947107285597822689119845\ 7988757457317100665549093225926480558698725527810052883482388680227753481013334\ 6754263961981965191155542573865837493429428148348812949174025442254903419734558\ 46076989576990332531, 2.2183726396637204288411369833809179192383604912103354442\ 5673583794608732114606122091903973703191585371712004065981630105735527035914300\ 0847573874474378484693872682863168652530367997188535284262232959303130047881472\ 3492218876181526426447731666877969360466674150719426003757197117580198523583092\ 1351264133968887540371848473180919843089247367381925651745202605013774260963983\ 3244221014044887366094868267481932285602580601648424537856298590850682790139254\ 5832307633670560183182706842906594395193771087557099055258417, 4.68846072514123\ 1099851341803002216239172872944484588620284159613211106095995680400434771156245\ 0968001543100990367265745727945238821044121660411302965197355075279509866188252\ 6135602326090466757638479427400251478810542729838434114589321673318981725478227\ 6708083909935423546035366096381448258848173570918006830790622487602594843736148\ 2700896594900585020993661590745460798015706497672973539304087452299191590203110\ 9867081724026474490783287357869889484875891455843920870107189046588808973218761\ 56436078232709857265677, 13.755205185396899158948248586843117226122772181783141\ 4638024795542826136782896233277557812514174864535420574178206612558272046452044\ 5034365416236578286732971134389513140368932756042599723773190057680516468393850\ 0251610855381116224030707753171116516251862073133677960994509928356430499960338\ 1154876380423846934227295581631420608502849388877834533308507169913592751186392\ 0320508129487606271668395598579881987368269891995891312284666987353240661212390\ 7997561437701338505149080451065738527078331582822567232655552671, 127.505761872\ 5969886754370226568175018157429456622550915827341295209774329468275972424055012\ 1483399048532354853875623001003807970900718735915363988310214859678491367539629\ 9845343742813785748987832181408044662934809772843311977692320982474694820522373\ 4138253340872656809999177589548582147548923790859894752817988711441777046112274\ 7184970849264122112175910134677966174251455424971721500273792368092456065052860\ 8397033968546584849225974980923395416818965369935735811411481448571602386361256\ 58307781279035113335915655, 2.4798398698176427922110204016446541958464064042222\ 5432808116246919025045340232323275154023613188793301743904237569777107839907553\ 6507762236017084501630827233406898724713127104534339823519547624521325519208025\ 0696944474472373127603900609824528366758371120118150236877824711088230798566859\ 8915111840527958466270903669611433331571794331267849745610829547461353075463199\ 1047261730233874410017300715287341143987434429621090110970817174731607007901660\ 0377071891550121853688873134135806899950387545403556283554376842772, 71.5092548\ 3921653814802708921346974160169588643742174432791966162796957253881835153545601\ 6907951120764627951644793878867487912704323201334221475023534255497827492070492\ 7898538972897374180168293080630934015638239044025918791678636096005793925455262\ 8465017011403510486792498546635586654793836772936453478459417721693563968125030\ 9089426520247711386293386529592296711747480110833039089246296606448971636683138\ 6965136690700972335010387603136605429693042906847428353950021545998574592167157\ 49352142174896468322217143022, 2.7198011914463465350937514838250844203988967944\ 0477176565975939364297513367409801427029092949202757627967290991156390195347053\ 4772897388832679888403298725681777368988432663082924925181364998920137874304032\ 0408155011936880979402332501143873619666319129126651659988937979775026493550756\ 1476500010974419290865391743675450605666099407133559450185664884624081574237065\ 6394554579510765289899871880686844190881498655741067865228541710234635827760879\ 8524100829212806583834572664398700904426722809289533151070654199732136, 5.12030\ 5224449736545039033350697903426994384995504263120309925903310721738546644852197\ 9719793197314521770294042781697167463473141631202004841338453626981611730669909\ 3167986594458706763690180535300941821917474286092036357659673990057504654061936\ 2949584284076824766988699903479259009683971613387676649936558047977683459316737\ 0491735921129154179633474697129102459704244100451224020606961146944308832531972\ 1221493936265262067104013259595688712918271746453763017499347021466467220059142\ 70468061181993057666438772580652, 12.036301258187871304785984582209392431421467\ 1224526848501785648885270096720413194988288461043886126350667326630277320401987\ 1359509535590903738983665446573198004797861625336262747094365114588300907670143\ 7390667036433762847973973120414049442742286901852779439188651589454720916776412\ 3230756645228938058721759701527525347925550596732582301156158225229434636974576\ 2122301364161359150956506529115791158491852424519952833967564694121241312736890\ 2559302733172681947441972424293697592673877800994632503017157135563824502, 49.5\ 1242928773286839411307742140482320875621850013431961712481099730532754415025914\ 7487670166144229043445863571584881724996902252282913722114917291967146898552300\ 9095662909818258529034803309995499967931162085848990110185188466910038454207310\ 3308758393481011362428764186446756558333153052621169277401960143516447247452855\ 6333204132031389237019128005976508498792452837373222616837337445621251309498894\ 9206249194797957712318448598163422381574300171536487539415338043606533686427836\ 67800947178762174341836937909488730, 3.1427970006821714051583613906408279848293\ 5631113843418738731495204505567771801957000099934707098454541795128784862443741\ 0937460436432175349039264428389861229465992291081476734199253508170888100245073\ 9035752732665244642793350797893075399229811731580662640062624931185326471699699\ 5861582102361095060753885366271255247566970959659938289847594011174242071879693\ 7400725412926848156542780066753706402370382890703163185743015283022711379589629\ 8506823885433687284451615807137637028722871309933868444286441390991750724888, 31.5177145467739959204425823073400940295592616888509414304832643271171019781063\ 9727840028078756265178794655891440892707186501143095325597252897758875535086472\ 8305730010410971769870753617519428796823423984869771919989724586355216977667851\ 5895387655627826322894646214633916146656826975480861506565855851483485321101701\ 6522196133958058758552049832558531812230438155981793408949657081380429825389851\ 0699960297129837266848554053441167454773813476392108960730105824485759389657843\ 709211512707019206233439973916349902507, 4.074687581785843060732750136896978530\ 6401811146653047729793936496334414906723859639591658295611175268943183720270750\ 9109062312473159395187118534463528243505044097882079062315988561981949272963859\ 4698999498427635111787778717216817123520586648516448548123157500996576330597447\ 8433745503419071225102673115088947789676559757057424645479343303286967364958058\ 6272373658593319323766650628920585995948993069298238077230680442804744122093540\ 3791736665177472647580179921508775822950006760426839974143668682926919762156644\ 0, 17.5276250515225982116454943323697320801638256137505672863055558983657180694\ 7095418589106786228218440095045410768934757614738897753431027270296557963106112\ 0731522271836018301237532954683348089104800268629046122115705291431021937930162\ 9474551051890066017792612814090838330946315587117764826675620264803974746551721\ 9250728877646726744487011119704375243121624819153073555011802345278374896355652\ 0955367243124230361567359021417089125601084867687924450161720355978206037139144\ 473014121792147662746175166871356554293955, 7.550183551240869436567705780226583\ 0356751713498098394690367309987377063181530922465433759306590287702183024065702\ 3079683411668210405474620931044688795494994055765541299225537835731424192192680\ 6488909592344325220614928853781927184690835033980694689629990726490958787829677\ 8315684258625837233507474215494015651934633852393236149548858331674077255068002\ 7183961926081258408625414772364206098299393940193178306105239375363682243283700\ 0452718631253796778781865684382543047600701894937136945624379477217467707639660\ 3580, 1.62483889863517748281070738228384371465939352816287338433450546979231984\ 4030577519429852553463881735220222809246655548620906291235997941842312101116640\ 0736326520280468665658581562780444033334849819419753535587073384423749246275598\ 3278331720153968523356815594053151412625106955172073506032645064426278420350747\ 2384640383937478829280670329660454953128241704440847784255481266573251273990558\ 4074015492730640718892358817577638559119847762607865781125352546261255118549568\ 798046130565009910810840196734992502933647930, .2537597545660558629373183819678\ 9285688556120923032441327697184429622496161220495094987482347399623127162645214\ 1907843077804624589036803024109077250235595562427301295666771631900183001362089\ 3973856217477311049535367737851579961612772316811635865572130669937695524522582\ 8028936593942045369634612347944075540952491895740224134667323178187021091120969\ 1438203475558860862742385958749970876740121961809627908435133721973501362415803\ 8683788474612080011940087325363985381340296312063309459256565257700861271533441\ 1298764, .583655963256650824835433878169200715512144597009240727470617403501479\ 7635699460382892847793620267303762589483978604375022761410804689776278928310998\ 5812063527351412297083706655719761624207570305860934987986382167931301209079408\ 0177727673929771002085807625149173987021104036484715027312912180285697673923508\ 3388787075755539029643543764857634736278160157017336377363910080408482623600710\ 6639977858097068025585293819057918478128697849532774533454115427743467100376427\ 216426039720582836439479446421251033595796900040, .1214602062785638369483643619\ 4898799167758617411221490808397758017328526501860473072280417337803132933740263\ 3639607876943111709919730957702011460953203977895153035781010579790491140035665\ 6845423772917677205133517921439021433483787664242379044137478641744690071363698\ 3266557649945068265497297335945673353737320466787677917520726139426211870362178\ 6353713007885404511618486648859123580052754048928071087494143204803763547508067\ 8217354034663318058186071923938873504805343437357253248476162118302023166900879\ 4268058781], [-1.889948738026058580500216089548063217614900222563698900655349523909901567661\ 1146353425521446533358092427986577169631313817538261369994923360608440871517979\ 1577069423277889792438859859835778514236110559709201941284338749316678583640298\ 9124068446579257034805871421710045647924157522796068806969782986782449022233801\ 7619991771310800037572693843515923640824137108380741434879604544577824409965226\ 0389221492044597006973900220787430385228926791055469627509334082623444117648391\ 48140280457258921639379859243931984306178, -4.096547523794488720428688178757637\ 2715989301274178784182416461125076215883976212828273255371580927812042992263919\ 7543574841918138489967162133809976637931637182175791221155127967981964542663083\ 0072991433515704348848834596331605828434572530847130732379625439122310017123441\ 4605119138490192204112554988430181748543639118285201598113563991142147028934260\ 5128755325002066554992959150769402070498586374155613485145058794107402179179466\ 7028618387802863204790836356527986947451229020637856714857317178462425587256334\ 4606, -7.6757497269721607479787211278778038074033397137177733849742365738819159\ 2192205225062527086264484731629388208959436911163132807004668317773950984660547\ 1946642454950885323614582504975438177649037999939819780899914823853596560222095\ 2143147393710267251164246929749635898734642190507174547814251501255742669024163\ 6426723123067693890923840706845743862026487650413986585282667624076286798517294\ 6873956788367927309806285144260617815004293754891980477248493242880361807150181\ 7836266637769416165496499935820508820596324649, -183.66665478818207824288632026\ 4599014761188896867054649056131434016269803755133896282889309510608625501330579\ 8166082535671271209196004553773626143975054342277798773126130880381505730648146\ 4421734951558980007628549235078339919561324969206072064706029085854765861790258\ 4096233166928687008450784580475476972076757471807818216577361620734502378654238\ 6046665839365365194217416597149432780584181312167799851153146515336001436781287\ 7601671988597272690866687142267608520071914859618676030553728218132798127158225\ 740333793, -1.94590960098260291019261875139402467521126073011302013785855852180\ 9507134036225947988339509022803244545631846021194638829972764640363986611138730\ 9267063106943368434063794658218082728360632326662214859986684048890263322677715\ 3356050088856901985144809872638706768268568738018342640156316240551825601386042\ 9036215310990691010614875369318951701022759597559981568326648621518675673312571\ 7235594565168801637556759110866246087719036427480245009295869229332984671628329\ 525390557539698628466641141555462171644049000523304, -2.96147756182727170301120\ 6306067227650246062725479675322546768757987235540460814128607677061206909627423\ 3081880856526486355859677481202010002532719605234930494125268095790072058308594\ 9157483278662339315062098115859454503207191558093557621735871572497589729614566\ 9151763567496946728072424305309270148370752119525708388483346474893062161263751\ 1772810023790027540039392923804570568507332389427828819273418386519008905300121\ 5771354744322079595423043518147573403924570901514583233470023624502682316588383\ 99181283708378, -14.48009401145234084923181576859551946866325262317849096431491\ 4792255341798690819443881273926537864465728599859952250764704328982277809580751\ 0245629037849665560576897604224958652683313143729623989800074350315478940469580\ 6731150682883821978353077808403325515900389971838250514121245587148078303626983\ 9868535594541374070861314493977237692432447979533536392219218269814095175811045\ 9109176608403520487819400124533705337096613731921389174048693720040586423390487\ 51008106829804314740453542084409579181024786213472478006, -127.6447832426901729\ 0991866086961292208708441291076611206792042291844316150043260332702843734498859\ 3795624538737923913814925959805986926198917313650501088202320365031595395394292\ 0351748287512172529861829243687173573050581672691287554484018961483113472382308\ 0730514030963884045697778592904917901245390985559290684320763093040518819116743\ 3169437939543214268491045550575871872137747944197418091929514688332310541223503\ 3075894320010825218663637864562519618597096749284572031984165063690195931754011\ 2648030574173246271, -1.9849771739538109172723419351326973022480226765921827455\ 4669152805191387105738235331378554907367581044493106746487553491615260120585556\ 5839054080458771704007123260811799244725702611746742636148261103141421075406804\ 2398930737295070845160576882286652917540244080015376430980193506978168503974881\ 3822034398572077685769935251451590532000937409346403494308620350785791446215387\ 9246732997098630398256923170937955335917474490720410624667295544792745109758069\ 4590504014553034879239590125661124789077436031770940008252933, -2.4726051813726\ 9551093436478029337508031708456917713771109197722240586954965496022181144178144\ 9688241314975770692390661025701269155448674816258964483539271905002312553301641\ 8410677385678004492478578837821633474124067574400607274577512296647303307391261\ 6408637225202755331976084960165849008007495509079904282412044539324672129368026\ 1537902157807477073488115747905239555776011843365183320742570736795461089492484\ 2841478913294364980693140240623828973503679722636600767976680966402010219008120\ 379912058222215836025996, -4.47798635387238962271528685624688444907990491494622\ 0298213158158860717168342803718024539579954896121247707523291224475331873388380\ 6699927984257068931129161877018858779403597832875025700640331302611518816501670\ 4134733105654629046931517436859382434220174577066453768428226223267859893473809\ 7382292256860495465806792502714126065112025707492776674432334035225620594405314\ 9445382716300326414430375508480033312700900271625759723937449469308486739772978\ 376920440440143960805525722508827041857764473071674121909925101691, -6.78984162\ 2840414132656541880880074868715731288134570244835814078682055616904702116926245\ 7879126746122567956527545576650872186488018693360819844358714784541141045665365\ 3397659973091068691443162907573172519014076146605315180857299184695917605692432\ 5031666805604122355949164059795155697538968839341935766090271096953659182106131\ 1911452712274271785007229929536227637853778513752417160540327655368470894753334\ 6866642721946016032192734840174050818737664139436610555716357333494880422144052\ 86289035264581467369918098814, -26.11067519008349332976251074854634084339312300\ 8415249610578965518067983200338324576252701176416603318939441341738260165519030\ 0581415824468917492577555941851295230518580084284182559669262824673751740279388\ 7939294113828810168792910126548444950835854863823540007318725193962978764926850\ 5610244850474374852866532566900670742886996828440354510435298257236322097046105\ 5324038632851901508687848588307521143008753271933983207576405645994369621105058\ 81092640369185743626060548299573770334459017481902872714737689777882230, -103.4\ 5371860215805407911782667755296001817397862511291723395015179051083585333317529\ 1736345634814111253339644515555482445857126044766911448322530431368108648876848\ 2370061590315823666930652196403867144667045361011796416669673932878930520007760\ 7733786488997156568235747574770723140991090982895007692665945112351167528762089\ 6524868914642332904195730933381519036530508935217042122218263562005114426247508\ 1332189951442651525448105582461722914904223975967818744596766849193739428427728\ 0046061107646491628172688489712632, -2.0359208957497572423356792904126802014702\ 1505735985185806102488770247886870515724768347824294216498829901150938884044663\ 3943554473641881289251506341531284266229081407698548109845777756613262975872226\ 0555448370922430704490904245918096019808512125898298058718612766095730581449958\ 7915719499137980589564737588410090815200887938639885125728635449903765123185127\ 7193769399370031932122021959579189176057525547719909793832370399206989993959167\ 8476282967261781348807890087895887784171326044582858543377783214618433669274, -\ 3.61733336171790462914069296139365909357757149950815631242648592651267672199618\ 2512629995804771918522258757868877492807231910082063751464237991505468961111496\ 7984393974152788424918303860694024663006839702560733334582765084260487655530964\ 4042565053501469733716382055716191035354797891104587692068586146855098672683874\ 3395121366856169611812878811877880884323433100062601322262923948187210112849686\ 1979752918106936056727720526454377546044969957155465331514132662086206824680698\ 853088965115265458659677546197401039599, -9.39279613794298558511036614550853904\ 8703714690729035065921014848395088682905780353726544143993373415345057251902353\ 4469043810798035052364045764707985190450813099960790082965171319266616487725964\ 9098889142863841107031124967839495755466022881282425761464657397607583944744114\ 0986727769800775575670166300121929117546765512639524247051976304188404976796515\ 6929077394595747795708984129562177562940568175032868470449657634211576260032019\ 2533634246751390398147591137211835899868079224559629556457951579343583806179929\ 78, -81.80929717541255940619277640280260042772507741438850534736376691427298563\ 4654349607385050440645882819921808296555265587397408974821354174651881041149039\ 6684502667138198898686645985661818552573148527446112615404320886959001515836341\ 0084346628996611360138890957741169350349958400745552047989322288451621255826154\ 5279081613170004375546394058251722973689956879726725928831132846668930369706045\ 1344805551654952738345188719924355050045642578785331253181873004214212660144098\ 03517049752480601409411385934296539782960023, -2.204362315518645022934706989986\ 4120957991225446341959870900915201274300982121168698568255205643012702129852640\ 8141924289218450007694250851595222209796598396605435645827627353314821495622798\ 7104282491499178819376455774349523594973044523326876410253869661288447130451278\ 1479299427011541499991187658218066883008038763529764494736342924160356150079288\ 4976185220806855413300191449867410489684105883479155649706140014432262910220713\ 7316004658566441795985294904413225409706802857195641101506102206539042719122341\ 7037323, -46.160791289695567435216099118056582346228089188572500013056974456233\ 4185046742804381063139192663476530834671661376901813720883578625865728526164164\ 8332807747196655415460657881266839242746626522074555380799014422231427407738671\ 8799569257228183319688740896525479172285105650766958078371331980291577961761987\ 4106275263715107490227670768804357863040845523389679695855683825686637162451089\ 3399826083528564805169577290338655369009002818519560747747076029258687287354131\ 6089014833904576379219562113108630981589533210098, -2.3585581620517905369996861\ 0615118925844031648075566934649089837311817319605606553538352177636080668855286\ 6763862830931043512245088728132432408340829508765013525722123031053515829619085\ 6167333969942721666294879028312059494493758795755726014938122992508726667671951\ 1972976422857371361804923951887893528847763432516304707165724796509845049488565\ 0846906142197641467941458756485450660709728405740666348609340570836690558057183\ 7036483969706377027144307375886173512301417752891668490475786369267554593404177\ 139752862642, -3.89279462047570163032680328435464675580006402415361576618016928\ 8792525672787460819215672008676885531398228856619808223399482862009841434709785\ 9181090643395874986276865192356286324507548012729464766648572698219615449051232\ 6667805135284567482381706544478616363057280764952199973092421285104504961196574\ 6628677509266128880618804528722412802299783759285641867787743901939781508901295\ 2352397845554216910099671330484107421760333795947111708047674376984361926476319\ 138756818727107817878655383877198237245968558863041681, -8.29833565292324747145\ 2818606662673750434342897068622802007013487517179984267119951376446889150305784\ 8119509236596014732776687805113794907451317098501709197875720413741266801913632\ 0501557724946163425743105063500638549846475024554713729312050922346653630985234\ 3485870898255205823096637281906628647159609148414245395901183446510530947519831\ 3952247368152330375989106347131572152554438127026861725607060466759652046679628\ 4932918671686151520799179432121539434572388885202562748449950783384249510226493\ 89294457239019719, -32.15714455874635656572761464826746382310254378577991372287\ 0700590750965449591562713236582032540917310307759545805015433530099889004768249\ 7561469296888579226445608867350498952956858048609881260151433875020921000021454\ 7124843173383544869863042699647210700739969845892256581098207594199781857140455\ 1530246549109403691849508986209212742532748648567551957613125438291090673583421\ 3815739671670451592168834717272883194153175519072637508813898666574485594266045\ 64526474947401690467004336020710252936945652293603266069921, -2.629746032665655\ 3884443091443538767451560053550347219294016115606502870625239019629906990099314\ 0815912970052005948610425902470099308234425150474592172145868297799523371248456\ 2020767975787402722678074601532778897367653229084681847490634266728935238704757\ 5805412019625956230247027028477270082630389823652024499208315349167112724670632\ 7685136614824364411476905252190641008214714241739081055201084524630721904629381\ 5483502984384721820213182818133352435507976823675327658120697684338522970328760\ 7349123120402167715466, -20.701268809592200865912370543865567209905510722638297\ 3166384982384128690998727614822226198045370092372562779083943622617369364568868\ 3666775808040527285283744311833387243542092494331636163221299132520615525653525\ 7259830154601085929629201108144885661356236239503463637263205781503045503082800\ 2237262051320925470736567830875068982247078398329224381120824203711186752319024\ 0209966352407551483101831881180192455814214758401527061416278153802430264645110\ 2731638953142788106407549418932958965519738470640753434235666285, -3.2255683528\ 4332559417231507176134837389492999947598714500051106819057763342225854525110268\ 2685416700743292384832057948165362387260059967038233884302125135771847692498871\ 3766342589149360876802232955423882767349479385716046920827996738850596114300612\ 6819572123646965405287466958019548234629151906432223482368797579220170330146303\ 3614715353265953079820783060410099221499468612786750989484096583212146281488229\ 7999360987884369481146690013731162679531210464119509173642008266758431976430761\ 874514095385592697904132327, -11.7946216058758449893846075074155505695818371280\ 9852682203577297160214674131056981634983737166484772586407283640106115468244791\ 8918204624867928810176660374673179468009767436167109381582492280152898976382288\ 4475316732623592616124800106514432843505021269288285354116352363621279645926948\ 7034949132248295114072070908205471452835699306814624042272341946897146351308314\ 3131107365966468469760330303396341863688089234538293636749029291152214028119889\ 749922083392586744931789749683812756239982357812344606627763205262533, -5.44137\ 0837174265719605940066224857902590787097341482271408798354238536675878010985547\ 0474492770486831055276955682317774009723694212200345234674894587447592277147330\ 3051155769030432833343022038761968815369179870916912069955499722545763004757474\ 8795110145527799377408660544049756020521892636516239725263283530671008453523537\ 1067530074213237994777797722539063847132398480350473791448158875032208389840343\ 9480409525286569841184719869023306367661639212542598248072982894679754397869795\ 80231850082603631425695357999208, -1.650682606816254391077226766119444803927630\ 3045235647623987103398675685724006338047563356763688312060229216427572677274662\ 5626985175201093060397666407466720673377950756857894061949242681741759857546814\ 9593834685342043878525824439600109798303118596529944940408471198088159479628300\ 2529338776439077939963198858495395824400797745886290911528588658104847928268540\ 6923153990460928772132873486114418879606291864997640361893802741155013899805243\ 99691146430613038043356220372923490682160525516258404795469280156132350489, -.6\ 1740810419068266648497736500463450995562012532089999609763382916405137254131247\ 0207488167991598891054502128875132399329244876741878727147957797949354619511792\ 4863317515536438856034058452188719512016767628394264985760515107467603365172487\ 0457452077159696221512630100514256257862449394384634238813845096555605455612268\ 9865411656321588550182403846279767657370125150726081624574984218623475237322045\ 6015863749582958264369886765823823463055231743538771784818060344734987325230340\ 3006537937399466330041536974668624536, -.93219375976297390522550831582268362621\ 4444096686441770014068313363848491424031813269032418129668469868309207473013311\ 8033717644640511040518092848188034559853380165273298363426222961906441097714404\ 6547204184508477750034990980178039630029592583847179920873160406278886887378086\ 8799132668417777266970685903690538453147150714804115124062142312672989666004151\ 9515772793821465281632979213613181621674190666435362918553972968722678137932945\ 4818910769212913845251129770861355139421121945106509603829740940600957222484978 , -.381335849241803248724464397933387749094198375419454504423663599059279353279\ 7753394059931499273827492095517078416297827618366341056283641431725620916313945\ 9206510477522372608601267568808727962284376701573552819753200435238043076981455\ 6887110395425010936721866477551988742671888033020310846630693335649232572896046\ 4095557566225726716996449875725635271136903028475715256966598748096030635163042\ 8267358637164674463455128095887171712608446945433510843914908870946911995682271\ 265557093037036392210857195568877185436714], [.16907627701161080647800004886380394669991528579374816044681080449163563038274\ 9357029423675317191416658207207235198354728553153622774909818890884455919083714\ 0561991438315428709776880582011403786808651885605348147476837064681323942736371\ 4024711857164959594063258408768159127255781340720482424766960976499435719437824\ 3605780813718799276320424000144786774297182890100654761360372296210489000163103\ 0515542146363032793550376032189388951045482072035050317189408168128996512881132\ 4931496709493765636381199905878982679562e-1, .422401927424551153666522773743962\ 8328782632197719071778416467657934502637176582242193206466466590599263421452400\ 4828294865011641717006653385522544893704785673142010252145296065340786976789725\ 6841442654778957438848222695849059113900537180430849620928295512282691368004785\ 8308021316641917021176408678086504840349892745757331126985637700852253821358256\ 3071103794758799686753191537113401833024277078216360947128755352312996079533283\ 6236863324145982267654011127890386877961100721424597544035480680818233336562163\ 80847e-2, .15234644808654730359883784189942261938374382511383277714321390386015\ 9766364341270357983957422230035494064077980809277429656870147748778700187646632\ 0051366548231455199765048158856324293809019256725287792534435315240046588115085\ 2459468014691282839560825425916113710311818030076816870322220625844388079378291\ 6072877356607128571730086188706348336627468498072450035033796650434407775044713\ 6075241908173693373214829369583327751611473035771338769678163648060990265214920\ 4595168898357898716274633811003978919337443610435e-2, .120615608499359897369697\ 1849570138589349110264883091009345458416488249099931448264000197872852046636147\ 4649186316880773466375325087918416108820531956254249637143033213826452776174091\ 1512369023763920959705457939052990133720532980647236078938613875160449586514736\ 8738241688696231734350103383867923844219782952128080242536542945619587287628960\ 3143217634353380716538393975027151921725549546547521608186028367101875609662714\ 7728749900898866966239465274652532224754089664166301688436139534685343919799197\ 00234007647051e-4, .15972113178804609529461790187571543905141741067083162419700\ 3135478017084019621987721465673932321808540946170587601198991423487161401038050\ 6432888019102924207691656862428381984204792053228531276883565366237846461420134\ 3534994513683166896581076317023213369599754384556341742335404928764895724006073\ 2152113464299668679320241391460800225703298414215537461163613212775734687095194\ 7937315811988103732219970655156475069491751846782051425755009665695354003892094\ 1861886025659238147260395680697309409854788946569705522448e-1, .736737360762800\ 8620695573669821408484475320999200084317971995220536859198867841504315268459888\ 2371933908352337037043683845085130991999648914980741420722140570898171868801599\ 5249346382713253180399646517038728680000783518618763771825802042276954218417317\ 2166280263607744210575885427944229623732199996084067045844636027925258916634127\ 1900143368094512953689114814535390068967634584943405920858692608471680403834199\ 7826475565610470337276085667699104401876229165083379796009321321291595429591388\ 01337679883638439172165e-2, .56567119054670572782323431087606043281911278092781\ 2333257002470448309087451210827210098095639413027458539594937366140251472459172\ 6797885267076454379812947496647377471607345843161505860498189761847455761706555\ 5692216966402268940119089712827371814888043470258621278167607836280515605140737\ 5775806316319514454592405085822271308522398278948943285601958536171961766847002\ 4707247665555029561670336314489390050215855288862264793045185895081368417650676\ 2073406882934783415387196840633286336719952928366344471118855310140e-3, .208463\ 5742232715263820841526341761842234683274552520432084178158011831197086184069250\ 2418418654753538067436040261884834343570979606117553876746971968423848595179952\ 0917538058570081224100801576208546541802656159679452670613603005871306272627464\ 6349891416599406577940950727027856472524133988204069158139162379937630368953438\ 1204290267441175134157900537614650815810372214804116324542924203545206041410218\ 9235808578461917634389291776103954393639257283543405648086139907575937817929194\ 05797773903697373751181826061220e-4, .15368910217062124016058433635587430886755\ 9619777013808210780693096810142495160499200423684774501017918831790821276085404\ 6888314876810202482863202166376488500625763112096627655689920348806281957005200\ 5778634644432689962580244544618025385823907477922007329694211150560422187677187\ 6634752316481290913724665442521816261232407178011700897114889311799505750365437\ 6028863945775735804829873382973243185939726818479761403390246242450901191449105\ 5698777933522487485688831966759072567343239844717147284001319288754932660340e-1 , .1017850215667679120659657372912359095478445323509418094421217057140973880169\ 2576003230952841829691484768139170068966617260855442678605945959334203416625546\ 0646693845287199232845237122655337016299866719535484513689074565903358450845135\ 5849109028375388422671963328067099158540600139899584496695403346809840876388081\ 9607550476940346837693987915738035104254116101441603144797272289740088213574383\ 5149809791536703167211192340336779688942950377707582675801022779473874710406688\ 05405063751726688929686648463358741157948e-1, .36416881244656315033625428310782\ 6879881177364964049558902075335625341372529359463220183939183727429333013281516\ 4437267670285546499242410847816287371782005914538731847024274815635690760400070\ 0631983807766918491954560772296375817087197189597323081549838170782125913814263\ 6031177302280819368093259416496639892807847096875289238854398102255377408814802\ 0225122026329023294353805180734460912248487371749065105686365892746192388564710\ 9733597724380348557012106249462144627247216703677114816751983403598806474936765\ 058192e-2, .1851681413596595255653369169311786846839235010651887017301819186024\ 3050075262336457811226208374452743826545394051896765808826829618526661703370551\ 0243323841321209721871381359285239990299269622062779147130115143032126452111597\ 5203231865537756742879819069204513237542451903499861823516998993038338503101216\ 4682771030066840874140662723604538972617114267225172742217195777192176531232134\ 9976945450706284585725428846116243161795358724597911081619436039342905982099958\ 59098277238588817295960586203555497249502653733094e-2, .22933018581674336055891\ 4884378616943535783022570090727364519796571942886539786939443781469814949702649\ 6629613657924764374117626555133924280456808300422578699083482934466615952132749\ 6996553444529067403748788898496320921537436106547784945540091126722846568652852\ 9484302909827450676571356000358423183689917014029094560588379870472606919578429\ 4590663133093206989983390796594939535600402366451042603631583729181463163581797\ 5556664085706145867772098232684661571080214515271080665245212432929657442742259\ 764892934823555e-3, .2860001837930908220079331920952042579403721508707070838060\ 1479324021477781974709058150190915771312359268939388897744642302431280245131771\ 5484974819652766090786634608335559065237507737172532018764197374028737372205297\ 0907397656279456366640654619246150348682736601408526556209406937296328106025691\ 9271703101863181654951747279232878229212787365706220177875389736580229225404891\ 2593224492483291469988387118389581997236440782060791017414424807250658345985099\ 47332355494392555137768334077306245487586836734299717554881e-4, .14637475840203\ 6639582416617943956716229645382845719091030582653368739644829937659482589980832\ 1209742848076325202007086232488225825321811970427152508607542128756205709669487\ 6498892752208468563557073634810830902808691485020972949033077601382141844700892\ 7788581211862836635848099307775982893596306377330721137109580595932340809589915\ 8890185484019734555223040984655637771209877910570669161145946728671744567888005\ 7007280378830143288503128121524005581955578862765685464468329753332563634958038\ 424853940475848194252506e-1, .5211658625819366100050328073976101978963673217670\ 0168748112930048916430422369796810210213823815613637110862274856312926094885671\ 7979854744370483381921925002006667294421179726593613892304363622195619796535764\ 0430383040354069555397000774304216894597702761281235805124578625888123256860480\ 5282964208381517005089381948149002997862202391258851479893384181545659538238097\ 8780429624347594153739845289889708472155928152357659169839159584572773494844120\ 99559640646255278586944238297641310387832039989642343950395410543785e-2, .11083\ 2277804694268371814017035842761900632532353227340495836277300207713624930339886\ 9223320926688401209986525994515562269910831479892588741183826063146014514987921\ 6436792240521775583264946759431972071460612408170913158809198995589054289891357\ 1362139467932825817795434727677130435949878955241739292868550903055595154500615\ 2129515209790731763089989277862217819885267217080140258439095919100006497118779\ 4681059237204401779642693982828998192953702302213871175394373729804210758143917\ 410235424632008210062638205773250e-2, .4072985612192880621833115790754004181603\ 2386679007974859055509955617373796190523105131702895580142540904912175486329325\ 6392117174205359736510772424259288754666908664895554273156842545209792224566377\ 2309799750402227950625141124080646635029088940495723303944030398901725722014576\ 6812651776020896121787267280587845671796231133022323921567552351271376018202403\ 9496237675540455954190090479672300007329468202626070706010494571223472388844710\ 64313524097962706499129907051546513687525504081893723985381292673558813193535e-\ 4, .125887781061402440015514241129012142124408131986194990673088924073496339980\ 6455514000387372990810721535705017227321388046580302920976335035572475339941840\ 6296732018231093778260692967026423398188233557720603022920155319269306977929302\ 8653792862479606944706117268945295711516535494584316959347342227182801922866901\ 7098253983803531965675528275195575105836747707886702228388639921550504310826897\ 2944666429096773419397271982655347496585015055123957551228249579114152899269112\ 970835273446913845321976117527922765411258e-1, .9661818260118428051483105519256\ 7744143194629492780257062412245774792423398801150093208549545449667668221784157\ 1241312220719886587945133770595442495273487409463121795685587190700828146312853\ 0510728028624833839999430456782513937061694968747314382512468073310132069919193\ 8818717257220746779741703672622416290382798615446484275995756344534464004817237\ 1587153225320228744845033388833985401632069996672148984756146926181851722195579\ 0697982082977343539550226731208373984074464344732149032012619918972649730464055\ 5244294e-4, .111002210296239285796955717493005483388064779767069102740406936047\ 0856371300220790834702661205824522368155314577802846372354620147333416699055717\ 6219798561105509266229150409667644885475405048671421166260991726919443102668605\ 8850863485764923243522513575067182023545395448281324359858483341054990003186879\ 7509897679451800369031520602997184203955037438228031966422446075175966802116455\ 6154146089348555873437459620561265739116575755851052055395142720998764571878097\ 943453375348717574299065378453216641747161958900564e-1, .4602165820928095726374\ 4914502242808099506942323051148306880192825867962924233546605400993124689193202\ 2744716636903579415353457243286771550908569979423143007778091612222580011179739\ 0824785884160103884587154915996463427776087750773721935210063060502722195223492\ 6943422185502594047912812910537006093322716393690855157653096253756892179509086\ 7186212442354029208813083099201425979327204447658530224839599846875729328806353\ 7387892868403832077450387464347553087696768083284306147876891687871178767392233\ 3319201879954430e-2, .134672011868800012548812082717372721715522805212904190520\ 7496332600911542173684313539711058369690285007870413499336299452577289739929199\ 8778738463404346209746181709347950534050884834313239267371455764919024686335457\ 9175737685148141377643289514406895552607044575150676308541527193478528734864677\ 9873683689389894355089085602716343752561976066860178612926896515596010862262174\ 9091569226341637661492791140973387748944445680867999647134955054073240455527412\ 269433320615668695459582411027729004268209847150771689525802e-2, .1670837502315\ 6417411097080942497874495838510776882191397219964607633909340881011804552937523\ 4631824665428868979055246859129554835951022299541950560195651953842351253134104\ 9832224043963252826479394291019497169011060615921166029109672547830152229395553\ 1830607137090675292991399906537482164602416547083689086867073626444441180717255\ 6893792111466878222259610324368434324716211748763062257878996993044018611865494\ 9036884711411615901348684804873745928076830788544061715117450632512690875498104\ 5741814345451743013619068e-3, .910243227491982138388596250369814142090675976395\ 8243510808689973339426146540947576397619583565087972624130826138616448554882825\ 8619213264348419009015922064684061261474836960247317376307748408471458341925076\ 6322289492347282405511598342638287807086093298055377345235812852349228439944860\ 4049566019429014952332017459331234290354134270104975611220618073447657971275010\ 9061631697736555916058266881961708275407356941642393975926639808537720519852217\ 304175537979360744348534084212346863149779064340141626499009353581795e-2, .3267\ 9438763566841847379586136543662784485870900512423303756689029503945763990945431\ 0409313491770322550103272138392013749327344285288604113780780937336690074648560\ 3183187631651490915973536747058110435490219782829519739782965420398624764306396\ 8993829388619229753285658174906385903125763363371387027215787033532542550134478\ 9945984755849661031052587009800860004196891177334123316704146406085652305890960\ 0726114028619716682734980579908862821902573902193650843860197276390323379503933\ 3500864035046782525400923826521353e-3, .634622427488775344901527157220083186359\ 1187000196436784204863577052623513452012553688550068923282998495332727334155205\ 7920942927611668884027958833520535096164626508484732644679317408789165189456190\ 2373203443543693180774865434280109033206445169616444121937040172339154485814932\ 4184908531392090471940111701554729365241439792479069630334369604602150733277103\ 4962546893215063715936111479125723871275619686300426804756895486511236080780629\ 645603815038900567302956916659143797310986658986048515068540699345681886333176e\ -2, .77697821324549632829191977000206248571945235350501848366085136874203093102\ 7976319577926234067951571985229844929719012530135450419065497630852955776356582\ 9353526184192794568259587472489134442854877135166682807297905371152979587437613\ 5230203151152670300325317496467574964214216840952003496829702804704552426673490\ 4895034222008785121744837117654352707861233292939458265424192974113453917028069\ 5947389235497261649144611087226795826050967981456920679214267872903221739249566\ 9749845237402324468451488720828698043857559e-3, .264511196899028585635344070306\ 5693559338539577380986764614701225259743805974826460444684791668984136852436641\ 6435032281087894441125674046168002194539685412550530592738834844509460409294096\ 0567228051156280303425371288961931495579025731257821258480016455721454386042802\ 0979175921088151242059742841763882970621796877020765490684125395181949413237822\ 6051935749502186630754236928001229519751890820582457155244577949721819004642865\ 3671508907305043833609741718455112003157300834167033707054751978403923962954478\ 73127272e-2, .22168424924331902476285747629899615529415349169979258090109080459\ 0007041882383252547115513122092830979564357435121689453009942070412119674469667\ 4492574204089437588981110296656612972605023721267192026680893720720326928511326\ 8140338831005062722671514140270936571129581492405544484282919585692687613095233\ 6143145666094666412475202636445428243764840954650914988772892088695772991082495\ 5962770630860089566702028107495307498975235066480224510069404514230398481363422\ 9439422549410527884920416217049363846952678817597416e-1, .212739959239852655272\ 3543933759320372917522729156918332551844504970244261407308698893322656697149777\ 4407819923916547535028575183805520690305368349415602065250071038275427584430192\ 3932087970665303079082897832031996026303072075918444297949920755458499211787852\ 1817745329978178062157416187107738717983656605665974091153175021707620930327717\ 9612767254310401248915898413496315254462490826748070372946178667053610288870251\ 2863039646896317601451190093084827017782308139428166793450718117921809141066620\ 70618689696929039, .80774113016092303855677801191552414988552090989304826878635\ 5493082075844477823673334745139094114330050172034639559813974973944296393508540\ 5497919616934992787441799461578161247569256528540322333956400809719228722706204\ 7053223690555109859639472979423439315289987254889704590284343297987052499823699\ 3213866014597067301464644882436623335874269058315538193923950801260088533170939\ 4090218720889268217139752287857545919796706127660035109412342129595696172797619\ 0018522583961159683545568888797298313568132183915657086402e-1, .474370408778035\ 5895548240178693314512679173311876135612990908968997031808445361024639951682407\ 8335709732905100161798063941468132017645472783673261425765246501729108222854076\ 2511093644296606733606422822837520945896201544715387843429397349204099581090871\ 7537669971224975490442842093322111293825630290125170011086524811087762245403097\ 5061994321453104002151650566397242136895029458896955560939318591198107765462556\ 1526084557164869427937833469593222436336904156810519206286387082311815095673435\ 19167645005413621642859], [.15221725278048058806233937376827783085855408558378069040340285801298264991819\ 0421344161116195542206390764861746695033271429075716334105118578550765281866897\ 6220635415670061466997661637176895002589075121484491518849564662350148245376362\ 8358906891940534263999692159688921358584289897004206884432813477712693079239259\ 5331490858878085372825699379833282592772649438107386805782349318597529615762586\ 9005407863601582837120297122293397961813869857623687371340098626494964840631075\ 4683030826439925373853564601404822236410e-1, .404811750575151471946178421882157\ 2793117034145034657926238194796112084827133041216041333238384203821837691775025\ 4231611375776634598830452644923789354157341769030372824787059551921708897736071\ 3724669894223389333772889377951053442717050495158356329074561790754378149668068\ 7841955851402965644987211302418505122631363218762545713839428488821081498065415\ 4411005828690407914543249473420941855416299014825284189395656276170257939954743\ 9009127660422643967805065826022173852949725232228814999574220642037874090783326\ 26464e-2, .14907592580547561197340550187087241939133026958976173704949698247967\ 5270151011291380654153853074363495094424804960780193298378474317860696519527653\ 6863969466606924733772501778761060365677230785684752168288169925443261541490719\ 4005486057000205699264294947594074521224160022162937260042582049385503833713799\ 2080608104410790228873580937339501500876138268066898557326037396604522832097869\ 2692443041847889929115115000137531342668704938022773893551492693496608471525780\ 5559139164594975949270200340603618342151429422155e-2, .120510952879894829606536\ 6420170609279495266669265455819744050083930984971846903373363052415444776581357\ 3885076123620168685615268597471602158395720004485848006059177440210513333488599\ 3451091628818848311595840936624093019926512593790067537936611394194947516264650\ 7283694692274000727325035791644412694973515274170496506708826880426251643562078\ 7789885648622352658536214297663775647014627265185514270632648929500019616796186\ 8537450712768911221513793182359104575097224066162370669447391658103237918538496\ 63444466305939e-4, .14434028475866175457677916239045397557311577794753337650182\ 1066318214619691373574709703948176661746933235289264819240934005232543808638023\ 4477988461283512361001049753564424831726037449856078007751167828824207298391117\ 7041832549990474367238376978693676240461175257980174677415877325390684338451530\ 0479316885500708541078893605896582825041380844356631784517941754882404181091098\ 6749349424744299065451547740573964674869099594165773002073971292710577022397435\ 2358231882942281101981058109986451655325615842919629098504e-1, .692965482675084\ 0807722432953960650958596929735362885714867980470610870917647237268922395030981\ 3563971703024558627831497807203376160001320909925480781218322835062670132179151\ 4029128884774440228589056135480582696544760641478575755526078564656072417720801\ 6081495271595053683151182047600504559686439448665993483783195771742036019074835\ 7784185099632244735406183517959611306962692393518350155532888863688835122517394\ 1929306555081999478742077114164935607956952254450188727076256001909950984017660\ 08401543333336686223513e-2, .55934304774884612053434124492818172210793424949106\ 5001523819623974282025006998108276469096892354369632241807106768691214458247873\ 1823897052614590224560463197069463600616480850087275445360459537463975923605595\ 9909415066403030286741469178097078458257416209232007156421617028250333459357496\ 0432555292534575159987268529408230974538042258568124005254139244553801003669599\ 8452049662810474529509298358480376720849405343562910214506538454697860332660586\ 8557128388504881188172627752242529100622347865418514264043977295912e-3, .208203\ 1575475626142945881569736951019265173699394436136040669687124036741466724558474\ 1581311553120378366207369232838894522597328950871384676524243564652795574796740\ 2204868946407743906436536497134151775050160040767912552439945090676740090049527\ 1527299304649242835009554744808440556450992793239329591603496358300333151579620\ 7986077104715070242363859194489629515861798040893548745649970985621309665835163\ 7115790833558645591485152859333161378807897042245569821433531775913955785609876\ 61425742533736502222807023104374e-4, .13923469454142027765776181882741548932536\ 8436057164882562805884992527912840847052961924270326346760513242988689744237836\ 6909997233281125157181875549876078899274405827661323456566057604989853877336134\ 9875306837173518163248732699181361724726808571139621903397788517527626932854602\ 7378177016269365984024458809799716846116252769905486436343832425122128684277220\ 7643733976785691351699994847613717117286571525178863803059401423487473712293396\ 9478276714101132234147502448920175311769501798177291383298832117409204906942e-1 , .9437189166828027053993105518427769498825325852204974684466465983372780181235\ 8072211982821852418953033182824735013993909708175405093063850433766874584490774\ 8164055148361577116759516799454584168401464197647833896157437563708772021311666\ 2817154184101891239662516151325280466273892582916014272253359096794663998626081\ 0859349587944234011031502332319644077810558539480302850394377495685915661735071\ 4671848091340050439201132039313453627977329005674080427341852907818988936257605\ 74206137320062162448416943793437857865657e-2, .35038654685233511040041473598474\ 8532321959626118739288713203549487144965679783227388442040825600438621742974074\ 1149374982977304496498191279732988750320576776406198072988881671243760955421382\ 6452751254821554326945933437470159782844463351846465814345008384785371978910765\ 5419098100967885135154870217542574642291105164524162531849212812521556719075365\ 7469366298889019704374213353951322364990122169636071472049982046642014741196679\ 8406727618219183699096091419007409784457282247761074319903385984351735182570053\ 173778e-2, .1806520567605424266419011063849281340665323613359652918861621356205\ 6591940216276165267679351139034620247201540318650057080362135846539228440100534\ 5581336707078978244662347420909612025310995816920839742210580759275383461543183\ 3263900888723918482479807533515360262423036094792146827314320524812199023189985\ 9160756720778956648491335975396315324689539154391701677118604006896539375754240\ 7724234165271668204503523364957676364944457598949843505748550205150525473145048\ 65273641561015891450678962104236715247937909959594e-2, .22791892730438567788218\ 8113601326018082965694098082376486886815054481648346045347799406508630326553569\ 4456628521583860826078506223370007650540542942784718506564056914972008324981089\ 1736880524993852175577528874444667364136617640872139598489011279431770811655268\ 7433246276083435747270479031261987647659068609115426523643709975941477238545612\ 1366811718489802911953794334080953751834596049943993836800444680816163625299291\ 4815138099277405833339674984275593972144867612574658190094113795352310035710306\ 802867389013217e-3, .2855591658580733339491697564114477401463139385730089672912\ 1627933886180605170299720458239110115198325675290678362672149943987342875129605\ 0484123220720735721018674719342814507707603979524817779383418116141018351383802\ 0505830108886636976889154333572282371507580686005135534203734302847895595666732\ 3198568198812750149046369425294970476416496028799681618822600652130051900611316\ 9149932351060440845863179157260667828682360676504268809866608250970067877278363\ 14598174018320929297509281618260777738305801366216141986479e-4, .13301503616162\ 8187932637964978863071042841765705140823161010987239445452390378025362557545507\ 7661801546463027735133942281740349036749868768341938213859455551337322996756872\ 6534562948222942695585184840024819149937918902700249787170296444309613488242398\ 0793437184620270336922811612719653006067277056357253687323355626053937366041615\ 2054350092679439901144639315290958181827976705233035331733239427384935120149708\ 4336150472372642686111559050237142730369429692195582423656002701513728035703636\ 887518761216210306700051e-1, .4963292780944386445843650156454825125897336776436\ 7471227212481389785427451576477461148708667437560449115858717835754244846243021\ 3907247004440199443006317840096243734785296073420431855225737407384780973137273\ 5638503867180624293887596086185022489260323036819421115443929738056712426557950\ 6127313678633547807947255130983497009798044656113509029448412276028966811462015\ 9240432259361775694744262785428624127958551471770339915322481175296192316421787\ 28037421172475573573219256085518759906580475585374548011788100131920e-2, .10890\ 1074053524226883945148760704004368897742913381449960682961462842049210524288282\ 1725993706398003880450400883556656977343768279259471135572770389667510825363284\ 6826936019186394203461829309790328242243794023920685612569598918446851278170647\ 4418674157388861025025991921118496815562164191238330958934308860362700220219883\ 9706464747979611304788802347641396180439263787928806330799986294136998982760785\ 7179375296454088144991151181722693330880387989489324547043566626228303683297717\ 151696986174673057691764590420659e-2, .4065038325549128750230293376534428675673\ 2292174925088051956089879278533711151775201747770942437696776928235697890448937\ 1163375544311162558688658074687140143969219639949499930379693659569469663486356\ 2380818777674848179587684761138998202743712215967146363105238314658098095020608\ 7528977521338736219735776285504132160637506566449789216696880846657635825762520\ 1619700521776496482105650162640937919432001693020520862848396368692026771831172\ 46753635789940012469448053804370778547231268070492104914453123151840527971722e-\ 4, .115420466795248151662355563522623620970732120535499151435213607262208543290\ 9945852623754668283325460110154002463928662471583402321351211482113112198952481\ 0800961253497755385347405490012413059502946050640232511750211486447928306320027\ 7989768058154961016162071686034119985483714952056595633174912103406053384966706\ 2945354428466464244818418350250711865921264066078297856702959789053841033889993\ 3000943299923927832809249825922668552646497852165240509408037364430058903016174\ 948107950420161915739244080633199178780219e-1, .9628328453477856873592651954483\ 9716835538013924339637705865640561417914470585075185423209169472477956091203637\ 8189477220923301635789459530602320124854333727046934709715433345821604306656921\ 5846388420188938100910630335133677466802884089847111970461953930055758966122994\ 9930482236908601759748379395676676672274735671744475221348718899572107541353587\ 7487046042990039932105007733440368944485901683725834465147561716904705487147917\ 2417148998999169151718069096438174272928634732229723138576742526482244935743973\ 4967054e-4, .102467663305536029143881153936602423922961487788818270565369123179\ 9228982141445112906020099720432575868777273049843226340479013704011121839887116\ 7169290786341977236154083121461732702102424805137769649753291769036570011844840\ 0315040840494024704861527109967636378845239207957519490661136473785009705824435\ 3963155155128190762334608857467668012664728612964251381549383498652282748449363\ 4565872847585321873447712880587244215965607404680048357532082295112326587467134\ 927546845081971650085228770325590493132480954512029e-1, .4399656708362192683368\ 1529795467433253211274769945809879020068552450711672074759094363456841461051241\ 5260069760241973228455765464575173814232151183269213812040487200117779761403276\ 0619137633201079264388856535075077629861827616493114370692077865920408477731287\ 5000966780658373795050534129966409687704105360809300959449180166553716904242769\ 3171856271138061031435328660943976451937707815582720600924830804702917101237732\ 6424444703608295498880905887077160381447463930405612455462657443279082943027537\ 3805160781370574e-2, .132005321498395779730245970732957585408570280423968122489\ 0840697068452735674040586000321814800025301459880578686118394858876185343496260\ 8926203041544920366285341891165621984914661720677519418482218646705966696661151\ 8544990175702581467256811677366435362283044578846742851620877125172398195986590\ 0561106089315683441398572474103311765688657647585586770771273207046900686132308\ 8143488248186223038225004568162938239777925889230100390286935005042276796171687\ 119522976546475374326100792444240738423650741160851633563922e-2, .1662504164352\ 6783647869458360542131344316292317243976671511269907301679541168959663261619324\ 2044704621762763998160203338592389571774255783136421382265162377134334598951020\ 2586910011353356666083811570557848891976015386027389145949350472526916465029785\ 6760379413667148429781069725684702870301450692475385171373812787269362954741724\ 8555068204539580306001190735972828618562425544760390615432070170390935500159852\ 9451373007575717549456573883440116098639732606799258798302770692517821007586750\ 1770300946040425984949284e-3, .848438342327410884392755236884386803746597759854\ 2549859505026881016243563042023248595189366992237126317198742785353258697794477\ 4121756746305396961353797225215590008389429262635049395665184071118186674797271\ 6236784992469542174168812404838226119712900822866498660227592577636206045127565\ 8632725603220183305783701283616070683639265964003846824833492295898590469968909\ 5931698300215156473158366074169483386099520153668525795821755507168792680039840\ 025859265461000230937839694885089408286120631440792507919534383707949e-2, .3242\ 5125267590813096378902862013093498473365886460114808539758339555653317064965488\ 4731642077154113926843708071623404215747075941396333464020447954442187378042681\ 0741227304536375219237538888968927169968689134897235914880181520564158791420812\ 9346883424180196186987386646891444467439134385060878087501828329300753747429494\ 1081855302707758252437221942380024384070357796662866656996404188583521796988233\ 2119847964414692156101489710875618339092752579289148028621478413647938770409383\ 8886066686677536008623219123598313e-3, .600326522555248002047138570551114988784\ 5483313286029369719031317601702362745564477658396231579245210040633489282850304\ 9955214294216798392512524565510834369192187289249885528507511559654027705379425\ 5487791691147581607103705771931778827726416058283536118563836085597682092064236\ 4132912788263061300961124721870056812020086793738672636467269821318494467864204\ 7353967682719882552893250167883615552174508967665990864327195581945136041455225\ 521423989551480159138305547462690389135484239232266676506993346643951465423681e\ -2, .76626143205232658855358562126723330576984006076200453012114295639908689127\ 6552102387846909908790412641981868323011553197160677501127158912529388160135668\ 6806883493268184046588758374561125002159857257720229748978669637967722179183277\ 7186976980091796864730182355313649458511218764072583533479449011164317026081654\ 9277224397949322947242218553750842757595671190192393912348976534904951573257166\ 5786264334949404269494574786087703312033365328024221401277175802011416280202271\ 7882268464440096815867137780115711301869088e-3, .256372999458724407535447158977\ 9860268073910802179746277043138498287846529464982399865977938220659109011603345\ 3155650371710202163957805466404487755306262773231816782309857317693166148588074\ 5948698546725534966551942069873059243121927833488142487954252711746477176624537\ 8456627322911034184879689827533817203788629219374906702125833485878596072424722\ 4899857107690881154980373641516638086618492109260217297543272088870954966489304\ 7665900837771478090505093556496530146999958854776449749906586405841923843464286\ 47785430e-2, .19563353982668405918905321621751508254508954928055790511117005983\ 8519084850190748468537462727252432385278562250255811260028745384351067298025167\ 3716278672589657862975701880144596521904521482005295608907992712099243943106151\ 5127951863991338728860446143651513018847745236787618415383176073996910475853554\ 8698985724495346640213626746219502912759578521200014852194060314775748509526768\ 8312864491689562940489807515357044115593625496466408203108086998554288841208838\ 1380330258457715005463957913857615574753203783607240e-1, .128943249474402051098\ 7933329692398352699937252824602338644396087423792007535907749187765195994815601\ 6033269017486132070813960449560327646164687996672785599729106748772922262795484\ 7069430995789879751735810071430006643111515312216378725309582384590632800559618\ 1208489558734677671954058493174340737053395388007166263977888333602670364522574\ 7587691034803093355155962792536417901285063243426751671598383552808946083184676\ 0514613127234475846459535215467470300230284162313738233186245080958045953179541\ 48018780600361265, .60963951141139630643949559976463879795710033262554763027823\ 6822960473065933935440491006011064842196553289568550511847336973653383543669480\ 4607072888691892506237369753949904873242167858852455087081228748702386940012026\ 3322228536097886935527143495300321264939275667051738942011523449370318975134041\ 1147908536554386324704015564382290252537435883357367339919121497850123243414166\ 1007739444748186229096465799952002862674240523612479132908212361928501492241824\ 2547847465327502016856292273298520764141034060458805231498e-1, .216600391039113\ 5247666890035159637217168434235769599267772147132412270982821619710060810332679\ 6437527097670542856030972487651668845457460878646907666073602513368686755804797\ 7924095051662085706608515612100533000939978002268227852791213314638945460877427\ 9944185157957603529736134522244160887312546117336254518690475396042841934335879\ 9210799457586209911047324736165595505728262428044784681527653466059338149744901\ 7819648447015340237925492988049592126329050737620246041851528570349648536392563\ 09125203836169370347865], [9.3903758769026313787582146349366701737082197851129824441134280284068849805726\ 7764910583890588862438364160969386398153947583039438972738200857068662284033111\ 5191971876241718882376321965467722867725645830315360595381518234431708962749398\ 8649786034741577274659643909341704398739725435632557956253094974775156517681681\ 3072200662207237716337394151571354101137258846346533664915595311567959985365799\ 7269925292455715162265121058952986555532979409210987773705056051723250379599079\ 2313185983442135693288031139897459218058, 38.6551438023343625502367694957175546\ 0699169184985615193564021749900978907117898919308387612654982165381183865574327\ 0956168631928012341077415043199903360094157169876766879515327400905805584399838\ 5272870924504425057901564329854113056535800574578572767358203769653892815248018\ 6463081408569201826439329791927113373499612331089494305049214592226649487018525\ 5180380996301943185037960762851294879193450202297916303951757165553685328090486\ 2922462397686590838538473519336432315752907950758908382307352447084458627925005\ 64, 108.24116617146912005067568256227113210348950285831845065703736349541292739\ 0913072060943695176601135335543887627904955675921487947644402316189350382336875\ 9185794998514972829363444863232170969161595882225324799448001468592253277050643\ 5521174883128700745164339668413674346564230223642280679546576902481382426763819\ 1833904868899321331072430654683517122124034452636348389338225072472376783563741\ 4915724482105115343929948249973183365698957273917802488643015967864911883122479\ 1999429828066653230696620604852809346825345, 13812.0103742367967202728358183485\ 0641214910212055896354111463772365967996895734611354275547370417849065920767071\ 8410130349395174702890808783806699866695330159054901965543820628765069472918100\ 9971840750569592717017226201093439624450412866831126917065427336915678763176715\ 0576753850053886828860540563129652331784544754186391779678916795783955078594615\ 7957761698688774248863767846185406558886309607670326403334147284222370140554348\ 0503273179990982584531161139282341832920529471192816557598337973988501531113412\ 04689, 9.9566542449421850945219858495765809438765750688419527892682236781231587\ 1374603721342259746868111654657042102698111561878940576515516829604460255640597\ 3478250458088203134878692550828812857949207460804994718430301289574660050838805\ 5613431621295831677064873385926714989043298984571038940164890615158222525960840\ 6411611735214228802471063180286153387864142009185570046271469276701909122737347\ 5680314234440584456550097157212065521047418732556476666381906768802786250470133\ 2282976679172820668327305635190130649622814906, 21.9721690256509341716601433905\ 7652311849212663142700482971459831395974052307490187672348183986229330537646888\ 3619454102521995209173055076748574120953514102728151060928631614842719408633808\ 8419272646330186489921213789833164623349883601184936398446327385612170093866966\ 3271718103479511442331481656986371906255253976300046939967293905431859069169896\ 1316372863587517019096056477341543899121325863548694294986085515899454287156181\ 2940658993210477601922329922992311549899502321803907954107559738250777179132877\ 09344908, 292.99919581469906589860630875456942620916369775573238247992400892057\ 4032433109269671436776672365552245107672036880803485189211983941281811884514104\ 3410916158297384840661037905013962836095782329304133198728034783520488517185724\ 4236539738441922897237333253920902599504881536398618307108851264148236081905129\ 0542759990277225287124433525781921243366446083913560214396080019742091157291034\ 8213088303434969089476386210487928071522335524108091011151482606656731088635251\ 6326322334823098313108636726124642292444779075141, 7990.01243046543617851442606\ 4756855014203955113236219399960204839862341756475536038453676649812575613315444\ 0182779810639717110473778366684874842706339603273767117898291869974868057815727\ 9586861998828665391642211733670270013278145916209437865617391642282966544287873\ 9320566672301909871619442681174925086825548370940670933805941841726683072952785\ 0301237739289309525510309244894700858888120067013713531361632419434760614050956\ 0672411934246912894241556532383217350503873990620003164302803887486551778582436\ 24840793700, 10.358590293622012621039712485986004258348805475579697605165861242\ 7641101154928284120037401715870412561666370867296062845594693532473533861484404\ 3263233963958733632881903417495179743880337729761628339697113715755266812771013\ 3284052343569743366317284164040807497945755053406830777606621582378044636427152\ 4517157147127292062294385419148935017651931215382121275911733188866873817369472\ 6609387440464870671648719990005282269445474628196482616113653769470349302242674\ 8013105811952076902605116808904124154518812790520478, 15.8011179274271147277283\ 7079144093073294983123200721699236330566860513002169277185076254898976972188733\ 4056736874000389472030989147688476272173970667030049752277451530848161941432149\ 0416040019115644477733008116354918312554149318824258306116047930771485026167374\ 7903560572659367270675997725371610971476084302004505286553294401654849381014136\ 7840040253950061242376221167130382858612637578014240991026007411803673230779704\ 2422187807090054226534352960245083580685088192299768193590431833930639465685545\ 95653051517848, 44.919499918819773727671772777517931419125527759364068516700313\ 1307491209954190829792565207145890755676545603006109605079573578198184518516913\ 8027277149853493920680712481835669256835094721284945359684735547088441855358612\ 5483131405690152157643684185037707079861866406676917627049928859261447759110012\ 3061391380134858101817121161901710830246968909600315031257825911422229439501480\ 0837235861604124581420590505358224088952285117440491314617213791026167323131684\ 6872390358121772402419974254369477184041403614621221938, 88.9271277066167667067\ 4954781381844114982068654031938640731326327147487608184642216530490650113381264\ 6820138171062054331610677801019125388418644020173041583392331653319244615929765\ 4381173591681261009246378588828453706479946911489659826532353026798546431220457\ 0238697811622023312526003069176372051434163144620397078444508070206346980554549\ 7062877483748255424673240423064425076075359498318679695201275191792900728547767\ 5240870179107934941979396990178129552110595261269512800445834923763345776497994\ 49297993718540049, 724.52719559962785385666047602572541527749145801336539738833\ 9383964329798140636491725118406780214078222954393477041168107580619655933352128\ 8920681139908488902913736509810245080354350874236059655588210515256886277896920\ 9104146921070250502724281820411250218812400155537828020988949393591072028144715\ 7705399969878911862494674307527414694696514200432146076335724147828085970878613\ 3921355285569038043257855962668008499738701522401285135258640630369480712190584\ 8699567105119578753034420716762701267003332282676701319705, 5823.01379650211015\ 3809132385828814196183586791094152321912290478464935728743621915702797862042363\ 6844518174055454626593815883767841800162991751085766058436562914068104845051594\ 7664981696439169339915223367645221555858630102718915389654456118318428719397074\ 7365864634632104547443713593262302265074023574028494818963088908140863136910461\ 4230797014301214101295192108373175078753657174452379476760245882425837579330544\ 9551779442705265955555316800755415207680994573598330257227752474054529694883129\ 67565654206013704292, 10.890709588065304055699842133686010380958609144298087032\ 9586333438164460782406845494138426323577376189355148805773438864015448858699313\ 5588095587059930493660284555038230557849738109773047037902089308234488803547240\ 1958280093945640875733796024995086681089904277010715511965762896615022471132441\ 0839986219552340803235623735153569868929419461107241047288978369307844576384538\ 6280194360756598460281859837140059203971763393567706101409056346794792603095745\ 2765036004607993594765605655877507459823549838913943528290554, 31.2382151516577\ 8967384510118932991587887839614401374501170903643512694488809225033387225339412\ 1796155177376033080643818795778044171966739922756287090418969814096160545513116\ 2058290488189788776681951350019101294302955739044639413667134353733270699851832\ 0969811607852879216922717750334428160875204155669278651115476931816451456033438\ 3103872420300689656042220339712161278749451626670868271682764714909636537597831\ 3458200048612713250657353099175278150340854750518374156685494193801267365492330\ 16541339241586741012169, 149.08167444139884636372962806686814544155029464251663\ 5641760720067565159875892585315793187965681489779190098339727365962062361415954\ 0172414669207217772096572217255193282864514981989284199709478052919882941347282\ 5158986425656831624946238748232793030227457911148052564957277462242100124425197\ 3378301669389542937882027815368856267972735418147204932773103303962044518677074\ 4449524591766188085458024552209484371314078034583914553135493305794365870402865\ 0229474386629089288524491456322563455613807260514118824610316068, 4088.01549822\ 2219388777449063175158038180609117389193698119094222564307250916712102260078689\ 3536134668042498944271005120273894704484091676102613989114395405119015469800796\ 3863287455643911130478949015832446353878658283666070509289405218546191720033814\ 4796470077455490034740179727637553512244106581801439072439295077216453772250258\ 0799529700716408573814534896617327765564529903124058167263692589800413682941801\ 9874088127971201106904988011149043301268896077452985142646571356766146443966299\ 26475515070998947387654210, 12.712536297163539210934059253413201544047290645200\ 6355634894867008482817068014302295296980914563048791203844625503798099794348073\ 4600878910627951888171694480850938573754062211532158762239999390339545331618928\ 7806480125891143173826099626706449389508936108864577161348696708280124043921190\ 7901968831268817686267781700159743483651066572955783230773989887806576637381749\ 4747559331504173223785681532907137825298182647269278164078942637117137119469330\ 1347008593295280077350302224738143911262423559548637858189123608815, 1722.02056\ 0344260974916227604561944894569958642833261241722790807825194977096030423721957\ 9501306320935926738690212677201150822500244938580645005135896510039361540266698\ 4639325693179709990002041309691557172462496686295274924824485672662881872971545\ 8672189295027893864446075606350619169044650645318661478491515589554139922604081\ 9698433524869048805273919811521140764507747781769452910760136188592611649412330\ 0378994693860489427146663027166155335455634901029940087209277083104242869844769\ 51615545682372835198977389604, 14.460787591703913022158510958310237957228149931\ 2744457797890391990562876299074083005559658842327724128226369206675046362703952\ 2525720221929569558122397631943696914907329515797798056458908079221258708988715\ 9080709287873450772743939061001024060658977090844145023595843829562999720679490\ 0400710776653545328562146095125879264484481098474547357896749962873880846075324\ 2789746568396879173100412968365584018131212737314599615932865313359988078420178\ 4364012612216114127086346985826579145384793782391918082973915055912835, 35.4382\ 0310276174581026492189946707100464106168176518852356902752816849187661140066488\ 6243357669743912152188724147430348697175228745720827903118092441503052725867051\ 8734182722733732451293207896492925755843115590252410619358425450943944785846320\ 3895530404560923160123496918695170514105549360365483166839691257752489470448176\ 6579067564529955974604984623233407123779409883027590211076465324301701862193554\ 3280588316197715657689136861293824668394836015132993099193894892373571758946214\ 44104284129171157633527121969928, 122.54736700661140042758312553272577887026632\ 5374544802084037179616326086046297574349562567049903635293054851680089558049574\ 0288173165392582173586244317811909682467230950721698002861993508639420026151435\ 6694565004267048163360362772656291046360271028216091254919141469439515922837800\ 2529708097559580606645267219518452299817829046664215197076449914033310749980716\ 9556100558446219916505763628246967453913686294975647598886206519424160912400362\ 2178058190519719098998283532390753684773807466074269599886833170746972335, 995.\ 0245582978778401310111129853383702565961672553482116978440332833886570238677823\ 2584303592363020203254670774667538646033624696951436189338956994409416419730974\ 9867786621890832063121619585879918466846171294783699415887249399850872032066150\ 3239826433722916680214422581754232156688941016492319438282243250956090822379577\ 6744077137362771106235361533029882798787056257410514415015564940910135022283576\ 3817940309608563588994770507418876489676262521818169381189125818547009522093663\ 28312097401580933842147515608410950, 17.711164470600387726355708529066408786976\ 8593208221408307848262338085888318253596817626701678547053016023823393651917361\ 2589084571944507957362290023736691264059285404515024732079897900969612809080403\ 5888701018000513691131824612664698501823303993920207577194718029366368453649213\ 6025182704255713694442088273727215558741377998605001406799463891865110222609329\ 3254726105012560605179607783403427265547622544774412085414657054565409717545178\ 8583929340685256189450697468924285434528978333962513036747427267838038831154, 508.030458722824646365115450188287078525718266790669400365799982094549282870477\ 9455237635773776527079824261674212365745882435602543129042007703855432472761404\ 2248993486874529093392657927814053026516540735622920020050773868830340095050564\ 5368787463097096298994075498917132422001807441216179698833633490863292305444264\ 7852377167661933923583239003537422660585039438224884613591530554569505074434772\ 7262990137403126206094869566996040657815442672607866069670601265967005629037377\ 090703550785306782722133131195148889322, 25.57409802177765228064319881084776984\ 3990389856249311984065618035877868624945275579303978984829660168111729002751504\ 2195541692848976905967800591057093146231483189142163080492042886604050015779803\ 9725239997791327507561534395835441556695328626660890689274029880827537671059851\ 4299075550048972688792121567574561988383332032000795186845000221748974575854063\ 4478251573465161385905346063107318657288534040390524189527102875730256193387436\ 8037969587588498033198449401332661983742399821367963459600863149314683324119462\ 6, 213.040007399042681548886200804281559368294823641088725352513361696032250028\ 0149362881302388461297387512320863967135100220386116638158406227804784128206525\ 3081408465517038225353420783169446894522106112710424321479145574226848708369400\ 2826113938578568502323223513917946507876229855027845551422942736020250942963762\ 0539526510269985324973123822062743792050565305346845922367299542746126247514837\ 0358619003041988505947294364482714034896236440572955859574493152886454737561939\ 599371178614161741534245154212110984025505, 62.05790952993025638623809164498675\ 5796935471557942793198349275804427847134739257021813306237691397574299926432102\ 5814280014832007547297456181820049115374881763721621605862696033577765284842030\ 7736291015499620562536565555733426220968165362897104209508884915158884035901706\ 5790848540666658290495838899310239298749502109795382272105525588444295120986218\ 1854571510906997449083438172093885851572330091990452133857005109606018490422314\ 3867039944310096432719403661137083726244957340762193113872010824004512259566818\ 6075, 7.10126282473794450598036953067099219789916100261959999335578983833783295\ 9068547917888273920813785156235535336769762245392094457757485061974904131428556\ 5237348252062268808286725239294834857534084495297571579678069003092125126342708\ 0853526699792262864171792099248404650986171994064545307699263612729320791108660\ 7006609850240757196287281170935561733678442277952768540606314948515260252232274\ 0185071461787486390943537504616370596953531817258601605159498789976729785706397\ 642884108441692121469708794705206987753431253, .6473853909486341531592355709711\ 9673765835700330216435693838574291101168962980854119364936062616421511936943850\ 8852762277720335141317300444737574401532288151303912420935059862889754837429744\ 8965630973700896830388128952426529593631280497753210371481505798255793128047115\ 5042802491102922949243394482671640475733298324432745452660927717493896467406818\ 0751620106239093195723204514989915590429530839650065680213854236283623989106458\ 5392056147312286315109955555559519556499702100613726399213665088248233893864776\ 1264226, 1.83380370247457934897985000322328926465141657451404999984268579664843\ 2678238737475322725730924034277427667179207160492773255877665431119503371858082\ 0737724408540666910015270406092764532689776371276568773554996150324923283138822\ 9807084098162261263640116212283758952244278823287139948933201837115752474924781\ 5618653232866815702403784263317948487736763357033324773674854168370179454148374\ 5634350777073664817687150159652457299434028139275496744872201294220839764323057\ 592966856692932599172636693867933590709511629966, .2682271463934492027663765197\ 0959836878611362279050585824108713839589723945303235823648534730861957313255419\ 2827604565295701640865139898497164279372149490097542819659460150794011985773528\ 2383890689566403718097949774344062997167211781873206746950823647914429776662947\ 6450317885211927816148050050760198935698693712417896220593710218246964709160615\ 3013978038044429787940674189332238394394519701845679743998867898523214808454734\ 0884068321220150312316561029269746278220521924078049007540054475901115410580446\ 8543334011], [-7.390010224525258188978540626458043919064560944265477331508465575528259175762\ 6128185349188015538938708814115951449844403720914361357499161180920420745009115\ 0348512117982789668477482267112661736567422766190816694710616104196584678261220\ 8895538083751376035603772114934903056201306524909157616225221170667112594714076\ 3838215649148033904040718830248167862332587733622476940091390268431934056420118\ 8117524553069672179874010259077186418541935382462554471751291975318288518171904\ 01995540538478750389776896907554447377726, -26.79960248056541492976095367319660\ 8119344491814194684092289296644730794350588283501394961531404468089898318483171\ 4930061476752729196080065525941277072078101765408647715580562939803923582797769\ 0622535447840948444075132458304903766489122486974238763693938758302982148425812\ 1103267023867378512675567515806221895288367728698692289820098633403547336451525\ 8333649437888774045385598866019402950076709190883950227687585140725121556273799\ 3170212053986523221649836228203123393946521744104046965563669390569924979656370\ 7474, -71.967902981501585053312131680719906000355427362497471043672572889048737\ 3391594725211722444422333096751785903083571745408338836738344293278355915303161\ 7223042165951577985257168886425479535752441212843177990453802706413697932281640\ 9635580412703461707342475970313827304102022235285072631054790248480804770354125\ 9841615457602005570416678922410578290080558191480095168622227954053626650349515\ 6351616094086064479712049353080687892129126195528936065567765548053645191362495\ 7791080895520723574797919278742048124627194214, -8808.2778289179119868683173694\ 9707725345946036262790437152998143847734856254029733448957229938042623236250311\ 1440621409393660556214980417637138439105551206062362471057066362128582097660407\ 8248738223189995293514217123386851308294092437373671799266635308043105634860186\ 7500152453402408005399862867462411377727260077092365538980985923855537827808124\ 3086809685314488409561146682199817732583455355026319544544054435834030093097768\ 1334550576958693238605224061902315596588095943637362708211605334097211037525457\ 922125613, -7.77536053302190633938932298467868787103245139317870998839117042388\ 6946293221919163301865987838113164795471934788189114649525616539678316788187918\ 5790906096863062576409894566690822659962264617103079294052539193265289081915166\ 6174061242372007998192975080445832916530323371083303551777087073907398970087095\ 6406924419322281684847455096828387384277671189093436395874530297910506454798888\ 7424674889445228172183481616599369221109460578291506469117254215010015613339700\ 992168112855531689648866684620120553578398154209353, -15.8194790528196335046940\ 1728792290026782270330489067113822354876639080543804266602311246141427978731817\ 8022122107769243000846762840179853869247889061448758813701883878831229468303978\ 2973426130892983470085783130142498359972713354021908714629918179133301989936722\ 4232003515474301743153936839315090996345445928417150871993163218837335961202712\ 2770830798474928963142908977338539608841498179549785071758359584574063791153656\ 7243998122495114316030518296881672712161883984580372394574369498443554325627838\ 26523365907753, -190.7748150143093489425104676103291759806361333741544485604732\ 1082680418850783058135006304550680948199698088410625446720969701063885009053394\ 9097285203475928128033676188897592823933719923178996131296408380545316267788489\ 8160219377890295846070376270800288431871822394844522849901959598141462398629672\ 2921057011000483756204622088687018692857757029456294922789023180936304433114219\ 9722987472031586914687133279527086028940677975025826144341201052629419526382490\ 26457616898527453952987050739033486644590252175511496305, -5099.332378612904889\ 4090443817931188070599582789650861637637537622795705590403580077821626660458552\ 5053106847072081019780112410753975065036202398012503877225459419181422778159406\ 5169999036000942199513420917280603748131767393326949584019183777809632842956557\ 9608944932880685633063573309717212066238622500929351964532861933944696588464831\ 9855724203964912884613006606325614370368466395425269520482466559661229461164685\ 0265819717423088092940627415009087113049068923753707769117969793111717273031274\ 4716606483421713694, -8.0483480363414946230075079637732783655174184818310471299\ 1818023386363467269152864343843720145351235689447053595006645839594334356653726\ 3156450067272719757285534308857454322890416102909354898887676417396554604984428\ 4909482663016720742981583407770342336018301895090235291815316362338838472482873\ 5530731244601572351314764342020519804197880494237131790037580295354945370414596\ 6191655127893987101826083219530717205357703850105357771035143077298432607901653\ 8829149821263512324716108433781684672178279446756682010517605, -11.712366491281\ 4819675026586852520546190197141833157375942486329671439129532418461875454442900\ 8663441252729196652741793795631030304711717116751258324871256843064826948866783\ 8086950330566969493758294496556658912805945310489920157542231631741091704933175\ 8245542905938224301928231241033625129896919322997103330978035872908265523471701\ 0180114277299299285513747619095116261114588452462370450394618610576555133552977\ 6654405187098841099921883316617870660398207385597868233113429305270671187807772\ 138436281041210413265754, -30.8958447855904398925561844830579821463667826901144\ 0993793459200066142072941424003621373710699257833274104061804006247369443800925\ 0723794956675123670298375108470674253866200786883765576595568168691756120688171\ 1533422580779763758445778875039314279897812773428978341029529435683090010058418\ 3640327658637082799274673077879983850044641489407118753583338942748761926824523\ 0966525400008478875804090732607004739404318674766616925250651914398414918657043\ 325131285331457966148920541838188771782900948539580307990791248758, -59.4818502\ 7523071101337631057829464498593941687357586379591597698882632937140459990257564\ 3771680314995338901253149337317493380245040992640258934785183367607017930023900\ 7841646267111828187832056400778236894980640084288947802418072304477404492973560\ 4364794960942639005041944340800575878146332190325483395766043295446917172374851\ 1962288687937748752578341910615706031703126223198158424291968810634174807987722\ 2292493976749672464866363585060939993555352275553407135002698094459360399891478\ 47177227437284111189045890960, -466.9786546997472774274435080077643199944288944\ 8368694086793474714041127903527284088051408867414078163023904182495727967479860\ 7668450397259372476063575854216456171262557543348161405681908881765066991111829\ 1142153161395222120376958983174082677265940342590342266621051994711395420795627\ 5277808964398107272323496034253461177240427045601152815140096601127697774619916\ 9845324243654607939287169396137118929095198644739370435056986302100244164839434\ 21910720761822863811441976158721044322108077614145078540117077243466944, -3718.\ 5049910473472671322710330905850977179626126892713716242243265006217117394773330\ 0851117309098270975761071831868989485462075437059781843989802489206168757684904\ 5669016240596011161422890555060784715590546224005921684125410398478126347134264\ 1539991333255866838098882050918678227125470369827059394899853245490723674850920\ 0247759483643535580757493901033792016698592238780999729580751223308169179362011\ 7863092845789097491846073002700566766570386024235164390891893134639709273045109\ 1567323582827045191204675433706542, -8.4091292093848092307487011441244300814127\ 5984329937065266519016662353721391140332525628437139667929960115215435515513592\ 0579018680489159274683359959672586890627746716955091588617013993823365367187879\ 6246206837106200373601855561482435919678022101796212228012111879684451951684838\ 0714098868135892824874113009689501991219484788745657630915893473359296049827919\ 1555505119540795477895096002686559752809885696955466995618042632327770218818243\ 9767186105194282068406969864520411370279474838062155924363467781385824550188, -\ 21.9337834123445772534985803105598615262204143987934660215634702109809164721893\ 5256078737466603486067603893147741653166038427410716166239028832523902338363203\ 4610520485054987494651716516291187519943004951830528196280397907062824616953431\ 1073061907071235464705761532408365696583067191340504961581972475483957792732206\ 8243319252538780655155260972662380858386349987273128454251597590313667663218177\ 8831288252182595049522246673506858078068743825560775183119275898145246814481726\ 166411587049704576504395944934033531259, -98.3064636569413007230625382695040283\ 9137891987201247244284739534637811793146827779047551553592352352734701527381790\ 1097988406460879231423060369092083720349146188763887939604868626422988742704245\ 2340991050043193603850137309163046194448365584776055307738814040079639073562401\ 0293142674040074806396967777874354281610076867977866739868740044335730660210913\ 8985394374699549804398258796795563709089798697644382650362028266055876253379205\ 6806132985562599130685108555737882231467358139475739938047370212532417053509535\ 14, -2612.697573500667126002209557440917414477254868311992359446983818971502381\ 5577358379903389929676478305861377054365457501123775769790060059879396153606483\ 0780875496391770951240376905053378010572123756146583874938550704844921956280558\ 5231145812064794360882348450920160263789834497137016960449733808261171460236797\ 2875288727615768906201485667203530729559054968898990181233556125763858388903635\ 2451845592868819551937368819573038924716915512658527045111224541359221807658978\ 17586716035293422976966316414310786769468285, -9.639614487831775652896613524963\ 2640214008645057934518857105745130339226124734543730838846531478237589578217163\ 3122204384201465314495751760088015207200475382331726632570666503148491430542723\ 9086065701333737847380751976180789275916162424767498375179174886485160407569337\ 1593080073851935044209918887251099112474977130983184270819905816591895233762840\ 8978614928701125090770456867639688882890089134785414305230890548891737686368469\ 1303546270050211932258029687156190311020416898806531733677599818445095141348944\ 0830578, -1103.9121212521389720620898532398681499420412250647500569604212367734\ 6682106002515479425890726552014450908228579571800092087604806408808667677190416\ 0664713800560323447288225571551456374061009235282425970197484491592648947769362\ 5730954969882134823300214005952987754936961804489339663661210884691907806418959\ 5510573454902743857812776914931478483129477217881745521485611901065980902150503\ 9674427420729534516698731051058525045979970733811333245398247699301449670243783\ 8102959906187694966572809125501749635889506736839, -10.814646633575593765471211\ 7677209768606627473258810739960930666369711682855203584392568317147869875941057\ 8233135099857637129956340760756384806688819658869462726623628595462229195319212\ 5120563189035796913771659903176649959229771637547601585592767739443363791430526\ 8833493220434288331864089057808026866646970688200315510015101805032965492293791\ 2610865362266495952979363403837475443848722514311176738772051733098294125412055\ 7709235339037794071298086730496826621423821103305916412647454144200556557778679\ 809007477311, -24.6915727893272899425884530807854576945632566322059903317222914\ 7681929805778992281095049645621048272915434209653688247898806192365329531507883\ 1944713893920864226223200729751190398614839721325557127183657277707484659651681\ 4055327174500979253315605788651592284008496545486846685981551779411840324326999\ 4418751376214866245601186752152565011289006838537602765614542440794637937068824\ 6991068094678081896390625687489828852200785156818774708206441824574620701668952\ 547971539159578215239856750462117218026453804324815880, -81.2024844849624233092\ 0325021856520238570928698095092434644037611459417139473881740358830547269416380\ 9401079879977945696530753320911592662417841826389143503810180702463406444578898\ 1142594846233157637182418439000363573051139189994116478513765847306014784481358\ 8837201165978412732079488537625809221049254626462832113766222839255035409917868\ 6668755485422693121435969286360115328030502123483060354012456947834730547290509\ 8191568196429961786370831961233179029831894920811395666740732746081930612503857\ 26430291821257935, -639.8190661868152841456940479956990347041049782298963538869\ 0687709325034765742566626568234956928779145128250854790293260502082305782377222\ 6951314042917266554184052643473023442356028936458249372917923029663068845696422\ 8638796803962149229173334626314870703717086979426883532140433787082694928996301\ 1023995100837406397324977330349558914125619317372558128895438938656279381700343\ 5124182376600787329616471249837977860186362195590825125510127706268539707170173\ 56799538068641542346031802351729034301735512519259453563122, -12.98771762344754\ 3318631977448480920665698210561922404612525862131235775444369700425992266559632\ 1497496055725235689574228844021523279297853510678550597738382970788849539711008\ 5294778071761622421624891401385774937778007895847426839530920680203502179560436\ 9329208574081917519126664562040795051957779100944324801210751485237864360306469\ 0883192340193904703995861787385810587489129925126180416255743538261844365149801\ 7576815284890500504223472830909330072029880670854996997219461584938787774811921\ 1499201492356044488115, -328.51619572415993141049016663259211732124688811824935\ 6986805616185413853374703475767951949197250482297450557114014014088002711738667\ 2236295315226923370925577838523723187299982048291345916002392466318984583184140\ 0241911120283600749783463549628271076472780436292756683068798125302985372204896\ 8263775651192920588434451538108040011807194784255044238797343227952229976856369\ 6723018760922444467779192435205894866976610857602578962960663611364309782997853\ 0624246970028461581434894243456243349099675534100794206252603248, -18.202144095\ 2126114787933209537936860782588337247651487536875425672705451965265348973166438\ 9191615522915460968212484190542556475718865934109392721314596814151736537083357\ 1467109836350087860763501216960407409322872745435058711936448854918917936711877\ 9082262267144500481128706083389022314412586163836980541326561604510021563742920\ 5675107367777800251385316770196465520749690652792927813446544109183821156608399\ 5712224726427771461759756374651421288072121023959253175128791112356336838963669\ 739642108287109215370953216, -139.447293490621753606424327925241230435685976393\ 2993620626416700973693256871471967671823649011922935909895685896126859373331939\ 8204706888526014546860468288367362441370855311768079157780370717381040797361026\ 4688660079192134509330779062944192720181563917246007710016636131195782428772184\ 1498664584478684351105552666222002865310919528332669240989134799705639359715416\ 7152139195605136840730586978184017250082630665161490679289970373174352740182903\ 670655985971804704677030537914645588600332770889437424855433069255518, -42.0594\ 9430472388268765893589447556576748520872329610984831446445050159931607173081648\ 9516123618292014101504224955361071947396659668568368064823095079235374995513373\ 6758338291215547507419307153978872388182156415960943477239550320155115564068466\ 2604291438583159393401769433188199295068978564525705808664552556620494917963869\ 9304899926321681327548499764573268478318618833034043475357735085099096167432593\ 3835472223753666023173157109446013924233670790115082579772658963757316289151223\ 85937455272104262465296405068473, -5.821517605964728847761757064429814395160614\ 8273778144417510081133424898980639750022977134674705191894813271303340161103186\ 4100664391999258652160693180174354306520132571405921453847726256540446465409469\ 2875091232109870445554117252129864537211930736003072692650235886505527727155683\ 6698380595697638321075554302334155062972259365590704660810428908712106431734250\ 6142438982770412738076579262093205513579969122499304046627266955483238135055536\ 14089814530749341950833230136590621957656374297993384503429252449230146174, -1.\ 1277837768404277860815839577317923832237593524067461316694731010967827675831342\ 6791890124299574163991415564036086226390749984380621804726673349904904296612278\ 3980165975742199971035390825637354087131965867889712638323264051699316678956286\ 3975296642399197585031714232178861284584571525491597497114205795002556478547833\ 9466302450483843883324582683106069575005193369836055049318597785311454953649501\ 6407898028052000610430586672931898412771218533594384817075749413612342165423004\ 3176661848899607385465213608336206273, -2.0735413990606857846485256882270443470\ 2013369224704854307711228155803907503858577369350647305588563066501470989943915\ 7849234440914163586934242495854193494622303490997689568971548793506136052272338\ 4516010554354719820789244471019592205587382864544705976302418751661102324275295\ 6000939172139543605704017100936724204290507062105067157199823016605140558658354\ 4408049420893647547223782934635318758466850949196956741037348934259725866003029\ 3629378507448345806059124220233057913874981387956976116040337224116473495653479 , -.756055496753670996837902977229297969826797597217828206922965127263326793117\ 5088164465359848438014396281640095320946066263345375818587956289229892620872377\ 7078709464332142071989919239326907689489609164510754299221376763307608467297792\ 0221076759855680923498626086364150990708431597269738063418351738607084161924184\ 4551251743276845827906191323865473582034532012287382251348430979566776445336309\ 9810800864843822279471330813936385149433153905450926942534516811507306799204418\ 295181049754934062939743413084419075557066], [.76934426955649123904234080421748816993984071121101085378004767494493430273712\ 8787491737263773571985717485012225809819500303811989903035178723420675498778940\ 7530850305375176701344257533417504275807872262554423899459253831350442211794646\ 0976596628207612335092684487271112373948226962582259331695795840940737143987392\ 1149004667205236988701309707217735139159626564423508153605387917687935789485883\ 7250807681977091425056091417664317677623869241504737224641353482540873325297393\ 2222841223112989086444707644353797704822, .566886612518245288503434793943420174\ 0582206819234640755338010051205988298929265419578607925851800214191041098259572\ 3140909097012566809922245400783980456277814185114364267958130424401022069353302\ 2358406179138953555430490256172157134002525861938516716665802919755975991268439\ 4314608919856993290309590056037150500017113963965987739924000324336838710148727\ 4275706873553777808371518961185399018812971460342316397368589870337536725704823\ 7090865406170311476918777049125786684463644170786120876161783739812177759210104\ 31, .41357858876063250698440293065857032710707854887698181182630870734585440113\ 9873662020334918938045521506269520926571711452738093820527334294999693392654907\ 7599788271556900211459093209563417016368600714369492497767983911881192859795513\ 4822433540729592858238718668700612093259506632313939051317974075161564775218062\ 3317221764514530268011744488839251590414375064120116154350716790989566209151633\ 4747841787136807700193274983654858498865379959288494960753809592057550662644416\ 4331807361336032803810272534842452608366929, .833323417456324890394341011462263\ 6242684856576877624537938933924952320098809579336782032826730002284320621279232\ 7321002334224021848000612934683870836292748673827354612460932756115365436218906\ 6129830881497640749547107141776249061549017540699527215637792475004722809761528\ 9708161153634952042212276027516778458267468920844306560197503347561821003062354\ 6850219685738016934406631760222988174956729670437628785554077487147498684036883\ 5739204909774505316719448925335651179803948818531905829874672242162315262662795\ 91359e-1, .76482302127332649986362847399914049810723347655252618963615631175910\ 3309383841689647610985811476207608276719658480233960452848132625413987406954437\ 2582082717600269742911895124525766037413070540780477244095762510039726999435483\ 6502961408900907490714208973883690867644872479877821302450947456788070857641646\ 9557606177909039691352823070666104810286714784721449836167731330972898826555142\ 5876546132169727278203969977360633224163724490279702697207551731008777879065899\ 7148820510060668845400801861261307002935294218129, .659652351904510390916169306\ 2699351305475874399510908403020126167122619122106774659866882163266635751924390\ 3515988764327635915576399185894515924971893084625665991708547654898119530688004\ 8360965738753022636173219456339199211677571106443657445240389456820628474534041\ 8523552420331127957096012899274270305830555704186791730780867146881118284662336\ 5854290002875149751305522920004258437515522996666924241047016544259634579523678\ 6911257351613654982418241561585445811912578301028123618866439857063373629586715\ 40606887090, .29940097605204721038191383185204678914309766637444269318585227080\ 5806906425127036468632055582562928355959626184106462325815969614295590895061163\ 8379504187703501791151749228309836558334397947602725412681612656242386513389291\ 1728959782024269972735157116997327548988530798826434767571927897026925153841198\ 8366243372362597496015459375926060724605082419757135943054691011748320908264302\ 6794783340198842827832196688751108701521916067024831278801189033137115455798862\ 8214065962178805795406087367841873111639717455951241, .999975326270850680504666\ 9099914625089188450700025728863132569560706759991226635792963924262100596512332\ 9588002008121861559764463910356568057825310841207175969091277819458446486439256\ 6547165479997088405585198694703751482078678559990979191529448852409573486494893\ 9632202352126635185610989671675553150399591485335267092489978086105734376869599\ 8153153102220533708174363043673213065251962882961211258306757325284163196228416\ 7952940523238319529573781243354095174384256867538655447860207812992663400299869\ 64174165665416e-1, .76139032163547894486597458027404699941325192894411917990657\ 7898986872012417339516132562550713321426963956748643458714255472841974393074922\ 8172058330197781854769944464531550035394488510467802309771130392397448882258275\ 8073930649952486051874355118377690502795638615787429586763660562276046118278364\ 2075792880743652902063693300370509975887980492155159096074079444673225895790021\ 3072090693838480690424966459318132671383931188389079883749462322466466362228459\ 0880295166372981029056328334170928376766137531208801298660, .710423996707452398\ 2865082214961555767045652578694785700099234318048640591255028262346155723355112\ 6596247411371122285292363198565125441898212402362850820209463718459309853701857\ 7944374376502162591675010220465278590979370700574212559289115895038256591794664\ 9368145391928491510872925910953137680880951964758248042813606313289145552873002\ 5001942909802968777915769359331144800579942093958506103846097820272970138005188\ 7663804843907994072059173029099098118194382681560946904945124791483775504061791\ 43667006188829313149, .54263886350301283391909798413671850996825419408268602997\ 2040377666335480902521425063313708393561710364764928619677664285220701631241186\ 2240884251253022137989726166032398838287823265900058606730761980814970945096997\ 7200012967147509455996077914142789098347322704458195249434165193572268039419592\ 1610738705096748653660803678706324871466900650359913675921382241223313149775461\ 9097963358051091652919573881331708418163690001514050338578530249563073590921510\ 5925193931880708238608291433767766314171167509474628810402059, .440184622552222\ 7357759257201858119593294936011360587836901326048666573408677111642451083487623\ 0623576706843134259113485732058543196302984003591847115606807175996906980198405\ 1365139626537789229246190295047663268989359915959523540001903319872741680957233\ 8091443498377297854050945413361554464745843092094686469746775520973074596140609\ 2085210632693654537509583806709783561910252493006412382923794077918638854628532\ 5414503739720986429761722459231419590650077420238680596803598293476256118088250\ 96754197356015290428034, .22208854537218947915567978296746587783823343060769364\ 4544368036875034100260053807353038519095480192231101999722494422768087446811372\ 8636895317686047392747831001440438876301910101102079731963707520166000637652727\ 7283382473981604552816683312129473374661057241374173314400711815050003031755461\ 8451632442625052320860336673684589854905257323290264034946916711590987788976504\ 9847927221414414868236962763112793614107045437230320756804233287182074713075311\ 8758315961364972804496882164240472789849729249529975726743947937, .111106932618\ 4330111347609158150112658027925253451463580182364926986100358065082516998763709\ 8433568103079225187921964152049698666276425129434318593711967000081868971076581\ 2193155119686050141907511416254602388874475947610065108444841743888241335850645\ 9844159490757051291345980313081123520668379510735357353654620075959318393496639\ 9253890834085962558827122199655927621232411887028666544462537759041256073870235\ 2309958471616367223587723497525441984838893993285059141514903725279047920467787\ 78076623658807167480262076, .75664165311290255019680858424287815826697361545772\ 7747417888558773135053278874394382931537772060583023750310642401468151986173962\ 8293836857053957405948852461701805488199099312077095256211632136088350177031521\ 4893537570313715796961323461031720796615643409293500082528718528526933169020490\ 9577208306062135708144128555338208789779402065643691954700468764817485458057884\ 6645772401255357790177619247653054366754749822069617161837047098492953227517859\ 2794132945457298135578190440781592564184260770646506750849899135150, .601875637\ 1461375882221123656248831851787510328776707402701922305888327053782874808860220\ 8283676750237221186757790518820410165300556294475959446327520531376170110176787\ 8107275568098589946222427124249278934523034893636571427220675593649977561301542\ 5220642890468950220174053504602676300544427659052599901731172383420126632780067\ 3603848487722097254279262693289898523417560065169386350001457640840422290109757\ 4214484873544010994095859357517924688199926100124853477267155908239634696879699\ 19343257303393354539401984546, .37317436047429970795682697625461851077174968534\ 6894658875940240314262168516232023269845957938859543361750812580799201080332871\ 9693009479753931748114554286479967145909558217092919107867178401355576709022166\ 2908004386222845089633065967240151244040622481525546015239801488732532438500752\ 2372242992568976778113677963378804105787100958771700647588840672581177250778777\ 9807818311717532746412149153225086520394488420962985782633641161846952219993955\ 3731455056540421268948327403069186436618702212922370882248720258817887, .124992\ 4702994110995055952625797285471134358532557134480984781923728362045062134528900\ 1521036234816101660852626133104436493042802651088313992174977452476003880754882\ 3746028649106683932482764898225013516856825467349198804614431105356223360746797\ 0588151882870514391605400671137624412960504649921347238163027535482720466112495\ 3557505695278358850201158108354976877628738781511131219024515856348812454202174\ 7469154434824989109792580938424704303307468202586448213348013893043540994466327\ 79146329231025010746034899354125, .73948896869821419008168128284007437272940712\ 7187977068461946784577689066472376843119838303255863138748022789484878935081897\ 3510398845369304143426197716069210491070670191890650291295558468573465382973328\ 2626227406775019329746245948508160335278785750084882962495680563981048667045568\ 1038169543780724996100931927378795537148397003931796592023933214819855018888719\ 7443218274297223293446095067678556890236277642659348255231805120220343794050526\ 3535470721839691643368130187332132768639606317462573702063082480964865261, .166\ 6349384821359246315779629887897544460935404062309775311770031034700605341365168\ 9729904285500858354637922779941279604703860900100914757259222796611573791318769\ 9918845440844986621179065196658021286606127311603847223450951576254026249955814\ 9144830591751272320175118618309822964137149681691687800831707528575380402905398\ 4473598152323174736531890011964128777243272718869544231720946251294246925255870\ 2265507441427188805994961782916513112060233109738593609229626596562254288668187\ 78171411469186592370895339257696654, .72284417189635611829155356554972812189356\ 2905996365440420424691799369416954238441532920144007871211665523693218572662905\ 2851152632313127973322805408398705017478399269412939660825667275743641020563964\ 6819483329398768491436910215751455642323740050298840551209959140592807038356266\ 6799327918792376222466633912422365148142075695732378178821630648995689883393096\ 5095806644234027941892381278999070862323538384913956171766593193627719166827887\ 8031975240552420244691936637386680385365206500270871897204544436382125082830, .\ 5810954469916523270707468932616886772497757033628183790562769412572167344664580\ 8199801302245388673131045521553482071338862160621743329882039278235177402390173\ 6089461844234445860649892359558227147143513830371726377300426535266343924347595\ 7284566850565613481377128774473918332699758241380840269770007627766840625200480\ 1368504427940305918500840955846604911971203979716084283882935716830489666547607\ 3518605144635553533273934561641191722945651429947632753747873571945728465119668\ 05569135843390197055168465825617881632, .39748075917235943981316574086252556278\ 8240920921001686011302463843585353330512709209797069548678530634630332776202029\ 4841532311850788429409431073641603386862218774441696317397434262258871390311916\ 7849231921672356645295168471074659565363978325480812622537317435307434529635030\ 3084414154040495514528941381112594124221484878604642459768645219570443375457202\ 7067480811463666927074507524427568036125200382088916183746579960182751367347665\ 1389497667760990498737749654820222750339465018223993632608060543136523460274953 , .1999210575944530852217054622394826298843752716541386779175163321894765092784\ 8445998917907445374070260120505787325413459111370802507082268194217713650888070\ 0525177360255257697060166721306512271965752829056362407546858834078416883754846\ 4835856547210516549895903884878538952007219993606489878003446682204771750435402\ 2212473095837830483813529230705212760991986904861709178696818989420725383005074\ 3056359062076166685078520900443549992232753035901433750569177605676648147349326\ 65364317680989195944162970571496276341807, .69352599078713589748587590899395547\ 9063997328412916770408417255509193190841962700729592705497614677436068862753273\ 6074107175482662244782940170548163338679205834721552313453460339901422566336655\ 2717916339295573794298800873715343269502495909579456339210743053046811937756958\ 8987106188981270262536719120120087713621743404899590266225034962138278078973779\ 3187254973202594994238417360955173957497290096439652476391741223492570392215992\ 6425740059495974900795065872364528353291228911713432133785473942122567093346247\ 709, .2497591503565431834592215178008857243781399770549380697377810451376444799\ 9638978970658844717916725844144552378937829967598092173113552661483584237424856\ 5302199960812563118075747150695266812965521519833227223370692259271795159390817\ 4214213221765215064993374500589971811877992619341043368983943176943603814692885\ 6185485783801214901859323236930522030427181959597548265835625901193451728575966\ 2746640710044446206613865897415725123316246815880904429412232313468884193718406\ 81462245305976176977277102786794672872878386, .63489911983218375817554091431053\ 1567268902380089956926459545960523667556375704434841700690645522987329391259090\ 8480587688139020481843196675115343310155474459662480273433719077547009566091635\ 5534732666258710951597272079830751749752809067955627382914482328319445792798640\ 5598584547385622771486029175274859655493636276317199748722311750967402950966362\ 4901485733285691432865000584011103599074016190310516515711712926842601905642469\ 0859215563931041256304939895338001911090910676220898582864150840439862854486398\ 577301, .3323193728996362034310192164821727525917227174198896997224621232593889\ 0438756481320512984592547188229125081762302086084483817350833770860632970988043\ 1444025001919972242699469933789860679861385294975928139053753015424869459876946\ 8953346408574818159302754273947035423806893310494204632059083165817876615197211\ 3654417043861184260248218286004873728760943122446638716724651437178438503823772\ 3623355541090860094859949311534816146228359590441261775767057865010945957079672\ 01854656968812312076825325464655242509508177063, .49234422587144639287884366515\ 6681637766095145771501253294652619319107679598394581416502704714809305523919926\ 1344359792043735293875759211767160280968115824378941127843966491018413682295630\ 2580043156997819218377049774815767656876339831078605811288462778699323883643555\ 8214426414469328781203514993182259388553438247071141999163619314746524346376597\ 7073980880883231998176199099710384063542638774175128150865444200018009001202027\ 1409413496735498015525434811272849393470807923281027685771281271043016700341564\ 303801299, .7798934003768228294742064136526901366306257081363209601031335831780\ 7176097910889010877870730527852815898902781629166063801708270074949215726573552\ 3786366463436393087606183392027542160688689218690116585020844615243349360379001\ 6600823778632593423628024061403454406640772788141518332260458823486382324408978\ 6318641960543846397128476443483720801159268921769282039469546101864756334061489\ 6517092699066828706400915810483012037548240117720004727725957442230473450931458\ 98521378694816851188683188371391381568674725841320, .48825340607534075450022350\ 3357261037688367154509215382947596442655275082135419584897666036026602259902533\ 6865850583782107875902204421678828307465442979214895988859597413834740053201905\ 5041557702146013991898908688542473158687617219409365444285404731861606185588195\ 5081196047893063583023309192859593746645545076621782554867283886515107028444841\ 0127765134240653593744282830708637859953124158895983992121691239863862170545287\ 8263309004723587413910004235590318643161962523988374710028509159057779055519550\ 657213264465, .4452611760398215350645510097420897821594020577560995201341740322\ 2514494001718548582039288200226565982051951516630043271348006640861475158339825\ 9939350955990804850405166908613385649677838474980190959350377199601511777235163\ 4539531631806416349714492695209075240309636531054056505317534191891665096643345\ 1891564280526272998154006934821402222316440338754792404054649516615014852735899\ 3727759520129204361730589001688991544409799574240089525221033990013549671719918\ 70263640411430848033933625525956637679872832225351780, .45741300964177704524565\ 6104956144438829075530295321239512596687360634808231619161724507455646276697598\ 8415918233703202089990756489255595543073108075220473270009002881570998381808697\ 6628484845982332713348861250228434112526136406092726141093845446568936204485177\ 1087402254929571533962273377402169861775650091179136853418254460907227377229900\ 6677189578112628936067981585315425955382936931326392363206191576895457197067095\ 8376281816434515320910149928285330311431775265334276796296471486487933223405425\ 768677714217811], [.35581641094124708419525606053424587940067980490712918119877300601636277248228\ 5643587765527462217350937082105122082588826178537834193911649330896494809368176\ 5414427630398169245611099226970450772465515219979161749020924619446563679668028\ 9397144544385117543857849326078409538528081486309482509526032198623853235809297\ 4380490668364385284110038909426600519850419577057242126182994588367418610262701\ 3041871998798992369437356945175882111992060779955801617368207061485104213810365\ 0525896848640311447154173459302864582632, .101830179517405689380296333460612821\ 1705550337333026560154387905126337608786945119570716917704732826690245777628545\ 0227823985910851891320155524189379624589682708937481073141694379474255402817162\ 3161344899156238732460234835536295167902229397447168535225779633835962960566126\ 4530682778791398113126612879702090286631692858842507766135519430356859874595887\ 3945245089056244502542956490628205784754439212930689810276828271433681964862421\ 7046878998662700455000457993119071595652882674456700048096288961391296025221520\ 35, .37675342621596312924379276089267852274544231387822771132328630139654433684\ 9245885696914264254713963078280097153451824480049648185319923358215479040571869\ 6880143115584968832590607825211699077028586995072681856051839448788804685751268\ 8595621711191421342375822012204618742738661295381291796811583320274274110372475\ 8976275294478696289429232244389826848675560503521623424968608737415130942298692\ 5822770358646144329608186678785972209517488819286982942303306650348188448055066\ 7760278307714684910116873834706282356659158e-1, .303005975321433644245816554273\ 6222629460126143743103341323059751856899670248564209887049531349641553280947659\ 0927376259750533393036624408205405285317910149873770806977472058568176712867148\ 9506812913167530456971418661776194499731428898366076364710238483313217826784988\ 2590514736140918740706744579325495716139742021013356296892271458702543529356574\ 7744340954076247340505125041424110440735973780225381414091078901781276587211044\ 4817425616081290646810491366221982610111831658619879571624167736423994598982607\ 70467636e-3, .33977634439314021465486674514415580822340737434353018947718389533\ 2829010516764347579927100286130160784449465118944900995023696304509089191879104\ 6771863048969881144931618614963827514184356620419777865617834015790476199821979\ 2097100776251861145561199323879017061492111526583679099056455921824532448236521\ 0638175768730294837953187275525282550729494787825024141460084956127103117942274\ 4912319210728100669005072670134862717154019771553614407176115716270535942666836\ 8008982102255620782173358824121281994281413280782457, .172136457863477453355892\ 0893942741804652217434801868877378648014707580483321263659437723689025901137525\ 8220707015735666344528979423907672027070475895605325638203961812169812588299516\ 5908038748074846663060248354085354718488787576743050445986305493942172438580869\ 9313574864704438075760369269980225286699316490045740238305369648954122199851532\ 4225887484196223646480188733898333643801286909567951046578891021589079550883880\ 0083141747962131201426126910993823188238821151000648291295237994254837330398460\ 49302902975003, .14116998006576585807318566303690184816424143210170902592244199\ 9926009858415347069718859415228681428221415529279303447517343757982794471617486\ 7190427439079786470873371839227877277216404857395086975092357003183364868174157\ 2436331784843668279802851737607755553579881632787070901058614253442820210151853\ 5127376778449941804816247685289415482628446768139451284406299737068211356847845\ 2290141288613069656044434430824103660348976949787541566186967315847001551395924\ 5029194938402803416267883693661179730198267305756650056e-1, .523589547612210599\ 4850699747587478659962174951131570867185442664489855962047581818724680541546574\ 3409686570763410501810516740498105956566533960126042295234256848563111388510372\ 7647594838722171172862585378137431907101510493761467906679249090665127171584332\ 6615453205779161652928968526864115295141186067391450128066027695343197828794620\ 5861835281130311917221300927029731558428635070269822819309904675213373757916097\ 1001040013884062839733086908165484106784047122838356067117873811285056134955776\ 17654528285955834805e-3, .32920925706143307473323175783019135627451771790023342\ 7843757624819149161533760274432180661955968422440372143618305852477783131250599\ 9801421423728614556995287120866389492347479287891408038460392823928467743172749\ 9907622907859573516114165427185307064084508329019229913408180380961203349787012\ 5391412424771863953826659044091632222904470219460500571249932138282349476963792\ 2652805672638442785339034367036809184953964836586493721506533710287139943694219\ 3282411484076728438937118378602063779969249416338479491107055750, .230917452238\ 8289843289321928715260999039285367136592457125569008717048234458900218972395396\ 8830830954526292052523149116293155323984160622865441619397963241229746540423978\ 7963223292680534394041607200228000152226243065834065413050019155510144605348908\ 6325165217311654439568721974931704424457076850605015483793949664098936715571210\ 6969858142377304337348593922449061756564504582097796756484274271834264995832821\ 2464032765422763774469788868454686989339085441458874720810364319861467986513419\ 43360744382474962965073427, .88284227092321934635429193105746360575561199603984\ 0877936831915021112821160748280263321940937848262423487907669979112530636813617\ 8157675365561772401112547925789239285813672116985432798261420687675383826328645\ 4805810684244111689597790473674999378285702662259936331606695854846186972760373\ 8114936117048092951327921297692560914703790151280548925106740916134465111684804\ 0085717730588452488883957919278412329174745286696755210657920687287408415868468\ 1014584033390232943807289246805804643099172358407113377863370454301e-1, .456523\ 8010397091593288222723864911007118820966188900072682286215909412621199765116042\ 3315718973816292542918471522598658226228618905758570188590843392498952735395931\ 1828060489971604674613609931128432732968881394103495510944964996382436976609419\ 2082031165044121625245418222848207371110824428293576179248028607618150249292572\ 8349005218486855295858535593461993173342614481411500976660451163481189419181329\ 9443636188592563311042469275198140819819316944101889606069217356252593893121959\ 45094230314950937412790986442144e-1, .57434708190418263507640953753241619656065\ 2753094980954553846652599998906841053431714089708769020788249760199256409571811\ 1601883200233226899428020047691454121465801129875308295195731376556901459975023\ 6237327034169672389727201729096190617454863156791316843253793011178557076798476\ 5104497761463224809096378429043019059975142759806771495750274951395658598324592\ 6652648523323913813793001008332029777381769093102209071493206159885979028948262\ 6337457130925174163437040074615341951550021467129847250216882191811276101830e-2 , .7182231971855333225691191858429752738638779954706017534445172234541868430542\ 2121749241270518119725335676483327821150505585776791065472871220850249461831204\ 4948172310412136448940735390610609806998381526057011248826701322563305518145822\ 0063548740624311073749575129913735500489510754111273218037362959556709435003010\ 4361362157341565847434533113269202255924324730706842826597845361674511657959999\ 4518715755847178132307427218049204513227747056982947891050164542591582923061014\ 49618261317115079990369508428790456421312e-3, .31615829626329342074143398180362\ 1395414470724331981382851694449052867157429482350009955746671256455574349540592\ 5243414405529296755985920897738859874772050425692319264115075601885856209202924\ 7019490704053319817121789976982663249290442787307107093083281298774744879706669\ 7900198091001884210014476830424296148299488942887334923415192886321892474367048\ 5162273060942410517233439007992516664728408723289458055489016723779664577787466\ 2193380664116426016746258606753160463236705821757180542298977907209626456985874\ 883614, .1244349248565474242730076153850696821392638023291811897885174835787236\ 0944146359062975130835149398237207154325891870942531296299254679928371026353275\ 6260994210425622570093958445533104782378998907172186574975005985214662293986256\ 2991482489038685521187591281111703677649321740606715537866293513722466972380007\ 9933868637743570459982940125337174489672306184260650643660139034477430707559639\ 3740318075589803465926639575177132098902951426269841060251096735326967915585383\ 23694868581989165585234927530935025515439107892, .27515569311172155313461234310\ 1679921908601323652623464534642277042040419836070909169595729323291152148220631\ 2540121503878369383007737907054575733329076515395192715299745167855156306208082\ 8126376424664641226369946438795858695256090800838471047791357174931120358722385\ 4027463544327348471728556156329207033832429783663033109995978867237092885222989\ 0405782186324964998557216737292879285587201635029203410619117173564225614866813\ 0974092958453480671154465509772568836294970600647118431004132001637546301522179\ 510477316e-1, .1022609856621743053937398959574745053582997989287181160106810902\ 8590391911184419969905552872222007116654890042780573945224407150588433795896186\ 9101492468638195140769713207631465953936278154138699495916219377364635346934640\ 0732089430594923304479195348934814605015468529002658946597635356498808377462340\ 0166571885656331842105102339991026754597282943853792736459515827405145494160639\ 7905191181571348706015051920500556327772173714343332939675027948958949943933209\ 09779106042014919688238183522175543175159504256932790e-2, .27820979770629768260\ 4620172668668259377873240801503591819973282888095457143277956033189480966757263\ 2051793626580896402576542315478787214549641580222735889626795784951506497544883\ 9622631157682158968823605042797843818378939784379403197360712274664794878089230\ 2526919352689415210780254430987068147851600471780719913152598114627026211132847\ 2471037497801639220616162583993276508296540407606946474328190656058550123406263\ 0698131640971533975369602056940053576247100043726925645864508303070919894691825\ 638527944405248211, .2423738776648815266738461001050958851706463237554887471679\ 1980443524943639688229220364998481079871741246716877886927212896218783646114469\ 6950752432909675034945329167266799405239532667693580543447197062059348631172155\ 7737215367090836799083914229578599769845122162178736735246020625243623516786769\ 4017080708433372755389886685366264171699961224636503755409598959861879474050835\ 7788113190745321462494687692087021103354768653885949832456590888987519344882726\ 47495281890161946371708047810915316209815894276465806290740e-2, .24934139305391\ 7783731589141857599143477482832927671078933543643279839620337808155509393448705\ 1913327985935520255204506968730264808253691384291395831208248526921430596943132\ 2442536375084206690922875384667814234390399299043527358142641350910344526650936\ 8962160761708877370578084658112909352669317628513393544822658939490007279294087\ 2854168177690484082773182021803376503483727827671243950381183208431364781692993\ 6937010243179388680077750763066135308743415680783110620454585090436216026035861\ 214477413711390217909612, .1105402073593869613323331201392404643010515172636831\ 1501377648193004717013792198253749533347087861149019380732116007312736192391580\ 9287955531530985783767287259056410930664456516130287779061681053801260485435593\ 2808290783331118739729536872355783658314918909744040367575575503100643783836101\ 7504091755280733152381819181787696916999235883425027629033860046812311829730529\ 5611393459023394592406783497157177201268751995595049769315937110468515074096892\ 72955533555908760342905460464493782111727524394626221868977162677, .33359432660\ 6131803940766378262099115320122926503005066625877620326805081983842523033329052\ 5011242422824394965152163113777665553151325890119484627855124998051672014468823\ 3055160808904636501494108367009763470386644244330438428668164354023922846951395\ 5840443173601452051241918802865431645426351090016803753852987300574919080214558\ 4949153215557957921660567584249045500526232651925951161998297218429586511251969\ 7963287053778228635824708999777680944039896226760570238067673748343643939210711\ 541765693058848305891912973e-1, .4187609161656761631021996565006342817799256792\ 6425004279769166174311300855843634669215933856835231081347488652591903695203327\ 4115291587769538366289813838840062521397900549959189593898156919830890393676056\ 3678829681875934809346056409893491892368228920068608613061635572548901507412604\ 8746413467314999659219224761964360362385218104556982176056473855693544229394663\ 5720495478734095626035452588424030952580819956784616368159041675611525748575673\ 37366073953876468414365863874966276941319878040308187598282604508123931e-2, .20\ 8877111233383570222392977121868203024640980228427918475380668833320172344738044\ 6764701660432946224590718983230403233731104558049271881873064249582193107806209\ 8769556601404198288490417674173512807079850719142642193829116571549858496036128\ 8895731901262735265372198288505677953106934018774832771338498610496610791686044\ 3017237337718030418288303674131541807659812785621471524194746096132305564680960\ 3120140144266805257211334216681577660813245544425051624156713063465691960949103\ 539919886450105404537790542942933347, .8175600235777755778102308866942774752486\ 7346980170860139764571438228281163013365474444459387750826386678186969524492200\ 1019064786281047408393121818061287635378930850866072136874825019193307276702547\ 8841209728623612738296070050580831727852526928134904210191049267134032959021543\ 7986450196950094243091463287406947484123219668186085925179215092115078831305102\ 4479868301973232969806817507531101069625079865101514391491695708474717617643535\ 85357166426212675174216916044261788772985163983144567756557996482894336686920e-\ 2, .149822459032264150047515934343866906294698087529005179442889907907208815722\ 3716013479472379242376570557664552386265605795304711345488373120237399993415505\ 0965919270238093906231350021989462038621678240535904261063791215397001239057591\ 5680785409162566543267288035157618849870130175604116858259770590447823888701579\ 0793625551234035281162802316648000026725677527935351180384967967042564755559127\ 0378470018844227627255366574679704927919645958783582879596889924590742956907085\ 597421684157256614007642691608975817907483, .1935039306462222569547985686000088\ 8898726178644109345335481916432552759446654099589944664335388274743038266736366\ 5999331914278280190671017273424369254838516823136230869864957734797595970553123\ 6705709727178380077144198546978774500781010786891234681066151225809033266521621\ 4568247470455565682771963321698418689085546479476638947041839817646968082152022\ 1493105831885720571294017293811819468141727848081198145757670201154154319674666\ 0371755983994225845561210090640323660060237227008735673094224793176342753614432\ 6604e-1, .647324328599992776114805122306147676507259184935124927875889456482868\ 9767392197589943934122214205058087846363560694739910897485236618935731610842469\ 1904539953342200069468201491294911327652490816276024886208651963032453877398805\ 7086409371011013207968172613229053224525339845587673687939928285097920116780147\ 7085852334554815811709619477534621195324093957288672657216063638426108918846849\ 3784811368552289278947717114746725626859121750104347910445931564397904368123769\ 094385741334474572482061102030927069355789734125e-1, .4382591473903547660767566\ 9662515263749378657245241656733440732626580593821129987717346067414115484567878\ 3695214703314253063544410052059564474967388674221721132752178050536115860073458\ 6696348603695477759018193090573360488487083952963279636035892207011671545097890\ 0743262883621349714987254555944792826721543849178901184052251915498376828706714\ 9863608791685916610106681114816652677317078853304410541851491425390873142449296\ 9568545570933732419328098623146238313732959286262830366413591615300559752113755\ 9483370458066, .343415678363698242195300815958068456886541812202524767579268920\ 4494767226635844744099255427628399725897527005089177552024429097273911446468271\ 4055265597412094054489021632296394529359470366542656770468968921647891585544599\ 8085232923135895223449457197999343054082961635964971119211497312769399666863520\ 6365276503771482058891028635328030339506670276226209421651853256851866462127039\ 5118473771336621575301809463954532603755332565097325095745096845964935447989659\ 218038140625126616790618299147330815008442696368411148, .6975049600820930130806\ 5516318726833294476912137928660013360072443871729033458476369094238400695027262\ 5014349958919191885370165981328103612175605239894074762622738150653189724529013\ 6820492455939905732544567079817597479615778055841743588944510277650678017899267\ 7796589049463874435961131910692819746110122746872827259335439354293434168652318\ 6368879018959795151666856011754881546571272607257737339502215420807922485415493\ 7833384749665450997274669852441223964385567454191369404549475754470637639725327\ 2502861041681961, .619181755819592936113576239798555669397764585429247750994549\ 6977761444610276255214943428073677287553192911533778802628929985534071850265948\ 9383333268463786543907429251834850989552216592485993845609917017195905635343666\ 4447810392165802028728080958517665600499026267560112093729134524113981924865988\ 8783607810997365433306115066353312293240492012821333786222083785350946181115479\ 0052713860577569170318828199257021233713065507631636694701160750745080692068067\ 376540159205757778363126475693403613628685113656776107232], [.29670758775528065484797721367008216035010493423799793023418629423247131320535\ 0081400857444246075839105108927920011504893290153733544356754986958948327514724\ 2662182411410634871648446845373224222977663129667246595759753689030370471345778\ 3962078113016055620267572598995811343544501777371242647903142237936389766305851\ 9630932675145550675418018298897145561625032146931307801919167336490626033627364\ 2590593746607304171763781605093697214918819979301681593240949965135314423226650\ 2243296332327516243694834475833525679431, .376706201032891677894610720296455013\ 9711271606027441419248890740376974662648554103850263829912594294972634822225370\ 1042367279987881021722535957741205467018680725021172703875051487156499152659007\ 4365170161979832508296574867374075571956975457661206003408402933195273025565965\ 1198210648907186898304665604684029592922605212033619631135716446818496428731157\ 3583858431334462405514805807053686909685540322349537964805687490998921381214561\ 3393794092782131589180235983187573313851003758540518985793545259090090354649846\ 52, .42196276530242914410041432958045191196088652827175175373977678224339884599\ 5937639263015991772985947444316163636841111266147684075841912451456300462404739\ 3521918887141324752791886239162393528201565951757845284528092912242964437591944\ 2369081113788865468291525999546742033929378550758892591374925478221547199476208\ 3805537293852381650826686293784209610479202371664366527997782060130586221178182\ 4900844906855975631139488395371775745589656144578552874130025816888966520674793\ 8013554036540554361030621891488829686305085, .495122215613188553150146527889124\ 6884217064059190062944548132570702718963232878125336445164845679092337966855156\ 0759842471247725534108544323219826800525692008969727521688057227689298985813371\ 1818591110934650565194073388564289544544351414990329775228994928059137194172608\ 1888040348280798456164219436826696861985712605196131635692504341151196093358179\ 3537349878491031517869603150498874673842210476496969032634050542079338235547180\ 7378983152193550801142306830444460695402551090166149094901937350023445980012586\ 64983, .30022820969538476206105294535554204582084179136112916672567858174838965\ 9676115426881928406036934342234938093418440979138503138745011591519360383493921\ 8180557755601530571120218249503616947896391134978579337323246855872501811827624\ 3567159794542644696938813317880848089386475680094924460699990808276660694497605\ 4431686548969095940261493315299248164231276869080471278636856505055609849250524\ 0366911003901070094643212057716197766011151740131835888401630646534530589971679\ 4342690263709735424793052668311444462930555210, .346551546382434324409379010118\ 7537194066806893001207215828545147337037046274960136509659996336598928370963128\ 0833883974212251709404568922117497982627637455769972536489366128757071817668560\ 4873408860992527826826802131259177253231417818225926460563616699167502921669326\ 3701253406865574779874052361792096554144135906418741013513516271854339447233533\ 5955737074799988767865795468997357186346258252701625048283527664328997593607770\ 8608129304558618689074119839080365947619852433325552898156575289087284581436761\ 77460061, .45277101725608728565833261887768150385550297071629620630068320821407\ 5243195068730128871880673156734124798329069658134269944650192971117822535795429\ 1269837989590293176644490502993810452173385224143495821054276177508228159678844\ 5244791727020093125560664963061244011910390844664795308644126767699994079016770\ 0007132464390754015544702724352685179302956145239866949961110811625773394455882\ 4282056021362876039318780288103490698948730112516746317806676478564123364046909\ 9443731872509686362172208977354902362502115808007, .493131825606623634358849200\ 7724227304975086412082854203610868629360381892630010909181198614886016854426740\ 1815661071072043834508202381343508097642532950751360328267564209597945964576922\ 6616596447320959388542828335170601983625334754203045132352736225713831560989202\ 4691506631416129286142943720073233560790690081041846021261496190959985991208187\ 0921758188002272130012338126922679296437104767888830251114577562166672247464252\ 3460494512248561746273142936390056941487418040783080407812989818864472160641046\ 60135907243, .30260473151913961998662467692950821490587969189050927803161199962\ 0678973726892164685772787740996018537671938451898890101944173670648643920254285\ 5521235482077225549044272935459565520505226426897715561806636057995738660568783\ 5801349149073596713667978890492117617473337587721466963953195511761138474780326\ 2503798960070510189287106967654051699461529734010993755517713971640058446582787\ 8679039028723952025915173355337019180258008099924575264254373617966431516801411\ 9743951180243652033556506007804544649109254140664034, .327660246199458465723439\ 9887554634226339392901129205038195851727553498782814448918504098528360511061980\ 2332249661693462577538410836717850863049977688192904158730412565069436189511880\ 8101697851804520038430516371092995334343734337514563481894677145395959161639382\ 2497266990188510079630498314924361745852785905467141545973678941366199153113455\ 6991501036568364562695625945456877461207877685508694900524458659550515143019099\ 2320494595878605918019082030289312450322854471417002767197925831465468622931133\ 25377963788887, .38414195318683417681375394794475888359607720283336516035460173\ 9811165314090124701021218536816087650153064127770479954557691234328961729215828\ 4211878058487895608341814492876818192760047519688274136911483018603493606666374\ 6544494459513669814292325714185566486737029013010318581141692204566708928543162\ 6876638953228741299250698303924688469143079592881802477356255021147443543834008\ 5356514938568169553949736766168677999732719631063413294577893047930943010866803\ 6474041714904084112490435130573702107338520461322567552, .414388370457783451204\ 5687666574784533240524515595737684792395824544211442678724343531900187759740189\ 2139499225442988355786117219890132101175122463591044089466161897837811010494568\ 9849879418086587002726667390872764606830645342882206573619412222243041527872310\ 9434490208798003213111650651940712089550601498461601034341511772197373622759836\ 2159939861761446871574012121040646693636372426392582040499268046183257914335707\ 2665153333628718023228509363985602933767891084409123934517738242025846780630329\ 02477382661281357, .47123423936794159106979222180816995210963650766038633598628\ 6868430777086172691411829378798602499955677751428295667423261431656975788512651\ 2658322388784023175598597823773893398974907358519400631693262679455208435773395\ 1993884372738017202997876320531887997958644826335319248620085431732869213245488\ 5911344910068780771182478922206710100532910049564983357784460216855404635406154\ 1444051320972194954626356389156624297583059446154854008789206427486213875212020\ 9907076199511826529190513010194083703221589463084792171016, .491646742580892392\ 3707662832851495569882046902559826870219561127887662826366939320488287706325038\ 4387244408237384420081502155567815715265823304611530681779502188991557097217206\ 8910317930333346264486482996782779368357705468395470413560201302489825367806195\ 8717568785686962192946773268139056530289481212840350537166529802473956305280320\ 1530508017997100242886552202949615936591358479866978325801463146628757045752250\ 3940564830522228161265425282854315001429764386760764478014437512889961830430433\ 63232786472428345630, .30560853091835760988286226424609104796380004407810833263\ 8558309993634881021323706038829388256276968613173616727061377616331550949478910\ 3692287901492563217784422044946480125377924464833262265915837478652686248083246\ 5705712470809476143241981619941396839942065391074158332782398308168416537155945\ 1830867779491194897998188795000826401845886244881952482640136302199627386774582\ 5219544251127165624159247799552879983049858997832029032782521144316843358201994\ 1156312649919104688273857657455390363327940067757355972308055, .365717128162078\ 3082218071801143441262779754526052283103788704443401718498205786543002055442249\ 5358990113656485959948577935263307717364176707951898854950463799564269080990314\ 3597356609267506855473194880215689295631118345055613228283679391890827201802918\ 1906826130413584740040980566826996716272511916105138730247552804199363442888375\ 9474138757623914634665306382212615222734509112368061211390769356541506214159581\ 0563026953620147839759229801322644401463274396500497488509286742381400086342696\ 77714671132919273875129, .43321641052936177444790825728366497752708441126480785\ 3925966576740077903281304181223849798340288310001916097322659092194890173870639\ 6508839539750274653429010981986944300756801244412379065680956779639234294227187\ 7287171740483685246314896833581283441444606582803680224425907488844708859276430\ 6363549613851265529949304658979419174261199856483387441250274666353484028582243\ 2289940081311390620813725660491544872161821406426959055817649123114733140190918\ 1427466511718559807598016236407124553257447951398047818039388443, .489623961998\ 2552894298837775059102630220434609684579275685805124551847336776437646133708064\ 2268517256360873829360127005432156995785878630625098913530256908568108959297842\ 3529729755932302372199929943521521911103430831006503070960169801763755910280228\ 0661833737445661172942129776241861252603847025827895066954630018661864630338494\ 0197733719198278525660339366739524800064183622370967611800709118254530146288751\ 4433675064832038831064878480861434645064713934019333700428672132123094160919679\ 37855820331551096057295724, .31484062800023071243962119157860772073063790420607\ 8590748044793636350222913836252801834375793758580912488482696223473636358358005\ 3643116756585703030752608959616045056079185057954706908770202417389724407287616\ 7158156788675084967637319802513601580864924336988846143009973353626255697099538\ 0284086472532856100003363221535345105562486725724509169447371057922134509556980\ 2186626058486699837625052544628219540511910432582523982810125970985845015065065\ 6584226434473013202299444377868271740801946986270735348713035286586, .482561499\ 1241221161878065501909745237575115896930112252764272306730889588079457092434739\ 3686212382930729445519470064508791707650267455646395004697336340259793207509914\ 0596421716668016744628301053841713027926679775157533590597326233038393904072040\ 2493963463732457943111776180748431642775621499868637266789302350701148432949815\ 4954028550509076250695482424021740919141562575531756870388805476627307017580309\ 7164158320344520534209129684630181428013988441181171730566850402314945179381446\ 48828214653217099140405105833, .32246315536128410422112846864449929456343376571\ 8604648696233528038678077012345262535952280161262770867328769630178398205512724\ 2156839269610948779333793768970438475179431810379572355702906416812650806781082\ 6048837024295561502924031466792195231230804091384891144756122054298222125168169\ 5737701301882128876285992303595103938421165119688764667860109916237926502547709\ 6606705159767976365481668567305358846856871147053844294100223820669293815666568\ 9786235536865742999375043117829773982267152321867430468386344725982069, .372284\ 8922356199455991839589213677209246949143138373655381465420426956967282432911189\ 5699031421451046677874265323631281227683931767292300984648603780315755401739151\ 6884542019307724675186372319509876888722714424693389464047866571689119964612677\ 4325342694707218042496430963114279466713893725258067414438217983366946257218956\ 1696275556110683330509738794515924557387333191310405772203491471212693355322908\ 2167369432818617578769366347520283503129029753876767200180547389924033045172969\ 82224173119037741833502876333297, .42648469739078863898515376706860141750999150\ 0525884532663559446575850855311231160185923351601236858891666575207227587842034\ 8310421929444697736242364035783818393434499997783340037938292157044082523471709\ 4619211736238437913252407730121020467994229448225356536016478011210776139930892\ 9597809827690333309106866976361588361950836272205515104752726727372092612982779\ 9799002498292412252732310579817122847063295888104463943087465805287030391402571\ 2374617517445660371089954071840501299942400986596519986071627617114944203, .475\ 9919056491400288381479563060795284467538569540249448797383608458524056406807859\ 0111671776649401435153532451208407494018636822982355749255390315844496652179008\ 7300327362266804191048036697947001239840285699176224942539184736334051602952285\ 8629139843022921736820850173959087696555773220718250427729008224623739102341619\ 4655310858503244957759420897155877747930625625124611309558572566750591550871429\ 0245733978257557215030706855646584876282173679808416818241420291770849712129449\ 66175736129140783559329686179510580, .33428401937569823305318812711728621265786\ 7395929098321399127765835757378388934831639055756832205504343610644085335568501\ 0803110780401997922969531965759390915379532966272994115119285578654494120986682\ 0583869934681844076204976496216488424919883002378773126370246539192810335393167\ 3111153587476455935237819448296044260524662092308011849438743225615132273450245\ 6757307546030901000719677847532366805274382645000477908436152256947583613617938\ 6948796521026496610337176645359952516160828566167594594244761453196509874996, .\ 4649282383743836268969520442366731156906990387527015100382886267765466554351599\ 5367173535013249402643693720680153921182942358458085478977399647343569107260254\ 3644921428069143439100496777842804988659166976006210561427041231458084317326188\ 7777089670805291548311059417313560182859751664917216163938284470792910073195150\ 6607921591356113712974342438882659629919613032666426085328889296534201449704317\ 7007689123304659900285445398030640773546101578740316064028812769667789219481772\ 75769051667474113693471411707910891254, .35496304214914975596172393210323500391\ 2456678636187052518779983674004234723945949470034489224044489113154817089388760\ 8769830246047562094878101211132938593023137976926316999716159308627370819279182\ 6487212591678463865357286660842561054722772219659605872339861729270143418181364\ 0813141491523894848052661567065770806193141479866645049381011756613489000210682\ 1698965690766553502291868512820782910033811260790951356404773374381823227402112\ 0745171906454620182923510058629811279252399253853167096376019278878567939483479 , .4442300240662041326163218079134458651433209693396689761864697625141751232090\ 2258979411885931510961108115228200906920558010933169847360231736703315171473311\ 7795142638797866011967694077085642142702833605140739407253598112900880753289436\ 1140333717778167876943800395568015353467217933093769987773708851413288504018708\ 6466260266628554076720291339905971047539156845171812216511401133105497585134322\ 9733042965070916289129034151451393722809643844227279609411829379019274880627003\ 88784833978569476873381529831740924382648, .39920505852570223993268242660703233\ 7152110470297254340153763872543188839416390816078721908235636120104781631003296\ 1077181596341315742810912060337940864185712076486712167528333516632592090803990\ 2439968386404190943436506532054421293728314233927927467410787899171834721300146\ 4517978224254321802490382890710302566335966455514255807853527725386611484544102\ 6909982404577208021446993900460226133241542047763700531044493094951859470208463\ 3372536838886665860459773793041728206573360654267260413545971809208616342629291\ 563, .2798934003768228294742064136526901366306257081363209601031335831780717609\ 7910889010877870730527852815898902781629166063801708270074949215726573552378636\ 6463436393087606183392027542160688689218690116585020844615243349360379001660082\ 3778632593423628024061403454406640772788141518332260458823486382324408978631864\ 1960543846397128476443483720801159268921769282039469546101864756334061489651709\ 2699066828706400915810483012037548240117720004727725957442230473450931458985213\ 78694816851188683188371391381568674725841320, .15658432163630175780469918404193\ 1543113458187797475232420731079550523277336415525590074457237160027410247299491\ 0822447975570902726088553531728594473440258790594551097836770360547064052963345\ 7343229531031078352108414455400191476707686410477655054280200065694591703836403\ 5028880788502687230600333136479363472349622851794110897136467196966049332972377\ 3790578348146743148133537872960488152622866337842469819053604546739624466743490\ 2674904254903154035064552010340781961859374873383209381700852669184991557303631\ 588852, .2034184312260139559033204062352395478681123007890712760013647697244491\ 2563742331911824321360599887510801103102143036104968799590076211232396847095292\ 2191474321603039086917419163222727033089634967932112277674949713238512991419731\ 9864524058429786041943594973971722712885226318134668521061708752972174433848465\ 0534491089968879814069764592517488962551080247704635751718946708260341067415023\ 2915699535255515749911053604199598928783109417834113843207836075862014682504374\ 90089260504496765844459614993407888350353533414, .12640692049486359590483638989\ 4390739961923360480256858054962237128931356519888535264331747157873684044628768\ 1813813680510361126098916302314235471910696745926100115322308848300705465801709\ 5194147497975619727917051878729566991799539517858910351800824167315879230612019\ 5909004123087000972697006473678542419733242861857179416601176529307480019544489\ 5654400465146201287450166831525348321695890904392172241470866031997046248816240\ 3236295376467882853763308909770349290486527720275719388936008770437113556005311\ 274373850], [.72800070502888773140978940456712835339829853924642106330801958628199711571166\ 3206026726232170659113722614816582364100394039242719750236997287939133667406938\ 7354753652188685206110284895552929760933649608852330387822613851868345194813918\ 6803270984244724896864810308808704461153241179473397669475140924785405977142975\ 6595369170951461086607858430186103908996208455250690513060389944742473883844478\ 5893760859471665390826667178390761106000145865438908097286256681589445553649992\ 2984837380716007211506866045409081264651e-1, .145277193601314683789639550743173\ 6494848805927662594402296644361503525152049108319417122766508274180539572309188\ 2832129138443738415529325540805138324067599687718481916425711610437887715375871\ 3959317171238645307689446527734534424811148426991358513433003060051998983382540\ 0005359677334756594717855255958673265664920009325958091348620367158335249911625\ 9479851349623347300887803597323693928032175138709684458222364122732445677819657\ 2970704707549549887866674735007720183132758599955822758111579530143291512690931\ 52866, .20775026796370042719449348815085876385889770312045810117180745425761200\ 2467963657854477324288580629576283287592256832422563609159689278318911402128459\ 6558948166703221360639676577924261350218780262885075966205618511987600633965114\ 4818679201293126236729685051281321812506876050064308081117391752550490753943686\ 2845150122167074902626594329271137330361115770351493242832431097387559468555764\ 5640528873779752933260588948886704756869546607867773583961718271913212809056910\ 0995131242218324473791170676097325111178536403, .422093609142291168103459460470\ 8029595630786476453409146014898007100918265336000328759085521450953111558144783\ 0643794828257915692424100450121532972006190953208811513599816133614877686009604\ 9277402917720380492877523197632784364534528465758843253379037610643082951670285\ 8593234317646389891099963006756439173591016226234885655406250901458917605955444\ 5876708909974947352905802385003642978951090933203931915891197811639543765368334\ 5203362428717470726645742992540315350968072238640880900466120191137085571476740\ 64771201, .75272003530279610778906248369753462000776699040197826248426041298370\ 6250970634564722734448870831772522155868026662037424719984405523881247741135170\ 8742128246943106515497445715550424376313693612624139495694593399820501176537841\ 1092752857523108503852220815308213455869656857804229218209037381404457962976530\ 8733163347555946037096275459208387994335418935819689821898142080421869458577386\ 7389522684919066117948682498094540851892703720556331329078504545557727867985625\ 0421632247087072454142789040133672879130985423049e-1, .113513882106517655623342\ 9545703006904219758889201577030749552634158860843243266065803497395734184455982\ 6624122894627449796330178656825428825944698997718466791317272313051945859875783\ 7648303757951477189688372384339680168383194590208010033474125899185438645549632\ 6626634385746488734714061411595987888666430041185203011569291079872646830139986\ 1421101639354586106452129380612364844699192099113424011400734543594085471273709\ 2195497571735503100490190249122901381952180462156272636134276040462238549079008\ 96508451610718, .26705929298172783802217622902190858916763092590746156366052690\ 4107378715814400838709052571989040178255696961205316274639657956518744374535373\ 3280375089526068621369925085477999457609029671103559590202778196130102104070942\ 0043679228699824849024863590750735218620878415212271051504503376091135363143594\ 2350054134361513366143529687688191009274849258699328480265912873069863755149665\ 3101897209286016624770551234710203232522012973527858168239165000470945342120547\ 2169593399464249631871632271449489435033509131535141388, .407798554529930338317\ 2236845196346058599300268148146321453522989333934853767660791657468125712512783\ 7279766538192647419727023277155806963913008827192203521107905269709066275753143\ 5318354127590565550343435545971389157053202084536944989437556554820497475277873\ 4841633730054355225792677759088008827678061544354394230467009890321709148073123\ 4632523858685369321834874919326751741486256630539255001598888138092631873976238\ 2162483015470366171380270855122201912499387444975333231868396624759954754626691\ 82206567573815554, .76972427403819147326824792340358064167414133592817963615266\ 5921619455418812898205796191418516918840454835431637338095901045379080623401858\ 0489400108590211271766569434234561132329660558952089476171741765459150963482784\ 6099911847650632547510515872646475259645308171104036222386021119438267500098457\ 8911402856944482459022853111463648164861658836131119501020529800633125984384397\ 8173745157291748712525689354117261958778789727759896181599526549028551445382964\ 9524011210604310405797541296225161860327601716900330961172e-1, .965527781086131\ 2861447029277084934058044781860262364317785425904640627356530725948420560766581\ 9926267317854876134893795631205281881358159062550932889285695804467511686010175\ 8160600529301116630056289798151000915743564046730746656285033243702190279155475\ 9237269043586550333175784661385098957919520949994999098288005804579584454025454\ 8443703402724074696358059588674953712071383363663094054616188034680093118736917\ 3878425371815598305897830504739615217901770280173797253806121587246919146102735\ 80775403376482240518726e-1, .15415223042044962687847192314401585979505463323833\ 1831295251499013252049829079527020584918274023292521997442258051218551142871370\ 4879698211465810210376238139013793289130239811266331411557547031644222513074430\ 7722394334423919099260637920754438068573537859378585566689679916711426319098896\ 0000415685511716759642764036915235237515710363665629462443646429807815120005108\ 1527275162217833767620189711217187098301643965191286868005848691464097137210885\ 9606750736072890181189904534648951876363766330251038806631941538662, .195683207\ 0305201432590960105028613272418750615896525025875766680346982407677970024096051\ 1954934679551374922435505724591639808338381212123970163446403771313793029879063\ 9437170034359675783663375077259913955349782227347787266264583890760690780215124\ 1954742311270202085310502222982220297602636498774460317130949400014990521802720\ 0139292628622445568078862771971617195639692613736810132266077288621140204977930\ 7109973600109500363074538419137791326158311101823389657536265236501209033756819\ 57085110828335471547532857615, .31537689341273953251466870980977469967667453804\ 3841206168749461727888224111251271426265097400998289541590704370977434717760212\ 0374066238743434556913490257077949622632433360556867926287416470020796978131976\ 0694290017139593799901189638744690957242112717282865353906798846519419957258378\ 5652868688822324362865379418694119339893123332727704856220991979302781571628076\ 1463672975177412471339946796530789129359918748062002254427445860549571602083759\ 5489668403548864960382867378836166444524930111400890484562683090145001, .398501\ 6825741356586966768225710833311898610361553817727074725583726466093417200736482\ 5429413101198894802634865863338261523820737881478131415101228663649109913863411\ 3496899035789420105112150789611154594275544472400186431775581909928071601587077\ 4871717972994997713608149847136350552358858357278896426081259756601836551273414\ 3237321516129983552762779497666371895946882226640106756621338796754096727748264\ 3748600345075066738569033989112634899278344721989923676643537522915214433112846\ 65215418432895177670762617645500, .79158928588388927714626778138636150789460652\ 2008086364623306749493264181164221044533187307228597546092450843746595975241608\ 8300626709813095989476347190478591170139814246484025352940263601253929910134202\ 9751592855264660942287766545240329404521311369093750976951716381861804743736474\ 2632597837446140772871743232086357778709559255224265871071270218035520515727205\ 8191761787534790437385110030951068788915376415440787704310466462898193415883506\ 9799651696460373164334763451210914665539876974139018170254027514898783374e-1, .\ 1329614729172351554953973746277267294448944086388550581132041044550182705494700\ 2957582196720152339111009213494765830742463510516181447155945757192341806773852\ 2323131811850175108853803907459558279666268169072832720134238180132824778242023\ 6015694273278713234660149323704134039993937070093162397625957218838478088109077\ 7983101045053072452016788778663913673211600742433785437614177179606908548134136\ 9237076746926080229760723410289518844232486051698709732048123446212402426454547\ 55557645051271278663675728352977902745, .22726597134745914373209753608118460759\ 2667297233447537367420363548336705855953500897135369196240245043029577866409515\ 9296764181955490221429651797973352182688167987944392231038975572742839065285694\ 1568043414424263459994674996410601391922532781055725714399255249258656491449273\ 5026789224560973872223497921642839722422241401285297431528815065976848503026598\ 2459331763877191272797855285815694680547795214093310508513183749451667152593215\ 5054024935157514111713499081909741908536770697711173851023116538531466659905703 , .3871401026031354497308476419980501923531982080228614106483464372412963874777\ 8691092384721574446891982354657209676059142548774108214704886547773996362042721\ 9403467920689093758782559786456150749688808159368979113185198117717982286236158\ 8712040673970068200745716275896444819402902700159314450153958871118420686472651\ 9713583158149269311810309100164413472242322114109156983587092591103632826906533\ 8505812571264388290456508099385077305182419705172431842716575710792249426604570\ 38169186509172945067858069077730140529671, .86146612945814378850197276098561955\ 9429601093775254566797681461420046781388645988656038552630194813924800292351433\ 2193335082604198042808506198334069133907306716802067401154250906596430602455864\ 3148616375409908398311934067173243917310107047818243715845341006203112197706799\ 9807113955046533986000615515792174626908286000959609333181639646005610669433959\ 8210214313909473209485687553935809423164134173476903866939643915445116443539255\ 1793273347096120558413283724913811762823545024183680485924012583648440387415616\ 872e-1, .3547517435290456826004819192866099986943121727144945776681758512157161\ 7233678477186116021620123930073166498865858063544742588249546756013224267645268\ 0511922098419430175782651961080080098825216764205471535506289886840674201095934\ 1650954132759000536541081299637065617530485570566914647607109878097811736521695\ 9433230348687270664382184800663100623463255211013353965722783260669877949712541\ 5649109773841942449597503913156520737130332059779434020764408298453740628275563\ 44662235053671232997244382081695068759571454783, .92232183205037494961767420297\ 6665726595071257393134806691060741940659729299747956096024759567136033113571354\ 3225813550076439037065736422489570889426222145151705540168714634521737794453592\ 5425512653986226877492134276990583595984603805537373218364767079819776943116105\ 4881561974803409549895496477838660679061139176893304722468485644044318773757728\ 0370172596861211296532606535320733378045115428041459811135791811078735481226830\ 5782305304554604633383220572813328809627491226195536469011794768239438961374364\ 293807501e-1, .1402118419376838598231894641640402908590035921336104164391386035\ 3605162715118103710921024089745836012990244963387557292906790377067823964693914\ 4726806286412441303149805819126730110860520945142280069649722838294599582575747\ 3817866238139467673724081784634197350900832236156534233164448188584972117979345\ 0789740737010887782963775355267201009174311155274090200613996239027036381829531\ 5350962866915976105889044857740555123182100312106271124428580608153512785979636\ 61567345776365323239440544863322928683870118674063572, .21534720039551944540559\ 6486774799501578345586559463151407335092116425941032389567321627708882797995474\ 1922948445872974046337396679375080444892385649365034219123686418548756497341912\ 0973620177689977088425985949954080756551554670118339752318387473308276371843723\ 9515747831940086489367826499385885044589864570951604028372347068033052845894259\ 5606099032095783167857821323851361422521051532957304391821564413485121782344703\ 9541710677286297107306645155889200403555375405873409346879577761103569432868265\ 286893316646306, .3306191227690342613120789167445249020675825172009770973750272\ 6884740443594651430395921367146783783206275877560848417404652283522029299105710\ 7330466104269410520243106526083433342606542774218051902281937382550914642353752\ 1823175700868267000215268898215209319507614319042746924314934901034098441281629\ 1559323469049407583557388523485881502224746534452584747784582785866308166074949\ 8573460780615203473600347313886046402143121977388591597030080159962778423028038\ 96237179996095070817803365071204228233951914803399550828, .10226944736327726541\ 3027034887774050407763536333404412522115320434569942642364299711964059073779178\ 9813549740625450996547051368276651032616853084633970641460341092196366430807430\ 3332024840046358080477833505597869332148177092841016097836489802132695779086468\ 5270565525080660468496978249907705036067328010820588963622350246270740178502048\ 2537581672706049410709427601215144423326272968640213622586179181389998404146371\ 4723648390787977454985647264556848262783908169106585041027836628072294169912462\ 256153675688611701, .2972430927638335735683039057770242104431072208992105313737\ 0788274979080182456294614164995361810298758929714499667178934219152166698493198\ 8663644003632680010718848909690396917702232686329706047449038731819412440721042\ 0552406759373001929141820558832976048610627749849533751330538798099320244272169\ 4645681245057280751263539792373215304966748092978289436635663833087358879496541\ 6110973750452436007126634970315745087325263878568065503621584616190611011614229\ 61502423579319422206838563745359364345456165325731141233033, .12175106339547563\ 3470454950583099708448239525301730174081414124053297911455818259655517868099822\ 9536675892671836059853992728781096345493341281137292202761192110652937107618322\ 1888150773044815326737356029872422304602743938354347239205011062948188082123881\ 8788122276914547512696664216385101595567116672404724967485066032319348043524335\ 6127550190643984352474098952308041307246217716671889110930282963203565717770182\ 6903627654081574634814417468562903653777274431070089074815144164226638277632446\ 256642989736157140274, .2485971099390419483750903555356203515485035046703724361\ 3696323615374495465169383003791586775482941537492287223359509702819382278230565\ 0079639981427753703544143686462045449478030583580387890926575202023133613037865\ 8823761017243181495580594527192847236047245981076685768877978537041820778231757\ 5285009590099857353218061367044652302339095962748078940606291656234133227777056\ 5902052873114368697835758135873016932832034269958125709339740366664326237401586\ 77049278328791504417111497610370095583738204320337037949172362, .17364269961323\ 7747957906892898939212892020210703710519637008817417647166660878137813956125908\ 8582593498996832472913574170987210663721523474933211148049712723630786779752063\ 9744269870775509910342695546013869455411014478365494479343900002827841571593280\ 9035204210583666061135186893511464089552125848962799222957687162864990467272008\ 4709338115663077112356383134702619901776707183757954007868884749414444842233956\ 6028401353722056379511930133870020216889000613381897642853122118482571319146077\ 636983926217264996241313, .6174085260964523392324330337484736250621342754758343\ 2665592673734194061788700122826539325858845154321216304785296685746936455589947\ 9404355250326113257782788672478219494638841399265413303651396304522240981806909\ 4266395115129160470367203639641077929883284549021099256737116378650285012745444\ 0552071732784561508210988159477480845016231712932850136391208314083389893318885\ 1833473226829211466955894581485085746091268575507030431454429066267580671901376\ 85376168626704071373716963358640838469944024788624405166295419341e-1, .11746593\ 9246592454997764966427389623116328454907846170524035573447249178645804151023339\ 6397339774009746631341494162178921240977955783211716925345570207851040111404025\ 8616525994679809449584422978539860081010913114575268413123827805906345557145952\ 6813839381441180449188039521069364169766908071404062533544549233782174451327161\ 1348489297155515898722348657593464062557171692913621400468758411040160078783087\ 6013613782945471217366909952764125860899957644096813568380374760116252899714908\ 409422209444804493427867355345e-1, .2500979694279809422262360918436522056030062\ 1340498681453472026317002675596703008007598156651878774243628793198258108813001\ 7654704844143082495621509506261660776501693455630329650420133744148601539304080\ 6577645501436074958135577736787126248287728685208269476545616733544840340566186\ 2824899075617808778363668331777970686414704328139158231744807292188251906412316\ 6150550052875005557900351264816561869849889367723619347234628880460219866547733\ 06561792148719966390495128451951268972377843259739571003045521212044513688e-1, .626363464912213771765389810756006703649634566785942380062664262804791935597171\ 0437021255188166144566245723645280764437966770691352367066811161383601677193295\ 7147651077413485785257029194781571740101264595937330172529968044280788360282854\ 6767722274150094112579494717116279664135824127142095874011925417666918028371184\ 4148146083503015337603941523167134813071890082786072704220031051142253386361982\ 0918192471871139520117836106957191196206948537041210677328891339326061474043985\ 004749480914142783664226469670803431048e-2], [1.4503948340034880501640681049047792198017470340820404008459605765184977595441\ 1365591972704364723942898461331122352112875494685337038300639619759023916588676\ 3413909224571039657926392894976553724901970869148826286289513109756421537033010\ 8009531204807706945913572496703577201417870532235492911990424915115662769446041\ 9804304241270104056276970578909532197101254459558419246261903050538922113683277\ 1843749419256123598519338601151273703895460443544048750390471181144324666818221\ 5663669404800864994061208292779169145513, 1.17501848571290128728174468617744091\ 5028582872136922120360744718749532328722477475520866718747147740577101171235377\ 5833858166079669134559392174634279082029157773947171349279452589037564486953446\ 4681316704254518379076034455694368619899115499267356007293312288055944557743809\ 6409113173915848264611172629419177069686940747790338649196315401577757125529819\ 0643392990364404533005546020287455904159764796795300473809025287865900879771090\ 7641943241544252219370942311247353713078328213757913330136974662444382489250069\ 44, 1.0880687132943285708972840306379252411036392949197184456068580410989022688\ 1370944390326275720615333822779015376669916247426884432282649416589346502207239\ 5609537827838748226341469519080432354591681195044867858176248863801927827213482\ 9297947796277808537244549009035513964209957546351560397742354364533756069998682\ 6385161961618223916518433819734620688100747651773008165647484766987893567300855\ 2546883905317019017212715570693983245716360627722154060660519864953050079087585\ 5970595157200423627339265185236203012651724, 1.00347423207527606826571751053341\ 4356436412413865482049939048222600669655890340489873213403992142064874877738138\ 2365488361229567270554325960537762605515511291364731564672533428893390516377469\ 9975577731083135772263843293572243205583503911670217830038366070801934418300690\ 0095467400033342481772384726188030596675734654997352695170470661277580458577669\ 1718099315541892268208589218100722947642095411408606016928872480466426555261809\ 3867435642540551798468041039250039824865475234686162596862079778959244425491567\ 96412, 1.4330863854487743878417904016240483416277378413052305942474171925334496\ 3535686430511460971179624403343286690286946845245124085804944248289240356824605\ 8227075521582569591063573833925903945247344426291397434708690345342542794553944\ 7961350100549867173123149701174793160584462724575173530864825807130030826599017\ 1786794906754990507343888968531263474420448160461305557722951453808666126898671\ 0092054399404486720089753394974694723768801578042748816594030274356183507995581\ 0730727650422244470178718937084149755228521945, 1.25516900563094301816467474099\ 0297115862604779928841786811850398948512435465885636903739719323543467882197555\ 2574690179678967226784380000360941064384916770001471901116777978097013272626063\ 8872756097173683137279410935444065160530022368585978138714734723848092842607836\ 9043446123492736178362625358349450477610781806332694188008783084915050744291265\ 5444394167786706995100241795482105083942739575643208863130111190996151843992518\ 1889629819694645618623988141576542629871866812601237022526869824635383696837188\ 56099877, 1.0453385141288604850253090463229121012802754646791860756726140283738\ 5541713844733115408521839688034306972721657335395898632387324527064212051452400\ 4311466580827657947784538983157989660262550298253977106010779386275569564382056\ 7330869740721155873021549855940276308857291828623262516465325121921533679840837\ 3669275188049546028751610669867639701638693527629194141638916783894215187024425\ 5540676332536827218357507087090005198560135135976791989109068060853884705762970\ 8721778364543088643076313818960187531224795278083, 1.00500416805580359898797844\ 2968341644709626277858959835424560303248373966045951332000823382503419555435697\ 9329000247815169513214378851843985980848655065876798416764002939218659161344511\ 5665436918265621510317911172918475655984896183226572773400809578953129396984534\ 5552577161577130455250479938954489024554837772116325289897195752439460901155231\ 4769970167168143029800108698004307492649767712221885850448591584193147390234892\ 5836994564604022674635386246192118583176830847847571447828462907417934057999462\ 95616247416, 1.4217688723971976841197756037109308718981953330195452524930856524\ 5951737576423225390033856265481873834930291864902487773837739402312673290013465\ 0320546463358424573331409097761221056108015015256042244320140117864109374852059\ 8211241342996643098864196855912965726985938125732861766131607611051702983557645\ 3844409651365229905187463735352839621161243057833677164474801935219129934083071\ 7593841285426293332588735483332549097852869778467779665420497726618972410698202\ 0103899139750865595938283327879865713928907188351488, 1.31802787787608739856077\ 8556206035651921421589870673206279158190102558286939080956527077954272294217677\ 6334005391845848228885514816887141536053662087638312658142034234141731498372176\ 9213301127578305845194709154490746384619118867257716128520020249027293949031501\ 0241046480275069600107597654526446111235255183441440054004310542958497997370728\ 0252291913786415017413744209692186857165960775105268754983490960281451868789354\ 0673116704822397797109976876161634330092595517003265092739284229614402950131955\ 36336561758689, 1.1583312096854452973998133862781895995809836291801526767855728\ 8475087809026538612119288439144724954306207882196321992590724630121399732978660\ 5855377603265901434009613006573440787511241485571739000452753213193134680141919\ 2534841251797856112568353277185237215874311933544603058404125743642455260267061\ 4649434645249382639685882502511868405383483193843158722574341097103028860057805\ 6662001465230114653419312767796637276224730973640934388837133385090708332244313\ 3331995867148768322514535903607137909749577395701985931, 1.10040194301836764889\ 2614883055337834499485756236773823474553395115809955903928052070790676435800295\ 3315022525481320006643654814853442263448845268757761589059146253762926704544498\ 2280957992437691932264734495713010597236602126236100215998496575313541636654921\ 6080886826820590470761072903871958932311593142530726663989214305511262399669866\ 6895966400470505162302159871408057645060111740080036092970399277279215226703118\ 4103648520238820225996782182505872239196873788393789012342175263339293382930293\ 63913682256250108, 1.0247931359592451058555131072476955901624263743038210857394\ 8206108465561782298674721267064984216036124540741064608569831250043717671597515\ 8069872963656091355827336378290441443358162101321469231246916706041211675735293\ 4110369463104918493813468604563350389552234491910827701382456017396722427372219\ 6418921594117698423266022701774330628782456144407676062973889685378564993646670\ 4911094986161632060482887569689321702903032022232479948546429027105408195009323\ 2418814795715177980832674147271185993999885839245343723156, 1.00617919277811671\ 1601749629876030763727969132401974601230985779330773682043531358121629021589496\ 4404196727212717158964330419646198611001993098472732699643299345786927083149274\ 6820495714073343005477376572333202716029613080862253373045682954873974754713124\ 3794661165867159949089124236742323014563365714149806826079816344974337590445540\ 1697105268056270767297141655158735040810560437852639127732738734630701206371910\ 8238291748526826897383630401911076580792084935645220526576945003744010239749477\ 84638142229478740577, 1.4078686568228031586384714580263445464520958507904651049\ 7325288108182687670748030812853411539786604708976830301417236870493680926147546\ 2385499431857595720306564495445390940124877945093530417562725890323546348811187\ 9737866762005896183427212130567140911080011616108236778545129186829375279070643\ 6447585828124691036799353635832723412236189702134080336871603020732091613897951\ 1341062856171022213060882088128019035472651607265528589190169645406162101067547\ 1208480913516348687206782370069746500944522486826957021691387, 1.20175369297560\ 6324229229064105075429274258204379287988731833396245259213719074240476577381857\ 8445768844683991568739298285501391805835896016985368217555752014129356161833829\ 3971410095561616487615698078965119007835415837674860336223195623349335337169974\ 2455889353017640871853707733679301736555998207575898798520878928429543413368667\ 8910542804331780736780341196592657499038966677187815688051127918353707449530959\ 3799558430327369156722190568488567089975076668935571568011541419281248284934258\ 06332716719248032387504, 1.0711403467045867672994980155670160493907470223684683\ 7518894910896488312068860145482275014716508549800379403415448371125312278557638\ 7289226980704686558647058541075837630182206551341215132699628707385849117392971\ 4007990791007973101617652322477806845671789794244967709529154831902213249968347\ 1966328191203023751626763838959257910843612591663036393766252629099580192996081\ 7610682030293845923480536118519540654183975805945577095604689927074480451510701\ 4467803749869676993377570377891032757072199373304263097158708851, 1.00782267782\ 5710859846949685520422304393753978367916183841564677643466436545678558306647569\ 0624425836092775210156645423056817230053266235365351644653692797008075924628006\ 0153902749204027377473406184728486461319528402070646096993960018890078690058165\ 4372439265197752892819996974131210511035825947674852808144757154919406445351616\ 0390742855964914126241522834188773302840982748849711601570043884214799292398486\ 3842378698623091684788624224896195683405713678314335647420541108706595944264562\ 03750747606239060446611394, 1.3677870496999515755146069769395146484076301881575\ 4177713205179392305865121645360112088261606480050537752528247739137832245926318\ 8408304753486079425657102568139149031546907988417876150505883000546912442063093\ 8538697624502060012809767280040182084812492229174256325841264339378082443742758\ 3308267386579184141230011688468838120661585267732171853345163680834999711832227\ 0751986470662399240657602156976704947754288838041379031879453690377528240603962\ 3374655252293224455542762324549874657351824120084790081015369368093, 1.01392106\ 8878130027175014776152969452359240467633007818589422597603298382148879465685943\ 1044232196039251283721493242347411707006986279904966548022014668010960223201380\ 8219252295735570914265264184973776396041723167146101707842662980257382505877923\ 5844585036542740133755397833086390068976546331934725612480525796768132132734332\ 2969125760927519684721320373069426642950545833343021116194280735446347839086055\ 8583798759780425794524542854214389597421614168118851187179140931339902917345189\ 04004529970772199391266872047, 1.3374349463048445980048199582053197764939245381\ 6033454350828664499520668265073750206032500041746940741356657811387057902079678\ 2342954193098056964592943281073562026006832873864525539577676291253788171241599\ 5419232659930997406569482133669442361767288559012581450890084997850984872844272\ 3877180672000474288391498756196539208292288683848339506535063550210053536857154\ 6889943814794150499951656418222609323729972707307752451511734456776119059333423\ 4343095678996114187318375788723933903193562474813896117277019887854109, 1.18546\ 5218242267703751913292697716194357275382618531726650629796948631753783022159554\ 1192768557627228584382762759469113525064742961092779940864047776927886921035985\ 5047477458086305534380953910040486761001596534764203162834070598044968326317180\ 3086630226445557622824092246067973416457645061748209291355539118639621492129159\ 2158529108708073769931963738635712985876728530904740225080178863991441987975061\ 3079390538285190557474950022084150574776793264670984892465317109926382760175695\ 42421701138264363630156828959218, 1.0810723718384548092846429389925241762901318\ 4957411874074227174084912963691419041891345595956798918409203885009312831854271\ 8824174287330236993633861131542518813368253804615615932807097563475345532350177\ 1680849161941638537737893105360715827030378279085416030957641652242279073419423\ 6179045735738222991810765048994124937947783195137643906957365849842527418256913\ 7775509642867879598154938757982473792783169562197328558705764920091871475001366\ 3926542137815770720027500217811785570200552120414174285734673285180001755, 1.02\ 0066755619075846295503751629356797333086098894759656875726930107857505243064457\ 4328729740488469478798717681270364669389673915362547900951090902295042990505807\ 7275097790758061786235340821521248799529983925599918091452873684920053766663924\ 0732564165217702665212515671443255731505901764515100925516452624356339368819062\ 2239964767035189837220796892688799984144591258050253388962413558321602224393862\ 9244446118567131743395167715109769813839978643483527859040141014352353828616719\ 46055754966058451658229097904098660, 1.2946832846768446878417081853901817615523\ 4758191944005208739548747609273949854688484318955226297513108451410073269346460\ 0776202768216868442113660720336054040387352246692493602067149523722248183691365\ 2334017096406652481197516133576038175549575985474004524197322308286856179918240\ 3920970880707241513749278744667386738424850488474919834168405335346034261102300\ 7989574960445432707786406212790245483292874669292000526686940828388111648448877\ 3446770848980321321016827754115698803811174340886134388648459523946501943999, 1\ .031413099879573176159295417520378552816526577853802281729412331570226688960378\ 6236926527173434336947528935843863707549091481992885543219405082166340880033696\ 3439649259765139989959111613250462400440335731813364496427363247595801680237823\ 4958199487340626407267840192644218474077750196417289223494336220583092352540865\ 7746729814813668793473199869469870859920447777762826620531560792741931725616910\ 4647839278926285868982959272054182042312357623803483811457283580520018571542933\ 32650785849313079806880975994773149638, 1.2305755800436339417555038170274702282\ 0965512040517348435344017120556764982515925865458392284776783112019944354057381\ 0710990832147913910695482124510316303389232153671704379512542109946229572265575\ 7779781251251039593185893705511827302583080164467317999240782965433535950845385\ 2292970431282607627536688159309000805389856006729157173498412945176167174970328\ 3443292959540619160244242726103727410209874336753990954839399164355145700990814\ 3230224536447853964121928584352616860280686775979310807703248878345001014637603 , 1.056071867829939389526864708263983252525509287510443069879193456579521546440\ 4271130392899531055025851471446420153033459879892086403587900164160615583538679\ 0794786972936011608113999774522373445139116319506401203977314413858644923762390\ 8819684222201827533337926324135810183771730149255795566177143121933709148341080\ 2145767203024876918862933373726509306605474380227941916517143657871726529106940\ 7431884434896548452598551286461887702209879346266295381833715530518458607627225\ 15268310570960937325978222590651141038988, 1.1276259652063807852262251614026720\ 1254784711809866748362898573518785877030398201631571206578217804951464521377517\ 3661090604487530391277846591075637718868610818501952807625927996232181753694900\ 0706287385935858021038426329877877423102501510509099425139520446791232311307969\ 7454501250718983123007902021173392373442130713208657975751201210143577723987650\ 2355092587041825901796168317819763863347998078152904887312404756160053823416482\ 9937130716313512487120724671470965869023724558300543586144466803260147476513051\ 807, 1.543080634815243778477905620757061682601529112365863704737402214710769063\ 0492236989642647264355430355870468586044235275650321946947095862907634939423773\ 4720691516334800264080290593641050294940579800336577625933194432095069584991368\ 9810374305484712739298456160390385817471453636004518736306827514348801202720574\ 9727055244716707064471032711422829394484116772731021396329586672730122826261409\ 8572154591620425224539392585844391994751343807349694753199710325210556377311023\ 74474158960765443652715148207668824039830300, 3.7621956910836314595622134777737\ 4610829397355823071160277764334758832358509027272666070530378488942176441522422\ 7556209168166975282337063206318643674197391890245686561583046668003614875761698\ 0333833089071765469465106377873662059392048691993132142902117117744733233913933\ 6528093535031941145550051047639891680630953245858371688212073137931885879107040\ 4134325326844456182544231808880354507021664774861965632190831499006698094203306\ 3737751607760215906933616374845287277429209130621636612297399659680122942751464\ 902152, 2.352409615243247325767667965441644170173960748865373192758242700773130\ 9205490141070793087808575154910821079737243688570056373424984255410930547837900\ 2315343495151427283023808509246112794743776855043468225318847606051582716095599\ 9872364567929533659529810248091000486802166314240773787197656565098514562656393\ 8894923783978832552317981915659380697912388178189052752004093773002632566223491\ 1676212545468542148714858747294429696318393750856889625770953239549022236036613\ 89446609540426900728726304946793508902500420971, 6.1322894796636861166198523128\ 1756299551028595553929898020307837617670494151186269068500354726376612732518373\ 8264130239705663779997478748765230875984068042237218960939272259091829111978071\ 2993549061081192743700466768966303595620444906173463336746807346358606523273240\ 3514160452414005023525939868968260592345938657949773406397113307068635897665490\ 1290527931635620263573336905965500525234469008481900448854017793382374574172071\ 2203287181751374430581646105958644412451678555153758339352671815997837807741726\ 810663384], [1.0505451796586406953772709019509078042633968912613249889499423337966891782604\ 9759157754216866864625532967424647420015735070134310508970314329024703689630605\ 8018831483766865435818190886947281385788813787283834082756492908229283234548034\ 6611738416175802457206665928192721850037833142072254101795363940747736592622292\ 9984703943131132747273443254024400487777538997272817191214264161142095889501273\ 5603003183994042041068092320758917925320362514427740234622482494906659484512300\ 1991186751962945293697205615599570490431, .616983339942854215948240533845786234\ 3588635945839024501959671760033571574041338433643097188497930661552350606883154\ 0236482685861682247638783061138975635759588325624830002502093263098345723352664\ 6979890458739153484707448940561141717487100092129997039058743373645629672709911\ 3051013708122644209386123444348190117271086528799326261048046153168053098304162\ 2386124143341977822330326019900331157225691023704053940469682511330936896991147\ 2751628943714983127461607184961785268450695111362003034002966898457319847406534\ 82, .42882808309388482464252361962451035873786079685320722043221373903622063923\ 0146192890835327868805630950953979945178298213200951531086743825448124270988174\ 5667993630970039834674351284266738165196493949705929320456088700291536052791522\ 8383897568770199098806209418978966703479124004642641417482915822508475434956192\ 4295286390645593532419122133801190594082045414371881581211238857207714796509616\ 6868431206317299460062723541838114857134943624320776014178975136619576335906540\ 0243116453499710091918694752132528086453561, .834298174459528203725621864796971\ 2476322487890550784823763249893556153270975172951404094950587944959561849750490\ 5372013287497797904803951636663173722136984911241128687052781824478915349006163\ 2336216611248759508569544033766396758561163429037548379282047196770485953372373\ 8988700063774243746608017790183329546588693620202665321695462714420175669335064\ 3530239467762917606898725003184173378024489103380534269274600379992621474390623\ 7088088702110126545525692414415363862574587607269385232531568917472757702179303\ 69135e-1, 1.0265167257081752759583361619784223537940344651348524265011285441240\ 1691758650155575588747347968676806944783141300054876062251907131189237055761645\ 2185874848351536411161489972372159607538668431139455236443235879825967898548253\ 0944438767908950811603409616087758474247822294561494589999842199023657945670536\ 8364666872888043895257006886323496362966523226403156124176159956092012047017212\ 5070728946583474555131064255907504425557629457434975136438770643830038199927365\ 3148330903449584708557396395624074019388015717957, .758583701839533503459874647\ 5927681541549376142170255247571389019312688653929823037286982162616353365516356\ 3457335638604311849176219756717613919230994699102805396853378098961941946474370\ 3261878448240437802565706194216196342670865226279151655640610313668958490054129\ 4512311314525114682271866049770596250269636551407945113170055604684359976266125\ 6338084141420719545745288140681897508325961369122283987201342680025953507630506\ 7978993554293011014324106672390895692619820365329166786585089828124084677234342\ 11717432336, .30452029344714261895843526700509522909802423268017972737730396156\ 5757170261092560139711267387216372113266698473142690837231408072634104055815650\ 6936026680307958522325642377457241444473963428446322604403044895701480899063989\ 2157967020720461277771307126829689723412175317821741617989793465098304964301915\ 6694057384385779923549194232704929062945995450411860745589494567985846835554953\ 6308796079626953332423583703816622632108218765815337468765309317471440426179098\ 4870426036802784587516467824275973598504896348390846, .100166750019844025823729\ 3835219050235149209168785588833683029861925940007017029709883199364673290981972\ 1918758537646301920241327664639430340880543425086283990982408630791029541489048\ 4546150424276028834349385393983026509556528070796196976562549227810653819927864\ 0144758997827601426106348253613266263762272511189542150813509429975438270751522\ 3559212168876182770039292125111584854934893420009143163313950214148712236672073\ 2185780957714322286145860086806430334525186726895889899958991111463660191252406\ 19851253401233, 1.0106565818900102481940990321132681967694061983812286554347371\ 3665443097801041217906217566609832992509732587929966598120650932962164286180802\ 2383155082017719178336380284766663944826654912304748984938956684154651370874331\ 8528019609089526664087658828055332676191754758317390867573935697796319266826564\ 8558786763491840069959888136854196221687282814901103223638565363986323127392976\ 1601382690362532799412839264835332505633127928180000498112100073213473218405061\ 3114689112284909699924683160658675916856276659532471705, .858602053840160784034\ 7725203341678211198804890252194496082210653863534003722390140735478436981107555\ 3296843353425109410728250570946362812407744902229403682476959192593635117061025\ 7963463757276053460733261659076421140917032426395483678200799882333537033170100\ 3626691662848563932190943078880385826467518008875221903439225812299517597847621\ 8263882371313679587248563633473435752258841290278852335584354772791820410836618\ 1530091140524067222527263194775386300731691447463539879117316161590480700349673\ 93416088658077520, .58457778894801249671505510059133909506504047548986485356785\ 7208989903280884273444944171119211829138378709392868484023975519425581757562497\ 6620543547715110543942808428106189179165640388703108632750962653129852264271265\ 8890127522832157107674719089797483783460242025024133287862933299694508398821214\ 5183518587152889519042491991799536601177699252603274778002703955253212558501100\ 2813616524959526293929905357584426010283467089482808509813776815466651309451197\ 7295423863279836496170717834562710496287344930427059100386, .459221554588413066\ 6410944039241333518953382551853685309157250364277538942291782743567909360571937\ 2009766681623095918853906586580595670746329674741182199536202824382516273419182\ 7648433775039659929582953920193690337588724342927335837866822099984507794907675\ 4955296015813428395262148924768634994714040757595562220635843733025353351284405\ 7294734386045193333536596471893721359401630587273300623005914474869791192994312\ 8854773332595442081943833470065350969285702504008022195671482738278601575931920\ 62269280454404191125, .22405573304243706507725588310498099679925941880314773221\ 8793443111736480357419048766086281447775609530016773720696019352576457533004348\ 8132911426208233228301249417867986489593646273841993938654762516396141323405108\ 4012489370854158733516329449436330005843465267653535313939686296730567675575022\ 6861702998530626413263466552287918295856785811819545930540378728874126926707012\ 7389503065420634199658061444706697660433433248183151610431180252839885129629483\ 2490329587286494816384444119891267637310966738595358939926214, .111339875963746\ 9370203100866056220135331335808007805071142407499289212837715997096278513582374\ 6051792973166785249549541292668617275855791346379527415100520531106315013928611\ 7187756348406674309564516583019576525713648454405626992635896769787090094860229\ 4121535688025525525251584426793423267443228233439188538888717452445714955332261\ 1819424596322544826015267270730840449587722270195040985413799124812684416042895\ 4166551393830717911970441734516252659776350199857625510135938414632999139850584\ 97365407605289702091204, .99100663714429475605317427568995220183337002090811378\ 5929001803077402004754280715878106850658033898319937741776050803678731701381425\ 5910174435498708706630876515429471450009564172292478341537263282625964588877002\ 7193898986991884003124415939478585992453631590380026135786521280204086489996884\ 1833604741117224480218398819757034630285308987208406943721304333503201361631973\ 2558848127255498939178817121817443516110937427588675060458896019566226099478049\ 1746337288241092501521161751827806618622330993296424650358368037, .666492264456\ 6160822726065560830290238407140793432660974829329797395666989330505162363723752\ 5757560938779220195079840333257451709865957883487257383337427281632787721125025\ 8180042684870745667838279389073923987947653764876773089110132745522944514338960\ 8078228404544708425702639093708236128966763752920534157507892084049992994639973\ 2362336601032865861853039790015667832710508457284111934181387365281681523052041\ 3454834684331118349737763290895838947000879319052024316490489635695106982718392\ 42520487485998105098278649, .38385106791361456875429567642050245895609499859594\ 7306006292219219258833630690417513840008226218954965783617353144788994558099600\ 7490974500345656340194223585033273022617221199206970761523548151606139879126550\ 7158867912537954853285510521112682266245571757266373689157092203497249649785166\ 8681983269301154058006465837000610479805690109421285348437632293919223847523153\ 0642402904512352578293316635761529799169191428172761404486494703727503979307942\ 7077900242410436343217205155363663071105943566098897231904897158154, .125325775\ 2411154569820575422913715681717491533772654420712553584353571413343698282072924\ 2173249914496395400599998276526002309803993184986334339193722241982530868346526\ 9438259445439994289259331885096252407492592712896343936874960622447423454309926\ 2197774681197726230511278104680105137598515345326343793245376188754414777229351\ 9428637419459305346551580800710453323479839445544698400243910595150904964917256\ 7873354392425442111895257120491521141137040077350688695977859552813094973585833\ 93845825489819117983282668967, .93318884119287335235333249381578673910628683557\ 9084441552007796163861275981860264890920186320325611516563619974449163502490664\ 6871762986711118571081555408693551290388937551025384284957675043772721496252305\ 4882998746074075880989378757903543818044756651797998860129967135134567307987891\ 5125908127239189410450869355936688144027503943222054225808337781623790028331882\ 0488785687180633365377472705158828433200943391594432941941024374446160248982176\ 2100517845681557639129419763176110776877138260248835171135577842418403, .167439\ 3439875159531300973763542148754709488432059559792667716826231569034434179909377\ 2663408120802799259643137501700872346024129937212544125864675748973251072400016\ 1123470163699515518743559480202634200137559431963282648442964693001637640100584\ 3975830993323043658973370047308678607859933613762476402619360388528142666278914\ 5364914351052570100647063344955698937107839202977108013411116167973817943870488\ 2721707024745199158551877671249817277241626363913134522390350177057691105070473\ 11398760725016629640443407840145, .88810598218762300657471757318975698055970959\ 6888150052610297310561415927563668818177938797253729742850175940667693298095400\ 9638508443665388140728807414417687024626465736796786463202760940172486686554020\ 3271468753214226154719958905177024744224754244221984666112222360203674016801318\ 4532450166081815409557182509495339424468116798872589814982802735275614540700352\ 6657866275614671057371638387912936974200186002930355252824093082162615135737259\ 1579669056574338979833285430701399182973512238032365414237882822875560461, .636\ 6535821482412711234543754651483190249634259279036596699176796401878965155970779\ 5195256475606181027307370380878630081009793675583711033749139602633776804311721\ 2431895727381528808969524015598085340655642225622177059106414043846728165010124\ 8294329254536581000437841927957378111282266040115649400083866624648212108003043\ 4018654744984507840689047365133618617048177997133213411790569288869205665640888\ 0097533639699115865327103265585542822952535078326980942403519157841461437734430\ 93104185149401683073955351759368724, .41075232580281550854021001384469810435315\ 0924363306540853361409223235461793836675087118415571531249207475754878109114212\ 6961684510728839346294433989087982303740184612678789327884546685021866617380762\ 6241897211533693715755842128268700895957066402211209764960961153057144354515634\ 0554240179271760257149754754511408908430466414531365676795749831107826204768287\ 6133773731001590108567636825716187030134076606139996354861396162224675675959695\ 7590441364534364612425867426861416869802640881709362692552728314446188597621, .\ 2013360025410939876255682430103173729744948426257439843976981684913487278405733\ 5880941576996452552608915606943878424528761133182110219312909294068833417947410\ 1196884172995178178701877649625168190934507819532167394721206069179880638162081\ 7791897788294598710195985706763045542862177229659060689578837267917532692007351\ 9492431730903020655521748329463073669638978221320998670595686001449650296886179\ 1157810833205228915320359695634555840341476109934367218234267865854334783372802\ 97596662452087724062364092914931720727, .82231673193582998070366163444691384858\ 2144002782963369691737543334891793865465935159602008003640667134371803986322049\ 6615823175707553375773150702444490213411814241273422050555004896600272685677737\ 9159540581403429218004211808618859562553861483693207138779149507955237231632486\ 6621815580942461243377742366834609631135912363083043759461751509642302846443771\ 0088908694401662379274761239547231325491682097875287423266972794018601273102066\ 5813275399007892953319528143639526413069705981577793862830591717835413752884550 , .2526123168081683079141251505420579055197542874276608074880949653019810769068\ 5937906065370209611987414876924736330893239670655494749216648699356326464158894\ 0411302812890303014490694512346434999822373419804861582787752999770672630279354\ 8350107949956682873315208251481480885452867253804835740259029898690903343496871\ 6477422224670346688467205320417185960182625478324898685928429212346183294606895\ 4726484875311038885092257832365383638511454911385115924247779770927010517755510\ 46420521920524738643965148815334269718042, .71715846101104191488351739090087508\ 6149948966777798702701257394017117094992943296971513067619318978948730852423277\ 8181574774095450910151162008160893419411207190058116092125441261419707868175971\ 6004033114843741860000732297867180585020815901127808307706140005377985725366603\ 7868570267537558806337480790557750760833995847086546774331129878326005197006398\ 7718040029839255817764679824466433171921569166410433406927700333226510883968501\ 2049858541009202069736879551303111969825867488492477304353820564232289802133618\ 743, .3395405572561501391012606113386035850723972276889639127383232494522174692\ 0552473393049886419032763898806654239511551610813291465241910292289028783581787\ 9984545876482912569522340924054363227809578152638778993448005185717419081856056\ 0833257819476963880899706727459836758621665479254177578443054398544362594687846\ 9082296512974462805370219985251383463717278479792618686908280321382339365588358\ 7070517379344190194078840465108205687482825485336445363796216959880843336527353\ 07381689235128828382175160641695542541658663, .52109530549374736162242562641149\ 1559105928982611480527946093576452802250890233592317064454274188593488221423981\ 1341359140666794448283313132498958147711911861109207062907779867237162829057943\ 4482624016674283266361699843366907205777867483016080234486126292751638874047823\ 7116570607292680008730563634880020650891883175943108178501270613338496178472813\ 5741902302944342750559436201683616794018602053460171998310261867544700718380590\ 5081453895443004972417988661690305232812706823980305941814935427815487854747116\ 708285, 1.175201193643801456882381850595600815155717981334095870229565413013307\ 5673043238956071174520896233918404195333275795323567852189019194572821368403528\ 8324842382296898062530268785729741937780378945301564579757485598638120339330002\ 1194357134939276747928783808639778091594382288709437918371232250230643268348982\ 1868659007368597138765536487737915436208491950598400985696957504601707347646045\ 5599148776422548858457363158925021354382459781431628747752495659351867988619685\ 77094170390099113872716177152780262453321951854, 3.6268604078470187676682139828\ 0126170488634201232113572130948447493425021098878503672360718129423237300933793\ 7037922656955717628410444210168159748539200685884654436334024364085698776455185\ 8526487032729130931009216977664336160492956708732632282003897164175574147473719\ 0765405696439041057550459479283111640401251415223620931303143804006636426513220\ 2360468263013152005030305053400798550631802999212260848094670233236619681200978\ 9214691732738101136970005053482674728222172271620098076321396788860292165883611\ 094817259, 2.129279455094817496834387494677631648831789119504293864014407382012\ 8057539176996659017450505249379003065083769274613387633254039787948675139069758\ 5495054010322701562379144857041767397359938752451933053460503223852380563572606\ 4138441494852700410377089474325409389964372310618789841990488525241298970039787\ 8340054509521756183030341914482185052033760884714776689493611553718822288417530\ 8737570968635691047465963188160223017872337400949767221734125683194611237731672\ 07917371879487059254210880268047031632353807765403, 6.0502044810397873214503236\ 3835040318767248183452386233135731996566148018463145171937525197574252966141646\ 6023440297643912455367914851724688067384174042413173501222198122888354670339676\ 6460517138604538113514328185832969061076451479190754570304049261768576899697865\ 1219826980929183674035687294216409274390103958486199984295756958460604755750034\ 6381541767158805949979929208573897280310668139726546147452990558312467668653408\ 5199181226527798845459688513376071862585414439272080455516667905040509689313357\ 785194832834], [.72431668607012857192897773652105757674326613959740595509828083405455012969841\ 1636740740532106152703901995887015729874256612115119198590966690709560110013918\ 6867012111949630889279871771652618580745234434536397330733369113462547404515732\ 5606608885736949140025182875320832668194140070113159599012748601381603766681566\ 2937783535145984931321474470041784596806192167558151083115676949208340436557021\ 9242388330911004646686095587052567202730344219727803981621898237111156774713503\ 6865016694916792744088029079906675549549, .525083943312194953962789868404070293\ 7706364240358975400758596725825758102880896490082499849684103316019371620774144\ 2010643095861440646871865040762446823710459492609424050287201307074941757424157\ 7279088273882942164887480667235303099296123031371170479059442352754251258968337\ 7299289245953458864977270672963987866913716908734101254260292732957533798961481\ 6419336948221000850708605310321111018285289261148417700886309539805688341736750\ 0760043947773294298696896487371918100594599951530513028962900227411368749188580\ 62, .39411856793081455856488983934667814435443838897161370772125606593083478810\ 3930646193285724937622440344160322095152896680263053119465345495326893266699324\ 9477514182720845668490574153334288721923629045327040991657993951402358581867857\ 2028186819766056990334736219480966816704541714685088936232509391451654160066241\ 8986332172314064637085878779311200724178157064964552199631188468465226432899726\ 2410504921870660035861716199175010607703039471240177666518951678939080722136288\ 4250649764080503621435748959370835619425042, .831409664335997571561247653952223\ 2335213560464400134921566941324758648031921070648026095389533396546381689820034\ 3451061502604732866852372549305945719022438801627280693971576971653953318607435\ 5700253341279442664056994384268065197487452262331450789486839668017174983142993\ 6457882300203054960892043681142727826541222933701331112434826721742931991442200\ 7118133148996025016408966872216775231700157617242139220929683556561712260719060\ 0043406904216936406378882077836916475252379917397467776018330790382390485989934\ 97101e-1, .71629787019902442081144378305809486317486516460076168809888666486938\ 6319719380146710218874398481189304326229629571413165532145417559271405772696002\ 8172576892697717149971216966114831837307808008725580134966259356437943161747668\ 5127012892106597347589081713183297535187149655758553045570462626925790511034932\ 2719527963488534328910027040148581769763408227397194436336062616361355167001864\ 8502828218439491310883541057380508742817035198020705327811867148441941913377189\ 4147173215307773248808587092482663784677754591387, .604367777117163496308687183\ 1038264750155666474168608886124199935995386394741219221067292106381698651221595\ 2250206174060693079482263224128455602135518603777195660533805034677321707222242\ 6689335163828056853268504471440760339263003061287859494825096939082712456290339\ 2709246801478162014485604350237704534564535595694773165697035167422047728703179\ 7277635243377737632428111343524928539200103119624449688812718778585314700224875\ 8450775485850947038070453388985708424280898483009490054584641974820967859962707\ 00774590257, .29131261245159090581822127282376592815359680491761217441431241959\ 8191658407833596011231233524542100957019522211086895086293424343187541903336487\ 3810622755532315617290217876070586563072989159003118152641737725017031599201994\ 7007942747992445893766774086647119590881223675954558572966084683237631152759981\ 0627438375554489707473133541781439797146598111625633133482285721189881095461140\ 8754830633339112834045057025947959420975612914676181320061624365530691550199610\ 5778531513549054949889345975167230127082362543907584, .996679946249558171183050\ 8367835218353896209577673443693047643854399178273504883840370791906628302235974\ 4255231516792274738934556791604904047878032442951191083764267514294115415593616\ 1694986316141008748350084160326181571253483595768877742201873671380068584874751\ 4166822628140671201851327231487571686367666888331175779963034844965780676746956\ 7467709111306604277036963226120894170540982075421361480175050387985039971514799\ 0220941202132870662681493800444078781347412780908325429818324834830045037889139\ 75116931498362e-1, .71084449906824550270144747653213789934378940142930469076705\ 2905827961071807406885143890166705641905599716218313372368399896712811034642162\ 6638993143545789313979512668725078813487921066114285989305871722957203137745984\ 1051538761212563797044513741946755486093034692324255334384578606704821078314385\ 0220858081032703944323444359757127766880820241938749983194812716464632229548149\ 2420699440751035282211340243653350623072048085604068795765060471469939637715467\ 0632508880999154772072533747166780797759406380166085215351, .651429357642829077\ 0904137456101126956638830215734142792356856757304376590604354198524637165007779\ 7995387131782272653316660441477299819658014434819515530930272097416436139885729\ 6564952574140998345897963209349107599664876516607260350656036991735531626510147\ 1833961534919284585017902996213735394874047592866710186326724127440877481307643\ 9224250502682539172703013089113217356618786188294712346363606073485289355074694\ 4494169012807721116476328846530777947428612275226195813721169349757944987024859\ 69626681150903725957, .50467239772185675001451169299529641498058867514286585669\ 1713767656381359881932095866925893063386477044342042616013584933614319706682421\ 6340738024349381833490708211729266665425296433288488009402460440435853886930652\ 3979525351655790952304307207552661492275165354795384759481143422397583394822024\ 9142226273579127095868632014121844575007873963300439849204021712109894013124554\ 3133636069490732400252608478633665054494116115248247949428257658278745028982034\ 0009167633038472549942510709982353430023258960827992100908449, .417321650058871\ 1238739846208901975178251282413028366564933974995972967893769692933003845290945\ 2118629343142916585991076873768052614431063839959076950762996348405613700997774\ 4475732481003695283688250226573798254419302045158140659746003144241542984909899\ 7853356985990883066625739907692368772950499358699823428181730470827491125798679\ 9863714199393082021137253551647688142223170260726842136402419191519696463551786\ 0510882207768492942110202701022446079697056112845006062976951027590734521707556\ 06393628950801241666655, .21863508368712133408473136585229334540046108325697920\ 2350225698458234097930300358898293608040496106156453567938815063182005530638350\ 1065413253807362512755265246655514661413332309311921198527873799938770451572245\ 1348803347201976282767363029614328637065528172330543366349233558191580751004433\ 8502873521805949594037258362039033622278749614338303811191345728524552507707371\ 4959724802336843054389841432171965368269660070367599376113491465378955633703755\ 4287738522432822238866994316828048093600435262521647683595656494, .110656110524\ 7379913817192147451505576154140992366172622644692920134766868691253724942238300\ 0590198412748498428229056277349404354823240598822374875375228172460625183807212\ 2882192586108216551844381000073242601220563836816370748102169632762610029083630\ 5352876555735345287687624436170823944367740982967252405647082485759012385933577\ 9733699993448596580546443572881345404533267050278692423136924035889600041054982\ 2812391390404458549736825783226213402642884229315390474572216006182411646336276\ 06944739723648958171974650, .70390560393662106058763026963135374910755249302722\ 8733202492606063188318247640290883731955136540007841018882889291189981947602047\ 3462959763183679301851969051370434193778640958212371372924103545248099932557209\ 4187337172329207089107275051891811849685884647955830998888876893994673990107397\ 6612758631784333825837526314215420029790622583844563843545366606458732971558848\ 7140101958561198883203751275733847135291231568579476465083626681374832317374265\ 3453838478440793810084549084032025933437524001779420739537985956989, .554599722\ 3493822939990390953230835960580985630957895300243137418807765086500042506143528\ 6264915150219037414795212234899915711061572758381112725096216549014995884877177\ 1812872371975437489102731919871520548156356052282812653125931269591640992908860\ 8391415883556322758665343017634603422325964740687391783108860277013114052178524\ 3070612215394722639763799039480760104004757808227360381661549705746579013685653\ 7366740639822967514119523996940174474148380892470506407836302756869784485704396\ 33168453654756864070166667317, .35835739835078594631936023155315804246844249643\ 9152043965903487361091750364209611192879369992019672084538410205745251940372901\ 4658430334569870268786465758009865943466004825582089801898179267580575543126720\ 0749829976062625043813164097751085620904655043959287911699906271107442569228345\ 1719145917320301653070723089046212021648444845300588346938994664938629439447180\ 6432523910930270546962242913857794866254002810562069762885563629451124515655734\ 1990628774481751082995724612897702392040683860086115203760885695583923, .124353\ 0017715962080546472758058927076759187925153387504146699908722562482843299775709\ 5926497596343873540302751007263042245178569260008710104224613546518580739308513\ 7505262977783788634541759660476169346551307004858635034082711546874053465933970\ 1011668725385499599826839483186251607660775418858499336710209739847833393082527\ 7945100513854238368993968037926323844142552503338534752362446569354485346784914\ 9679171110842942967541532229638512257436859909387624359791632819174579697549839\ 00741359228207694047130077030813, .68226179023816969724993302795383989184948020\ 5935067516487845582933855629705989006148743515287435844976606075471474908359956\ 2932021378109769272359307957554005764818579279707018265022682649939623396403218\ 4995021200606337596406900014152185451400542479900157906068842395933316616358581\ 3429676930952061165582722139792967717650247797270685973124652964930755216073347\ 6290698799222973384149677967542409149931368534988157780185905812520805204670292\ 2761224763015240570958181312238177293500108699071031661866824265181359075, .165\ 1404129246293537327892279224591181056930208985209389464657379106648887850285164\ 4407693293273590274274420221667397731432954537355066303527657412273519504565118\ 0366427106641781609708071311379213714670815397597319759500027201895707696617202\ 8269514380211862772385458863089518221897898036382719918406353377528286186584642\ 5389815304438845734427409722375756068523558167861377037885757505977455439428459\ 5148037227250733870497869917649436385600569480596192400276451224425467540830936\ 66583251280156136429285833732988118, .66403677026784896368484465640024285007465\ 5292708915040318075076354887196969397771685671351677168001198183858594647820282\ 1356724659555779373716581053258482277492748033408570037914119476758317383685374\ 3116281566487758185669238807260317371359192629645456036677833048430217037830266\ 9541231926210438617815393183288698294845616526787100667395026085216509406613222\ 8343547622325910182248350284788193018761824398295678821969713897455230623841028\ 0473962187521650767339356072050997598696048545897144311416643420135935897301, .\ 5370495669980352858618253049268967059828419877192321341723210131365245358632818\ 5706655251738094642035177325657732747819117157355445593702308412588992590631013\ 4052854704338792925820020138176147049133379666873101014787076793010278690565556\ 8416012729490339366375570431231900415503694873675357242969561224299344990799275\ 1323249353506894556397393104171643291730006466898182197898004978720870699776584\ 2837549972722040856872015016150577378510904271227530651676719943389083029518893\ 72521064158167902727059945560217523470, .37994896225522488526774812389687331051\ 3184374371400103484476332433501677759774424241109330554007611563261646264756985\ 2780093953899425725725524373372191390463693542537920764461659854000954390600689\ 4386533319014322700377795875118806318143961018128237697597300437438188773180784\ 5347673813164000596317656143225801188890159243927832814722168112041562162047594\ 5270169080988133919067974203553805333495430278202297364094286175682153510366949\ 9659903960686449744431190725228389824944685905799794597453708632005684793621521 , .1973753202249040007381573188110156683893726838423531280854542489999946115167\ 6949944701004172018875331389053191539226973681665975430731987476538368521237313\ 8914475438648492460349473117492488630204832778213856797014174628919857268137619\ 2825411165228704903492154619619701194562879318728096066235030008527387215714950\ 9123014757457212986583215655662417743522766957074116996895935886813007467565334\ 8439963501850263954304553212656492835957245967482916068788737578132217535856178\ 03958282737915953021987835445309044324488, .63514895238728731921443435731249649\ 5092481687161809233220109922990228442611065438250877410342203441034280846169569\ 0265265240958764837533713064627180019918946524471137532007283790362556793720704\ 9809577997637832246699534625292669738145505455617354128165254379777071143795437\ 2185630761750758249583082266665175073885429579463937263521059089343899428423574\ 3502622712992162296863033893444677477239986030868522854139404275062399505902606\ 3532337572636007793634306650352836888363010452715612176348178190384698834673113\ 602, .2449186624037091292778011314910169575065587306178203261188743253170899912\ 8004935900516738944948474613408728707184591412407227905052739792406411635271065\ 9132922903120989274819769926457863668303790592333458051423084329434372183055740\ 5018056810089589330042947863229644683921437737972128892882049713412123708198831\ 3016545120536303908130918149576435797868181779539612688567242903411267679662918\ 6955950371649832588252291673287894233909709813691511229876727507550717195412603\ 79090490367945598273998279149512436066962699, .58278294534791012006763998724863\ 6201400704583288152916963469766111159391330570241570020242400109411801202394390\ 9439021930671202269046816021763421344509053668983144393555598093713406764141142\ 9611628981532679087788386339206789244024981184006125578318453840237027518148992\ 0480930553379554455126825934380640462351518274909040064956621648327101715457616\ 6147425319116126276049822036695613091659119729536039167144738783461276388725490\ 3581090243208914921524930146062108044902480114062721518402610820543076022064257\ 635049, .3215127375316343447194062224252064660052920025020835116798049956594596\ 3423571647823659338833698992557464577976086020853843353158268253442425893925638\ 7742749125764700400319410461747721070641172948687302891025302254963964290246797\ 2023862094904321460356953602560653277815437527534395976745870883179121639910067\ 3665888022465717348042120669020726632953699098609927833873185168592305284257007\ 5050545484653847185529069846569410461026353043314001321259756324110336097456680\ 45491564273404086388893368519334976660367302403, .46211715726000975850231848364\ 3672548730289280330113038552731815838080906140409278774949064151962490584348932\ 9862815491328822654618695978959571446116158785633291327041667769391973725679307\ 7027003730144860859926240958178361189289914670380276922133568178284773332218994\ 1264788013079341287738074200200095929575677598434351332514722712799602433375707\ 3604526695030274895295553164403050680200830771946755685054069098163682323450062\ 7828976603446440925190176604917543068623072314836602877343483751966102787758365\ 046026644, .7615941559557648881194582826047935904127685972579365515968105001219\ 5324457663848345894752167367671442190275970155407753236830911476248541329700666\ 9611321125396510137608087776439340992604206679553117475801130590066257783197524\ 5123799759179611970775735459141081433504335156751805970327604880296389577414041\ 1055528274345747412887011673202243366614182042652138531498400801780942494059716\ 6502019707711127807621151005574170277868360132120108230788301752210247508505454\ 93659202265152413525903793814306804484166770101859, .96402758007581688394641372\ 4100923150255029976240934776048263217413107946317610202559474850045207689149461\ 6122189245966682730670219130203345474859564729146243367515945063168120072459506\ 5856205719695055073983505413184843572307119813184333906258626382972200625836748\ 1879218305929297275083923803297700207172355848002085069538548200137017285152482\ 2716983977242742432258200945814770457633894600812455531950884944665881076531252\ 8288508358461416650886637721942451288151652424269464251857378404860845264815617\ 710605313421, .9051482536448664382423036964564955972276411351587817985642239824\ 5110257699457953222843269101787992198816384606649913310622603564592634684340525\ 6248467300618616878831190992341153934847659238727778371956308620435463763476037\ 9795153960548673927742928011341458770710534391068958273479513516262370884390889\ 7111414918276778575826105640243378448095138635623465280403620875453278721442624\ 4676785457638468391338167380801296811385679759551060155347933423405986346456854\ 14817360153396968748805911380462289187204818582572383, .98661429815143028888127\ 6039237349639212511982185406939461575513880231832170841636778736369784509848330\ 8078042081660149390449963555493118245302410432862698568367955914942201021174330\ 4350077860063731897084176332411095089669513729566234418155692604873087067502836\ 2368103926337758196136555947572785224764933626025988262496208473239264966749544\ 0449216728842006736026272406460351106714622719652654733233672599620597254702341\ 3799225988621793978647412276961569705135168334740644902057154203564758632542427\ 858605348441339], [.14902638861070226893721913204029259731927898049638832666234046561889560178250\ 3056032922984133514722364449691984351544552089671685059333381550863328104835388\ 9150343749853488753969354971221469585983930513055898302187043697049975874438955\ 6707600040926501275239497876492096198402999609460559477439712314356934506482752\ 0642571620821400081432618699796765587743871533784497613786301238350765057756082\ 1780831321991824948379783374114597660429994978317069346359423040976313571775542\ 6388601346081615321021650177159736875338, .213364034830621775439886065608459038\ 1455614990659977579705482342657792055947211440133446657034295712138821191062313\ 1189092458656055656402974535636594747234753472280039837005685538451783573678129\ 3200686709279610584234962130107535016567621856417060784732225593854155869309921\ 0492356821838743343075276102679061787953363219324745439341115533031603224305416\ 6901519964923720740852808717021058211647250960823445190949171231674569958187342\ 9844985316248017973769613258007966472829806878210309674657509131503364222866153\ 92, .25082609513310766772206760785754270079717895596748288840969579500917771571\ 5315170125663419986509861132082505516677779579575903468253761247106949193366071\ 5385286127895413164373720642551912627326783686550967389411891946846874120962554\ 0211897336381831721799254501811288622288379614191037067721843752522127480718192\ 7603167998518951591517985993392239367082066826627451818633595241821302461619585\ 4662926782114852215607161623251223427031965471125441033542513578698212541176668\ 6351421034893218985699668731705617661906254, .333492973422450351151221618298542\ 1414516605979082855994013723731043009349663010772388657497285309421383187508060\ 1822904219314388436441821496839835271120861249229865894194578004083095598848497\ 1929816249249121092884078897011814690224315521648490530954521951469814510545864\ 9941515220342192392313825248389842179655512826974643803534087031048256639879843\ 1597244430700778923362515102750869197376944218841486418808702935595100338208601\ 5061675044471167409166590989221400174742655496631898353996834621585387935368364\ 80553, .15188680364054436109434282290716292586873061769741229101092796543747046\ 8721432517511724645828648665980673003994694454644661706928565153400673145294439\ 4387221535220786173024777483504788418677354514907329886204186570271631637756757\ 6690746123293313840056346329743013284944220762773999486256772119428509873590012\ 5104904975234048335884121577309411871215828136798497652435800807860285108106555\ 3343347324232977348990056147233071228972385761784459143346818937909029497686281\ 8610970258620856739740088910991031128329678359, .189162400398150073304366838220\ 8268079923141946985360031391998832299695563335550443508501437777543162646894456\ 2468499688635875637929499330842916449930071363681394627653145674492237977910331\ 0319923630287814599150243460546243676459296439205341319930611349181552692433132\ 7591160857071631452431632334229126960210924314644947610413710968277951270032938\ 1462135209310262838637896811165209396808914834203620490581532544386315560734732\ 9259534304210227351829055305393523442590009394906012447222862904193358085041496\ 55935715, .27880648195500492194206280569734488748600717471226725641730228930662\ 5353725032346276425808605731213898921298803268091004481450720714042187136740946\ 6858786350141859385301613146943293936027668130455101842697299320218411904622782\ 0244755506394288969042779311626250124380262735854047526626279135565457192520127\ 0407610783608388817849068697480609536385560570053045838502352530713024330456872\ 5092132876699797923035734154510301471148978674116097538647548641582336259101629\ 9945868672048677760363249325511113353076708055850, .329203129943538100170199085\ 0164308445364767305975446428154777039764934752375158086930956381005759511825276\ 5453748424447140947420313577156120245641020662014758903203338775513457878771243\ 9479639654377406851556312354151562284662626461464746132526738582694157114218140\ 8917613021881400830850344604672298890533387267879612169631106416391734664793214\ 0480075616206588662049283407009905517134033934832360393899583877436785325789466\ 6307962882567983842647576122694977539291476566126843600417872794234299280497903\ 09777906423, .15381484073830564755771604630793616203251570697059659881382433826\ 0951809885441917587384623676125230590110261528224504148310805756627806229944810\ 5000754804486807757553425358838351931649696057238803487416025368570042238877400\ 0236664577989303999346503189830775388061359621660934576349789849603213468981776\ 9379446362167515381697138882395579963067247040192895289677495111992612396505401\ 3604526330086914623926146137022456628282721137044730835311304746095339662428880\ 4991198839201316733792483638308361229130135906704027, .174022334826485185688698\ 0458682186785730996000656563394235573575923955743857426813211862846535377841196\ 7031228437335372458255950595365591632987212084405598292525624646756314104266635\ 0769254004210116083722183978621230789413459088917616480638043503083855566068002\ 9310033622324492934208877629870973157320709448586508551820226034279471075944429\ 3748350360367494255846788144999764110657712725155366084781910005092565100670558\ 1418576470798088238733092506051269715859847072329336853094582495564474335168748\ 84269510732025, .21938060666393148019528324346800855585845437368502187867682869\ 0874113499633486612952434903384235218561465916594689957132754541188343595091870\ 5598227282418177059338352340954224306994286158405958497647548666286137120284581\ 6717530854223356766318894904790240095899505537503876669426450120168934928450338\ 4643566986045081978776215829552930802606593120666305392527794947543471512712343\ 4133942693606294724584035899325183083506910151650563134368653457588646671144039\ 5170808970526739015635430754130058504892901887945893915, .244363847081549266629\ 7248719970586296731250613494663973390921065547408546569063356733338308536905846\ 3428916901395441936981159301503999119714807377607417308195679753837247732821570\ 3005030597561737258767056441277858684785646615746206045144058853322010655087385\ 2268207373472776154978718074461606217603421275040071861779942736369567213577417\ 0870204498125010044632827469910928495671757408791406415656875220055377765840053\ 0350598965042599162491638614028782455883231734797298560150919552985491109965994\ 68425564393903773, .29810959966740211554528509556197223210179149483833858305033\ 7903120822737148170228506109319630780151218945276707044490963261828802889345293\ 3743994245465587073520469430816795380369414476204006643366956651193671078794917\ 8654487706641592887727528870159755891886788230309465679298985733748753232586432\ 2204740311402692294824386822353054975732529003352058482945645727737215588502100\ 9842535276409240897319382249142207264396212590158382163321041972347357237790903\ 4056124592036208103301816666788558373447104037443984414769, .326348226434470873\ 0980925631434503073056029905268923770172335746622636643454259451291959475162038\ 1683936525183486477934776693660215134546209292645877253328725302728755833885579\ 5277938363289121804345121984695287804392856860985284794731876900531065500851864\ 5477711483318096340345577070577410828865497119952438910626727978798515445260682\ 5931953615914400006922737696042326001648642714312317063019497988405327145142858\ 5398752818627945304388302365573425467581587338424922569088029887064616680955134\ 17722698896256726249, .15624862361272526468351628544078406233224258561846505492\ 1920092145186793854887940144709969332343960343903246110293352699746927166894132\ 1022043512242304158772785816272956898261477654357996798305855165394888211523958\ 4199065211095705427724947964724800324729844594167930703897076784674030168222005\ 4359938452888916538687333503409998670473089700347599836042787431571164990684904\ 7524294321754074774489962862967258438169044348169217733055328396690811049252426\ 6984777572601801663308830407267468530459921596160673350445409, .204519775895286\ 5019582189544259833541636615776515423275327578943068093413158088621018800399952\ 1630444811563150771760655850301456823950404261125200975691144895622084165233350\ 2571384031915685621820088259591901058598276320129194491280146998987049044270025\ 0702910486358992256891021740348588012556900694562966554614699121881908123736044\ 9236526971389751894396734566419658514478476622523295958152422706937511019533002\ 3691622859482942878534680935760388676448338880476777475933764160330934293258729\ 96972082213321643448980, .26066957317389527871435905469379191897792718977910026\ 8982704997009791083108593228509191955035355339355741496159492951804492798470329\ 6872006746634025857430456650238582694385450963799177020051220467792340942399221\ 1542261232545212823604566915779701689278026476014011512425824580467191981737144\ 1054721984661189950619632747494468045270962608614360880015392489070485411329129\ 4620283822850561080558344331135967311501336316437233828416315054042648075897714\ 3580404047941640332551257608414740947807399620397898503729686880, .322785939026\ 7779158874490257156139302793044961149769218131953874188075933702726849862877478\ 1490803727050742965508290373731408393244608176465446046964519038717180922991121\ 0288982827815919613692453580838837605079659316317381847294638267255666606260788\ 6061125921817875021082339969969682392574306731245052918569754158992833765724919\ 9948923808287485456198374759741557376235311700065362818346639276546698797770510\ 1989082574314269068183595320088982856492469374021247226540527437567416320449067\ 67881269296017030168114518, .16370815700495071543378410639996396837682292205449\ 2547983344596309190233625122856574557319946593266161934542302800229518603660255\ 4129932485409023659908021097723284549410373195633133326277363296517096560274373\ 5123739138741574432413992175910802633779156013192030588530407204969546941715915\ 5587628683567311142097958224208420509714049043966586932370482854929993947543214\ 2489272558944896838896365271623132008726984255151878721232531099312452510287746\ 6343100035364701454868911211535427185964565000724043273490959461562, .312148826\ 2375213213271091421324707374965273589323363336041237384921781791277367725063881\ 5844011970381286616311224024672531463097593972478175352418170853257189543963391\ 5131761899131959415715103550097530487579251952729373174718837702720626363288844\ 8867996572004663079315984590862490145037952661755840991480116745728652259269143\ 3468313518178210462751072943075371414342094684419739127202822058870820230767691\ 0887820643979720809268481919681875753240688216552976957038426217070076553315333\ 65551729008357074042951447601, .16984631744436485921595711805805227176235482383\ 3149407297130095652084763291918365509388572437925489273949002199333598802594197\ 8695866343747456687784339518391564082052387316190797092249353601013934820783297\ 6866703684755920528599811631405486295408319318651253972593058279122794414154542\ 2065671705789367864412744539567522664240288184801073775643289658969851451981008\ 0335869344685623432297305374918131383216601133617362075151198994138494536376144\ 4911868266008830909519546768291960642406931218011817499367095311473165, .209800\ 0616663794683470150700510539462071651511997267667016656356011830100795891009204\ 7720702809586517267780713755294088273818581559108410382044690528118583002561593\ 3945919971619582641461126706026232050290182812857152281692852271463940799688425\ 6372654833654279036460664231403102923503400024823486963611157100085951815660939\ 0597790154572376112657860442535851954294906013055221510195662784815450156055568\ 4385209481444054525669848889160591941336027688301971853274555433182942555849125\ 52898183149103331530052103685396, .25474235429567634608136883377580878308916667\ 6333469335787743767540547139797384253645801272274704127423844173625964636295031\ 9613937440383625007175693421159823812139085916384080727503308395710871417636233\ 9107682828413636677680644581835688214259880907874795786676463525858909602552196\ 6304064355361612933684577228611789894889906172863285342164970299610666335230066\ 6507451218965330682635084027976834038179101729417509004905979591262088070118288\ 4178290994457638912865090165642901091237288505636792616784905325752259825, .303\ 7031542863819948925967238737025703037319923803106939554524279523960637957407033\ 0649356888270599428296957714253045047340445492050316148842349690463086470708589\ 6595090381941707231975812653365421002004211461127310749166627977430300891211275\ 6209246021942531732657027664156059177241912789925804565125829415814932606090900\ 3752411158254995307407493234124852717674777939402896686823217488842429751265744\ 5040364524369869561073305804352856283610105612437192471300696873015303291717677\ 51731899943943351796029474872878012, .17933630547864523361497637751796642265234\ 7913941922218242812201468731436858685307487884672023496405833215548092870847330\ 9816567880970891452719899100669108293457284036788017525870370810346435440426195\ 5830867460668430954043457119681986865695450867908940567809811087892524665662068\ 6848360404473764571534617228475768296923462487993154001617319415471356670539956\ 1436478233533317099684824652398880106754901596651188669561470641357711747195440\ 9102748212465208427150020339882965226703860466008481681950033958097555203478, .\ 2911639543485452062721071941865940871767712796828965781358751497938885302709834\ 3150062147353574981907017745238076168655103825788821579087729821134418659965193\ 1268818076956657365720974167781073545780490278951397006936481003617876036376372\ 3859568511916857306659117878189890275940612584218761359071475814620256905489017\ 4489007933874230001641306747105394159238368085742987948279419837595539643501509\ 6655253805599087657255891079000405488349285200932170603816931700543131434461020\ 22840683841782874324915617210671737114, .19589734988441242768927222041079378899\ 1692370312171274648836332535367166822017992740988624179930407205863286536305334\ 8925559409324435364201542957329478434141070842405274489050316618133295369989024\ 9449999566023496192525169929688178774605938570487865802409007183557344479274326\ 4255439522728057732428576335127389190185111187367991664002617146653317703888269\ 6054226925335919425032128959640469327624554659874553402676561480356065755053805\ 2692407561193353370595481700486787426154761993292619215714698415698411270124291 , .2706826474593452828873463180963510203063734051675168348783118471131216409525\ 6665022390589856631813123125372225384113587619929761461367885913848301104767324\ 0085063306418627342088449053247183446377145260449207691096343167552514317282544\ 0168900848283135789921514515855319926512973865425259993646380927941469972695728\ 7221734353020000441717315556400417231723797167387580741827740721954417853301441\ 3217763334790766739604189520447649809703431419544250656385963757425468810091945\ 77180997253588138566939220784967401488521, .23169360648083348976912525450992173\ 9618386475357749981792263826523233984493183850386130258059731112413001897424263\ 1154632632377674166561612359850409466009775103833584446593221694454695186119044\ 7763310105518173307336800522999630373512753504955034904328338651417987574340856\ 0619089837739798309172626897606027902250221426050736005046036714467483787734467\ 4512088550921515048047078238697572906883644228618708126897473206527066887156107\ 2706218161093310272129103115160336459719848390964229541671392779127358731271825\ 840, .1352924163128814155241474235154663061749441429883307060091020547576335348\ 0226572366348710990874868321305325859335327071684123970012695065128756299861901\ 3509302938500031237666731142340271955124155227955742071671242249296046280497488\ 7648315864174310258640616818304437792935943095770380003887350959887558002082296\ 4635396304645268021705448714407322099684275771273685581617314964349449964871862\ 1264669941882376485285199864733838645881228824379083569219290387505395104818356\ 87742140837783689372593344368753943791631680, .34924130423274379135322080791807\ 6097610602138975832071886699132121597216877082086129317088579246199607557698855\ 2084971780903615227406832153343726604731043487075415607388298612841069228826625\ 8418018806896164620950649307975765707016816577056712945982031261650020022465819\ 7343918056568632803873708993967668241186071226063229387546814238749000823110832\ 0886636895714754251958254383490034356325496755562522075854013662092169988149563\ 5041510367527322659438257921969841872349854071094413186267220656145773221178221\ 463053e-1, .7174949700810540967355541648967751360575177846439507536437735424233\ 0848988011424393116629476963140186023518469855205666170103528085682850058969105\ 2659839411373640610139599340090062130114986380425015733134033103923557927215577\ 3099289537811253826763885254738963940246995496119370165320901618459751839753235\ 1956779231982937133517558899729309531643052069976341932734570115374540107030105\ 6166625530142511701070873758787420570815723682610903731470193372470901243856547\ 41378908187412641498476731920172273613935734594333e-1, .15725923380470489995266\ 0465407641684543158232174764490948009643946038668272391633438381985130456870260\ 6958336059503917797654226006027491335639690360934836996419494579253464961681568\ 4428268682675558147492168209598082745984364954831936553307641243187302719431541\ 1492774834181577609231487593671448366643173966869885712399329651572587675953895\ 9488549248789479467654808028756945364019664466184509180252217046538695561327580\ 1767684578472486404888420862852657695420994932252369132117572901672192910473293\ 873421782959577e-1], [1.1337126385257010320551920039907008322936033084858734269086862063512649532161\ 8367055876490780664412718314517692505640754689285985254245243932046395187274350\ 0112211854266339463028624392516293880740543985983665908322005326286756723744213\ 8808643195535922046007177873156942229917973710847516300847043403420923139313480\ 9457400038548860030610781108878218439316706826984648292999457054824550625088866\ 5544807462974745192463928154190299967359848018580383236619186019639070356886076\ 6016312834247993102780556446921858950191, .901252549587482549243648123160355516\ 8302111250708019491726179492050485698737532717665761383923241068701089387581659\ 8110270489849159327565291592843452786478598165187351270911033991253442565136869\ 2740913837324641608456222773247270262458717852203115488078029982665193163645142\ 0748201103496793992807556900763654731524517947588502594509467101358738100958244\ 3511597623853615110511973752560951570381727755824172364974724539033924118778570\ 8600339851836277188588111637999912305965219423334004092787188547539633879347257\ 16, .81027301646833892142514025707699521455803337159672432205647720088570045011\ 2338754903946793572963504967160638924913991752599343437866046113911972171385408\ 5258939526210982127433311863032893140303942184071378136352918364966027018245241\ 9865514037472398468551219694013643712974540613509054003055983229594693827428073\ 0224232440490542778334098192940120528762384902617244330232232348301838022230801\ 2444379119922604630434989611414034733853789093448949824698287605238418850055180\ 6761936457266371751386494395254895783348755, .652345103350918090060114471717415\ 7959254967904924350808997222857626569075449042054914353659235080229016885347571\ 4531516484338361074526181265916258860405709617919775629250163153798074770975506\ 1349295691324151962190282134324067511502191023516711455326623074447821080606886\ 4349421933589607801422246882267226334484868049422285564125353302128824453015536\ 2007127231271107158757030350912328768679413647935681921767284751898588046124060\ 8254187192930363588231887627720232952539699554685747797309588814819697147053181\ 97646, 1.1198728131344472440068638079927300118250875497640286139282291658628809\ 4197566008988469540815232641994716910930066342540571279795942164509815398645205\ 2523580162225910267797170547884779548797213687981333858941886785087447590959915\ 2061275048784623739244869676729329384158123828414693550764111604836859907585140\ 3363326941014591980662221177992549027832238724808594748428196060713645101228017\ 1367693181430752353810116407801429480429182011812640757670243792253890947576145\ 8943873756534566547411823315370146077495214108, .973328655878165936678691119360\ 7065178208040351021696770525220356047104825734480498833570018964117157416769331\ 8577195428335962651525538193864065060021473198713930220288440194267404583364809\ 1583187985499330657980673278843434146181795725089108072065301317062471764121813\ 5022314675810140785563703214071755358925523534043656035270478526810529425562088\ 5098175467462750017300430885057358893586539380565584303976834502948908245908012\ 9954858929257989439150254037876177162805549799721713269874489682437326398791773\ 72433244, .75248558508731563801259592681578079784755880483271219560234475090965\ 7560827673296243137935830188864386137548345693897497130466457272405476502510961\ 5619198383212482389727996546448416300065274545415546932310210923014432393966808\ 5404107964881536333038881227846508112054371281426191411541214484766942829554213\ 9713251870861669267473393957401095930773215646237259381054333895076992487621583\ 7585776649193267190483827243467736514501830399853309618689543608798694035123362\ 0463940934585446413904100268184740249834113016199, .659861690194189233665547762\ 8379939875252404573151734164163719807294318105401964651681792003988575030846383\ 8754430100851425959963188579074917114244654264971723598967525625813437360045725\ 1247406109274153509833562144601943159778544319064402235301893723747822213483086\ 3855845229106751158448392609474235508199964422975048388998158542778017341777714\ 9595145266213906555575914123607887055542862796552334437983224139961729424363194\ 2664996118388275331637382663968203654555519101180711282176475097679014913028163\ 90196369184, 1.1108023393107867132244890782305596879466811203468271033011396818\ 9656704837666436673067632798904920184279181746866746652262175716233844324490168\ 4012332223058621655332398308003208527242187238727673420871045564236448781944406\ 3065826154642804250639228530514449503589139607581360778830297405160016167405486\ 7341563496734441687631745194880508154946306263311526234388044769706967953163512\ 5504986193885244011574205275452441885348281308197673124422405367985080849067006\ 3186600214294528697975621571147649573878194389644565, 1.02640275291715631093575\ 7363855183843501444698437520527411922433059254291514353118745148660559764725663\ 9801601501127304918457733430933443955465263956201402075161351062941257576180488\ 8539484460209492398107958627459176797193701349452373820025327544471629385620032\ 8177361407649920887811445763860675345563680687517352814353564883399875179664984\ 8642387891027438889835803241497276029948458712495332265810317304856353631807132\ 1384604860770486625565769698926137539871540266402602051471206355975615883418947\ 51807829197946, .88522295912865538551003340083465893482072294037306803657008821\ 0117705849214887593501529704961518989887116656751438404809489575532540608369600\ 7948908444339059014266925535937674036719466029889222433881983305454862704246685\ 7330829450475175008125865499566058064139948299090742228951477656527177138356794\ 3088568388938670284095327328415950462859168076368399250388357111497689422178651\ 8792867260340481530484011851408638206849119040999064135213738808537440392492913\ 1509376675240281672923635594645462432145294383606903481, .824650490405842797388\ 0620187086481858574997261618778551231913305565557333381962221117157277626653414\ 6903185823648667657257092090201414864272460883335269747931183546373617332172299\ 0689476498284706066539256806785771757768974055483776191567995678016794755815165\ 3161483155033212524767662942809621107301497562713480047654302003287291238945891\ 5449517846378859941691349847368969436266193417919241324997238700530859019487679\ 1064448691105999265036971475362618918972887363601848728484174437044048485888932\ 56363350320165140, .71576249366032095630857682045329891568618065724651554063759\ 8344297208801203956816325777204943161594998852205829812443138446457486684446024\ 3568753498989425767722527145093504788923400952094502099599827914095035290228183\ 5206672236571574057126600174792362567134169084019549966823639966393166273324627\ 2270553488569759781839756683989321747645603369591107885544593152253627748877236\ 5532050047747779428518366199562485041741733473160449806793288170340799325141545\ 2073711406619658329113746756348200035882586019387963765575, .664882732187990076\ 9852340809365093736305696375434588124583244038989866579051147178852702770492524\ 2063800392676584236609305700794228082273098977528579048838559128962939715196229\ 6772452174168945881065876966698867420920777933378811461225031904670833191538192\ 5746959921899364362126095632773967038726782076757311674392131713131601850319233\ 8718128727402364032109107942326618540615081379935193240309449958776879710468468\ 1112572063152716291562932759924280703914103146989662304138623969621804259625273\ 54440838056350312010, 1.0996353785724137523920867389185512998410077658588287971\ 8386917063928738028543131519049066589670723917381666353632105399157419041030811\ 5545577114938932916057507289932980007867345422073164178955606790382811199441384\ 6325111968887325128440860428933653306467752541958290125119027694583090446855739\ 1258618923945234175684596381833919600064555811251997144309710062250452697420793\ 2929986301545924015958016020195124580222739738160820173865658516449204217035855\ 2739734070422862809004589463546207071254946604712215661049162, .926066102230106\ 0312042522384160415783816990529892221269553451804713790591683557103878861988915\ 3819168216263065520847580008259902378215178302569997715542024990168247650550997\ 9872787038196077645134587757173222631690655424739966951491122568946440660367066\ 8941356198204878120457114384725380956259726956018039950601064424385501838677763\ 8084112087918187159815893924447639398592053848545683256608416956218243382812062\ 3351831501672953269665543739622765960052685743692882237978539664051129885859746\ 90400931565171854392378, .78918858185993327121950389735971839096804661843867280\ 0984392434521035177559366795489631269587870052804105130864330767163915022711606\ 0304415912974967988875625192205373403643605352675383834306839991593886311315189\ 2702141527325226267814701477475750805310964199313304243057940809853130092583075\ 9921020707065818984127083469441075926439481402702865795921590337331819682467852\ 0034879344675882376134327022965229674564858893159702534199575673333608486781610\ 3556057756915588004993624350428733847854906682278077078296400670, .671171977449\ 8976407491804583865580094451560748780336645561569363295567077909797558958612676\ 6676664339148502551675842115169824931895410791327800400787722876266686014443280\ 7870732294543175477584195818812147788804546211754701553375229769856478831352590\ 9015832223055925406250351917832965376846173985874550973178541467038398742993200\ 6903989784326222689455427740883960551936291260056620891767732379113734256550304\ 5498504573550437810340377439535651393771015978186641487085776644439818428095358\ 37324866173069142013666635, 1.0672291837805662948847213096571849446421614438979\ 4042966835589388891902291121287785829324589190110725833039013036857594570265563\ 6398656697959817750317704462127953163533181025264483923804008603690965008359960\ 5057231733746120604565803104547764076776203748920359711577320603884973451025951\ 3408675558262003949100447651679941820093282231987897512957188202503762977475319\ 1860446639424499122314268970517609221184073147641458650607420957474662002383727\ 7645877801666024718638352396747268874391955864635212420992701507140, .690144735\ 6244411830043804997686164237139388832624867274878156770712814451074432011791762\ 0668436152313680878293484091614870668386283100445091805340770567877455436593874\ 9256348328289349082008285492072508148608641416779595223132828065746834828528451\ 1122934073223750725194139852829127530189376729538142950058473651826105209782103\ 3708786197779544927028158640786401315757521827752496345078896557451342241090178\ 8756193622849894117149348902768115195723109171493205781889589867496461920954030\ 89399128683525968448026410091, 1.0424221712315607004069851649592499552187355933\ 2706273860503116844771062847164726522475587148224335800415303068554415520970400\ 4923173235642491510686534658860793158593843698077294673030786446974411627481529\ 8413236185668541436344174831473690897616649541400461683864429118041400118064299\ 6935435376508089587029857015161879784994056121320731600102991183863372025922894\ 9254665423692239761239780008299105709172141633132910555158991850252744456484271\ 1291241594276114150845692114420928971585070750482330524377257671779735, .911063\ 3416949404818199144383123498910670272223485417486298319817870666217030976352354\ 7045953328457663219114848973290886352023278189723796967037869909898428014411534\ 1413312045427039934313478459586844062935203643953716065378064108012741090588602\ 6484255565110771773841024126104769164344404097087112548182176592186387983831613\ 7432800846416259357754354875375804782954408842463760657527084956331427292689246\ 9012614138638740434003659550250884747583565537560868990757881263701408504744789\ 74089190948723539153190986572328, .80177300001359723984363137359002286349287752\ 2543642286293750738358462093354845206171748791619337557055097505743206021276994\ 6097217710710181536610951166234778406395035870198676163977028469402302041964298\ 2650704943180061577390948124407173943025073566014327311524148393707668656215124\ 2573023598996682498463960717977099063310692392216252066621237952837731627628848\ 0723900551103524357512029676961969853507889495851535814962501587477841582038998\ 3895428790319193499735582724370457193856110335895117674105939079396794412, .705\ 4642029186612354073565844780813576766441533974907722752828010057927351052093466\ 6741257065970742255899625420562137040167766297288122132746255110161750425700232\ 6061088367397067417782895868656562265816968462866144693804064272431352530122689\ 5531328464531502819457686334319141774483623166577266994735022908609083312732122\ 8763741646940522277902439897005888390206433393435787310130773707545691490607769\ 7932689483421482315385099419691635586954032079185258906214704481891107306952062\ 09658138955454838971014561654979972, 1.0069309086332163662422331004057619624379\ 2651567850030611713128577836699097471998227589490213899094919525161533134920526\ 0674256914222259816279890133916850463232238365589417276376774446854201069047819\ 8456732631244673503146257617736474691157649441853835369018891307268943672664923\ 7243175895994853872155073784792486119006226607477203880617982009926239241088237\ 8498601494105715567804967129380238380428068395157401203905167203318197370702413\ 4945897911553148437714224954549959678631847975435546288971754711085923584046, .\ 7287469039362150078694543181808820960763088132839813985647953816410309790115949\ 0217048164280416286136914274266354706293411071263528865231728326575803617305112\ 7336860675954176885080205958476085575140793335683605025227943766053159135433699\ 9031033620810116351558003840109646217291003445884723699175518514723898219140826\ 9730401716870809481357480507784521737538316325584820372803253565214700462644371\ 3866905799625104915155972388587138382690019876474479085342651566909548470700851\ 36738832652281920391593510146045148453, .95188489688494334323005857391540460080\ 9860071159997536750170031388510734803119676148683240799154685787095275458754688\ 0923574189172510994679837190293915968928025056679258917362447304336838444795172\ 1766606185099852336035388027069162230120504324117224546045524082102481692498873\ 1814877112449630419701907571388398785718245824504993778123166513425870330219010\ 2339158512139185317498063579578476663765397620813266609122973096191597648147534\ 6971836115068984030152569162673547582297748338273314627230504826009515805468720 , .7686182207991153133487034362994981162516516492075584974522448997598520564041\ 3836769646081301948338586620263608940666233277706190485656734096692461049546731\ 4066587997046581503706893352416877173735379273538112941007291205347188010228252\ 3590898773846038401882025502039334288585608890600973135684043474949593584246121\ 2283775480298261517969260976125617008545180788079075900398351683488690319128251\ 7643753564919947541604831001250851701589414415013011820889946057975962343156419\ 70989888473741485666610794245466998821828, .85427704310315549330004879879524318\ 0856787400504739626934008741551408564629325265559022948064304537551834483977543\ 0578940090972767841044370715357841115651501484730753457013618397777472074872249\ 5210808561635545522244522520186069989101068343893301484615424433096334462096606\ 8781946143116673715188744901779907888417193658489028224654450055690969861365894\ 2369111843054759874165749726647731316789551238823242913739491234798265029388399\ 3309937412757155354459114669543657181556051155423947158973860466756010263635063\ 324, 1.207423594952871259436378817028286995385348944644442537538620971681617349\ 0265504831124728236503052944326777278544186231924138239508464090320057338966424\ 0685952548360234008623800123541161336933535660891059661840828536998816008648215\ 2835401894344486103465940268498546237412887358300877305094062288406283004022287\ 0168729258704288703905977637557221600890797781195557270417879756644346636222263\ 9176661430176336286599124878958672142971225543715940723909107593045472482844558\ 20846392988778001547666405086138553534579845, 3.2980949999782147102806044252234\ 5242200397596340362078768292354483715914731098562925035220305694164470892800963\ 9940294674712364393326835307343432774320731736827623744224384279999122990085799\ 5017637229537956229667685410944440793294106252983441664193139062628971037245558\ 6832759760428051379001484070737383701436839991954042365192160796978133851815542\ 3995639105087046774208020796595389493467211219534979212868139921242290700844589\ 4806965124226007744898303381443034497170819202805685184599439015964403300562353\ 868085, 1.878941503747895000909335049476259057225954003326747003139783075536328\ 5386902460393204345031090573437730339430032079264846796575295503154571374469064\ 6111703062262419119932329986043263459925761493728759161365318806601232294848282\ 4041978624340806770476588439652335574135722513775100837837990129906408939637200\ 3855325368469088437673175854714302786458002538499674473810821901812998996460107\ 0760836417661721989575229884262601682029039861264381457745282623328217456260731\ 88711424153959899032516795824102407596952859298, 6.4816607384605786080726129574\ 8660277366013666723350377309550186541622377417269692452660785491960100205656688\ 7481227270678799411313119960680656125592675653295216174130192455889204974029184\ 9802078153521203898053877693342586764224312423279677756431980420549545430749216\ 8648527909918757207262138129140245330251872685088252757539363742331402490891633\ 1610410605302991316576240532419262209398540555821669507942238894501258610046002\ 0098861815657757132223311225049997170343613803005284515089275753765403738352583\ 325946941], [-.1704862118739611106197363823215841626668325750441626216969014064436155754537\ 4589482978350643310449547145447386493393076820694891036954340036210172410043248\ 5668174917008942842115824445944440788708863598576115393328770838963567009621064\ 9831761330069721409404950263947793889741648887309018672126983367795293394506329\ 1695049757182033540896429092180629880044512044360993677388692067182472499008744\ 4551339068976837372953520893983003078497574271876749466976178517016376861471083\ 61420108663562807643168551540933353186257, -.2148795824018948130984486593801541\ 4764860310505611670507466050346385098846680152770995489446855791878467596950935\ 2399433654441137012057329154777164971705463631214304004759535991466796602395621\ 1276529985070771017289272863381906760048209288126282750524222395155324024805920\ 6805277484665222962756146366107920512716985754788473419990106752442615365416451\ 9293842193076442617708348595109830960996277153955484305028217597208948033366796\ 9258117763556048175206879632574495709766961581301443591288634406100615892099871\ 1441, -.23411180424897745582456006270566643998972870824685596147975324595247893\ 2376060661311386207267903055350998257175078021735000264643900964587771452913867\ 3212544321648356413154060878731755738450020780932588254954928093588156149079559\ 0000936338267004884016807351681765621998297709857027423733639594360407961317550\ 4546531409394440300866691788091523522244142215586549386295656941803734447336847\ 6360108929200702954870966948186881663319566317617221756175013683162131935187596\ 3822147608843266048168444142086035953450035781, -.25763654772113629737404843617\ 0515622392282823060598732309502020600500775476900801723917536387474112913484669\ 3266396709537716970279554455333301664711919880977163164050429719379214542660735\ 5617514359931778444687416915713312057386779313200650262197072000756906879882897\ 0036202602281319293892378849843429918043221060387437022845619442315371917688934\ 2228073213927731843970447857491185278994733732447229811015921316128461960627343\ 3103207116067198080896820178751757613355499996293963306157858159064971541340711\ 311723389, -.172763843461634673864437425649655152665664870354950020838429695768\ 3942882525777596064688196373889230192350772264844856742191006529081697620960246\ 0858525740122984702641397195724917954580671403654532801185978370636307730057597\ 9886307946240146649555543658898108840510966718923207098912258192357169319968171\ 0226401137215152155334266477942095826007561937118721248907863342580431979055997\ 2210449367827246915709706348002066850546652202233138286268030618285713917020218\ 828659837870634155032399973416629243009791968819284, -.199851191582280475171569\ 3872186328803271933190538871207262758688296653731431213053361815429125628882712\ 2011779423141158689567619974295408249882213077809862849396669877204172258326172\ 8029933921272423604580049243129879162010775813427843025121085075764865401846851\ 7502472855835915157919578778102705690706043642426925423171155882930192624920189\ 4303390537949508398409273886278134380332264162406092790208968285845721990236945\ 0445384505852666670421021082855540892599766231966072653492769704515483947835132\ 02781516683549, -.2451463642190548034376161634666472302682795819439594771263716\ 3193566216620619803731696800016549130320779778111883400237396576027233088434655\ 3218285689858628462254780045361402161697947846025522428870963043605804591191488\ 3759643487363648891735923665800077698996424501041880011352788276693641244483824\ 8006279742635820364362661541420714690234297397476432035469478780505766732196976\ 7141206216952049810844128601164927004169787686670466746867358435644301399946397\ 27367024236688507652719210262675223189099898023342989830, -.2571304219075861886\ 9595843593030059643046078499969217184062269787796105773632465709940551154577788\ 9644396263556348088463625077782836931735874889867078310064712723545557204490784\ 7669618972195534465728619713954077158342867711328739281224558326028731361923046\ 1750780657828230974811457011117982481446079545813163362749892003489378262415420\ 5832840000816789887321710575651562381457011077053486718161996504062825507612429\ 6741743228209750993752494754263190458764782325557984312785601684620752908280028\ 0028020419274192591, -.17428288263341652962594046601650766765604681880498325555\ 9472129089663987746715229372839043804716336807438981257375248329164696965559384\ 4707862011238537051210927791677348387715258235185402683191698365161466485292488\ 0926951388398048347382432273230315369397015557468408737212074235412990335570874\ 7615643594340790319194305194569709541621634926796426352488050378836542114774300\ 8623200148849968383859861954938137367111690959235561851442168115164653388277813\ 4077748266887972770567734643861605769906655220462866455286702, -.18942675143075\ 8467751856955382983128232591987302023359026287003735791194802167062489782612605\ 3697318251254951849366533890700712999713959310788987311580143322148703439930626\ 5873898664910450790995385603518271630886020602318833870678805146629058372769859\ 7702946978293387725678007947503247919110357442663975209378812131436747895393270\ 7531763556413126915221256972491976310062642292619213043714397292880344271783795\ 2238314839983073396477104058372645749787131863638871361951658824603127931306674\ 727908003903839765389195, -.218301626226552240652338220637400190928551228852279\ 9567723050191816742227267260127470532295225410669189643569797354046745042757061\ 9676236227673943996752083536527421450950230759271391016224278643477540117610888\ 5692646933637359361784654553005285908895692927545865844004213007389660969964087\ 9455399614880761002997203151111514445251601006763717186191393556562451581419009\ 0656758666068565748091612369166406511051557226633711740459083593543909287249526\ 355078249393211870226210292475885508894032520218740182295947115806, -.231151096\ 4614544369048763164763847259867377108239638780827882375719739096355286366252806\ 6352100840233203585424287030601558541843895945842077982313893415483407500847381\ 7496459704658550435754810797899865077759102445269596613438130224574769160617079\ 9171740813968314913594457833959977807988460585048707750874097727567106436123069\ 1183594754057783183907299670027155445347343540629797939106923335435374019882656\ 1958514547332646078965681151513512908202088487529037023260853396438176884421730\ 37179445177043102519954654606, -.2509940531913528917416507839407225913721349630\ 4415552424180438661491928773158303733648803458642271372936577787309419513911279\ 5428605696315329912420302987169378627971283729949746675655678053178752319484631\ 8212735984826645306722888090532644585865215495917563643068407128301921315107926\ 7317769716368671944027776543202562476291632214097586594072001798485315206261155\ 6190548945768054475579837762678486222268293705443282007559596487863199303689863\ 68057222514899748737724275594581297721013771080919775969809256576035807, -.2567\ 4602343200452379240440805572848850164243606494931353940658114077544507690827376\ 7393415102653827560006057938339067837718995911127616380828680425989858677234657\ 4361574704007970845661139502888966443405464024541327242890276015827282364437935\ 5666624900260440677441189524209917350685672793778027399472143640013300057300577\ 2633404334434367159965609631734642819683270612497740419928921498517288087422536\ 7680053722189290390382101174949137517915277140840588303584263384047343491250767\ 8247220743527816380748987021353124, -.17618183568374286524299632414415620550155\ 7831595934992948111533157803268673195817366078310699843685360198198862266410726\ 2113114243646455670318712289358373028983155753996894012703495654731205041570011\ 3647544159408845197175265672809280123498430905108802762599168969401108450804923\ 9853507837640815078993975058969987741868308945228272064587212931946930136093640\ 7932256397638629263616394748538035538477950935682010319906075761224130108385780\ 8186990414804908207137977444841769346071475944275647115700974996346530821810, -\ .209621499334079365909638117534618032117278165403368493451143214373182494161483\ 8102018779266468871379023093863082287866732751177372479679439795203400730071307\ 7530615733675799455298039316831241702455266650340996779619781638396439128194099\ 8102709372196816195831986505088568769287883696316011036175920050991176561786172\ 7579637421569485376929795750870126437379728700209644851409758222335965610038188\ 6289202415092406305398548444614118604664099493928874658447158662175566895644798\ 808504100636565899433254400383206041952, -.238328201850655207876023406515190652\ 1433434860332393112596112053840187438705617494793457496455867219139025495885616\ 9842722872883807607630208419249653397415281951852437273226025900330525777085531\ 5040660858807309577826191046476719564068294897683004901467312728900804697288802\ 2139919453714351653134406993024456863209768448122385702026056267154849100382205\ 7833583843947381263666496987669430174827010311947862832505273257403504857505906\ 9335782977225999319665949549850229402749156650240594037197112588536943463756734\ 53, -.2562139018830817196257222413313265636508201151419993711721919357148135065\ 9180262767535921988438688441577514861997268194552772336132184352758757204645546\ 8952769972929682513270768001930250914983850914085105615779561084964071470837453\ 6169240013990728716129653432931114417706643774903419196978501780126788443597364\ 6903484286073173432911839557347024965284162561836635149981751144878929493654116\ 5731823549399746864921111981684406970393690691232481373365480523330608892032019\ 34483363511914414406185455937961190486981520, -.1818737283921500903056976310346\ 1216775864951388950014637337877750340604876532799689168900004770189598749160546\ 1538906133665398950482178657336129505146842286238810636704055121355411061945886\ 7030525794783250114702784050228291955720268179941790089677235668015468859918312\ 3186897986078726338546619766764104068808522872842143549126178863820248300591909\ 2342853622795278251171727513511766390825478411681514086929619492399698796209286\ 5995139438717125802588400834490128050607523455306028448069398813801755118183183\ 6390483, -.25428642626949269651725767854848406495572683790024694531845273171916\ 4758265248561041599242149607749213275802456259229347219085350270365313197589714\ 0108425722604017423657711674206690267388854454005854465747988104765942432502019\ 6953927690933487443379478444232573532328064854337696715691126243172873558114455\ 3962924678013826702714992244367786443094954466016834967760777294460408842850778\ 1783459959189336649880508647243656467811927978814069240232544936540512706567827\ 8878612259951256370594195060666542993936368364788, -.18641286380727170902463948\ 4713461817726592064429238314327690759024382770243992923011715828588243592020561\ 1570043740059595385296107097446201302951722362433872461159729918230432904998011\ 3902205634401155630056179448508601401301857664934528437409453430052081234983565\ 0553153700150257124779681072230092035036898624439594579792703126987600966120856\ 1933086926425855419970262730332175230339731762035642348808252319710615756421041\ 8767848814154275935311432872217465359761904872238717061309418389640629356729116\ 819361994709, -.212793259389158520515804219463325066758786077042180824488710130\ 1694811307200346977290492713501650607256125123351856673048684978663437387534875\ 0917660525968455112151196846897821147054475518406840269008038184039770452018686\ 5013249618868068376361328319304740732412978667387683618337605069699900742170402\ 5270412124811251264501194627804971801412648628966920893811688724618372880045232\ 1869385187917753086853056112876129184513759745376282804501509899478890361424374\ 241855148483802548967511280453390029860914380262242283, -.235832034419208217276\ 6554374322823006082180343597417410846564292562742823531632564500884708213733965\ 6689258385689154528004749036770505178453509403427702553683357745707306813047724\ 4481490532737435739076756373967858951947691653642880984116108530027979365201792\ 3913413595015393380733710538862112382183195968997236419827290045389614637542278\ 5132973304592970025981946418861878200392044088958734978667686965510010115149504\ 6832240721564483937375582090285867583310158835464488619040009290350648098894109\ 25774036167666476, -.2524054702856195361147365318046310753468584645855274413563\ 6321299859882757915088512774612031574237137159593927264534759707958095985627383\ 0100096418238342991486263803259492823809148606586579458464735590201221092018839\ 3637790696601522712858149030744923788928157936885709934215713174058556696612415\ 7277369672619303506414844605857240238773365830523043357616681869475075316138986\ 3318745289041474533972951020599377589030974239466295733643668497773315668453841\ 79453969322390354388938847482630866473897836438237644911180, -.1931752081043764\ 5628137589710233059520675360474476857082254815824681561844024436398851874736571\ 3698940626157990203974914676484812600115652152164398174605264663265333593409801\ 5671786294844304006364957441616628674871186274780197311437130371289302323655512\ 1992157979880735808161072544698878910918689539062624289278257955927844371552815\ 3856069792588488475517994803624515698638729974217448879194008720468860718835910\ 2033805720907229753466397776950991359901936281668259612462755602873158754865161\ 1371151345877975712279, -.24906211200489714180372220016828888956037730930458208\ 2046263711034119195227651785505526500501358656773488136003402092234020371837188\ 7835520855436804271127955030761575819607142641953738848892819628358484755130169\ 6859399771744085084672552273711320290232618228465391015722199201505229791275050\ 8718442406947042041501869260726311775393355629629013511126626169892237574980640\ 0723592547914719241358271321207652628955515147231542719078051345106914780575368\ 0132965488527777129760840094431254528243368899322797601471568057, -.20423569325\ 7555918909062670675336879057983667367144993867799851777220202361220739703680812\ 0310707061333872805399349150858117369400322260397983195756867079501342324440368\ 8616863703418907279267507584385206236195708808928574361616595044697031281757458\ 4746424134222226078108838856923037075875220948479095865509561523388690984822123\ 0941733999965521651204190816117567132738807771741815127964644413262985871604092\ 6834273600929995099044101423950157057209127092026844500002382005854525377203712\ 688138078467479871568327844, -.242247119937920157857759077097434627467578571627\ 7818666277493740007019262601540500827705287718450851523415751857228686801787734\ 7806352940197887601030905240418837373103417338294617392869595845219111211973321\ 0452978386293202601291453058355660307550628117706714090011825200757684755845307\ 1080202642686897943329275241312978512570398667606663605918895415044951491551637\ 8360268260516602999218764578524556106727028669725984700038982077055869754018839\ 419663497562878977014708690467502786591163538013358540998211586643429, -.224910\ 5326646838931359969903285832148250296356108928371362859557207680278598497074788\ 5314256059087797499324448368247260870657546121752560489278238780344404465768343\ 3064852125962141521790635965395815152858163778497956226106271137050011804498825\ 8887683636516283888466144085416736954003993467106765053816127967058559730011102\ 0215810458613126785547335968833973199346240296381562426030720264398289956747879\ 1848203309703738885656534973009020601622388196591274605395243959434360642145591\ 29343296602797526401744451562678, -.1591474412967932127875002524972296865738892\ 0151161096941519952148917338346800211918863615582053207333789169966748634330438\ 7538506144584126795425529186937806168389050249733094167296944628740470894659681\ 2380741217231363513033520355372238751945048562311132649054842406010122971403066\ 8713415642641760998678215481829162012370880496201437846487992078557819993015437\ 2242620069528859959204329880618826084562155254026483959185350705611695820116883\ 90413316347681285913922123420204067602082201725011546286076610480913871049, -.\ 5309038443365363170399918587870349124856099004587799263040296617761990531959672\ 9491114078301859873716685881356539108291260197295542363764117557248461197227834\ 2918132780874349135701069272154793646988688885038424762643020858796469422643039\ 9863736867588069720536701684462397236805524972771054378388535168357129248380534\ 6194693234302585734200020861440031707240217400753388217165397843394347638465755\ 2163241615566714550269447446733420042693235521970298216944071194774524015215214\ 65794186916181736203190214736649042168e-1, -.9738201284230131921848421820244994\ 1776112431437230088964108697308291634986914883122967673799465455877469018652077\ 4361010205747526024596509389377811188928056075937650110796720082427677059746669\ 2316941349304914701345452137869982503200260698355166443633076351449372352235033\ 8815097754979954673662956313948804537068419766363171837192350807909298208359176\ 8884264646560794599244466828551346763753574241046035892919879842068281874544768\ 5085111489730775368617772370584011298930966418724713046302284902667502658413853\ 4282e-1, -.26250881035903230364895496297232509446317838135770716435499325966968\ 8474335348271521609792096004672811827946486147798406819790141822311091614101363\ 1376868467558154772330531245281607444027533399214794235271191645520507231533351\ 4499712712968057932087028811355221911733507659800154121820023784129202630461595\ 9286510890226617390407149902688931935893156477355081844982135360690784295345352\ 5089503755687762127581919224146000098571636010016682308396548358857860003653899\ 3311422621920787471527979183752027032290612796939e-1], [.83896224187862873725692310069968813256064958923413230106986881564169917631846\ 6707886309080913366952610294596487349964504489042849486409351307875514497066824\ 4043846376296718922716296692587539175280553515777028897349588128696521396722858\ 9164949413167258243941387854741106516822972146332557510938884755309147830875268\ 7949790521406225318872083212532762539029939568119914290486270448438020786898363\ 7447773153858167705779400242768217973945794213984024310755196128081468879713292\ 7871961338921548770522085267449677016381, .584208649732095888687708090433393709\ 9012236461804918808266494492121872246862402058326862536264891009996963016205262\ 3910388295709338055120375368863636135156161374864167787029769170018864683449083\ 6118278087392218068191967058186111778743601112382292149297524897938007821943223\ 6593692955293382730037814469022196408393659606533320999847763553405647856113015\ 0498001090514544717257104458980122731652743744455287141968807373795057913969317\ 8680568589371938544909030233433680825028500820764335166509210456293924187792104\ 48, .51276725532035719870373175663015787909213261889554626853085621341997987972\ 2818787944482079123758896578162224222891335401714998541920395315977289093244352\ 5576852824674848391398012815352647945327656066844596138969673160709051090041760\ 4348285588259157820635186258658768009753544960671906186803478922795209345639659\ 7375993265721236504769704238287781629265194140856317467189184816281600278176077\ 3025266374395237391397015960249483175074683015221462898295294680390586091033888\ 1505559339983138404388529302421492144879827, .450510079093493019368842389342090\ 5806895110791785270020580899215551843414737022739806617471497636256367941337871\ 1526010884441402306223016356590818567736031498378458530735704107680859748697811\ 5313468804506479638189009060770977343425746160052271264329811939447778149796006\ 4853980844011867749164162619851654609416960004153879283204404836994482561798318\ 5268398318040110925862740263713109106693850018821827864020673347207574870763361\ 3829876202488503314619047466849364934355389639360860378694675468896970940077738\ 64448, .82190389030720902607731070791362486732122832148980432386299698759169981\ 3085282545464874064818595106023789290376572951149599664418595270433089024244127\ 4353887874303580607921146047110352868387629562433982553652503055010691358210791\ 4363542116627531174227511142916540475399950436944733015057723015884541410645807\ 4173217751699348110197419772221082470467278053413407443110056595073121614075351\ 8875609585381421716338013422654327886574463921250956772289802353712521557003155\ 8180720778855094467185565972767032489818399282, .654405919172140030285395005954\ 9742185201381249619728538188620464202714021551158863649012427609300088336794701\ 7984339567279816667365439877777952991513628507697052964957633774096203021606720\ 2622108695419920547683684420939230777625812988158335284415389715321033579485574\ 8378525093700706169862350637028774664297864063427184780049292835260304407034700\ 3021062779202558498878189718686340171936801899290616433951203962994765993393118\ 8531818079213964257766155062028776873780452891027321014410636826883369279050900\ 90548296, .48004902875244802216632561897662784560830472731040393602232460319131\ 8843778093814024160952096708247616385992440107091683445312149994012577549312751\ 3325782107409777384621859677365881377076584840185256770100480556356535416695665\ 1746979365056910424765110385674036708783585653642607425842399743862684876401036\ 8006379468275749651566259072871714655476236275504838739908419800770550450182133\ 5166850247274677583426147998641510354387387966249802860888778597558698141782804\ 7208722252856249123357474792992032715624321978305, .451512631149646501276344335\ 5330268729495493979495281414301447138073628852786576200251907998034730842700997\ 8957219958152987113807125709055837731607249780120403820064395128283597834781114\ 8358963658602459600849987459436234618339994813334534748818653550106286253295061\ 9272277492332713669098544997668329456956083963637816105146282915652307200906381\ 1003458828915700636394480510617197729916442189052163960740717604489442118333303\ 8187439092060344497631591482725009304128917101969821086839047573534372423363047\ 14423509055, .81081937122667608455224415854730565557559325964074129140034359538\ 4093742588528540990079718656431061450659606763513623267753500205727475819183272\ 7038083765203861547898129769088404045784344231847082390884510671166031821822837\ 2819348255368401293897950850585438695201792839476242961801296301697226079546550\ 7654545328993862892526320370013767753298197260460821930082413139335470486137634\ 6250034651868231015327876378162607523653457165224945539206647500212812264341429\ 2212608166395255447350394546542583146653827004529922, .711872686702122226446309\ 4939684497936649302139852489279318291609371792984835243134506111687537912440972\ 8800092996586332113193523844990473585296521523543791490013253415231743802379143\ 5062073494829074347406226998313958639770969219427879833102427511584847799920264\ 4814308558572595213503992226558245754111205952965610905186234867854749754124159\ 7214497442329678303593151767891416664710103600200859722528070239441999490398950\ 7885340648776788892280390632269589560432245893425584993784221281359402603826813\ 89010318942488, .57007898981932352434474096559787512626071276424825831153918888\ 3753546646517457842902184439581286586662550206448648696371249738674919984268483\ 2334122661187698729436111001973748325245703599235173459262245802833732845159045\ 3515836464327140135029334273788711013649794238756678894122763602802444277065644\ 9507669795102720199405340896193028913950173963662547178905917886464298859164992\ 0711249249600673162837517752916729489724844287699000813690740505715804544633997\ 2793751385655009607201153949586898960088666201715042171, .522544650749383820980\ 5020487877640515501096403790374666071364451491140653326040029680320829935320677\ 3940335822643655431700687746322241297051934204642744916550826120349945327896481\ 3404874406674134151048739696660974776144827616296141059426364741146438961056749\ 0469033707415227778326297419282579382362211042703141824988325944676303539253379\ 2867231252395161367722993766705475513647228068514887787058718894678795402154537\ 0696103086443675254475380628484685073781585814081276622002320194162868365144511\ 05313111466097259, .46512342082353521069825463765985258865521998578473321040663\ 8358805079670092609767496827225922763184342875244764777165515235340927645344215\ 6871523314032628144324975678621570861292845636362166418636027893226661200554528\ 2147645732115849083887505351757908180958553365862781094816857551114497607133192\ 3975187411985303525106364651942124385164198058039657408363690299211782158827533\ 9442498041026582467420593884859208246200952446366673843315272976471048996294872\ 4603329549679194256408417409689366731535254500282881598918, .452289538259696721\ 1056813409888019021744607050592705188754481264199478877605503946729559322967383\ 6337261534348281142173670731976424156356705726874615464900523076463877631518576\ 3548324791056673929925534432844131745484846858791707938526618160520663918802538\ 0723251553267365702221105152383066625302509828051160810440766459758523230046932\ 9145682733084633095554763492352203763887464549960454634855985318638738194042550\ 9020479989490515821362091473321895118043636900443957719401337384825686127203217\ 72317803400762160981, .79728130542053412466494980116720297994290035596611913108\ 4679162929438499171634222189562083706627877896284257882361464671546601235689512\ 7101917377808100681548835557411624648631947701445936901607316316332429128522182\ 6478257147416331228751307085930521079492230953281722495213661750651321307743241\ 4616480987963214175499942932079667792844439077968798098015549878177177380637214\ 9820247812840935650588494347416803941449181736431776795135337755757199197488635\ 0590096110385310190652555411556702219560896874210400650856197, .607210333613078\ 7870806674733893065541756100067401619291943287398784533388854024867280629372524\ 6589998285876824713632115907193541481777372418574012531188118562974398497175556\ 7760689530862069017408173240809035726068954603652555014345899685272413077718784\ 0502734513753701050687623821152473302088122226705935979103582760397185218858628\ 0000938543055450737231036462444879179342827108414528119327706848191722629374687\ 9677559174902421723035933433591720646197867019323873124695739304076591119069948\ 15685664830486818759435, .49957495599676467671492054503457630882921092380069411\ 5135575790619826007713178694901243378633010420207458264034391670992932382646358\ 0524683201303618875487653546051494769356618164125184481252145742434857406823371\ 2229258849054455922252383570569259892508442625837189341299995035200059709568651\ 8108232914014402386611585200714218006902308533111178946713556124419042374675809\ 4849972747304448540718886839217549526411609052610578028661431051659927833003188\ 0879190459925512114851419443690386112002669439887133301703479494, .453384975343\ 1420573908566427522567431782536492206701982201089021451824207419476379381586880\ 1916985200618520533884291148009797572455180128535645156862588051478299351023036\ 6980597429490203941436171490085943353055333796882148073953386041409701574013920\ 5736328023077235000236823358774633692334384922172418637524453086788748509513690\ 7827404364660022137890469609960926653237422444872581074898661830835922022063389\ 0501222123431384928274820868748351650248490990360649850432898915975309556152164\ 95419512632105768197836287, .75872172622987692286779158307207353426932148474709\ 8927800077725560170493137336839616481854478628195796220284961441756365852209707\ 1920388576175300514309549804521627594906307552607719538580498980652352196744913\ 8313469401955493946767026075173982422023082020524407493464021580269690975492030\ 5127201702755375751837928257033798126803669664056690880640609338463086361477753\ 3471195652983873480785722392898555309728749949818438031839218523556206217559802\ 2862144900513309105768086467968411124810775047381867583081824772508, .457523577\ 6939173058481584301947241653331659446870683048847483608817219149866984762125324\ 7435894481016120730565974202507350657703720681421235078428195005957397383227421\ 3376128544118073488760318144059786234512572804934072559939998790532513048866600\ 7655195341001112441122271834433601091324582180711986346435474294077702304214433\ 8275211607394982669920259399116534041604245424902311527878108256029615255484572\ 7300720217795391578480481693926412365710932041611145723179153667492717307589965\ 67904461444788004361196486554, .73000690161525176703360815351634633172001798899\ 9328397968341677910420398248344676424316068429335314174166765650450662393846812\ 9492520096462470939947966742418240317229272021513282095508580135497784998559089\ 6263516878903479595544878964741843016288674741660061299364140523525849889908978\ 8270576446955714723470464021380894819643220046528580491688464540228913729789698\ 6124487934239158409738915469267821309076855002541359343752889564469557860140839\ 0450157546588970627949233609940121738071057808356528516951044055970780, .593144\ 4786342857074994238822004675391914415676002090162817495651947889772644925834816\ 9760835921622161369865147927027706268564060940187852708365091349108121225549191\ 0527096078331781338302242798432768872343145810530355099844708005516203971238732\ 5211875499596680308469055841290570952102455565761404193744136622136510416676592\ 8378471675532389718137558673985490365597719598098935001554113044257816683924623\ 1166584656599753192457991834896057683348539255053390243377158039356544340406592\ 56595336773837099781315216227528, .50728167605062244342659049849210344125433834\ 6421612340480634671300093694511922672082229091052168049241073557514969714027190\ 0068412356610347989090219305752901144129503797770346630090847985241030557040296\ 0376123187718127129179120451336288828501241738995346622473380938699616196140961\ 6170215683270426266229757170382084627144916291850117652651531536443079843037904\ 0708042059233105498943345064905367612695714148487926614590599164464640600555153\ 4261540618228549256344499395052343250074014888297777678869730840418149140, .461\ 7892843621509303955245025592957260035384954318353695840531148862343766582020282\ 0566753739912948055240640817124321858527731803539432188463028339392798553346670\ 2487382936024682299629687947428971391037059650440576813763816168771751407744841\ 6564337557269496486953820092121112639960510754373609975968712607544404538803636\ 0443544772935026096862045713294948266079419822885464059343039925215975907502796\ 2687408982706393319899057089811744266363062572003671255916313314072106998131821\ 02676233083925881397309950981787660, .69029970273688621964054238977526819330031\ 7728220876920483825295817571071190481596251912667236353961732725084598695720490\ 0202749963480753997130600619431742789667003872971827636539823707886510053229980\ 2525709463087630091473728696540140008984438792778119397386650315254797593931195\ 1971968272466116169427437046673735042242463014277258517710655795842270722513618\ 1945104200371601704277414520887912796028687361388192288843278877156173084075936\ 2674950858243353842510939867752917933487527422599776815510635251304474538095, .\ 4698611937679593565451907822836064834087049950707865048353636211501290858572742\ 6263631200501603547456276769234758748955974776757986261754008541816601501119756\ 6806919009776475316365902175181814415433657908508918536754982299432350716206408\ 1501793766879425003909115751785640961529372907010700623710764681102849721996437\ 5430254681527192598719332191687755450046751813156375698699394926203514965980088\ 5656595543175775118556035500859961250891408016823950035543319150429631795573323\ 49945794077007809281704679012558500322, .63247927774522667869674078684378727602\ 7921746674892031019283172022017417318121270476761759696451235108296592935294630\ 9053401540169608149091026023568174918844919327256725820547136784203570804069469\ 6469996569622655836779129211874657999498767248744125307903383140455994154042685\ 9052244432297047540539667246932640143841864458727680225249042266524050715011689\ 8461398262490371573699449623400968097305849290916677085722470296745037175225110\ 7118790151291557405373442873706784473101841190017097997360976172683634033642744 , .4880783349188989766362788304661738660901439712247905588002415422299051954414\ 2263080155554173154569422280053084881469123727253178696452974553868440413057996\ 5760920114611095826253484458494769741360571701036924109027994817986395019000086\ 6172899490312559481204442045267243058677553042815734675059052651084804791152247\ 5340522072556632913261031732640438290589306061180846062590444505318536305130239\ 6401451844338740134147942996600852110689121563172116100521055486726804863700754\ 29746593519198619146032443098594748391889, .54457256414059230182716401821782332\ 5654528898231887144094945939329792415627512594501789210193090691856843584724366\ 0029335368197055611287588418237173438727927291727482313225240404042140920936897\ 4317427314846094498044069585652557834867299565430271635184681239228423017159811\ 3498519054683903700335058414302313580493033337907599211425065060604888993974495\ 9101005741722043429671384302428949016981967090308533976211920549592741994745307\ 7790309881016851161468577625875863079950889925673139365161324678325545349707131\ 784, .9324359333927756329594514536744353442695653752386283954928699120385701053\ 2123599141651371662831237333834840339003283060277989492347362722568706997639957\ 2192455274492838779925034688097358038893495753430506126082680732348835159132132\ 4920887817813868338900666566362995116353577416993502640261094254320119465123131\ 9515563994235406625907273960528295768400744665224864727874352754399465406423306\ 2083716584169636402738892344853412382656733568310810796958272651641371054796352\ 38539774684744524248265891126429433281847946, 4.1006820499328898893820340791779\ 3529439024461377513711983770918959054588993674560299911621940448684701167699776\ 7527158754726287593432523302528109212945153364959487007593880586574899582530953\ 7915381610643134299474224563271510754556370407614827836451702604100747133445015\ 3154084260256235219375297857077778219066217112631758172326903650087903972695298\ 5260738327384723189605644394245496682557234226219578357556441097472350698654546\ 1907062752373142939233315820532931449654027304522788082685067300940459610736656\ 693559, 1.886212254848165488692347024025147595704533100100938098818038983375204\ 8337234747164278899455398381063223028378242511563363375401452813270406747424148\ 6140888769597804036239309588629227350497934216543204372883351614683893520157558\ 0483449928904890335908670131958825389555030637538265485694331290042388518538854\ 1116742677052971592304638341301245329865834146794748978304751216548045306348549\ 0994878103051815220983880232545468790247291334474188683302206280099592314715227\ 75770336869203259973742321647336098711545769029, 9.4214233173343017555823088857\ 2824156216463452275640222360102967671456150589046040617789309013590871284101029\ 5874058669487344389334781816300772643573402618464835925136355310720863971465223\ 9314180513804978351604523226790159450611290143095024185914988270720784556018338\ 9144261899700753258953482887529833216045244764560261681381886650541597368587934\ 7816740356517535459600730199360365245982934158243015012151937837783706975481669\ 6967176909289126246271307990987345698430840362544292797377570138508951590476737\ 578368838], [.13660752289314374652578420437026821420933906545502263277381209348398763496729\ 4468030179402122388495500745550985655582506082199044637722266421624717429432439\ 8387815104032364691138575390286347120485269636967906777004790055629144551569042\ 6981966704182626168969539720117754848536082975338846187653069621493856630942522\ 7255690652419616741313233808147035122098548905969122812637442801821534636276408\ 6632428711825839536014801426271714522060828730123980234162804454228287440794247\ 4189551233908147377603179329063092135727, .124462353651196035673266871604934438\ 9182442077884986921494864699883712032635873340077843883270005832080979028119682\ 6526970600882699132901735145788013602553606192163356571586649897430207084645575\ 4367067247079772840803727909229395426331112749576618791093798263081590923764120\ 6120541479405933616793911059896119376306128544606101506282317394268435214178159\ 7359219979538837098830805084928950623460896393813676361387016551810165808942616\ 7409574767811343818032274400504647109150720678956013976883546993376962463338589\ 79, .10451087297212819488419483660730945866549123165311787017070658125382404821\ 4714654219026424994379108805034377298615741491489959778439067186294562163902529\ 8077202553289755485155716934396630261386159869396236412254954977852864217067730\ 8421623890159096550749689375754703592620158172579598778217434896884219783632580\ 3167986666049563163132494163913433069617527844428104924430664684092209359008160\ 6109552825881188423169650676354676427929985612968933763976047324457588558823611\ 9313092097872174577374861971544007359127606, .277910811185375292626018015248785\ 1178763838315902379995011436442535841124719175643657214581071091184485989590050\ 1519086849428657030368184580699862725934051041024888245162148336735912999040414\ 3274846874374267577403399080843178908520262934707075442462101626224845425454887\ 4951262683618493660261521040324868483046260689145536502945072525873547199899869\ 2997703692250649102802095918959057664480786849034572015673919112995916948507167\ 9218062537059306174305492491017833478952212913859915294997362184654489946140304\ 00461e-1, .13669812327648992498490854061644663328185755592767106190983516889372\ 3421849289265760552181245783799382605703595225009180195536235708638060605830764\ 9954948499381698707555722299735154309576809619063416596897583767913244468473981\ 0819021671510963982456050711696768711956449798686496599537631094907485658886231\ 0112594414477710643502295709419578470684094245323118647887192220727074256597295\ 8998009012591809679614091050532509764106075147185606013229012137044118126547917\ 6536749873232758771065766080019891928015496710523, .132413680278705051313056786\ 7545787655946199362889752021974399182609786894334885310455951006444280213852826\ 1193727949782045112946550649531590041514951049954576976239357201972144566584537\ 2317223946541201470219405170422382370573521507507443738923951427944427086884703\ 1929313812599950142016702142633960388872147647020251463327289597677794565889023\ 0567023494646517183987046527767815646577766240383942534343407072781070420892514\ 3130481674012947159146280338713775466409813006576434208713056004032935350659529\ 04759155000, .83641944586501476582618841709203466245802152413680176925190686791\ 9876061175097038829277425817193641696763896409804273013444352162142126561410222\ 8400576359050425578155904839440829881808083004391365305528091897960655235713868\ 3460734266519182866907128337934878750373140788207562142579878837406696371577560\ 3811222832350825166453547206092441828609156681710159137515507057592139072991370\ 6175276398630099393769107202463530904413446936022348292615942645924747008777304\ 8899837606016146033281089747976533340059230124167550e-1, .329203129943538100170\ 1990850164308445364767305975446428154777039764934752375158086930956381005759511\ 8252765453748424447140947420313577156120245641020662014758903203338775513457878\ 7712439479639654377406851556312354151562284662626461464746132526738582694157114\ 2181408917613021881400830850344604672298890533387267879612169631106416391734664\ 7932140480075616206588662049283407009905517134033934832360393899583877436785325\ 7894666307962882567983842647576122694977539291476566126843600417872794234299280\ 49790309777906423e-1, .13672430287849390894019204116260992180668062841830808783\ 4510522898623831009281704522119665489889093857875788025088448131831827339224716\ 6488398315556226492877162451158600318967423939244174273101158655480911438728926\ 4345576889099257402657159110530225057627355900498986330365275178977590977425078\ 6390949128337285655260013672619679006573848856059775146838129146379995655104544\ 3524492456537356737855035221267685455131072558473529899595316298054493107640301\ 9221590048881065634845614874482207678496321092560120805959135, .135350704865044\ 0333134318134530589722235219111621771528849890559051965578555776410275893325083\ 0716542641024288784594178578643517129728793492323387176759909783075485836366022\ 0810962717264975336607868065117254205594290613988245958047035040496256057954109\ 8847195578352248372919050059940238156566312455693885126678395540304620248884033\ 0590678895137605835841384421214168557222038752733776564009729177052596670627550\ 6338548785547781699509624185681294171373209779002103278478373107962453052105702\ 26068680465542952791575, .12187811481329526677515735748222697547691909649167882\ 1487127050485618610907492562751352724102352899200814398108161087295974745104635\ 3306065947554570712454542810743529078307902392774603421336643609804193703492298\ 4001581009287517141235198203510497169327911164388614187502153705236916733427186\ 0713612991468648325580601099320119905307183779225885067036836329182108304190817\ 5070624130074412607559052624768908832958435046392727862028090630204807476438137\ 0395244663983782761403743897575239307850032502718278826636607731, .108606154258\ 4663407243221653320260576325000272664295099284853806909959354030694825214817026\ 0164025983746185289509085305324959689557332942095469945603296581420302112816554\ 5479206979113346932249661003896469529456826082126954051442758242286248379254226\ 9578166156563647721543456068879430255316269430045965011128920827457752327275363\ 2060344075942313110277782242059034431071523775854114403907291740291944542246834\ 5625955791266932873352266294440728272901681091503658548798799360067075356882440\ 49331821985966917508401677, .66246577703867136787841132347104940467064776630741\ 9073445195340268494971440378285569131821401733669375433948237876646585026286228\ 6429895408319987212145749052267709846259545289709809947120014763037681447097046\ 8417664841454417125870206417172286378132790870859529400687701509553301630552784\ 9613031827121645136450427321831970716340122168294508896337907739879212728304923\ 5300046688538967280909424216265293886982682809769361311463071474046759938549682\ 7506464520124721315636018007337370370641240829882453416542187588375e-1, .362609\ 1404827454145534361812705003414506699894743248633524817496247374048282510501435\ 5105279578201871040583537207197705307437400239038384676991828752503698583669698\ 6175932061994753264848099024227050135538550319782658729845539205327479863222812\ 2950009465161641901648131218155939530078419345365406107911058265456251919976442\ 7949391785362146615128793777785469708551158140001831825238124796736688331098228\ 1412723809539331947576253272560431447072859361630646208153805469521208922096738\ 46297883903797469665440285251387e-1, .13671754566113460659807674976068605454071\ 2262416156923056680080627038444623026947626621223165800965300915340346506683612\ 2785612710323655894288073212016138926187589238837285978792947563247198517623269\ 7205271850834636174182059708742249259329469134200284138614019896939365909942186\ 5897763971942547564946146277801971351416815483748836663953487804149856537439002\ 6247693668492916583757531534815427678717505096351133397913804648065516423412347\ 1044596680958733611680376026576455395226606359034964152431396640589181639733, .\ 1278248599345540637238868465162395963522884860322139547079736839417558383223805\ 3881367502499701019028007226969232350409906438410514969002663203250609806965559\ 7638026032708439107115019947303513637555162244938161623922700080746557050091874\ 3669056526687656689319053974370160556888587717867507848062934101854096634186951\ 1761925773350280772829357118594933997959104012286571549047889077059973845264191\ 8359443872081264807264287176839299084175584850242922780211800297985922458602600\ 20683393328670623107551383326027155612, .97751089940210729517884645510171969616\ 7226961671626008685143738786716561657224606909469831382582522584030610598098569\ 2668479942637363270025299877596965364212438394685103945441114246913825192076754\ 2212785339970793283479622044548088517125934173881334792599285052543171596842176\ 7519699315142903955207442479462314823622803104255169766109782303853300057721834\ 0143202924842354826064335689604052093791241759877418130011186639626856561181452\ 6599302846164288426515179781151247067216031555278554277748576492119388986325800\ e-1, .4034824237834723948593112821445174128491306201437211522664942342735094917\ 1284085623285968476863504658813428706885362967164260491555760220581807558705648\ 7983964761537389012861228534769899517115566976048547006349574145396727309118297\ 8340695832578259857576407402272343776352924962462102990717883414056316148212192\ 6987410422071561499936154760359356820247968449676946720294139625081703522933299\ 0956833734972131377486353217892836335229494150111228570615586717526559033175659\ 29695927040056133459851586620021287710143148e-1, .13642346417079226286148675533\ 3303306980685768378743789986120496924325194687602380478797766622161055134945451\ 9190001912655030502128441610404507519716590017581436070457841977663027611105231\ 1360804309138002286445936449282284645360344993479925668861482630010993358823775\ 3393374746224514299296323023902972759285081631853507017091428374203305489110308\ 7357124416616229526785407727132454080699080304393019276673939153545959898934360\ 4425827603770919064555285916696137251212390759342946189321637137500603369394575\ 799551302, .5202480437292022022118485702207845624942122648872272226735395641536\ 3029854622795417731359740019950635477693852040041120885771829323287463625587363\ 6180887619825732723191886269831886599026191839250162550812632086587882288624531\ 3961712010439388147414779994286674438465526640984770816908396587769593068319133\ 5279095477537654485722447189196963684104585121571792285690570157807366231878671\ 3700981180337179461518146367739966201348780803199469792922067813694254961595064\ 04369511679425552555609252881680595123404919079336e-1, .13587705395549188737276\ 5694446441817409883859066519525837704076521667810633534692407510857950340391419\ 1592017594668790420753582956693074997965350227471614713251265641909852952637673\ 7994828808111478566266381493362947804736422879849305124389036326655454921003178\ 0744466232982355313236337652537364631494291530195631654018131392230547840859020\ 5146317271758811615848064268695475748498745837844299934505106573280906893889660\ 1209591953107956291009155929494612807064727615637414633568513925544974409453999\ 493676249178532, .1258800369998276810082090420306323677242990907198360600209993\ 8136070980604775346055228632421685751910360668428253176452964291148935465046229\ 2268143168711498015369560367551982971749584876676023615739230174109687714291369\ 0157113628783644798130553823592900192567421876398538841861754102040014894092178\ 1666942600515710893965634358674092743425667594716265521511172576943607833132906\ 1173976708892700936333410631125688866432715401909333496355164801616612981183111\ 96473325990976553350947531738909889461998918031262211238, .10189694171827053843\ 2547533510323513235666670533387734315097507016218855918953701458320508909881650\ 9695376694503858545180127845574976153450002870277368463929524855634366553632291\ 0013233582843485670544935643073131365454671072257832734275285703952363149918314\ 6705854103435638410208786521625742144645173473830891444715957955962469145314136\ 8659881198442665340920266602980487586132273054033611190733615271640691767003601\ 9623918365048352280473153671316397783055565146036066257160436494915402254717046\ 713962130300903930, .6074063085727639897851934477474051406074639847606213879109\ 0485590479212759148140661298713776541198856593915428506090094680890984100632297\ 6846993809261729414171793190180763883414463951625306730842004008422922254621498\ 3332559548606017824225512418492043885063465314055328312118354483825579851609130\ 2516588316298652121818007504822316509990614814986468249705435349555878805793373\ 6464349776848595025314890080729048739739122146611608705712567220211224874384942\ 60139374603060658343535503463799887886703592058949745756024e-1, .13450222910898\ 3925211232283138474816989260935456441663682109151101548577644013980615913504017\ 6223043749116610696531354982362425910728168589539924325501831220092963027591013\ 1444027781077598265803196466873150595501323215532592839761490149271588150931705\ 4258573583159193934992465515136270303355323428650962921356826222692596865994865\ 5012129895616035175029049671077358675149987824763618489299160080066176197488391\ 5021711029810182838103965806827061159348906320362515254912223920027895349506361\ 261462525468573166402608, .7279098858713630156802679854664852179419281992072414\ 4533968787448472132567745857875155368383937454767544363095190421637759564472053\ 9477193245528360466499129828172045192391643414302435419452683864451225697378492\ 5173412025090446900909409309648921279792143266647794695474725689851531460546903\ 3976786895365506422637225436222519834685575004103266867763485398095920214357469\ 8706985495939888491087537741638134513997719143139727697501013720873213002330426\ 50954232925135782858615255057101709604457185812289043026679342785e-1, .13059823\ 3256274951792848146940529192661128246874780849765890888356911444548011995160659\ 0827866202714705755243575368899283706272882956909467695304886318956094047228270\ 1829927002110787555302466593499633333044015664128350113286458785849737292380325\ 2438682726714557048963195162176170293015152038488285717556751592793456740791578\ 6611093350780977688784692588464036151283557279616688085973093646218416369773249\ 7022684510409869040438367025368461605040795568913730321133657858284103174662195\ 079477143132277132274180082861, .9022754915311509429578210603211700676879113505\ 5838944959437282371040546984188883407968632855439377077084574084613711958733099\ 2048712262863794943370158910800283544354728757806961496844157278154590484201497\ 3589703211438918417143909418133896336160943785966405048386184399755043246218084\ 1999788212697598048999089857624072447843400001472391051854668057439079323891291\ 9358060924690731813928443381377392544449302555798680631734825499365678104731814\ 16885461987919141822936697315257269990845293795223130735949891338295069e-1, .11\ 5846803240416744884562627254960869809193237678874990896131913261616992246591925\ 1930651290298655562065009487121315577316316188837083280806179925204733004887551\ 9167922232966108472273475930595223881655052759086653668400261499815186756376752\ 4775174521641693257089937871704280309544918869899154586313448803013951125110713\ 0253680025230183572337418938672337256044275460757524023539119348786453441822114\ 3093540634487366032635334435780536353109080546655136064551557580168229859924195\ 482114770835696389563679365635912920, .1352924163128814155241474235154663061749\ 4414298833070600910205475763353480226572366348710990874868321305325859335327071\ 6841239700126950651287562998619013509302938500031237666731142340271955124155227\ 9557420716712422492960462804974887648315864174310258640616818304437792935943095\ 7703800038873509598875580020822964635396304645268021705448714407322099684275771\ 2736855816173149643494499648718621264669941882376485285199864733838645881228824\ 37908356921929038750539510481835687742140837783689372593344368753943791631680, .698482608465487582706441615836152195221204277951664143773398264243194433754164\ 1722586341771584923992151153977104169943561807230454813664306687453209462086974\ 1508312147765972256821384576532516836037613792329241901298615951531414033633154\ 1134258919640625233000400449316394687836113137265607747417987935336482372142452\ 1264587750936284774980016462216641773273791429508503916508766980068712650993511\ 1250441517080273241843399762991270083020735054645318876515843939683744699708142\ 188826372534441312291546442356442926106e-1, .1076242455121581145103331247345162\ 7040862766769659261304656603136349627348201713658967494421544471027903527770478\ 2808499255155292128524275088453657898975911706046091520939901013509319517247957\ 0637523599701049655885336890823365964893430671688074014582788210844591037049324\ 4179055247981352427689627759629852793516884797440570027633834959396429746457810\ 4964512899101855173061810160545158424993829521376755160631063818113085622358552\ 3916355597205290058706351865784821120683622811189622477150978802584104209036018\ 9150, .393148084511762249881651163519104211357895580436911227370024109865096670\ 6809790835959549628261421756517395840148759794494135565015068728339099225902337\ 0924910487364481336624042039211070671706688895368730420523995206864960912387079\ 8413832691031079682567985788528731937085453944023078718984178620916607934917174\ 7142809983241289314691898847398721373121973698669137020071892363410049161165461\ 2729506305426163467389033189504419211446181216012221052157131644238552487330630\ 922830293932254180482276183234683554457398942e-1], [1.0392365853152259460505926703248090962691363661120506413329623558219928737815\ 0169801220116548942378325121641218130170691798512153149724806937709195588334820\ 8436194199744144507776239026473269390678831987151693749295171549096193663432196\ 0574589595907928542173246383727197044091475901610223275776456453135846211037357\ 5335950035336455028059882683138366902706981258069260935249502300255838072998127\ 6749406841060183093091934141341108303413194017032017966900920518002481160478903\ 5514953431393993677548843409678370704342, .525730653926031487058794738510207384\ 8176231562913011370173604703696116657596894085305027473955223956742302142755968\ 2230991119078676274413086762492014125445848929692621574698103161564508162996507\ 0765533071772707604932796617727574319767585413785150701378850823221362678792999\ 5436450643706463162471074858778798593389302136093293180130522475792597225558975\ 8715098613914608814465318022327221749389341190897433879568589314436455735954166\ 3350198246904495026676398455499948845146377996944835720792526652731453096285900\ 01, .33761375686180788392714177378208133939918057149863513419019883370237518754\ 6807814543311163988734793736316932885380829896916393099110852547463321738077253\ 5524558135921242553097213276263705475126642576696407556813715985402511257602184\ 1610630848946832695229674872505684880406058588962105834606659678997789094761697\ 0926763516871059490972540913725050220317660376090518470930096811792432509262833\ 8518491299967751929347912338089181139105745455603729093624286502182674520856325\ 2817473523860988229744372664689539909728648, .543620919459098408383428726431179\ 8299379139920770292340831019048022140896207535045761961382695900190847404456309\ 5442930403615300895438484388263549050338091348266479691041802628165062309146255\ 1124413076103459968491901778603389592918492519597259546105519228706517567172405\ 3624518277991339834518539068556021945404056707851904636771127751774020377512946\ 8339272692725922632297525292426940640566178039946401601472737293248823371770050\ 6878489327441969656859906356433527460449749628904789831091324012349747622544318\ 31371e-1, 1.0078855318210025196061774271934570106425787947876257525354062492765\ 9284777809408089622586733709377795245219837059708286514151816347948058833858780\ 6847271222146003319241017453493096301593917492319183200473047698106578702831863\ 9236855147543906161365320382709056396445742311445573224195687700444353173916826\ 6263026994246913132782595999060193294125049014852327735273585376454642280591105\ 2154230923863287677118429104767021286532386263810631376681903219413028501852818\ 5313049486380881109892670640983833131469745692697, .681330059114716155675083783\ 5524945624745628245715187739367654249232973378014136349183499013274882010191738\ 5323004036799835173856067876735704845542015031239099751154201908135987183208355\ 3664108231589849531460586471295190403902327257007562375650445710921943730234885\ 2694515620273067098549894592249850228751247866473830559224689334968767370597893\ 4619568722827223925012110301619540151225510577566395909012783784152064235772135\ 6090968401250480592607405177826513324013963884859805199288912142777706128479154\ 24160703271, .22574567552619469140377877804473423935426764144981365868070342527\ 2897268248301988872941380749056659315841264503708169249139139937181721642950753\ 2884685759514963744716918398963934524890019582363624664079693063276904329718190\ 0425621232389464460899911664368353952433616311384427857423462364345430082848866\ 2641913975561258500780242018187220328779231964693871177814316300168523097746286\ 4751275732994757980157145148173040320954350549119955992885606863082639608210537\ 0086139182280375633924171230080455422074950233904860, .659861690194189233665547\ 7628379939875252404573151734164163719807294318105401964651681792003988575030846\ 3838754430100851425959963188579074917114244654264971723598967525625813437360045\ 7251247406109274153509833562144601943159778544319064402235301893723747822213483\ 0863855845229106751158448392609474235508199964422975048388998158542778017341777\ 7149595145266213906555575914123607887055542862796552334437983224139961729424363\ 1942664996118388275331637382663968203654555519101180711282176475097679014913028\ 16390196369184e-1, .98737985716514374508843473620494194484149432919717964737879\ 0828352504043001479437093934513768043734971370504416593303575663784144300838439\ 9126080109619760521081380732429404472964686597219899801541518853738348768433617\ 2836116140676930158260005682031382350662254125685400723206922935976934755699265\ 8265487480564415417259445615512843382294710633833451658010972338175730728604028\ 1201115599877278979946769548491337355038980873611628423761105976936604311829769\ 4845006103113015951366204227747299090218434472839019062800, .798313252268899352\ 9500335052206985449455680987847381879870507812683088934000524256906711804353725\ 6440531790233897656816032449037796149008542507608548233127251254952711765336703\ 6260244195990246073829763061900435793597311506566051296240822419214234779339665\ 9335885823922059499384682977911496694141576606405347357188556083282426443473619\ 6165489440794707991191365389580767201035788488012208297028734080245704438306025\ 1665832991371139326007087733764324981069754556424294242460400331604990921456871\ 03625847394227095136, .49179053284925299195001855601925496378929052242948224253\ 8937894509836582897159774167516502756399438826175920417465780449716430851411449\ 0942226638282469077255007926069742187596687066370016605123574378879614141590391\ 2481587406016361375097226736591944203365591188860166161523460528598698070653965\ 7537746160315771632594602275181849119972479366204486871332916882420617498716345\ 6548065996037366855823072491117695227021226027288356110591186229854893631911329\ 1627295282987041800156484957575330358590240080719102003835268, .366511329069263\ 4655058053416482880826033332116275012689436405913584692148169760987163181012278\ 5126287512527032732741181003152040089517717454427059260119887969414909499385480\ 9654662528656221459869362906336358571454114563988469103900529585775856896353224\ 8067401405103624459205566563405752359831603245110027872657798957467557016573883\ 9759517977563487279493307418377709941764193896085963519662811109883866902604008\ 6611907139754973824888562238653989050052852876838828267488323770744194241799327\ 06174780605933475628951, .15905833192451576806857262676739975904137347938811456\ 4586132965399379733600879292516839378876258132221967156851069431808543657219263\ 2102276348611888664316837271672698909667730871866878243222688799961758687785620\ 0507074490371608127016457139244483287191681585370907559899992627475548087370282\ 9610282726789664126613284853279263108738166143467415464690641232131811611917277\ 5282747896011121721728761892970266569441120387051882924544401509619593409066516\ 6981211571935868137701850914165945855155563529463559863991947905, .738758591319\ 9889744280378677072326373672995972705097916203604487766518421167941309836336411\ 6583602293111547418426929565895223104697869192332197253976720931732365514377461\ 3291440858280193521050978962085518554297134356419925976457179138924338523147990\ 5979917496622135443738180140106258637741154140868974174790749324590792368446500\ 3547043020143030447071146787897713696242822905645977705770267010499954196533011\ 6316312347302292391906990625480844360311893237892385544069226820693299579782510\ 69474838267597840389235566e-1, .96218095625086203334307589655373238736088179512\ 6475197535885524309376457749752400791679332659618834277089580594280922242627416\ 6090196011023799755715663015503188786913575068839272443140186565861559415849597\ 9951121155344729727764094873857528753169466431592834742135038594791492327602041\ 4099877173512915584520799037240218341046796500564863348454975012709963044691461\ 1024319413137380138526835139632640176707340076948972708907176521324512018930536\ 8990637336472673116200049578790157806029311873480782791231887034180168, .578791\ 3138938162695026576490100259864885619081182638293470907377946119119802223189924\ 2887430721136980135164415950529737505162438986384486439106248572213765618855154\ 7815943737420491898872548528209117348233264144806659640462479344681951605591525\ 4127294168088347623878048825285696490453363097662329347511274969125665265240938\ 6491736023802570054948866974884933702779774624120033655341052035380260597636402\ 1142575389594894688545595793540964837264228725032928589808051398736587290031956\ 17866234181500582228232408995236, .29594571819747497670731396150989439661301748\ 1914502300369147162945388191584762548308611726095451269801539424074124037686468\ 1335168522614155967365612995828359447077015026366352007253268937865064996847707\ 3667431959763303072746959850430513054053406551991611574742489091146727803694923\ 7847186534970382765149682119047656301040403472414805526013574673470596376499432\ 3809254445013079754253455891050372633611961127961822084934888450324840877500103\ 1825431038833521658843345501872609131410775192945590005854278904361150251, .838\ 9649718123720509364755729831975118064450935975420806951961704119458847387246948\ 6982658458345830423935628189594802643962281164869263489159750500984653595333357\ 5180541009838415368178969346980244773515184736005682764693376941719037212320598\ 5391907386269790278819906757812939897291206721057717482343188716473176833797998\ 4287415008629987230407778361819284676104950689920364075070776114709665473892167\ 8206878806873130716938047262925471799419564242213769972733301858857220805549773\ 03511919796656082716336427517083294e-1, .88935765315047191240393442471432078720\ 1801203248283691390296578240765852426010731548577704909917589381941991775307146\ 6214188796969988805816331814585980870517732943029443175210537366031700071697424\ 7084029996708810264447884338371381692537898033973135031241002997596477671699041\ 4454252162611738962985516699575837063763999515167444018599899145941309901687531\ 3581456276598837055328537492685952241420980076843200609563678822088395174645622\ 1833531977313715648347216872655319603306227240619932965538626770174939179226166 , .1150241226040735305007300832947694039523231472104144545813026128452135741845\ 7386686319603444739358718946813048914015269145111397713850074181967556795094646\ 2425727656458209391388048224847001380915345418024768106902796599203855471344291\ 1391380880751853822345537291787532356642138187921698229454923023825009745608637\ 6842016303505618131032963257487838026440131066885959586971292082724179816092908\ 5570401816964792698937141649019524891483794685865953851528582200963648264977916\ 07698682567181566521447254328074671068349, .83393773698524856032558813196739996\ 4174988474661650190884024934758168502777317812179804697185794686403322424548435\ 3241677632039385385885139932085492277270886345268750749584618357384246291575795\ 2930198522387305889485348331490753398651789527180933196331203693470915432944331\ 2009445143975483483012064716696238856121295038279952448970565852800823929470906\ 9762073831594037323389537918089918240066392845673377133065063284441271934802021\ 9556518741690329932754208913206765536915367431772680566003858644195018061374237\ 880, .5466380050169642890919486629874099346402163334091250491778991890722399730\ 2185858114128227571997074597931468909383974531811213966913834278180222721945939\ 0568086469204847987227256223960588087075752106437761122186372229639226838464807\ 6446543531615890553339066463064304614475662861498606642458252267528909305955311\ 8327902989682459680507849755614652612925225482869772645305478256394516250973798\ 8563756135481407568483183244260402195730150530848550139322536521394454728758220\ 84510284687384453514569234123491914591943397, .32070920000543889593745254943600\ 9145397151009017456914517500295343384837341938082468699516647735022822039002297\ 2824085107978438887084284072614644380466493911362558014348079470465590811387760\ 9208167857193060281977272024630956379249762869577210029426405730924609659357483\ 0674624860497029209439598672999385584287190839625324276956886500826648495181135\ 0926510515392289560220441409743004811870784787941403155798340614325985000634991\ 1366328155993558171516127677399894233089748182877542444134358047069642375631758\ 717765, .1410928405837322470814713168956162715353288306794981544550565602011585\ 4702104186933348251413194148451179925084112427408033553259457624426549251022032\ 3500851400465212217673479413483556579173731312453163393692573228938760812854486\ 2705060245379106265692906300563891537266863828354896724633315453398947004581721\ 8166625464245752748329388104455580487979401177678041286678687157462026154741509\ 1382981215539586537896684296463077019883938327117390806415837051781242940896378\ 22146139041241931627791090967794202912330995994, .75519818147491227468167482530\ 4321471828444886758875229587848464333775243231039986706921176604243211896438711\ 4985119039455056926856666948622099176004376378474241787741920629572825808351406\ 5080178586488425494734335051273596932133023560183682370813903765267641684804517\ 0775449869279323819219961404041163053385943645892546699556079029104634865074446\ 7943081617838739511205792866758537253470351787853210512963680509029288754024886\ 4802802681012094234336648613282856687159124697589738859815766597167288160333144\ 426880345, .1821867259840537519673635795452205240190772033209953496411988454102\ 5774475289872554262041070104071534228568566588676573352767815882216307932081643\ 9509043262781834215168988544221270051489619021393785198333920901256306985941513\ 2897838584249757758405202529087889500960027411554322750861471180924793879628680\ 9745547852067432600429217702370339370126946130434384579081396205093200813391303\ 6751156610928466726449906276228788993097146784595672504969118619771335662891727\ 38711767521284184708163070480097898377536511287113, .63458993125662889548670571\ 5943603067206573380773331691166780020925673823202079784099122160532769790524730\ 1836391697920615716126115007329786558126862610645952016704452839278241631536224\ 5589631967814511070790066568224023592018046108153413669549411483030697016054734\ 9877949992487876584741633086946467938380925599190478830549669995852082111008950\ 5802201460068226105674759456878332042386385651109176931747208844406081982064127\ 7317654316897981224076712656020101712775115698388198498892182209751487003217339\ 677203645814, .2562060735997051044495678120998327054172172164025194991507482999\ 1995068546804612256548693767316112862206754536313555411092568730161885578032230\ 8203498489104688862665682193834568964450805625724578459757846037647002430401782\ 3960034094174530299591282012800627341834013111429528536296866991045228014491649\ 8645280820404094591826766087172656420325375205669515060262693025300132783894496\ 2301063760839214584521639982513868277000416950567196471471671003940296648685991\ 98744771880656996629491247161888870264748488999607276, .42713852155157774665002\ 4399397621590428393700252369813467004370775704282314662632779511474032152268775\ 9172419887715289470045486383920522185357678920557825750742365376728506809198888\ 7360374361247605404280817772761122261260093034994550534171946650742307712216548\ 1672310483034390973071558336857594372450889953944208596829244514112327225027845\ 4849306829471184555921527379937082874863323865658394775619411621456869745617399\ 1325146941996654968706378577677229557334771828590778025577711973579486930233378\ 005131817531662, 1.207423594952871259436378817028286995385348944644442537538620\ 9716816173490265504831124728236503052944326777278544186231924138239508464090320\ 0573389664240685952548360234008623800123541161336933535660891059661840828536998\ 8160086482152835401894344486103465940268498546237412887358300877305094062288406\ 2830040222870168729258704288703905977637557221600890797781195557270417879756644\ 3466362222639176661430176336286599124878958672142971225543715940723909107593045\ 47248284455820846392988778001547666405086138553534579845, 6.5961899999564294205\ 6120885044690484400795192680724157536584708967431829462197125850070440611388328\ 9417856019279880589349424728786653670614686865548641463473655247488448768559998\ 2459801715990035274459075912459335370821888881586588212505966883328386278125257\ 9420744911173665519520856102758002968141474767402873679983908084730384321593956\ 2677036310847991278210174093548416041593190778986934422439069958425736279842484\ 5814016891789613930248452015489796606762886068994341638405611370369198878031928\ 806601124707736170, 2.818412255621842501364002574214388585838931004990120504709\ 6746133044928080353690589806517546635860156595509145048118897270194862943254731\ 8570617035969167554593393628679898494979064895189888642240593138742047978209901\ 8484422724236062967936511210155714882659478503361203583770662651256756985194859\ 6134094558005782988052703632656509763782071454179687003807749511710716232852719\ 4984946901606141254626492582984362844826393902523043559791896572186617923934992\ 32618439109783067136230939848548775193736153611395429288947, 16.204151846151446\ 5201815323937165069341503416680837594327387546635405594354317423113165196372990\ 0250514141721870306817669699852828279990170164031398168913323804043532548113972\ 3012435072962450519538380300974513469423335646691056078105819919439107995105137\ 3863576873042162131977479689301815534532285061332562968171272063189384840935582\ 8506227229082902602651325747829144060133104815552349635138955417376985559723625\ 3146525115005024715453914439283055827806262499292585903450751321128772318938441\ 350934588145831486735], [.87493817965148178453465258358254139337436709903408357519634187692779359014362\ 9237735780696525214229578928314192845635235286592855376125942416184932426425905\ 5983136017656181011927218354206860684692307072097600484978771325126727263518983\ 9424070790865418668518382685228581633627707988569233086783091306109971989176237\ 0445016288940802645347888116451549900230715418636034903538402578530674201431137\ 0306322864569529339028297923147350486300939069520427857849927059938741087697015\ 2399190941965094279950342981379732359875, .572417736289863294654383581918922736\ 4369540301043620396336444004342121585037051065646128813959926663458269350921434\ 0343709761288384603545613604807701394928152755002891460284763138072712223698654\ 0057835420467731550872213569001314937031852647507879478848288661660887795506656\ 9131603118236546739334935505720998284526847662071715647870773295817408752079452\ 8625729330517727776455546709722128725424536638303568932065876967567114680614429\ 9460443635166907970266831756684814913966834554519030017301584615148359390329722\ 57, .41266876038519198487421545658508983388060359324659918007946951659268840245\ 6109573549572578313893445170083943207282403159115421154689540465415957002838688\ 5210280409881507728614611169504666455649283819810241869226927682526043087623423\ 0876417438291402046522336941666594979271691016500879181488006592925022624374509\ 6223719566032520397929696424325065280650430758853813311821525716756978782899180\ 2359375971533416094924229426388159128136418537175558639707710298403864058648872\ 8068241042807083007660930171018602552796165, .833011898247405616547375597085003\ 6144337034830687012677414353126128638124426414887401936986779300967933630214915\ 9228565003204681778619680749530637338213795388288792924898461040348956286784199\ 3588911515880142300139506103969294431254874902956967450875203626363836158611082\ 5800616790023748331006831452230650138619778929437958559595398767724637773516757\ 8682799163234322950346387324624440612673799308782355316986701351073707730991823\ 1619100635872407044819040332992285947846893407228205459620790693035343603712807\ 75556e-1, .86047071074529293277408541169629010803057553493326876356009092685048\ 0103918217745688710491016063323656966428773723458735195377930015855295583817116\ 0256128000480784670976223001511881847262643814526404741546243541936369419609409\ 0142743521388255121241305187148325445122437759585169924393721942396151833636152\ 5956126909335222784789171581239809266289472488946268184344731314192760617272288\ 4704607585442054869333918458228468840461217869943547892196051135162064695354622\ 2945185767472429640462062581390676981103459379958, .681222239116611310889506811\ 4539425159765428992140869854478526648069727568399794244293947676141967375473009\ 0837681685316301086987631111645556763443329881326164483076037644996726447567074\ 7344780663117032865875256913674581301957118464036172945431183904721587458140587\ 3482778639339429974691984430339282492693469755218117577743423057676726294879723\ 8286216848236531194611406266542136899874175246529947611475166236112261207543897\ 9003599284039363966317464891523878033306201754044714021318510034169467170287363\ 31730749284, .29850404380704316138644622957464344845534923897586795950337908927\ 4265692689431519626262668490579159213772108862297584761816379429368109622390317\ 3388586774405856777048949476324565408732439573539076417273236495915304153301577\ 0351812885631459145604912466567042883593160406267271612211447733711167821571738\ 7392637697970045448560156214444234824806639449083368348481203445775320631535544\ 7451924759967498188827782002379093022920481575168771009524286080730701187696396\ 4146018236969006930877950757084227740234318435479072, .999444611082769501605921\ 1855419093043178517058148403055592798991717596424330118465197444898400469676330\ 1604642223725277861407602056905585321607186195653620122758227079594194102144581\ 3472145576662825688869268734335982235035033565576298710653688043571678669642805\ 6044378885205344575106512226991391565717113114335400233277559683221597945498268\ 9469174986394650051378985010974685275342501679587120196255196131754439664707510\ 4399092436502686081360594161107935126801232972000775178458330779341551529136637\ 43467237617322e-1, .85078300555799208788192095931720431497652201240628785906585\ 5896646934736501019578193841340576940916899612632442892603238687389562243427638\ 8172404878727415218215274949789178133778373755540556892713853623590566873123804\ 3691394209816528630722933175883279918260967112592372099070023954155904502971164\ 8131579784625420146589801937195006873503698322625895914046449180559014242637284\ 5754853078615189187201792030550231413520644084924978037766903406059597696022164\ 2883858109935690132359547074703686968431502601885170663936, .752108001076977119\ 0174620745650021011241473227834807944088420901910315510372751803626405479341087\ 7033387273180585535602925135077201443353882469288489016204311132993696377118166\ 4729906663709691957834868268121444047129248828494199488992358529422854274118859\ 1824595302020190457925904194011858048097940202377754628650758454656202484822962\ 1836492158580737430911084935197005519073497983336916724852694490951205660328609\ 3695319545815438467258365317447396622693652134843182093647402238237854872944455\ 13906165692183536046, .54611731080397003697808195554180584519261633949306666808\ 8323030400011841981489173713810821504930542162897780699172326342862171381655491\ 5745089877277368084714891793465065119958135997923753951222091901646444182695589\ 1652455153517136796695148028205410469416608491372372338597503856639423855110703\ 3562121138974038719514456621333388682599330102107178170645080775295999494314885\ 3086068039358996176198235753047703164476441128192216274924766559665509226963883\ 1335515240953436493363719953281350076425691778182936519253731, .439595944818040\ 2635883454778466496139536323471551845796141951537469527736986089899257769134872\ 1084099060472401398907136481531380593070713932154572108107326921154919263470919\ 0490208033026294100797331545388664980159168077057793263890567572733552892543668\ 5940669226347128761008425581613606288796019811902248376991500803567737666011792\ 1488764088587113631449914126374190252724475279329776856421482133188976135257770\ 5087812770984076996049349243317220007059160666950024800203060550301003903944509\ 96513022813193063171464, .22161346150765702517828419466672750925263880198308872\ 7834197210574535868670370029511721141470859236168569758742462747360830485607466\ 9038973290404058980674602512921765364688245181302059589805849267714299185279799\ 0635524201167227191912405533734486639059810146383375848952549351295728823205521\ 1342697226289832760448463208229170621160922653338689239402512287337123947861971\ 9607994352866494297339189389261213493651246553624115506919211772367936017566089\ 1549300794212244338303667403915467233431057922626572381490171572, .111034931435\ 1941458547225197865860861476240593317495594162897044049169481262236572843924276\ 8604522151608199509444430006637124126473752919189195748736268177007182942199458\ 1657369575595062627978462238017225837149346199725929146834273200793300842076970\ 6219523978194750767133754814539776311084120194413569329638287137407210079215720\ 4696942580126191871305625151730374502413605764219578124192453191083219751691603\ 7401596975635983005772999591323117657325703908478113696534795709408328419987735\ 04635209190912906071574597, .83862592698225481298628210423234950818177439090055\ 5148798513524013630361478187995469059993973408178581653147129591403658367754029\ 0381986678380896470059935665756268324825346510227500684772614883310703481661068\ 4653978123269355222501946270501985638611623559710766086783296335458905280726627\ 3867741170502170150902757713658403495469698496391941329993051810051650542081733\ 5598395083818191338536690562990699920609977067342831252768606729953017786551434\ 2128997560520686893942526404891547290778001223336719295487179566000, .611594526\ 1853269426310022265600639477427648661135804472902882960185052893375208611274257\ 3144541771323257500408883532243802187065306725353335131505223498184971651703234\ 0085447240283532053664446083010471335448684625834099273554983573272347591139359\ 7006462279617039321329432932937285756473289551926317685701050912313565865702678\ 9563047662182520872594385884846733137959970014093739026086602720167093326876827\ 1538680620050561558855690749715627817395161115531643702425467575068020125089551\ 58678126436230494703686950601, .37208264260495862290837031927141890211774201238\ 1316174289284018124631025578743152555443277014190610701646248602622717644003345\ 0179552812531029173257071132828274184307078841402119742737363940655599503404576\ 4921880045688864548021393316760748352036771444582419730906684266870410710994316\ 0092071714087684596778025767690795130698255372144368410058167817848364293864109\ 9662955358403966740447621465381658909891388970741573142625402914251502581230127\ 9491743377387767765645763559608142733245564125894792380973181203620325, .124891\ 5439046722524691258957660587749257329394175504900259029400363633396603424056029\ 9705080619697007132474504993451869906114325129994687701412604293662600146974224\ 9192405802175299063246040773735254412528775999636756798760711584543507341535138\ 2036170147059188995155912859413134490927716399820321414319055407198951966539281\ 3673833418399403860932649987129404684481310197741315371121361852799609437117951\ 6061651460924262014718416515648960879802090594278031672803945439673728248768159\ 06524164455101624632946668682796, .80184507208462524131149959577169596709142418\ 4911934948620479355087552667687453049495841160725103203950177096503712104319004\ 5021637847365817466403199218821979334345408044283671359427905075102100770003143\ 2842348826472883036800373799037940029176305535502059454382159625101540702318247\ 5349460965482701201666128794577250549886043723175181792825211956594709047330065\ 9368716874947894672315087084378814675439779503912835116612265952128956035464453\ 1530925550088583980762528719867561225707983347149367236185593743714596549, .166\ 4096792540574716599058562927961810870834565763752223843732727409831885570998033\ 9131939946993632128161861252819040795377073213438865735521835049925319194887994\ 2436029179158285632699940365207789587416980491523145876800181691833334233501419\ 0655423789801281598040214369755371095100827086693903554884846977443671074098351\ 8966629497651329739173609432010986916361117809826394495843636865578518949202144\ 4686324505496950332446992411328650964542429259884928649008776254971616272958462\ 92391847820617846368197183213531662, .77209578548199656025388971247989549189928\ 1705528874992895766162428529057858572397758908074505066787521319638499661547578\ 9333181541179972648590722942936374540219802788852510145768475837082230343130591\ 1691665780809785715799868700735713010862230431141347072920416158102495856726110\ 1413616198986958909305201021281006660563157089518413108602629696828839794998201\ 3441329224574715000316425571336835331309383071137614888144596784519941536663219\ 9242988554331686089454873082354726476126223757606615975370674539857666829002, .\ 5881288096080800668996479040068368191964074189278061513244112603158240919708007\ 6179952358968585853359813556730096455900251125218020956660678355119121980028865\ 0823243493751167256434014198179300855721050062977689072591483989144613618203018\ 4396501015029303362836073438985055278259181976337558792485490620508600704345550\ 8666135557722942399226499279263888269453615474084429073304705773991445543055784\ 2908878086444597025962274998406874443699910073486751968697923156346332062280588\ 06860716803876715314045661420846889710, .39646146475137288302033426313517445414\ 4219963509230467119528679595002335471680053655273264156617085041116498484959110\ 9480651507044624650985773130175491298423758702784649250208014699751229189128956\ 9410912496867086142147790566488675961368152390216981285401867878450266336668427\ 3732485559951324297684024572032659425263388158746616226919935732371722603738304\ 6788274521866817827204541425657612133137692356345608491945368724214983507413025\ 1619116060134301252843230527428893803663979916593996127741640064795292709970266 , .1995560885262338214004569447641659509866038788055132198626167003976643976469\ 5235216942438465671174340599497437280277127449578338157978916859024407516182649\ 9517631621751260883218152776272358709770715181715912826839143482957112005606419\ 4735743527418437203929801757014451605680833757635361235555371714196262383415954\ 2825652343558485840572543047470973024095943302640752378814929660192168639121580\ 0050805471331351824618480059288751677598342328058901333742264880200399388669048\ 30651438005612892532318388271745273579233, .72695424715008697901238560146458620\ 5200101723467062189832938242013730928785616709813383902000008432681264751027317\ 7991051622143219870863566639563160865702363875065950423654259045578082025274953\ 8430958420104612055523282114709562108749967736244173866572977092078436297328778\ 5359399951616530276694396457601214752701034244934555986796807989761468392986479\ 9850928028096756960011603724128841922493172447555191809437312423847206952542076\ 2389268011929510573391539516120360522475032298065467253444687973021008809673097\ 169, .2491335703197571640954025664870223741307663926517214583611496950623570857\ 8468517516569366225946112916300018657232616418370879658317000525573767314676437\ 1322417931516737052101510692388672896299284164226373135095008668266211634448817\ 8291030446129793488226932597310955563462425717173975619639649800804557866597385\ 7499610396779177247310821649713574345965302551037752069268224753770710121424889\ 2061528312783994415588939030239885158184804123820401603740565019055893876853049\ 79198338196359974436650179969566232093553567, .65042358904599400640649932021674\ 7249774574413423533041896167242261244008698940590672519014300714557918110417449\ 2117076742459390653690027802221549969042681294395504277714053307868612421249229\ 1910482795310652477735819890026116247831456312517194619990321241953352995784030\ 2506211186697362916929401656216253843210497197970517769981061528265296743080427\ 3769619305227419989639791894707984693309959481500083800433211865536670145618257\ 7425637503969814506634477920200343240749235913067461509660237312037687997623827\ 335025, .3312825659301884225135046991300795291449458929061728671816055806988514\ 7532905834977063523371432851058829940608112174455684099589197862808420083996644\ 6639572062526888711365022830493844132053558613950998401545362623500966088239072\ 9676511488482046569588913500237862770136789677104790698606771938318880810684126\ 7837834317338843567991957237419148548131800791650826004819706557526423327218619\ 0118869342508338225611932319780670762503020704374257546435253812776891896902028\ 88377418792190713662601317542357789031668053496, .49310741804306668916162670757\ 2764653641337138428721131660242614030237476932756287871640249351268707367916447\ 2436021574597758210509275354066208937618018492235886805734150267556756836262565\ 3257521821633976311866634841389354753444652049512518319658145573775413747944663\ 2562997558068909907693488060346907006704569445041341217084214907850511936314782\ 4216557825306534297477419022613081198058656076605638327046842276620096228755203\ 6753821845846334823885811886488310157417423788048186970180086113971857404398080\ 646886631, .9460830703671830149413533138231796578123379547381117904714547735666\ 8703654079791808870213308174071121502398539845890996301887192156588328892060919\ 1883064647706426075351277728973725739371280321100977843163004432660852088846915\ 0659503228892983596079074157885855190337192740060568319461358877410267784683984\ 9255358218142272294554225801480614874623444769703161594773303385898379366015578\ 3294744724825310389034760796193369405081946843528840216454453278903490307980531\ 22790915671206533112618294670461731763193919370900, 1.6054129768026948485767201\ 4819858894084858342232849966028900630656452935717266614984534479716278703160758\ 0347173686144762015629884312975752888513611557574310444884963174318530108686914\ 7487837342135268173280398244442961143745966089262822146534889028881507409886241\ 0229597561918881308738887416084278347252143346596408991452089501980571560839985\ 0976870742032789740255942070910412702856362882408542593565919738049583501528360\ 8348061472396256613595059929198575776715532085503043153506657798065751238451106\ 607701449374, 1.324683531172119680370472846875214042814140454625112248480722201\ 2623202195538953864072073325125981398636346292422573342305411455238687778396475\ 9926216303502492757082825748017098447581899354266803907865519188362305411464748\ 2705575705890701253637140201459737562846538995396426632544809106066199554151422\ 6547464998240667671372648193621586252041922925816030723832945692723966717950633\ 3560409716603261580109575349211849084277141345966254723634909949837998490780574\ 58487261888373657632729597819330345687979242503311328, 1.7785201734438266421003\ 1198173622947870957384947778198988060328309682347065420393354980914099368115777\ 2628085673386449394865957431386140539316750385437693033301751558627318477969110\ 2326941764840882951331815103703543460885039253024340238446862911414135928785945\ 6105663911760805054830619714311359381156660193574348946854735334314554826055642\ 8329489479902816229991961731678415337957117775810019510975965970979833965068769\ 5717880834742548362498608383585045955237052758735944390961932655333371559201896\ 679119315853472], [.28735390328600613124496063486054570646153103501032620525583093569395563762310\ 4765274838259294711235623675675758576352338042086342945516624710837560524724855\ 5057208657078267203052261638427725407647747449000522364083434879884892764445847\ 9466522903538794385130401986322813380217975439330748561825862654000227963195395\ 5387189133283674472850865281101135980049227802922951457563348654316979228535829\ 7701965677900694248307069639094860293460554130245698427005821416907963066356618\ 0023050727124807411922131596830034599155, -.45653224239166395821954284172930722\ 8534451963424471237378481265887319367921494322631891947394017180110282224209154\ 2387979518955357682167970660860550621650447321441149202833882686121822992938159\ 7727357170024066428809428332596081947956044362283168271739809523333094291971797\ 4905833020639173512618031264442642942730452149274771184341787270374153591698121\ 9936071841269479095296351415021656988050944645827277159482973369880984955294747\ 9465916381223966653769314621748634196561891136190916915137836852642156695670782\ 602e-1, -.341343091856786401856986218886284955225945946978922185586795276752897\ 7110591474411334511592669519450609545498303149429643953139486177505476416066712\ 2834365624491399382806492326945589413379432512637263481415487466627104025935291\ 9786147259292224561073324706901020157944013348329859006201467510405844487922888\ 9493385861897423152315450556096426562868331867594154626980557878374584637130334\ 8361130715565580798590220888369982427998487303780711213117360645949896276837618\ 841453407838027957584219163911839057859081886527, -1.90942659372812901031968461\ 3443793514648044378886332647007613915417448874633251253957203252995957817576741\ 4122491952275905542698089506142405922222778933098416041927798361763545119151605\ 5317885669913832195458021618491152998167321342659920727760744828298943958115782\ 4154093659115245655761005717975968678359263419261497158244685992553190735237976\ 9809070903698681946331111270990924256718492802374213111282205002924180060365933\ 7929632741506893395112681772341455980098963853579930285553784876341582977302231\ 10849078326, .27606783046777286015043411553880333944850974936856625168149623046\ 2970757428957328406541833883007532959513620076733901208055278468164787027459151\ 0619330331119222531976253206214104371509502296876797281154697074042914521272062\ 8846910719725063410358701471305104700916963046306431079960430451483158465313486\ 5042343219398065521797426782658888606779130424423697533840304863725083256342033\ 7227555521669611628677218753000352048753001254346684507525307267883127448682818\ 7592009108824607159807417078489754121352755328652462, .100514707008897832689135\ 8928102861564556872335539467447913939329000999204371869870863057916207460101806\ 1727589375756878453492013432694853105062628172510912596744482006581058136177501\ 3095624938130869819877892464886818251840363568237193223524047869387222921159910\ 1477284711140901776679366329211776254131637186635072385995916057887214356389483\ 3569017216826034602450328116963255498499887195497217117184473573781071991454396\ 7269090964752498750504451983949531712347215314294395454398390161247908317655023\ 27599377902179, -.6491729329711617449561811051354896549093734299314765974537420\ 6676122424732510438297115951686408960484350091503487409166674806780158511426788\ 5283407959566942377803296755963283760579995118875905662324413039114155187195914\ 4330476476183503356609300332930899312255746988706260632399754294192694321283371\ 7081274249122793812765016106696191022277891106123357897149071616336110426465897\ 0534605592007679939802664277647924157514174195434602302388198680832415566577433\ 97946517614979101623064987302270782912357705604636742069, -1.727868386657296638\ 9977251529065736328284817176970331138861264376269311872621394050937978962452466\ 7398422981089746600254720579884118700721899483928202715057436043851088770867394\ 1997518589831417921658849470329406827828191280541154587674967101259269333837245\ 9105043715624685178189973194173748453734676251058258925207088308664803914438892\ 5151554645288009616566422907077115680956644835664393670919817089922967943022464\ 9533179325025281590249510319594341000357579893378671109110016005095399895362086\ 6717848892895199012, .268291855693826597727966558932066816568556555853029006429\ 3000737637213327706013189104474080529570907005653740120295240012343022972036899\ 6943070709744334205084879485568961886079301617565290257920306532249645747651234\ 8428375873934496380958122717588083061510118100091093425633551521285294282125171\ 6537025960468726646544631783067832120964796947191597678136837623975722850576117\ 0029841410094676803419519258513574332316462959003165384022933760061857390970096\ 738587198131127030144872160903275501461251378750921440450694, .1784278193373661\ 6677104986261618357469643529739232967466346763762939169290383041608260411439817\ 1600889646767604064926002245593880678760918228116100042166018455688454150224192\ 4868953042516573402236788489020771418535804392383018461710209303473782500872422\ 5269587185340331368752999045790555164222411748978798982806284153265196922634329\ 0919370241297879663606030590013744139736921141429922177784972315685976850659069\ 8602557211305484772183648449571980359674911710061589603088590332277930821834292\ 0842753341163672735361, -.86745981302900238191864952006129355090961393517348996\ 5797740033550025079785664330804815803868820868464507321596881504581570973271513\ 0379837404741197181188718130715495748117671222793740028631464432049840641789367\ 7932632693086927744112000603344091882541038907411169499462677397539850680689216\ 7845617327365823040808528017951499362384846273680462812138145097402673875850481\ 1625429939942967143684325657658345312356055445004345571630027197989866136680264\ 0884916307630265692716181222879001165548509194293614208045675153e-1, -.28269260\ 4653206799139804473504345740287735940876275010460485383041758611114032711028307\ 2777891254189684981711811992825267042700635852161531970554360655529299646247112\ 4652430037503541900077969901821833331941405569021101420970510692656107429809234\ 1611371705661791627244619299582545725839403071060280267992460789479269029651686\ 4702042422113902858696587785296148989401905927775492313709397945615435031757925\ 8171755157106385649005892569844850245298486478455861539129942441437914440691437\ 598652744182833546517558439686, -.939182036113633124573761522750637761625052763\ 6714025398597972847796771146568802824424897438537661800645519768260458535320068\ 5668130964410024224464833121687104272866266870210578498807987490301812690447847\ 8487179914425429866815284757510871543069584480689235952906527162455906225285113\ 0926332312918859872379185393094361086368069706661722245128035523036891225118416\ 1565174031493563891374919307381911281145592565511362708602633868024059843050067\ 175438114161871172563910617914004474221154437060299186900743920729165679, -1.62\ 3093744958792136216104186807668004015207210932974280758846592632844560163083144\ 9828202667214499008562773721525872321208941704066415968598811151329479693252555\ 8728309899731565422707250724315410545864552918546918820965011034371132422406197\ 2828766570871123539685052538741328255426349359114604639121173228446450147624183\ 1342346550305947057026147292215417213296824486868435902610900382257870048761399\ 3201197391020466315237156565707167843252689337368938265698130347823743952725548\ 80205993071514568857901564023828942, .25828125126936125435024543995808461875364\ 5375883581524512260006366393017763363072011718887266597249189409325736198946002\ 3342144792728460575965175397711324835452811684394503273761056463145703441915177\ 6104607851983845874925628939727383171168290814360132834740867440331074666258710\ 2947215182364049763369527507854390865916610851591545982814521928296566515723441\ 5764863394890092911042699217547092911430474640245122573850843900208233793887181\ 8706287610314226822321577148624834587964268657181012840844382839753096068287, .\ 1113151741043570951411766871490625282332376598896231918805464669282983202459619\ 4402176034861295563949856076186494710346853944132643832887071930583558844699700\ 0749876900886052810978473907476401004893843803419436998149965081985798889741974\ 5324791473296127023543602647786721429853494651252755115816918906071091578642905\ 3184569313003154656467295462845253939078931666540437009738411503182988455065846\ 3786466866646044981437094143194681882398668969054359307008921560740306002855522\ 50022446787553253142498801341319470889e-1, -.4385644869771449109445584841131083\ 9057766785552656539305294637835709674214924317763254893351516872417032807455851\ 1401294680842798424146792952530429913561412258893262435999048310950294592390437\ 6650945384260532463759300999533408908780895708842324082819858183262726739042153\ 7989018761299978073397021576855458007200167703361639164768284921297026360004872\ 7805643638188820884566310631644783652995932080787582364401164076763312849959929\ 0168413009274198870870288040447727734987653048759387394351890509722617889746222\ 8426, -1.5061295845296396648658490058397476842494549963961192837077350916487664\ 5526183327922464627760863549098267590414523417551263735228314094963610104107352\ 5268115189512632127133693662658295951499426128182227626649938397390716767734465\ 5051954277341553049171453222465434020031947149282653238237560021305312395893925\ 5058582637730226014575347114066925694459997023414708980312732822891662748930458\ 6936032096558485635942035510562048924535124285579460111524935653300118755103438\ 5323819526341289151892052047448068876610088898, .226229660542739899661845728258\ 0153621911623409121384276936472724168765591990769390943389364859775593863090082\ 4783917044115575197738227171304487312205074459624131127510725078486109757574060\ 4844878116539509928834598651249526973247077613185413250563638800020766011468671\ 9583618127310176503847496007310956015527042895567374746081063435884219708746650\ 1423904117697954340184321082982114635901514667454060438002398921675991343687152\ 2840749250874799398086542586128862335498591162784048592116151507647267419016003\ 15485388, -1.221480216179132439385958569588648331375312698400800090560441027179\ 2041437919718488754361023988369238170153510501268805655311724306064496077233311\ 8608086887374431029471256308145107110377893907861309697032964961912102767554629\ 0273347346026498202835561612164841260199193522719236358344452977516510034851295\ 7662218800143800902176066036047302210364849220878877743479722952693402193771775\ 7190543645603441133440597834922075482858234235344398156508837048348004991253324\ 24360779964785786050598364464386574203454571182247, .19827861595246717701583358\ 2233840970480184257481329074039706114862908741216192616096748676607812160020839\ 9117773265870409413203737941586997301683164640099122568524308352968120472523628\ 3321450216780795812138726286046215618360312782668505341800610434923763196906459\ 2474965664562718624761081207602973188249990475565966184232135057672065008721967\ 6757152560927412103752950735392431008928049561607877415857347142621466196159231\ 2516455866326398073427498109410805443517620903819164317480533736892558140785504\ 276028920670, -.222707069592797625266027439020625605489534616661711343962144445\ 0803963484177001894338898449986846907953193499329775880060033832893303221415307\ 2033351855874083462168041512890190057151095972557774189250850673236823444831346\ 2447966818047730910813691383176214001921366371515496764344310485254379586315669\ 7561717666160281165140038014633217413208869672304243692528615872685160566610678\ 2157868474787210170688425975451039058867710244199084681970045775040223582776711\ 784908930129905652939425501792317561800809062315425482e-1, -.378809346425244332\ 0846617572294418403950775789258904420265940717903741069282477550573352960658268\ 8182594918749084224190157294058601147808036306528532036791247193143330265062318\ 9877996115290585525000018235515992369527106365747861499058515033447762566205537\ 4069770752406034853549513608052369762453271544702365901597769345937358643269140\ 1168794512320313615785412790773484444916289991874652224182058125523012792684496\ 4594979081104092881806299899983325806462184471280811185394086671391734014259263\ 91231981487143108928, -1.042205595672781975362916906675889523453125168105938907\ 7715084737536060923619880284375553905088448299973837938183991166511435247596411\ 1901692015927829653636182485823597468111052731837848398403831031131734819589248\ 4951492851953379661760451831365341618080418084874478936704924289570831066117208\ 5821632648260095969855545205077351865833375089111253508381746310771795257872795\ 6966488543693634841957737176158456342031452453070951838564558708393599302444784\ 93816065612992521595654072401826312529728001842131687884350054, .15216360098033\ 0236553095431748583992476722965071951662493053024786791053281385987542028453078\ 6757555638715664758533896123435320396207027505859544209026997133565176370658482\ 5012680225410389492001156508259804260262525130491207379112153004078351844902413\ 8339598341920269215341503122776759024464879059150724284449015655776542121166873\ 8560814111390273987673322151080681407099079513987453336016416419005119268579908\ 5032973766840347536618338333411645414951641186310007732180445191893169183872596\ 920407972132468905526924, -.824663062580945653085865034519085073396094922456605\ 9347682517446693093913051280769434625217991471299749190891972868997974066178986\ 2945535135900856860752724110652738497883403485456375355679239503928241702709731\ 8647364952037394638864132584718422136989493627436359495466461214954279433686304\ 1392955867638503124405461907447674598306785722701232627798051697696134189280331\ 1710478644586184533571617649474577538433403763024851639471702928409174640800989\ 556362248100374117894322587574133525046435882077097926316896739950, .6267685723\ 3976440573293647234030930931046157761519538163698047113699878146356973511747326\ 2913601145686409729658223745247977052514673806425251879333967425247776659346271\ 5370096487788427983103294441001445305025833530650653113384109658433658479601009\ 0179199247037773237274253159372952653250213618620254970399515969195053981375924\ 1990621084612538191364070469757316839264173087920546568188411539156334336416668\ 4869421648579466024746647662920277724207891846541059762853202677735255230032676\ 8234917685473734525215588410e-1, -.54904611778215291649245254792976811673386244\ 3697617819627270574307335235213408570000667010686066255526071520603748760990666\ 4941828959031048869885039870817098231978367684557796110942906237342303280370276\ 8367927010326117134961930848192572032731898679942130389927317008495303445796050\ 1616423794891656341185274421195766616683350702830472802003563045781561292848806\ 1695385504153081773703825139921647986856127044462873855302892612510573424061314\ 1858974036436638129884235416319185368108329703759510764473020214414392299, -.17\ 7784078806612901335810271070569078090519474812621968666825357595127265015902096\ 7709876446027217323581700163051009209159375265523063056945010378178291323919884\ 3001925212056623780389440320505575264558917258903119043865417882285907007088052\ 0685652156117450260531267658715707295945724421257713964082406969523630792688462\ 0171192274581293068265411359024368610809212678359717972878509274307593798889494\ 7704599814302226561730672726560330917432580118212915996850465944795655879769547\ 378434732327988838433902078170194130, .3374039229009681346626462038891507699975\ 7803258573189480131854243613033002505605289684818309732299460494805267786887337\ 4428691473326665751587262822008641593735271629602356939680198450026475325099771\ 7086343032392789762893312093657127379839567306815060796667469412883956044871563\ 8538535514733394821008862942952369256204091193667841753953112512421265242216046\ 5703688159349687856931702096361638189608574504113706831890700788809623624015321\ 56843269709501851615963920035220416440395924369125514262048841069646359002567, .422980828774864995698565153198255894135737756306187688110162455765602303699641\ 6214224698023378797896917012130648972749410555481890971882758827817541161574926\ 7566413005845521171710559157260560873778294181791546925594451235246568208897752\ 5074651921829362020339063621077734793970185564011912867508831662802505926298100\ 7304198489807392713070016016941560346612240483445992994377939720922984433456001\ 3306071135673858233457626133808124625118398832377111784500499005555411550226613\ 856308893948544045857570615177440537629, .4703563171953998866750821522365605516\ 1523270057307529539416742824814112059401768304078171860478292993960196984796521\ 9349027581709793778997562379738302970479940805288081765483278059019586522919833\ 3405093879097133848685244736448130498264605316247331742240364533867215030488840\ 7241529142137986501224300920448492872437161014679337501827527369941264221144222\ 8882660098905446925649195830518645717281789560540753440859052437326338774471859\ 0266137240550145221563073776782809754505719882658799812923385672996624877192556\ 1, .285871196365383495389100647925236071969232876671079254445951385385626630460\ 1511301150912020083634105103548546163705619866519845721921647255318034241903706\ 9704647004942249572574150326856734718548506325983928617720713908493223017041808\ 3065851440583632303630360408445950920571752467920859818805779569295224389343385\ 3338264773165153011456103573348089847381467476632330670511337371917193102600653\ 3781545213422878224003165152200074590263286819625793689798271399615169619415572\ 511478104459270123924714844381212716417385], [-.6958581471434148346966691080572100487242176006534693352911304192261146129994\ 7526157823671614584430441214572906379551808826032944939916517344649477163781465\ 3126828449585351159360057986890788408995960275004645439335089590551565097764994\ 9973419276923003861390996348778884888908862442210044727622936575757625736115407\ 8734907115181965783606673892940613228371557976136963036173600765473001787204483\ 3725172430071682248976966184231358010060872398944509773489044525196107266013974\ 41888445302596302629200254475111951308247, -.9983785905050333245769381097208287\ 0566163066958319087085382789571969604463939939274940453127506586764524710816449\ 7749886449309420929255659726631627050291277197592022436366412921399095189237490\ 9251331467939377562820945094952365091798615389351277214757245356218008423787985\ 7025016379487314895619107708629019367485047302788026919567340408504530498247423\ 8660037886700487987509854766163470786221725389421680839314524110120305399286914\ 3915058622613856513037703994332965598697091083218434155966675068908262055265069\ 5865, -1.1581275664097046343571062350546616082179811064409537304080027795612198\ 0068699492576444483435716508882099010004935875016443150115008575065044672270122\ 5552037697101063200196399091662871844828912536809001190218565140198470459929061\ 7745846274082526869341076009140450642245125102531590979049887500586413866360497\ 5820693407452140824006255171820272079240153351553632619235344374869347628190917\ 4295734818207563187025690456853337730180245049112588340688588503007390803575509\ 8963952604659343747838924822042643788913087196, -1.4874951369701560575765841319\ 3125108065521435138068278371332876489262182189884035043999804280326552431173774\ 1107481924758543717622996671435113149066726026763336853258426070799512430866024\ 6902781062998306263912578190161126673083809914059012869388558670524616470781143\ 1319696915715620645932032005625611455579211710536849970785516450649373738066812\ 2514605263496016771342314928022908636251460802171447022361211648481528722268815\ 1012355290562423093118547921331978907527799989866021535418996518900222024402045\ 455559057, -.710325616049603686457236279943461334068009164754284146927381369303\ 4280992248867536253069216549952103341076144829176945883515443747594358202788625\ 8803862775867706358425334696040159163758521009601255050805978113363932978110329\ 6922689458177700084388541520952800207278949927631311624862759584206163052300500\ 7675471762484588646559712889001748177795682096950000269956609339510816496159884\ 0360301521221159922959524333705694909249997127169661151667694744575783076165451\ 914533181826815206604099334327759920475388224288164, -.889574087678285308341814\ 8801858089261220418004734659250396196313469354463031250748846226450568617964437\ 7313487982430016053605242846417466029504527076542729708031129097451929328830415\ 1564129696802073949348530230919292141762280705652857218637204417049851236825321\ 1428260273632293811092276051870906423875929465277813460363130984546928087851390\ 7347482001546392986805955120260898886426195032101067127968996486627406026772053\ 7567089459406926941930235094382513353156675173029631228855043935579799624335687\ 20159952918838, -1.272292282987853457844875462065107993643235460711684950984093\ 2068796425104536729796877547441804793747773019343943435685617305428754071814934\ 7236236520556311813946434645602162809623894906751712355754925489075589630255139\ 2906534305988037076991179551829907153854625798570242554447201992219466518446354\ 9194749008656051877486388806042460371798022392182331005779466988022194899537786\ 9771594688099997400598583375043494497049368449793554181386535346794448620391846\ 15503399146013062528070536661063982492285722217324818905, -1.470851865686619669\ 0707295730855605116667995291060688799315443062367322388998033146620429636870538\ 3722777243861441742804568551470271838553054107251786858693860238382427137506645\ 0635240964259919798908413327478614399368499560734467559263520517266796597404957\ 3191811697305163751098783556316813602106549796911623599491554613118439282445019\ 5964435638850719755164512862668025429972495791819039388885055954952039688074321\ 5088466106183815040697697760493143163243718509858077583598425030529367679813938\ 5923108214495990639, -.72001332123690453134940073232254712712206268728126505142\ 1616399506973466642084921120176072094117617091461410813748550084859532742531863\ 4770454392161914990369036145563720514471749424467574187881938056198553488005205\ 8628615029572595160708435330384212177364167379060425058423646308456513775860041\ 2922505282508877883011204285503565453607910928723231786269899845999446651022637\ 1256577753842119570520356255134736120415277315680535952549142759652905927896718\ 2080235140027542677461928089169857709940719094854606513004186, -.81868832571791\ 9500213859617074749340974437376904072116078630205962876652105829318951376864736\ 9497636572013114507857972942955715327608575770379868191740785156138121143871980\ 7888804991564776478550735611394628404378583747423574362462790103305321274668045\ 3965101002199972286181370733687295617825314776616624518040438081948621820511978\ 1851962621242718748096371843306536952100836752534273229062274438108952044720318\ 9678610065700027762022370794057910516265134357905513819269002854063812459074102\ 463636691290799500132076, -1.02467901599092658225323973609794559690596836019448\ 6242399149265753896361161615325600206591166127991828176262557468826980684750923\ 1197995413536919763274320872359627048444572647391800299360793552560008175699872\ 1827405019851270265274892644010235354684987865819854800645091925212475771245825\ 2523091008515723319464583643337466107371777882084524938679511538865519884006170\ 9503891016264567561738583509322294117583187352356831573244655662143103393456298\ 628857238760375718404187423056768296321132048345881927355516441439, -1.13120038\ 1976856355642976213793101828144952352532368330873277142406955429444495509388240\ 4991838476930004693192426520819587316084988445839765411339829831672895135928587\ 1626007006257178928518037666785943682574050767379864600644456022632581884908270\ 8410904230216539095461429126320765945336174750522589446637455804153077437313674\ 1592812665269861599865458694471539162637627380296574399629235092611494239149551\ 7605747779198320556201606264161706257933255221487656423995657458061539257535854\ 16694591263757464329862049666, -1.349182865287239594053037496973023932845945897\ 7044641826532750855793723344727344698022962712001992978225042845141784059627164\ 3669730838721853363929816617309847384987481450043603464961635249389253841955229\ 5877507926611481052565552197769336245290734563974722819627971684779733650366818\ 4647484187818734105724607428546945858582701392995587612883566182796716589580560\ 5780329331361079797404264374205181687859517927005822443356499540113751372951229\ 47959503585442232478589314006392688372077732796585122797088411019349655, -1.459\ 7613953597024733765991718531653559509606403558033510711825917489912550168808420\ 2962498498501331247499204816219685325717568104003776192397072221670155878865331\ 2629356387603183204227248846499002952964988568338486766997135090989843692598281\ 7935239839508718856422550975918516818701290656952181051292799293296745894170730\ 7951918841351198882578393896912769477787626064112921676803747945014894405992360\ 7199612597781282820340563087285691374982778895233570128753076284839987966534547\ 9424578789227394140654358561209353, -.73217039981264180624503958740740193391681\ 0308786997761688958772140277841664916503844957418697650355409420896127049749665\ 1791682757370924480245900570582469921495152188684346095300297538342129891341206\ 3404829864129318549037068559909743068656277921483833722717580086234134187257427\ 1299430529762383400134692142600545444135683945290761985022685715864630373894644\ 6379239317054349018514415582198069144567347244676374761455128512692323856956645\ 2724140913798406162598311243535841189396088953783395685813878161004504102122, -\ .959201800609569676600319465079687494355819833573972463197184000135402913805583\ 6381865916812256408207584990391678058308855250516517080375825113646518292587090\ 0862501901088381331249629025781003138218051087895680320713262379068284054362104\ 3991496241253926596321757798041361933869595531049474674931938868292188412071801\ 2075171728648300047928018371317383250978278486260655651334728429998260462742998\ 2253594825709650225974541498723736794125067807915739815850558748755590720860792\ 275127289402718782714366961787996717521, -1.19871368418993799632295137236833253\ 9980842687306236736198188278029277177564361346758574135656867923289427794654018\ 4356795435772868200098627597623783571272758977236206430851203408055485750804119\ 0524064175675626903250983441875761018372578409911523324012700008615266333163652\ 3056214163536711558410482952265515477535466998956742505088337046216987689864335\ 5820013158956989697385698365866473113294325899137273897381087224817140058016335\ 4070818288375764184026335351232491714807986144902998997271014358216483310480047\ 80, -1.445904782890224366762195795873692667172851760270002420461569356117544863\ 4827620937110203618648615639197492982067066346244857790534753442388485536611276\ 1455725539980215856345837748075906543370372993656968562948819620992430352623957\ 3386050047497397337558118364562214583019285849875013925163648092429204956752783\ 4079611401593040221262974205884365311823126522483351925632878612565220470735454\ 7987638462520046698372195553396182767654304200542609446196499600555838603593510\ 99476941082033803723245404897282354501498533, -.7689512547102713779198220958680\ 5547500716051477561796186699294106635553545565144981817625194595533004089694675\ 2929049004542420140990554534116039384142358360791707510546540893416837031803964\ 2673881906678859819995682378926962340861265139912908725455995522297396401339232\ 8982014014163134734266464186943519616470872590724420139703728529962180183390108\ 7474898965114068793577779620766029183365038089288260738578243899368134749950880\ 1630874198605812433037731513913823560875850003306192826121424754191441186274796\ 9071573, -1.4043866475408391475714158353469552610115012431111776881030990234129\ 2501458600469592269801320112221270945543072845074536977619017038663376064432920\ 4811048609845199615321790102267147122371109269675603565233913964687089922882545\ 9907826598901635700585755926961236577087373296900538140239881342397690821521645\ 4913619574795889777446548396811723530976336207407713156882756700132945179689203\ 6288286478734360030204129685929463529553681730040001763467292674345388222413726\ 4031674029844134385271357629130422925930847013646, -.79870054131290005897743197\ 9159855950199302994158677917591706133725379145284532101555109338165991746469754\ 4047569796057446136041506572938510036074097706031047031617724657182459759322386\ 0325144315213186529774767973510956506555081675976328296033128954110209507930014\ 9149346659902222693080604643165661331661272222296497230930351242047372811997349\ 0288423889480938358727428078029102016181349397924376248664094148736940653362980\ 9409890502464431346666701595717633664125055123641118161412486954780933779922916\ 634016839120, -.982667517186816552331673787632914622902177280759746759163061035\ 8380841111723037375144938229852000003929384759556765943210356701245657245090791\ 2851284444027007431880785721809329634580811329517660946993215142779876037523907\ 5093210498690373142985499451642487999854386275799699337405909063047750876021574\ 8114334328686027074260851832310574223620530650433012517590252648209745413631755\ 2077761804541291289583844219058585383370154768618424726639582306580730533930803\ 363504272139535480775527757520193836551795070836778412, -1.17433486204352373621\ 0987428504576987954364736178322443367943616558905867671424445658744148514441448\ 9499575447716820423754817716003128260172853666865151107163492717728860442397513\ 0984718855556456949687308943681697154524515857293735727971005873343114171880560\ 4677227510938542889591621136852305826886612290260843877894405928694144233561478\ 8946741350784456416163525534785834916897791181263122626569865690819677859883429\ 2355504774231738845011473595121626150879888470708584563930307719650565269167510\ 53266119897369786, -1.371240238268662797830864746875585491111980820882039690624\ 8555957562438054961521471445930280143467905850790688838383820490511389231955019\ 4727243562890241405920751042959970837733462704603911576769447580049849266099382\ 3240107125818510473918008282859110852431303286028729144659079948343160680074587\ 3992172360551617077295375640051756020756891965711479519429868621535981414771251\ 1363133900568226017070499924519728335826131591725734138109262397783765122553177\ 23509895819861146276363619823894850437683220918474641008889, -.8438420796448096\ 4021893609017516523689848297622049072065453405414017727435748778950063351067105\ 0101309809292229323354218384707982788204759198723387977670322337635456308603834\ 6482220141089469820808813980133593672777339019171422030293937142201938622888430\ 5336267736720101744180392415508027335343017417926107875060212354915288477366367\ 3424865577464695703961202377195989569273249860847807881226653511049197347691451\ 6374112558508388510670736257772574535401218360287777695589256198957077730795222\ 1177576447682010570953, -1.3216627564751394551359191251527290679678183070358314\ 5212632260109155111735841932414832375041159740482807385668431498913983812572160\ 5285860125006557299869236307210534613917159042087433638578178181026755841270392\ 8242984568526033752990642885380226216057501310237306346179589845916067091348396\ 6514449018107563376472816169011964898798737319812991011422253092078480248497258\ 3026872526159477824583909227491932534219593940765736660934873886842485494948818\ 7090181752961045217338839594943988458696025897062789025959011456, -.92037273774\ 8902612824822371423004192324010286264019868591305053892664194444163908641498398\ 3703439760729636258074294456493009832394062883356405247071599724292855916235795\ 6392976591858018655155836036302910788071047476782280307534580233026641068940105\ 1360404749931772334002720952137409333886700722914420608450292805959823569670779\ 3989531493303027772548069843646572636663012952207624622227424800226057963364853\ 1399632612896198426728443459126619840749292925802918654896729131681220174734901\ 159597112909458867856333097, -1.23951376086470819671781699250967191295363880678\ 1380043305866715455056727814046149543382178956730023402774637175519408766705926\ 4127966630316618397376176009866626151626396042377222859781794209188512399838128\ 6012520946575697599875114924224273443094399568147425967545316062625945284503683\ 6126436292682555793880824924814620699005080540909040435560376364176029786919957\ 4681996991459999885058833571014132963783030232505600153057835900379865920483501\ 173054612603392930793458999017549544553089879559160823966746001561463, -1.07768\ 8908751829930069694984066986788457247561258831778827229682123670726210348211442\ 3771633197898266231575960130389958637711012538477557092417859422623913351364614\ 7793594250487709619605494190224697464245128682148455282951670337759639826639943\ 9019498835070145982283541742229605255196789110142064223729855588933858116452870\ 3565455526309026907310752605281637645265759175233721489251408862078683101919720\ 1184440752087017310102572552047250784254831370115517234808840720054579546100666\ 06447528293729319305841103678149, -.6247132564277136042899683778165717842862467\ 4494944112001601752258722116660230658122531527958931782277605005785818224336052\ 8050383209407826942070512181175911018715975999691531579054082940194156364213139\ 0514010551721146342173227581665705022842759930471570356979426964550312211064921\ 6056091588909779216846380094972097637136449521820246660847829962323448691467923\ 2272631406290616573104908778731245930494327493874386686426571464146215162126089\ 44209928037054692320945014687451923081103131943102238688865693297764297222, .34\ 6166500077982293453984565588374987499987226409467498015340104106211540295616505\ 3132738449172849761650630391704499143846870757953768463702583390749333375171974\ 2911823349269555907092437309256748335835113634336611329391310358784809388823070\ 8533019335779167051623721216703920254889806920705307182128356591399626609321204\ 3345425934523419377280511918855808649456025027680563600246959567080893257183776\ 1203209414400621732384288713088548659355462953433645820346481571833766628372474\ 303334192606032339136095853308256178e-1, -.246112795622776938860848844764537399\ 2844442450624406620067500948915879835892091129068100801584603941274394140143838\ 1909300577678090651327621508044190120553379757122309348908956830400331793180942\ 6112327022521864778852075581532248411002690328998460753113086720615191178908800\ 5307792975907374305704192142075470034790910269501759410983227894228535651005808\ 7391188543639286860261516992508797630993814000362077514306438895320513263339614\ 3729956797054179289129425444132648594838577113089485832036056937176640666505548\ 43, .20772384664893002286899029009647803661098914979022907939313098694291526751\ 1099434235791728322622623781554042416745296071319035126610849423454070681373452\ 4745766095072763492174163304103827020066231041509671048825213793654396874783171\ 3045310365554045902005431109932646481238088722419950033948346924092973964224018\ 6310753265902385087779141801283631797718869934811956066413140927723857083736543\ 5402201612544511987821889735952419904155638699439642857992305582925152944988107\ 6315331690308772318682868369334701474866602], [.96055285970286689719005162909169431452076544597580828176812383555025298992250\ 0646043264652251246891370322767666732612211812721701248896705165146329395786767\ 6093057966600856823415831750108358141814513082798455277367771064290143576222073\ 7876255873506981898590576263026162075131422748834870642682588343865447660480319\ 3917375470086159965758387796682054969673803349290557622644476118145978839215240\ 3479589680648485774219969226933720730144264040769626099661332734007465029877373\ 5283576008249388498820781075605883186705, .594474080377927660787177642585403548\ 9282240519378476887436752648074687409859383933607451751623811626247616837871415\ 0125259141376384933052813858953882511704485915631798471534521243550495534269500\ 4147765754074670038497246728374886675399971173005266177908621139513224660265425\ 1263608035189903692123642041677278725895293696294610210222819049340549955032131\ 6673437430231647111671006580972180680388148958982666624275581245656949926739786\ 3401450077105302783193497473988928331059362435562282924509240137379357702811615\ 56, .42070643542703193377211033980983952945421321996893995812588966802875390682\ 1189227598491772307205912314426275560556743388743536109692649739747420005656006\ 2871915566436019172506543919494537781980065299005814881749795785906764972527270\ 0212617096971756900983095128893681389224286071573884051236600626348275984012598\ 1709618121667445190159059772303905394037273396284353556147227432566885723387815\ 6759882057149162869181863963714970877435656811390846854766869541062580727276917\ 2578031540375922678886484114648708197607166, .833654902378452909115836269023616\ 2008448605065484133934645521096596049487031501468739820775842096539858839345893\ 9272855628536431173729941309493576055200157914073936932037329908055034631292523\ 2076424657509438134151336197896094687848259872257625789968686396762759043989461\ 5116914518213064142173824166315602052732398751556819111967300368181350711602603\ 9878162541602759923391041631317937910003414808777442811461051734719124922240385\ 7233547634276261620109204308835390409411197398534421276239017115922737100463808\ 50487e-1, .94149782651143354092270164573342969569993925099055484840573628408108\ 1420977026994023576152396580838688612148722821359157623013015786485014124447679\ 5696500669506064416877498159663942721243194178847668372143140234941437143990637\ 1195968044253244842705456566789625424192357852881415813736325065519449514882419\ 2104672126950601314474494831628406519922620821666177016807734252280655934613645\ 3001028511355385735950410672587444454763504486762065820237719473083717925447994\ 9154742621524903624763900463208576195697465442563, .719338018928899842419121259\ 1275057531383901546946966263077691949752453104240619166442751193582453265845502\ 8789781466573908748311944102683215032949115725855015997240001761677337986984931\ 3380002933717749421493386876293371410454471675600382103936165599569070088303093\ 6798401209940431952712635157915041587722593965746028558174396976950608385982506\ 9314191539673482710987442934483108787039313108390175156142808473075970115984816\ 8150726433509162098403288920347542439607506006765188972048564317577723631142054\ 88875866227, .30150405620501041398109531030238246891262702604764967002737833642\ 0444095926702949301555482335115564171935708535805285357902982584386547052519272\ 1581021406642411453120652035684290257229073541933724180457657389280557556215439\ 8169123669202810665478752821516735998859651881199318191653069893925833629136174\ 1832403772371499469515258567208939015944916912671869070412306670145334838455404\ 2674432006068014636036866510206990076450742496943402514346917515902319164045594\ 5220882780585087175772139337977531819030433063805729, .100055572225056995557615\ 3295321778424478307119909805826413130829424258164010400896720913883417727110309\ 7995118646861033896121397055356171233013775467182637271989149485562737686340149\ 2953763185058000929723782577383913785644550885186691521173041906290280802601604\ 5898220336467003788479362133423045174796629868871691931924870775295593831077716\ 0227972056007837918422040184216806285672701787511715799294582762575902055744783\ 8546633295305891614215106754104039326688212043381128617530774761477965623551301\ 95392124149456, .92884474757040872178907570762853553273169923080662782706090093\ 4442643534939730476507669952035281140842994548352505618344662254556315755000022\ 3750775541601021315001926009735803683953942595385606709956268039134354369116030\ 2889456412839044335246785490383905886521712921454959599762053508356246318749871\ 4542806415278263024440361868784258299390261243165340086277965246873191172749002\ 0752159312083728465211682338095511534800901474198665826197887622329711254428215\ 1197934436976169192650644860005319303282577465047370392, .804396378334673698152\ 5096824459480849765816459308507527345589366740461788542831625166571191315122561\ 0973611677803893103749713631666994588116428042893633106011383338095847845160305\ 8862679102126674132037701682492754502731221530176056404968222269301147683609718\ 9974866240699158681973966052428038909227209829850198617491014597487495910840055\ 5999869640789861882331599395430725344543226078396980140115542102669518725213467\ 7510767501590240646882428074107917829204006665368703778539060393753444413629394\ 37762001163764007, .56517021055907485644200062124555048059455379272072164312039\ 3709451251496194190036717954222227965768646057824584285263086865612462545475089\ 8255085288967020581924987340218102814757387749182260522086164560935810308601436\ 2644586211278405768157217952685899497801151383032390569128734590359097749165330\ 3402965337415012510717642111017405983447209266473093454407211438351050722591542\ 9468186490770348941685713416911705432925056444126021182925239626551395351635561\ 4388391564015250341247552785008517343752622109408162100210, .449350749584932503\ 5509101653817309596695003658047688652056615483407284200579170886789498289572993\ 1529757916463576440637258977726941877866010797807347668517609299255016655841617\ 7477924426651278084450787358374223166677241250925395116064758817586443163806842\ 1585227739666766819908491689778119632396049534144223439848953880850075516739617\ 5163874143403934713958943419035289698353333452070351925201622377776443321104313\ 1709490134961880966599393105606611172135394235695196749818563061694667382680601\ 19993469468217444000, .22283278934696295617517938188198217058607184315890982222\ 3290132388337101741033822045464544855687000173469100572682496891549392491889683\ 7511141762963462228768858493867786518577644320592752292122601731336374029228448\ 0646501534086451144231874638373705555871442459021635165575012562702960837603532\ 5439666248409761079401030659247258577433031795411823550122636654804014764134717\ 6824966901785157448330427237525239836196261714198514283046510228967023239968626\ 0407696317601548296608320990067087648551316031026441807580547, .111187347237322\ 3518075253066291028535254724574756564324937207139121646873136346547192948956029\ 8876833327185576139623135093508074864878285804153935869740943461119289122797252\ 6738772131959940698356801396359841191570226057392816255991629953919926819655223\ 3032888778004223829998318273919597075714077926836785336630539464188599196261071\ 0373090338014054241126230337795867670814768749527037466692276522476449041585178\ 3734907092909428280365068783066840109288583380673775982846241495965745271434929\ 37829685192170049827370, .91308395359221144068085720276877604488678749463292559\ 6386489192456121830660709182842633859323067874601329153599343308636386307433419\ 5819808552582953978314662659715360447919670463335441903080153588202959803610838\ 2997176811449119188015433275136810258545648573011188053480450455560504043426100\ 2254210862258193405138679379479488759119415570151179293052803319936344468916300\ 5920346340755562734120023884378359771867915829699527267815053786436681409553693\ 1580401647700311145899753984153471799937132980192315655329817904, .638723374164\ 9027389455548781360883660646716577070034202539567584769827764335233832617075790\ 6193602259313656710998396024500133242591294190566217512284338792774059667342815\ 4313682199991989608888030141696638138593324023012461468292604560721442110318821\ 7520400487971903002322073261437952817407018019632452458019276225957226988163608\ 9336000576391791989476346347942055894026210707419043003284027506242643531219717\ 8337447554570747493693774429401479933369956135933811701877741301744968534733129\ 77318739879288005636263490, .37794207672312880415043952751347349944745977525914\ 5811688179356921903584683508465653700773338443618679975222368437075191091752086\ 7460985685495712310386469369408780731228984730802263537444478817917373072259168\ 6767664106258441927817129616072928069063695199478242776341517403964207265116774\ 3985698317082729741259027487618850674308877786618759950909482264382417329684650\ 1241366488501883495690547285085594435411108305957030663097795636999880113392113\ 7897573690363395780278449139809470957570373831337507147403874477389, .125108557\ 8205927268204282327061720827754353120769952793157257750429023347805065646208912\ 5538146227651028552391340304212145601223078439925321064585856615908103030485118\ 9404741776122534669735496107139109626561557530059753145694942215264168577655482\ 0764698646636645730592995975313242346709576110835410044277015676243953888991762\ 7883953945221154407043845182748457443660726590273573507207011586773506268904036\ 4163714325254993602997957522540626276363621303181304029909690577001230052523367\ 74506154909032291346975774317, .86616130517536289326188247456534105247139932192\ 4710934750247872674657422074934976635410069100672420259065330484850218405926136\ 2341218662050654013168587567570911918699859337625684856434579455373547780725109\ 0708279778103065005141165775620884578687747153188005682486424435262055823061682\ 8325461873526320653544562641887949149690918607046804667256899435647665562043823\ 3479626696845201459101887488077231808725685071293839404720158169692966245053632\ 9527795108237087042559648764302590737183064947321488776709823475438293, .166924\ 0827487467789238295107446416034639690912937507553679530435013039528767987868482\ 0954794766474593509799004486300023235096791176212902544116464449586177549000767\ 1789752587796621359810193920956882004884927316771927349823001933195094682892587\ 1552820338439916606607317608232217763436968722416559790170260181749083362953040\ 9256856070665685929197740244652384321943947109418036038582665986770833023902318\ 8532823107676371226962761957726415908509243434394909135511701382128165451518744\ 19856061642735045125210994912631, .82899656337893448638691046918960092000759714\ 3265437230705527146985355596189913504249005790653156912750542665281820943077818\ 1334702115959177907302918240558521121860462038757876050160301948842511974980214\ 1257841143654291565164318995554408213766157092870475893039170279035147961028235\ 3739882537681700707666090811881910494713768044208191070633342740433727729315012\ 9046318486294990356511490337839791111948931254208911421660153461952574379817600\ 8018467241470277903399881664138697784845035555403958177954220133366183541, .612\ 1303965633807726245627845975414632402891114757806782543869451258620400198599138\ 4520081998822868325494509213134891913174474651282105812201479314362966783841547\ 8051203585911612089110455993262082836528507977558170627480837425822040924310447\ 9013185157368557013435212134672132528972900111127702616259739289735827955973535\ 7204920192488080852211229814261021972886859070717303842785870339022066356757201\ 0751120945317686940497974555982734477265873848619157774903897590979300798434909\ 41410929404824590822881401050029243, .40357266874249363590597937894755253057139\ 8308016279645431769561073518882101754845731215435114394726404709179553044487708\ 7990887420775915365120872699144441582222459633992978573810172113154270571045074\ 1558769341754356836592757948701886810579056752468809609145660269305306942297233\ 1628559571294633475956166963985365688680626798954879316845617816256892342682649\ 3432093163299718011062753378069393472196203632620501209183848496295227537747489\ 0039514032698460531847499627299014897403602152008064860692323028035642643083, .\ 2004449781407463863407308538372225246484223312391440361965253521573040141856172\ 3262312723383027788002322843008127484475062226137162498995359323203174477961681\ 7630482246790946945345731778735256403944609818442013382405297368152723215065794\ 0613222147619087496086876037373765413306206124707331448021467074035116553337792\ 3260693609947637841398672655544574869847925873093851696770251206032199946186314\ 6846946723132876232175726116059974224976732195242839647576660070930933380787304\ 71169406873923905695889371127456373663, .77383681445622594528298907533748169986\ 5973720960209078796292319129460763371568681182229717369687118950198604134566363\ 8319311338581536261120041101206549699581653403901440396218228136713429589335861\ 1330902484335963306546042503955173097572628678466380391708897299775104999755135\ 4050304315505453479484138492010067550016656788687092233853581308230038627407568\ 6913229462631510012793676143746127018156128860273355171704904550039843168495853\ 8319795883143886918401407676830231896142066587310882592486705872416157807145309 , .2508696848909122325014531547489845450154666123083457454440935522213347315391\ 0215327412562186751277901592766617688774544769141709347597999604845970907157802\ 5345205753619110612189921235636101909209264328340313835561704378610753772641983\ 0315180395107745304300272927555045871908614957739942554072334971984670670898479\ 4780693241730325991901008920786941781881963022925919971411862686093167262299246\ 4082855007281546512995600840978598647588150911957719649637280880718743901297356\ 01673593391813022505427544139617223812763, .68334871769299664399834980640850883\ 5574172303068171981962555465779708431232103408647618169760290135084236503711622\ 3761739151632543373418562749587415759794956865465255706157399585522377484273000\ 5684370040121794557571832520415278494699533812126243966187845721998325099130851\ 1498030829782956738787821136599478404160452179399040493677275801373932400902319\ 1281224480116701544409899855989016017482573962910331121521733199776158229744905\ 6760316463902996469884402757974196375472502834180849702964938086448777608043149\ 336, .3353978181887154629033148374666816983611059060774386578465238396557942872\ 6095789681891411678565388016598952666080259099787183540164277666776798167605091\ 2535277865074787418753813311542108690680537456949092058132469817903191909470899\ 8954277570424201423309527012220415270456727321340098599663143445783643165019735\ 7138147907514677911363694339891228305968176850073687226860656912172680618949887\ 8713160310671638480910733835948567736235837341319736317930709410356004108134281\ 70752439704279232104167562034073132758202448, .50699674981966719583365987598894\ 3800254126222334497780205555502897746397878468262498260705522381213250868432892\ 3247989591770731262066474081820430277896322520746171760770436644457136663781426\ 4872175254197065703702661914617952410447054144789327349551491239014308034719437\ 2362818543489182810354942458982793390950040440577187753524482787395083413468152\ 9129668470379316906408063522410829895123641958142226042416394911184545387561632\ 4217770250126186419171137191504900867488534772880404218232799144703052989692552\ 727305, 1.057250875375728514571842354895877959024053937569807899612103522478041\ 2665464728491355554805806381034632846649744093816663822638423500803490224455852\ 0780304128184290294548071057564326600014799855874715430132564914026360534526759\ 6544145464990763246578798140439818402697376565206213426582525751806973899051530\ 2189435177273079877256476149807313544558162046966522547540076731870100328835087\ 7008718089527483820663896900475109093648782074850108331355294377375961602987077\ 48958963951177862455985403517859377837704295623, 2.5015674333549756414733724827\ 2754239891627287369153258542720906414120042100627969108118296643015090245442696\ 5299290494935711001567528056783547573807117285937218678518144780031889817325312\ 7528325962026738048195446829391031650602318562259372649462713095022823832599984\ 2583406344437975959442184171365590745512674378330657844122209074587909127015028\ 3319781200810659607157219408592701534081973580738118387967658536782291581103803\ 6168509700750372357029838812172768465511388371742704323318755459763232129830448\ 829865112, 1.700652515768215244929660328023204882959168495796886342906740515255\ 0412996628855737697183502588850306372880029492154071472661726677452490767720774\ 5952898904928266111286974019545755627436394807592982022630303129659537103898636\ 3178962395761461058720387398933281274897897259652518036610138441119079069860755\ 5402725228096231408985562410164605921250244104159186922473459516053779415766327\ 0096209670233881280603225255511012657993787053063626420862953291332727594653060\ 58920147727384484325487591648413670999333033572352, 3.5493404062244352237095899\ 8736281109147108424520090161162405309485815238053994187068389955890884649866620\ 5423187413749821006719780014668237152412621043876747277404930883602763627380014\ 7465877115690785099106716928711025239465823476571563402853376261399948203051242\ 8718535569912808674821182725721713565825972203343725603768758394982372405831905\ 9690611437657178411479626426391829056611558715067149428767400059000837556536411\ 2778296384605771194329597449572000508995634051863274208934409559596658586707039\ 373568562527], [.70776748757536874872446695607649978966863835352736445608105348363710149427432\ 8290225044921344465640459158637898872589993692983364814604272444324432438126068\ 6590528320612177745209678925850543620651013756625175790294156384301874683703588\ 1842883689390568254785567692575610600386851050955807028600771284090511604633075\ 3069937052911874828527466740145336438227060491598836237927767515721482147622126\ 0689432075878590122134906761967719605593338270276741790968204582927215862429242\ 7913619221730505643568731355953103229088, .124503905832672219274715001792421840\ 2163219580626569160613447297988374976205404171871586527455206731412680485860278\ 0865942924058739305769026186662326972769544721537196444069897797215256087015555\ 5304543876493873435195463362582607900589076358896254814659031831904026143322383\ 1977263550444399575917812265947668618654525775002494296307568655027020865574902\ 3492777215896780454222289580076294743825139299257687193327542099093882738803257\ 6804113257990070672543985001628019145064823788462483626240004845909162188453820\ 83, -.2545351137087947937472093670713884763077970923822672641158656024816488584\ 7512271743336998150029377567908959801352510629579385059281078523306861979904440\ 0668731879637217218106277102520772749145230248547968526561502252173624322292054\ 9639085349917112946405614709891845087975780955168538400557490694886740591495473\ 3722618310330658471297428631688208478261114218223928415478216847381946562210752\ 8357266163934286930813457600345164862910265721917167263068894125847178979067106\ 50502870027934143857167861601822003134994712, -1.905954371350861427633078316618\ 9202787630884745914001114228187354846591312832765066059516393398581143408299603\ 5536070600018622422747715097637332395714726215299035211025261794931763325347761\ 7991878699628478769671340907544999086413521686461850258372533970557105367213828\ 0064197676575826560371200740031205516212266349329196181525995914077219568297918\ 8169534918566499619665204231444278421757842693173508007647381756462863971555925\ 3403140961894196182534170686647236908002206609620621506485829640591095136806636\ 9559692, .681313887185433900421489778671992511788244790175487982275037322789571\ 2121843599572323687754029759306288764428140968885003263933433557794319149893528\ 8901284580751167321680272654121606100739852306387028962107133218889034877212094\ 0961084306211748460091465685625054229041091826200337581506336456256138546466885\ 4573711400652047828747258989061437578876864877621121070665045474556524058457333\ 3342980955857454743963981868312332840154507084790055647645461383847309399359621\ 359859993072074428473598117394095667498515290084, .3455691756953906981525023336\ 1925355937552695677737280217412664795667922976172100816864946929535560941388945\ 6401738349851211762415472369866153628615495272950369501681782379879231887372413\ 5927102786908494216242124587641125280070515360654142473706029923937605922315994\ 9476137988139013882274256209281961676102532162566038352737376952286749285636266\ 1875044379605665047123562503843804979948375050453317658967726558587313970611439\ 4112774777806993122802289279562076876304901950783043898158870046682326424333205\ 0033648458, -.60417259547083629844923221183932189251275269828629145518590214664\ 6183443191948848540065208802474787373801080414893148596383588705187100567056766\ 3446483210346748411239174251784841362437462339145926197041176766422584809950027\ 8095961935267999718105394669970115793882832482322151585163464548966241171727484\ 5258255284730615987900063550415743225780259760387415666081136442101409954445244\ 9169108960283277084981372015133439603017877949120364278405667162276644998748276\ 4676269681408334898394576751306334721409230124608655, -1.7228683861943336705232\ 9832875965309667120232966336539217567960618228696132173584895012817028793869339\ 0731877956270734476821348786401752067919597722233920166056346758132836457053355\ 6952129528225072682686131545693359365188049374118150159982116228861809365124473\ 6215558044162775828659440342238123809018290538765053343873400603761597285497076\ 6679512226133466937725497017454896388588169463356702881273225840186233609314905\ 7905942298206084353518186520190291389718091700010301311305929984136407301905975\ 119103432981213, .6635819668875960691419248578461590254081615250496524165600053\ 9819135906631927173950856087811399795349035686182644323397451732364663375849427\ 9357390178077374188980926325141795074823043744865721835020298829322326094023007\ 5561751376789214104096897027303146328662410494259609529757296307384061037385127\ 2796308948953684967114293749249426496284289740594584341231995211974563244572881\ 6469430675228277714309372224386309518022765803473854290686454229456302231579415\ 29499797757820565023379524236459097239865554420431884136, .48099944911855337848\ 1863451612668164657853964477309122526400287615753562038720613870068279377946572\ 4662286549899141313401943647317630242822557579623609928308482358724340591390125\ 6364665748715444301378429175117595108866246080951085195040009931588014580981767\ 3561862521373830683184244793509263178469088744161591906061317362169325175386540\ 8299916963819508493028635763332662015972050130805528908466095394829812788910274\ 6317913981428365351625932810767821478202434319089167757685021861363555985736739\ 724050158023518718, .6758861816972440015366988438400032804274364286183793560233\ 7159702001794240330606776427289016734912263020656037551673003852792970650950077\ 2954367581762137957251716695281991245259857539573634759364943191005946218783850\ 8754324796498498796586294640748577202213406555196456071202720955432671297928567\ 1154902131220466693245767413221632007156671714354603155201512472699925493844585\ 2867897834627003234974977727774892394889781716730445223204858697181258299887359\ 68742571268144633089979434386270887538058695718872611556822e-1, -.1839236043218\ 3473213204189196198163243420489102773944078237518632015995375282564705572198002\ 0370662304586166610567412635461789867254854408624411378156006865187482139786844\ 1494847415374453270281327266218230788183990565930592518444744603138409263248180\ 7697650620578854704145822240785203430431407975798791165052393793341315324678729\ 6042457126599958390830040153013309689014555123441710335091912595728897329024134\ 7166470590461517449752150032949166819588245105443483173516909622464937130858127\ 1308433827011388665808618, -.91449062233555007945752785129605669094819974889399\ 8933261627103662660704721680373746925161676947397855948659034414391296154713104\ 4765632020898110832842842645540989177538934684818837253648266448066814938939104\ 9797642985787633931186911978337726389256422449338681808472102401737683381375233\ 5414767373477824170566868664439253404657376545439789180800952087034935107313214\ 4552430704661352665095984090293429830582783036952062874872011345567543036530232\ 4065605623022961116362277195210908515748952562033439952548819145950, -1.6169209\ 0458147278870000329160575232725237184942767503742299123865097405338321780459479\ 8488389133397136391669990948991540280689271510935089439332856575369528512325710\ 7466178908582221791429459671754839467530232357192441974001619439589397760727599\ 9290674464472916479930516416237319451049127460735059146588322910348055495185994\ 3811161153491407405964372182041706204369994753220683767887905593289779570671956\ 2867416860762786085525983247883210874722284143964697037656485957337365758892984\ 279388904324505212716098696022, .6413015413793938118923070328865497477467458618\ 9557846843770880731703967166989571734073602496197020840656117879319995389256202\ 9036398612612261711484700403992428332512956875718296027865955807584902062207183\ 4541056806931640724808541195268160168718790863526795069515291532018040857686618\ 0771694004134109065653953620485698000837100075896843924025930506008650723849461\ 4986676581414887062902178536455662936834705482231413768208013018816996642058805\ 09173007527557573103771525928915294331252906491154627454217190478882905, .20647\ 1612654654269959674741254302621745237075084654887003625525442501359190393403664\ 8558668297902369071721513737775311047320788491508077977154742655025730063864298\ 6638594452382830848972230136855868496438314954771392643947071179356135598994835\ 1866086256623891513509384540012712152931356653117907413295299009640647789353934\ 0698977347091085456426706670090775727791054719912702788662741823617120500098946\ 3339133033109036720812160365273690939640151756473972567751534063077996487657913\ 015719223089024439859056848970770, -.368250699513786804667395488270347348086351\ 2733582252067521472248837740123567203403905875914505563308848963952816714707525\ 5773796753802073986954667851252143851544474223217932606435735041034776725982516\ 8922636800437044123747826349099343206292503887688761126090308677677093581687402\ 2383118501853994183357737587410567144327657379235959265874957752926135531460586\ 1982170978494520048700356883550246198175868594065434754053918892289474213789236\ 363336083894917736063201206376738938138663004669349719666906251213300731005, -1\ .498317082763576064635878691918236790857670745295100086476946797256667174339176\ 9404795293097583134737340006036784932142941621821060730055609091117213197582491\ 7179701408865290088223653840776523841679792198483422658185346076309525751786407\ 9084220475176696286624439021726941485507654346571199259217236248903940840806510\ 9046538290349540233245885050872024367759328868941232630109365077661489311548441\ 9733119505907554654274125032079961887054011420511495004230398392213701655572683\ 61169698167993791866154288058911045150, .57360693702598581372864271344688979428\ 6266353069367678502065325755881862094419410885169292334077770737053370514031742\ 4062362796138693283962197447366271894627775157289391865863307090946087491537812\ 9176045364883978437693234831231372439576503872092617983164389378807906057181260\ 4617591184596724328668328101433300321582446179978850690324041946023367414779438\ 4314850705466891263728259642349587836361911322424832728018289477957915398460488\ 8652992650788889340347520131062375759730373901810924294359652472138434615449545 , -1.20759131736733962624957447968383389900224280235914466181730717542206166563\ 7234023727338507700237519948018344824028343622759455699304868926738138480532803\ 2843390370071247467714918739179468114135080209998974094638930765543206607248575\ 9486685737054611486139423404367629572089518282815421495075829741956287393291876\ 8137271278153931855057712681100571526383505580233362720778148772946668616219507\ 4649506128885293001551094830920550408793098080787468233053258552207804440803406\ 131331336312860369304610914883456454521560, .5183999848333914517320859141139820\ 1462289818249308154481395612418201400594309232550119997206795088120718430150591\ 3099995957245173042381045978242372408525694008480253553612621522340489110321857\ 6093993084900493971038885478122928830065685434566407767342394870582966189779076\ 1373975827991783657902020676672038739661394009565511338482953092683982529602312\ 8765079689803783837536504896373301836455772364216121560850130519502043882121061\ 0822329097087478087880117625059389420964723372730089076868110821650190727095298\ 6805, .157750893373978664468574545660309784647308498993196428273825656333113012\ 1185055902566014996136515138969473588679606388826424888235123195598622615402981\ 6786740465289245826142649771402564508389934590374004235503728453551898391489453\ 8426036097398218619786873602549310392085677291193869068799483098816914867121171\ 9919055641248472995748315508757345338801415341262151382659937071722955369477209\ 8553434979920806913199021332104893391125050198199120382823058084119450242522845\ 514772319906917058552820844292631456795880198, -.298807450123168842677049615064\ 0922679198149225046883072831717678050094580874435699952858729356900906197075886\ 3869113241681212115612888226351314200680387843458018476476990642810495205738826\ 0788639751196361303502297345989844586294440489466315481439105229242021952225668\ 0270302322546619470891383082417989506206467142804836012897488567275413037185559\ 0036904001930920235101418648651841144166764657155597429673249541954323622157101\ 8275870046343184537977641358336086823482562408894485017565473549556793255275819\ 02094918, -1.022205566043146701994041723737200249411163668070784823364855556145\ 1252137343323560442345268567557164005910460722322152440941400802228906719542850\ 5276448375644091445521552582828381378743333504742002502439601160905463918625032\ 7219641465886895646981840212365898937950177808582862592506717689152815676229727\ 3197648717804087324686204895283941690731429592535423521543695387418401502149592\ 8242997635549415209112769325017013501380910723959431512839343588111681519084244\ 91373382642835139198159862307128012323443533953012, .43349600154499593747645330\ 6657837074676163859481549084291791655125109024480104641905071848238287573466199\ 6527493805386124522980917809001328279736941980366078105957311351591399464919361\ 7119470405415685247076967092684813281463170978207715284999926875802838653564332\ 7149717129935968178443947684059308099101623631006320914442132578042141667200521\ 6913075883251482531558200757840795055147288103662382345078855062251128558879061\ 9852475651522759312489826754030986038340387388961146649245470879680171868493454\ 536344421587, -.793412949552825962034985006483297706876061762436456973191046915\ 7066336165931008451130284146289795322580496368482866867520407681502813854526095\ 5440486658248188193823098067918474942503060749354248438199678854447221619283425\ 8805597784194425807706004583101190807713189673052775966934747945335423115992390\ 6864960588485699658662626264999925513156909558516581183830939361313911515546545\ 4135258360498894446047604705679437239675679714424405529621262206198392321467207\ 802715368311885697508067988371900133083793812743830565, .2849397246227166602117\ 9593807039293152953416314258845567622781465146521888229269043990165053666667708\ 0901122608147129662777651677636061019240997964286970506859316499687267338405989\ 8368169043526878567626950252181258107611151223225838342245043138822959379295435\ 2468374652083833801179197402039933071706158937304172109423338462463789473378487\ 5749667332311337431566650583869410785145914435428314623012661147608827809166180\ 8243572284878836333330985487253477967138132939688954592882307338586614181344007\ 1054532166615844, -.49348992715987117321689214369679398428389515883195807538074\ 9751682491204869569347657217443032448067648332245952455231452817512046696919137\ 6936904077171567340260964926971862871371671710262106889252504306437413972125520\ 3307893948228766033760143007758099903281486128161509762493351929372566638439347\ 1733585542641579938843514359046111326085963269033907759884284446093925547476377\ 2652421516060671196234797959977353311671823280132533668409619098905506624455875\ 2847827908550014878048640247906383054367999686417993386606, -.52776844956493615\ 9131360633261414349727206679818557350427377162095935009518060063620810469509438\ 9929175175543658204476467168700839548229179049613745787811642737587138974991003\ 5988145237233039491309287736426857988702205585628801526821095052954811833441264\ 5809685745739730171280464003044005807501042800002339873604297291681622456318944\ 7762571664054112302537605239683234946446755905658131973190707220670574354795637\ 6121341752773119494001297008412704344889019975158932925716354954309868686842987\ 762292786719038511828e-1, .8378669409802082408946785794357563099930066441628996\ 9203412490940447256798733130441334522954550085350852643034353527207620588532181\ 2984339065741097331025628350495642149746844682838126212018461377612794241980636\ 3154980198828992715746573916470834191080905059844786163934139076840956727554933\ 3994002589277871926181506748157879597939375880710938719020963406618396147330830\ 1963600486371238506719851624356488600117738403396137305754876118340559894405802\ 95295265167940482397958137056413124967402004367487381475811980844, 2.4526669226\ 4691452190613264749949287660178068872850946909988619042950749229212749980191400\ 5422699260687087231858794155809617526656140987878974093674689225280692590690513\ 2997047666697864509935497162499588215124931489579047769367940228454510924740161\ 2519360382958686673265346687171345303684571329085518528459121677601935584884726\ 5944683424112325957658963307015174652574048430148060305593297688881806043523997\ 9772023140900439828543226194840944641237440793440321913662909293877587250891683\ 937556370136177769298315072, 1.600632933361582593027750988111537904697438489656\ 5357578561734548903213832387121350275200567027993580379755014196331816501057315\ 4812963600172532545312179726530221060090505892192939716042242696945627136030843\ 2711877117345962445787549838676090561933316248516295682795783422013300304299572\ 9724424152159860005562262452579070035854753401804980269825097236236897867655517\ 9086755651575134366385774489477499424816223330650749791918141653054343455620962\ 05297620707346345688659822961180145838659049271621184783335867362324, 3.5244254\ 8835416548821396197508820145552523586048947423461211855036158625802015638599243\ 7958479384808405822261258401005087727931094595539938699697372242454997802286706\ 2788976399698462928314275260543797877665560119858058767467158216045087527354026\ 9776848199964185683194924846563215850012294233548023775501793143096066922530890\ 6861865142454747427817717272311981529897182095846331119941059685927420431313119\ 5819757186186202747292162848370775258608642459969130641142916401683384603171291\ 790677983749814475127728546392], [17.810590740587331565669081434085276186209242769827757641140428709406960744291\ 0700983672476342820395358526760509020950187334314939662661178031778913400874514\ 5729763543026755857224981757985868170957968819690549965674561721678982945928446\ 2420763919368941106760933617841920952471439240322982105938653465315261336061112\ 9031080515885191741305230625830332850951601625889901942556723662705496139211736\ 8456261584173533273993535409622786214014463103681209812095549800205262804863515\ 7044608906324392926878831471712318967475, 6.25008906842049818661513897084275020\ 2113244299955426238734013862471447180353626540337587403814422593620756595714567\ 8371167661603859592788031307836055820892111358476940379720773209439037467617401\ 8925520493291572480650472037382697739026987988369019260664563804528851114165826\ 7514618449740393348015055471551933870345963066222899844912246176797913790076738\ 5486553491227134322767604480771662906876706052024075192455973558486760405368231\ 5960234730160770490805618649790386293051786978582033213206076507038536573741771\ 33, 3.7024580577100972773598529635749109720703572897585207078909380213829311270\ 3078160153826594282001412958780907747541256938246280095485690222311866385028770\ 4840026938864502195195844408820411312581537030615818493269057105035080012122440\ 6341680641202063036932988000029253075296641759019641087548127369086187905068403\ 2291147251127616450266101325236689626033990826422847973278580767425318223613592\ 1999104833786934698985880551493526382704825492069783229050856146843408942696611\ 3961493331786924604467774238671026643406134, 1.29926586769778132296996179512929\ 2102687568754779640697740006558418875153530321729780277089462544206248874349338\ 4293479096229429885288140185620800581883376990108580214511361562804633640047585\ 1389598041288976640002713140432527401808936424433319718120734279049113365240438\ 6383394800887786847391553689815313448013931325766631300426428670424579285208794\ 8664382735411463470239658451302008802752082703519121064691195715816678800550950\ 0942816500553770708489905730470787658338258142786858299639158416988177558137301\ 31265, 16.902024171711546019933931891770964858371222715013081476604697687109583\ 5209176280037129787965991232563775959839110170071102345507552982254576193008562\ 3850149347516139391205826376448065989342535467502082958092165879830686259540816\ 4258823455767155658938926783854612670504651618256282235337918464231383153773343\ 8452654514204810827671656325028837183949087016666689245336667694790540019106245\ 4375492957631393845803977129079821269000156816699695716911869018937121256613345\ 5154177912101599014646111343848243229706810990, 9.01702861094207824232692006789\ 7001695943958644527679412774308687729275290322850939338368741965660597028077843\ 4802829540326912766756737920082125780506309249153338072620136156966546243963686\ 9873678389294986299159239072774469872956867608163050178656115007427540988108222\ 5061469716322886601550425902898783509002574509155407257097445228459878758869974\ 6770385334433189296649047701661801865773817554753368620371051677950359994275585\ 5074649841760386290545579252794494242341765345692921125350708485554979221752795\ 31627411, 2.5663323952081353209352600090969472088832941602251160381708458832704\ 2459921644740467671781926107872019078139373730569957289195494822596536066673989\ 2182107230180042460818278822919370276617882569139913536181335876854811576284719\ 7406666546145805209836699365341591394487562800871901265451493899146695265923820\ 9216417050506340141507364756362178163703833146119386363128844809657606834292889\ 8589539445655214716917690611074732946465590499936667154267059682073474580584185\ 8270857213687683905416219335895758866299440378684, 1.36910777062484688483648708\ 0320162325905825160699984421502686023570833198901104765091004691127857873126619\ 3313694754543961056378148776324257923926555049800707278784009884565157066500816\ 7252715856181525585089077587822023572172353073206352402779511447260799289666553\ 2700550866341939248543922008585741955805695288761068633500056122764383405824768\ 7769596928192693075442155475597530614379906023219634386628690781172677545102155\ 7693466695209643070703486285163400455575108496919974207977906882986752314999498\ 45020195007, 16.322210753372983311920263509489513538388537355156303051269865715\ 5823646143376450118395123031517229702657298262915665169887252742454036711520231\ 1133855062999350608936373170497863420337177940298787727397995235763924807968829\ 1205000099214924904797429965750890991519384166164292951872907018755721261873561\ 0687880636950118995438305137094576148661640844026872418767990141055647474601776\ 7243655306012787781795471376458756166276644162812349819141433844076465713413835\ 7649596035873015291432683688705287040992247861566583, 11.5128171876818812177368\ 5710463400350297866989846808412193319964756633151253108401764645736791464273154\ 1622044330973507298421912264142703119760037313333553643318835289527286839083973\ 8588946745117270555817998085487796780947838802596748582492006358105765158873443\ 6753306294350369658972485044550170476290008599335182241627471350999624430421653\ 8640438504274460855787475471334501541718864480131743161893893719396478353311112\ 2738799423090563466671531831781613972126762653771059617850729726379896666498291\ 39001482341642, 5.7277870502990333161544260439171442774872955805384905120704057\ 0970056468764394375210459952956740094214527351616426195828545217674491412218563\ 1450293588356347478596710269429190526046009939987261947789334931286726565859008\ 9357738856107354190472117106990932470307921387966616337655517353760870848074610\ 4366558995884220477654322246099807751776180496688738167981219519468773025261682\ 3721968546229944498487703736109941511428472475636249476410931248395341415867953\ 8441092661584624008447866168377831024233053477068824404, 4.04007558758162138818\ 6911176012737793252470630749948936297554177504369846992980185595356761902478111\ 9271219359475325495789278818213142751194396383831303590861017208257626974805712\ 8202420766726144804611187650144842558223848439406438986229281190329521536933318\ 3436894400844173521436901815208988625479676237909042280780559794936088599398176\ 6984968265630073239337078232694764733473809796861132769482571266067648842712737\ 2157801071775835621749679203419459469494483279391325126870390542018378207871409\ 56077661800930118, 2.0099939272499360932458287783935553590741627043759382808805\ 5986066760512248477176013841382326456704308712355220484320329301126863063002263\ 8087367876550727634724927277105426500271400896910897523693609214608977308636802\ 9827552245661403260983901571735483215821720067020996833329585861212572224842889\ 9299738071419867848852746598900365595989446721254192701785194312257396543162921\ 7843289376357627207369630474017541148337106008139062181088299296575509205967133\ 6675756054906845432647861569461917531621507025908535211982, 1.41774254618034796\ 8908772308404729167187372798949467436966924068772942109907440626230527922527435\ 2819232764649701951802368686229682966086760438347575735193097363963805550626815\ 5944406115380303881007254395002093001191169052888556300633874791306869930097452\ 3303465770602112152620331267862610155865567401617571013034547040375009862318027\ 3262290017575525960422020689916640859047356793094970445059424957339533896687218\ 9427122914205621759689510085277615168054777027949762828062707021095691249707141\ 79078364361040628355, 15.625334007766842902943637796954651371666872223802157753\ 9207362551788161552123034838858243202103753012611103150000316107850636378615834\ 6354089179862736582702163430560114134946696989533733972931281088764280132516181\ 5919275642305729278751023719243382554327480495074073860059284698167123313652331\ 2493611112881816980881388129588642625865649245354208003103460844088069762737659\ 9148516996333623847486140917595271600837815326950926733254819981945799353757537\ 0998534443816632381248213988522964027185770100313750077963940, 7.12418553321956\ 4854031337486754739135332695755598013215875424639268719654171452447217659722256\ 9424251998571029835116934500860050108060887174876078176763470917717305599645313\ 5175581999686408826614624464731431748550567585400903614230769378847368978287737\ 4948632043484027683843001239982574719433111571252477774815280238536698210018233\ 6108446419040029348900752983864121553906731088184032497098764437883417020039308\ 5745125537939624719540794933647076219426506999459411388137729393500348316425549\ 13703361366949972711559, 3.2481878138737239877704814602479627673196337739177236\ 3739701412382001433651348533803338362802691273670629029336352473620624092679534\ 0883626025494638483372461674774913013001356199800223107916376216091373350037132\ 4479477842831799417574274482723446722882973982493611053561107661090558105118274\ 0958089970595052250092144321184888384445173774568509364841060878007114685036034\ 8353271099385582565207672769261168569249075163110501336100514719325499222410201\ 9480646089445940126736232965305641185918904461982825278791060425, 1.48097267048\ 9909971235241592730750047757757711232196091261162589518227393344380561338219034\ 6114369902186690391922545015367960824540288354457188527468046054437624809074472\ 0224156146406194222405437554861067553399819370170146187048326399931225910529273\ 9704057340957398690610185694164031091149352991685005250407126742109343940027298\ 4986720803405274829359426621165403796315702883841111038845115207198047655648012\ 9373050802274599233385871509322483197527269190291772805779408576629958719968313\ 45916485158197942304265225, 13.708195669102426021133740729960389251438535725633\ 0508892655242497400678731744767652332200744678045624310399040106128041028104701\ 9941591207003199712056548667422269007428054692957577105508583191634863100902045\ 9391184152514616725972827296457750946778701622167797286076297064160888746882847\ 4426964500979062840728668544065899780724329716817156539829950086304287268344864\ 1581711491340869216295096561305298859059017394273552337076355242168578736396357\ 3559785773142649418045640628869972006303256698024029627400955762218, 1.68809179\ 4964468600616847628096782294119681189287182312568405607888943393169662802042323\ 4809596758606002075732350767661846972333214553045426428105530266679489878348517\ 3072014561930680447644149236044411327344471867849749401768701900026197092769277\ 1566594688377784891970107249175259066125036981132703332327087235267658776513882\ 7307335701287602986767187898612101778011815381301236580162842528351009663097044\ 9755971954583926586433979679822031316312931396087619835479471802453296747571884\ 32697885240980509291032483184, 12.345283939187368579546362975259193426256726581\ 3616420206703594499365345784811868600717152705842279418626802403928333758958196\ 3551001559600868258721819412603662985471563819252098037305805037379058277360072\ 7022489406948041774160890660194165104599301749210739731625152901213983905659968\ 1418570445383870474901260584566130107220150956147467728268300176587066681615302\ 5300366085832501729517466305130077039534728035804393968291723365316855049120919\ 1737805289213773331117812251345037976796441849074833059093311779940748, 6.58606\ 1962694724858363079230007804318951962476704155884083796180656040839823153328750\ 0282980427217498411071739029969408216623088470133215997238312109468133976466533\ 2945099111801739971658248596571818409059645192436652031909798345531311936715123\ 3985997687707652197019996792654432829116602111666603908159457274064732928041116\ 7890834357732396645378779785994192430009914534518681224591028562748064601950362\ 7682958019070698684002287165340994288651234336379059754971159989024066176687119\ 96519550955472874540471695707036, 3.5135856242857336377046719245603403449272726\ 0695757272677952119431817535849683496624934111323145043912002875339312056218900\ 9177030068998171868898324755129496361509896358155471004482220284457280257161452\ 7379578390025523112864043275388527038814529182971153409584819457514506833761854\ 1313483284637052253143603452784121665252652416673249489371962427136192428493221\ 4237458681595592897263881411067985649284270843060823492185923639292059624419202\ 0313575636766061251033618024623711633003008539490586430541040868956732203, 1.87\ 4456087585338350570292911831758804106207970527138977289382072989802929279559935\ 6629210079434414620208350250888426918497694598694477014817220387046082078598741\ 2107713255717244788134006407925331320804179919389005090598186113074999328553339\ 7628510261880881352783179243481097931084329106254344304054780378163418099491405\ 6705840534531938459923649777888396189884719116494538630459992886401070403267761\ 2874408448092946871969004908365336046340227104748101242679952525970919894782196\ 14683503389222609186587666761511680, 10.550724074197762187767071447445305674079\ 2839560914548460861538195870962061685093631922422662704931768232808403596735978\ 8723117073772893292735422878196418119438021010995586037662304805863522965879510\ 3613608189832654967845540356659757625793067372278142025055551170663393756433995\ 8756360042145315962535654974965109957293562725817194675924411006843254731149224\ 0637764448364093530164912465673044582133059536845011691152856837904999770223172\ 8462111524935707067767456410411659577159014272014342650457349352499459380426, 2\ .193280050738015456559769659278738223461637641994272334858015918657026864189236\ 9341265228125781694047116775935790761569464704160085076260537732149882576637180\ 5297571380456597872724776767447618755312959355253056561219419383257719330748060\ 8531368213896175659876651096643655309151205704535660983653961655334645906437350\ 2076478360495913617354215297823304378002288296230580232637860784233742745735702\ 0228851998090606055172733941014928641401698296517535223686501181796676474576267\ 18601024618354031140185283877957644242, 8.1205273966697763158469976193555193318\ 2560243651421445456668586125406271715689908059143380305317719560738533986513982\ 7608224554333679551101517237861287082861854343801381589798266145053450190864771\ 0068408038664495884144209329670388115705382687936329520916634355221771499645221\ 5282208266479274407035059289063872623732572568900684824534551031597097072863813\ 6998806575611121774573954194614854541146187680981215385063826214255518332955740\ 5710407725160906451622637387208006861505354198074878846576354035361923795838659 , 2.849653908226361497474127319852904393964006102781126881743238778488142449158\ 8414505473445627710170814932669577311240859324016096305554109794635716295852887\ 0452125782902323692091142460827682599389784502740412890525469278526026814138091\ 7523812655765083705607947918254602127751487189295057126617262169281941765438051\ 3286143471126616534605399379564289218135605236209298710033098898082997269642969\ 5583239844971014578002850384673056260133028822148235427546584585537764071644338\ 26122260690775322104346943882016589098106, 4.8104773809653516554730356667038331\ 2639017087466453494002081548924255190489158213674870476658388335465728222273569\ 9129262203345720646343985585553351918089396097039208105557402007374103290808219\ 8668677001351782623072957297201294643477292261336815533847457046873916852261906\ 7207686523388345817255158591332841270606272978016703421543178887929109347693412\ 7957302596524182122321215948425946912427889132786570777382757278000229667470193\ 4325914064203960978313839892710672207820164063071314195032466718018666096596929\ 899, 23.14069263277926900572908636794854738026610624260021199344504640952434235\ 0690452783516971997067549219675952704801087773144428044414693835844717445879609\ 8493653279658636692422302689910137417646844014103951838684772430680595881624498\ 4449143096677841367163196341478403821651128763773147034735383316282129404789193\ 6224820221006032065443362736557271823744989618858059591684872645479013397834026\ 5951014996437924229681607995653814235362069576007705904608998830022543048712117\ 91300849327379580729427301931042601691939325, 535.49165552476473650304932958904\ 7181477805797603294915507205255037314494543966272136091538983046188598804021848\ 5573387698851791096279769587619259487194269193486568691145480257360416654582287\ 2943796859080378191592667722286802591785926938536435550565024085668644305206199\ 5543399464113468133319773595022948044707849541213336884308242164390499469754501\ 0242222532429021928740244892870341706799050392354817940592662043697278371125395\ 0986207218145802502324584104897524834815010865050773621367591095935242469659838\ 120970, 111.3177784898562260268410079329888431712466750718968363384165223467298\ 6863717281919483410991813068831099789244052239888078406537148933111184070187359\ 6671349544462336260416938211088849370519311582780813947134680920192194269217374\ 4463238752247534040392031837876863266309346147059808496626782778812906205125458\ 4936916760288128173466915373365297519499174903008419935726479651162391618444969\ 2922878171342199750602260350611870349851594982405006889472353947088942096876067\ 02715863537662957247654378462194019269411211222, 2575.9704965975705509224072851\ 6663017780604496108836683604556917337314170400554225082864667986827851042729418\ 5971388231502652331020907203415787112601477026060865805152388703511846195713544\ 8577810162090309231196152403428819258855145667534255615421807741280707038464530\ 8048858815150665065959574292058748168460755852773355276696146484360675036395827\ 6470720957909065922399346957042661512243233799108286079704479031835139190448628\ 6157460678836926336381263169868961794738635740090805944406850695229819734409843\ 761858707], [2.8557534927653378816773601265353034050998690355926317945930723382407066488760\ 5932330874943773573729746235414463651231776385071496033539162851577925362945413\ 3805820599807117203858602379351549259897210455426063341844877748980007878310304\ 3415222072651187408174705963174165000382153116960800862889844689491051602860751\ 8110931442006643827352716204518886421590441159649714578810866970118647858609786\ 9271131154376228442567724367212910293458661912710389058910537465833418714032680\ 4998237854016978803698932312693949958052, 1.94986297344582003845683308549349432\ 2165112603431260743812724441072826828604830442084187940972682836587680778552262\ 1469731189210822173374000284311516911179490201607175543862897346661966182369314\ 3284833003672918690821508306219748795431322629307526145823877083981983121959970\ 3892353933486936772958604484412740805583325739581770110681177572652625845249697\ 7255824287024887180613412468585940179087525448548089947614706304858681485627255\ 5748030458112499678494772245914902273779890246070163386674880838170156535539628\ 24, 1.6111863737983264259538037031472005774586154285848651936208771350018684704\ 2639826608041646759820106430397709808109907409207977805242674404607560655347444\ 7762454803906601704371916927085495075596644996849103239661950502950638099577703\ 9955360550302750209337977560770378054440225598976958934671261206845781452827685\ 7805945909416704801251590808770260348252170470141573689691649345885143678331836\ 3577679880187870702102089662172054217385027079847833909103409120666206697733466\ 5374014666810082631412907941109340019290549, 1.10009237896358698298222864697784\ 0315032774593094980178085477794939728100830289752989336004508610435657160164733\ 8560097381562236331760387985324988498150656993006322760350159830646612093029161\ 3740645510474708972164707302437502015329750522240019495249217467148473568665980\ 6886581697801840717183604784777850874448397437668287449603389324846023750583990\ 4330004423973714225796827574090958441153567443816422053306496332268911245436280\ 1259945274659624487595271758622762475233415852869057875097457172627450104650546\ 89726, 2.8017855132873584134969773927559365878522159594601176221853752507600804\ 6719896242875660060905422395437353833729143400890719384200351303479705537771701\ 8488175059886284081636649625916154906929987201460736758116854152246739834240336\ 0588300454102156035224916386938440207687501211899130920379208979824559730504767\ 2383555273790141121156553493310475880531017988639486146783810002240333426990754\ 8808313809905186951536755482834992260857455569627828326990324660643706674751548\ 3036243533816214406857243503392944148552433761, 2.22846034796167424731415201180\ 5879711657329757203204355099628967889482503648313322966873441578384276645194816\ 5161624365261306871426253167553893994889036169229927202371827113047707879621225\ 0268150330552011439517124953394282550351261185726317072378743905635684227970613\ 6332116048722770219016399524086717707092813868793040066767929125884582537226516\ 0521413862068427079436892455461266540172202384753209809105572256441205038270247\ 0645741528282513619183045942297113911639281077120545951337706562762811439403450\ 92866388, 1.4097592790750537168360032434417167110429604855352486770144147898490\ 6966693741036107339317134561886417772303190652306491834083383076821808255340878\ 4383715312034819156699755220546831985423040932036988747508020738323986084508408\ 4478547713167263439457850649628052626879210614337179446730054630011540095936218\ 2092542152817364535542906966512765693527659042696926057534825966968614700090118\ 2614957833791274014619320682367885929115674617314446015624395561871328497058866\ 4251024467189832874743346841725734210057299300197, 1.12128235323186329872203095\ 5220155209342693812966560438246997587623772641536790465287215532897248056756503\ 2399191110510316392836210000168761710149337601750742851088388129083416855969038\ 1848769547607857676196909954414116813348506398447294164189410114973749220646903\ 7171502316483928699987084359826313473210529132828328297499719598245815501401310\ 1619378563730903778158858890597077212838037292199383310555040414246183594652891\ 4891258896290246985129576945787751183671839882672373209557785603960494534766917\ 03116189682, 2.7663746608981577112409523595220349656442928879019122386135933260\ 3086885733019052670207763062960471370798130461390094791082400135345607679885131\ 7466457818898405085472557297394372048598103624239130945989829647397530862508915\ 7981922006558100570889381399740694305552805297257148868833190639882312767156318\ 0485375816024611932170467008438187563931542356226414896230489602953375137620937\ 4343933953521782997717081693265112261073266320274489439824070970244790750697239\ 4436029243694647893127709951667063208578712416967676, 2.43597105299911006978606\ 5981372012428555662663926717738005476370298544321729558253694928014434822416642\ 9532558348898124946556781699560629731794828938799847024475435607572805796430847\ 0747665756471917961745471082925604986190325953995001166129107452995089816616602\ 6241931517419477569124283742411006155685166727865538162292781826714256331304879\ 2759655122910240622554873909790137480055459024453621741203143961528449846493916\ 4311553903737968647913378732896833451266051288397892271914870704261704156945706\ 18708028042476, 1.8888365314545348555429720675208447385106620791300554679859564\ 9676278075010951384027049454527845394365699283628295108415993984067000031172796\ 0179277061290754087506090553080287057675841643650937766989332242125696008529643\ 9844983760313724344825409575676570546948681791664237526349996002593179006962053\ 4844156051670191728568422318585946598126399603657141290045367549290935238629619\ 1744577387546141186129477918634526014624272945773797517517358814973913073964258\ 1620524632445827941410351418858552784446825793182581884, 1.66324221353901359884\ 2087799928072115132431538746728251444664039471074393884609837165710305348254138\ 9429282417185530537712785771212099943524458994595563569085126287544069557193190\ 5855572880059000515778707736662254637988472919335358955041303870408393126515256\ 6907532486301207819662773414976886749415292277290688553826286276830212767450918\ 5431819229350678804541989566035358299622057567359090860402629348955357125796057\ 7000177456773847072285011644081322262278555396971165036712860091830541906473301\ 39868438529337048, 1.2896674817715664179202379464609470272473173277445922656534\ 0439218337230880438473508346100517030244713772365206703975239180414375579209423\ 9475252879229226297567490764264372126617624737717677983208990554857168157772505\ 3617009985663817536605411965827536530559301818409631431565125290431641642111325\ 0893545291437475874897236064003216414685280743842793174398129749714400225981128\ 6173651911303423785090962025326434487609526016577468720984660918712914836261422\ 9428825046764771092463378111782800253482894627792810681542, 1.13563527673789986\ 8379811464533091848062383660279853028041820746561920753510967627162811704209980\ 2183222083975602081149607507587172123911466857884007765724374046794490379454537\ 5053754721755751689119493972832378934642385009480141044959717994752547437899069\ 9204283536483646272730288771441976703033310938742324367729244202520125893854852\ 1069951941049985754096127267049308373127728683603796687105783180484363551549500\ 0957378827973355025424910346991343686888388045899749289086436007043265165176991\ 75286789303332572672, 2.7227397928230007525415201914304492169807019260646312655\ 1535942241861641575615577691221441617248020477421536901052643013586094054817898\ 3348611206701876130058473654928306782780745593803300093797049247835323740681844\ 2432148380075186972158854446816753297282788418442984703023511235708634832107390\ 2323572549554920000590761113258856686632495111333065721713516477902002736449677\ 8648408269482141026600403817204152655794202162292502845094161181599191419826936\ 6092166357045145661570463927486579576569962726361230887092427, 2.04511940932054\ 1135418475334270616926792328266636199820016862907897783247585077806748113238041\ 7262025064690567087781552241218441151936428931156798631449401196659662411319945\ 9023936111083211771547408896525219756856412594855252908769995590737011649560681\ 4726500527783176211628270990769153061539106319075989988778561311443839171181576\ 9212037320045387347264056430310932536503638659564559785466682367137405052887448\ 3540741726627834202780005041643886861046497918077542555394608798031282337671269\ 47192778386176989928399, 1.5361414298217130266275964640988956059269707620064691\ 1150348705268480356485733298829461323775259089160837240936223221204656343775868\ 0646742324040476610046715639968217545718203712833152979153298275725465917076466\ 4413311008324519837298149861457538434978561191615715672053878950009695829487930\ 0454281351964572669418562248862733007510475236479605866487500224777322597277578\ 6450100179462088161359599341366626636539035385893399401256439968631199065018975\ 1995330399036576179216522817804112645273068532096174153968590948, 1.15383506784\ 9989430540965213149881900177388879870824620874150328734133372432080733280929320\ 9034144010229100871433292361268359875329677658532892713338271945931461855932524\ 9467931491794410973297617451991236562282804470571994155224953520068142539159131\ 9729288297755202390501310261890732030900693735822976276396998433253704349485723\ 7442545843013826202065473145395155007542669965831913406453777267026146913982843\ 2726819241800134070539903786906766853800240335967415652322236572960375298795613\ 37049696803820390854986614, 2.5959215311134004470424491904315875938783775756252\ 3614986112347478366169877002701040876514788199381926701469010945600146601688415\ 8284032816543095335276764902347073417329731327529751763391332252381748676301912\ 0037262626932356720063028465069898505261244010687402076622283580699736168392140\ 3268494817384026481802624510341291754642782041404072250280641725367126478674913\ 6234902955533288268129660352648079302690542947890478327993699498230428354024837\ 8699671563295730411930154777435706790920532919975241270070952067095, 1.21020324\ 2253764275966030761759943531052762555136318104673056437806462400448143514791134\ 2006196030349139709540537723765282803466881525726564448017611919316609065246988\ 8280631676017151926101587898168898393007286821213101844163254080317865454681978\ 2462214003776238548510801979646962846916002302367859818387062314615097365212968\ 5510078156610170697766786874731883105942742448741434246097776664308192726424833\ 3459191398769189794272274192010609535045085228336826734004644380718166430928958\ 48042791174738067469100331281, 2.4987332630463630211975550202903146244572764992\ 8439481770080420140784993527170728842867999178238023482154057268896299841713973\ 4321590560259948875489467638598709338727638883448180935244087104570861168682799\ 9279475469529996038427112339989342587964153745356075432272427633364543867535870\ 7293348148672569402873174731240834364038488870519048883380549764537027065879142\ 9521564520041099981993895672011908300596803202164518532551194882214993147050204\ 3957575983133577200108315726959784225557293873620738632841520004288649, 1.98742\ 1224938215188471621247843011014879958984438539303181791267148408395392023540596\ 1957767861367601300898731891922613174694603522463992682659840710008969798722554\ 9896373120634020452929095381793683867119492319141926120900441377344534453346605\ 9035594101935132908651926577408897007163419457039214782226318840890712892093737\ 9915857832309575775788596059339272502734806527259438918322146513307712333096849\ 5997975440954476532893986228790459010987183958886131250403566213947187001572851\ 08113375766159072402478657428400, 1.5807382019317313320656036151357521703317376\ 8538391679429399473803910751789322928306540716848847936554208610694159512123684\ 8755527165495599919355038661090543668155941646907249909555651805111931975254393\ 1820586386709726415085001602275472496523734737465736260659333997250855792440050\ 0843711190813117145072656948169314909882916842761514936510087051332189793688828\ 8729209338263646157702773050707455578697840736384001935957656554684114468797686\ 3080917906416619826783866273296307031683133509265246294092017750456937114, 1.25\ 7274115669185059384522114110448293906166310039658173534181622627162700743935197\ 8899478426749724536018767678281194712919010924256934131523211243092762912686110\ 6821552823621371111409320975317901004421061429536577272558929280524401177236329\ 0782645429632550611575517813900473837746566492530554036913352941080376408522320\ 8941656557169760138666049982503882777573912942708486784225193471225908844277781\ 7499024215128921841293036852429118783183089136038639755728863172296896204602050\ 91010415997411782516379374966477760, 2.3597304924146968875784744645219344424580\ 4053693781845728196593537154219415615482140075006977725919628834465116829188581\ 5260456821715266369154707430554541255364797192161346318503708214357157198104065\ 8323660820648929045841233925106675771373040423392785060733144696954186188317881\ 4715585001959580396794993298047696151185367876910270924379350870784192743168075\ 6673269718532493348968467851578805319521367433887549778812626220043000227947105\ 8517827900145953768442702315162718413441614007751735011253899458783879753697, 1\ .331335363800389712797534917950280853309366223818104258453707482866700761017235\ 6149682458910567069459119797141766324250913975064672262733624658705380608733936\ 9089568441929510450511300281594151170448309777172557083536593712493714141250535\ 1614004414027644212968013226013695608570491564814458042014696602047910914966897\ 7409968639586005234630180273499542433810353679455491551416618684275259577058660\ 2920609647279538696393735750995668119373335715593016309542097093501327976325048\ 55921133632325305417336518622475518657, 2.1450293971110256000774441009412355974\ 8666736547155699029161726142592327570796885478459152314558208874233202347731588\ 7468083192003715465578383682315110712724011526389567681279433454570408978001544\ 7037767048920036999538536298499040363451584860300518949990981947605210127349554\ 9961872489858886178591818607001511633044481741375199303997582762800094257847351\ 8220008078162035372834930891480283259017766115982516979568523064257560449066843\ 4605926652753189948427465671075070509921148808218869320194568018553303377482719 , 1.464591887561523263020142527263790391738596855627937174357255937138393649798\ 2862661456820678203538208975039700152189932809245750259902118221943750432362715\ 9598553316607544434850990339204508805090377606549491969934265817226794231523028\ 3416291821211872980542964019305824833848538995009235517079607578318934798036654\ 7850256686536710438778249536690301754859121202849656399081712483960951880324642\ 4982640324339024480031842046360937876480565369407819683548409250105232633503176\ 35399902875649696425049942464679589940959, 1.7724538509055160272981674833411451\ 8279754945612238712821380778985291128459103218137495065673854466541622682362428\ 2570666236152865724422602525093709602787068462037698653105122849925173028950826\ 2289320953792679628001746390153514797205167001901852340185854469744949126403139\ 2177552590621640541933250090639840761373347747515343366798978936585183640879545\ 1165161738760059067393431791332809854846248184902054654852195613251561647467515\ 0427387610561079961271072100603720444836723652966137080943234988316684242138457\ 096, 3.141592653589793238462643383279502884197169399375105820974944592307816406\ 2862089986280348253421170679821480865132823066470938446095505822317253594081284\ 8111745028410270193852110555964462294895493038196442881097566593344612847564823\ 3786783165271201909145648566923460348610454326648213393607260249141273724587006\ 6063155881748815209209628292540917153643678925903600113305305488204665213841469\ 5194151160943305727036575959195309218611738193261179310511854807446237996274956\ 73518857527248912279381830119491298336733624, 9.8696044010893586188344909998761\ 5113531369940724079062641334937622004482241920524300177340371855223182402591377\ 4023144077772348122030046727610617677985197660990399856206575630571506041232840\ 3287808693527693421649396665715190445387352617794138202582605816934125155920483\ 0981887327003307626667110435895087150410032578853659527635775283792268331874508\ 6404546354125026973729566958334227858150006365227095472490859756072669264752779\ 0052853364522066698082641589687710573278892917469015455100692544324570364496561\ 725377, 5.568327996831707845284817982118835702013624390283243910753675818829745\ 5336477957022121776873847084940970621035598961308638949212663157851705967389211\ 0683218117034513813247260696893217385603696919618617571149580213699049651417121\ 0410696641259083385460605919008885647052112482620741867423139702251430742933600\ 5072381063640146053872116822111014727505668613590719387544774211202150791352560\ 1716306179744062574800191611082225783353361273916304204913594907805109286568201\ 93232290740835417384064521128038530580977011960, 17.493418327624862846262821679\ 8715537787551117817441803776174229052654537989907430486080315626116029828261720\ 6158685541844186354645338487703657137880229026643818624343419954534535258878883\ 5636994113599277376687923166187610073195376063585156162890353316475052980748371\ 1422474494287914027867241152710804502782446435791340123809075533433012616859921\ 5444786443318221280365840727029720182036922251515731745920121938406654233027290\ 3300970188021070370722178304859223129108508509620639455708746173373081222136321\ 663866009], [-.3665129205816643270124391582326694694542634478371052630536777136705616153193\ 5273854945582285669890835830252304536483476556634251719406466348146550305627921\ 3873025561892269971767228604180083261301994218953285546339389046158313280637104\ 0809369384417114396747846899170526422674184027391035004631190422189323680484095\ 7722768754358035596648711491884558132023331639659768082499364529335846684623574\ 2634375652536986109569521591773572010650134222244999415350707814229783302963777\ 43119702939743503626331562446876550886090, .94047827616699016174334332084493992\ 7853380296184184880142193545601753456401155987861805573454213396912662842327404\ 6915086601770481530108086512316658452376835783391008372710465849071816043212900\ 5390227440770905281266271877762226001200329126155130800809626800290783265509603\ 0495007451737047038325644725076085117908978617457132849386506575708176443607786\ 9799282102003039517403167631057250477384146911124858524162992426744273787554487\ 2465384670123157491091860525319546400374483166642595081341840693390810574577922\ 410e-1, .4758849953271106210225172135565684996175497861749974997482832053017856\ 3357503744254148848464631275827973889051986998406321091292225526220230247914126\ 0538469125337348366788719759915331947592684172298863621123614159480852446380076\ 7135049443289160279904446505395598806070543085425286938112300742125320421610361\ 2754284186707733457165665854119698537496180759359761098851638761524627483678094\ 6612300407190799984319185579309822577509641263542791791361999879780272803246440\ 18599252252626132824414459932793360243905083707, .66572981057827640908255425067\ 1455628040281578046535589012082282573747435704986993927459432618055237746199607\ 1744808651881044890552175725664433401748775763364815719175537288093558546348993\ 9630739136601460402368524166746240158701927861998066925753017256311038880523314\ 1611583091265911014005831776688344131564281501814594692557211661552468995436743\ 5126264213569743467935360156766195534419889398206394195953087807063746489931939\ 9559453366815302524534247911164772633231974493345423278861007594071645366859877\ 987745092, .8745913829236889182270180050015241093722720108701329069727043231197\ 9037913685384231922975489760454546581636297049865687522687146533312425006144315\ 2114034876847650315076388660511710829608634233612253047940249038684488132323410\ 8439291996203611374586764719385112228762415234630395513440293157366035901090879\ 5603980623045333649139294478427168266968887229747168062230706020096119104489828\ 9815830000393853161510976009632842643601481330869584033820261878689423196786131\ 72724860684358067171369106189227318526100656989815, .94193873474811107348790157\ 9730821741591955054890696423423574371433992323425484218515307622192456031527530\ 0814530571473752229312727566121726056713031597872165613736049041994009808756158\ 4233240833208255532692186909669252335666747981739940340024489567849896131798692\ 9513141362365938807342583202173117068401231410207139731862198133128129636981040\ 3836410829527152381904233952510968582630161404803592577844775724134343656642741\ 0175022719756819338880470642654178449493138814346963336869632231103748895387261\ 856096580061, 1.041411524774780609230746681860542001429619606541679300443030180\ 7796290857559594140920413445485006687892900380268813425362063436168791160033801\ 6750304396427071748611786066310785086328172510846980738103203879936971570088390\ 7846773669389976717869055566030237751219380175660758225066520686829311674424841\ 8344645852043441112266393606072772238049592765101529084757414203038637517272711\ 9575747012909667961449146381146466519720962339205412480663843380767283975491657\ 57852640935486905237046625923351209980232458129568586, 1.0799182995220822299210\ 4270516656295034448061609146325184541579433176258999124278968087882072055324917\ 6112124022547575249626807064947917091289867147956526150465646476955339388963946\ 9226441713694480615028360961318987352550251474988795507424616802594616324979873\ 0531244001925869417638286536662860332291871958936485277462247631082707912084066\ 3334532821553861016550543971457929804232184343342398168547021356576912144402908\ 3051890344166340790304517502824776595306222471436014458370832241553389677421361\ 452895001540243, 1.142786806294771898992034884190814192108095643162454277821117\ 4365558313824334278022875855869628813393865114666698604672887431154782293884673\ 8349041619124559719839010803180134844231945982001434299608899205144516837258688\ 3290643106225352464781948928186345827988781928804445773556930494589951984463359\ 5243051229608346768658569995031526886473181950420526954380235095544859173730005\ 6903900915753867963898053324226717761756073469122759459434095903388342938944600\ 86602855366104793892830137085331806316944531870637654836, 1.2141099979131780492\ 5707607179696695726076626562072127426651623703227827906911623334677505395296281\ 1202924839388119145624163014252167707165930703277643092693844296124860592504259\ 0025939236656786774274639424683480923449641443523061712976670269377472710912308\ 8185527112487786790698073644254067627045854017253307992560842295540785360757039\ 4174251240056050048735582522563983990826645804950989887058419281619195771121485\ 6082433633041989430193392918371649139587008465824826590009447505532269688006411\ 134277209559346858, 1.233722036342874743602171933686026011137295369312104764338\ 3728214986798755707614719387367146198393038060566453272769176407395387925031433\ 2823945402460572046164245353628199069744284825076420141060956307082047362668919\ 5160849252891244258113293104423101904681519505401846140836532745674359724126277\ 7367593424675424790286219011971452484133567993463099004046149281121719158051098\ 8736767824031207069459830031155025826828546844326294740441557239322499097340719\ 13884993276152984117462032700724900716371005861083132715614, 1.2839620094543296\ 9815823625190695809339383442473817206585199625915722550670162484891748865709876\ 6940792921297481683358453480138842490103882685234441956170679075703701221567408\ 0944990704996495464932377199641821856104366090831582866701195799188423361700531\ 8780547777222513812432666396310221656857267805709785536458347090722284685153058\ 4855384053260592112180462691023609341063757959064154760422021873499300172324687\ 6415881145480475126484725799166505809602332665313768133494796527550996223944566\ 765981561457216153694, 1.311994234618402750988628273638635145437674121101378847\ 7618417534492867708507100633826106691275450885239503068769132984938617602861629\ 2544200725413373736354590510353299532612186863738746004726295485877942288850170\ 7238088544392368931107481476067525840205922920766405626893193594808206851832325\ 0801832408873136612715126598529843362123536025283513659601852554199232102966767\ 3055974895515839602850368471036592990801716114631857756527587009008645374041295\ 86808311054512878453020004585581286936970336700054461891797091, 1.3247380861805\ 3184736073133466608105986960480331310239881204243828747648686944364492814181280\ 6732781368481598316001593830835475776759678125685614611119416860508025772583395\ 4622171546467688173338027200343480463503628805262223247522687705046519224152436\ 7469937629846649433651980314342866612578674577126760130434320451305442718031881\ 0003294927763195291315525799901013693468423021493223235493486871236687776067331\ 7057331528339846611400721868941088323085602720014482852988387141141146796652176\ 099984594903733283002552, 1.348111485671315156953831578722385164407839042378040\ 1177076359889384156137952842737157461256413455931017285635053678907236023214542\ 6015079434607452422290361338694901878804893048830355416056188959783564115998641\ 9590630144464321745188122479501341408172058389174877857250579543336669302245055\ 9075310049634308183182252408938746612724030229414353751071188066852804667328201\ 2661723927394908781772737637688331675247761545945682450665568794639592533010846\ 07977309310991728690065311474535443250520304143001376022365473508, 1.3788396218\ 5790667593713982456755803632356292350498928403495143471624741166229947805712829\ 7869808184441713938147105485665331707406518853610900952274981016255234130258988\ 0865162775647005908821082075401991793283798841598258381880673232513249458460448\ 2363205403694756757059549614021350074152694185707843996422568130012587025286567\ 6781082566086455418094508303981017624935005844813961357932101525678019670080088\ 0431778410994335279583572445058751217428821953488753838717237683788709353033223\ 992121394572431307366650533, 1.405493238525612088346235240752038136404527882504\ 5150678645104679421986918982230335112211911547021606439173936775624785928671169\ 2418738749171594850075697279722706724578014987751294713676780351612651379911274\ 1946702266789085996956308608330165217204342415886152898452218650615068755720684\ 6371111241789618905163171306290360113438006969828289911763537495819359927910231\ 6617902866005271085787914670488777631474703384170321343239095987674217377190085\ 04633209746825775218666751501674631959858982440098722000086387191148, 1.4136356\ 2492819315953248682436719702730324102991891675880002295111821503129090902193426\ 8002158150808918978463978990919366422337060293627358875871532495210110538537330\ 1649281046857909351263257838521516368189937324981977855772936244770395681525126\ 0858991980740035134547137563506656928352794248989598717667983565845103984689290\ 5461866471597343197327675561305494718784512470179980166051720078923051125876601\ 4238297647084407609616885324954579835920292447836686119620023315240178000167555\ 725733524495770561999683646637, 1.436201191916192242902623617452797237114931065\ 9010889204899831296883466980255916442811596413669913395882214179898734839865761\ 1695768526178683073993263044244568918279197982503317415836750808661904150670475\ 5642244207157306603299096528034233426225876138323999093720899436741736324269738\ 4159479050852692806010683473159021573898522978221746404955478459035993774956088\ 5120331446875093063089624706378366079393863395022009692380693098989141485518463\ 03124835649697207772810378251200480324150351921181041360314292991323872, 1.4498\ 9804161163548300708691861427082215241723726671294051580544725822541046289267819\ 8938844625141782869578954858441609517658551147356445890051234497819283765082178\ 7567581057977532980197170314089464757894432498194986103887871081768036456339118\ 0517397901575412634567501116784862465260685913262319412362545490253277595372310\ 0769420882509548246727504363816653530337108467562942339376834588042960549075006\ 0939011257429407661102807089915606844730025748334983218043041647435501874364283\ 308209432148072334215566464154820, 1.456393823044361484857041840551420012621191\ 1198156148690026888342817091064555862951124235701522773794324186733330443506680\ 3359517707738762642910723736748565216306214733235615507707370633802893360017936\ 2490064236380204714979963556316945588272193826656232027533919132466083536762592\ 5320718896437953844098139026611895253731872234196083653013858345300245648984420\ 5164142094231745261162840182078969726348222473604668616874846583999340591303814\ 41916668505591172067979461884197076865113645470993447683922373458145082639, 1.4\ 7463665157484131972359643196521057699851845869051113250482223963328972095073198\ 8547055456920339851644650420591698675995164605553385084522992551716152661240655\ 2338318040350099894685511749816124104931522918020294224953421267169433815803106\ 6665530938447419006825057405050717248595497599776160245508395810304436027182429\ 9955276576342310590025022387572498837978976289430509998590842818227215736228625\ 1136790761948775885126480059816055701122210037064909234830379025978805066066288\ 643942252321848238382179652612554692, 1.485877355753018099967420263861259010504\ 4890568624180588752864734623115969314490371260992680436379582438799082673601499\ 8160769287899194065950308865921406818812350528861619809727132740616178015090158\ 8495133060481753692043718555718942226005465269432349263374353358021749675791615\ 6417700135023551601779406238174206400333039616536088718042517865549089853272361\ 5229747280140110816082691281400081844045918613325801603664492437868695579189535\ 88157060481271690456870721831000879233668979750007322528919439274627534050827, 1.50154895178096173926442067476341319887014796430866892469460783774945473295864\ 1565234392658423731051042927343711095190579722979842202434257799980043259085848\ 0737003700544022295397415123623615678207896942001512257635916019968200379663448\ 3530235374623573888791530818477902173353018745444603161289889568775461890389965\ 1845405231075854241939192928537422455284091029936723598443904831890964242945084\ 6059928877229901377607903193581075075685677802801205287693899637493471070094939\ 506811487687294126894424294846143615311, 1.520543522634296045210845850223275805\ 2750381967947120986292257690927458047077621140745258518277618013381566282734101\ 3972756303728196813684035077828283301470220007537377902892962485073573653452646\ 6188343132252324881903953409628960094335017331844859913817360731257322536188537\ 7718525147139393737425069998355187972080752795690862239072977231663130616633479\ 0637717300097498762460658762239651528699248247078558893169380329060167652336829\ 2286018147728048433129050009747462236874882951992229052632773701577087298866273\ 4, 1.52933798177229953223044020502404652539320195941541288381797456764006797034\ 1914790647150609659097487438135112121164616839769662582105154045140017160891306\ 8940307041128537613002410965020430732028046879802819587644368053067269730518886\ 8024346147235793102910093605405688303501590792421680842301296793938284868068677\ 8767684201397750080466417933890193821867157694782094928068494483236396794401414\ 5483749768883410552182059113620908994359225880196539005086045221474950202007473\ 988888057976244419673623597591428821684389, 1.533577726591971816202088659640849\ 9751727454030033513054849856025930781249295190390683425699480391994804686966710\ 4458842750636407358034775811425950133398953152886777574277756146304986860528995\ 2832927218165852529882831247446887361731068346028051472937117250011968338347697\ 9873694224474697856439374590007311432715272844347472782734603228798182196836194\ 2846846072356438654422275920908205153851790593083174573992294101748145518562624\ 1388197269311044862460123195864085790758489235503537237996012914541423596207407\ 9788, 1.54176463442812240660431209430416673652567078610687955147089894254170874\ 6657014930888173275571165382465564513176681333758790228887678596648351565087061\ 9332280540363982948732290683075343448882446209342665564726854383438645007613634\ 5329930012108344803714460252870379678698995030536680997764859120191007107011677\ 8664632325444078420708176664324967499060016006700337766530309906750368016302113\ 5172749939307277843789211091895685422822673776528053672692459106864653495893854\ 106464279909112325762886486990489525500227785, 1.545719936099762626132075904567\ 7947345791956158049773973070219238422959116987150556141196863367327817915158282\ 5024106831395142377109659011526428298532139272038464792838638684328258975453260\ 7945483419128048239651860513546221082321031940771092154869629455362636748361045\ 9210662179679697611801554371872923982504543076545156898295223443993581593815463\ 1051642156172554348915834014897030789799403927087131033641180949837383310761630\ 0263829485363508159526661668356755060669119561321201976623938764472690247886057\ 0082697, 1.55337279175276332860742345560491840181612360142123533110530224474899\ 2617399003195219279749592132778921580478918830674656721313888978439186939372339\ 8965005911344059035708952109444349828721515213914438786579529790319824290563383\ 2730987554337399146840047902882275422973255601487685267016286660885757562209246\ 3459473623130879427465006800874902636502025603245473754370619428412327405111566\ 8886897585881123423075767243433683245456052858961563403662288512959136930860591\ 582226305587856833982985082077431275689186278060, 1.577779447252742785789013253\ 5812863609817616142788102123590765422303751119141070621777487752273357728032158\ 8182354628733911433637751663927520985486589674926142650436040099461377782857052\ 3180703363661700687696377210052825781658334154567349643612071910992025664029224\ 6090304982873401543161080123346505257019630083115715978399995658588703025240526\ 4277180676757398936306717542490302602753512461158811296239949933618329936884785\ 7465694181806635771129246521392980481083339957764173966529545613268005518518901\ 6414544010, 1.58416058018473925630532083139034089697608734399248498434732627332\ 5715789415396832414243837441280771397833667614029545324833672368344783262470120\ 0919951059145845074666147019044604425715713448668990162392384892551532552953920\ 0878781145127825174544473081544242719825535026476070955421039097386793154345862\ 4985016532352608449057689906759432271769970422686093347943095822550724260142582\ 8039803730085541891842833956798150747175278782753981242006261752511427966088893\ 488572010942409805285599467842005087585126429793634], [.69314718055994530941723212145817656807550013436025525412068000949339362196969\ 4715605863326996418687542001481020570685733685520235758130557032670751635075961\ 9307275708283714351903070386238916734711233501153644979552391204751726815749320\ 6515552473413952588295045300709532636664265410423915781495204374043038550080194\ 4170641671518644712839968171784546957026271631064546150257207402481637773389638\ 5506952606683411372738737229289564935470257626520988596932019650585547647033067\ 9365443254763274495125040606943814710469, 1.09861228866810969139524523692252570\ 4647490557822749451734694333637494293218608966873615754813732088787970029065957\ 8657423680042259305198210528018707672774106031627691833813671793736988443609599\ 0374257031679591152114559191775067134705494016677558022220317025294689756069010\ 6521505642868138036317373298577782366991654792131818149020030103823630122248652\ 7481982259910974524908964580534670088459650857484441190188570876474948670796130\ 8582941160216612118400140982551439194876889367984943022557315353296853452952514\ 59, 1.6094379124341003746007593332261876395256013542685177219126478914741789877\ 0765776463013387809317961079996630302171556289972400522932467619963361661746370\ 5727552179637497183245653492856202341525057270155193600879777389725688193540712\ 7661547312218095279485212928213580597225676722852872404615894481783646713286739\ 9842463775959318942384393435345105097505445419474050136598708786738321313057297\ 2040659485383838723662753876545562718161511659930915243207364911677863900675872\ 5857787663915838368239504254879562394840310, 1.94591014905531330510535274344317\ 9729637084729581861188459390149937579862752069267787658498587871526993061694205\ 8511409117237522576777868431489580951639007759078244681042747833822593490084673\ 7441250497370485355176783557748624015102774180886867107514121348093879741831081\ 0251823168493014073306393287711934112140687692400260576935852479605350285753625\ 6906187920955021911641759086475695432943962682703455511789841649613810686409244\ 5160419227745099543528972772872862328141474249580376618676174693688509686603063\ 74036, 2.3978952727983705440619435779651292998217068539374171752185677091305736\ 2391323671307505470800263479141471572588813799852225556915859578739535530239080\ 1108065051641906680675096589460667937938246669054663805687286995397166160632902\ 7001611370030676832876130320305318941401705761951443383638182978552274969276695\ 0447087723320849672869289613912068602975851355210886882416100017605185975835327\ 4158838135949329666358913523348515337495102115063804435037208694365516727697609\ 3211623967748323094166274042649520548304961620, 2.56494935746153673605348744156\ 5318604805267944760207116419045510663464667324410179399574663440489488769258192\ 0927627216315321544919865870138252681169722977517836970804775620441045659011793\ 8999434273959473992750406138960863340055389852980958730794116758036650118755464\ 8994704182028602681419500978215028839363280036207290636816519433965702730467589\ 3136379446779988679086037027682199983906005699595010338427855089035242800288432\ 1670335938760315723533500832082759589745630244840083196060108424444012826755044\ 03572319, 2.8332133440562160802495346178731265355882030125857447872972377378822\ 9257580093128091209486803750294751834826204718705729139759284194673836429975456\ 5742021271259913208072090479076471681725166660296608506909196813961345149295164\ 1920944718693932548133184689444503758003156460299305896372700032736297592739941\ 4824244698421556642243439495583277828874567028525843949518480280281383636592999\ 6610481531866036823597922694848888799459770757071373104773071896008358681736223\ 0532621828356331786989961287389365486510679509504, 2.94443897916644046000902743\ 1887853537237379261299128818537960236409292702064197288714158383815739895797040\ 6332207501363490219537906813206112646333285371564314166986137818787130140620007\ 2096727016472189062258480884881477240184991065398377442492535664198612483788385\ 2086860772959791590976723802436315960258039549196432825689124157969348727711363\ 1951854729081973597031262844881047161973512883831024005711737339005210696222092\ 6498908077292376041563367599707921961381179968941086019710184893858807148090821\ 50882344682, 3.1354942159291496908067528318101961184423803148404357419986353774\ 8299324598479829819840109215299481435419721357133013689585872863503633780457549\ 6957964275329850741826314718808606985956506130514549412068185053963760315120597\ 4035618550700451380792699439273023921840357559130251103374670964806303899383221\ 2649986614876202420376128317389620494232814117807931925324772429017581511015187\ 6473257768079087667700653256303440776567054170587704747673740246607342778831185\ 1640477337186257413630415649609612141042793844916694, 3.36729582998647402718327\ 2032361911605494512913922744078921670351642780781137852333293367114817856422645\ 9995847251668347265583033111791846075432745769756192588548655922593894492402912\ 6511577900660161839735856341783877161179091219923099329170080618186301317693093\ 6183008901075545794225974606368814613706382964020895517458378527833025662572000\ 9603512951418043494383769429847428340110575233307168799335351869198135367112868\ 7209189431422659561547612478445301990964759777205253643723802363173075047322518\ 25356392944945, 3.4339872044851462459291643245423572104499389304805919717567180\ 7247498141659755123221386483133608663057297693688903984481487054321435271299977\ 6864349161270455220266130631216211928859881914746878202922064382583218010556136\ 9931820266576228521635176575119768626643579840937342709877925302158846185791176\ 0483363437095352507798095977998830030058338528271898816482713182349390154313179\ 1200043051267883568337419425667069232603406210515782714975090383051422665024441\ 5520310296772792415088951033843595483838745443956470287, 3.61091791264422444436\ 8095671031447163900077587167636163644912681192989746990361065399021533672168660\ 7818089522908956673857815792984439547465102120688910261149981416221642303807023\ 0892316272517737133653198554154119834176310377277745819864987957152948772127335\ 2884729044554962653184123252724747571356316451916900679473177611324906383684699\ 5739457815731255161023155947656510094194508030336872382419424202808020864735887\ 0172591836327636002926929927242021262508722637534557285911856045601698116696801\ 30658350585113657, 3.7135720667043078038667633730374075883764104693993016336192\ 6291025997861640565750596231714137198681103799048939537449184675063116423590603\ 9254011592439759105084216498257282181709632161836492101709220952120215168687604\ 8880591348630791761909304435456531341841612358399707047318092537097295174027228\ 5748007837209186289192564527025284517332686190799426567945344435679324537755100\ 5767549021400684024727161498010901330961373973520480774896217475842317435963427\ 5265756944167838590162959880273620961567569513845041122101, 3.76120011569356242\ 3472842513345847035559136184881555415191685264922859173872986438537591998083997\ 2868975056803680967915477595503819104836205812971265326278341711071268991431542\ 3672982007294380523145271775050314154886446131747852976981579044443487178590121\ 0430532425220522385612948195699937859938179791412645061285391860457278130665472\ 0295768724739605529714303339691728890451167585328394569963990774079739022341627\ 0874035619197608709626226245811103032559313988619266351486971192992269628754406\ 04602933377279557943, 3.8501476017100585868209506697721737088960505020202240332\ 0050834680681821350580107261068975343474598095645157390101751072903275706164311\ 5009605851733929582793551853740190041879914448646275806283053460623774641748196\ 6087872147758993330813199225770311530829682127597322412195000230120179470193903\ 9751021661433894863082698330343376735900181086403443070963171114539569410587274\ 8026134413065537419810736921898525131032687130996698547521160987456333562531460\ 7098834569849345126377616689770723965572568755906848844701510, 3.97029191355212\ 1834144469139029057770359977752911217603048129470018004633943489858534659944485\ 9212298421138204810908630183362100776777571108788029398991636802757204329932796\ 1994309740818843320362415251325105258784461125850209718226881277299622106638217\ 8273199464545871974329995285475722128277400289317220947284478775025362092038868\ 8522749785941405447316598894187869319366268969344192290796938462030788359295566\ 9015595866832781250361724369901785953917297790882335233659952455502274390107566\ 70754334283741212964641, 4.0775374439057194506160503737196976240633467893304545\ 2951203669705920011426542747735933995980263376901044387955588496228305125710651\ 9560031518471948362889049350310988963968898605198264223101673573246097266817944\ 1723041639755568804869768190099463371115079005219766037936273481834506600385177\ 2851537820207067600053088282000907655948049267089262812536817298109706975554214\ 1045824737584571981042042412010818064148335512171259727138141042122588356036226\ 4188427759961450585931144160852401382565586000688592616258339813, 4.11087386417\ 3311248751389103425614746315681743081261062937383646419439806844948731185429206\ 1001037730234728922426325705979652598303378095093953274772795993884722086109015\ 0604902169038128959726042157767354476003648651139330475591739634925460107710482\ 4050662376286920814619231286610272180597312521981674016969360124054319079075422\ 6541171651087643407993240544254448004582764139375006062887733835646663543933240\ 0573149725687267751894559568963363025355055003969861104454077915231013162864037\ 26013037015331644450760810, 4.2046926193909660596700719963637227505669329032218\ 9533713778413077526850552808689663891418782102548453396219126466001419698720648\ 3327536368831807754918042383313535363963333860773659802336919461695799491067092\ 1835088374205631569702104358914331157007226886464474373656176214845992009851946\ 2846773059187028292028915879814630714814070047690563859860187599551896058031637\ 3527536952024791169395842020339956590685863713882715268613212228727877593382140\ 6297965541145433104617816637659618924286357945221874082953891331077, 4.26267987\ 7041315421329454532513034096759576526710566108121425802027351506824230365966243\ 3242726351335409463503457211123854575579963968820626676523925467492381006297489\ 2487169559122200442268580284110267162045223803586972840487333244378667812806156\ 6767335074080586267981868645041132618535583212992965683949590307567386095086065\ 6952066967025608249984895046656938541141835199423206647941739369028724956970499\ 7402343492086717998555366339718290105790018149382554903419008737763469643062006\ 59007460619368220631574386532, 4.2904594411483911290921088574385425709047528448\ 7159766459569885716178997592059729327632932283485889425403142440139172174212010\ 8604687538499493781499651772286637125298855911916961798395254770878276475727857\ 4134455149452143479673971185426857145779702129037523300862863089447815601884858\ 0503283151869313687253219858978093212342603594011042525319503941005635469250973\ 0500604725545220920890500323050948093335668343129646529316559550946021008170935\ 1530998655110553902253338969348984142110162243584578731069144710496954, 4.36944\ 7852467021494172945541481410922173541224422609625412171117559806061124432278145\ 9403657740796066383028174958346525921470154346682949785073552197508263036053145\ 6361746147622547844870468858318135175671939271042998498873016191917764911498938\ 0609571832452203172058151598713711660152127712753396279911849432494318531514467\ 0578218382955229493803471240213601363670941133198293597150776013899049604691544\ 4154972025850508531400351885796782747958347386126223756716475303627013773866803\ 38442330899829199232138174991141, 4.4188406077965979234754722232913704530293130\ 5666323637018794346293857898988899060583842729697057343422795273806345062907970\ 2223356485011831500827705085545496738748795556773382895372735528057742896637558\ 8296408215848682742910107548090257663156267154270565256232036211156822506418898\ 3371406351312685555204314146140497213631799333674230612496363813468351728162145\ 9476038523045513114355401127469259209244025170623067755883071143903902665517514\ 5909303126011561985049847105849987010428485081027609129895502447141621733, 4.48\ 8636369732139838317815540669849219404660387132959364106697577287953892779456246\ 4470635519494757430172881662267819471431009503443880222265876701874121005684970\ 1848239812367294972348674604818120240337854339535380817419252123065234910706404\ 1414439730844753979834254271403782729575947788778765396242261844843667046360915\ 4935871164861034855359487771357351977354958124202824295397667578994813799037878\ 1420750171503882579705276901182253760781429519690295867871350017215386398177518\ 75615031265303727914988263647769491, 4.5747109785033828221167216217039617138089\ 1490265878135597623436876017729177818712534228274503427454992695068064837970662\ 7537991353558959691884452730295784128406878608395563109763435881486423088137480\ 6359909182986086482633849154552679127501175583345649075900495433107040568928010\ 8596198228987118639202017639012159127911627197352490257704222147223128911229075\ 2877828215482801235685654803310559080469094948042476903403185918744556314138495\ 4039386371277174544863212641550440255057989037495731135805942828393594461131, 4\ .615120516841259450884198266912989156890882587197604749931265361702011883602343\ 8715046801067419567578484611732584189820548897984536533148245811107281641262354\ 2736128407024058710041192814542336046035324175993703044195972413482695594656444\ 3722243173507178641957532043780739434660003093398275316286166884886078452444510\ 3086558470305818129599295324309254755235563958928476541323428352393309329449519\ 2096923043579371699952363022984925034062332203545014741190475880435657493636202\ 84987225300324575784222036144158439219, 4.6347289882296357707686023150534408206\ 2826110837080316261123095903053120444779426959174597505210890558413360343559189\ 1996600669832184074732373139009569154423487380824653376593258670124442058183809\ 4737098007888840134616273554687059636999330243410227065600666910224161071433973\ 2018359207756506923343830496177915720311516227010139726619946089059223321452533\ 6654111330265744350707346442705742316734418637507044790515907324858590399419564\ 5967195907126512262820395558441141595550261842292557912563339031846107826898560 , 4.672828834461906173304398817023277001563146276131407553560116719246717369529\ 9926565573187035016106499110162739478620203765424288540634167089480576279993230\ 0107239218975074898219839547765801960995849731605092942704661123448013178885434\ 3458289930268633643241007014337164670249255097829108984975197340509065400165225\ 9845242177000647236176934547980158294612412428941171972070621906180918922696888\ 9791791288345238090690400289472076073263826198314697116776813671827147017100668\ 41698039424739167754338736079565744482268, 4.6913478822291437003773164522092016\ 5106034888350323115307487355468090328419516298174400627196145277249799286141073\ 1959697357530919395638048782268158209048836859817988075014638773170751242292212\ 5335978481144950586022862098998988784230348437360720243818374653901340465209697\ 5680024754080397979633783808553993494911540256978663391049584808074284580557393\ 3815380884291192626252954844040418841025391570326504208938537017195807350120167\ 9918725458858125671250867482927942836602285951960582253722079884356561988773373\ 382, 4.727387818712340568582131493616021672029330388702993794740348035343573905\ 5590500708361901024998720779626631206094546991479706913900692884185081695352983\ 3887030094839569536804088790781456085008208161919522608633112430870684416839838\ 4262865598478398995543316661665678696035275807081638045747260350821522385489907\ 7214446057813969375116125398679398908479367733349426713903464341008282185930201\ 3353874665390901424710289497606437629923959816315850955595834553853959556059165\ 86657383605311649389861746380755080464636283, 4.8441870864585912730474408077162\ 9239487390912392608576290726520785718526173657537774589511960250333412245004695\ 3075961305363543399025335756429694848383274142520632650902457258865132657971677\ 6051669317172737547450841943759948307950555226548702924360328661640152249812228\ 1949112324992128665533782143722049545132685726812274284293935128491399518007556\ 2942406520934102034313504758364657354040509598790561763877373299351261344695274\ 7115160525274854220055490990027256584923008998737880372450846970452136061488656\ 843997, 4.875197323201151544149424011169525893107910004640580971956995455107536\ 3401366094439473132607639751676686452174367968480830750401040121625537187278330\ 2146898552744511665194476388079808091983329165127960707682180136027877247729752\ 7846931515779774161358331417011908970910282764197848340163335698803783748387105\ 7133731277101607978458820235697425998781303524664327011414395853545903261073831\ 3989617518474292597029569737073195841984785322672244883883868180029316554533833\ 36813912665099665171358043498514814334839261258], [.46364760900080611621425623146121440202853705428612026381093308872019786416574\ 1705300600283984887892556529852251190837513505818181625011155471530569944105620\ 7193362661648801015325027559879258055168538891674782372865387939180125171994840\ 1395583818511509502163330649387215460973207855555720860146322756524267305218045\ 7464008697450583897363896489002648687785378012823633121716457814683690099334052\ 8882486244562388119090158949767997197011496776001645006253016812125609335304134\ 9396630129319242748402931611194920616208, .321750554396642193401404614358661319\ 0207552955576561914328030593567562374058105443564084223506413744390071693771297\ 3914826764297076263440245980928208801465864323475951060452874388715516781143321\ 5741601939724506629944567614106394858962681835479615362191390508424371214998003\ 8495834977911932135990577531884736994711214330350229296463433434170339261924041\ 8776957717919951092074730194665593740393248965373380807877953088209329624680964\ 4333475348111779011716934382429753861424477471879929614557061723671170509212178\ 52, .58800260354756755124561108062508542760170724605592435372604720783592013159\ 3308463924310878298241222882908903554629216557316981265593406202183774356815817\ 0093103602786739201287203837825371845754068636218265383542358644086915363189460\ 2153446158640113757508878794868547873494875060950604443524249723643061561581322\ 2520965874126960945060070821553176900921117052637265965258786365035393560420937\ 0523956509559396500365187953178156086477979992449503777776294962459111945481640\ 0255211260898996559989800885199148787182837, .244978663126864154172082481211275\ 8109141440983811840671273759146673551195876420965745341576687019913638348044900\ 3711837429548542099505997695898696061420373520127708738758165572158671598263855\ 0632052208787306750143415623363482639563697808521591073245835238135076299955568\ 9011258302662623302599157532810276062335602753610752021785741384685151606926402\ 8133514084979441006023798846394261152655260206139603779544423807260474194391788\ 6119777288186990730107505901507422498584394142059686034142517953473222901085505\ 49171, .38050637711236488630358791681043310449740571365810083757630562232420045\ 7829003102358863446095872935178034857326425678948815575672839829592435206848162\ 1901982178561234938286584195234707777069869630804273002944132701741281268421296\ 0136028646083208577053037064607932042770113172950407297510879342989381434083366\ 0043098932368781657245103395083514798678014563334795457720579582069740751086752\ 5061370427023990893460440621255719729424820919268111581647903669963071648075312\ 5563858435775531059134015579721385368729884960, .674740942223552663056520973609\ 8136150740062548407124231209217049693088958310535358917798169020412938840257498\ 3073742563085088668430952040476845971388307553708928692020492062875939506445658\ 8621349856747767882027569654307601479877829826813647396493391228544781491860874\ 9030498757128363214191295286092847873493163122910599494310782353010188329055001\ 1599519341586438777653479891006088031760930397095276934167619591674969765560538\ 1397125922074037546010661060147781731347972594875024185775670797484088191721515\ 80420577, .16514867741462683827912828964394345399838666046502781901803443001114\ 5662179805141474887137898700107889996564053760000222868986751219851922057332252\ 5367830402699203039710783982168829787918815246725642197382572220832601606723340\ 5025245010793457333085830866540032347385031454953777109019516324983251282511000\ 2995066470694718468126660854820517935993367555998692078304279699885679491800994\ 8713454367469989554930498374487079747606308596939720606320280519127469237962109\ 3978151480056704260040971517719494026582507898349, .694738276196703196117274170\ 5114101030232394535272209070268161477689178389287020065762389720097480151152961\ 6562674527998443305907641424144901090585526491504110870883572640288089716558296\ 3353379371897551759772470799155830148085080416925543762542620161775553171906597\ 6414418113574538917627345681853710537911405425667814419600315720736700480670493\ 0369151767397600423246670501812484104705980384622292399193696691270703866559148\ 6731298922386350106536828327518113079975300566337869349530984093924401512316705\ 05162717538, .27829965900511135132823027023266975751327061557555107043900370558\ 9398498396228039558268224021174852263315718112542287725865625460127551895575951\ 6569230841320501621721442676520398486864502597195322257313490670612755567534596\ 0279346664413811266487272913817875516662892708302034367431855584184783169364605\ 7300112744945895924486129310378439781449178986978396440215764531110837760508340\ 5581077590599708161441048861243578864652517782324288483781687888515596969530346\ 4349652110843380913177603738552759887016413966846119, .358770670270572220395920\ 0639264604997769756558809157796403988667547031842211293287432644092694253730707\ 8406740959092939334524356074717324990753710842449344403342377768628260437325250\ 2182927658787913340803906015125648540199520013215809977596069670186085066625479\ 8422086803066661828026576656389549375343693968294996353437990963864529407472764\ 3669156686414088574591591666571945782196439044263607010341551280565551270283637\ 1653013192857873719136770179038868174252197350669173728531723214720712518154701\ 03320645236404, .55859931534356243597150821640166127034644758253401480613363603\ 8141748236026976576275296187931530067095269075035644031236865562815297647082631\ 3006629619134796000916184230290428467590383019240066947973592875225835749738771\ 3586493095986620699228400424721789433762775983945962908302446839875883189083444\ 6498450125359389652919869792774221201479653051916673022193537437299579069836538\ 9840982922333627610561873293238352005005267791166346828524229098487223291232405\ 4659108575736197923644163505559385070782814264785584746, .718829999621624505417\ 0141515259046539514191200183170855427796828611200091030244602752510405501618942\ 4134335955402991864773999542677166944615033301751391704755185918039275290151560\ 7000482271305157288119536049675776421278621771823494446051078784165011452307440\ 6697918036335012606419843699582193485687300682516429911049499213755198311986967\ 9184769429417047357428283825174891609291537277214562167021545934849644505225125\ 6639372628952817129711857372763549773727772906862247306504567207213552435944762\ 94164659037020749, .41822432957922910119117182902700006234911194873454793826476\ 7965308558632399478470106282588284054643748205884759615985549850883177913432347\ 6198305474664897005759049154153159536480257259194626176378503283481021913353751\ 7599894003848265189979612834739385356503961353339494428486492280351451168288295\ 7325370002929502304849444062392515897023447963903922836655936927553976883099596\ 3909161947517386722154337774942499742194866704335432859418745718536126746773070\ 9853851821344439831340760645266118615067749648716578165866, .996686524911620273\ 7844611987802059024327832250431464801550877681002774744755065442061262443428637\ 1579558386408827398969567927066563156912790302072085283902831243223413145208999\ 1203117764518807542711382811288235936051731132801535327427661569882582354914853\ 2458727214760662814052989463717496997574710143596227373645752379977807952648934\ 7249296281854909883570529685648584916240715500922701439971745531137848904753891\ 1966465570952395072692049753550270022092407194939393235771918407178695922159848\ 82833633310249114445e-1, .29145679447786709199560462143289119350316759901206541\ 9272206083087299014910508998071513648708762524048234355741027247408225868375094\ 4773861796618994940786106664878310982512876941466248214364009619681296643847285\ 4964008755450796182891519303566308766743907360290595015252911918018532810857631\ 6488812904295304083415872258729813271578934541462139315540000625165714235722512\ 0750811603784494286009702208886165799984717989079233431858643028307305675981885\ 4913996963385478475147247240255104682504856748801705691900779036, .610725964389\ 2086165437588764902360938185030661288276158428677300002315242905175259244566500\ 0452832950428011235007530022797144279817972702829514899559142630726621353518976\ 2373590441280003964396649772249876098800999699606713362840736781408472899120956\ 3022057162866700291622546372292054764017907088952914897426999847734183777186258\ 7842293866270196514125873870836446606636910943165990827337076774899596970228183\ 1326183293822592141899117329783040967266044702744217270896408952705512350570730\ 99897847919486127125222375, .73281510178650659164079207273428025198575567935825\ 6086310506931928212471266557943966178011121624688105408250004284953158880433087\ 1994229984629891646661941922334045152389415720691498051465394777468094351847569\ 9542449374688255742327102692551250660720713704961050822400151115386929663376926\ 1838366022214290508610964554942616051494578864632801204631115695652238817451746\ 9898714142774517579267795164758722373723144026266141973509598176004755712762780\ 6225487742881560476612826954396286760544986190342373994074462561462, .348771003\ 5839069821895799477171809512156063033365391400124594485582466310170705487638177\ 6408275128265407608612551527643842439010442594792559857064592475318685426686153\ 1732200538818393629082105466216797311108574299860535662342421122661524587915902\ 6294246063517533493474132456810318392403991454581097238686515614812279020896996\ 5197027970417875351701912522636804556240924863670545878120075754382267873393538\ 8722611716211183537671889074642891622489261629036372196001154444293666940214943\ 41450602311539459821165329630, .49934672168013008560093960453588552378548669593\ 3927404977686185544226079313848411672593649895068647075108625425554823724876877\ 0650472660142953816191503980152450916591995580469785982598915279805650771840411\ 6183316912199086905828505565061165282476671593320982018374125125106540610182311\ 2643239100008431482077609716333185615400439394610719646990135037152311761017005\ 5070417366108949439394083585401913816422075753374585810507555972739017465285360\ 0619610067032859178175405185209399151076101645597804901811101789179251, .528074\ 4484263596668137957667635640181699694451693022402447531445414683161158688653952\ 4372638479131067042975074796448628192928948806827984722973575642095250000305522\ 8638836402127127871433800820607830778374045488195397524520892096616160860661892\ 7775672042164156366526088181789915630326118900172119285218615130436419606154761\ 2200577821826057551603385060031876075176419324898449815153204138771157276685657\ 3913634655697782817899119643901003999973533573214163065437600523011298216450247\ 14941519159691401096364140284542], [2.3774426752361647882447607581000454193272537422166474589872826947322606618322\ 9215927295956571229982687538420497369379366984152593444760721896022048143501351\ 3739018665462936883865138307955551979716954682756366401622444259991263260878159\ 4906607773249649077370046418115048032227693131431635206402421766418914706547616\ 2547644877902148035397821624122677955306574974519837559473047153725280576835695\ 5102047393947302729141374975677874863086993966019855319837263273284636284007673\ 5765286070143748688882426032520597028235, 2.02811498164747245110812611274635117\ 5174325092542613520617775972122215395048716559425962869184117409969446898986272\ 2425095697121254988448386790951523506868144641083869562640022290572654964047143\ 3067731914383248396085767054497734249362902628604880222982201245512447926936074\ 2782150623497468653342348103320103493976995888249444677522764735166044988498293\ 0945753513892221881512207040241517691839519862028423012221187864540650863293229\ 4009516708446317069670293422934519408683824249150117615157428801737129576126004\ 76, 1.7999974573044333363269780109259613324706556041110962077539614185578392733\ 4467232558405012617660746176438621941025998722903677014226797481799181185178013\ 1063597506980506355424534211278827749802619107811883131629286160276083331295290\ 9514802553777792997991650498705510675359251615796942743753728103744988730738707\ 9215827575721926977618856363408881934440654528225853578446964256596943912844935\ 6801127914789132468092706698774961749190485421305373441976393987298535644377374\ 1015969680314032449783521167135162115349359, 1.64872127070012814684865078781416\ 3571653776100710148011575079311640661021194215608632776520056366643002866637756\ 3077970046711669752196091598409714524900597969294226590984039147199484646594892\ 4489686890533641846572084106665685980008892498121171228737521497219551197160903\ 4091115619799869839960642655091754574626304483075194758258782625439931955712690\ 0765453228814761009577397884861814432652082034241701047183385915106301256614755\ 3380825202606140097289195908405014891502944069563311377676380095848089329512247\ 22636, 1.5432394393073803153163611313070244955858273092664687348876471150732401\ 8423854044314197158179588484241357145561314987310922326530957133864953512697854\ 2069879792748691578317746375284938050873409734448229118223294741982880377162848\ 0767535199656862975846999871068224021384567484919737531580664794893601419494361\ 4967003316795005369382666960815957185704559315593908826424101869649112043459350\ 3051522165808052379194350720266365959582422311601738493414888586002293252577419\ 7290011549231004610041911153108218838073998067, 1.46621380075710940216698932677\ 4100066784396277289690669546543623624040245248211570937388590419813326170515547\ 6509632084570928545154460992079599290419230229465589357376852847477467843155673\ 6908817708924732959065588212824716282359037155378181841429680468017245829616037\ 8044779143182719528108530508493259144056500912684218253277521630699641679274072\ 2658578725042241148216437125889339200212495368491223527239742271086083679724261\ 8741091431279137994190147619693756536588912608148067398398626164260939385459322\ 81081785, 1.4077886547738427114766538379397450394853361658177133214051482181242\ 5967465478922540047246489483365344278539054206202388758956289369196698331289398\ 3222105564679950436402058442028077818221647000846272699240557421258370284046819\ 1214880313569775100555505285258196460116894249915425269911628812428149812686399\ 8535379847349267164164938355938124772468111784561705491762115352739066433634639\ 1088097937850646871772220440012375189167960931958401018196448457775315037371037\ 4580893320668336980714580986068592468721853081492, 1.36208551809873697374825062\ 7299136259133385408957971907011672618159460609737467475619453872749459529686376\ 9011914231179261562035578221547039447102772575677893802540106363429922926160367\ 9395838907636320507398952813041535466902766464305661123145962916990808076397757\ 3030368091534681503912398777255974432462831248898623882852920746721433185446679\ 5340699063778020595270727936190903638148683967373815159934152587735823753392776\ 9373357020102285086642127296567696462039328766344030722270916842413488212641276\ 78129002780, 1.3254241969478472375873368592099949531054742490397701052078055135\ 1151319364965866244720858657974905311211883146834545194833388961545060995962687\ 9936675824248842226687002619163403563624047631340961369994485346516992842331318\ 5062716505407042535742414714370544227819192791989579737925793068328480315136406\ 9152062423385040471163142899405462895951631564205911630707731888740624100301523\ 6051364322973666656373585386617878482968272304601722093426595852831499515761472\ 6951384753077854006602639969540429843204789464424426, 1.29539937475699950954659\ 7300446655171982214836469380524021634956869114875908879662761219595926672643177\ 1540560363954992023319136498612278641689420781213616633860686316632386287270167\ 5051896316995480245204989810397601481466225835245144997654396518789643307436144\ 8801656438200486142785683323514375269732446057231230988708825771897639622434218\ 4132885383290413705128894561893230377697416262083707925295701864041258101574988\ 6307427949759996748456486975779690153448486334520781951456133372600336887654833\ 68899793670184, 1.2703794867332932225952277136277284206422813112407082717348755\ 0643096400162655000837330894715868527687932781731141913417704968413206813563242\ 2727311899008132622817509805819117639403598831490684846414970127123922911114742\ 8542076852257244319003101493457881028745698668807274206018878774233146835111022\ 1346549721955930002958287239715270655684647639773142024082869586801705851112833\ 8875596645894524746502981207194242275200091423150609265053860029808399399378602\ 9956310659400547771835166491193196905851269795628008315, 1.24922197053508946160\ 6687098944552667972501308406731484611188854493788899237967217974974612022467541\ 9780946885073840223994532329838613702825288694997436568238255888411598240931985\ 1097997482097760464197511018623000525863802997554433555032876412403858155432148\ 1751384526824659885295550201539386936448514168156847961117952370834418740148323\ 3907444306630513352904715658572522020845283379496505860384638948893879324410119\ 6917653468011710228642915439302180565285415333872236770308143559364753553026301\ 19510558791102784, 1.2311044469213747448984997260150089443509417807585196848879\ 8119122836832790111235638798257063627521925177637551191739905106087150731517249\ 5388454863100612404494607143097861278418123280111428342837694406420622695611202\ 5427394807576826351103913466736638830844919479139782927199170126563576003303875\ 4614000395781411090363435349230390963070809808019788413121869566764285263126281\ 0329407871268392848900420043873293560754985581759584797917404405787057532717676\ 1048184099305054797671425125803499586088250576375405656438, 1.21542076078569659\ 7572816804559575460353141488063313215145567744666390528131484290274179982773506\ 9689414027629604652852940405615522923259004000305070528748389012871480806936926\ 2557748741833854599764073493611372991950079697469953485553702774929069599821784\ 4291425988368853453768019682449134953619761787633953672970330557995584814470807\ 5839930267119495146816704346829495061068101384657386643987075629618867558675067\ 0481398903716614103714033225978336271510659113365177430192214662829573105443084\ 05202244698254935343, 1.2017147772532993249727422903408249978530824330861913905\ 5163612025297473608309734335535008121262947601581031871742310643134303036209547\ 8439468434774782614809200835886308674917655436494555588898419743631500975421249\ 9740929019800126855547361413807104289018300439339196503803006559845380181570481\ 3442468485398485467930417549530295643253001964727994778659163770815626410880290\ 6815627135852036787824642645307230773503276482317638745294070798258901235100260\ 8258172318627929746632722945223475170976944972433223504771759, 1.18963695133799\ 3109624416776301890408559839251821975095445528529466153229871499900385340571816\ 8379234777841028721743737632359084127687069531355748897092932678061555595272804\ 5304486067118441618803658328811562405563472118261904343633937596507392703751235\ 9421257610031735383675993375239491172007711229688373979901784242161063737937058\ 5215430948852067370482252337366827852360829964436198997277751420797897408418541\ 2174394844289756881067705851201439230897612322456808294782766480810676951851510\ 90750009347120925101774, 1.1789150781859144915208893763654623035777955505603392\ 0170346767523069906171806201489008552091442665323459050516117080353262401295210\ 9495745123358202487564716508354916243023594400152234085886855068152431169628204\ 5898221131901039037849955728579093127514110750644651642618262047733080541994272\ 6939113289155858747879131454166481103920404367471369417260885723154676290044683\ 8217002719607316644370881150502513905502112458211646541265112643629617422153856\ 8189652212790268267011215588247552406848651109027283432022098577, 1.16933412754\ 2936735797779088207634384968248944500019973477856753238604244981577682833217054\ 3649952274166359568746107889898781631412455147793658807256930134984241906211502\ 4444817636651804903128561767981079843132782341230792454970776028488262605755983\ 8014216621425993397296143621056188630712556141040612190585483950561493602635475\ 4315243729638170294582257567952517542992489122868154514833799675593602097433505\ 8801743649519007899784223486356508037348360191971902076890080765858554469643539\ 35133328020529809508082521, 1.1607220474548733227894450962558963692831854793826\ 2115052559771403749687331157986733467150771028151226150447016628334308078711754\ 6116883411705539571978397065012320741092100456243496963790361444740310051516917\ 9815973607784255124720150609955716591745477445835286742765079573669129404187646\ 8373021422492611502110664940296170891793446637222344899249377149020806171165226\ 6059566923902959635270448677121031405422885082361822462777090404679347593650860\ 2171995593822806681915810115579824095732543106563099870642292041526, 1.15293958\ 0908361798807234461341896948678596133265361579286226227446452601143136605810448\ 4256460234156800809635564758384032557397201797989139588127632741330822298721270\ 1977994298401817968272610966419364105395329060446080790372729531314504318802659\ 8936447572393528912329046800764499514030138600743747248328539660321787890749304\ 5217769200353509375168126505981733353239033693678231220386373733949910323122900\ 3689593036839862892677455396406590291774045150652501720153819127978116718706540\ 50535544441846269275078499353, 1.1458728363567929249754450950400571556092645578\ 1429420230529698690611673056692100946228250815581498599216826917745317102473333\ 7261001537446922675194421998712957730474883711036714335742364902893168794753231\ 5145186198868659153880740168633842467847923962174495094223064980188113650367485\ 6868570700169675454489804533210486650539514986888088659809841179625493547622714\ 1035154971814615225027525042076558266722095027993642248794451278299962773709744\ 7273793983556353396377850242958125745179615048172193436355814957735547, 1.13942\ 7783645963995552572353077274385410311940915720386647862885367828902224640690120\ 0969753389641101825386525842822222852730957836636856443275927149587413617244524\ 4481182632729688416998709358239913381463319720206444221628093877798869122150706\ 4634291647993792008360709897918347314057739150575646344652868941242709021584644\ 1376759193387655224600240091388379775635567969878670216265584404205028407032286\ 8295732869572679254023474362827798552531955708140170009525302971888443290770535\ 37534988481694243245231213268138, 1.1335261190867297671790042606675545881713414\ 5321460889282185719083208425492516719859639736032606553503524642148490840548758\ 9494839787215198968754057899833242390651796335338444709271180114170194671798520\ 4308104631563105596269189137834890512939266039981161369866158149237945364791168\ 3296584723414619803593454329637918485404320239759098868503924069210950071184697\ 2011404853795570210972686639511124953448846426539431102282828695005285860891831\ 7792364727349055710874091228705111923619211975712470152965989247931257623, 1.12\ 8102119280641735872420931083610829717316575471334101893626550194831053938645588\ 9452929132723136750358798961329910394479612522790742905130771452598643902417109\ 9357434891678604129824064235044184313625458561508307301762335827789555163424896\ 4285260227544473774955210614632578014887530779652490848705324376959711934015917\ 1200522040731816149980870609967413706689546594675622076211070980299662626105587\ 2868776863639187851851288043492176603162306155285470538027284024572283409831091\ 56477128573067095771690663946852742, 1.1231002191599324414713665572122664804260\ 7124083202998341869700254928517741730749714043853269203244542694312024693092759\ 7580419691045815207643670905192239756742893302576193529266480597884139392508479\ 4439789591665185252794778751316459998350851597075337155483798938528036011306547\ 3137687176545054755318225178424384420615441258255879473822516147757657508483092\ 8423019128655218395597909496288002087244794642855288805276813329911434638504225\ 5435876423687065665023929999493924240572925816181627638674177516434197640304, 1\ .118473127415478558931054324726011864197525446718243523521788478315901909739664\ 3117856797447190303682310692148679841690933913663653896690863362780673993228572\ 7098284980262204746542631334222440763302837552555053229058729401097141527670661\ 8971178359702413157517451229320104792045572846156666471045549396778693986450926\ 0430720063292208332371500396387499796658640182391203618292696384607554130935332\ 0376041898484410322622435909057581942627132331614062432230189388529413571964920\ 70639294091270018369326445522471775992, 1.1141803454840901548920526601680192391\ 4586750585552428641365108124554525949591497084276380520070824585508818873147220\ 5830600048773957528580182020079634909054197863897182284670781447938848244229120\ 3646139194648612544494661221528103494386374700338194788216723057847835477252631\ 1053691544528635468756348292600811202800789017575973246603714722954170070912600\ 3029981154521610176094069911347726132836174940945247162960553650807855292527285\ 0951504881353015111462709770130557802834560624374910554376882738672662224374782 , 1.110186992966034005498236555879411383620787051228479939082525507525595419009\ 6475175535027992554624943035931092224265021317338086956203384225218261295779402\ 9919533756574385609020005645088574848614946606732003669151421460102507597907221\ 5237486786744742321495954167296317484307450165021482615096467926948141835728015\ 3556613810768273944125694476748770290620528610138173074720133826365688511725007\ 5075186134748148331590450434280242963365023861093750691632058174864582882824522\ 02614311512159380354491633096007579802561, 1.1064628681189703900951982725208381\ 1138365618523434308931556597410880449574300571372473161988641918871214977332283\ 1207214032128548727258153206688912287931678696676727140455643487581729438823271\ 0452888481165457277619720637998279015553924179508057510138097542678845792818996\ 5484702428402801661951131416078336094679728095673597166629017026151241719086799\ 5997216799797060703220048514764773895650887585995616493758655532561338083205300\ 2901623124525311888037630009895181812866399252914411537110243870116035261245312\ 400, 1.102981690416158720955310596809366487825104007609847094609420745181305115\ 8680542191599755059382946452871251998633415270411719419171765891992315730259067\ 0648801886665018604376444059623559683181192673921650398606656345448416264766801\ 5264397861661104179836272956403927501090737749749858248872561548504644807825829\ 5632224308538183422526755877468454043192056770252214444460091063445436462527874\ 4705319467632667661521198844165554273730969144922744441629635778492915189466609\ 71092285813095813293073819813135126919985398], [1.6487212707001281468486507878141635716537761007101480115750793116406610211942\ 1560863277652005636664300286663775630779700467116697521960915984097145249005979\ 6929422659098403914719948464659489244896868905336418465720841066656859800088924\ 9812117122873752149721955119716090340911156197998698399606426550917545746263044\ 8307519475825878262543993195571269007654532288147610095773978848618144326520820\ 3424170104718338591510630125661475533808252026061400972891959084050148915029440\ 6956331137767638009584808932951224722636, 2.02811498164747245110812611274635117\ 5174325092542613520617775972122215395048716559425962869184117409969446898986272\ 2425095697121254988448386790951523506868144641083869562640022290572654964047143\ 3067731914383248396085767054497734249362902628604880222982201245512447926936074\ 2782150623497468653342348103320103493976995888249444677522764735166044988498293\ 0945753513892221881512207040241517691839519862028423012221187864540650863293229\ 4009516708446317069670293422934519408683824249150117615157428801737129576126004\ 76, 2.2456993662019920183900255448956982722863285660887081645844052168519728705\ 8130155778915135500025096179766705195236223528306293619356737945795401154034760\ 8243131324625903711609673565342258623145624416574250793389366450922641273302670\ 4657214367029172007394028845392964430312315767280697151927681555582586968493004\ 5332306532966198467356376280030002240696541054870304976176431626394446699497282\ 2771405657676098173215416634580216074926274934664219433453927388604442215731457\ 5680054966741267124550636973183174709429168, 2.37744267523616478824476075810004\ 5419327253742216647458987282694732260661832292159272959565712299826875384204973\ 6937936698415259344476072189602204814350135137390186654629368838651383079555519\ 7971695468275636640162244425999126326087815949066077732496490773700464181150480\ 3222769313143163520640242176641891470654761625476448779021480353978216241226779\ 5530657497451983755947304715372528057683569551020473939473027291413749756778748\ 6308699396601985531983726327328463628400767357652860701437486888824260325205970\ 28235, 2.4619872964578416933886211244236402920253629771034823331283123719215058\ 1025386594468177230661360626407195667561067567115037443905170425072476911168136\ 9458101841461827209082043829153908535630436267254756366519805620128531518931307\ 4827761633060841753452844731280465438265878625586813338633025432336459931989399\ 6729092948679780800008471737385183354468221088199403165389976055671485882917144\ 8582874085146555137155317244990527747703769860499178897427354584260897928630593\ 1454749182819958152608010780454046206934199991, 2.51904417140698428677487715819\ 8517593742626786018772169126577475855940045811159493897631400200205719594097983\ 6371438101012154157581368333926422979638684063442556083812215528152073712573579\ 4911133834167055813566265987663281894388547399625105925365656761007215265389787\ 8993263782500892471413409629594544516535834651286742997416538634064008211492049\ 4345850885863832741850572993563107477062872960714925723865783448801294543262470\ 4763614398711557547212387491393332051403833533348303411195280523480178866454662\ 05978327, 2.5591946541764843702553309534770170554951396625655180454820869083146\ 3720430817827076695205505457254782454406218200423644603489605802029903135808432\ 4953156082901953205186609012195106868738459974160617784806134215388233050639521\ 4953509989193182728211606012046955557431097915095303102675054279031796315722608\ 3232946263151015536941586913395614701967730775310577645502103969965328067020852\ 4616442782406969812157568256077601929796534673229550449148031575867373625408394\ 1017119453289647022267027465511462926919120814506, 2.58844294733286663389540896\ 4815693660581369724125810855536768942376857741527767368817670414210526229190324\ 7051705110540086504327936051388535690875904787228431291896523301207824705936756\ 4368228965117226708362523214605635893989829919359061068817174481509586393803186\ 4969197038278694792464609892184022157979066004927540729363274004653904107064928\ 6810510699921956390780434956992239912488745067537675895665733018370742292257174\ 5109017433838335574161844842869353856505495081701349646900335384952694023787770\ 75292182701, 2.6103726100453608411555962965133977681004817537414159256553560557\ 2003054971284272673672787126560156163426506711143150221703926571037764793891745\ 6175808607196232161018276805500059999044657982900979984199227456026882697911563\ 7392202918714776792449700657194696808213116437098952252292467356701349885243102\ 2317658270906521044237547509345534307219597259450535775764522816556865036764157\ 7374255449914886104811052805618107497442150784600075077642957229399796780075774\ 8725374250642044065667946698052732010339026900405677, 2.62721887916143934825895\ 5003308480745891593582594843889215246263552079095315809037370269805662156852790\ 6909619919312793547229838843983199449060524097036150195265274597944493028775624\ 5983398045346773394351986619022565040664782487792875238252695173427573432896897\ 7107638781488117592252347992295969128985466443942325999509439911168442591064395\ 0378462118360378011690367308016564521713982005368462060026024631327452961118342\ 9139442689215254934008409265790553893708172927322254950715220789814326172032740\ 15504283298308, 2.6404300917371423824881131703806068786200838204370582422472747\ 1614321919930969067740190868341612467779712028325357965666529484831898955863499\ 3383841470185983793186465225460932867797775602780340089964885686286980241318020\ 7979323543624401919468181699645176704553699756897368173201096129038916323463320\ 9236702956127632842888613016621276904918021962549085072054737356531814634006926\ 6502788478875861542323174035710385137438084398231886412671590363587252347366502\ 4040365520157661517456113843514506987514721885325066023, 2.65097610101117935034\ 2493354135485474814826885227507719839810170083032977018080156358920173634755924\ 7090661672764787829371109739652187892846111196956831523302218877671887518910782\ 2411141158379810923874228183123555121320010372077481629987132043987824970471998\ 8993722601616912928257364738374789718547585805198409582932729832995368474957967\ 3594490526427011069414343089564464230150899039743593929498867886645029660939830\ 6169018955393210151073680241982962784684547262921729272614261885050452062376853\ 80921981589605092, 2.6595251737056716179331668478666915686105529382915599438720\ 7044938455170255318026013584736430812086885143680665701858721236299254009493419\ 1781790745739465398673421614979927659045382812813454490008981974857898050368375\ 4325090325769680891426839516772925331606885714942699986396626421785832667769907\ 2085140086616070632632038441875267485395417007131067127586455343471769213423779\ 8691778819324933999305250668041702783708216553799262495460033121301865303970243\ 9497331419073797482467078762355938878583468939829349941897, 2.66654940895542717\ 4806835225578705706553295286814086572872125625983442606557411391771718702626079\ 2298616514868596663486927516035081179995527768556042729278903357866735938325744\ 5283847238735957539036891569107714329152105133645374181328886752611723197970792\ 6938867226928817134893629253056335116521492004684206141393007573839273784563009\ 2025138535327985455607208714473797064385574917584975770641524888797303652748325\ 1118927742372153734523139003932473261339596432644850148273977711994284360726356\ 66877830670727194064, 2.6723897236121269356677176350408319117310911482857690971\ 4638527275289134699170531302641739051670198849809545741462477304704289678147947\ 4965502096933873169005737048612768829454958386987649026522209696131981469920079\ 9062617496375420946270335926464362247864364360400011970266021358165257066060927\ 8294158300416303855064761837062246709471066174273737811609198247954690053251636\ 6729539381145976487216489160614202730412161239392367113149117170508581263433481\ 7176545499580743332050851508158359132557942823185078009749722, 2.67729713263372\ 1976560192314000343027969513348658902326511607798040387303283964823233067720681\ 0871840953802349793382057252446788140565032237419842899730119887514311880728517\ 7362356437386819412166159066292263609339693682753151928244027547891995471655180\ 0018240437317576779268016640776217437408381331262636866307829033676000808368114\ 4850586557792760596112812036288219661768940299825711953869343987715544072332253\ 5791142085270853883949393415442360448082651431652175605700375298207242772584648\ 01643619088901613086402, 2.6814596811668985077971609433231637722442774619324467\ 8306518159048271906755205970801575241125050673803309007430787817685049440771603\ 0168272442988243354337195028518771668495343945274962832978865261619848968505091\ 2977235259807967056668801785018982246102463804562204772522444148865925371609439\ 9058494092240295988686222814852004678808940850653900042305876014803356215274382\ 1311364534515496425128536627634445086362458747015361552926603896022829974460306\ 9643627400392334345237107600849788814832704024071832100660925826, 2.68502044000\ 0922615093645576651309354691651473807896695721461577541844005423254844968151123\ 4700699262439107457166487115710486427044662941637452960583657885025271327019613\ 0324967403071874321339335473271996793700676739365849795838132904084528390957840\ 2305462088485422327168004011521909739829463775185901286938346520126914654054978\ 5965175714328130413724098300521478840112184223751555709899527162812981578862742\ 3088819509946130807400920488344011920726909043595157385623859423181631623590539\ 48673350053612464132914240, 2.6880897902802873166935210650669905910646822346624\ 9396819876648694156886204961689171906778603001219201641556049667509509229331622\ 9054778870090838190842287633617446945247329844329423823549785115869754012154527\ 4363720866976519583674422679006870909474336839098099250560963656861274569517817\ 6053406104649076449870883485711960909334300796672904533530151667197777474409655\ 7745544599970544829201154866286266707267700493583855098631234990575435084492084\ 1435074349419599783620260823955760314006053673805137055396050400937, 2.69075397\ 3483674086577899220551034176351076074350264388721951445245398851891507237032979\ 7740761337001402317925990635610602618780634547534339670013085920284974139789123\ 8299949385661201477758909478700946206853046367107128968520228070490889473311391\ 4447528060987158106131753231258392167153234447839925561414633302136943382123336\ 0455197714207157148897766504442187641644569098167958838589753580732352108366962\ 5238886478321779897518230482272953293678731656509851731880392769697463921885366\ 49517736870067261501773065014, 2.6930811472556647435254583028825249710780110567\ 5065033913412024251941832637315615119122682339878117833479324726033670580481518\ 0401574984772422954092715665583338530895947902109080589614051820516459795718956\ 4641668145515827512741174686994227516055765505168738896499073319633418512964894\ 1931512635636354073593414941596098337502661302778085068529944984891097723262542\ 8403388647460634212429184040522908829487132405699843625820411191051684118421728\ 7786428135730566799980247231931909452076095982294097113153455268773438, 2.69512\ 5743583017746642880839266368300787976533372402545036303658553504238708336755024\ 9911526092008182501101412229555016520470677773241904805807156746030876402227322\ 0830840516003641540918785215250969418618048834582906024237804418253640336781098\ 5676120250847681751237717613213141062731611159142870283921751641609046035543659\ 7588925665336811791748498443017575708750884998885930499206558758000482251906444\ 8371205850024619510704574702678243629296732822807270912641853472418880957861822\ 97359206947285757181597418813374, 2.6969316512181985107436717076837910275762955\ 9186541032964218881931495687733155157966641815571237673255696808000543361671421\ 8416461577656737283378604400006602924223583024821128553024049275758187407217580\ 2544094592747767079828563731175083531401964309689881875752036462723174834582105\ 1640879006301265923620797675820885201084148803785583692022411103851726731330350\ 0974602929832789616890393335028794151245183818083228710456061271238667648458663\ 4519336262655292513128504087222201109885902703674868481740514299705789213, 2.69\ 8534570762943290831975849520766772332135123538386904132504700272543707933292745\ 3493612869920428539317059902936665220123016531036300837591136385388240611549202\ 6257919250527095258806882545137121148827824029831965026200708346607954686767187\ 1347079501309170083540655428440946688110423464873592868286906371810823489437463\ 0155838610196691131089185408443176007846293400821435554318884572550774841798261\ 2655494054025080834800395135754324708329986121586423635375224832626604305707804\ 65341326467171072289671427845115339, 2.6999637790184385524486218882411222780652\ 9757499255006308539137540119477257071590225231527339095100318090360157126173019\ 4912652567563935291834662533785373219608012715107556232708143893223281460716440\ 9972000011372634244393443869687555383703497204379573610660855272846581173623438\ 6986977764198723003579785111849821188183382762180675143596718694577146753278032\ 0757346565908514021744435318540722877726451201583634622611834657370732013023041\ 7014839035492159779127598234463374774680465572012220645082359796657133458359, 2\ .701243465830787302795609978598094980090100627817465925605552850286788340948708\ 5679681721403892797445301701648589680632418581548431786174466487684663902355300\ 1855995301135505996393823736253350483317508718478780855068389158472432109628852\ 3277288238650900044845180739113013377856119911540506792673737783078537627329890\ 4021085580959789774549256098027167291819204924995856746659459811684671518424649\ 8606590195311452900003150178802482141974918243773222670265543345394934582963994\ 33003279941960923663268713286507367036, 2.7023937576874035130697952638006399395\ 9867625615974274667885741995373386629535798723414207181893598854167385816435875\ 1824519939761494724754411111098144909817367164694555437909026537840911192451141\ 9784534337661009524957493215347573602007695547294333901693965195422381531731349\ 2733125893987103281521850653460714773275098607974010755369758181736016038987063\ 0125181906332420491298507648298045167683842023197226635726054405231932239675743\ 1420259141917314738700324271504488747309699164850408051223078428268243908520860 , 2.703431509123490264964316110659231194633760794233814839657411743725109556388\ 0968618842485315757621669113356101282612886150484615639163141218468867976484481\ 9944035439473277284180449623238623868726974815113746946964019487739732775026467\ 1525808377439083852298283985333009458574827590293844201881535523075799461278562\ 1870300672882670824605065127754815240953063186229787854326230900951561922518268\ 0989593275762300825384256621670374173981960411058323227946543683006980668140308\ 36120444511820291298200004117499764578320, 2.7043709201691140423032631846392326\ 6033288778267673382797515714099447222639096021827673540228286857252312796539497\ 5169333582827667442239803463242798327206270315099869645575392743926182339602172\ 7258643907229385207260164070272578925607994153521781181897680922750113391755960\ 4145461437333450023128745633766132126877283873167920214635151656097281908205217\ 1706237404412559380171384072378107845685042645495553537653824027656469393831675\ 4521596762571364425875034714612574291257394501563382384249679942895428121810439\ 296, 2.705224022156998560385482354921739750750192432368621369118885219057052340\ 2336455274999846251545614371098416467501606700128252409236522307207021134644535\ 5482388244411246556448830968638317282232173048898008907737027580417230421108587\ 9954625750833839568501886844377992048500535533030632016488044999522706145620131\ 6429538365776124933261690512985732924908560901543969305497166444694060524306168\ 2079973015940812744926974564896953886475758255757875808246463893057217722135389\ 54015319920845171542750082816132791952368578], [5.6522336740340921168666389501514924878485065217959064435069007538708215191095\ 5868583162545520817714458960424175270397901623351378513369189178749214172820548\ 0573791671712912798882888962253008430618992339395342149837297999028177497583525\ 9467234974350990055857415158151858375812268328464667929051780709897089062792600\ 0371057816924170191777010738014022508625341060030694861041237052959344907413688\ 6308930426847585940082101694201660590909449615201879416351977037284341598955930\ 7896494147768201335106920489253732611860, 2.71828182845904523536028747135266249\ 7757247093699959574966967627724076630353547594571382178525166427427466391932003\ 0599218174135966290435729003342952605956307381323286279434907632338298807531952\ 5101901157383418793070215408914993488416750924476146066808226480016847741185374\ 2345442437107539077744992069551702761838606261331384583000752044933826560297606\ 7371132007093287091274437470472306969772093101416928368190255151086574637721112\ 5238978442505695369677078544996996794686445490598793163688923009879312773617821\ 54, 2.0679184631782340860597414140497218488677206178409950538084489808370703589\ 3113363084109469525336167997382515011031379556711170028744951991278990614087959\ 2726767033090127205081141981177334837007164900161478873400469258932982642097171\ 3765594459425624414781021415850564403278327934534161055608328574846030553948670\ 9823297078750282780584132725494529759723533716548230293687368092124133139481355\ 4019318253816037065022748502285252815109804436950995782857521078106206865813210\ 2830646334384779271590036472608737607625161, 1.78131217411080242968090161098830\ 8492805623649918020580061424134994271642155111690651647219551741118953269844806\ 3360919176301198157877087440964446855809011303052752631065508895382405374356895\ 1474640588046781884434857925362944477842495003838626765656497404324799456244622\ 1292194029339945444082607758458985703346821154800796372261316810632766751162535\ 1098592073481643489629639563770432568183300638332168599192265698420976862046255\ 4989304482999405658641199541996715578451471600462977877520593349944898378869145\ 90915, 1.6186211078600753247506329379065393667451817566252397815687431536935368\ 3654559627329389267772673955119888479196543679654092115351656831248837195999271\ 6062148394458037853326317201241528409911804452718020232672442867785500485856787\ 2845532338161214823528868624268805794373328688994998664867692171936469155684104\ 5701340737876362948982701718325239041921217483656633885516389584058550853608100\ 7082841902979470661136082087446707944715882242579163811959664736860561020421945\ 4545151184413695171144917563382037122199377629, 1.51318025074488682960354780003\ 1452764028407905673642825388366036490345260208255457360200416671332226191696730\ 1637873538867673752326314780671312539103601090923211419318139235470527973605456\ 6733300000456764283594934586013990063852448230570012572070814323738789327710003\ 0475971743959028807227207587964247664227601272173238247511155610399926018778221\ 2141618561097634243961408143929056105083359624489427735543726096094347262978704\ 1343474720974178389849169573433169017277229165007813911457349781361533439498234\ 51607301, 1.4390313796955753683045700955280219619420627016557807791346386844220\ 2650638695824683244092072439667809439472223566800838416377578611761099246580069\ 6605359128618303710000748665224276413977204663826615244402250733688516375210817\ 6141009827398285497389904276551547154977125177451691455690896436543259982841935\ 3329468082679402121425066587038410215438617335476263553179631476904277246552635\ 8089157607256977627650670736146558237001556072475487094658995340096608994860908\ 4019527287221561840641340325677664902085369652138, 1.38391950756858238379982264\ 4862881676389720618417954432516861707110290831269052077752424373587829118288830\ 3951908125542190417090584895221863996614459988278703795149082918405695289621790\ 4824978041535647456415242407459605440750323433633186445685443366586746434756155\ 3211689138844012883626383969591319929482530249872603766492642339946544674797450\ 0233003166648910566530724518182811752129619992805446861708360932690522360258117\ 4531450791883247128221004310706014085625374810924742751507841753647503037897317\ 77904880296, 1.3412828314865900408064051587257992929170857593049243229415020546\ 0252529731939449294128342607375430456440892456931161614212191595251855063867843\ 9018888853146959032083275547969796677024489959933070889594966565616188364450228\ 4682741617610521993213942813462994223063339347782473521763068584518023163424686\ 8797593859938956082525658070786872895940833368075267359589705421728398194960301\ 9065547220030433693785968740228358382341959339986941464836635436911800789250520\ 5356636866718876048481724920070175853165747476421491, 1.30728071857244348249062\ 7115829603306960122693171704867460295311119402156427241648126629326780227441862\ 0842103197171997482703236183443223552222422204872867216195013018979754930945372\ 1025875658604023085901152160749795983436964722135874848412003218075801848505101\ 7692544852573270979296469941696727574692050565541812285526760875109744898124013\ 1136588968034735081382066080061111795400032975505024109412231352445524328198895\ 7636749790165899683363255999958587470555264952643164756894405782214060618770217\ 90023192441089, 1.2795108584131342566171259118324508960562877770733360757331826\ 3524544933557242578250760591819880900925158117369808099897127142062448433705436\ 0274576646417769566155346423524605151658001537141745144908921978084680726876087\ 5762134737288642737488673597992497942714271716550591020987960532956080825393171\ 5333147434175175734603635551717163877895020629944293003320147719808128332849980\ 8427438186964105873868730603946175660145249216899615057404946457309445823201285\ 1009992129128546266823883853609845225122911616229759024, 1.25639118727418183105\ 1847753832785848100811364709346611287423040837480044764108555592304198861929232\ 9533239599378968301618021080081205325014368766948473451093219169081914786571115\ 1291604890860136681786816738677779013739076931725203280864665099401729158852497\ 7380365972565993542716778919887341895401793420386664821464329511275577373591625\ 2231447703163639895246474345712015213495416068981206323726986528598181882432932\ 6450531274739925015776197319773227451205798222232382235611160769759394864376991\ 84167078537730262, 1.2368360691004770236938254065356456019328302286371793929882\ 0490145170528049798553290855979769349403903216458584307359341985032922375952338\ 4141589012537528058887523180568853328491623563792884784653715203693860919013845\ 7708621629310527585973531280359290722303760136266998524533409779550115607380544\ 2679123677552619717205964043409975326642983481959874307522596226795776222843879\ 8309193994334096557842975184232982924374392812341308200845534187439858137083551\ 9659701671274380705621901633899475114133282315321542489102, 1.22007504284194894\ 5632518438972631113447761594944441453062437271641266749043940776655117046117592\ 1182791429492690147005214828560891630322969587769543074219161243309594443619946\ 9123757121702399510715518817719573068002859684020476066344579838143446411146103\ 5935241015309974796372005016822766448413689156581488951552406625897487397890261\ 9727634522476344614586774423025630799801817462773167449910979738515022997054868\ 9064076338581531026937675932609957621494715020456492089887665493277677840219552\ 74567848437004199258, 1.2055457839136410025647045145493213029428154846033217133\ 9404443967027765077469894194404912664067866769343210218332702043538048927836415\ 1710252425012049716414988670521028189408244847908216748458727467814083800080030\ 8002977752813178743708521877968030796130311432023992220150430273939068023948337\ 3399350551773434968040754254430460892397718696508027854365071267904678034414484\ 9944130969580256103294672622176785917138151932323439648280045252108952348116402\ 1517081640089590456194009586887765794130488986545786864091957, 1.19282802664441\ 8601394938932790841558126296885520285950314685655299924078038682014878208812823\ 0454926558957952123337817882855195739413793537734694016899049117167392199162643\ 3253234851297081699913309693194980654706474431368760265617723056259660107205917\ 9192982466985390479320197253791144850767293443019708680271512255709709331516783\ 1110204009453368549694502112206459820389412723368713987480416748708994123643928\ 1713468784749690271175667257652454480793115021724778176322361204989901041624012\ 10218595762170622189856, 1.1816012217492768059817749521668392453890523917175949\ 2840615179380902520445395944863619159817429438219746211619946480792912819059138\ 3629111630421039741790354398933344296314285040466937698382619602246687793876986\ 2129021954050484123872814027480119437229882760618419289981806201703245853891868\ 7933550638127140145169693932296677029420322274477104878730149886917418422680784\ 4998999030831862090221364628564460397966580985605948723796732498725177080811639\ 7848349637146843444661530563643478288312921863819612663335286833, 1.17161652477\ 6621391711437999013137051350255789966362806244151909718850861582448680785886534\ 7567185722947586533217264627167768839448539691292989532827370970397911322133266\ 2798294462683419363951702192073896202739130272277886336028397246981015681849264\ 4482863513829242007905047741992033103296232763986084953495752298338197067063160\ 2660899477766349495490821918093453409542025762773157380784560898679576816883594\ 4311798196685303751010094064968066530585458968550561376794449562719738343668060\ 22160676728178531521190900, 1.1626777479467813476653448158826198695138091364948\ 6565222483994132401877543535185041465022155344171656279281889225107496657384951\ 3038644467172016893307380820275887607962897730169394067064677781825644735621413\ 4747052009722022034240051725064222128351338536018180295640604029476816893574946\ 4862113442865401941908914842396201151851945235799313219232005705912075724570727\ 6624949527318577731746329046084534042961780938202365460779585193987154596444667\ 3434998791408823240652798964244670643239263342509920761389420707913, 1.15462809\ 2164174727611142616052422059535731250181115363751808548678922676819626878274430\ 1946123483434598733106535355931523333000242633997050048376249068721338085992072\ 5196338058332899113406011313794869410285347144190698220950881043823450333229599\ 7892175673783877275110851797247376624407604493137268485635087142846871481549461\ 9449624965134283100429873462297163799324682812456748419891892763324090491786422\ 9354385062411055169543769176755284764962329722162325157133880922875940670552783\ 98839780840473579944707582066, 1.1473407075275255816902149459558773285059477147\ 9617795796541611182299265102780663616215790011206005465783431071182145021788943\ 4344899453016399870906580830462292720628436847332674215472521536733126147972298\ 4842804664335887598960980757773753511172298688475773455855754900849435345039538\ 8131800140970080821158226426887385457609497684753286737624796617513171058729934\ 2374710493959510744080763406012975321847726765320244806637240267264290031563637\ 2717648789833343967683698125691576088631781867323868647882512731289700, 1.14071\ 1850264204332970735308083760547686104375889325676986875212766781529598482401395\ 3446964926754646213629646711792885860888772635657526795070478493272459043240114\ 9021149765125597282614912114172960963270612117564572669194490615538047407090166\ 0586206434846886139111229866265032607252204830114980171079841165804223029804743\ 3204495120098634693479198666331696970322772068038216654688089943116296172026718\ 7677427848539425228497591039066049189941059822776142850014585721750380830345219\ 24271514099353284835372753605575, 1.1346558379170456659089982811759455779811098\ 3486836654606585886036494538702278359249333027721996629240495101749558414071422\ 5041452200727934469029134188970400735081013365948257150118312894770720937240064\ 6429812881763828734275359767488901987103693744862848135937921910558726861268279\ 6805241362460296591457620550495716212680375564377575159439967732376968120570291\ 8857760748089073726926745997722395867055824829803116513370885660853358485138977\ 9928514692876694425625428002492911298490833993491364319562227765696605880, 1.12\ 9101273645753061578921045243418151741105355715611313221793565075658210525609386\ 7198771980509431584594152421180226371380260192363133233944190874669241062907507\ 0183818956799746964576298742848060638646184676973883074964188977618129492057463\ 2272600908303503900013558175870536467303264015142872135762954621209155940323056\ 4619843573136366059011258580355454361100673068767113660877989919864827661181569\ 3871165171730386781689040045362015185122108065629013072901853025702698823468510\ 18673003064498755743381124221250049, 1.1239881815243323659291519710189156713374\ 2363925677656531347151643257428352729371909135468531369019631851454324524218118\ 3367558188707892333545470849469111384600963803722368296836017112480827913812618\ 7686368848782961844628241975679296045950470104764682608951447355144281948374161\ 8447193431001414897532447533377188938811760314918137661512277966145412726385648\ 0012651134697986861824202943023958347781640613864273755325787688004795173257563\ 5219227160907142846327118559129035269968627485111999629534582880465108657281, 1\ .119265805892796349698217648869965171619003513186154116079300258565251747644045\ 0882256451687305089001352230487106078121127870052529029665161822904040071543407\ 2749726619357253457941910068050558485204191735543748752559126392842350852314866\ 4576730625132951920516432332677923071510741243894888844095560228066732520863081\ 4561891687337425183875189134336509413611996986129871672282926740361354337845204\ 1027012100299011364658669893586764529396774543908541798426031137426519946452114\ 03799329339324996791763145814795658536, 1.1148909015744327102845774902280296884\ 1977035582762450166162015618741600389829889948241952632043654994428023711372556\ 4360226840007092851554698190682536913067929708106529469206755007922330471144989\ 0513250411108872997340658515767921059185279143120890819470797351254702385811127\ 5132924364350132130748388817474322669254312239416962706209026482868813351976004\ 6245244198585428495783758891273237446775292604843501313454078470560175396821782\ 9400405950383926962899520498401391118126674417326621452297415618173143676175182 , 1.110826391605405156256670173199022482539393478191036465272996961552674681413\ 1750264311092047324270789256588605470991550261133726894623838210112249084780258\ 7730319576372144591871059926798379388868250316148493030731645245469913229562387\ 4122690992383287667763219172411890132683922111899763857438941596538448905069084\ 7379018933760578169074083813933553282746977801662499310930730505976920524803475\ 3076671750646010052705621974363435585403937499417769486774111061096704446774476\ 40844885025443931931890522997326933642162, 1.1070403033680916625975203325722540\ 2852089523829429575241605595646151603232498931831441799908795802069943191891116\ 6823840110127836738464371014312808250195320067591135177530529694573295468103981\ 2503781328276518933268642784419822315787021264948812465545037287848649645425678\ 0779721504228304745977304885736387573033966735306440170977424402563445304135287\ 7044975633004008049795837942355570490728862185092032921776905659169361595968852\ 1591671142290132465439729342167887045566889100458868310751199368587427543275987\ 278, 1.103504917915968710361651035164622819170289487501207987073036374539303557\ 7373832860640418655678469948560814570981441738833489677872032603403651140129485\ 6308730439924238766198348928696285938070221647937975815407341452038936053089885\ 1547902372074926692486945716026601831071747066629742721383221696897463511559507\ 8868202425280813562243590892479660852465036969575217527199871356390734194786582\ 1292242083804307695829933522521166198219730410894155421072332933117781146523506\ 35369139148325145376608758113877455103413819], [1.0747269923861924435980263676714240820826112262614815985935787951950578775310\ 4085231030848414171036582275513848037561216331174290207071693091221080984841216\ 1725119615286402813414897591565755146240555074520443377142894094500222886118414\ 1738963774927670149285141427057923891798029730630137589913998293406286438632415\ 4859198424796136300143963251153224802321239704428451004208684924124462099910813\ 2177561990977523948643741793772460702790009955068316796060007689744132385225116\ 9221204181564429255654066212833549203019, 1.03939630530375252256080300581696156\ 9120049652186974142242141618398880937288882531467679076954581678010926680841290\ 5483112592913335079723986267353434193621076467814920054807487585925472102120443\ 9301779049395748624528862127874587222755325710377048419157065708774324942101695\ 4654406029097769018871324859344823160749866288168755027179081816536354762659012\ 6917272854360135804384288431622006805462452986574135023862596900532659990053413\ 7004022606029129040997702575463682769992009247367902112822986588048232601358288\ 82, 1.0263508658475739399959479443836764698244587892022495881351425150746815925\ 9482005399325642649905532490997395090347427393673402894756409916990326794914569\ 8704302998074614107299979455184746588919738850170010816466058992647891139314625\ 1911898192567058523921845530254737647760826298874583707779520465480431116718954\ 0938412645454068266027981469936297874273610512693606376198602664756046701985085\ 3776348341756946410604403108668721001973717581321528457503224814523898968024057\ 2693788460408922993431818275595093677702064, 1.00473765845453741247688479678177\ 3077249801397680431107983531350919168502621096358662199283933711842168503642246\ 3615204831308734448792271468187155639984861831568344039731904135277170636401459\ 0326863534123788762214448828820547030513985063613463651120742732667002429498546\ 6116632642238571555641503232970353736513638992898419901859022262431699180661613\ 9434610175822645657359187760905199408461812713716755831755502701565983032726582\ 7888833771587040281671191804108233919143376985954987736094084949336106253722011\ 96105, 1.0724157458234223973351490968853416714966723746045754384000158982795113\ 3491008779180932529953074671848016547305655684639941660604377487317833329773794\ 4116406370957775349600433501805371325929893310728641564172503925217697432778224\ 4003048906554158334582602209201453738800733140696411402824931021823896006105300\ 3424415080379253378507347499954636896856606426370085656722282677389474881203599\ 7063814332229338568884459608432066958240583026756843203214176502499622212543598\ 8808020187140631240594096953303718828015316770, 1.04989857394870826837248426993\ 3998909800234788146243875182563061891431858065280995632799127672644510620951952\ 2011159569268999370215026246428733729365493105593707540539113818591557479534591\ 1144546943922755252952197304106155684357912457214052904563360307008570889976143\ 4230988850678946512806924559479891917537359003668108513253729042989391543041340\ 9711785091051985283460720913310782922094680877387098480124672467622025539288196\ 9795799799923164080559195507398159909153676838242585082293160318979461227695547\ 96673974, 1.0182223810050785607861778772709821340089714067675654510318231436524\ 8932120074665770741022228162780615466359129313003448847902575731379981646651863\ 4125865412641882374004999127062341011270789285804020334458182803155583139325073\ 5322756199983399782761377711834511420291671542814819895482759103978431008751678\ 6921325779152746247536213547200429517017139390637418772594949575260392533846693\ 2257111075754767163956090292532616321772305545056548950127285735897782398605130\ 7657252324967937353655461043081303113381726866391, 1.00571229245734225505333241\ 8123416805438647932692024197011454419889394312503844100916554209119129864138476\ 0775727891669085846986341769410833731363330743397465932942543562485477320817314\ 4126784841101457116240825302983655547003902795735300303927229344191899857601082\ 4114544816811296851971399646963615612757348389555589447127223031940523861407595\ 9878369719559157381602354753944610544787733107479824551062838306780344792887713\ 3922771374077067636956776911034625620014870552303504021809937891317303711092196\ 22451636402, 1.0709289312738888220177558192343841753357117576784518697559569597\ 1066189071897929135043409597148271246449563736983483282672616364065320688545614\ 0954492179723276190076693328077425722715884188582367234913254908498259956729018\ 2767700505277997173092015193549550859432745073817949176592183600200702503718284\ 5050034144548495875385194928572272855481245791701514856764366961245163746052096\ 9453616782523941152025579002578022299968967528986123012712528459204266629115945\ 9600119946124439098594492281541948400402284444250798, 1.05778831155323132969512\ 0719297763335143989654410442886643567123804152628254590234800781829211724834252\ 5572023907724653940201990727593977861156070862098800194853215229138860232393032\ 6479641272331191209345453008335061372377886002983793874672947585126803241811980\ 3697633893675172527697673599902090783173964195292100608380667501611285264022634\ 3170392891683823986006191797885377358641863207061880736291181050433310461556495\ 3643472372348745261623262265588698212545817889567156144787966857635067231129649\ 72778761216135, 1.0370818194731809820245913303774797012419365772065553914886017\ 2324303125222105944357084036516252108472699639898478664902712309469840692929729\ 1944602505986260492413836422883169459145811723763890159409562880975124613691251\ 2424523824874534249154753316237029638351849273915284450534409727696638982623287\ 6295127337983300386562645595583317278362996898772176133411989434725274424932529\ 0838720039868668680838493510050428188149821651712825066574053383502449965022187\ 3353825174202783131928980742204011905402563242782506460, 1.02839624901599962722\ 8299016405204581575812688400041857994006301652110801976274856924617814823654898\ 0928099698588871727451948480658059038463742391613551608165134415068195487394055\ 2223419448044322644788222667819868625003244464717893141990604382645064988210864\ 6246839222330600840777559781856393696017117950406359106476681573969685842965147\ 1912370440779240322866388137848043190385746783754650230911213219946241463506825\ 9519248424585987065535660621426432917873465779416674601199729462009824045935850\ 41913145827625652, 1.0131659316374820417735761764166147072270010313615088056017\ 7239182316847188121981484852573156876797219929972667286603382151603357805034365\ 2082179679866740188503669144360235152604939346962690648000486522991238436781892\ 4118005207867653955547627218939002673221457470177722474217662324473869741325956\ 4202240051250844344916690831647807930825476518932891862002113831407698633635412\ 7180003523515914117617701514757931008811967551847120233956345970423633747688705\ 7828135268912900348572178310531005234224842009669644298730, 1.00636732473429727\ 7348973676684997111272130485180346763896508625688318460532431359249457754737708\ 5194523277898961478065429725683351655921065118917687129022309349507430724616214\ 1785108853258966187625524029666631227722851709552565750788681386981273249832955\ 2740128779244673844487682318540809108759175795572708296565800943165803027443241\ 6799787085835987517093848777959894767741980385342807016268482421397165861679652\ 2660870603987050828792928822272572548781220176043412008333581226434940743262021\ 87470128567630576679, 1.0691244986870828800325068081061241255113789195304159420\ 3281578219551685190873842361665803544500974378567824028928613536266048036680225\ 3463403792201576441602833859886672900957236114333273248768477201287654457775797\ 4409711424115639997845925748871526545379207023811552231860474823006280103683140\ 7010687340993072477194671629309040168580413547077497967955779857177888872919192\ 1957005625956192968086755017286079220746619871564177351809167988713838121571536\ 8722932614088316336605163066768686084651616600810353144822108, 1.04299258048915\ 8488830472268458009305680364536860569861931736694138271254170102392200002816154\ 6130984966676783285621575549927844746569272089130483083278648192417608928913494\ 1118576360188255349734346431679571039228565539243933065890494912437370250399505\ 8546037434125732783802789311049110590249019902420349216655181684535084322746427\ 7072731482054799804136900907265574276879254474727120769156109960880730787073511\ 8628265745236883387184866573902687388703820542309947625370884175568616314021274\ 97914006091835495949020, 1.0233659195627477877498360936477623034264920414771607\ 1262577621966620293713426026899890036676714788312103697797291130694866892178169\ 8238365270640697970021851554671037507872156015299915025024480711794976298102967\ 2260516540802554951599406194545698357548581546557914187274977729859929033665309\ 8695466534128731485502397471896975417324307496791074062430807666780397582083289\ 8113966058909366764340999758117974889081404702933610377707701858492068147358140\ 8112297067401934865548895810085538466275464343045936337339251678, 1.00719216741\ 0056150285843065599177873533566028675363930857243456836250719047413485443733802\ 9235219398494966515343084984159173547669683141304221393219994286901472679571591\ 7527720209449645011914325360836663388383949027671801782511080898406095417704223\ 6927259111009108214372194915876612334704462971317928858068378694962504210991575\ 1213759513947459588106778141589787536747787084374841626446733989210815348614430\ 6530477492435149787697977120968163475810315349714183785835673025947409738397348\ 60130936594206013046643876, 1.0640191638481303955825941397422652717977243921604\ 7576345336702195085436857886409768707492810257495305890613085209807252118226862\ 7722250524212565816590841935378515258121917040459957396289358356711107155186463\ 4533939475919699951781401802443688127363774411892155149403111537723909362748421\ 6739351777558621254215973092696425791535799267533689020438048486078601910521838\ 3886273707164764695646028921105169878904860627123901025589133678649061879621663\ 7497415637596863130864580743330937198625105693221438421275188846828, 1.00970835\ 0338577076444968583173245325763592869233265966602659464561456808992540137614461\ 5079355451213612873763489489192807651147329311273134988150040911266876932010067\ 3371723290319417007111991202703972659332953731483358294805514165074745961448092\ 0204380622259396681360009837192599148404140627043099863102802821847574002024854\ 0807542757363952145945371441182204331702523564351380837122260238725124784026313\ 1084142444271386921909306219205001179237700620867920322421852567854362543631753\ 09043985960488051412888205491, 1.0602118830566403661367656401308989473721729225\ 4271376952830530533077302535217894024412317589639253867050407484422940387329631\ 5897774318443574913759166355322493887359561153968934351859837845115248289232649\ 9572526563042803168264598529705865287425952200911619463926205347686044960678227\ 7414025673648107277194905017166086172933964223171589266507212169163099653997808\ 1989448586076495831641188190987303046331631358683253296765390678298046243653223\ 4215200817356429810350982697234506753013320972219268491575032478504402, 1.04081\ 6159696723288332734157008439240591428177984064056777633875388008458134209174736\ 6554378322936688951529928286168225167909619136460456941490993149006223364200083\ 7470783705212886176227382365258809966520253355471194201927971868967047036320271\ 5153949425703602683633497089096999036893690107757082798200019943437918866720721\ 8386654287396509152371031636285869315575409326749747148045714253648819943873598\ 6622813255002564063804927680740253674900417266929708702891719197469394753741779\ 70440340079513473681409964253824, 1.0251452661922323432078273334187230424316818\ 2655554489033895607946939500103662852536999530170517464038323694766027082945806\ 2909194959246719282505321998214545249539834064197593351325388820196902403562165\ 8212957117491931441531539144800535567840692546127710711677792605420005689317550\ 4131522702512896690243957638281937853885222547448294809288652907533240874231223\ 8359301128452851829614761731484794869833239408364401827801670737299800005329700\ 1188344779725554638231887986806983130426608850823017626095512248867739451, 1.01\ 1768282977254037393595862589757209104493487403986471500743779530944522925601509\ 7965186498195774218309009031296907049232258059913707797806934857514562863050268\ 3689995163967233347397332747607339014389298799512117391739229026126099335902545\ 4672488106060423079239620348405650456651661801454147145671609038391959776199464\ 7898507274563660083203652253927444516606409707101907701736755199351386029693029\ 4984595131754980173227122862815230079667965543069443073019326682446549358026949\ 18769424297109535179817120500989841, 1.0548719633569486065079329725164048167335\ 1515107610975044197420398738882788524353013279230740211027865468300491899684133\ 3037160153899252969813291826436455301425453953693578896630050631056224773192471\ 6166495072188088754083837153070775581640573019190529736392197424509373433218703\ 7251812874689129066610390928008340122672675726651820118279381533461801105034009\ 2673507292436270981255664845930423954818480097426712221085119218367678544187898\ 6629098034552306457522927619776529604441588036206857711790912166499821964114, 1\ .014941606409653625021202554274520285941689307530299792017489106776597476258244\ 0221364703542282566949458618275313598876259753608230501930622468017715858036426\ 5199242954529354609802401824271306276566807368558847200791172199266380932541685\ 8129025935245196472939622422329462393463578148710468593614994333922005898530145\ 7907734221072473574027449414726246724119039382129275881472385153865018804320489\ 1121509450991279773474268394980293645665066740597919015849449490950430606208769\ 18167569426767670411058514068929993514, 1.0467546539813425291304694357311838300\ 4165055354721911558445352655097848426804200367751785833395556758451005654160247\ 3412207826143648245368461719513976580301045287845111174278557928603179668772520\ 5325871553025936475437996413798762541317587346080130011106846725423564716963804\ 5068732320459489238457704408445611589380753462064569800440412487734893446384242\ 6753259046166352080468175514059144506400399809457560669340082260327715527035568\ 0435193610573219216480965985906261600390264119728801983563921966412357864833598 , 1.020473832288040904306674279295507967894344785555876635026646895663851674449\ 2720959723032246302681468382877670261869860831970823529028912890437180416634111\ 9055344778023240933949015588030116841580522913652596779558027286654498722248278\ 8764277999367403645971297129393123127678889484559969721994901612737527459188372\ 0328626300246726385740509837255694981434279379773124156085094140426777514049428\ 5818153071278677463442181491633013032176360283877007062598369540933457576331896\ 91272992272051074357472626528547957545251, 1.0326319557440714726770935339815858\ 9470730282041220766485400981050023387346307020750448750643454933376402795766876\ 5751504549860987605582369598428500938152908833185804796757037025141625243867817\ 2557316954209313018435143410968814874908660143824760591372979477509988525370907\ 8006393687988861926529651860247872107290207695338512003877281021035033622031407\ 2631695375008119942616266425866711136053503972866266413483216192065883102349348\ 7123873521077127827747346495791609989089203667150993685426577895700938647743718\ 056], [1.1788640945072539875113072706431811525307155503503581822009181893332991514585\ 2969415554560983099963715043671700238955157342207263081168608987948738083812258\ 9098502807768456696484308273852320391882818185828744098088905023227573582989590\ 4944409232979966327320797635046167755222082689001489422205130446093971626979090\ 0903328797696735861227513398225539086515792381471176503040093018073692888170281\ 8655882142534526475294679543138684258837869223662034793817946317949632567058333\ 4721027699908312279109771394637519577125, 1.08488829559746133811590743220198549\ 5480155886652801134984001805368711872664555678658769651745894987705925906448055\ 1405711128332891102235079162886279210662019815376067206557728545863425674909942\ 8495933902161450917539814743960388555593649206750990786806377484192070279009682\ 6294868502366696137912831258455877622452702051845770246590213110830903870871887\ 4132603618588649696617494749694511846836756505341528158046672266006668671456159\ 3922176353617703998470065403864136563037659256192129276257839381973235844429306\ 58, 1.0552383210923146532528190634993065733067058706548729445847612488815585791\ 7743171713238571003897706517256888080090101890050827667172810536730032476995190\ 3653625309245915148685544169781481301210071527467814665708465907900641412769662\ 9497721105421373873238303471141538976670209792532205194835404205232230630723941\ 6189245871709243988902087424365761312321975134667851109193633367998497991333199\ 5845434827025770956253858241431524418377897576896535226954833277609190494360099\ 6141393239320008221073041535584003273498892, 1.00954947801821238318928313500329\ 1866765654596735890880704501201930960641659567764136787849665075197510566071190\ 2431357651532374998754336887649190068902809762045288545406014736612976986813648\ 3347404850095413960937316666043218900098951356408578463560270251601510872626857\ 7438452037788248467344914248498812889649500346000786123138897217212157286901800\ 9191223332190980684554464743188653155453254993933358115299020511869726219171453\ 4544710846223058528111667063310364697813238926945547354914214458264373473654269\ 17234, 1.1716958182707326159491897598174597179668938611100815999580298858115663\ 3987127084151281975029883882418586831646004703898781996315244781429688013721620\ 2740758667816279739634683283029307029111874483950314965929704790209643806164053\ 7818094343597818789082365873496148649672992790749266786643376058626322965429805\ 5077331053286638884626441985024540715369829380260115084061519269994387842784009\ 9051612839185559616116778980980709677798607568461726440594841134525712726322339\ 8019662953001959131271240278798037920410805381, 1.11026249192221218838657321322\ 7940260163559617571868041814983408206719762720463542478203813314645399508639025\ 9494880538621114912258049461994019837816119836971298574862717368323159978593420\ 0014273885349027499996477196948784326349440493087450264217228522520378953050717\ 4117265644915150999270574804539897325510915836368879783084974755994996346600618\ 4330908730178749178341652336285604186562464032032103768687024031177037973237254\ 1893602267263375152410010617929263167999276173604876692165379282754060095806077\ 38807233, 1.0376100214280740340310529855216230247219412938689910860508746159179\ 1751706276363301956954215772593806498078005309384061885010273561858134607862614\ 1132532699322814097727424914249275431722309418371781060898543461201038279595387\ 8161420663791824294787721455341562198734928389037086278667515552241450489216901\ 2700960812952039237170028994138557438413544842715003143154481249964691121615228\ 5629411641428759177049411414742739826992914573306411663069792758624697929313316\ 1877165895948152034605951988938561801935935719344, 1.01153284288612952912762021\ 3002435581297318596429992572786400981056642915808503047299589864071062437812975\ 6471484954758927919363978769552476045193962587391127152463440257032401147946148\ 0596032143422574443226854874214534852167315042215320198838631419695184213499828\ 9226024831947624713491544576590809988313908216572758617051322579400708775965678\ 1824283919612566436831138086622885409528903551558587556347434173094118803726381\ 0200632544605947508076863479422427680595869596083009057041628117599297049344709\ 75631968819, 1.1672030689619899304384630179134377271430819996588884730511303923\ 8734512879186659430870174665231569365480196120134262944485762478215684506700518\ 8270936691935383520637795219833260813349590894070435727705644160626221940102059\ 3924339245844850927689871846739949011527184063994194813169376191194223653464913\ 2165818463735217043058668415846938946256869904697976903136519372308528486267175\ 7664371808662033395438358593999103918200020140736495948900055273256996560150371\ 4469973505480293348204993733917546127533058076989198, 1.13046450655531534373783\ 2207349476031960189214369421933677424400939858545022316462247100069165302060366\ 9068799544630458716948716079635524302002706949932563306236721416370063089939097\ 8371461321962878471636293189856930740548107801792583176466634152100021397613180\ 5329846113757059536889650167139263320147132981684020546130209222168085969604553\ 6849464173141148676467578976380979744619170101178366442735949137369565869323107\ 3899254090301445702331122697555484244111625098904478368719393067079326139576241\ 38910007683125, 1.0794907245087869497744960164701230179961884903049778426410586\ 5961947475465531271486167979643896578569627267409970029198368438905910836597520\ 9290934160468603655374497137308640844718409265112224892449206528466626872944119\ 3259242358816761103294487502134215248841969139417124069585389749110222539118464\ 2033040672369933728965299588617638192776819077386237912269338691709844803302251\ 5741953622558591445556008790616919744591432771754342150577855143926730079682192\ 2610410414505880162435063322002047569627987479272401428, 1.05976970242247126599\ 4826827252733760857327158490828402572572255223470479773295730899772839706119005\ 5088868570711918002423892636031156807824504099032873754025437660929542374641537\ 2913789198040463041883565404275019632910549237052699691859660689298249629949266\ 9261507844290542408625235909299085372541193076122519662695549898870169050786234\ 2633079222701647919687176645029927503973958868263902326684534268789597984759685\ 6176401280672500065148770693662088386382227995080785378928848047744224003585824\ 50787634672644685, 1.0269260666710926034777541740475470846437926756516379615281\ 6532600473152970668368513160393049512662212734445479186913712542027610632164942\ 2207174929712354746926878283804347773657453975641243562166796141022532559992222\ 5217620259156873363492152379964776730730626312415473496071649458825749716944332\ 7958900971578237698755954145440158426590096817461095346741386831548486020366283\ 1316348232733732037604715187990854252779474466638314778490290616621010400488315\ 4707523123423700877833171117500642569595252082744937594722, 1.01286953469730793\ 9900668960585619202911482218453763837224419243994031809370588497058661103187469\ 3338439807824812835657989896367133025472358113173812002277346713710537626725104\ 1216892561930555526276912640770998557710695516690059687582623088148642328780834\ 3594871307293034500189044602124742548739128669455582057444138284358853391764668\ 4925138544626854438635897642890496638137022627867327009635246774105237120337615\ 5102290550120444050049487578747927175839816933616273667774490387697333895519746\ 48262361908866219554, 1.1618610177547676587057913216288249307521050308967797107\ 2441892204234711299174525266897045105502413904713139734238402564094430586878163\ 7966529278749062995536764929055501191290196695796637264413685051712804543961052\ 1369247584397754293489401172802935526643134938817605938079900337265954023888087\ 2353120112739599628480812198821421079405570614600310557804465865114154078824082\ 9494785539786151413725297708322638459432996988084094592868779214918402722869950\ 0394456177251681290488940616511967922809525452474311492542524, 1.09340678348462\ 6511200464852618920068943657940949330310054939912029811733388930841055603662380\ 5642297522005374711339968567090859987062589938740321162240705906573945317152560\ 3146485378844980313220704703438450807530960487424994991367311004836783959202976\ 9619421143473821929406394805687447266462947006867347615537948551217730481373793\ 7363757795474459038885053618769104919957405476768901251587412600078928691472019\ 6496071967996592004044253083432067584845125417813517248441608064219860929901254\ 35668666385918241953609, 1.0486963377338569648747830851417330694686570789678609\ 7572176660797068181980832859420714473531684764101708239775037300943302153726211\ 3019507292113292783414740553704209099205041931116904220669108261091297425382621\ 4482736612786111917199196922983268941290115114053810986490076416502506188809693\ 9866252828855319859082128055790330393387445338405431818302343796158036326353590\ 5308053231224142882753563348429641595731308390866968639614924792403186057323583\ 9687419021268073511372871806849280809865975405421098337691829575, 1.01455703979\ 6636618439449173924292441718775552217497995259511290775006620029514550690115646\ 6382724637523044333138938508803431342080261727964277401688603992569603615436370\ 2647328669412630085484533462881906714038843929273447115962692546920538128035981\ 0397172150983250474146198829459616636927528147739684631706828030245421283204697\ 3401657405241795670142404579087673594301277763599993919987641694936752617408802\ 1434889485587044525062288903013088501206373664168748204194007030950553240050023\ 28460183018378668967292305, 1.1473086812384285438075597929986386153149256573033\ 5386096508661386940106676503949636718512449306100715300746823342858452104607893\ 8033062022510940872132428220531155205378176051098243282731528475166276083121336\ 8449988431826723352140861084930539163196902902820591778046444562381051633436181\ 3073368063019068719434225643537346329221338315950014050927908228404218098476041\ 7329809445551848423811198719012661344779023702129231813004811785551896678158950\ 2149305014148400685156830175229670164120880796714827758812962872567, 1.01973484\ 5751055526386869568224320735500719715288907327996889552193321953893738066809233\ 4644406297655697284618968663922331705380167337044752764367141620540715433600488\ 4593584462783158251847684338746648856690556510680652328935498910142272443314155\ 7756267440582678927611178796995959086809482047261272375817347743545953676760936\ 1704929063984136126293940898321718129760007033235048905669589183321265671732735\ 0875499486787772463060910885837510064299153870212130517666910581683838730408352\ 87452245143917005636197681160, 1.1369111375821260132814001887354291410259180988\ 1854485243611123219191984786072128695173329297702143757060586325297537824167679\ 0034853737450720635850804047561744489020311066412669465670557941444504651437388\ 4394795028183556933390722748820787129304387882481878684034363281670021308517077\ 3867211193683398033316480701374869019396478403834318195169966845125410086416879\ 6655027350638774745783017212599640319729801927275735806178432097377934971106547\ 2784415754114744964441726667288066818930379233982385905059607599144888, 1.08823\ 1820259238387496923499009773445949184274090264277675084009890807094632861738488\ 7195803952521687235956807655574846201623371937303687115422337407294720512169442\ 9877460939840092872182577832019584462737683835423974485384644536676077000142668\ 0417910789517667110587849931633965403627839645593381288993828911660904714621149\ 1859140360286928933756371400183874950557717228423790024771036715953332872245953\ 6728531193852559721451620218822727227272333175061312038982214252942642403395431\ 66950606212741439106380432931358, 1.0525861147130832804356928387956855508700576\ 7695695806838276542047527260276394612345800049102377376333086871900869263536363\ 3963953571670122666386081952668183956924598505832290066136113168178315618703715\ 9754362143633746481669558042035375399035211863775458086876996940531341392954457\ 1255636047988052231366898643051055009760281022776229648334304059883695398459838\ 0471936634758773298226708958655440067421003124058361427763482224595392941333682\ 8587598787684963159741116729401514638217967197190480408177289942984927925, 1.02\ 4008331385219043622429361891561498152124471878205920383746059535646654205290450\ 6112610356409870352037159159034646941787605255872873939304313494451883340333143\ 3010912198004367582509618144501776377380974076871612276776085225590892641220697\ 9041296342794442742655598834249340255498168761879215604943200570471171901247194\ 0668182379664832959800254844069528623568221958293736751541627031002217480329353\ 2783162929133268570562980605787445762722393406178249301313669191901862315738377\ 61459477251765839458323099607184451, 1.1228654370673820145787980208079242460236\ 3293441821679155448415447183714625301442777157540093509447782097566597897708197\ 0850863620004802688179455711622048486160567285353505864173912064683605041845880\ 4786629092536322286860314124404641826318538437479238674648352919320442652150365\ 6428056967472775881136742320922934246691769503306809233137449633708110309355659\ 4307541978365618068163307925044173873856065123369887588429269319677264107531501\ 6035345501030036815083628772415660996868943167574858920983580549237245532144, 1\ .030654733388658708345720726075454429578468416155325553936093419189995416327403\ 5132067054837745691678546733056151973580074440180396443152355853554493554427503\ 4861981437005941503257415806895252988459922782504221167010497625799583094538109\ 6042090230171671367909837479089732760947191553642434340598264981005997493263301\ 2190525446646711519020632695185821057738330600664211091227319649874568825116462\ 2936396122375579458679401580298758475437308339659950384244694954537034135374061\ 05107213932572026814884806150993206115, 1.1025028424522344631072752854726712903\ 8065890436358360395877827186362819762145681177949776077178348310657345947025238\ 1439795758057861270225501955061891957727806885687661075932463550123745891695702\ 5506412841212840803611876570450273324190229410097980642165239493146434465794051\ 6523409988905307029457381906608791210381195368860232818342567925618477734073750\ 6169574210998010370320708139551381182193239328928243775383719972258118806896289\ 9831504915441214551667950079712232543460444796732401111419868338439272088699614 , 1.042434635753581557652431105318800097716672727565318370353798837086517147277\ 8189154479607429586262599312517273156247144895824424635791605207346064663349072\ 3200104164001671725130691187957216663894564800420540087003964126178255934707676\ 6928712242761646542483110213537060504016892390481100989827805247726302275746380\ 0392404056798094481107442246047450426172094733746983530564796427237701327729438\ 2490355680909068519153950359467952240084091085396830825146532239794422073045974\ 13046236828100971561156677150098107041846, 1.0692863751452374452836205523766939\ 3602365261528494104689944108077781307879469737946807233392513832682332635989683\ 0367348021696381917445169084981787580029617493703327617815185717331667917089641\ 6523103260328729755705801053600357497294341857383234882390140981840565729077122\ 9247284778762374026913618847128569112598266799178580250320916633779994212704216\ 3648632532455449119454178853785351254629796386965000991525822372429605755236667\ 8530783455720758771611421955619339452826225578071055685654535225059559163638864\ 168], [1.7816348606254349419609327117834541076347111912359930436537514075776448711683\ 4846349821149913380765009825718534213608093869007772718629155558474849635784167\ 7432236305864802578543061704661476251193103280521576906831465287232836115541782\ 6142845821631902022041974713971379986011178467168009319424167943721912131546651\ 8971305245345033489672960809501654706329394364149670053349618660226850010615803\ 4144248059489683506615453815081065686691926596615061913823230434977331598635426\ 5536798557403933166462755571833907673825, 1.29492583501757174024518096661316190\ 5636778850413712459697362918751948002008509706146406326329483924877784291549455\ 0942861871754228771993632218377640143879270313019489449895048765237300174278851\ 8205381890579141103484311420544800063135412861520288068659665569796072498983417\ 0139476608473793761053117266539202362291541887644695246968463464712450312654920\ 7097811421389204460179466437163643718756080150861897611287800933113986139821585\ 4507841935963814560398520509185613899944717455994656770562650631639897356696968\ 06, 1.1816317823834431738720704449147274437201820529339575700765466737154232637\ 9048594314473342953588336137440438265591982518742951658701940488359243025099779\ 4468172191242039137646870724072440878712991983601720329834874198959642713144830\ 7351827529933324739600402597541951344715071599121156856890461415871644724955583\ 2868807394274252161298460060062500942325867382156954823936020966049964441664272\ 0422938940286555385303901606291486656475994084078513223114405335344124808300935\ 4447513089065892893155920176625447942054673, 1.02908266744409479572714537783160\ 0068146966120120496584389286312662216144184016734181254559230703528019926702613\ 3786051474242156230810403263481366140691484961016131018805581859494026764456581\ 7248428341298778950685576822431928861782642139160078148956835711388795125190745\ 8938293868910255772095237197015106785022605473689537452696209149617901426954300\ 7982374470342528361790530390507696923255634694713425623201854262655678331892595\ 7592655545430958745002643704249856382648718848582612189680018419219202769720462\ 11616, 1.7334614906066133307609973563002251889688105157481343848435096476945412\ 8796478634650617703719037354720947586964950171950620359400615498387255202992236\ 2718102905618729110906708322152038143650357084017277863342880048486994765676865\ 0343003122671414919327245699278444255896592576015312575730917021454616017964891\ 4854071580124629039479349889878156508495023358584074209599679753952625763600318\ 2627547010207627500192710659200002359255391013168678666149762630314239825132015\ 7741830479513818116058813116265240598894521186, 1.40341625546561944345066314784\ 4077996846949787775658465217226347317090024623801519321693086136550739954621657\ 6834852090995520701094993358717876354802560911982292111486934594879982920651728\ 5815279397603125008815718434994679503600856195909708229449712979270128234217879\ 4303514141553044175983678720182044872924167481234416479139766492867694183980111\ 5160246284277079195155293769362240075914289962318611502543868890074797888704375\ 4961175890966989708364193542620556650341087226569468523964720082943024812697169\ 29350571, 1.1199407620296751060703956267935284542449947188987104934931161244344\ 9192962616002422496043426907406834792326815182052098971993988755955789988308894\ 2220937312124088010574999140461306832928579303136989973419550148833185658683060\ 1152127652932268982543431922109235109652235607417979566148135248096004570382146\ 7833776186108781148002767285170359830870782676243566888006974717559737747362388\ 3860676329385476959776845626420173977639294724694602236568864430021978270154805\ 0622210353485371398368171396905595969845448306232, 1.03523419254546607090679187\ 6823885303868006003579748357279249122269938421532032982611032218379803908107625\ 7410442674290226968815347290024058663763256553637078575232225122110483130125270\ 4509521222147436407813421763832476561187452555916064484213054929500420982409547\ 6581732871385919341198202799555083240995006143584147181447640646978759110817404\ 6186505122456928618418264577535374054411836631039094428547122775071925563864898\ 6440325938623985600365085219566821064555066368451899809835112848834004564882970\ 01524117175, 1.7046687230324319343662819643151534203053950747772741854694936504\ 7497984188585090630233727298306387636356590630068539778059839321647000361064458\ 4139905996228788124792225830663268441693880600090644766613897419078324208907661\ 6850166502863124298768371909899595778628815202755206297492656967919535797478623\ 3854663294971847797595490546605883887682233023714864858905599602316530324195488\ 8497612625979319950908887665850285363063389022859663348318936226480583132011488\ 9509637836297452727878770528728412228022352607454179, 1.49941734200825750879834\ 5440696419513459421897398274823558994712605536646294674315267274457441814436050\ 5236980088255022801252848442961154263294024282848813419408761356817772256514930\ 1149656458106111574161239529320823578027397668136507094336413144135336958706288\ 3157219617549371214181875122760752553915199422024490396399277866753630895615501\ 0273642639074050460103545680500937751533750907444103001928001001794854681061699\ 9656200930050594290191125130837357362192894307564332024175692745792133753805279\ 98954824815512, 1.2733137154996300621439788084313700640189960177710707786225863\ 0494801264399093554381099654011508916516256191830540324127575424666184406522696\ 7722540742778313165822029351260278231003970850387073930579481563692602716962509\ 2004151891085202881081592025760448793156306227033425304869259020691061395051682\ 0307409162211935474157580978372787964995705670118627326939507004031844999139192\ 1004673985794643837989211636347554442839383127293541625799505502329664689011168\ 7088068864723538281983265437938702050752836205200418845, 1.19813051759062860189\ 2113621164681016562009591956326223614826750058002236290756504049711224978034828\ 4019598003236605292951040104440610063841881060076972468747579831801151929497458\ 3694300548900076831026440988849512956059670451077910525961855531924594606671356\ 4842934921104703280683368428594415862507344719723717808383372427622736943471754\ 8675408341153478533457624360948076337915836819227446668524492731320445280690183\ 3177279599354712016191147962905637769080200153870475560889135205194876284017650\ 37694602948625536, 1.0843461173001940328402293077037854752083478327438155358056\ 2364942328006298912472759691877253401686595450259981951481682670074582663951825\ 6869956614386719244401909966578754471220860499233282247783305602986359539724280\ 9455906330160207401252147869306143672649194185780439095470071899578734735662932\ 6637002103902241064715330178496399678805286295391064030297042790136108595307280\ 5065947846315619804299963281697729146552856965697493343545317321662919607758066\ 8563057072585004014981116362030612295770891377938927110576, 1.03940212524596164\ 8270789006201986623987151378864310844984834042598404229253560320061285288485231\ 4112792232210238220711783640884278499179884177919024196351794131278917350484303\ 7788408873005845045860416840970644671415067756032088723081171521675074403328296\ 0678316006158776170414218021262438177763332791588354605055080481105511293137420\ 0415699554997043547193973484836759206956856673278313164151820289460584869785811\ 2804089796346215172507750641793726747770100984661864385329454671808938450101972\ 32486502764345651774, 1.6716788534842968925782201843079412647796755762132081294\ 6046589046716255157154435184880453002853880731628494225914661652883587934287495\ 3993524254179530426309854146464552990529708435675581256091303908098399892965086\ 0007874888016549679782939996243980760247820924754803257774987542449989721752529\ 8704699489162488018870897559771353432052978538994931330959644739041134304628856\ 4395690534083975819149967787732459978384059722372491517424467193814904790796133\ 5890830897481721758223960215723682387205765047971641119664383, 1.33002673794902\ 1798171568810376347161471243008590653318274096014232364545860167132888793115615\ 8120254871047132040040700174849841670857511257873722837373701982716336756408713\ 3736702427071540570179826204300042994524692310903571326296654205684792022842594\ 6520775902267766380600154130957415082346947176073642566475378586274865024344854\ 2730528867196562114575647941773264987752003238649003601840894497180531152357515\ 1522205087621115437448803986850612304013903170375414203981378752170016525018262\ 46809516229534557012466, 1.1582866522329711637332976010924479918535951460981700\ 0570068397675666602897014250541227900312236679251969032809812229091387098914610\ 1080332653010629778791715504734325896064173678936844151148242070961245004314119\ 2394709694622791573569579068327418972802400280231412769850568782608467762231677\ 5702810585908029651291506184246324202309326206720542151455651440567914278503124\ 2722441900236497363160232113629666538831899217582668103309933934375862797610447\ 5933632829371941085018804907641846693366413652506979608009346942, 1.04468958592\ 4847296295487267589736449129986233162160603344407928579072934174601679589675843\ 4219241973656746275330407776166785355853006897351771889728211806534561805486896\ 8200782051213828665680701107519866396898719521257399275484143648735401849429175\ 1941852598164538707370494604557818831833850137549269861787655517590652632921362\ 8893894536369691102385224890755802253503763763047159312824581939626600594618775\ 5636110534116080528624795371081492170226338151886575348810731141181405531711979\ 13486532156533434690894153, 1.5877231789376330763057408142201092640437581326459\ 6045715552515562380521237525993022835624719941059482036618076817907254440121389\ 3080097840430467163626582430223051821569827751479448429177991937200249893164089\ 4896560057266489903570536051171754649705620308977432303510023173052913517528642\ 1415497812776737697000277787805620735588622653821470766591732934123127947706361\ 8266472156185615245790113008130872287479445189408648965270632873087210393308513\ 2754921728643979344393728304950293912555481671777570133867737155809, 1.06109476\ 2916358385119982340359475053349163348142558982185488587456677203325779619842497\ 1167625743043021349319211693677297952055515367210224731021172856485943048516911\ 2605023185916997570865589494214956796974383559746875766701265759043357342346600\ 2146704066096358852252785442072438251724255116254306835895076351766128951313174\ 8197732330416308805843218943911625583669320416594932675038949881622031983243430\ 3028962870236615260607795135483292125194138724084264059067240539362819016527211\ 98282251708960696837667015704, 1.5322228541413733160312962920815747480194435091\ 3493752858101379364900698481156509315838459902316379179860572330874210011274403\ 7750400301724573167248009132464133500035394570711542676055779098978489782979021\ 8343656876463116963093007266256748077465118104795531511637543512141947824212080\ 9204894349984008578654727938173164658491217058549559084253583659209071958374221\ 9541230080060603184624400511729677393969448219454188054324448927033053763322236\ 9135296190482879001205517919221008508382964857370283763537029789258189, 1.30855\ 4448847651454983371858043894416418985872643470829120353592106371500685690255414\ 9844216640662014968498606194444427967305562895032481945078914500173769831172045\ 7091484585954707101924321793847656246164763946420240760084395629273783100784557\ 9155119887647183432366839461885117508492079585503352311088716637852348150022424\ 6222727371037887532230114134215432019775126275355788406693796939075176779677391\ 9805964555121469852319418362967203211693859968269398876306049659639642019627415\ 69946906420719135696828956815637, 1.1721009674002037973898937366315421439602435\ 4801696211383304630094531701820894640650412589413743727413979097104002153830410\ 8993387899074142115349578407684565646863104535619325064351455269907053684166616\ 9769696058441158991528650602857236976102270413965894738501467832252243026667724\ 7203589389785614021039165745419325474107925041908964343049889306418984160232680\ 1217714772884900738117480307141934301330784833232811082729074929290234479589451\ 4000864188660614970631202315626839746542049218224153794589903584868855441, 1.07\ 4845526660821943553163583420180771361294096565492384463537307811438496297775886\ 8536021996112438858032190439180634936203284481093965747123303433823595823894425\ 2299106303797124949957969922450375038579347163560797503112602604015936219655774\ 4782163465949555602262704207069729052028279502673694995947242143507088760838430\ 4800396882323004491243354879611522088292211055201184126439515950974048109690002\ 1350479141672334958748253918200547452184968516536388457441452697928644763793650\ 84638863386759524290626692718162781, 1.4621636149762012768643690370186890570835\ 1102329493194465382953721778441813617855451878124499534107138133717241096639171\ 5225533055115562478164535952294103357183762941660233426751334228330791159819388\ 0522621247651762468994843028946274461895427881864089750656907430506738236768701\ 1407897426172905249762235133394078900570912522612707449450706419536964243030316\ 3574078070182158067901367090096297239292903032961608852751506557741152445227457\ 2521787658975206161435216381226502654439854141496398895455491905851342477834, 1\ .096622711232150957648276777764016792812633267471198958490372152913338313602133\ 9158890859337465058035360028793082247937864191497913366718586234019642205775178\ 8782220624517507006350067124809336986454103919659357388218517461322717097058464\ 2157091139806731299268057288005367757652585559230696296789373216763500455591754\ 2818439195953058708802981465272318227273726805585526366185509260253175722229294\ 6967727472120663956362991830586433392059293913407442314046210764122859198769908\ 29890606122299171591618929388506858375, 1.3689447612972742335986054915552260831\ 0178289550391608437807462809946547601278070763382719624330986895241815848438604\ 6185913191569711459056913612093188528750124085699941376745507500492165129068969\ 7078130459208337109637360692859193986671224315282480296359943787520468488642650\ 3000654440807253111909574847458769158243589804508862301808916767501111293334752\ 9528158817522845917364508315543475285465542508936336729135929174540841760289580\ 3076040115032011449608869688078147058068330129512728287792359488144455931643097 , 1.136445815354954622910854642876768946870263383184849456979662433649986561257\ 2339375348915153220425842423772708671235985203989288109800024070963894266039974\ 8585874986148388710884562779592040006042984440926494605221613927177445667776685\ 7541619917891460659973051908587680183680419832843797861302386498574892364421966\ 4789853173032703107058925845482201580990990593706640154435354946365923317417506\ 5287996727259177723352357537559268190644223221262415098705542134099263397585575\ 31635151919180352485608152014901738302786, 1.2337005501361698273543113749845188\ 9191421242590509882830166867202750560280240065537522167546481902897800323922175\ 2893009721543515253755840951327209748149707623799982025821953821438255154105041\ 0976086690961677706174583214398805673419077224267275322825727116765644490060387\ 2735915875413453333388804486885893801254072356707440954471910474033541484313580\ 0568294265628371716195869791778482268750795653386934061357469509083658094097375\ 6606670565258337260330198710963821659861614683626931887586568040571295562070215\ 672], [1.1277125297605854954472398262734392262554193358243203000448917592736892283485\ 9432599122723361384141082281078394249624909095328458080786047306351645211960382\ 5387732144397204529220057486574584345681674137273564692896739730897112124143314\ 9352101758442819820223626681216501998879982830910064031573490083137462906649734\ 0014979953290276261833989968614445827238076531594273001945803102228443730702448\ 9980090552643385235933646869296994885868780211670911686241929234417159409590401\ 5867720694406679478723559903067938990549, 1.05530004929014454491268827054413576\ 6968622265141341953596910040731189421104769204071114354526884577201270697716746\ 2042404239338520013931764103821048622121808307403329425992417683212662295052741\ 4718698659704677883548540998738839567565765147000813951758218944462657103700825\ 0818936924661151037027042069132260482402194149571380810875225234904567353178084\ 3578174045015657586629607101355540423158678063350477908036827189416720613473158\ 7238562876193673677920899858299822029862995169284236878513925266571163343440203\ 25, 1.0353740233359966346895562133714818031096327582894890649094417051304744334\ 6469630469761165784795433025485370316291363391350901930148699106359950279158942\ 4637482624679972623003208398766979687593905700787136484124610948163774939702853\ 8748755910803627446897236801162927157275687498277317735543363030765521886378426\ 5669305869913113770411258865835853866756406850496284995977828291125938985690543\ 0748409986892558988681413890414455825123110409780764008767706461597136358702129\ 4313461611350091879372170231699609047918904, 1.00599014126888154863794107460825\ 8841827023558407911707076368085165090273377952455757712185462952429205710967085\ 0195063806316975015336702728471019466460033693114657540672863003812431237061885\ 8146898507662854940092946275104698045497943891195192257956935938186639181628868\ 3856348210756252945601992030058847768563131870051091042434695808338308768128832\ 0398464055259571151441600273425242230394397065057626999771311471437759157025817\ 1313831489612241601072859270673365964174266919228418890106433388812711800529020\ 83499, 1.1213069804237635121176080675346209484541917747922709340820126524603084\ 5054515415655953584023054227075231225212265798287986041802807029161325189289418\ 8179830804506267170048147023097024280289220368400957462707020107687754210696636\ 2944799710223607925552311055291853081109419135511268914381624287322658346251882\ 3534266270350825752113528197791710989653938680475600619316674749502106030780638\ 1651613675963758056273045328596573332274012838875542166422323007659444668054906\ 6463321190508489151904904950479691431897458479, 1.07311993761087644022480741677\ 0551944357608000784109418116889484480549450380763985231067006782569143557931533\ 6584830958609014331523531363802395425832998823601112200927916823507156746688253\ 5399928679125017318660193772797025109618040009801158976626014726623920564994838\ 6105540584912152656474219240822465947867330146780909831081922044941829473150131\ 0139091581085830768981755225970442115439480446984433571008924171383827418123701\ 3829714080723982928467677491480607044799644340441840807442091450750151457932297\ 06358618, 1.0238765236927317417234257002574502307653396951383933084992872857547\ 0318147492601570685209555102007840634237913919935506818673724592597002425680196\ 0183643890955564581323423085558248233690311315124630035406765184640067141530330\ 5852849909449758073752830412416762642910857950734045487000328938648248764266505\ 4573858467837324810891140679084603583161014763123364709908945364930725269917521\ 5851975104328806746739995579245432642508705371743569626011181001504926801203561\ 7882756711005452522160993818127840810268965417880, 1.00723990948572377622051222\ 7031104409625451286081497545422015908928624307995681513290872996146632620324829\ 8230929477923119399551625571082119888100445964230807921557109334115885535091489\ 4429958588274601436807751405902602032761869402086450455902603006644801054027592\ 4993391653147738059987395184251164470593772423775918513257058906131001627031371\ 8519657292299097433083756338430559577310807533722946698123152044529282120087316\ 6130423228890393760205152703546239135238864788114516472199276402523014194272734\ 01611799106, 1.1174102228676017128741596376213430647902001260890423405395251669\ 4824034761571487565140556906741193490246609126290066330690785229834739726441100\ 9950665997001699223080826945206406033387428565973488846929161249546139872632572\ 1550504686671256095304106248062473389377548983660218872074870995604631742657778\ 9903054339406158613993426248360684486220319910023164003858558184832568110700216\ 2338459221155370197083582415077046688609179584924180092311995189922828296130589\ 8691353848885339506782951862738925365668850728216162, 1.08799494962671571991690\ 6267860509012132564300760122981482174258120491371412494155104998769489767825378\ 8855958160737220851795232806710933375447767178812618920288989754480700655016709\ 0526094605705053672148401434511007469632141157056651815636869007924353928292350\ 0671721112548113461259471026146114298967844134055413555093724514777395501229070\ 4048237667715639121574351947885048462782077972205025677824772821699520353425385\ 5891208493545442761786957205313781091204683192215524290845617635102905002734446\ 65906488076829, 1.0516090867563001378733572971246087008027967886150460714465361\ 0547753262569420380982284059546230589670101003088323380017680854088629119774461\ 0390734376244071956090327238830634870564663441482158034783774184578570736700659\ 5510602561933904443929602032471330629197115817873555651752531496110051628376149\ 3712038846258393337802230841907465799464771707166935652744344601218211973718549\ 2663739993007531993975296887295553365180999141309364867437753309763356244853548\ 4865650963759455449739777726939015903341735335005977903, 1.03836785270173094651\ 8543524152760074855253845335056186981128527817134749786394430646306734271257801\ 7794423398508329433013090404386077006004577042229332379872764854236002049092140\ 2350966240943968884938505872546512023359339740253568309997108615151002999492077\ 7783932447168223135018056650905880454278904886485437561342777238044500953808375\ 3076206501271620713192846519615452050522043951416086908505440334594222670830960\ 7915707293014107275083858354811489343137607744465364447406739392020913353742308\ 53874838707116919, 1.0170117492213054454016834056652271418626788109976509202577\ 4103758618107657614654221839365788434342249362286689448595371513617249974534174\ 3095747105417496441515363129412740309202771183127148838039856315745818020788830\ 6713705268343917025173464094414833995378584001258383382128056819900495233857007\ 5564721923630420160265311652698005582957820200887161923345099913165618166822969\ 9386590012257838677239189409801086107812593001126578620437964134920681939670059\ 9814520783973561491241452712001920269978671610611954926380, 1.00808333609286789\ 2246178741302789722114587360083830006685427189223969095883940446543458693032713\ 6569629942734843320131428296449846201428323261240074234201618306937513765585503\ 6931233020781333746732546284450309681366533328462977383774334334446043582177272\ 5946548246436299027366537287635477495590776826958714361770514979732278728947852\ 6254537032825845775167970424456410243063871070180105582889120559690502558571750\ 1045245678624776916646637324346778256652053769862370381304256082211145555527720\ 47519492566185112192, 1.1128802654945900010615190121425000047236181303840261992\ 4013082696311867829500542053241974957246847687253408775257108157066298943222879\ 7720183361189035399659868775832131619633165410600743254949204384964116840651692\ 8197881118439420877808189787667872080490378136532339685126715230875114576265482\ 8542090654821567783397127316729416645100641495557108888039266463559942704074099\ 7803022496086346498303681630269571666794699352608179650376329719252731651404227\ 7021457045018791998662195495408362584452926720326017914615237, 1.06119147150985\ 7843200305613869041653276938230465190674159300273984639193961589708040217246312\ 5392775579545008071080061739278054879352103558935770708119408974982784126070776\ 5209725537592480177586412074659704742222346117307823289345863587920587517650568\ 3796410184840859841094353770742548818874760440124204622073437595828079470577477\ 4232969164058547341092479517587073727961216835650738449369209840406323279447358\ 9698142737199935221754291143972192537090222235979234880109849290005242477494130\ 67579211411989444997522, 1.0310805479242017260798762985398536213048246153737852\ 3509438642597054642598736937932884020589532170199432002223239190785427548946768\ 0999131964987579183457712646945587440262015519025956281313819058094184460716255\ 6897710168317558314214187608251166251935248002287284938827510173560354374077399\ 4949500073789944651162567965366623253619238438067250092976001032121553995648589\ 3611586277086444756727420102488622643191107471624193622376646894921512013658520\ 7833136483739543570503547802299842057075077360680024452673591381, 1.00914945541\ 0731083286673642262742781636678886009546703129305470050078095751597369887990175\ 6970294109697198212020547472198878542891783828462510653521661370063761574943759\ 5019234837083326810889914433287866196900899840990849939384743172417489511282818\ 4770943247116821233760291800737487999542003049030679288571905026853889905469934\ 1892419764866100866125874663593087756914208355575458627876615676911852679334847\ 3740549811732679173087334490204656121886391633351916308006481445762803083475487\ 92328665417422172043248900, 1.1010212871227892519292100996038591700583000973765\ 1624518284947358249790351979300842792762516341446140007532286148685796147565144\ 6595407169137520336875462384495441544472734862558152059142946876694218375969734\ 4552419296720500647551308081551535893451238744778348099039374544497004594676225\ 2629118974837750666087184276421560059271465507208049953697381724238312907575811\ 9335107933301405077230756312429115369406893803787188186872654227152826591911686\ 4301158765900385722922100817310536726526611724296849056742813680854, 1.01243021\ 0722082643002444412564612132159320009492062828405050849130314250030499067765103\ 8062328161500480269068037365434501637785226585210326725525506567865947294680302\ 6824359212659237827466719876513025678834236251762396537281213783512811496583918\ 7119719147562966535118177067492241151016093921779587225800205311199374535949989\ 3776003884286569028820661692638244301452484404944903832516346477803966368742214\ 3998081544486521405039226761130039602137403119720157971585395997901995511070870\ 73665639015304049281399123156, 1.0929039413289119931607824230174077609244519283\ 9054316139004422627869363063334908490573059769357034179330451428763816916536838\ 3452895031560058458365629532308170759765867863691671111036806159991810806188099\ 2271488168300518479138553564612615666726505419175386811083045168177660610919380\ 8461185640726430567664607843450553480116661428341577959591713430146347832239345\ 1792669157472452113703228831432964049414860620235691175510860708219185387725521\ 2326354164802477712165951661515570286954251451977432283702858723274190, 1.05760\ 2434278197566972553797146064369713085448530335263933579864991385391839113115201\ 8408136541194220862507917954479285217298882549702308001275788416232017840641190\ 9164416430965443716836269297020314162284776894888427973347782307145975004711466\ 7123035441676989171119543136046800461213522882832844644078603278686332150477935\ 5453225319753764144066102312508598232654592091250537027872335739841461408095173\ 1456920939255640833031193468129326543562298111136037365216773440721142726463616\ 86763569470745286839419886360671, 1.0336294008443249453273854288731896431750855\ 5211666666740223860876611601936657154306553097396796099892351212892474137507808\ 5974645996323239491462180692042046920199657225138563201359714939365951833326500\ 9305262541142674708628257286261582877072096533425787067638290346271261706400369\ 4352875385366510455376330744248048574104305869824909604129077710398754585144202\ 8034238486918404651198880707029652136481645080863868316741330516779989551547438\ 8611857259038020665526067322815941729823964103764083833267125404452048305, 1.01\ 5149235276408198206476589043989940210191586336750892483735319605092817290616438\ 5135100090479000554340610013161234373333566817167439931667977237635278147592448\ 7898143390678197585364562620793061407131172962428429799245544857577544217392916\ 0309706436662342025207939408237648633817782643958613194938935791946356177578914\ 9758914530598353020576688732424631986850983134205649577326948389900392454896227\ 6810218689837237561448932505711224135368372531263441738401933804122954418343123\ 74597629654614606920245242418568484, 1.0823153575338024147160327314952129418621\ 0875614635251239154408417116409028197461237706699005539612522304357282449273155\ 6084183487394964239967167312891604655169932979019080379617239866149674919714841\ 3647316698415013288213157672989085543436797131368094017232534151423970281169094\ 1013323631411701690394450956442713955266249172707487119204433095231837011561164\ 2022807535155474763403837148203946124675171236391866292312242557833955437727772\ 2329862785930736106425951787176323618040590762324810526651410099613742195993, 1\ .019399371829577623550381406789775296364440912100080992612726972211670816510322\ 8457604416577229913106984504628606741823515912320835433026551100376101400466120\ 2815184529366361130734682129461542612533369247885508230204733482689792010829003\ 8666768779710528615742214507284626650830670060212311987063684862907502972485736\ 3047875537127836055335576835840720448053707602926829500236653653517510168547197\ 5023219713187229721897403769700954207203055703276994602654922159053749577286173\ 37315723682058705941156795566359556292, 1.0675805568060103818738492671844226593\ 6429130767374935357246646365314872359004922840305365621185554856019591893326928\ 8212176884422462374518697379942906971330592579704359606295833612058744232504163\ 9885701721780556939105537018267959628188163277413069763715502911209792347239898\ 2987363488786470343869546789293124444621659493921712098453766600611311957421777\ 3749912567904678202407196592325118862435845811033551995536402891248040054623921\ 2743032589402090431503445944286287194175166438606313013112490102897952454256182 , 1.027000983250611705055204831862979570271761398984052868980547524288104251456\ 3151710572224324801236596951854119021951977714582906155297416756125326830063631\ 7820732913546352124188437519817628937686173723139575725082739813075648927357628\ 7730496164205423807598493201080239225250975976362933818662650209918354466112263\ 2523908962353356224176788952084539977900344652950326752905794199529398897985016\ 6832420159262441085778609123402707478565633840529410550493075891145617814955049\ 27288696974367306275815075572902183586475, 1.0447124113366146176045624420843969\ 8348463828546126004711607460210245508954383590470397648680922391748751157515181\ 2663200741284660491877009424153957215142252831597678012134652191317643402838734\ 6548599505545323055621797123439714954979759836337781507892833085471979294605445\ 4725582008267894691470679882525186428672451592423248784883872114505469825340017\ 6233491294247342904809179890430044735817885901067631486890726916700716671489458\ 2237016408657492706325019478418398565935028194030200763362314457759562209443410\ 828], [1.0407057229276084015978584655786467270301612585282593825074172844365841661749\ 5117032239785313357833893964196065085052169551152663395213947861898974175932711\ 6584485842005137147127225742737265104442981770402846597976469712751353832195036\ 7672950988044314769876852770142147306802918349554190931362342358957792264865096\ 0777272294498149872012848923040232911628008284037443837283330662937924114576290\ 7192161316531916403277533719609916036399821121919397041815959532364794843327084\ 3327186965805736346075430652132254063137, 1.02167360019429889530126004928997774\ 2877749017607361465951614387844311422482612744442969452169128477366737756269696\ 9679461622139212879361344591352183796320181858116988088754867469571939979844599\ 0852900603755168107794696785400959648689639268602164251327643498829464903465380\ 0827267263752653859139957135434412105532903960006802021421296136876244497080123\ 4986579311494089824939657566054109483483991664243359154809632999238193214943983\ 5044277096081086879490641089104777936441820479439364327618837724296998194380483\ 63, 1.0145451147855581454960984442889862549007444611731856559979214990965461073\ 5178250805598758111226126102281993645032638120988238993827734730073188352466587\ 6467867695023982188509192795340840662866961906649518162003965489780149013554309\ 4663371861176755258880518559054050701470051202771865359999432311492368667134968\ 7294458494765949351184711712023950774996435044447695190000097022920984199612826\ 3460167463970930964311063586501462589913365966489782515925367538546423426806833\ 0055023599512566401322530298565558772444183, 1.00262903162790943974129222998268\ 1486749859121975027248442025292204913155743085643544019766605956376597641865790\ 0737000759584744304756747677564499653869430649087027580340574646615262270810048\ 4489642432083858513540465088075344625259589290095615096679040906491758560397143\ 7508352206856791865031471300857442228030305907016761054031506341116475626706689\ 8573018213927708331526120678805211821594849580997229029821111173206942853789017\ 5540983707881801245961632478754214416134795125805926476600590264907339608384163\ 43168, 1.0394748528318172535458555828231282501417198388565199456457193971272923\ 8786220193468341873318183037003148014101998196016689172363359279596292543079718\ 9870416580229125651438431511902198198912936101053627845582793843219983934934892\ 4349644365709711785186906748037685041208504099218924358408435716325859136258483\ 4796318373434588074612564703184246066814314685580315398456003436164663540889098\ 2789324677044731995743417341084468620231909342608329975490972782957164712359172\ 5237784021174650895391434466311447678975032579, 1.02737525495332924976681483247\ 0454352575661584876806897722305968265906619291901200130441914878814809364648737\ 9046674157131777203154975736049145514597283207417573594622804593124062680641905\ 0681186901168603498794416579522824784306992633844927719833641633385532531810059\ 4315820963327622706380162408858042312768401874181365066681896411591751966225227\ 4269197171666540608717922778181277672100118005423927524335377054623850550207309\ 9335613336626977400445212442803690528666671453019404729816344389056094263975556\ 42412559, 1.0100787549364976795725642718591992250296842329108193937796309034669\ 2619133100923756532338573408098631710044396032077882047664339694242898623622412\ 1242632439114330326880643398951923737162894641776561450846460282968740159087098\ 1344541237378738441990892668582889215983373796989496825408094551282068038710655\ 5107433101863700550841609289108451634343447667467817387777477906812557264696873\ 6603419367129109095076528991556310752381555307852676915085675013065224754599519\ 8909687681975730687661645595931642610061029614124, 1.00316913075093789347392491\ 9708113985191625246286182291629544154815134297553427521708893413712522260923282\ 6881170034451173496984777399288268225418636179235899141995930562344664745596301\ 2200584789891317357363822843937177182949085420854485204986879617416147884704361\ 5730669930511855464202351713966847624304957454561201522561580518807194165528014\ 3848787928358634135209796085898819095157129586813090221785415440177967776531227\ 0669969714998009148454135690566369583155133652976917382488992231819774072410803\ 23231949604, 1.0386818160006179492599836485594831437371301783370636930927095169\ 6767395877514954174314761098291491838453257271182635891434246065963501828937215\ 8793447474247036401456165393263975269863817613901954525687758616165939532604991\ 5832998499915638562934112117782234418922249114287999561127401850205082503710739\ 6107116537131479854726983485516446237428344737189951452227522520666987181215913\ 4379720685116025824466534903632469734797569103611693762799035292624037792873840\ 2194014214298505089763904449746364600359413852043126, 1.03163533534049299994470\ 8575015007858707714736406343733444337408556385896622743428058523363083920529527\ 4963430984190569525596668501857270731977206477199492558741481237270237082902062\ 1758397372417134077656771969534773155482363950641516956682095668294233047664732\ 5705619842895257565648085229948852798076733732258810393625539970244491278978645\ 3242888864598129236440962928297461850589176823569981977753003769336622568685394\ 9152885314980261426134902544173372313370281747782892381789216488694936895692844\ 03509906242955, 1.0204125342419649611264910805480507449141435984083181090128264\ 5621614335513481101169102414419410842280577856968765562857987796890517492323103\ 4325054052967026179675968525797779683258844640364858329134655105818225832923600\ 1092124755594288178950519613538465551390441285571994404477450594081737030433854\ 6697723946323373376397017075197678853564329983290098314406934962707950262193277\ 5416848670698735421739616651903853111161082045083259137743582505885215610244285\ 4952902279844041279145556152505342510566080200230815968, 1.01566604980251012105\ 1722294787327649418791645255333476769605228873238148326029279132612301677976215\ 1832769910031732428753977877985354449614006649699180201655438035562423849871875\ 1439561573478149920520823505681085444738569626593995943671252105541263988637659\ 6873177354711784873710736679350054476860643767094688553504065039578777182742943\ 2943759485028506114395656481134048662902479452661589782727613445096742872533479\ 7268204613073381695645352836010743602077336267573694688258775057205157971747077\ 18759925570473203, 1.0072911075766126607914117250022438721842010476889341932884\ 5612651012254821365560953906129784933415991218145733222285147913136484788484226\ 3624869236507566805214057562087176984267052801225582390971707181486554199304613\ 8043015880328156889291142769139975634235353932536049746855458947022867023958818\ 0037106120657547947558484834857018895314422497452072116483611906462909412579334\ 2463702652488227752752325810982346171519006339421321542728053166544773210180122\ 7354381683834889116447802695322144233630610306379269747189, 1.00353197693628868\ 5676507414985620457904799067738298341483324377581518801971198092955977068342455\ 0465029497743662784810315840324401184023170017555670342867091947510518751012124\ 5542709221890779044493258941225421557529437386899279965060998026982745008114074\ 9491374013623752263011042353293227805522314657283898023310529713023491594940694\ 5601342798272605191986111631389932905687867666671074887499737296430056554943531\ 0435982255337781797072828980992302486063137535584238904874542915084233396774128\ 68126755018059702494, 1.0377181329945772731086984902404130310243400203747444393\ 2564559518217974384396874552681795556344628350620375990993146158789155819588553\ 6650960207703227674258889891966031443731664460537183499892304245416674564674794\ 3160682105588086680581234266161878041429729790644695193108275054424775600188934\ 4886570716276829449366741604982203314984408808747314795752849201074890399619013\ 2922056875870287266295770513126699481590684355346990239543397551140630484530876\ 7713648082126558733109922611156093449841472058608070009323821, 1.02362985111179\ 1786704960925231252172280264675095933959592240598983370903618575117447011611377\ 4613919200796747592334578100388191376268729117853510114484797003729655041645791\ 0128411507552338719882749103236139333863059295338716148128370035350608543721546\ 7350813280244976426812923255260050641825642478590235965011364605500185843359732\ 5173184780240042651441055037271241038169667661763404792220685582494366688386557\ 1029557371716450575271020560097272555364781321284994115157203906774072117376040\ 56561087357402605785640, 1.0129071344504591497711691824206282675751040147002838\ 6461887853709225735697113178679385729299787217750367317603680606976174921116104\ 6951207392023291250079114686377759101720679564304389647321295317647575929253868\ 7876892919253416387670146295848831395166594057120813622552407126318740094912227\ 2700435870001171934467450217931273415553644206166947799577958807696646745066802\ 9088500574254698292274668492050072585423490642852755757338871867973755724946859\ 2230344171032790768218893612333722717205750537099773989157538287, 1.00398872260\ 1112166872942583925113514119018602225249130016927765207816476977976539919882232\ 2900668999842019305204094090305232232170977531407960722638767646559346587087943\ 6266712215861265603001672345424683088701833086409596989350914602549163182415989\ 0023216471845757965772616213634967602273223845694669450586730147091154652321827\ 5395026170686864674295303688727867779735668170031687498498218617010238361665871\ 7436389566990587978081620979405247099653403964535787841982007792870937438303871\ 97327208787621207903091424, 1.0349845865412200377912917978813692899434934311494\ 9643687729696547976323933339251342185336552384387027441214970061874524567552041\ 7626615081965778943989640110031339320966777070002832024990719815531907783719044\ 5622942945695647657290445960879984744171915280755506330753968241336060735453678\ 8689932966626190635158427441309567247749496978615108608302964665614452573712908\ 0946186024351951007397693158807948316827239518363052839842873385649766094057490\ 7113503776665772389565510948322488923269798267404368893996607608914, 1.00538088\ 8262125538775749915747026645374753309919219978554448627908599734556212006130669\ 1805152478069637529199278344241140494489640735751098996313249114873942146007315\ 8756540300751067671373301339762903627955946032843620395490395278758888554164465\ 0557259905528786724336997527969347305875925078910051269250206065682030686686285\ 8721170078773881723993473263547077654769850641065076887803655064842152771029685\ 0178126029758367813661817598791466522588090326416027031361408768133333952924027\ 09364468662302139557729612636, 1.0329397124020857562835113127092027506677158429\ 9422117337741664765716845790983158422178615474401059352279980993145295414831427\ 1812552887582121289393037764061562260632209323292380873104037292360131352178715\ 8783865219111517429144015706041281111540082869380809699040959182530994414677734\ 4233236080787118823534289586425900675364829551471706637117986525594476478187565\ 7867055881241287535111542828927452465618799597526086742673239041298156946725039\ 8266030362017183195347573981045855433295925974999990780829679857058348, 1.02244\ 6422002448046111968405691864464332004546521878060022438533039154408372906000931\ 2253011432224188658019331718419977827016939894137510654360623487959733074768624\ 7839422705155175405216764777094543380065920961655538252760650047945068847112776\ 9989902662531103018917208161791021083031702195437883851410883562848123588291631\ 6971585202128505311417137801769675747007910178683172793306222333340760902404538\ 1755920744728172240275091578389108424850473239590833923230774717414308930081498\ 24215036110422143333755686516079, 1.0138838494372040259764893015872094181637451\ 4915718918009232228406001874569718268308949634712581355884128962886437863478745\ 7638567361006424972887197597036615444581379664364329404713187800963771842118061\ 4461499683367489960971293158386596718268194498662086254524807687720279529075303\ 3877889049120181664542806738757968662486008075348564458596517526320620595015809\ 9025535106757379293937914692772967132550016585957392631528765527525348495353027\ 9496890322016266666136528434366946749664838682320842310419966564006782368, 1.00\ 6519337538366481840671513016043210946023913568954796760870620126646046013173174\ 3158913327258592440800579838424665638713369892796479180019686759589695893140062\ 7692049629381577480683936863837807538880066551133804025912607216904491998630588\ 0172820765877362741872632219754811508539344161779790377765024023746589608986938\ 8017197299091279736043993738019888985402243328228048890272688455072554207352141\ 9276090521436184678930088653338021247080863022356320392546727563439399966921523\ 64306264825557469181016031231682124, 1.0300630636199247186853569597182401298883\ 5143256351578298646830687133183174985858026316871510290948656869680615588773065\ 0749363218562688334947390926557695481737224266040723458792710689886693291359901\ 0079779424137047440260263235556541534722465415838734446534672071981809121812868\ 3894530997141770475613785707567814959039806722078544676849854964313262711679133\ 3464389155128279406860901048515626864953038655050152493588547531546168292258532\ 7249674985570680732200594405979772766355285094255232569332191197301547590707, 1\ .008270848736959457021473858009362233587814221132958882255470313469053245639937\ 9048160248783726220269545444164664245309321661097923023711511156215231682627125\ 2456255731356676952381642804410887278150154498018729626602656210581750771531241\ 5977136506502759300304311383825273298932257980712871913106429790200417180184659\ 7682342715159303970015320590616975094658874637679728647727596573303290116713931\ 3661612985093503882643590384818390047809520424341445711670154543143593132363866\ 52768803235537994705635218046281229514, 1.0256720361437114608652911255698515922\ 9995218049417194202019460877919061313763168891915717660081097797605317458518886\ 7933079019851731462194154019062288245705607877156913133811738806704899989454092\ 8957188968618264457730207214851534520542958666377674846702610390156713562060858\ 2067151508685811305168873861492384757008621802252626492178760786620552363180905\ 0939490584654739239669792934858861451048413492421404696861793511873829246341047\ 6702031686793177992754616654408076436848230933283016659294482277344991178559797 , 1.011317714960851957323102173527119375146306894478576172515239895051700338361\ 4877074444087906036982893954612300145898335559791984535436985150789259406300447\ 2433478779813513933919982958233613048708453899576051854758076553629841847668053\ 7427140037008839454315567605695567523162169776074316392835678127218284410540152\ 4876973588776977023349235420659088071945688405436261774056236268231915041545281\ 1411298475676695755428133607376776716862409050762566327476366992666291007936512\ 49909845153186929115364518946682971866967, 1.0179835259794898379069798464071950\ 8833975126980778347037793745682177527681396154936099925475271916044639452725192\ 2431835635593856855581832332351563441108062423365909196674375503213901174931004\ 4441323418751400209513343589643042529218140679755664984757250714634095836244125\ 5511720485138241231882862537101804660993722018060096492071233078549089085520891\ 8926217042821416142146751297736940167939334630829208318041178964061101365403857\ 7130953633888562948921346728291059563316700634008778642100184303971862081309188\ 566], [1.4657258050467468776218833340980879880478829340540620316049369570103866029075\ 1794223719590618638511039205032307696993888002672558499871120086878479260206982\ 2997020028224219442488023002201326813380109724114549128213159217327077195425355\ 3273870501775749376128125005547223220687519894199382825898659160921354141881688\ 1827012591517971751131641859433296838922839780899678330273105758324464282260244\ 7943461436406984773383341455516564381928097539935272629838527246343057307938935\ 4508850833227667379162618782407075603523, 1.20403748795161570512481494005884784\ 9176743076950560963567055534155151271124347996357431831033667197400708012636373\ 3743408328257968439115354955284642418354367189868789000913081971760293213666997\ 8004578618312792751870605658175605965342471296541814373705206359850583106809059\ 5040232462924412072369017814158065600069483193189130005742496025122662679036785\ 6501073648159878615923270465309239888466410162122731801192738070971940467434064\ 8533984338784825289186228599715019827440084123588196700799549750881985354986366\ 29, 1.1296902710604033149845104480324170779928963723201449649058552834968714815\ 2542237400336863813659855628547771188381083426941355482561564289883937523008077\ 3554328152704136083450394182091717015273359407086483729401663323944696064501239\ 1464971385807645661931854028871552072012307973273707166152560759344531958918921\ 6595110312720130528058732515677306683608881822059726168463454117757828662307886\ 0892599001516697602327602960384719974205177281256603823411294240377474340128440\ 5958123245868244495925316880681491336976936, 1.02164315519960235910899492808923\ 9034030889389881976138360452621707541947194448195754212735979072885531972339992\ 6954346383489813375086270435831820866335875848311978413564217569634170511136709\ 7630164140216642101906949621022563496071917425420421504350755185415037225941973\ 9798769901476268118416627338068705914853709839841186902317413496581739643541150\ 2254356191966571019886678672086147174584411986419150696790457561031940375574710\ 4203488895154093957431152607361306382809933595146461104707943131425175614001285\ 62208, 1.4441274700055096946345116602143926656117358707744005326372906912180553\ 9579630664861305961095590628792004631235311277653933497652594542928811019759272\ 0075566941566601349972673063742930679443905149016612516540416581243860336001957\ 2833557079170645132480621009345262999714256089986625868611765992080526297905590\ 8507278581219337982454398161659358075521577331222605537982814067080401557839688\ 0650865167114433716259372471118602730985058433814836553175883806366361574454150\ 0691394398171933587624396715854984087910116495, 1.27053946326576962657286610686\ 7659705053067753012098589401378678943552239333821655909561650402409515785590615\ 2924225240260843205281816353587656860221387968540179505162178080770313720350453\ 0912789499076779743596080522812445824297372668600201074156095057180807436718019\ 6121338538974296772125142978530596976525251340014601472352152561865491848599279\ 6992575158639891357859631741296108492684631221583176350378590179897459965076238\ 5396807161026035739127984054776197992832972987981462246796139044624887080924571\ 61437176, 1.0870983669182535651001189805833201523519622666597260498501751307726\ 7840956263330180149674505508716104766146417812154101161077403107631796967934563\ 3180792069268123659366011282677448975134296326372677117758360180329215326508230\ 7342962869852622925296071691434976154422139701333172988409106044827526025343010\ 3941967667211016433325333438097899066976864661130154824725314452356718476147959\ 5355895788603365465158522889362136238487566596782231891733002575801664900755336\ 8098421449865774796239537623800873255870624428771, 1.02617791099391131113837369\ 0572322137056899394192682995315312226617174164756785526580069339093260881403732\ 9073917004044461131205885893644365309409273748064371999789096437775405580730308\ 9756895953675496219157594829183595912030924783803183076316547417974573782962333\ 7415386496317693400794742262507791930204343836812819466443841598468204744879995\ 9640686455492043623966391752493656101361813849020933373842219220970472509424492\ 6561165208457540590669242686262818385849009195360229386748504495786484373272900\ 59274060167, 1.4307503390237727147066844451902793219317074941816924998087520785\ 8409645669366536170000838471935837758160158699063682298530547487477082764479697\ 8395821971631381978605684057442960334188559100285984591995475590413976113984367\ 0375871654846784620008632476799964448874050524231058736778583607653523238838646\ 1105637690975943170713851561112938324289408293462610660402767712873892288872628\ 8120675628057418535391809503983497577985527621136580068639682285771929491622698\ 7778813786976494338150819859643653155564054312647673, 1.32553593171170794277445\ 2680196095518600460048765160147810384842840745723752474155205277632333415246075\ 6072592632024583391472359862875046409911210634794763614308960010581381675169928\ 4793692937266079900264346462364298993852562132928993830947446376489212542380171\ 7934876568731585835788328309755498536263144061375172402939912437843249474356421\ 3236451438698849097102475726612581957666068810982795199758115541412098051859389\ 2871353406225442008141611104659396106610646941601849683858508653805062332302470\ 64187565499298, 1.1902411682527917009074196437581284645839686346026009229349902\ 6546701643981292409219075997013811592434287113980210540027157050125615230448731\ 3435816492677799807121534612209530988526886963806850936802624108194146994437713\ 2076404701412519391521036349558905933667252897317292766808161762044565156802690\ 7591809866807485207896026154077393834438768325818081611018399208197363149380411\ 4612669138650936884689769198338361496411143572356321273568756057222895722776794\ 5502116384073781052494776695700990383750261743117300324, 1.14082876376168202100\ 0151194203701011822559910117379576894491012182349408220872147431554408187563977\ 4559119068225109555497734493092469891550255968940191832240701498183079574686448\ 7726107660452866736750223961427928972572894083325160367270947204986729008419246\ 8474418942900381557966292656690725104712985292366355528201049757507007937724920\ 1906534658677394436445196661345123956869196988389811625121486473353671181868243\ 5845809184605455090722840764958584681158467201745172649231528301178018912564785\ 88029980058854753, 1.0618439600512583628858158615336465216100671959830385760199\ 5105395758332737979306159788166074919068112908838742454714415319281312807032214\ 5933484027342768464300475055094220269109665003552474531527895905334334144121271\ 6571155771558569380464870796221888056213715695478347529750511981840260729881787\ 9117841008728820192439913351728483571554941774216777671387704583411823006250627\ 7441567513469918712595693022361496891991805510609343246322392861407096986019375\ 3578202383230883182302092298777497311890427074087540428558, 1.02924186280659027\ 5394839188886029061936496339783249891699920352487244530630310983645043275677049\ 3709497852884974741152874768070939778032079457426746058901387407413173797306888\ 8907859820271792584279765737141676639973049230252046463892696399390732210884838\ 9037409272570782474712350987858045442975670938196849282529997435789968840344658\ 2788109897749755279115235755170607180164794566216853759473716658717694530500916\ 1266834528060179550287073590539617483325725462519098006488238277379915918178769\ 17867922379265231505, 1.4149982649102631253520580063534405307609896853623368268\ 2152173785255916711191012511906406107890887912242682453132351709610231654763548\ 3773013986914831500322656593240893275299277172129787350169335308081096857720835\ 9261402056909236625337105445533772996255212967156655458157387067057904015357382\ 8414232774576729583011878416988232376796628589740723478100409752118326210007827\ 5021293580573001664741701280204108555202036899096234183815476250506006982324756\ 7821338463921961596215148115512032329770849330461284047184316, 1.22605646395159\ 3907186053149326822057809383859238604313588665100918516940126994687600321466478\ 1597543258397875020198504135175868356643546917292243673575549986452301978635773\ 4064338136075553386768612128227408855776506458614724056941876716747232800315168\ 2992252353546004680888712641130953475561714703680603139246986342121738404782463\ 0647728217926339686061774237450956745035112724067707993888404221667808580151148\ 4208345684251689651234989774152101431196095643240444463185563663036781207268343\ 47387064285529228538370, 1.1137479154468936375419061920953330112709417576755180\ 8378322049237248507897467159167258913931185415901245959924204308649362793495163\ 9148023551808654036570546581298038876838433445034342575048473172240152794511889\ 5266146374521704486197063095799197178113960688253441604310096693386343614517253\ 6420714010771596853455525332171954293109807804902838533368226157999221833580353\ 4719268019471586375666996231807452676641553070087851580076844954173904468468640\ 6273691547238927123259688844021398183943097967917268096282889823, 1.03311888087\ 9627245351482434756875588988175497057262625060606546302768735060125215419112129\ 3861805150541496037878482151044828315186294132843352320286511648578368547763497\ 3047959727775462570769179251190580558528315418457275085229950247650179992112162\ 1106632322050453784217543824400575883810808883557437568217303230483827498632486\ 7926249300576371740293612245528378268506314967380299674123074188553219409237897\ 1875630816599998944580867947091766599360147409099051747443890978036843990693719\ 39362029331457022127291816, 1.3728937539319291228092287681420991794163032769739\ 5003759145141754532291093911117983689379066525300513582038934560268053223805608\ 3561405481175972268145473197758952909618646056592543081681494836843831315534642\ 6523838716112946110549898470381044655454032360937513333896713997359103133668870\ 6873090527591815646293386983039043284211170178726735222708037239749265932084498\ 5149476279606576985083273816902079713847727647195283500220012632339435255860361\ 2804635155458809915257260305702422812590985395725018469658930159408, 1.04507737\ 6449900047264474182471027803404242098629078157292893065770300595397380123966235\ 9935628835526482018742887521015918090980530454155937051994294668611380907677034\ 2460184382029520801307661222346422347943275510209377695922408163016903349405683\ 5275436924400828179226624186933281996513348428654872804712024430032411414248860\ 6799224095025252849618503779175077042703253751064011934573852906110817402913867\ 7122487572840859115732745997073189367472478228015615218376570928448280793236037\ 82754852482456545268659720967, 1.3434932500103104492443149035674945013186470412\ 3384422625555268389161907356660605815163146762426864597668929897694939154061054\ 7734465489451443869771279481808682972731819077070600703156965964770627731376900\ 9526041019354276590406049531163732061331510871062978820157940905451249748832315\ 4344696106207890332446012483220244908168200558256731194850340988107643642766615\ 1842055472591934847268830588517875281660948388325519078009811033777407992668016\ 3570595091571163060316288714807861314217175412632204721252071873466632, 1.21264\ 3846193888982522560494734135179818604832263148804613513558292827377568109882265\ 9140709880419973118645809352919889322041706989682854932259184232531508212217841\ 6119328538825466658060686727455858155865276468815114489487141164205528311633392\ 5160179569299612067865136284576395104418041139751630505692490234586020230122100\ 9322685885740458917866379414351043565801039850874351020177432854974009406454418\ 0941857393148303090398403908562793805755238109547480279204876878723720250075358\ 68821472092444946293897185364435, 1.1232074361782041611618335059407984611383181\ 7383816659343976154037176173089868296203926232151646725938923547701715097292783\ 9870616481103018403350133822978928018274073223291753871280100452403309788564911\ 2602961481540339450340274005530113272359615794336222407682559417027975815914487\ 0627401686801287906842702656359308041441969234860703880692145837985389504687153\ 2936303479686198120772505787067702611111948438974771701574754178152260190717902\ 2961377997626723233898580532025439070256631309884130211255693760204158762, 1.05\ 5018877198523863055925480370362586230105312795476853452581243693178286966250456\ 7600445604975083879363615726329353119378984797737814784078345328919101334445478\ 8837401660714095086082251434598417696301634082934048641388777870669769325480454\ 9498419543776806591592410385579340264741019135199252987444193895066812396099258\ 7087149333198365987390164462515392274515187604396726617292817935564003916828785\ 6621369259509266865314752884362973659796058592662798758564791753096156177322480\ 44234678263189024578873751677347708, 1.3046258572404081383240888886994153303486\ 4569949264966947310559933418901839015307625219529346893908926747075461366022044\ 1903569239408998562355562837288542656564358956605558739071695909650558292965557\ 9830321441724241759256268810868463070824457388524102190246371784860776330664577\ 8022493311672496600505561560956962245546213679472876340466565168987966772962169\ 9707475479264330820328917222307344677750227488702330924746701962947484311097047\ 3863852281985329394812980477323505907040843261098718205782762360884491608908, 1\ .070610556330930427676735313951246303279428267655418375460805412450773374527703\ 1074158012272101003721329233254862474815274366258720193923933775376167566338851\ 5143064159045428581939540103635093455464880067054808032292506104014646298027904\ 3701755640058930629805482597744554446137379456991835710053914889228619735796360\ 8172372449583325640738561372913353766135800514366671270170173350479196004129950\ 2862690278112647915120925842497593792546349618277801423736641732404839516982004\ 88443983246522267619941230292815682094, 1.2499078297160849361615186929533505961\ 6108714351039166538832075725386204781010775547169857440404633508487217487494362\ 6167351505154656845641621342718957239273222124396005563708927875348071414492741\ 6467526939784634112833936491760689308640481855679603779801914140072443347739393\ 3495295135208087288999335729151691225072905819178800370707372096175016658145469\ 9242804275525411483011882503299553759753811534768187651507105954840361447734092\ 4693591082115518583324197252870498082046743609794056048901328882125964682453811 , 1.098639689931190462850238892992788291406190246769034661532745940034635520256\ 4477456957480428272234480897962231894064087396127039711340308364734626040840519\ 1289976616354431673448625880880286538241633559785532804944375116285877730226240\ 3477880978700130212376014655413340599706415073851112913002320434580971986164321\ 6380706746841284600566824147702772667378562167289154713903150755508385398156258\ 0564956650449978793585207860094125459012573410377959561966116960722159531834981\ 84357747899355536797724751355440471655513, 1.1644810529300250118053126403193602\ 1748839694961225285086869409574634208814336640163368063717583171437128872130097\ 8293198373596273646739284757547651450021985992548644568866200759998583198496396\ 7039303279088607217104706088880141388179159765048096851790376966355228038078020\ 6671436398576641380435500434215957496023784632120720028446272241129528667999902\ 7850530566496004499999859131868446832563270607942324071396604480695173106109576\ 9950560204194467556221177517108763907499681166162711838387310267377459937595166\ 377], [1.3862943611198906188344642429163531361510002687205105082413600189867872439393\ 8943121172665399283737508400296204114137146737104047151626111406534150327015192\ 3861455141656742870380614077247783346942246700230728995910478240950345363149864\ 1303110494682790517659009060141906527332853082084783156299040874808607710016038\ 8834128334303728942567993634356909391405254326212909230051441480496327554677927\ 7101390521336682274547747445857912987094051525304197719386403930117109529406613\ 5873088650952654899025008121388762942094, 1.21639532432449314593403934639304740\ 9715971270387482592842042972432302013746742753803257283451940203737905644136161\ 5400260474519705171677920603933573966043460173055950650297959671999806614078592\ 9785766060429424069771941432773396931636862503375253824803186190748167139609121\ 9636554615886940664095988674442190598569131864470439891125951791566375013105087\ 1657797847796539067010671667154877063689796051595503520331594413213158143693586\ 1641094685020178447239833430087888173638630007625064777848460684768739527413412\ 37, 1.1157177565710487788314754515491725168730054277400360683564393624369587188\ 4134166709203612050171117857981670490287095716176482378904207542784137557096776\ 9018453622479202201876364393894772790890575117274814359419334557423689240887814\ 5101221008617062444837769595767193453491719348853938107297977204544190527883619\ 7268148238125076067209127208553740940570200825739186136843286726289124927513096\ 3817790474312510206941030645498524025872088042028055227439892538738733955732329\ 8609572876324428566702396233790868159491081, 1.07905475879080813005012769543734\ 2198398658261791995378228110647646843632946359097157255917444045254641631288835\ 2581260496915945719239552554443983093308318236175388966476538670880502807815031\ 8726347337290885199604015605565321758674028362482459532545639099414778259558355\ 6450613061221347442185867094710481609910258654062409610877314156630909386927810\ 5659102556691258329299946335092410695851246524373129247413691941990189559142184\ 1479935972237711318088767047691187887333866765928638946232400182471205583444075\ 60707, 1.0484119778475734604834733560884160144266590183950861910376378897930111\ 5659472656122963253204340142380022736030436924877730648062864278702557916523872\ 5590131256081681906324573202268504228755529547272743463941001890451519969933484\ 5370920882795325358215249056598328188363380606822544157261878280050593100855086\ 2637559267287955222686773301278969513660152278806746984073749114074781469943420\ 5768748183455536752235248451580715304024917620159219544646557998770611857663856\ 1979680678940899574176435284796383206815152899, 1.04055519975597353570911350244\ 3716932088102536820313033758885054509380692163353157085019310240960323664707612\ 8136252974833104273290174790231926216581532894251480292052866914850795156261341\ 9393745775421450123375618695508494895875222093960842327760466223059451535035766\ 9474236877791767354555851837805242210528848728634043881519330618628946616420673\ 6239248711746397203450590669404407614245842813250806334052875010345555061455369\ 1334133358666126132942769290133949255595431185695796219898271135799322832940144\ 89923954, 1.0306185708793923238703042446871444758654420774603041038468008984482\ 0749467659111430690652088107935495581974540337334406314370228154167431487421650\ 6429196200129049720896280551359139962903199429005956809611559976386607345706048\ 9185106413491096499049262120150255841228837895771195447453273242349669333086343\ 0606706652806099551811687377603939522732720177160700050575250943034511485205857\ 3787690620275348275717488477807696431647061309015590920799499773004363965534067\ 9056322462372626246439075318768937143463611630386, 1.02727720413523958822479189\ 5107885637471062214574118558009939633177299379488408147860207396645283582902882\ 7872970106634814080769581808578304008178719829873173132645871481463258351437237\ 5871986083615459759894126917440489373234184131389474978113977910302412624920394\ 7532929672208397819024508382140986830769696973812402344892510484406937921822692\ 1566829973250562564713193557329835545668104487291398892014717229117227886164354\ 3559386003054431662484890478161426318033677068275930447643837623923945012673645\ 52297043613, 1.0223905391291782585342740448984757625389865104835561911659161537\ 5759800234293799890211031454065071414204015324029341071810570253569565660031304\ 7757146099965972564022530462367026019748718913671412383248072050112622613181116\ 7534843394673885281976078861329104575800939695698922683975633506039044013429496\ 7423180014663426813263982423460619462981751807000104007320021840958378257046163\ 9090835050855223531537326793810801749562117536816981136453021542395969861036174\ 9684953127370121782582438585379310711615676645132608, 1.01764827452683299406019\ 6334068983451486409552990799084406685298833996558945415394525476904877278096499\ 1129258670553480764418068775689628595402743777054302134819934924527820688451173\ 2692632027215913497926644523465327600727547386654823322311148351483968997264574\ 9764715704622682208209984305542999916894054345479514164788203627936628961314715\ 5998286905768574083416241260815228061972164301966987022921743177202658188625923\ 7019864939032220256890701726352975927325408387570423026963637814140189538133893\ 23912385235651, 1.0164845075127169859937566209994862442417534049011558636495709\ 7396734992474928333823180801441544354673421283720466764361188341922352097908379\ 1028388151552009160080746790685081076274935568734312894365651461479791460232666\ 2740191237089604554098615422912779332122383627178521346917723719119425137071882\ 3577827270400654580088418460989111609558210207339804202103856226101366292197697\ 1006038577867417444658254787085775633374928404606951684259541619840267110191052\ 9258971117311510376548677923657422884253715098432131604, 1.01376204496023438149\ 6215307991576882801559503660189821564067812454914914708886916282344691919083000\ 5090394883600268840459576238774661976425528724911938166874233548592068167106290\ 5558437013669299937357148516672308617651776326464972631165169392332827773717700\ 5142030103314604019991274410922666203322822116503108414184326380786129005356043\ 6426528153305207850162548887024839888340001144925423802827727162354125599400293\ 9374207276933448980006925747096295407848595477019394218652400000626678763806251\ 37152035571739845, 1.0123971162052315415866146929043000295966571940507441231275\ 7460253036927434553937509832457387159664209280947578982174158477267433311036490\ 9417691522903845161334020079274369849893945780261497805781810609801352596824409\ 8387623543833061674700385488819709285746992738856251256325692505006348771051604\ 6365875136353380402581438716280697482577676160517563991073782364702787852735216\ 3252530077809265805039203618853324511820926626006618442482690535801883630275308\ 0949813073188554671192182508257085314557900540179576614657, 1.01181138863834705\ 4865533695444496427559612814017649397707593189738830025102379995629539960496924\ 2937023164712558352638792377674893939951719152555855540684863638697076739694448\ 4595854463762329009551841538003475309969937184754611026373997889892973816722308\ 0398409396908913406901658089878454197845426740225697270576321389198095667374727\ 6586957469821878608612404006875392512074827684122293556746683366048712432701455\ 9103699946566774094623686237257640882246755976050969426621573805060486170159780\ 80483403123747840239, 1.0107916453852885700573886756786480517739924825180527428\ 1606911203027324091147876390199071141062651583188532752848434067595988496988639\ 2455891149143520880583208064123206726897506315603851852466547484657288494464609\ 5636686833838274447228525617322722725997948957664013290650886909609907349044176\ 0982324070031833896567705752604538039845999981612173427598218416429454766869375\ 8303262582861794318375632270048566078822706593215624760675733058937237202027962\ 2670990235077375537800868395297103460131873207757949060747142], [7.4659850120780747724157572434599519702143069867313213223022880684902617239888\ 0577631855010345269127050296594057149682585271688318825086043492725966275261754\ 6338036313162846473663814859024484676861681881008440187541358347684339259322166\ 4024137325980030872009968125009519969590562836201027272033931698768574313695927\ 3106598188347719631189350704913256383901272409945889009788849120396530064056040\ 6389606977088274453697368848497308719894717062355432998339188088538289430016624\ 9594175176155809254401960208177171291461, 2.23087733818547714068458108046403686\ 5804333941906851452804687833615881079059241073682669281427476893418238070019655\ 8107875656229372907735486511861454087258372916567811189024477093691489794688972\ 6330028199649269387988577187219208836116463692603651538879869170979239246749583\ 8535960840959986875416861187174096671705570192659110921504681680734462140991635\ 2183269001702615697442394385311710597125556904542936077149244988017369668447241\ 3724744994308013831046634707746601848624757818097039657771956285429569078534226\ 61, 1.6648779991461426357335329505850643071160123411120411419160495430543859181\ 0703237618180124551385922810766875308935474315500433993837850516130622663270374\ 7038934505141053875839225071146075716230508267812827569814619918876341593153468\ 9081273108194136957091812450034070099979156548855779501484288360680137066727653\ 5772579741276610292228894396968790397647391192381043840611032209220931884877760\ 8148066602853364419192685291558409510647189363786508802005605169154471965089777\ 7821213138287902824663698050092527471695186, 1.09000736104619072705177724872868\ 2653443872573853279121667635191390598056877938160180672481562923614999309259656\ 3346759755331065876202013643537696202800164373825714179580535114126342747317097\ 8868371385037200106338927436633377221723160344424588782424355773308485476246291\ 1912595308422233695543545942645190000262477700544639464561341252930157444863800\ 1891067496121794803604861684169690313027182399803673729156963854972015002324792\ 9387128329027827962011985891616558171554668587046965331313923598741358730050666\ 50560, 6.5935103253817495081051164922403756315500521784511770755209519309531384\ 8361717335321121623161240751647096995621390770832899160155392939421680043955747\ 8787897640429883158191503737132409480769937912311923967863661304994041568532663\ 3519044193805650786831516552390713008057222311567394684643110746912909560289762\ 1033952660576982847730075490928518112498163147099661008044156481822661779090439\ 1186041430798923970183311666892552639719602631050191656788772451821072225212123\ 7074933880785016283901988869221652361613778994, 2.92234572822483697941090015707\ 3075683058202771037637512769944611101521042409083358436087316766274954993285902\ 6919835434372623717895432552187955829045320977430757456009368323686269836237583\ 2073242439620365812875505259697890356585106986576591872765723475127669741857208\ 1117283684757022789467311837261296641139890992688638602158707681911079632234503\ 9648915332530721364976230417019312265233192236091487580021433817939654587396690\ 5586423816830246160742452701444125205650232656780068665126817636466740475227551\ 74256751, 1.4098144627524438442912239871357339686343752478597756878866902320989\ 3689435822248261114157897140233949185268850646442784788865099549841121234231008\ 1123626889796619569980612612019509354975649945246286267915935393976831283912814\ 3864255397534363790615834878303741043923488294797133046768932865462429104522650\ 1130362180634142993579599577539692153550042437559399794741803465943990989773301\ 2219561602565369909694491103397927762345371699501883425257121089683930196523559\ 7076903642275200920215070277703591953926859115183, 1.10976950343214855176923888\ 5567190156270362633471292918939437940108436494506703979765023930624471921485755\ 3881365974986324207382703552269438656855549314006830973751742251524766462351740\ 7364767588346964885336249322797235181550144016725723406106688645293839356540033\ 1518253820944637310743085291105301780261485186223329038785845550663529845296154\ 8892988490061043193528369483847779408698559195889738215035131096846709828274654\ 4390880490931664631709434121577801857064769539164418504751506894204036584231143\ 65756694727, 6.1291090392714968428957157582657306726332113902150837874495753154\ 6144763449950264532654479360590696960763045679166355620112428973870380695119213\ 3978807110976437216892112443450749432140821029474308062168098102688178551346923\ 9453675845930884126386328274336064425988237721511252165869160301040493804999317\ 9769501663554639210758742562346183549942943020853246522568324206431954043492522\ 0302852062806947914170347448209704193920978980875394093041499622166768082685208\ 4730842315634392836604736320608242097807346003530829, 3.69572578943178349506678\ 7707206153367189277573073217925166839032783490079694607852548429782022973841635\ 5792692865355208786820110471541956319594001955570645432191397662714275355371888\ 5626513292331092401748372467694986239145656697750978481423381368007867007024904\ 0763592613518110105052678295781658313600564019083511654627329571808051683739719\ 7035591804376360914869144510394936106711282353311074776225881196966792075728340\ 0836445898767231575219432558290888231208950543008070996928050422646834613647506\ 73386975295454, 2.1119223825438536043967172914343516388355510142950332516937526\ 0484807114742625300535997366474669954046480594969102578671114692329826479442989\ 9201031834939582240373864750002609095299609466641941368379982407409876956264215\ 9518561162906689054834358797113796800342380431050384346320095881051266314143729\ 5203670199431929024154046715541020150188760557010191578575916647732009693861887\ 2458005514558620365001394187952065312403813385591618050725250300333177955281405\ 1794008767795045869609424431341288565730336828966673237, 1.73896664230254148540\ 7927457854002600103301644338051924059583263718841664849324331373046743989366982\ 1642364990092924779581311920234904261339603730623848341785183814339455884243676\ 3846478474961848895844525438793668202158901562553543135644536529604175942362955\ 6048308695851990073342928525651787901413761746575023086194296084798764012394342\ 4423296024335134082274968295849231672075849824781287653812783018499033840413310\ 3821325583782382444862498743890128600908005271293373275924720829169989225753695\ 67638518908312268, 1.2771443388919778708296786065102833117746300060182868685937\ 6825034249972265153119284949832344077250471569642968864253111805438088530687825\ 2861159934067731035742424608162407437437286293776218785594598373572237928978153\ 1789997850289305981487279087420615393298999668223910371180815916410954016166598\ 2100780251341096720655025022213568835316635840993736744164539604619482869216341\ 4926798033119662801059354608513216181959749313269494932158713332401350633043930\ 5529173545701762130185569448263657524974453663055943830458, 1.12330672330643363\ 0252945498853690104957140957238634184038237107117146578834902427104318248146519\ 5268172533944255937554097223252832539333075900192881346914177399077683774019051\ 0951281404625165937578634341901752140550874106754274713064249035274763086579495\ 2507225896883602496772169942527853472567695530321235038236454857623726204472949\ 7432360026582285023405600330248489125808333188074883624194511306816143557952209\ 4253740265573035692036609463400443632899794665855012203587303190638197004299630\ 60656646943596532454, 5.6422614875013677622644190630097406642426748278918666100\ 5143774094946088181454051571404352061474838724261210910741467795295989323489027\ 6992846434335327655217677243411562793479258040053301642556316477603202554092094\ 0467741915935985934577362950945689436797362519878352331946850566334345240006756\ 7282656812551216210606867811981868658392401252441724701806454941226419897218918\ 7875812676731492861024243756883385240195893439137418003442719872105433851968698\ 0111767090858558414495704785153653352552991940910360946264276, 2.43653029353958\ 0594185428134941385318398550139552242511289343040742801301098036224054476152517\ 9366610669058501180056330641182621260962839900923351795707860841259783201405234\ 6871808359411832710909909870363535835792448155317278123972194994068966356145889\ 9520162520846318790371893833209605277893173920744406854265610528835376739475939\ 6931589913247433631327656518056824225153751279746886905071197599831387591551999\ 3120137609753118238161154809709515674821911022458286356104881352652695799426159\ 66138791071773862865688, 1.5644021978362054790344426860665220082046262068367816\ 3321748594858662550153724402133179403584337597811689022360344075506495730330218\ 2165142470413992599395804416690027890459426419015480259111971387204528223945705\ 9029260279410821320516547726055301461355416579943393112595052308203822535634648\ 4673524019714460085131396249749096257680195951028198892737668878103533164385430\ 7039813199219909080219249768338955569650028623150733920944228566418009072421524\ 2383664354269948370655273633860561329994145709118157335570053948, 1.14065336687\ 9295639138875868687485861786340852053050717265307526871974759911886056704196104\ 9789714013676436484256890727309862485611484300997652927862997931819642160726736\ 2562174252581768608120002564795556609513692410283148764279758026727649343504337\ 3420548892168174772786933556945925135211418901891874962893861957226313707137148\ 7275564775021462822439032396582674486891391099669334490620946954773094582828197\ 8955603843988115868092885423894947724251149984618639903668009887816557238896854\ 55099358706053517207115057, 4.5852304329489161511214446910486166934130215371239\ 4642662124746927604251675630688311596784799831762301947413034004428911784650270\ 3727718621678787311534670904416231593245389338889387834753678898675414695702347\ 4058749216710793722659280090971130854679035725993178704176925455959266403031909\ 3596398679447798529072937398882388672407447333734960193617892793315425435963571\ 3739215849901579075041365479641221425667304037560673147140399061289953492516019\ 2298222886942665395874462326331572462672772958146225758984183489316, 1.19572930\ 2445964059240481726217672748553868006568177038025404019074045324285679412938149\ 6864786181661161103134097833175948055744218691854154381802644328300026326122382\ 7479169302503241116936344859049007467765781751801572576783487934235922230426405\ 2711578973470220258286135201340185408391900064358720600845452725859634370764343\ 1396521543929322275965368983122735993114936562938472614712246787399729370027275\ 1924345113446264506917882176285024928316717452201907533479943677427741994090720\ 47904408702028085185111045684, 4.0035207348290791990540310088111104523307947178\ 7222570480168224351954471007524887690870104440768941537411523171850947893746148\ 2865351098077382578422591542225895528890535875083558709275838644381251902486212\ 8018870444933340348172338604212133262405673869094600996124271595388923738065476\ 0592619980687527231155497623177000380880437879742466281024843857539008500209369\ 0619487709701489700385470197859660386490913762400665846083397539661895319819245\ 0267636246294619869816544743901436994674656219710090069385618592267768, 2.30884\ 0261227061217141387316641651911144995944389471224717951230428781093966850872892\ 3602967358908607120176908886572665378350606958321349529462179292436939248114579\ 8470334334222445821918741952282798534405508895692607220848656913906671765410221\ 5211322388831103183647327352067102680710614148574393942620039720229668182291179\ 1134528476445872284186502989209985488212623485750125934944944456273845767747121\ 7441518530741103200674563656066282059572767324146495278548972072562171763574983\ 02270847337244396443249399587595, 1.6232534733344040082055288870379435858120779\ 7277055744783559691030152450470362297035496398272457786737713849628654132907144\ 1993179302947792519739566267237080905733593101771383274831540072558993310821819\ 4381930689571969115711175298445396088526411233153197313057553484793788508166339\ 2768702185992299253367994649216334311535186789868775159458174140341118779627650\ 3040177229670014141007997650516556821768705695770323633114678731737499177536481\ 8890053732550901145729376055500826592305600040489927386352276619156716950, 1.24\ 3392518343208637518117573885891238781391174865108934591128135789550824530932639\ 6493992203131955769794302173378906939472006427987284810650273094673609457141541\ 5833976136253641301420024040452383388365236575557845766284356402242663522351203\ 4408762109525552564269765153703319608364498283369312320190584069858172141448889\ 5634475646871863703581095252822867180608430126454901696451218233530918592954410\ 2961748977733619549199234481659303122653831565713924193399153582538120442953332\ 30425796234614677175178904742145323, 3.3746346896483796580531729833603928956739\ 9897161904292353253029048387739820076513530555205690348604556858926620521100980\ 6897273595642859254630802798274061633797952810352496541235582628670313738004647\ 4031139484327992188024009654723231806995995052522288545138412563791463597015753\ 8079894469994080186990653872000305194648940859963160002320637949614305671287922\ 9394483809727408082641473902889220088846019199535729915800480107297456320275718\ 8086073684051999459363052011255320494312871214126684254970205329515835452818, 1\ .321776441080139509810494232425524183566121729985788475602807760937492594566337\ 9290230807172029077549389603399998639069746422535340425390077742674110635049776\ 0303566976118991392995775725245907904747668849144302510554767632940701250472880\ 2414055579512183490497942426904723931570161879728784538137810547681526516328721\ 8174229932840313879764236992291177488638238037223873181645243453951789205357345\ 9978384152746274471236341421344004883099509125899272821981893227219103210345835\ 46472071689242403621229688295082106950, 2.6841203918389655445045500860088531005\ 0728081689549992594366246035637755484131230768620251704084770510229837284600748\ 9533385311889415711994370501406752058049719718634913014849490055387919620859237\ 4954555050690672030626278778332982539288148956424919092238030850964569435303950\ 4303082536108723675500573084388595380700928446891715241866424698771157917045088\ 1715008600856204548207109144269798833885319864538636824752114396654360369294535\ 8019168350741505099099829337793785587026142555124137622093387382565248900141392 , 1.474813438746354969509811264650192417442605438479269867326693888328822597537\ 8839130080691735409476977480215168303260528068419655074112677801825166129670382\ 4921636403329553759582699681564680979455443185140022786995144747975408678364476\ 8925327587265212147882288245314083958534862279216777770698600250689819716127895\ 2759713772108400524676655408690333237946055455424153470514123976567772684131456\ 0920932108715326078647294361919665267191024824085446522872831689123984070681597\ 78980036241988597293276623261664465358883, 1.9078921034536234111083320082949839\ 9228295697347000699267327592028031080348380834325281314987729803900414484729152\ 9413637372301094296826390774032198380331409826484120676116567284121389468843913\ 8327732953326432050484751246885950808918790607385436696265729368903590113425717\ 2696748945925907392636109640486564899406559202110047197620185808891867687222856\ 7324296094382958814352950674742901878201145858222498995912896250508294998088741\ 7212655552672713925150545912835805835811904173900317024692813789548195736266517\ 952], [1.6960772128725329546932718015150801793976780205500145410694913647684180415600\ 0871448389894003560027690061092584416526387530755996672735323182729866657142870\ 0444510516925581102235447741043835121676659429130830176401929335137018450459234\ 3423668904398725144803389152047408855930760791210141274193960636149184632499067\ 9255875312131530066901344900018514712113459754058604470006492922242410965214612\ 3573509610685558231629341893471919448633921279983891357918606670597044734236092\ 7387218139888608882416454862365386374509, 1.22992180024628696290270975277161776\ 9830256219313066368725015860026194850024480467362460578888731841686801984590999\ 5836757298404162665255212747330892541983126424891900316791271227099293401609436\ 6137309569552507686402237378230266057030799002465236653008105025229940112793065\ 0927171135151981842492829530695296098662928463341688670402551783197034094099442\ 2404957517997941834342873424992921170337674253124643299336500060906709844333437\ 8107419784919562559821687977376754357566861945043241335254374754499161035098575\ 41, 1.1390770667948019103217087043620960455196579736772619050394481765631412628\ 3135121072459195101401308140901050446765644193068955394935437639137861056568734\ 7224477179937663779738143008915619158536222014353617341658410851623596976801059\ 8068893257584856912445969730698001225532061378914409631857336534582298388762713\ 2805063970507275834263718885143421426909552179079232315227314472077768690528439\ 1765307927603375261193514634087574551033163452082700160547271642690800967327549\ 9443567379491993473091584856456542672254731, 1.02187027732971493387121180147259\ 6079114135093580612745466398921978410563024149678317763851492740071183940124562\ 9441243353352288409604939417952427148708285854590698677946604166716350072073571\ 1360407008253465732026804745420167333406271947023675173110384710557789968654990\ 1287404549017455989261746282296414220073286525943980562824149690372584856135254\ 4339756321832238187889108188290201042959105941588479925187446117944147596226099\ 9628130005181583657142506933681456442706247733363845467660693652890316068188474\ 23238, 1.6412644143423707332869997473678304569471824108866987507654215372250596\ 9955881085170976888849839710836108809934764419739768582308920346996548218392655\ 0167995298566381175221467951063895224683488386682753535791847676064328158960350\ 5135694427727728855331058323925214495918891279310664938404170055092715228698599\ 3668067453841521513821311960380396075640703423214644719742322086417106153223895\ 0470511158443204557933095637036488738029142120319709340239255478950803124082431\ 4123345243129774069625719690166079612357074433, 1.32121720676996162831727169922\ 0734673082433136489992485826932636346228350095608636981900391995144021002925155\ 6115425314732037280096836033671597001361219344434402247186885840939776293485783\ 4144199144269438480733585290273808951964757518691089459067548165658571975872317\ 3742457117022640431248162454613090685701840139718441249581874307243613889542066\ 1235714410273698460551041244692778419683116168734535936441603383517527934674479\ 1137862773455993266172585847367421665094289181735806437082735597238251333308832\ 73746721, 1.0910959103627815663954122100195485354913165800863926186914500305361\ 3453883140535697468222146494952071202703821740787225475614712296631057416199956\ 3060364790415447935079571052136957166857137328483396351812272564744616914710944\ 7016796777166613974085878596020771745512321216283074442253408773177048816408904\ 2482771917396662031247052549425525604762340380969220263179388865599325262861950\ 5780127384856966130607777449199527442350203829466942375444725957373704691670968\ 6102551621060943679916866011271705811045470284186, 1.02651204437834192168421197\ 9827646737352861418956689804570238131348948968554188533262148256466594475479609\ 3180577944547547452717996603466980207934831124809084247349877499663447975511448\ 5688164072732789852549784625444652294065823162641448783451778993750949317186914\ 7012964450623479116995268872858399426743483909253320261416861298585935367547442\ 9044405649811255135752461968828064035265485712694059274261522690625146044370280\ 0020520138768989920583977219725654923769486158206739197718745414314855093273575\ 14599050126, 1.6097730107240465625792625619555246935042902279470529386808483857\ 0968251454293783415308407661490842809653014136894280873119723899962209390048457\ 0329707256663850274643828168531950780659736705148384233449699736373703770307729\ 7877297760352772016470173815855355729622036403059805102922185174924885871511686\ 1438357349505380827845763940049346477632064870878432756259643686836547652073014\ 2941251081636142381830228928046598790266865032471623535454145617998102007185986\ 0048936276345999601615140044720749239059135965770689, 1.40660115488169140259347\ 2192886194359659700508109655428310351240159337356982388830048124345702344338546\ 8812718502916695878199114474936540772233559318936220525458670562667432215378958\ 2653064048831754023389072325800533765123324881272519142141928066943085881417106\ 2334302673313899341478372882491031686538453249089411263879346001736312494599064\ 8495629594199326290090110970834740896559285673589264763588094518684843886954885\ 7083251382871710432848874757126705254355674946733085342916539687368908289506277\ 19789564191743, 1.2122777373884461261148492069566312945163992562572029917333374\ 3097212489008220115498953683107976517649951919292237204581243157087306474950907\ 8669724285422366873290124109925797336341872290734788820061695447137296749861017\ 6275595271297312427128370880073217665598780206341554776866449199389970996344946\ 9068184789649409837473357861799595577539789220725842002395624155935381793798768\ 5037468935743013883495117394822843174254289355540190946293604555417686342419700\ 2157885874583799785441568673045561411268160660340387174, 1.15207010903768300502\ 5037166134955830569733070726355371852509034427494430837553305319982903163462641\ 4323128266704800595147852753272429260702579504193009476165841607363645885400489\ 6249401113854477102371670504751830635871200874776214521910670485351358628976635\ 4035536959346074628591054897327767726532359634024787044634674147974006342608462\ 1178155966883761256864351411525737967514961135311346939902440646271314177015202\ 7824336800811411502621150853810960024928953825521317399925770172907921560515935\ 99234747314272810, 1.0637944158116770495525416471648341825384254454401918718432\ 3600892842834420883647738250316633899252137449252039802291793273556821895133662\ 4180314535717681759453905569890894368855034006070083872506661075737528941809342\ 1984482218392066078048396944559819765338726138943310347032036765362053797723679\ 5550253935955525218489323463610153444536831911879623411185104886283842153472763\ 0224100720063739363234639539679801626126851497413915155585394050060588221563703\ 7121717252153519127435455933507171715029588854013209827747, 1.02966037546376262\ 3523228181255854543570903969011705041891655029152762974930669348678219260552679\ 5332348056765017504768199308085098572982055189938198533134347973732726939478531\ 6740560164863956814725789251173891140913879033296521051179165756967729185152948\ 4170257668315601040767382415476120972612863380244118058882478294254418016584182\ 5292116613936482342855505823536910146125789089864000198575381935678740615678897\ 4211814884218907018811190794078801615668192416777227674779527027928456670510829\ 96521074547242965951, 1.5747402330629007497095115804664142259651722038362402469\ 9831591358291970761607494997186454214861414069093375398207810137343594447869362\ 9121173648685130205264806696302522473153799883963720249280396063380852579527259\ 0628831761358658853344431088568607959126938578664371631256010773394728922533457\ 0148169106940894111851272320443624766735701799935801954178110228410319275924373\ 1742821641694490581841574632890411902644205718207356692345675668550769979337457\ 6553856066238724544650450658226118700031500632816458250305300, 1.25893804085386\ 2956996168399328334822946195216227027907564484731201390225011645978979010358952\ 1572251771583853998239050056116419068600367595500354629364418892046387823429133\ 8639697659159458927435925854867693432880972886459376689936912976711923867422230\ 6548378574485230219423915866949061581377390392416142297040561763140045762988570\ 5710786090600854055352489267406484675426886811051281592886129546791345244351634\ 0643291633109682125996819803732373062177883262661654088209698456619993063588080\ 20607207362983328708967, 1.1208129161877248355106131927991346460590995506200594\ 5886570382438803073777453239003471288993477739019250275750859570665137453023238\ 0905785937108432621876614820086309152484725481751189572081114869142965752997475\ 8484589944997768141360078256042559124951194281324801501604764084640650588378370\ 9796025615351012407626598710579957903958513047360669406279307829146339859561516\ 5687907204116423086915659472955560329992552544336981620229535409761641044339138\ 9989616050188961113193569646039264896549694656086976522302764477, 1.03365832025\ 7222080650660793407819301371959086449491349266378925511332812850157652680195437\ 5826109477066431342719466725411234791789801333084229713832497819113621846070853\ 6173274562691450779387425219387373626005445904018075022913736005423980144259850\ 4662957302760074646556483636130493813364544701144519316314000310444161848922650\ 4323134447963710585138897475860673213695548784523269652929416151355007619627660\ 4575361039203716965183234485576828199607282801132546874324001246460869016197518\ 70599699466021322384829946, 1.4900067109961016320480417570235866589367750986221\ 2354645669490392084949946687843983975724500624522792705469064705322712224961195\ 5386389579073039071406134489168312556744346839249614657559314495724317102010826\ 6719983320371564684237963316109683796414725684303981968920064609509189683470043\ 1262473463732413157110667727647249183086427107976170523433529736930030856236901\ 9602019138421793533492923468808754522703090250446876471010283315530857883881868\ 9621840591249957195909244676585320672287809120502724836917044353356, 1.04609178\ 3138450905722887670068762559303746574800383734428214108534602441219885573271726\ 4138882742265666615998834436015532536886634562953320788127529601598098780955441\ 1433925813755529743761175694087041901718256978494824107589631419178028886701863\ 4274300824439099288705259406441963846111061898163587975894502031099899183499891\ 9917463599506183924384946351706783647844609834821714316179817727267982366433992\ 2189887190525580200080729492987307534253478792972098575113003317690251720156054\ 08282337365587049945085497665, 1.4369815413475839043745305106587276571781278086\ 5947846303274090095685799699289494397111892704422921289788051827046543112035838\ 0455854710730665236925760257488130498569437366754170539096462807821816088547690\ 4525891188702447201811039552158395526956451880408942832109082145851124363942709\ 0358632533558297274008439235550567347971320835483601452750198966484740335631927\ 6848924900077798237232615299811991348505884910274999112712053900155343090592014\ 0653303875620626341249607568527972527612048401060249526206073332796703, 1.24113\ 3377096689973536682961615741508733165956734589222952496929906656479540528590897\ 4350223728358820055110751396185367843631591057375187400638686592286912617689403\ 6029553280056581792609206729598436486369439299807408829167264523057159356881460\ 5641536570181676339304562479730495262872367940423268140603092720680194580362792\ 1559460767140692714571904155040971567833205208517201372678606525304235013307264\ 7094648976191300007570223333709430588953864606389948048990469000574913150488624\ 93641668320713377090070043832358, 1.1316039776577279487182516117216295969633667\ 7240710910612329092920099106233244889835734100801876922745540598130458325891908\ 6410473508629694613401711751346521072493603443940852791054488226877827553598481\ 5912992113836570826602382515071680835679454834445372858015893005447011998296872\ 5473605629136151626629424048405539373081162519300631836185558308426475977330454\ 3639444752027307496002683956664850755328781295075906364347471679035431223777501\ 4295808494271447257238720761637191362193456388084159177268635185356905618, 1.05\ 6549197563300524078647664524631546162020827872518214905496804039471255692357951\ 5937485763221713972364548070061816357836968069010578843896418886661936309810717\ 9553708077654299429238696194066766716603809415120038048612407010786458526854680\ 3765298441537498464546868761333951386971378495048766317080429681083959017137440\ 0915664745885091237444692467301019220470393985746127715016393984054475961895346\ 1303974485898615506301856855176669772390223944143014374086507713174523049954204\ 31002965257807187589624667130421943, 1.3728805006183501646976375750078060580945\ 3862534894005585554003887035063324089246490429234740357271097974090200233396909\ 3241078013143064274025325093137751246396497696925263804223207468864852757529677\ 1900156518818788517204439536140157222100929030558020393122270102244208013876898\ 4322063482796348381784032549074517663772567255735544557670561554852486431238073\ 4109804921352816771878648533359810050924757165415423852989490865122918760250815\ 8772543840215422425655570297023303936937057127556068110662028099396323954601, 1\ .073182007149364375052841707970349795669526818631368625787232257139788343028625\ 2227687227177432722853976867609126285391541314926664147292669897135531381711092\ 3351642921877902130052043982447009892282229979982424913584687181985848651735685\ 1467764678254390357048641469093537320340194812344994992391434112409589048996702\ 5388523050929336623098508804324725228850417309579122436510138200952941673877574\ 2825455348595203106586017791002164774902363609707866540133812399066992908508973\ 33067743426696480499492706090643847126, 1.2916754821350826445443185047606499231\ 9986351605232658095053923958517278673344015206683981396760441091147507549204532\ 6045812599702167117077560142767372835501328514700511657798313221106694338355160\ 4993212180826655592828570510006263819057711172293792641493210624402754676321842\ 5851021054255406979123824845378793512854803257020601676276261350234988107401315\ 2466157086958538497449369293964413746476508284862501672733705205494980037916959\ 6541561743270882312511481764685434872858852873352990786245384910099697381441042 , 1.103845772797212254324837694207631411924760802239391086997330526905118375631\ 1195754231684433148174645455668551492838357975060893943963224427555266533289505\ 1647730645229600637189614973238343946363560291558846692376674700878254919374848\ 3840265317983131403810683957610215247525595738063583749831188149959869568174337\ 5949521267847237351481828343819063543664281700070400026417676277430745928747228\ 9065918503746018176888944170707710827943661930507473175672108012775376864829690\ 10787060366852293977388361376180568717232, 1.1803405990160962260453379405584885\ 8723371663488144729951586439940430418072071579497845861619580795420945010117402\ 9239155898311436330777253717990143127890719818002263184855144622856896872729091\ 4938763567035131526302916966294160360929620596994708114931694510735455482288368\ 5511279327293085426813509529301507212520505625019299858759653088236344256125982\ 2675519806999521124073126160316203917569354121868327692941309572123542853896484\ 1422109753898357049667178621838238977087340954876250984589313456259797012783650\ 442], [1.3347789557171760197727238171980347727420037378749095103938696808213100551606\ 3447369670792260262054011050952432181220280541242942653211204432915056558275682\ 8916559018215102894707201255445684393821060749086767384607868260545787463466265\ 8418831203744811828433883806664649089065169866111113304310730101752831808260482\ 4028929704227590162321038556327634973695043779232728092440016213165690160394747\ 1680674111453918987609306449199030766090676999437164103219007901556053835242990\ 6244946353638539849917180046674366328572, 1.13794808098505607535048764923802863\ 8496915779933730169509854734898968018550402807588238212841312400422602814362666\ 7786895930496188138917154141313581010562574008125440971854647621353916688598754\ 1714358817929106753388838493044860240455055487940396665226892076363975074035172\ 7173078507620618621926240809192584198132979483721616658619024176081621401227523\ 6179908706483730042038434702143785196376490522005857089753798814195151956514691\ 9957522160548877638584338854211910232491453274968442225282351634701136210498667\ 40, 1.0870288783576281667763441603999957444461522339421322305948201479346099904\ 3210940548770882018660330630191595318500117499245808919586615867962786693910884\ 1258800718717850528366369847743949272289638567603192338534452691047218118055823\ 4554598246091327817601498381327189287315111786207394090742739911174137006925876\ 6109798096275923437556738279357535061334391951738482366936416430486897769811145\ 4085736514197271137523442611657267059570337428305294576067359788557848995644698\ 4509823285371119605037010807529799148427958, 1.01443711852637509634681695261937\ 3317611483513589820013536245680254422315563737687533247420981815004914447982708\ 0908515108711246432977295032949558348827392419268752678157465158996868334435601\ 8397598730500481947718456103707687391416269558826240950035207146250314167547689\ 5651071100493232094248595154993365627597550881074368050491642459149786503354556\ 8599822353732382391691504909721914097808289485372542848964468861712634519999388\ 2633753298537475444621317436854444772690004374529392259390023125540016658478632\ 59663, 1.3166098475275860288635112792257034639751494940281815868750934457620188\ 3287061424944739463085300124836561987030508531176680725143648009313558396642900\ 2645311523538785702835182669636424264773402180757358250296374516799758943894139\ 0355287749039639723923489201895426793217227008976995495124983785781589982131278\ 3432181202468111599041624369341369207382879691993259869105872285624060776765652\ 1827865713342245770154616478007136003671956169988156669888916833930647768233858\ 2249445752528923685237722032170126710734059555, 1.18465870843277872873381424542\ 7224606557282942536479752870784881497342190147677822823513687393089414014699768\ 9275062524874051711179780567249149630683227059817675303018444341598554938402923\ 5155023896440690441962168945692567952142324987137388727382949626853182005273911\ 3455348689854429156592802550280661904288783557107167880516968873967916543635387\ 4615377921258830193283287685274556678805317691695832017451127985750732059701079\ 1363174591404904975605591983552532403243740272506362141161313323164735130161322\ 09115482, 1.0582725367454619466353996513957010675967027713431565749410447810848\ 6057328445068900469661591626682245032300882351508357586326655744286507796077764\ 0764590758887760013296979252443440008583907626919766904099583517023331923677209\ 0693558714334812997864373019830273148585699332217975991847477654504476515142553\ 1304352552042906217654643759249943215343983894976276720490383568055722173707302\ 8723463917095169323135685705849754202670912850911820846762942488495583404968582\ 7443647846068223891560245173747710238343654446218, 1.01746459031529253062624149\ 7483065170460123379287041973773141016831447614921718355348987993558227300125561\ 3549107354426770716346929193639583832417315676810158534935930922333979012234495\ 5285342809631421021883068356186472690793126485227103647374326355092551486493213\ 6875768549280109571715830955822307627074204121227904843634033692564179134690804\ 7963696706629137350563855370198883748905648759728270772354736511318397800363184\ 5977622523320688264992260199206020629151202813166754010244530807115204460976821\ 54374536201, 1.3056296270506547962103329537634806821564344108320596621531781609\ 8940457939755892527148034443149514099519939384872482566362044715919563509363945\ 3019785517867537556947389712352336312305783604927492138130332586961083793375764\ 2717307058132334737525783364039276700769508820711076410560302878160004933746323\ 5604027493087747834725705518158677906270862674094685230245653968124747394614668\ 4800077448131044644179872519009998259497394667289176240226739308107891869116116\ 2373413358655307594080584474889442387638283101830835, 1.22450697915865612627642\ 4298881590457883937039959178850510251042249682370475313601600898699819575283435\ 7382782656855445837731888234061836236341375067011420761014357061614077823307667\ 6892489487168512930524090379058562107422114477909365465833492178742573838965007\ 8240861077741920625839661721511776355212848589218939905217762012130665348115004\ 0625636057423449773398860026746312222597440878775087871763042754537805012422291\ 8220354328962713118228100486603138762079714813316016478322556570948750299792314\ 82790246647700, 1.1284120326811612221802320332885739009515156773553680101054463\ 0326536126380572951639032340162059623520912262266547634266230038998670295321895\ 5641190859239298468731964700420962442101193439009671766319821323700826557742241\ 7174237684663963978638650274291415197832895552694603217063118300580775903065137\ 1837026453881288166103875897971269371728155409042939635171807883921284897667026\ 4487559833451088067663535274766539918414398837628386558841585267554280881430857\ 9627359210839528050530896623093330205494391011389030694, 1.09459148434044954518\ 2194989719981043094758871071570536063424237192728349500150708193225111729210250\ 3121430370309159559096850488366032184019413163165348326757451354377472939655687\ 7401535457670810649351200416619345290907067193542226781474919099183385232224683\ 0817786525991051187109298992387997995469736487115669238967923143443417577419094\ 9189166948902930982350946357738939376678165136404444635822317565846244444408226\ 3543731806511798221374412112331840736284280801479526375543952425940446289524802\ 53837559914860828, 1.0413194117561594908502344878025612936216826229591470740322\ 3550430684655713162969976065516384735024945307270427188166643297139404376848497\ 2073485871353252677416242247917955033098247581318714174123232833571591777832079\ 1582020616532422082248309365583569584006469516756552755840566716720616370041559\ 1181188759927130945810363328802266993439229591291994316819821590986539708424024\ 3779255055824227538218577291211299394171226580451282932431131261829988842408375\ 4387137281370525795630143292251976148290759107926281668876, 1.01951072836236581\ 1289177540175292199164734070997374214295771887469747665994545234382297377500592\ 8385563892914222068834224571807270604180770502484717815872564851253717154899684\ 4768033463416884281865925035117922517978639757654074957586110878733094162129081\ 6408762502470245623183828920921503849252623777178218159703524235258227616077466\ 0611381480983172428217751403249818122748323390408857589642996096887600581807134\ 0421908791522984936081985291063564047884196816418780434984670379776123339309464\ 23522112348827166561, 1.2929342030762032913643994777563996830701255307813487410\ 7107415715097646291381388864109587360573610947474635426805000008985074893673241\ 9419478810615250726982652751879235743002171342640756306301908889938452465226131\ 8558377030100701705392107072631507533478949492943483838092804028169969573391581\ 5170775505759007718844667932924647631676060940994859654652471558474340096598683\ 4274921228563372592645232421148962724151600511073211038168513386060966421908481\ 5056319874676476888449907089276888829148432361861819651738332, 1.15326785177989\ 8440333496833573715149396747872471985627465753105659631206584490900729648859306\ 5150556480095161830326253151564190056123496264160309778400804482953858672102126\ 5645827409302556504892172315158122890572761221598029606270926953038210207258622\ 5027018774578393055437082160010529674789271351592890898633649939102638522689154\ 5048337814628964428678845219870439158223119528314227069873625572600977882599767\ 7235253834451239928015655298943368526521013101672683196915796339727369418187867\ 35305184769187159418176, 1.0762372657704114102292136576784870283200866534398637\ 4150784795663458327855779990150594362743045295840629152306594541353187932537585\ 0932640561430408435201218880358566473355300967010583275955248610189522040223070\ 8381666665897366487035162574675681101510524473747493465616137528819525918035749\ 7965138690639546306074975809808512065147758158321082914899940518820755495423413\ 4907949803046621196908401426901738095988349723117003594997126196481666190616908\ 1990075655026666557989255652613872750414300642579513435067106800, 1.02210057524\ 9249772329578142827769131775194773863202605314243593598683672675159529165176535\ 1655894315350722501246493031983755330676981907926948162728187865843671583620804\ 8858871844642066734607786350498035910845100287048538770421504490766617908046842\ 4223772614377337401756639444751335360978422691444499079352742555868877195394781\ 9552452525513516068232817721219688370318358810812801193065436864573366947355265\ 8215380600912510542343109901146983931227390773412806735341860593434167301152296\ 42164118818830328188610007, 1.2600488795827061391981899336941709865611039197069\ 8188279529066427663238093476889955582232601098016204317301040758301874001607014\ 7440210172788839146810296962541361446741909899578398996553788823499787689201365\ 3579846460770332371854424558307868418770453727731751378327384241370088712668198\ 5074320421119736497894624228450347959510128474211997255934199423071726907509933\ 3625725413787174822752247015103301685766051805512225366412664859893557165379237\ 2415136583996752590616877713452940292677551149781415754198604419771, 1.03009454\ 0766214518782371980908943167604477958654289470558253653170441466954796675987306\ 7075048078805798438190062339028378843313000035366250434791350224984619423812776\ 9913051913960366526202045608785232025671114071752595857131330342060122967399102\ 5157656713819180832263626284543094355608935233843106300518734623209829983908237\ 3256623934752551605088982067778003988940092853969978044766273568364272476769424\ 3826654226911313998675152681767693020698925686787518919801782691671039146857104\ 64880058109251445566421967482, 1.2378298970946586875911981729041590167142791554\ 2055783372259016679862518774740697521018957550817867001707845904026883946694341\ 2219003514352473547984629110385439013945644514412931170744949793483579059027263\ 0698118430981481430705096818821655790606682382038706192972700312297265268320494\ 3303367140673399892748593605976963635529086058054645707983525541435299115005543\ 7175566566221533950073354063009523032289125319785151833788838546699837405192682\ 6467805983748376109383054320467814264606264884196072065929896364643450, 1.14392\ 0647968053531883774197429642595558910199128281870501776511742295884361159751833\ 5117162924617688104179220808119489538188479658986422862484495965537465751948152\ 3421445882710576290078281866565331647773786128761861208738115819340720197934224\ 3530084868916732485562148146490071339736074792638943703436247010416362102411894\ 3110997907524507953756478945698490112331963900937052384699977873026028233001522\ 8146034635730373610582951097942852482608730941166829934343486610149345487489976\ 89935595380851319026477191180693, 1.0826361195712083747981877229388627318602324\ 1388664251359906062074740046205275023222539526708628468419159821476584075410324\ 1633638781717030209698151302181778377782523094555822999998468782902964473926636\ 8427476360228029702675762393680994611999450774410179547606981098458449113419953\ 0718473096080397430125585105354087288996752420609530092005148934393745592162860\ 4753551140434320571531212922950603479396381714324060257079737661757185396548531\ 4255706138341561866288988734313809239057666140315285934706399982745432878, 1.03\ 6747571331045821395790975794129366304696282692485542549680179498820564814780152\ 1316920566665262800733787304357856739773000491329153558367281277211083342006122\ 8350213432909715975794793778394092867537527129310491647532086519654726723858968\ 1995535741878315689605409618283690542425782871976532010677703021190548621139978\ 1942507455577666687039587713029886381040534497145767181180221704534995325909153\ 6074828947805753222863485886022844804255478455688341880168919060083454714341143\ 57524334582145495361754738395174148, 1.2091995761561452337293855050947704881893\ 7749872849371704658995692541545408423592245608332547470677923748160965404435038\ 0530701662689605433198834687642041247745428938003182491996729214250276224456008\ 8638440182994938664254713170917376567222855733596594573948829998574550458446113\ 7371947974041746359188222251348596023804963345643966862942836092287817478579559\ 8242140469977391537635710248246379332034730558124334692137996666259652191375794\ 0151965335756801405199567098120455787188181338905770787606424308841794482663, 1\ .047197551196597746154214461093167628065723133125035273658314864102605468762069\ 6662093449417807056893273826955044274355490312815365168607439084531360428270391\ 5009470090064617370185321487431631831012732147627032522197781537615854941126226\ 1055090400636381882855641153449536818108882737797869086749713757908195668868771\ 8627249605069736542764180305717881226308634533371101768496068221737947156506471\ 7053647768575678858653065103072870579397753726436837284935815412665424985578396\ 19175749637426460610039830432778911208, 1.1700191286031499039026034132398843786\ 2567987713831564605182689837649591462914795100674441860517991934473764257661866\ 9711238346574300421927815749028605490327048502556053261687456759785903286792496\ 0574829090641384810501072117200611824346910525614615476368477693573102003812069\ 4429937577554805241819503555009989188740155233898845161524259155645592672044807\ 6592591132751302955117267466508619623507518226339766275766603314672330799804588\ 4010387303374225919582510492108115616110189187494355467835547911091712354513140 , 1.066042126444801721987957383493359631075778369210965677948309273549632757993\ 1612676974131166521969257458215666043293170644362921378650626066681505454105088\ 7030575488645490221470092697180453238457239862997047112764240752648051983499986\ 4321618725874761135107891756366738265688534709186167730419613765526741920790001\ 1446835258138126618583763477050168938342294217883861292679696670730410765508279\ 0865181352977956172119160823787959834102038831498565279538975824067762841231347\ 48879255250041768554451870733250423851801, 1.1107207345395915617539702475151734\ 2465365542234392255577134890173910869827486847764383173369119130934085255317130\ 7197841089899629586406873093836589918603755819819704938969383278363415275326630\ 5319132548693606371802688525792771131773704007124459827686112754673337342594228\ 1255919157172413196147680845733842569920853335653475331429998782879802332426428\ 2019308013416290257568910651804902238169268825276972453098651340015031665244027\ 0780983290541989279064348503558436459893734181312133005809944105274331045172574\ 360], [1.5075189254916286348405769290366160555037610418214120859128764219009799883170\ 5250228700425468847514547622229395801864018826362357676522030648464117930599347\ 6749476332424435204243580238343571597049972520828150041378493933060585269791913\ 5008263329345104132204947773794632477079695078378369243968490289056400588516601\ 1045135509833636329054665953738392809266140018561128331612763861341244498483324\ 9363549045138089389298737863739157283304574948422149860080345193977205862223710\ 9755617838842012851322423525513596952506, 1.17033526309234151505932208572332445\ 7337091705314862698350708782562305665406496257251469613240716174464820693547595\ 6481996995920401011845125186398148150646130765186034066839556137259183748062942\ 5242825742770499362494256490572807941180576305840916323787987105080823784682818\ 7492491254237750546031350422127967339624373439914058678324447723229601520682524\ 2902694238846126358951032133905742452867669533748558096484262123737485242131900\ 4697401764106581466796662888476690091745993397225344516586115591989732094350847\ 65, 1.1034878699741536339447252828635626139396650188227986087416591057685265461\ 8931710352198635770269975875195914906205292077942290066428132348678088941714074\ 3663614319708088400078377851254004507904789744826776165912321560803483882091499\ 0160354015053666419042512409035656789618394147043544157741324143029096818800447\ 0260363641479889848225006457455896299824944203911661453593866279416934165306607\ 4761636596760330930988986347122293304318415452782539352075901063443279380050739\ 0899815789203117392691725796834289322048395, 1.01638064986276395820339461486606\ 3321230008244031320683177072791718776652630354297598681855628065289850173255490\ 5187379434571667599572287138362470509429887760802831354574316334049004663926063\ 2845952503956852830874608467067764536635314893321749868217715147347574877646280\ 6364477561231717105039530631246116461492277505891329763824176025667168477726689\ 1189728141934080126590045331493253701586274901527686890185306451852759079025646\ 9352764151395337801392760112150337982180964875365221907352138838795392613800030\ 79375, 1.4682238283021268666170202545562019862846714386550601473229217310846417\ 5412080749700002734080566675790349063655708613148906329471093273874826435758159\ 5997152765984419472524070715079058129666765454952875893962912912973606061334310\ 7463228533405525902544480395730191571139228179348802676067774149279185103815305\ 6560436173025548074182396214918182122665025382314771198244781817836264202716379\ 6771327374216099856291386050938440167620165775555685836105006701641888604633282\ 1546412347566781032712144256495805081130056237, 1.23704097219596506750721462750\ 5413280493090366952305815886395676403567796300574398662733422049912894032655142\ 5511762094715388857361105053956419586229901225090075671491618305640492940179601\ 6699292988544673755769373531615499485144878112113229149919937391616997584652655\ 8913869075443634277692018460287774929801680725244056165534746083993645954825054\ 0592595958397050311097352607301966470982353022632256661878892712447519417422942\ 0720471448280439933294340726104374607504779035964202315532523914302692909197645\ 41448792, 1.0679580343293543091819987205084323732286185008155064105590141468633\ 6283902074750437918568684415407998011037182402517468067822084991073838686218758\ 9599234642961112669271060877042376319923695597574024365813681762568478780322639\ 3671639417274643866809134638544962033583093886898274161568928394135503544518956\ 3009013070106633545293229697174779950178931464128716571363101838213691425335276\ 1692525728777556648658518036937974093988125339117671804353377625529728201586568\ 2510244297502815656959030667036672471938535653493, 1.01985172941509184352635820\ 7816823199616111797408573908950154741278999619171876569877757774802125547609470\ 8237765416700256080420126859816006371210145593006249322741237568550448668675696\ 1248126004441886936320145549297788656696269463232562937819944563971328885423439\ 5225375295853048094007550803631151997299916722328974588966389796418198464861775\ 4358153889619581886834235429412485609379247146555372419140967626962621522601418\ 3387173301923782896659594614530999666968487470856086036530598844133456766015345\ 31849304495, 1.4456160951402399520727189144676387494952684025653996776446141669\ 9205121276819245371474904414004269104527795261195724978544984963159335776991610\ 1571321620251748251279578975899883232067283855942043815390437593185815661497521\ 1825204988310842321616677647226006262255459258520550172791605040322306658272941\ 0256522020328380551192575837559753178971337375940229499433861162471667150000407\ 2415309320269089156889321236376316754129974448569054607235189875656337951180725\ 8580700246367218178719588774576869510517253266411823, 1.29907236687758571946314\ 1430187516699409725288457885838899818923753290643107951245283574655396808380801\ 3575279748038065516177579681403823267658024147251480300083450242823382852951452\ 1265554172675947240070655618204445478387559167289826424888799857302596175997195\ 5492610891941042405451608099629788691539366317247422914721370525221096108711606\ 8528106003010611788160574045058289499533573795041769938427821625182860236267052\ 6777988209164648254192012378182694887798363132010618041065850595111746299464231\ 34758586656615, 1.1573916572388039684338592448880919013092363487181606144073575\ 0895003061640585707409880077512017713549138153416179998991723752415820904883906\ 8141074371108875297409619966296705644443364590306358600571579111707333178404271\ 0471827581472632743587378704442207294053776770058559743145337825229768554890954\ 9358031852108992150369988090016082246205445789602421921317898421944926108985987\ 3504000521472597824050062743579990792663410057068667697164130003812691158920823\ 6377276887735789126406930505520188628666681804869650804, 1.11308111568933141886\ 9325768112246824537379728332091716607837515961784678747445039488847502084758852\ 6438856732011531341133869992919807393271753687454696404519069473540161046034529\ 8533163128698517024181641486757141681196898831964264935218761856577718037908454\ 7216786123166512324307713072327577484675452971541510381816878803569288567609109\ 9957125798598992088984230650273943656404055907942524704415966950702659578839753\ 4603602569190990693396053580163419584701766348275671345530431970479647751968292\ 81261676154443963, 1.0476638075095032537639623321605647253556000963062030168347\ 8970939047772761976283498564483670925912193417822701107525603755670953379315878\ 8637336161346874380605626295564755656539635442502385134004765186327178769602627\ 6332823515236797861979060914902688269966533655639974410433054281171756963849321\ 9296183842001552099503902908349849793506965215723783273164888477882816752441996\ 0659157375768544737712201819819686491274822467927027367201999659756631432733760\ 5227844543066367601140118193787395542151214818259261170580, 1.02220494386608091\ 9860161806857062989134020137789994880270437701856939901361339037391092749731504\ 6654814423147149310981382512087172849389865601427216376096191968871767462759226\ 6723770653251522917654710661842839343279692041804339659426337888619157020637257\ 1276875659140433034116444866670913668880542899251947650853385838926866934104498\ 5034812183505585103123750973286238085235858198922497078091809228732233210810940\ 9246629499530847153596251923851181954700263312789312144140061760354515561651302\ 98868571739133453603, 1.4204364056031490351644291036746114866045569487682653000\ 3988121320203609467922578202448000571367131032924803486200138320118642622566787\ 1070735240602342385280385019312966361658324911241254809560154485634744081570345\ 0036073524280885733049545602130887125943909653734147527900631179567250637895418\ 8638234134745093799200465225936163973588783054043001747270590823709958287464198\ 4699515136332688264238155237609995002569707536669043082940588415331636972236191\ 4994889546767676449849956521178669129715112459472492022808420, 1.19158332789202\ 4549438019833834561300225000412141646104404464790759077035010424432025608253740\ 8414801800486714120425571659106710979375287602789183057274624758715743681915555\ 8323989745524096900344677104285227430050616777056954338127149686971723229044531\ 4685605522857529916019036933240217705412125896321482332033604323242750007188974\ 4612081138090139904050903121667454488383196053735101106935269654686113904560644\ 9600348204186285746259688055759151291664910650777791643453179382027519458724906\ 45415623971416078131331, 1.0899829964363495622302910862663798669688362152436036\ 3002146703663402829116663960372867455070597822246697399020148561049383201493976\ 3278810103237148407894311000412831721626033635440083582872978218422625988475373\ 5833890855448679986700157857407015794602650026902968378666043742646129229340921\ 6439661778441526382808338173516645501356329669532000295106822670247917728047519\ 0927010354167863194904425290387145534678550306266389072303713584076189638947052\ 8335790041310381822878348814910564093919356002686028064314405887, 1.02519194814\ 7477204555870898040341068871121508224311888461749724469665489111473743828715077\ 6927102588811879727441967246647393851002985363193010822073035086838961125407322\ 0220954156476287530740233607578019728203256193599603513133775354761930236070882\ 8608768431658440149114420709270201683507716845520833055141001301260474197193638\ 7012777819303940503308909452552100128049627415806369298272348476191510577770983\ 4151114654934183238420217998093705934118827307012251141173031685293859890060986\ 09109743709354627058331413, 1.3593908040984735843767884922578879729762306181689\ 9079466855778888295661890598252017092366764541020732170521447685014908321086888\ 7390260619336994888245427134220353288765333896015922543662834278995220458137185\ 7661740504482480867665784150042551307435534961059874959385120025442750165359730\ 3548539278513084020068114097782135913072682061504160886642710602006310033798854\ 0315752978768566410086392385350937976447619628114035819642827955458203888550030\ 6262905916033262016687166783861977885284900476217091888135599439738, 1.03447259\ 5975224665565210956965449694286788213307133302690146790981876687220797791144859\ 1554814740929962459684674715205477015532307995262471008285609682034942316946333\ 1057889010577354397596587905607280406271756658488522134822813052952175538357293\ 6533946917977541219832064973996114507383004382714136928398871388643253483757597\ 4786173211244318323299814393586820775660451053395808938590266854124375769372929\ 5956103159178325375737072437124261775154896347296560573764239124995481236570239\ 45032813504830976386839158304, 1.3210723041379709814896254695116842295493086577\ 3509068418358072860555221035078664700038387782314908135206760459768481393875319\ 8895804290923577003189125213895176936980247133436482455785007295700682681603053\ 1121793948655208586539089614286033169123789163932727631416514094750657691076704\ 1870108494326857092811573665089683453299743114610662126390819994731641839137814\ 6337858134787645266272749268682048609699888423228710616922087956095597341419473\ 0897048573249768097813651669622523379266412988814005685417401006221761, 1.17855\ 0802124159000837858875238875243852949017127044523005083344491627440708876190233\ 4503416982281002345766674122946974714619770115775961114218292425345190707462696\ 6511476928111489268358622940378362986405891192260697545497122742495189231727868\ 8806132958524998120074297298351353307318320764853218214355512694936048599586727\ 1778351662679834007064196655600139017060516816069802832534588822164277964634713\ 1825520411235674514176433177107335630787922014526801879814972363120295711826563\ 17196141186562693451679440792277, 1.0979649548336250346446351150298386092298172\ 6602810429562910640483222281457992272238176188513626290853402999036224284092988\ 6036149998770237034089193228629134034703371460234265015302228683631400464290486\ 6501203512532565144672362115237513223257496084194514972895208717323876144033692\ 7780377326666136025020108674216322016223317322281823936476449889518578421740550\ 2115133470551834523068390951725094503831890381784643416061339160377482132912884\ 2259867142305758735878067101186418815483506308037412969607247011325799607, 1.04\ 2268132787808640280111359191757076616454207746347141456642938948577695890045478\ 2000552531242767253651233194720447887013344306674209746499341684826193865428441\ 5888239375942243362993516922788494309733821939664759776369707607920287913106740\ 9373527153943946669938236151914651897537231990092225627539097172823452890368495\ 2524453536443441053515970808529269604508919058626600260154494280325165025700793\ 3732865024323429963023311819364305772928129419582194642763605517417405232954998\ 16381006208838906161787570301280547, 1.2746113081366019521028099520211336233978\ 4224725067566098236397579988171970036880819150596950803995244191522723294305820\ 8506719546952049889859637796665103216693987570665091484081070921122997979593312\ 8084561966037705064011866691901266358531739548300837574135489508479610623566165\ 1822889244482961287290192391517311318446399512569845403549329147748503595467318\ 3343771885232845748819601863717085518850945799793700793793489016399617309215225\ 2691706660033606219782698304989887007945473419889078973861495127538324101629, 1\ .054648614831467047906718149577441840630273364763410414893082861937658163667864\ 6038866937402309312282307788293115735513981003981669389247977548350804157914947\ 6218364613409675846551373627707105405280240053729063894706456055827466537679380\ 8097796229193381633681260354428252112279246786597819762874538491847576902141707\ 7542921973651972082101650447154235819052912101984356338601482690191968665454427\ 1593809392943427531994662619981004914057010328718157757168787776841153869557224\ 94911866458642871647651717206931935597, 1.2155025548684543869419822179970439412\ 8827753148404891581626565017353842637919223480625503388295784955655812288482755\ 3812999111559775547626227150902626413281959283483925489567206276054406581798294\ 4119215277271231000440054127144454032327294297232320739844592663905617403341296\ 6760516604709797612794550184315154621582556140893190461481583373181882382822095\ 5207401676775516494314514627207425113920523509523000158207262446499746284775165\ 3179991439957162276577213195336090603055460915062346931401806463659352193623126 , 1.077415715750701203246257098513742012348092021182187093026426589300763704600\ 4455790595926205124135474030980507965574592238164648072001776051601462733713785\ 6517126147052668371614595649808894820662591087718714391994728190978488958988076\ 6795190860359196924791591790895207556736100344953729299144517615309272589554034\ 9202925201290032646305646326826908993801362064955086103389232699255349457758512\ 2748084443314545566050374973988213878239535710411309600281524233351957639294610\ 40664144974274946047115055335582685882660, 1.1339155597260827324401565103474387\ 9134429535680540361123631706140049791302377721445820711317034703379824161700063\ 6030007982251969852751719291380786322359081779048107399624807768047014052151987\ 1723989826700924199301712609161487646837505183243384942608681126373994076044775\ 1377099268931094630288070837697873416558076895613225852850012703782265262050415\ 6982885780282843382766268044783830345438954318309162785863808914804458893173487\ 9419590649749935399518403315820353549083377301763392268494199330946928697623733\ 133], [1.1115349435829940224712340145154948836107443092690694999064240910811188225119\ 8793477199774750892589567305082945745225824880301905933951328493167053261310065\ 9402927349569319887142279005055303044563568484177524459664720704779157443216792\ 8464428636754156200960283035669909748716232154823143546774792803042348670165023\ 8519359542993998394471975267290808488708586055888360649690265528945847400346594\ 3745130718753678284728192920138765000910639154586848043523071613902377448129970\ 8706213146775783876395095065538189976617, 1.05295093253642981557055189823992411\ 4524397283276718770410223880733031217565271609978711669966655094696859453248467\ 4585679629253358966552959720497239964247674914642224463325744490559903601809862\ 2489834954236578674067079869524865895838097325974825080805530548196139738797471\ 2253904898785976138166508690361512079898582135219624061754260108097462634895714\ 0042966197947692202466187342168331972566324687214237893953284204208773360173183\ 3445807996997359521305216004947344475738163788566766162223684545838026803590346\ 63, 1.0344740672002049235570962459508348669103149820166351713702027471981217204\ 6353124303742013266776117239965942304700773799495241852166810343950791085637173\ 4666862505448032201321847410181578604922524050573612980114123019573220163322973\ 0633924656941484811278961932672911820320342403758371153606054030471459411911198\ 6236079542478978583601930666525254509144270768372932965097451343826407113944929\ 7699209027987933090568138885492708607221468085423412105518334762069934949586403\ 2021919666085753528582782651427326740889629, 1.00596667298634245532164472546352\ 8231601961594612953991491385189474269078768646403472333180841574259409033146023\ 3378261002521902604808623845569625667947819016131965573152006151967596275982402\ 8363567395894942079474555749788189731091430913574558312791030484722530606383196\ 7164279474611317773738351230475898665604745724372326394268766946121781299760888\ 0824381732415316732423408212487276201435766342950704381795088180231520285185187\ 6869207270233055916470334410783341508083316100633644817296510527966319652058737\ 15359, 1.1070586133080285802399886725705818693073456416432375177422123948816796\ 5499236732288245582514059841820026353458341148583701731989260234040848769468173\ 1347516293579445617640125669060672871378944397124056902519649284498066192135480\ 2069100922475864027493548388467672302813293761742573451062636580853183564227278\ 7941143048315677461701319325404427586080401106911458113924380413440705051480129\ 1878868051999607068186398905479895756625169195279199027236010081422268001511481\ 1211482532571241448689683572126597686169238407, 1.06875821239159473101603265509\ 2577774048103643287171907006286997129955093942001419099022612369552757690878111\ 6869017669033115529073345138110498832841109862634106186945031874422313777814230\ 7981188178202413764983778095567871675843894875820630839230671809479516009460463\ 5958067799152279891616779770771243340039671537893407703111447452111468497742264\ 6060941853663923988144879797457641554449948958819099611135103933194264717263621\ 2225896550858444650724529218235990133226745034138312829694743716283125935122691\ 61757295, 1.0234815766706631078711698895163255881506785324495069101180136208428\ 4544762187329596345799407841005254011904590977461310478597661840248148264301993\ 5650467648445268249510530377227381033185261684288750801087012852488761586464255\ 1736860739465377420164757868438072110965827071437536325115419613435550449987729\ 6033391577466089570686684453728425833578196190819444274828895096161892706451130\ 0785392888165310290322937173561566259946714936994971605929446971921132638815470\ 9978016472667849237599937835931811174632533780473, 1.00720548964229927847783363\ 1132645748827436065795517153160345321857352849426700502672154592382673871483042\ 0827121024888551601420160529399462972997310001802791241524010766998666285071608\ 8933930408799468679029630851116867948438251044249957429554483021245943339004401\ 3364314161935394119166117630830983055750307526165555995257261869879755391103571\ 9260083142974756498428233239136303026037772721585940724630359146567320832004421\ 2318558205681159261031493079190463518440934532872989412589035227189860647404672\ 15872260159, 1.1042541967989192211463370776595488798630834718204946967890115860\ 1610134305178168452318501333062290666761850168352061742016707039329122849277716\ 4727689755391288818711114162669975086495529406424037099421044494646796967790477\ 0765496635094234781635531241697238392449825402521571830915356676652460831107470\ 8604757743401352678049344355972653030870148874828085456525898338838381079073703\ 5268142972921448781769397775821075501372608705270711487120895462468401080680033\ 2525626214478139765625606071971194827780750635022965, 1.08134515334688956447740\ 2579010876495279045515156863166379176754723333400604403409672962651686394098310\ 8167062524981060915619938210605425291121782886085918834745620576737191027190030\ 7872028565186652264035579616913196847836262400633867842443013366065970253207985\ 9490025012537384394631574349842872087932677227080788377167788807773673553595148\ 2725838312959342770185552132488421048185535209520416939521102340340401376356904\ 0846020180141240440451308230966849610190433221896197611549307873160749629344024\ 55091430848622, 1.0495881040952647158667246804085216949137489699337123066587842\ 7945993359390005870046543828054183347835752455123319544360798869928040046245904\ 3560925019454397857405678282611087657114802051376145298570543597357051812247873\ 4115277149814495504088882110626293665045476769357770352526157844443821201735774\ 9366873214559683762166452872257850204371579083458918852199854194914216960028787\ 6611378986293373947267303594935241188595050202968563805112292905245175289548778\ 5928178562299270958101748377561381855205169875969071538, 1.03729867947797758323\ 8663456157288097252638819382304654668453644350782513677029290070411585564447693\ 8674616222166285625640177447018621770620450266734490726721178342090304334573131\ 0322553332649614921009964814886582524551559637168085483757697665790547547872186\ 2807934745672728239904889653634635662831497770852421124999278827689516058926130\ 4850361379959268818298354783266415324024046071502700915292033211227642183664668\ 0545411529325659867992225664296719103315792809231318266772922393166029394304574\ 76708043235154889, 1.0168156555857280813694929517006313684215890434931041807860\ 9565819468554766933937680261832761960831312947504738615714443469907309150896737\ 9079327109137917810806155179874631054618608786153086826738057863740232367505476\ 7334060670939541057644855765798721834047010344673487550447811836594996531814002\ 9263316830134272016200332705645075905658311940594581824904634807549380225379654\ 2122720116781297861396273186287601421998916764578185382934575458240288324552069\ 6446392094178636590639455593322734953480170285608916150612, 1.00804031356449643\ 5389043703673444150673955040779652008769712334357416300294325526511156411541969\ 9858719025990619394591343653763412058179968477781922463030110103527017462405746\ 1988305131105729366839461392757180507625858425892145392604822253786972050547920\ 9304825457375762571658391287869447678143086328155637201812739937297779962007606\ 5322918773989510118111920838613913583111028730187959516775941552432500870519299\ 7761556659265214290534773580032182356885582046011181585424250136760797469445698\ 83404570206762431151, 1.1009206545352640880836860509903174451286406557679366433\ 6780463094243129648427758743309938388247633416072175566395380351657457322994317\ 2426142362247010478232654815607339296059800441998699640688729976014423940178540\ 6752109291988519485204620697885127124467128934627550729434622182933471397323793\ 2147745571113570568419445509817443233581652175632641009150121213597095346657975\ 0519810879636161215351084897020312657258030048064082332241694209185678173418768\ 5018854173234196501613231996864556024410183518570140627576001, 1.05825780054393\ 8348470692595044358707922730442654774915624690686436728143098350508840070576264\ 2985701576086260197826847943763049574726273547946569996094811728312659390586155\ 7432886678675488702085441364590142113061506003142378822489259226104329471210779\ 0147542222094575748721622202518392526088841317668886269735795313943013514629246\ 4627250004375423089847209282480440921953849256342439021211560319732611750341418\ 4328357223357620789945068988123703293244188960417025268939216843565063690963170\ 98893421637891042821458, 1.0303954697763538220337384804179285559150714924239342\ 3091863223098245417224389232520445409419154295441636706009714520006274580602395\ 2823453143353040000981271364729409941018863166980774474110155824218235083031376\ 3965403281031438226847366729953842524903846431732574033165032501230394593249745\ 0136185723024669310672484272686370416596990734234390614265011560297685448669778\ 6660718714732843138377074932404805627362141336284958818204163512039207192456955\ 7257611777155890281405165671656285429393601402564492207226092812, 1.00909414745\ 1235094092942367680104154331890414678191783942039632916927103985675414498984842\ 3139112702635214915942986686528274351516927929710117498565907852230979671648380\ 7299795209644754620875451288684061038733238541711271865421808375218547040301186\ 9534992401173146374945998961376293249498550952225475585330684827318298702255693\ 2731092964127278963937745595051281121860691934920916019044922360180505104916967\ 4260943859195654898402717008026540037308594146908544867974371072697853464044756\ 22622283513857506107996146, 1.0918444121732451798454466651253471369136992909326\ 2423723468749592653363820475361772761743858978736882876501546478801341468928115\ 5734585306921947377282168316508100868781877737718190480970093631058179626621183\ 9113967667726015969354548761068123467809112662724647580443662485119376212129682\ 7441817777874738292379368245571435595552911104797236530059300422270089110789282\ 6557170118821058706380187790435039126425049669333459774647314948235549966283255\ 2266253155249014159289924655576800054056644028012456686302778473288, 1.01232704\ 7888028114305486872134368771243290982115548059275501357408985880480958243527007\ 4585721960129419049377861147081983095610740042810949378937894786736026610203505\ 7788583658635322599796799198334766905486517228154737543016135353217579672700239\ 0860419897342790461954512435230401750279323859235376637937890769951858059225447\ 7996691690261910005513395616027289115150174209093437072864922620960032418538390\ 4016220944577608173389878856183428047198106536784636655066309365440225214648619\ 51366933289143638493099301032, 1.0853628086405384359263736681689591932135383354\ 0021159605757533667639717068696852966559570588308341302978055237918821989128776\ 5608935513187949598177526302502044499008793686112357972752339622713655502169906\ 5601525453434361021180947407280520672830965461763113880158522746721883965735496\ 4521425725916327424514152234611446319240202204237295964220763421004781774250364\ 8298784824401906571386649253016330426807937705451529856549413551977653286481835\ 2637842224246762931866623654158256897722668669713747461604951262965819, 1.05503\ 3933385760603450801195011479089521504397173984314959055912890800177669517472873\ 8781035124056656570345307742740305384820953581817403066670508567230646506159293\ 3020258214161261947919638999887226280668410742884627133175465808270984568045899\ 2979814370675755426933914757431160325815207370048183847553423443619741223429665\ 0112545446295638244602232209079979183514924898167617062873006103102218978617509\ 6596414693304843228256792703676942830708167097666652305716822002132128648683225\ 57188203746760756643454176596996, 1.0328206526451085712104427732662296528506645\ 6949840071145756336430898525219726818780107219047924187564113565714561216880983\ 1651518567408337446877960109371764184712290002144870661810048484061896293520759\ 7748596040516213224768649832483276228518386103544341881030995734323395771674643\ 5234825105642503197757666557146138768348960707848549912858228647185057771893040\ 1320313817696742275652202878766958811119644903459052442086729583439492072505368\ 9520951894020353632724286268986762985460588352508102598343539957994044254, 1.01\ 4994658999638805167156990793940637717053245112785809875074943158884868594300374\ 0331112923104541320321238231200310896771103743578160809789376499313491306198580\ 0431476135097962114242980568557718660291988727007324930523526896925204404664880\ 3528325811682434737526221959794101615361291421773715355217595291748812485840738\ 8374314460017153949896841945867724533817311509966982580032340530550743096673972\ 6485712759412759391461195037737651114157542607632663136673568719275389023276013\ 04445857148503781771502777163968767, 1.0766100515711175980719419204591620321773\ 5082397636257927109948369440208658396173797677009878694143388343175093778266397\ 6461713394617803302135364772383454715578705285175153253772148634036847260840662\ 9403291551464676120095605898415784234038024561563413091234402152892039180705659\ 4036107698840851200295448216319725316853073289747082879775218465367934885597423\ 1561441379891899170961251899714997218547076795326197038889341265721709510016750\ 4389576013472606234821622676617225266560187939040245039888787965625802314670, 1\ .019142400484455344394302817328971683799084875494546949098779730072696846164047\ 6877654031105269380183541889783072090719128378566779936256549246632217358713281\ 7814343992099947982182586129339373420414844468256296069307634978475902260485507\ 3111282189710719360009173521476537839489387909955591395197702135347012885460564\ 3786196799770392264859720336544099113053073684296598301847571569663861593407923\ 4411763345306256464105657483067554381375497733163983771815619890707345605025396\ 24398225693133194237395394523105169262, 1.0639242442449133254086068635809621128\ 7458453667311030760061272499594610043793800750660594723682776811711740663022355\ 8467520859773619483539820345335713011530748726491393712940455093281061888211572\ 2179863272660515261602486135316174561782477241332841940282031368131404103527013\ 0261826623364605141246415701704379612934799287962692919508256077677224414452996\ 8767648881335807275910876147015583395692189005022664614471684522085044503175579\ 7640211308937204695729697183219727512920145103993280773535489089380089148124691 , 1.026490763509737801293704456159130444496498438667547445082189728581599452075\ 0771182834705923634989308909457678380255089235589472704622237272248863736726339\ 9456596131629905361678955404138740531026069822777426416725154156889429749557597\ 2651590603668963264734115946860870118358277877692189176145963241031380744840368\ 6099116705722083704486245746969703922432474059418077916861071667645368168598914\ 0715133203775930300303456191199073967459998306643469371795512926190960351638573\ 52624817839454896400357271071227842354660, 1.0432297581981242396314537244348377\ 6132228640547421774123977587334071436003822017614179342282912234209315607996474\ 2954306266608062297844013763528194639486556379085661620289752080315715137764791\ 3373342665539027050236263786258038119719332155240187832860563921969813910001268\ 5630360739628810427821407346696289014375776331701391795053634097395715996865093\ 8686672560701949986380105852564615337716738750824521170935469134459366944483719\ 1950321520470368615568498286783362579443523037456875747538344280923232898853471\ 809], [33.742859618110529143130069865730218233547054533901943097868118428203719785471\ 4627194502848077594967618036693777408987203742208827463114559715360244773313776\ 7131081785708294715662062969105788278416435548459005128311847090475152612459184\ 7050094944283579868215582851694269986680522391010710977437429892747145933572773\ 7623371030107825936258693454324473327069200032228667718941540334187014022401553\ 2160156510973387388093846799073512321975993097691148473648725557054686308595615\ 4539292120067922726259414734003323689587, 3.31548190392182932855785722824631926\ 2864667675392338347501230451420697448640650467897445364654176490977613416941466\ 5430442516790161007837471238143456538682585937752380383351715515357273981380694\ 6721246054137046294883733164658405339551125932474363764523720844465187047439800\ 5205262469660268381881987072227979420398267248182283701083887087268147472187933\ 5568648253855092094573116493485212589528982233242900213062227552678813484961296\ 0939552158163097034867093130159329449141685164455017857000764150241679861138716\ 80, 2.0770756206555367755452585980713393217869404545911423051396840929013467922\ 4179356542565771787846110977803134389083195786104308136802767573352799580730066\ 0645902869878468434351183912236507112118642964891949099849783193358278988413556\ 9899900273483197870010949306104009190583240634847258439303464189950763625007101\ 5132023058093226765797437624441982002845682246230570856234451360830384139946585\ 5101859518488537059069965813364241214481364334799295153622861644785112902881734\ 2400882668865912450494122097164846605892797, 1.12338818958825968803061526178916\ 8014979319643811029738015524046559858418471442243916889192943716493550700716982\ 6490766698974515120094295520096107911861358909502321417741668265532828048665548\ 9850036289000721561006682979745083477319764313704909163103961314008349254937373\ 7504787957454315309356031765361899123259568138427502795615695564331288783223118\ 4510938718126633590562379656730196518986222843959208914279677668443916363877469\ 6449031965761487283731262617054476696600923846080793869361984186716516772664853\ 26048, 25.817429539970907097165284621351502051297156735498278650911153946619199\ 4289548992492934831720069526592011145646585235695879879889002109452233811736996\ 0376500136512153067274553014821111906105073749082300457801635338370259083552382\ 0965511829119266426539690562917289315988453721895676815093506942091881394563663\ 3972006060175402971802356345201668655248296626420933804410959058943821885672689\ 3453397110251637867594005581523138749743748411054717580734633770533828012586034\ 8704191090074708599990200496371723240127075045, 5.27146831974204701905130275409\ 7628066587627132344413314989309132015509222527404064798150335752354745789922966\ 9795572937806787015825354925754860153206568241177541306246919098805210630741093\ 1573768197686242351409353078910474883488302652071916751846197045331498313395906\ 2850664855258389137875825464536117928386715394935879234415395145648978180178846\ 2340968014006500466776270155317960284289568498675082568804418923345377063417555\ 0456333089831029890922205203387234879992766569457947657576281432841471073270600\ 86339436, 1.6177697231364710537005784335461651510283464166994593504927879844762\ 2457999442232387003643330017014565706284166367319601343163960109213182579478536\ 5480201500685966993055575625886005781394367588708312943334101979575006050927098\ 0362993946595225990414023857290348626277044250791111647470381469128012026751713\ 1772906559551044336279416736682161423007437540643916672410277922679903120405603\ 4314370689982445310525477403506464907137380865784459164937851971323538738099415\ 9892540712771632970922586312360424258490109793363, 1.15138991554933739518778632\ 2886409850038435732514178132282968628438437476677426933993348930278965508220383\ 6469946847021264215610569678414860366838557185456641541384435381565347109021391\ 9965080225137333692541575301841586595204887936844941080644373215220627871930439\ 1138885192314043514428135580738995839237914258279854505620412832678413598920433\ 1966526003477214392207398350384209295308443285258009067661737186644065386705431\ 4119779563765458397798477594762395256005509974337866198496283261955011430309476\ 02022447750, 22.125999965183839748839494875806989209111864546232805439067905173\ 3569618218670454911649846498251844034351918169577851464588760366491410737641326\ 1576710449121175701878976111675654021612807866652114386475948992397463121057281\ 7668364528478651895659807541453023546038836907959953154256408885516006660557536\ 8065437115668459576879702449514215173465664610027825060831632856968408982729802\ 4480104554976910269642827900663497650321482800840387924306098065945654023306756\ 9204108034184665252008789041100747223311682187471627, 8.09453602287004612934827\ 4791390394490729786904280429342316562963562655066737942438792667269397886812396\ 8658382072811510536582078778815999405749029518221891208050178896973553563372671\ 0123190969241854472898313496642786044319686161623421272729768826161104461447591\ 4410913759950916484138872595860212225955233871246502307404933368381892901774623\ 3222888748881712796844276464757858090525662418349575000423117473606852601388795\ 0554227682420054098586877400269276292577075456893953398741711064493839413384385\ 06384525124838, 3.0291953051494595624291415561744684578556827055371835170529406\ 3676029713267216855890867074023475614691539442574799132824263190810256123355698\ 7644509574966316165985190431960374121045763928328821105664698483745144816190032\ 8981526092870439213952722337866763146343011245172142928794012132230059336422418\ 9974982140924673780300290577826517064791262252759960634352425804117168264813107\ 1322757218948711114182215776168536112324298038497902318045175138997848987414572\ 8121168668291703585270888051469994721771784831718989296, 2.22169372195192653928\ 5018485558407627499390056332470166453484506199579755513036375940241086035330814\ 7547883346998288532639558411103981446331668155815369364739743640763273516183510\ 6393350560737866577091934892439431521198357406134154147722876427687946747065440\ 4401059627630512009311833629410791693764497909834433402559950830589675430139743\ 7894416964469875677079666695558788604496258989803930445051774087418765604496572\ 1649372332411692507474141018058094866494692441323731976566235215464189479397105\ 72399904835622011, 1.4019076466331981118938989724259506815302428767449614871283\ 7596778185778824163940300063406656332515485827825948476486183938557644312562744\ 9556430319146073304332107541881087756354404326324482475014326278179549186368639\ 5400469200858772158737672950376458271197633738787112328566356797996685670230920\ 6380001471328215716726185600228204165253474972409400248934080055457154399311164\ 2140525461247055123151209321853518141307623446810817660047724138806372577400642\ 0243931270163603403803577581880301013811003763176922802475, 1.17076186365536117\ 2084800329546909080015582219528953289412738760857498664774880147640325994677679\ 9513396340480951482012278993038562479581770021968973434043554492912794066266568\ 5583037890583721839092233145182861603365421148908664716415899531642141794036566\ 3083433660230669000146171614816019526655601715537072087175744314017598046202916\ 5019766757319186160481130135492726093590209648505586596722405761452829870301318\ 3235014704914789305653101279585860419563408151707871540632838148813256846550450\ 82446510855358739314, 18.627880681971329309685278494635363858044700808210149479\ 0238072628332468667721697351256961012865743891177941027331225889635915451555304\ 6197274137702971616305506277975223156801793295145776579729524077140320489411436\ 0095123360790507122872060589437934039409036688926631117944367621756866992351857\ 3197471260342740845895553074350644418089075958287331206553219936053510840369555\ 0454300642163093736034842308923169043715990632301981904173437413184067728552966\ 3200519597668056034543933000175467147951751397776400413185732, 3.84437135432573\ 4928237997963545154986579862098761930553042292703316777231305468904628846178755\ 8324577026737088813398020544021641954546900772531383088721041882650746638542632\ 0405673857655582187393157383109052553544760310813899633512566133169172252658989\ 7360625615409390113981365309444680240160080731212032947160659410073494509213862\ 6441412520295997163935536306553392808603836345597260337941394731341279162606342\ 9761561798249489117073305864373418652557209461889133706724173403215141549629614\ 75298871534205613252102, 1.8890755400276706571070961148635880000232885411739806\ 5556726797013731661220295461069762921558629710825463222068062521839153131697931\ 3298190049369848951275007968569741514609440039180929764104085383266309291303930\ 0569587989613445157634450717753088173663126744069922352978248436324916119146530\ 4150533842248995894569160973598168183995808863099496417677328127468578977155421\ 9904902039782562577351792752787448843392771136293360809701665000317548748012788\ 7326918873456755782269631416600963209344223744650054777431760356, 1.19581227222\ 9755124409818038936349231690379167204346091602775844414585055453282210369677699\ 5431130282095195074167799572421899383275568913814121376454631353815486847489609\ 4503701801084456363943058192090120858974974837583013725646829050132300340838146\ 4389257568666489565759265189001069704870076868411755664194719278519133240016717\ 6048416946111758264235502082096707640112901389347569658127293969828484336413420\ 9883346965172627541919337369993268541279282324715775786422497436856560791602523\ 91024540246453414828002631, 12.259430417829823841140778257903088936185169504654\ 8603256651589373497715936973502200164861427965923267597604666623350424933715748\ 9521172469316388171274188000195892512222282563555325439589750625381349688329965\ 5343296391096592543934472421321432825657698405245591651153042294351826988084082\ 7251784473833680433910982278003201411199410498133464644031443859115783007550489\ 9800853200913079148124721773165814056972012384045398316861654790156574582873679\ 8757971692337996711040228594692279956284238194488569383927788096769, 1.27704721\ 9608696733308139219973144340570909406413220806063267781959216758283437709834194\ 0409723577411254735735992858055973802339920217719313733847145155435790812391788\ 2025257746526071606340580305979189279422049593464534503045426107983783871831901\ 6457484911869973733161676193023787098034846554183908231022158723287728996623255\ 3878276162303689324542576378110308473035277093860021586925359000706528405981211\ 6485992395104863930257703193530495116053256852885851477764155265037168303185379\ 73855998123296634606833418416, 9.4196794862130656438566591261158565004377977837\ 5895404172837004646068961860851746258385705428856650896590119378406447381275690\ 0769689249752444682088250843362536286157413057243876731664522179199677106831543\ 2953159151745571639081682338086101674838489967362665634702268884413589452846946\ 2246892913339419762262781951687706299214568672865031706598034395935100573229488\ 7700897237202616106262338386986672225575452477318567375509808083368686353926852\ 4253665545971873588777578328903056878822026346350467291153310476907446, 3.51087\ 1693796695420077974484178466454727488635645588783648940514084470371657838205192\ 0904489999731638805422196925635683341035106158346144671588183620381693174554140\ 9726136825110720577401914841331534237856420526320529988083157839487784291371737\ 1479026422798929135008854258720137618251683583798591408567972723801260207696002\ 3348284904677349885260385702140885942492343600691196463524213372093139092140321\ 0779676928664108158121238761895928294541642057759933846784388582626133614501499\ 20136096098727207587548972752020, 1.9980643503060865856647594265289523874051339\ 6699479981736193467135285063454690390702462078202583964229872061138606786140647\ 9577736334175806097953810281217352730248624015579461807992914726027519581245181\ 8396511145005470044683260792209430443595284019632955021482925548769179806180859\ 9988454823240797197669650164431524910684629929907391459378359769483376224941804\ 3440788334397881199635615815691037967958121053751306131601564025428222357135805\ 5371215800504798381816907654636527641186520524464200492059241751677321830, 1.34\ 9449389063759556584775361658147503169589147322062912204582951125309162758971414\ 5321879437263873321195778941424856836148528409087890799304242665155376650323739\ 6291588262515864453555623113407112008420182418474576021686549689455812419377180\ 5997164242335971302041396675241577706372743058138439786293070691676644031964787\ 5135897665373396310882640666385746646531450369267526819653354432657802094576378\ 8847571287314360783733590124956203304637125025703222703387689462645864127108432\ 23457706131679437958064249206346283, 6.8367983046245809349175420203790819527575\ 0999491397486818635982770166181633694368982433330189882711694992643861617740152\ 2122806650758421732795338750568164990981715752012729967986916857001104897824035\ 4553760731979754657018852683669506268891422934386378295795319994298201833784454\ 9487791896166985436752889005394384095219853382575867451771344369151269914318239\ 2968561879909566150542840992985517328138922232497338768551986665038608765503176\ 0607861343027205620798268392481823148752725355623083150425697235367177930652, 1\ .472799717437430155819590336729846992126251665818995811364393304616943636056157\ 2816373888836498045194916544064360295669203538011084597369554658897917613608318\ 3028595866878832799781947616685081630400590922934553299591095031421139449177114\ 8190382239772971596588666571636697229740915812986493611642394588148342323973492\ 0330889709597790862855739485854498571970654947603133182610250904734988309195546\ 8982037208288979475866444417310146091719601013102238378676034663780654136371914\ 58787559270513858404282872561196321775, 4.5397988648521798335773666831730593877\ 0679778429956200774130281634188227314056976149002228496311818054103739849779515\ 1789473877594345378288463085124955440099882853251140793696248166910063562446155\ 4024514132424256855197729603394132394469529953780549541448480978863778442959950\ 5477802732686982590557610948885523404208388688550433157756506099704201907784880\ 8432375563784287849178713094859955589513146780106230165416032678396401597188087\ 0821406349330137411531524269403949483820854513477649432414310153032278623838367 , 1.729222220287991097157749715322610511617325808124044746614883620742053434548\ 1691939536102583236213557463995453865436192477153353693967263202295897648391384\ 0065316771054228426425223422933770369561910359774944022081284503182320379802935\ 9925105314433752302945752557713161553330730792022715862000370030974267030206198\ 1581087604427913861900842970314700557101392268424047609356054596100136000580860\ 9828348313490438925749869462304600046688218017005448108091890183708717800600189\ 91480695560438356167081790728712326373126, 2.5707963267948966192313216916397514\ 4209858469968755291048747229615390820314310449931401741267105853399107404325664\ 1153323546922304775291115862679704064240558725142051350969260552779822311474477\ 4651909822144054878329667230642378241168933915826356009545728242834617301743052\ 2716332410669680363012457063686229350330315779408744076046048141462704585768218\ 3946295180005665265274410233260692073475970755804716528635182879795976546093058\ 6909663058965525592740372311899813747836759428763624456139690915059745649168366\ 812], [898.36947420192843312601892512026418020304724701008432431233027989793165621636\ 8215474877956518340612051599689372488780562151116472649971092748242232347970928\ 4771426991618418898893297264064545397716208885004397913536282459984500141269498\ 0043874747553829985437069865657080835791620098903303672225907751057239219039042\ 9739975875423506185524069157738797688362550373729844867324371879365118426112898\ 4892479263951970226196663686394847083084574792017817669607731899312809084833835\ 9857919581407907968414974471206120546703, 16.6988234753117618127992581124156560\ 0388042253144113959638670003312452349356330156593396093346388710666331185233398\ 0164854074538899754071894165625140759613613276079981089406552112465326413857965\ 7686232584365157771680507960706377526698384931937722906755612620465538553345336\ 6627832198266086188637870469223558526157455092785299383331605861117289869617094\ 0625812470676659214324737573644814012585129151080480932934257256667082827082306\ 5075541293419409739523308260131064292989393192184000762408668074546735358078439\ 84, 6.5203930559446531586030400257931596879023257053442112077702331844342303404\ 4629481949787530909440460526000031924470305929808287065247252411462409985860310\ 0953437436158438663858901824237584720761205508459563163676354104887334106867985\ 1870532606883304001044527512677709284454763623863458500128062741250452918532686\ 6370313408698894632666428966328103655820676746161440415609469897348285203001909\ 3553693527981938300762660517626289495607072196834746081230153757797363590786469\ 8588846056434501630823403923174173980321929, 1.44401851888272375146011809914293\ 6638927999005787102370722331443820252535081152846056540102347378213998704410698\ 2709266708814743043892872497411865539189095918748739035906491035129187445305097\ 2934627850118622634061949816143598322287852335666853085445456514963890410000198\ 3227725091289094342937829681263531600188096568565408950028153781634364225484241\ 9510724780307162539134995199007070336285768110622327508658158894707868293556812\ 3367746298626969263976036645415701122877384232719406424710780519464023349455221\ 12275, 581.56273003079984810816510677522151590117390541100872474053137809945898\ 6790116829686109211803838961654777240384909204859523861223239542119834863035565\ 1897218666175429723834031986131535576132582531030665030092759333590026604425653\ 5916793504112612033356331254523580562286931053299241559491136411576282953449663\ 7189934874482653487980074732545741751942562556361278025268213011305391903970764\ 9778515435781553421323615505245338807878896144602519611062821149865072939415173\ 5104202901223182119420556073559450689628606746, 39.3639607042291152706293956679\ 1299950881383734486469915721967503817633552050505897643733688982516127440662938\ 2134735696846435903400929997894543229997902059857769123443578211402887260774385\ 2896196959180643865789463811448428535943591629918917833814824204654260330968770\ 7436857567539303493086186787570453762876667823529318416681024336593184481672481\ 5796242881149732943790977223217718198855448570800840243512218400734200059493438\ 0735028548052881324738426074489678252095291052339983858680834085170639959637632\ 47925306, 3.7352101614766358845127855656943001133692174034431444436697371375243\ 4062793804400836053303614370222805399675684529281954341240895873595013173992284\ 3361717662945674849431618091218323945373047729057459185602524691343906175479429\ 2843935905511367423540872496190721219748868529490010018620770710755806273558797\ 7985022653067093525286542217326863789813679063394670555818797078897582717547067\ 3956444307829258131556085408795614480837031698245896548953889461617133360615654\ 6553033463989861419612713745314368142571227235257, 1.55230415457345969133603015\ 7706505000575810884103807959727965181975388289469150853047310641045290005082379\ 7829207644650397726574318146632403872137554027276640926029926648393161418769678\ 1317620159084231213532571431974673311086458252809068324433219749409238517695823\ 9066126095020963919216527712661850493966639155873099449457857270605490962183700\ 6011328840525342995467778386747050947252155870014933417410384438657130558205146\ 8963405022373529074481998493620254722436715540076791137803479495644868568261037\ 49820799774, 451.90454904136692989926395000119194374250457742782988532526116828\ 4449880447493422976621427165983407408926174873475337880702058577077569638267748\ 5292729907409654824773538165388472981182992171336693228492115893773577316992400\ 0607604721939696566670226014032647951090227707942912656070601333748672985594364\ 1477472678646643430111995605312772284713247134869626214155385137023198107265218\ 7105612281489369805425129433145072145194799142307901432566622288103319442645931\ 3459273620185339135796200419413712355457940509922973, 83.6889486066844198663247\ 8092971473842107100855693263728774043825387262819823703815371836357645714334427\ 4950648881079502696636613722720977917822130422270254190819139093444411130452102\ 8829091623549346721922441737866046539443080910428392424546005173133071479172842\ 8524900530255147435631430679426149915127208791381218599012143118073563432047864\ 2319327000487512165879082267587876720464561839344820199246327801369762948373498\ 4815286502574485277359261232643722135175017624299334980697855643092907910700743\ 01577231550630, 14.028735652910669897338240787416978382321361930129951612752481\ 0832679817871131730344285455677098397682858219575159270286635191534792310891260\ 6831320785181182117820180570828012962927997264836879447391374845931762811304021\ 7091032659982622990091078432057752840577105945662547001312713313004170990192544\ 5902349064422415604433768531545467518129998582385842227160699212118686613113602\ 8806453219817935952018482596022655363788937046297856483957446966762230417031161\ 2254664056646835538680912577255285370054851684000385096, 7.51628705077277598160\ 6109414522252806683160405408426953637674407544908787696319788811417716608648295\ 7431366416980723676566417128003085701309604769624088812263489538949575831092751\ 3689414441372004172979318707207303775685401524947221501430607164400592518887548\ 7104215396404843411330575517210670471442883858005025671859571509190233890818297\ 9873054459890302456159754314418448905605322292060497888396030123948099971690005\ 8801772353090179139500360806602629113966805724926852029074102195587404607801153\ 39303084105002120, 2.6386730760023027749714012130495241830282718587327270933913\ 7398226635753452947424156670985986391990511387585360352300505489053266432863727\ 9938603622144107762856768847665131618822787662368847753383205759769078074233197\ 4279066786997851392629822351083241595472011202932752051097110055412405684241783\ 8598524325805851658298865101946486693108004952084316563648450729491639192084123\ 9663410678901838823464908392854147978009458341378000734612120474899236531935593\ 3825527932766070415094201088617868852415191674301005159074, 1.62880849327649694\ 9084187744632983871075815649916582821213467963634037893905593250684322230163401\ 0831586017092555218914830629504896170778198031726779203720919393926290691583578\ 8357785733988075903193000776133551490985116234609777494135029321997811565864578\ 0975097645249758783682274972933319435888881976905924569102793152287691547746270\ 5850456732200576896074326593730338772151106809102036289774624750231463481992340\ 7959562925446802259562818389848855524677681337032186829965845283184338352034544\ 91116190663683081948, 340.53286500047338734539159570030979048746802800497474074\ 1010618233959890623029430745025622434648283534515798920039002369999923222369631\ 7715773596164169500039154212113371330941186055706942944600572047817062344171967\ 1208202414970474970427779360898795479268116043671372851817845451167852802147962\ 5138282662250048662657542423198492746090260117025865035895201316985655730643017\ 9717397543002634262054962396453663442108278306701642214704838186641780688872213\ 9901512002548314681395239524326787095019441925787855824482667, 22.0907776082920\ 5447387102268512999393709458806782887116597644397114467008758202692590425895027\ 4683121755305096585126532216606992588143449976355409320308832014800728884611075\ 2210397532559559384835984982721667183197559163637551467007411571436036592162214\ 2611850817384265080734282489174330929780023238580760973933761480944096496483046\ 0236832144686283371105284988016619894789169377354102385335615625495091842184174\ 3338220194303495110137098606645967605780655315731813448873306797547191063363683\ 24237954870548524630377, 5.3091249036438315304039118603283766671159818191125516\ 4026515999748189782082577010087571260792911497734397162927262290691079809900812\ 2394142761912897622149083014321704895941008366227243527551274130535279632966425\ 3916260517096937356795780071605463598804725131724498130500664871765606076292981\ 6061564443965202223674648502301711595120724448879845624049411079519076804663290\ 5749561360115941987721777362082501158117892862715575268650576943298425302299316\ 8785867031306116137924419049793876759943620925996110193653540948, 1.72964967461\ 8802856034635470259751731515691016022796897024113762545068864323512617137598249\ 2363718169191958290044389224923020377556698139106187075422979272316287801439081\ 2703060439374876502781149084886963171695742549022224803670958867335380779382897\ 7034681889684323440316676805682243665555502523408352948648192788756583784271552\ 8193238959201221657183598266639417003612855093977937325645405554556966946884336\ 2203870010074243653573197551165940955766471459389249671268374775397426103300000\ 81707786552745735856183111, 169.69790879178389561964003364081997971771296461752\ 6537996581438994910670026137402330982713622743183725315446889815415361233749348\ 3701642876313596063798260446078838865679044304831478077813460612405980667779542\ 1199634833361502223500795885162825397415875712581670191011023371271211512486083\ 3814823394515068239656490731639237258021693974549342488923739791692221185664961\ 7542424714635119361546033171486134781324750207345013457690967190560886820838312\ 3502118761614748842762146586172164978654014575625007197067759673281, 2.07126306\ 6612996674362349709603588686229949146705519112915820030314526185922561549336396\ 5398729643559475760599181891292365491535969848168041911076818588284833317239854\ 1360349404711609900115482671701116084269962667670334990381093938701089717856251\ 0961858913655014662022492956640231503230858848622369349968310403340046016228941\ 6547025551838110012557275395176899478179702099817099955639408790763268705785842\ 2563735031993545021644580665559665480883604749505150327028143321463227890103908\ 56564906622689885171877796894, 108.58051246324845565336452226395675575462443600\ 8925441598121334230927107974180522867890323629593925121345216819485020824874250\ 6656384649650443809868179097344979857401671439745176619018185788906200424050626\ 8913197389793266116000565477039499789360573515240626198998449649221809950645139\ 5920118220847789916215936595350154405723749618430893690957840707951717272043150\ 7314130131773688543910296368680427932114454736848227700222737349561176851311854\ 5678250576392767223088386935542525323142074032761529914876998351234244, 18.6228\ 5781946477895894096251946285974284550160970270076960609832903437832518834786552\ 0775964786115678753041463535487821059455753035961258435540068472073800173746713\ 8281407041215107579462580437565080837467931005558255873920619890020572187495645\ 1917239502956976688597888097036073863639281350820562380267625703488577308568844\ 3862243381742213322899627255135351965906318413450737176074336454005142609328930\ 6792227924957990934094903816829212376101873165190887492992952410852238490531666\ 79021153610615559570378817700579, 5.9996601546389442313776241736042331299672802\ 7060051471207575759398878597429936419632368554960731148279870878872680108369115\ 8811735636287425970848836391193600144407564952929704772383521253097391406852230\ 0395476958206304449759596776800286224161613622930925339640904008506124903626778\ 1644388277911601443273054479249516534841310579490180996282050911258132496119295\ 5937327879619043045956872250211463655965612589995162487540130060651458664677024\ 4396248450852110671728889696468679487920433237585262574564771485878909157, 2.39\ 4144286383271212024314142007036652220512511783241402112255547784513598666157546\ 7495112082590922046135636428312240761349249671503022316834656419737532289179580\ 7878121175798912380454518007479273101482268188677307793832103923554181020627785\ 1739544767763066627765156267056245620885704096771088167165125170235897436087073\ 4024364472656894045563431920104542588294646036243916571541306948620900998287375\ 7485630476008636698938724461417332266746962643347985727001374054507252802510084\ 91531478567868369004983060155600358, 62.399413313931292765592023042630751183525\ 2124970912151854016030657494103516731712085832168272688808228740563466296252987\ 0470064388164435581344165441809975877385193198741972207193820793580729963305531\ 0589967951685317321553789246426514172009174080845331929008869887935942503737307\ 4745888016278637623340701995675054710881587402929975540523489294966637263300325\ 2039410048467707853778677436624724340368935442750677420028048055168474752818564\ 4512287658997637623918602626934703705434423303045571097145444059032677892371, 2\ .982967558327859352510252840996406472667482625946176627980074255037914711107996\ 5279509644402573483275227814093730729144724383043544619240396633362095188060638\ 6845921819990441037810134358991599140686598584506009549006445816001371652795767\ 2281824444815914077415346435562723977269769962000867354585898420080910427452147\ 7056907621470850989837502621291787979072977686632967936507442857837840814312200\ 3737445324665851644073340223907124268041848166670567449146003707095755016532387\ 16643496120878706117650848716836887874, 30.032982968975550554901069318698799212\ 3574925260258616296903503078276093229157993830056532902471298010018317667730061\ 5613603636881568693249605495324133186401491850538866115011167232708892253240756\ 9073663450052987799371691199438960420509931380179710256311134398859426920961451\ 0508350146198083472301369407577682906809179871235091842612962154993609306510423\ 3195444688519471491544028345924202462118300221791874106653974951992706565136957\ 6087500815445032141665465419528401439768766896172627033350328473419923833931982 , 4.356167797251077327866625186104872641227746835449661937610520682464300441726\ 4006735508294401066075310202174820170415606444791865804025686611514348990616704\ 1327822014025265776619697762485170660141019316872635191877863709755062190615370\ 8389711266027186334983512290666455907190869179951605274882458353145777006345287\ 6852392670951463221803324537730818564413054785394230357649342325036508458745994\ 9241180020865221786707278057120444012356566458204212177212502183060154099363460\ 51130421030540427521344023988743625150994, 10.139627219369756220554268057080854\ 6340022204082707093258765861212839579275644262270275408310992463626857636356527\ 4363537210412086812618886934063076811409596005545794755933723904045536843182860\ 2390776122752940601058889456771225606376685971315630670689556062191689527985527\ 2500017447669969480374491860247290079546500083070812409128222851373374768360362\ 7633799429576933969838329639591246251929956933976911518291012564283914066664607\ 5487117991548719466968904578701711526461116675933041290468806828450066396955164\ 400], [593.97425178886081053272320216826089058593578116353649576637751063010013373235\ 4146462230644523326627748088164080966497528534684887648977034853854190851041018\ 4849500003396923397545664478400727501582303046065127861540920561845966542807374\ 3075256835291295661843736859734474072159764737546604732146571171817598008782079\ 6617216338740461323318957460372027531905729522123103379791891078981338851867852\ 4138930950743123041065896331374231030564307331384924284079557994137031367735519\ 8961273171584958150419198420151032734030, 9.98801246793057914709660484950524004\ 2168829442908370086241708836841609853421912143873112360162451004549337641611259\ 5203427359663396279408156421039155241186774908416006708011863688095938426028022\ 6904533626443201112223048542145906299837753772521109871483589034985149417085434\ 3094269509194917534378683367331924607590342755974510425291991858057093647408105\ 9445980316454985480623347758466558684261236956243697693704120851039974581299856\ 4230104463556894116609926064938698981571504140658262179160454092479275261088024\ 51, 4.1733534430237466909355079913348324092924395968620329882050234203596753920\ 4302461669677681145074419333936116828879438179448145179310609442074797368890771\ 5766274571042752467185583067467011739975171125120255453481190817467333215852079\ 2531975940384579405521409994756665100211615661693026660050852172194164185328887\ 8126202060856199359735699368464821545763583417041924705589404879644636222761111\ 2471020222475191863483928031591084104145569047764031121207368590449076971813307\ 5921263879832828651910049570594559038093480, 1.26377633357402534018884560612204\ 8440916248063763583544953814047156476145775254327130360888570869682728647158070\ 4807030965672964599345455053310545003929503339502296956225213248628654952333557\ 9664457275393424501549441224170436778248097227450409898771364880565808316058725\ 2392314945087001525573774148739677292617660009075884960393466368108447951360724\ 2281055756203705794294880680031835739286982515898184791734445826104171739737916\ 9026191544270529213221117097032234927206810860629283328028086459218425956487276\ 37332, 375.38715155304061689600549977186591733131969382440076533818958432417158\ 1079348641465997081300853007247763772299187995937104428967867593128457763465948\ 7218538085536370537816142608222325772954609012989185646285702373765281529985564\ 6939179614145601873808507880907272301897285865739266074478201369846376918158960\ 0723606869005533766363561793591413442834149601120349117733735929328261227679131\ 1960047518492876369510214164028850031326557309350134813441338301646780231046624\ 9582348856799853208063400983901837253417599057, 23.2063402013853489791489566259\ 5308197196371301445200300063546236575730016598436951797245928501623739091755143\ 6087616317659455848396901431161985466601946471624549884343776608166364137488551\ 9326608252308392778280044026575776600087404651634004247421143649340524188200766\ 2760461292462339797050620535350849271998198940878435390560905543710737025330063\ 3322256812364241925418140444362269597474612354444278439455005579157152248695106\ 8477201044688016162344977410242065831830135481432613669065997736125478035185782\ 57428038, 2.5871730339096775819039925608336436904161300395673494211694606465836\ 1973017293036835586440148404961162845474287595079617970233625950168594792629244\ 6998569628850851690546012798178884073475283794775971723258446084440696720591979\ 5326857903363553814392686861755594618889312708203716269407725453493217248566931\ 1591515297467201905024048977903290601533931388630828168641188571186226346686798\ 9390327358145564767423093892199249757754779120813097164721310240596441561719672\ 9504271932965944133619119712350435191490615172712, 1.32746489510941784925741294\ 3134802857357479978544862942037887449161800540869807358811686060281134914835229\ 4781318526067970106131727183125963463928591980938541190227674784704091209048031\ 3058833208845366117135448183604300018956378538923057752944211592995029113304997\ 8536926054466829589566406086135950809844332586696288074675103688182129191606583\ 2325038917516358966607241348518307600017096802982657480936054986515286779003982\ 2323232009052533457932491507033310261048873051309672187073166010928577505901172\ 20354485433, 287.86944098023961995543759494480470502184421102703032543284405385\ 9249992991601074744832926170293378020889642136159442158345371655964355463637617\ 8917736625246090284964920975892091357606675565579813991819136228134804354387591\ 1322473988144169119336271581859833115575701354018839354598334074734263817391309\ 5586700522856865568670293856071734089723107028066376694799682573761519295389819\ 0637904681008878216919824248586648369786832991781065811421151754516941951230270\ 1186624648597636827850569344707796816923759955582490, 49.8547679035844391664956\ 0304031251926410329559340865475593623692496367312827170315321768737514580244515\ 7697691880836622083380626474569811569269853338601143575356971182584023799454287\ 2456221837110492760946333082630875808984531915591751262263349368025310063636175\ 4809230735021285613378223363807018349946106799926544470504264340883028280168950\ 0867610931663978443346547885817121952191657589936457011835335311646197238236490\ 1909056077033292940010188867390950638736055585775194884434791984247998242667387\ 45079713453643, 8.4555622577003692336145325372453022199442640291643818316854183\ 9172572882279491315194213184318907119257165714336443508675048105255813040313645\ 5951214259543470615711962952737728894502339318665788688269801874313777511763636\ 1231483701100913320417836983940320593766684637389830838883423011972219125045711\ 0277629186397103806139138617358344314355686391087075381377679778118131653477297\ 6044219596811783754941024666026668987957582807580503187954091479934805204796625\ 9917525402995179525457546541322584956260672878272308739, 4.73971560883074465921\ 8049226020463354925427156651855555134559536089997891137466938871507299510869996\ 4138578851488862690602043357508253134882299095825882428778242151105258820689126\ 2241321740769503342050917217294628162113372912577349643746895808786889302970516\ 1658743897464275112356462502265767570042793642554254059002899564333022439193152\ 1599814724142062173296188204845256582810057611053556635520658848226162455108634\ 9655421357942704408106408865510633038765169814343224331175566894149484967131591\ 38632067905279900, 1.9583537236546489945808330433263173628073634454700081517661\ 7709198310017975867729289177168927925419365157918470960725313047297730694474359\ 7704064076403918079739714417820188691308645531113084616243190230183663751310206\ 0172266061544355396275970320735590455198248376541411909563189554458416265654776\ 8702620015617543507479497521314371350329732474531158800271770386093933807637702\ 7767566397922226586537496105310456454914160100946751503313802024735983763134965\ 5029373434017392291108738350901482254247461328104432852057, 1.37234283693717653\ 3045562569990139811482262211674780734839007064986364946620865146885296641371975\ 9455608052467836975829589677357126329124339274444315405430728063796103900599317\ 6448825768872437214676349157232397475818145077147554255082496439399585167152289\ 2914406325855545299141905745277838189899671246887258343406012541426374071270941\ 1384833587727580045771929059286858083243708200417397655189938752981425954596417\ 9187673035281963289901353830531132725596778221066615190878864592486171541366249\ 99605500929798819635, 213.89541136726254804970681572440093701907437221738331428\ 6424868544872550369593442420029849993602539439311387279338192035800521171090471\ 1281140202799185785032287815399478022678046959157488558701654975458251354515019\ 9427566477907340327131296012468844051053758434986865556949164713309176226432600\ 2742603984587219501519349227901198637070588322661700716676836208230597389207574\ 4796388470779990906569777855663841182014686711010410660340777269735880541867934\ 7375184943364960794425755724370014473512487240827955263220328, 13.0996708894202\ 3571559250713887257400840856646126996080733182564138270735036622639283062679865\ 2265874192536424222122363223122528542817076918045285853573955528152261538734196\ 0376179658178194698442559112226551684471767516433170422012290243831090830829325\ 8289678694402190383946885859122898049119246608011044373536804711662641742979206\ 7558621592503650499789436095294816310196046033145914608851350542163494573071378\ 0253089954929753913455177499863361013768292028618883617555614764441646608579130\ 20819069191940133275057, 3.4843694413180338087604957294586695429291763312434169\ 4047997122329894418557902325112056205915423021613627387336160411992112008258889\ 1467762950416718348678140740168451210476990901287668987520708762065666577623031\ 9693678242795736748976117313930108774359790965243368650484513655984202346384902\ 3168834576186594281380576688434505248851776130040532666256365650230115897651320\ 6794362469717331111060861868310671627390305531737714903862125325337681290274874\ 2888059187491068286090314201947915872676212890223689952964003514, 1.43136142989\ 7756951985157992645392017696961940609895012144428839497786898564758764128727517\ 1050910675305540883381613466658534305862958534076682247351479958451278589653403\ 5651344436064404506970621900474365901657706468096159114935419534730447373946493\ 5184755155931494355990362594944232986048484246171114567606123261702340221936028\ 6203559677060736093448216183110828325123066861114732232208565166947417220373472\ 6759303983844923269665006165553880015680918074990814000646796276723705135755839\ 24175166124905445828854478, 103.39853399994205717936718565401817317940280316235\ 7548891711959617358581224902172877326618614932616349255759208084889037924105740\ 4261826497520504840074511866578426628801084465930897453150137384570562626376490\ 2496089258997132904495599096934174905719181079276600051550448466583456921575176\ 4365650483862542996657043427951350335466551383876994873351445457958037009185989\ 8195705240822209076658351275562895233233121416531606919875541600805716348839121\ 5427209912283403541748068977369428927092412350226064165146758410131, 1.63032693\ 5746936076034763484589453630761180963036378378031448702318268680321506906755688\ 8650950444006147549578420929904253696581718869062304070929191011430804779139868\ 1755482283569966050206515890807391876717566933254948355933424818728754019103585\ 6343733479473148892928970936135216001897970586685108421484351425038011432444602\ 0334688316159151315613127059492831341214061312870327657732623922970265812909828\ 8309445916289982357481499220273072768961987379164375163299418551380930573059199\ 59571591800274720023631106070, 65.145732924475288819237407276754840426452363687\ 7599944965629350529323926760284454713104978915045507865788393345085216041482796\ 9041786656639223540215641185807187063005553002722043180282644951192222420622748\ 2870155401701435666677463098182351011608175399587817858545576436525198405071411\ 4339941823096659531052656505134347142844739804758594079373107608023454642155336\ 7052993611816319153236138265054205412280880074387078128561774245217321794863738\ 4631368821254244400627899446771351155344191619489759231364705465767352, 11.0957\ 6807071705894088977271210373483527280680360108335681988847763968602575650701960\ 3680056532935063858104145775326999092879968151273632472462317222843849400025393\ 0850115734441497826909366438484016915530616164261134588847121253707837114072314\ 6104170245353288902834128065583331614661991474777729585707704547264823632034049\ 6095786986000789129129676954476275959750340106627764662470681447822753051024187\ 9642046190904403046905883034605526255445798655298570125387477470048723714546456\ 24769019164571933123446565166070, 3.8772127444122284598073305430066307140507638\ 5516906354970234236437267272873852862721741584723107482348077952598727538356178\ 4770934155016305632902150267344852453648957145992733742948415251410000122798100\ 9312631475878871793947944008735342230280150425577702679124775344606031206805232\ 1326799749628796106348153004594674122761052977069939031024522147911118136412409\ 8816478276911981186953849283529686735047549362062247233859018119970499428856791\ 0450862399472896329955380520228378903346011916500981675000713456088400885, 1.81\ 7294835320979413617666137177513174902757499036765688713955655986839024541330732\ 7528989766380919057911083357949409251255482180490422510937465481679889001006378\ 2822508467463756494343742378029515687952971343697138330301837683357971787544077\ 3123627191897253194583339561824608175827705066273153318408156100600056838930204\ 7920551967888612611467931640381903218619552721926135397986521624734737924472994\ 5586666292147676914930805590682371548737739580004034804891583652791016655358995\ 15829097903159829510368269653578712, 36.947986425818333788823557404610113933909\ 3682888392653335121519126106438235899223486788210845768245967675666860399797232\ 6633144516295917836544285391147186430503811303588491152965613169297011403097747\ 2724040842946138448947237808599407774847500989101635122604816374656183175793632\ 7601797065268090785547170982000257425296112664051079220807433266947396135071322\ 0007903780831681988851478738388385789649955440991675538139130183943430947154277\ 8187678708340120988622354613055448430719154362090697384612047546618500467297, 2\ .156350906903102970249446998537710356459268352817045118183895400329872451844515\ 4366863393530575196433836929843232487335132179331616334732560867199055504103863\ 3613975404953253140316365394551376405474871981591333565699225764052839872026996\ 4702334340698355320597984586606832357010676529216101144449619771733024511153402\ 3737692159201993030130533826925583732592130360953001149219861661595297092188770\ 1913145636545863800521744021594315806810067442017062638301368775128063709113263\ 21838985248201823812824381497182558701, 17.722237122793044837782133098722098750\ 1936587527572950743052666939133740434356928700615368564049003481898726292791902\ 8244834725324049702696192841415862924787631174365869520197723659333305906491339\ 7445275749497853552899074898949118329164443290239979314067162903196920391051064\ 1671462138012924346100495069468391066865257030587630704328326891497618622344528\ 2774698377384895861592699755290479510372047605094798014265014668593409691338761\ 8647049204802913097283392740735240897020428939460499022916332266378341254992402 , 2.941605234520702302358428752332726714327821439156843081083243155355091210545\ 1057420866826492519936853125160113596271303135762072815895894260527146534630009\ 9502388211702693195826721543447149223767944507575213777697078868040131076939902\ 4939511209938278193528721623531009871656256335830489448646930285230635794363337\ 1119025813866490867933945308413256200388542066798257924159800186687740181739431\ 0485684683833619965828217525993937646586561070212461528763064188818544131610625\ 44202330420634122431185372341718547087082, 6.2332600868456476321305880659531688\ 8737477905615528960032375819835815540455038724696442192912533035447330373194335\ 9780924354776099788090604277634679392576672369576768669816249270486289460076260\ 3036681611884272959019491362844407186177231185656679248375672489393778679608989\ 0828072064939102268811137531250125662467715787119769187349423360451406769577276\ 4299022933147988110430581234834685639740634941116966968268770849407636531366468\ 0309111747347888732065769298544316825278138357365440463120929031039074092059233\ 232], [2522.3099719559225913136555004670060487202376523485732827381384388496724122436\ 0389107957942785001849067953173461238056894034371233223142208234601996984659412\ 3731145338947260839608487123526000239694679507533532580017739343427545802714052\ 1685136105530148516238297428198852259112961906891079471472716457486432263525023\ 8162829797443984047343214804851680001812740574657199330172051709075187393105365\ 5385984384124596256349778565701348846928383884522508709660816775252653781236828\ 6890216658574715697494162153162404714699, 31.6222836475130095702000475873582086\ 9987578940348659000397890261453387003277676335512719899686825362259369152002626\ 2645719631548388993205574244847353015652065916342846369106059977779750472147646\ 7698724280155091192529430736353380827429437738810937392279245337561889834164279\ 9620201871434741725923527635811010004604799921382247880772769988259668191241376\ 7566433709936012627879703203180030733816556884346350667473382026739975685212428\ 5707835152483859123690288477670243139464425353283142544681017103224447901421403\ 67, 10.787868020414793747917172396773996441892761062736191524550824870098128885\ 8102794431732793179472185609900600060870615973598163003477685524908344789084076\ 3486472019263190511191318038351154605196794473459573335448683015688567061863291\ 0775774597052044243553552419625288760025332799229538578422957688842415161920208\ 9100406259792448440821752793820178987089254574871881924099502415050128763029266\ 0773958260816479449154968925220179271356874688508219007301804450328413431502978\ 9402257077498138977661481161178201722355129, 1.68485154218666329581476628138183\ 9791624119026814155922595902964857020277054651174578536483486187017751346092763\ 0935309374394606172084219025097213621507712741018057477441762801750547184171869\ 3918613296936261439619374521219670649138133826075538670414335752349627783492794\ 3908232007540753538349185906261574724088947377885072085372264804478929235459224\ 5404495953517099011144816919031558634339680556245376584593879289982550755163813\ 2221781979583097834038604208908655148392134843745168597262131312226190137509923\ 87638, 1574.7440173458771629837747010386087250169630015765791642426404092061165\ 4216537570872582056484416347691588741644954781858808579071431786240564908526896\ 3678554110614654106980435353333431099911937344625939676902489390038519305190818\ 3063504055097105148865335625707125025431783577093589040279296728237451231364864\ 4586720342530250165664946894577801182497188161402679214306111223201686322662178\ 3851615282936843844949213977599898477996851584705069572482503127214157581098612\ 3837838988090241416922509176541289589730685074, 82.5287110190878612811434255516\ 7884453548760497585796599680276167535517702894619628124345879385694198643043391\ 7903536087114143594602223053948291658151537948079257720883091923578437280630746\ 8450817986378555163613319873784546715495508100513414455998964205726438878903649\ 9689229355056983635544980128650331617590944307944005690498447863487247351225197\ 8563829743364797563404249572080771535316832279027945985385970841617062959923577\ 1785036351817937880597870535305261968861042723504575465888091493158029013500176\ 95276196, 5.5906997324356351043917383520288231453939833845848729031015164816361\ 4162781328418873565930362436778508197457047364406239461093437008415947127831915\ 9281075190632988288033064848098553549451074135088319720993472582029354718817631\ 0086325179126533820562648693135676949684153776536965509248679057858424159447282\ 0994717424712457393007275958210922808132749765111375883587236319761579562669649\ 3293459380542472315518680213871936997066608071990900665104703117679386113569545\ 1465693970173030813961606584799846267149308773146, 1.85686722891753705314785069\ 2020743705472701863042400585223435109553257501621875004399579209746570857521921\ 8496944757533944391293909300747601613779353339299884401766944248749236570666376\ 1333711193172298847641188667302899519626041786679634845695945141571401032701811\ 3051410760083479596085941272948326138736500479121443136692580257316073072756336\ 4370536375789255904829515568672419062454774847155250166610010619631286690566496\ 2430791976232698337752269233282438749013794534529957542560922341746330126556093\ 86646603103, 1197.6804798557502166933850287987725540095035265678253417244506120\ 8224701214332837086686095797593248876519422366238819565162801107475828258693414\ 3194954439735276787618767776650854784346938187541036929915058849770624665123251\ 0282843031631666295552490242872200135072320097579150766295870365244420605835829\ 6870904343155130857622776899996122183969504382464046474132018851941415182492319\ 6822809719308515593012549168658532639979731538274392541049963090530286621767598\ 9546291619672502375138500731745492710141012059745555, 189.906234212629730576557\ 7859731962924241386743000994256462708471178237140674554177987864817769134172107\ 3195134827370539261607392455221011898576771741598211255904189369067454673601312\ 6594096812286864778503750335908300349650086775788568575467854612801354457023159\ 5606993696910115953739813619593597108546589808742058550128550153832102414529948\ 1742879344237788991078708757695786189587918755909262479407754878520004385826066\ 4646043422095541724259401489266069536269762630704747646848322470427667519760913\ 69134165217359, 25.968121709145915660682795161492533630231861140502438403352623\ 3404054824389252326900056498206163950462818688925503834681402712268343881217894\ 2618515705257708306084675744043439386563496742008198306854335725111301782641367\ 5253784170833122321376751161426082075870861279491882326931137811577042410524170\ 8232452176126377381120737360556378663527878556643977970781301515303717609070631\ 1143178469086800219456739213102636429845945858939672507154681579274921087066691\ 8146470686313715290710471147687711866084652209124326993, 12.7202821026546557514\ 9432368530329373299752677280917322609413508512947412330532851778455225328944758\ 1787839325759946591278899005463701236875153880588638130094638460772959233685798\ 6160620711279751170035872220144624950871102777431326545492626950662534730951627\ 8354610924926753207143943143453700976323994709311271554857452807624029539788148\ 4546608154147030210327044708865507256638057856859934263358195402481428906933671\ 6253276657634886959509374099611448007121359520342645254856012617342846084526560\ 89162887790972459, 3.6620943641258956617727098614465310459574619378074859573654\ 1463631846054007665272482950074201065241585007933178577682451946373217260340255\ 7594849401727780407012287295052479180386282676105310446386558888787949336154077\ 9546976883425315710299539212998823326467037034020729600577277350911893479870675\ 1148099010218286210218665687096494117065085876571307663418703681275397938385571\ 3873713854961172189444788776702574585682393682595865964890949321758010837275144\ 4333659202570494104060526159879334582350105082532161833629, 1.97942285649060569\ 2752810997155676719727704088054447014284517703419556602804089642011858225438875\ 6260994084893262057339795942656523907661405243841171559714455677821927784906417\ 3193210771490069527028798856638989952851421552893716760374903442628320522734540\ 0219563424896659550252597641692874272791262903445739199620499642055941153120646\ 0917369441100333461203371848572624412808332098642479885909357614646412418276151\ 7549469037944112206499336808223172382325428405961594139336403157204173817416507\ 54239714625127328531, 880.65539936086907694405555942751351497817808913417211900\ 8486089372213562462993389249093797029808083563104563640575338436672198365492246\ 1902186022480963019858046673031406331784694163528053102949798651141487156219734\ 7329716527710819175556317731738299249845054188297847132829573585390512283921287\ 3587332809233702251383030524541961896477631246782854532615776696907739464915755\ 6638568466669381004255429661515804018874477541182388690929684924874545750143574\ 3749997977697529826982832136680527580284517500726666462494241, 43.3197449086749\ 0145432217343088410638684360294171082460445941144970496992282003672474363462122\ 6930576711630060794942245798854699008341473919653206007952424479875670358699532\ 0032275801013695358018618246706847219495302760331543082573298497716540912028556\ 3700794094427896899625164644693401258828727898374750649206513356679739208351515\ 0106358440427389167352781093176211537032906486877450706307733836063100169076435\ 1623099974687958605278705445584039074358023620027723558665295198253802578837886\ 32167388098323462626446, 8.4850723790762610762771163353817991227492168638629150\ 8443131797387984641746906720261078930109554494506368613817138591718595021454507\ 2341686996590141229975591091230585972103336754558557755631775241733254802997390\ 1040331723293441287428579356358063057568032797798633575281832686330517381089501\ 2726697866425305123171842088704277273042477956819621697024219421269373501784167\ 2407787766594653425892122583238674269147039306825524969766738283121840923096374\ 5552613939567622305827406426888211593567455573272854505305659398, 2.14219140441\ 4204049235544084984773013868979941772453493935309395990650879288272612168742421\ 7703915778900716591244319608169803772636294963002648547427579926335806724554205\ 7516411493890401223669365786645914351641350911867674800928985771481841050707275\ 0140742707008748477836358633837532501037184646834160512290423530204304440279763\ 9462842347026731016664042654234375898981623596437115595243601018553801591542055\ 4398478463165832205529124436884579998850909427891325728552903055088968228468278\ 41805511998225237992816053, 412.17802514600704353078059465988942077351552070951\ 2884201656969500643638048035859978178715865621424136645437373270946340392459961\ 9395332951549033437770676047933629977166175360379205872612593892111046212851130\ 6139996118371361069294099832199316971118275987646016065356943418757235917543017\ 5724826442180461824080225279036298466387981409072541183835225560447541178564948\ 7696214404342133358536609621492512811021262252618940041728383228581572783474083\ 3496370899030386365986444727194241476791155430206751018194540886131, 2.70303964\ 1594920226102538950399849590693075770302178541709641490242811781310792027337747\ 0413934699993379232598684887569472464265204878514883788316760312748087633473932\ 3762280096396669327797200509120548899422354123364573509807136127802308468957601\ 2165959853830486423940520286002536648889253096651794429012094809136788345052109\ 7416077025711293451155375088250158590766938846991169333849461014748397206201320\ 5304332520324174370076448894544082167899235178710399573127744089977612373256866\ 21538459485551293983321969381, 252.79057744945715735609755604949706408862756392\ 8061073656367670436429470729968406706948966381220233085835258874632341665398008\ 1224663785377235725887979438706114307815785982129935018479750622693306091357094\ 7349961000813921614439983767248873327116946682169201616343029016669626143599628\ 4768333290622978888656003792438268180872074656183062734915050426076918565141240\ 4922954547908807156416759168454202769885301744258217588059129141137647454771192\ 8140605613300119132853297369186878249218280069646862230670038494376004, 35.7571\ 4462101947017272869336972549526616881222486289788441043481087921876162164451322\ 2986590567806009090905734836231582638236447230986779954697616212107870492865976\ 9680427529880207446185002804748335982467132705676998228576512491746742998174877\ 0626815279136837868218079131703937116082790937212346901474175973697479033063195\ 4547146794249982673330808130345982761430085367681446212117954632883692919376866\ 2998267978903521189169595993151162403742642823625640476169026739119429458266095\ 08555414100653658863227977230225, 9.7909581225557190566552961496812376877962910\ 7842668958450492193027409656444326517777029326807757308309533831540681656576339\ 4688242559975089744050282292462156897721531867329639315879945075175355419496022\ 2397927412705157843931500452728303497039773515176691202925423386597652230807079\ 1160268440162585693074619156642058067556089803105070583007949848390345645364201\ 7970187893348095488054778871687959251216603394565810556709314008351121827916442\ 7297028517627797895885756665169898993896599763697198572640959463094611679, 3.24\ 4974218408745569416271132516079213559987833145425190938767534034282981451869261\ 3048088644960842936368999038967148903282838176103262965357746297250732561026729\ 2417053024990605606587576288710610789763090835126318395810331957335608519046431\ 7387210888680535944349006330381523966018642185249433027296126587113802100140261\ 8515073996084920116363494238868643088223907030585261012299307647814116400708696\ 0842883381300318884599515341092130723221664331446393124875143767278868568659859\ 35105669593859113622199299512945231, 137.42928711945966825825844020647541211701\ 1775014723285702424017641681488895585817813596065515160813181276853628228860068\ 1433358551902816690855373381765645718917579003590387702234990333292499287116739\ 7177075708218556462492845366392860570632505337806728016012693930701433290776160\ 7749406563564359213128884428485875089705418695018121677407185775336619447585049\ 3484620945283836353470977904807741321885374447414349345913232160191594209000010\ 9667014405677395058239446364965873829876314944613087526671775985308082175169, 4\ .258085415505596416427109378977301851690719047305518496512247421537963694317716\ 3462518798878000814815927498095673710715850644224991377571498797544828329285508\ 3406283523041193870634567742745965270233213837392434027390733702473974321637844\ 4021627087289126256762304991366224087191037434953095226634354793706064862389332\ 7184956344881871660338381649888819113080288617055042205581821905022316309804555\ 5770561587874572113968647704236814795051915611346775751958991871497211085896283\ 49701639813110332281937806270667389966, 61.073378800306941392767489931518936052\ 3234792927246253090009348085342067648389278614532310276826572909242267354110821\ 8659773957376714438566236587598337926814249107212236427314465976076375384754207\ 7738040821909576532133491384634847776368367448075133548156047537356364043313921\ 5276822483211389814171293755297747041660978578336981280975118175435760221138485\ 6396302831283838427366524028277893585551036545717925896442642030217817026827189\ 8307236453060432332273649905264852218329535542765238290468593668663409562871405 , 6.717366608212188638931545966866495174330299940079506532567600555932141603006\ 0206620589790394025448130507051528400222914787045631123805574970432465313661866\ 9766794702102926763414339235498958937791962206888765242850176901756391944386783\ 0444090452300537792217568334251231512062497714814572773720967151654195792261493\ 3172268010907213745504628827743606124115685560912952130066710064627330329439653\ 2443032660126086973395954067056863359939172083588340553150242489529619042326654\ 02215855149939166683639695469511850443039, 17.945670621242224085596926370421062\ 9390650378233344096414095397484167712252346120195213598854855169808833590912245\ 5804821241386753260034751085477610069486983299046319775785831072778629852500210\ 3645807090327656288154190433845204029812753559084598377715334817677584032880882\ 2363578100024797430747991433403037331162100541051720697408218724674943009444144\ 5651988956784544555658709675004314917683009555215508295149521696170295538463488\ 6017220321839220002459625430057166652549868496722608639408603635354421370867115\ 848], [4.6975116192236665335042722144063139269867572195359340479804573789695062974132\ 2164945720573060390483568348594634500272042083871020242574602848650938647300777\ 9546528428165175703993801741745908256052957236953777885291516050136357663847039\ 2018153589041589996447056354808099761923671692791020833499464593981708451086417\ 5761843658508273247818171207653746785985155406717396919293390432606982586380500\ 4211711438681073855789934421807167146679280656516292686104629173451502946957605\ 2970586552583716233688983767393537647810, 1.77480212192336675365318813283704081\ 5885012736177616710500642281288262838244138058990578695366320338641718569792873\ 9064171470258519927093890587782752079998600745852820073679639226665209300874622\ 0589442735599394939863634433822844452636852504020815535909555834012746953764749\ 4264873075121461148215426984078032287171512169843658264209352253443112800680111\ 8278472882166826674828804258674247402920820254619896408815572552302123497573774\ 9954860780552833474907344991581188496494959746509773274350341465755333895402403\ 19, 1.4293630375852234102902420182689418375300796062324655016269680717135297451\ 1878844499853308950882104366097226340623311046143494281012532976674233286851011\ 9370670408187891342091074813562308611749269271531804834027538874127891174067812\ 5813251433826744151567005409051769228612490922457377637845041628238862889432131\ 3119835246403318211229720567295290383368389212503168072314174197704879248422430\ 6530806123940717893955169236290762332733549788662282287205182147985439907693126\ 0393848117148873903580238145309152882335497, 1.06030805141724030281974135189834\ 0838233626809545520208021084484813078958400345948203540091447934726946915685125\ 8487816323280132210941832407737982984644523442170428027003691187276837747793702\ 2495159205595305219566906504190869722104033081307933126944967921102282320527069\ 0409548429844317863483696648553724651885274324602355168994824142509183543110836\ 4318146129177447055639533795359183378117749941508919926431963597157450392633452\ 3690963641925301472480024412781207192511424475133890003174115606206003025169865\ 86973, 4.2263988151114192960886786486604521929538051173447527162819301767258468\ 5055951277001677804745560555082630474283835918847775679103393829513391240968633\ 0314607617563007551832506307582639560853720703738336422323163318765473467679983\ 6731698438554061146818043609251918829966718553555484798828719472511794883300491\ 3674052773335504774020461180062329109282114118383937156925992390058826766858793\ 1362872831113734886455917494058664587891627538097735408925591578021116071473987\ 4643560499864956975827129476675052574004289640, 2.18229264063668229447086982039\ 4650872513493497492971193374767381503559156574911449310855000014714313130443581\ 8736760476090427686789767445423211680296547185171420561937989235566279406231438\ 8296579698682674100136394401102675157312827334926841329534226702763305636323051\ 5350857784067781912044032689862424958750994859251441764932169190701470841984796\ 0385906146326674657000666362780506417433720055386041538461693561871160594641409\ 5857832537238279192203055979095502930429072198916494074630977502013012913497606\ 36439540, 1.2685286575592217779660944609667876274027837476581417379905742969982\ 1945590061880750255190775214992864433267813926872993270229066737246231612883218\ 6674219805366412385882324393340642220541903806201499596960934322275647116276780\ 7082578011228782796679034013672995925906124059366565933902245821422819033442258\ 7807377073654947628564454477922651741643007786004368164179432740491387633528859\ 1813769249193830058764780761661645247821143754286760042065035654156665787484261\ 2929316009619657103180867700067946296354729095840, 1.07343572329113715112978980\ 0115779240600759413534762572180656736934100232316975748433401590882666657684760\ 8888039806295235784393778343499127126330428382627266369032219630228736661845476\ 1713686737205833219136411534702839656235767244811052094867991467566528657120566\ 3831124226450872058658284569079512980568020141150416862430285613178790441194191\ 5393238505103527952222068737123647711319464949994377506173480694300648985342660\ 9682999378677463410709018553981525205129899032448533868291628029137136328012146\ 44793111819, 3.9741062979533348550938118411472827359896124805229672610697621674\ 2788407920269626205361012281998520487105806460916673012851863744561964842812384\ 4657485057427675058351956660954716358537095975621133268107353772544283227317813\ 3899968808287149441626653823875732957843489206806861753827686153110815488178578\ 8393409397406769569128219290556076774694755118542502949489794231548294323783231\ 2960268390690084449022062548255780721902960487336912993825175625559886583831942\ 3504488328823001601858762817325605111213254136693083, 2.62575548957339474001573\ 7431482034306529346275052538102970969790932248723529928141512941067365299885842\ 3359748719391469317684159940579687640273992716778208721162236446676313359854314\ 4873199235392326737870153812081890662119182748173785118681625602781161774530438\ 8965885382882139958158995740908632952486227989223121527835083206542044509316086\ 2472290024573264104897734591755032735525781040457760333570760970622082061668990\ 1578651777484640334125034782960783866976292600615707332846821564972922868800441\ 05011975672049, 1.7032693831162273853446684900540747298189968525920619276689190\ 7756788011132474282280720929178295611317922547031189028231375343390342491788920\ 5110329938017728767783584364038871706139269330388974823657118051883885592693818\ 5049041893461296957689754142405447474209376251863870713906128670918992695994758\ 9944806085452458148675547251255770278480647325947469007341192699376232695305513\ 5989245021033729403306170811361244435486141608888142291735117667526499740313372\ 5851058629995979779004794485779848930374917763042873688, 1.47539084538555373377\ 5115717891860239993130635650402749201189230997136147823503173049688849695216748\ 2460348421697416197211859974142150707222425638725684366698846302591763773415719\ 8576295619998019234285589674476892109380118438928739811511388867816404612237562\ 7110558255203712376104629109365691502241994837637505720620760300825821759240610\ 8465949702168822228488918222191935247157404378073369905171852685425396737385367\ 3582027837692273263579055794236094368344981125211960546210540882838487592684365\ 32425911782206617, 1.1831683719211951908858525295600260616752128642297495248107\ 5562141275297402438379425608961483659254420447432427807032793325212808227998700\ 6943628985824909993636728309952244471196112091026462144582520780400032718852998\ 3144177003404359253269792800057762119494017256898235226669714523930315212367263\ 3995619891346024751213440333220927941199470359542432830518136600485872980746726\ 3874992177661662976191690345334583715482775463177514354173165883644327570429410\ 0440050666470145110637293861623335391160322895911774833526, 1.08240597466962496\ 6188314251090970219815837815424953351079240987655648673896023715273801624816961\ 6308178904656179915756662266152748802388119427984001661259829017369225255131140\ 8611856778533418615416464653503443180632050963488636003509463478043690175400354\ 9827219673986669916383627630913795619388433332491057156808323889806831947134570\ 3734765946584005144943022822507279719568249168572249487213621513032585560195241\ 4406325744631627509819122644069983468626633728870983570526987988315986722469268\ 35880315325135177021, 3.7082587276682827165691115538460423136525536490336481611\ 4713972435084667460966343376235818430656356235412369082480523718733024832459153\ 8321847893415611016912498921023892685321830296607893864842482792135022734064489\ 5406399644359716055540495023930284597943917494166984619773243660923273318698333\ 3322543841184412689017143254312177368784602635356236060026319301236491613522742\ 0405203495523177529012497923292867624644132238730464131132875458197729239748256\ 1356804843634156391017474152653808565912260835307946614951516, 1.89737160926140\ 3947654282034933497711227485128040992439749881930094324445900097940709803627347\ 5191205896045283401055288430356005070036520689321062101517831854222847336263879\ 0571329788518920747036486211103105815114101215446802496419353986897456143240380\ 6326728221675967951427324095531616239708279650248536839204924906092411448570718\ 4053139509957527557242933048600682678915857974154457469992497922578439736574243\ 4003055021377483105256666232975904264317568177615101093934405127037416153008647\ 40455959217667438178073, 1.3664709430228637314883777763926889478678263326790001\ 7158540232003661413865394505974074444168967673423031491803712185657589691050209\ 0015884481111863416023843585519619815215088944820667787471674909757448287739205\ 7390777969782682042536752185544597577407029688605869195244005990973211737370660\ 1156486375507909648117214601261268536436715970977079753359120056599467559673563\ 3525429180582168364661807804984203401495457598102506939717317234379628427566235\ 9511089252798852741354332310661809144798344612708264168588462087, 1.09387457142\ 1749985204616544028348996863672811898126732950470398620941817276391091130799689\ 1779274124687380125501651538996451005667074161009814967023879308616453357100549\ 6485845509267359958275822716576604305523928182452323564164594396330258313746012\ 7398431414073550317348201743490907205977601672870682046254535980491582488619600\ 7120264259134490021737806649988207893526198514382079984325587561624494581173061\ 3523530091912683353517532192060479768773066261776548376667602200742440551256903\ 34328961283605527188337454, 3.1250764972061760831970155143786927080149277205168\ 9624752224146784752282714259008189828264152252134964173775997521554535893637484\ 0947431873989834741438836416558243355035593522218434935596454147496166761122571\ 7878180600133342490935162086631647459319378776235392628255332489793367838137785\ 2812837126923974700267967138018525692069310850720923479525322308814038310996325\ 2510822366343088413673049297545790882515253572770272355669136630017675448374256\ 2032724087736583075498087797313050534236173465108723238020047607151, 1.13010170\ 8150325912863699313240420663734042012937212938800781891859925972699953114188911\ 8593320105830938104474220984695717131594458688352384290573805411409274716772900\ 5210630424962159583575642092667345356803450004797652822391534608591830838550409\ 7517076126908813456685656080207560409937687336224363887118488280765094147675299\ 1890709066098272104242660844098838573580377287135777960652570231630575206334477\ 6778802894299504984993596155386585801703227704516129746118522726066398116040066\ 25783484008458101464165670007, 2.7996265926836516866364479370493785530895639634\ 5383209368722331291584642850540961162966079895938018160907504534815417289125260\ 7991126235737326131681243463169754229775438378001427129755649531707105190912138\ 5015371055178750052536800282488277923827659814865154816407336903467365575229423\ 3024505599993574337492699160256999021186256021661756504898122043755121108463717\ 0879954172879419058987043176653238801936800448120608464855676293838166863312792\ 3977173785718702413887653901274981254932155745284284500278235153008764, 1.82142\ 4403070741713145739655410059210548627792457932182043389732340853285980948125983\ 2611292658693439761855496567557036784783679587486747587817210774088052354097602\ 1386235478540116035252319010418942310275901737416753743954172058467519521148866\ 9765678973235639073509473520087507050885424850874871660007511646139567774808439\ 0778451307392716745161963460695331762341118204781106424902705302221697951398831\ 1582043313724840198388283364804326343665037225137453706681700238597575061092526\ 93583690477780912407926049223624, 1.4033766857692301325328145674979114870924344\ 2577777958604790966261349754868945459918664567084592838158150629161268171649627\ 3721844267130412420122665145617433262068269733075930365476064557017130859201770\ 8667039551866177845291758598442700873456610345761161049368073167404492092971840\ 9049814020986766722747649377824247748062323628186246579216650093541979030617677\ 3798670621776826904451707902476984584157703979554525683159139430504988677931977\ 2695528712882686920916902967936278768208437709419938823336125121374258130, 1.16\ 1236125662979179740489605780443487972639927603340302688041518554785964662596982\ 1887613248426865018259364096321613044162210500515188721279425267079556657707914\ 8483718964135948998822817072418256900028886046478134894838842805359074577665705\ 4090352684872977260963985549564553252531045643056193501747285100151055775985115\ 6738362390437851025181359482399380519099015590435043262474342192036318427410230\ 3851722250309869379028793277801422047478823315855854507590202127388829407912018\ 22469543839792551454220654319084929, 2.4429026894712774644962557948399729879333\ 6982132196557314068053258843433201738027602148891380251627498631304196609398576\ 3423625997750545380158378842533262151764441998695851835805344352153199191275348\ 0515579215742012306166196849795492960839323667079530986337564011940811219118528\ 1873136162406122098389541208119447143678311859748920240297959918861985879889624\ 3294002858462927777742268747073069755226646184718562519402550571221365434176515\ 5901989789128521223779127725001532807562974142554612857024775819465901143697, 1\ .212031496358477649476449930536626853016348662719557373127638889388395148958488\ 7210013377239242181486548929977424817418371377048101879253917470716205658167419\ 6867883740501827441440176858270105958188152785048903109577055507552430622376147\ 2713130186174339482787953003103779965075203770160491589639326224958752860933062\ 4205762954709939036283228185503991627728837680629864335768264713664336043692602\ 6107588197501987718674285046608069763531330034890636150562448379246039700037498\ 02488457467268369064311106224041967228, 2.0433140435216602610111628933274110816\ 7952400867501773288263886630627747297385769998217654926447446313362644637525993\ 3338270376321867678663429912792022226239755749097071865885945033058718013837445\ 4409406694172831643964544027262936617534853740608134527174909562670308940663198\ 5425510696710805843284915833677087639629444004149106154680596665251894829028108\ 1267832304392595779646494166901009521815035140919303931928700948602372742354741\ 4937815474024025157687976211336567635423514883442163525038890785460313090881960 , 1.309895591455839390682033611573655576886510151939164133349421294231259878683\ 2171162426375109158989396359699165251897811176531434852044452275910778978127934\ 5085322056734129200239633811956198043676484595955970701040673593752974072018797\ 6425231831937008932885236422089987317078023469990401859313211210965787321925402\ 2099027589152869501424140130626284163564481024614182934309667932106819852595253\ 5544485389128739275090741868479885290655630137250153233750330877656987519543134\ 68779525371013513964475341673382567425662, 1.5793419337948773942216929617375347\ 1576567185857563860267696306424875816474283226358710338423562511902719507488743\ 3198583279860315862514396525812331674564087963029611746772188487366584913981004\ 1295152755945129460946388293860704477245056947864749032695162277063189469322759\ 1999932124561990908449214998275170114790863926469150841193720867653159082913996\ 4562638241729388292122637079947489747651906055696360685847678341511683749727111\ 6688007502764502240093385972510055486238557011696985718297639848693568300556143\ 788], [34.504816158483271692689595889905393965213360023750418279675736969943932410978\ 4421444257062745678308938996643774030383685518240827536445156721800885265696593\ 8459470911322663666467904299912734317186884898505083012465920565628344426958073\ 5349947198666136035285138111921537180463464371059637307260889653899301086177743\ 3126208858838484919958538300519691874018285904553657503413170375533823840478856\ 6238805669966448577459215951974717421605193227938300241357532250721374159802508\ 2118374559802204142848135992732301183601, 3.35523879557732518786396941516720273\ 4615323516839709354357650985009252699081328744731641182050910274782232541559395\ 3560532949613314056083300451996760113070761926732530348593872454510983888116501\ 4371689167342864004349565668876803228358303798279208007731834025739337997556978\ 7108237144922482843040939061991465105617790079534772526732359051578522733689515\ 7804677157078696679741519364438545365317959492056228745722288025462722724733076\ 2647106520382281280610917223800645004204994410364561696391603077703909679129883\ 73, 2.0936856690616199492406345738892647194340659398612049831108330207186533607\ 7824883932461098290887807837734166991527694026150781678474093381539416345781937\ 8989819063388527185002892940811625642148798799994938004490237199076715561504279\ 6544310487785979786861739153156416573180318535062358183076511003264100023157786\ 0818595982740384649293964397152266104091548631216224445882549334578767693456615\ 6646847670425397064018479139166410686182191915226273835471176955938255992405160\ 1781547733647825124569033244711700295601081, 1.12498889118082023063439562179238\ 2006829472015481664497270521051591155852740964276824806134784591395883218178595\ 5374254732091970385758258027230715973515461273091712633905641778745608410916187\ 4903689699539878674871114998164036572240519284168719778000394251399731546510786\ 2725940816710015820048109869249043943239065997235281201198479554337393353061082\ 4261866906350449804182595541437974571237664601512305534365131227698593881397836\ 7130454135902130021763654920115024270344430778715665862675194080102828820411707\ 92740, 26.383236323981562743186383685210745592650983500126451665665477873195871\ 0093894868091517953460290358333057474754747827371915325404711655483432806083315\ 3335614122095014279748029481648847499522009598287382229964440921658285706008128\ 6574632660154883455451354762453320650043595134280803956327169059242892815332623\ 6723928917679456310503919415964382130832472738219151685133243053024223479117543\ 2483754960356983471485295860158726681955351823124196199444993335664769754307618\ 5530256843767944081818853237582493930694195360, 5.35158056172953142655505535233\ 4372269080577130370893044318130300456940638790750666431880664162409019073109139\ 1920918644361001093028466957384364687970835317218575144128226081615176174868623\ 8552393597505510552578928190926034445842434589627308422999121970182778959182452\ 0595404976511830316416034554254961338391223137631328318930764449513814104352370\ 5388703393126574592616553475172205100138434047799802546683830268393862708152321\ 3218114673337695042610740908207965705372164806297412116382213488017607635968011\ 70653178, 1.6266905728260301760316272517087469086403078980280758289225846055529\ 7035863678250585961831351244564353120098902386738896594485988112130880233751756\ 4197046209902723712290292697121570444828801499467789473473437582273206142249568\ 3548247421608498031307439155208332169160861659943627474886295845396416109454703\ 7549884108343310846258977537839230364536210948829270897661676664681739251322178\ 9061507328956977599255560680596962702366898161323288137379161915369170378145165\ 4273965719509638864556733293521124086869597466644, 1.15336900497021787103117718\ 9378144087385937211987610050250603366357543369913163079708091033866933981538082\ 5979339648014923749042809192626302466717719768344626071842180425032869007087831\ 3143272218630595977467719931915397827091873085174483808315777443216168585398054\ 5376862380326250136804704596387325663584670289369393347061260433929399717926106\ 5885639390697308310472253163729691744209250159169130223061270558664033955620907\ 7268166987373592363033991356077551695741340717513800259457767274793201106224739\ 44387042925, 22.601357967395868435817324509776866961063341229852019996537198322\ 6235200884620359437646266473794883408178275588752135091232622254504303661918358\ 1392989481842033681639969314700912065213398065455566659370217925835146168410728\ 7692671818699932390899080506413344442101977798580751222826836767535753943965293\ 1811206700619231507732967878371427404013078561874789810607291121840373216819602\ 8382392345248215312230973461193664603249917078098310824075119436175492063774545\ 3582088011672382199913649693118699168575403875627962, 8.23688374290525342504181\ 4475487128571301222698953790857425153074543347496288261007156900550801776372960\ 0053866804441230424238467949804448533275604176446343115957111723602648216703549\ 9109666817039560695573357542142503800314320304654607638610419085285481985742750\ 9929310837295199374710596700636610632311567358158170597260436258459572369760893\ 9383743894594087766138114151988200361190777110371572872307858253933448711045422\ 7307074007650811157476307753099246440693895753338824988351158625192464847275890\ 48929457633356, 3.0633728519159940613171710547034224642969608540731870593112618\ 8887292830555035984812025617011497365188218082731143660101125487635124969115862\ 9045697122974725217253480046872057303503295298734009078295082052262859237603667\ 9567305964463151930178335323528015419433520961155396937682256468671901034101944\ 5304359036216811436687621649734340679511655670977673003495052566193477565610453\ 7056988559070834245771864372767753462852401256356373681329269674329758286940282\ 5336714684519363274768676098856525016155871916449998463, 2.24085088499316643305\ 8225233262367023146672459505462115825016012949478341030394640041537654267707588\ 9601235554621740531584903339620506098986940614234616443389900305519074695479733\ 7123563631258505016256887766856993184484281949158566167432477889051568703575246\ 0228621454338981846726506430005474623154359808004207430568728947574250519495180\ 2266452093186177756678070678964559400760463346492229362540636328361964159119446\ 3221923860463460778880923265093213993683255574740003886208992385129490911002426\ 14364742099164794, 1.4074812809424933343837536362404273663001969846749556111984\ 7508867072072063595086387545810546279644439700029415233914277798150973131731791\ 9781570650647724654545145754464580978155274289984451660286737317208571169687743\ 8749421643761920628047137784526465742537577314958635382028175592906954428431796\ 4890957989201485405478336331564245533470706804080297726293866590362928261495737\ 2212294914077891205814585342784236261536467163298228923154294594044054148280357\ 8608571537106203625903575617955704656205287508855457963145, 1.17300575208806970\ 4920118848642427255946291928868226587460056683705496517974628274276839619011550\ 6132760234637374277700004415911842972396942426476055427996366583695503338427033\ 9875191548215403678762497112091164859769396057279758531334620891714111756633581\ 5049441047875547602726579076215820711365709120008440111669973485371016469940702\ 0899810588946173753269629275716781484745911993735124233257552952622797763911771\ 1822530081212522246194639571830424078108157181713146175587883443844352186933530\ 17747856640911674855, 19.018269004329038221376493974697054204735364331796987431\ 4606575120141690832859477944006413612688683280335117349491846581372171450532145\ 3880363042332286939903052189947741549154967679214942999680163480759987036529999\ 7885325820701798793533153943579559613058439875743817154754222358022252151583104\ 9083579021823621405209360963459008320061916070107469006733887629205141561452348\ 6998292637324021890219323707120911058751231068337253159811425652264208845910254\ 4559782924180300692984985254469056969290661536338248195881661, 3.89469904510612\ 5158555197939772438747160540280454442548507485748135897244384017774156442133345\ 7299950543085281210475372329405066536308942845517081207293685738292869553846084\ 6039256976977939688170103065384324315864580411472009035830984440473585424505439\ 8300961894554570273952342513139559080397132894888450479176889636469755066471082\ 7361672615188424083164388090023400281646414354876912845605763102067709740893756\ 2035800721408182923989466504663724253402327392263917399396470565416330611264587\ 45697820415941957620259, 1.9024580110839455099185538274610895040666451020914358\ 4873643441133378145695344055270499653484181505817330249110954543978555268169045\ 0950917946977101056688863516677125397835158054679248994596242021626598463121213\ 2215999630904456916777933498193783112101790274311643232698329945904801092225159\ 8375454244871617509146215024558281085161606799853301123219676902525692354960075\ 3709393895047889986343014139809678101245509596465933119406698425617189624601510\ 1545498145986897271762964398342048661838632676764892100360181889, 1.19840213367\ 7211604422729650210631125029115911748933509703353506748962662562118426120295798\ 7512101418813688335438798340175567024314242800300497007261768710069200063552591\ 0977885328370395336883167884903408113631612528226081062321110340252317876843990\ 7908685979723672542548549952644982920479688029734786019598148250655068677122659\ 0127431213084682539020163737722790990577416842880279874226784398740904551402585\ 1009315456899779080329096777815191075663619593631974589116729420202254540819978\ 11402599299434398983414789, 12.497878744652975524348612510571344720402671387025\ 1071241264644989594445091481129003754112317995268410327148495747266390277671655\ 1538579124518081533286701590744160635531245936737815590931086399847660607676224\ 9491527451371267612989883833046192398247183681913417984228062235036119795392564\ 9886064681044936461953666262499918444738206504180322180092293829892812768626597\ 0465705340047196379028225803368830327450970350002208491707211869654061201746013\ 6769779882493989783632992330980709334371248623248055460769049856738, 1.28078517\ 2759248450870576898554024980325840128066386021829479902677627389519098259389281\ 0468591645303382854439651173710085844877108604581748626986312144466624130984083\ 3188449023251186107046169576040013311691143795795632647618846703348647879013098\ 6421759317934999344650112223736332393242067084367901634396883307622079388583088\ 5773495436245146571854746116348093559617047632902462908133314860055194257383863\ 7525994888284500271907531944904740243140652384898981868408480470511771849233244\ 04959375027587343908263039542, 9.5921882896367320038016054739886880852216970289\ 5838526041172458104047616459222389457287442877991680786190959466759105025788957\ 6090032721506402856130478434195942507432605619444415198777691125783667774050297\ 3150280900078043024227613994623720163222418795421510403701194417808595431884464\ 4775235239343414304280413921661289413776018137220492574485093732693049664739959\ 9104269314162903402874966279704934525788050971048303432049467381078422701124831\ 5184046536032841590402976019399546294131727035030494854374695927764275, 3.55449\ 6911172897060982449664478082378468321374177757645182767349075604808947463377994\ 8521762436158049437218824021101371018226172018873868733698960817996126761462338\ 0630481828801209729849729043270298596551622682755072879179889679522835482812056\ 4041152716170058004192098923177346344410473743055385333802768119129297974601937\ 1026088385539644627264298913037316074845682072492456469978627583424145789715250\ 3442542692308392314990457775675863066955455217181489908317315333243521696227134\ 93918980417106958740164824309895, 2.0133057584596753655578901914103360027832401\ 5458041688337856186044809516968212627642104971451293155647770574292191208372464\ 6778401201050821783140457568046024979059343338380798420636441802930394664954933\ 9594656395692431794250223596671874980595003054596473756112030851451995620619623\ 6413365434256391890719937498190716273984660493754644807959788869055925555357626\ 6778363327673921501708722401482803475701127269837517261958979324893580951082465\ 3872751331751760557740079698620907742081975904439368397377416935706100096, 1.35\ 4241925821920215911936909014038569216680186694080157991572096991395243032603559\ 6159995233817812853886720037361512393673120474804183790031171919419627689157752\ 8615100898384943914840462552186770379123148057330875330085951205140964245015027\ 0168769813273351264942223832754170239497128056896877868286191325719446544673505\ 6414616055522597257871901694499844869925132401892753675803195967895227263740002\ 1810852707483132580359534021062214065239330465428359556606041066148785730748363\ 79687736624478371250817459610498645, 6.9510121080431358346541830909133496830030\ 5602363897197144918811058996503168582511810669295094164750648077988909269837162\ 6350949786841150875358640726131573251706233400253151887946423031393063026444445\ 2308854739213910279890524799440619059050296532440068867174423955850161122714649\ 9780743942896508030027509455454116069213669386718959430203084310629526044354262\ 1152795215001107095324671443061399577986043619535339365408931739892519368026204\ 6143575799265435530631210847979850933842983550072720554975403752553378812248, 1\ .479450035981521022038189343328671467864963822909053757431760170963301663986909\ 2977417744277517722360641692483621622157914564403418668439765016792694910522065\ 8827664342166727267162056309112296558353747303292771139518408387403607938857730\ 4411557251561736037492573033659622552096046825928855891784057867566955177496453\ 4186760294719341335896055279284510958069585708414072733705737841293523699719447\ 3099151549796400601567441208787928022027715091693476060213247999072247845589088\ 66902722504681387542240670375710242537, 4.6044449546185379196140604235684265344\ 9500202296849339072342315119605642302123283417908030564530416423640589838234089\ 2835131876030435536517720422338327683009037227430852444808633320509717768534590\ 2681423822773439156241777918583285259166917182367970706363725518437352467738193\ 5082907127817445172465390312617158940434716577160594453267583339619362360699338\ 7148051327527672283922831749376367029565958202890212357650653496250586352072694\ 9107258924344620269489811220394196848454991495891608144797312463522571985961330 , 1.739945008574846913858537117823206803784757041792322547923647763866006382917\ 8160652386067540327390467759081810674421280111203362533282311439522327348955802\ 7350949846065182626232342560437646802853393927367926101739411466261593771969239\ 0713098183190827335899314531939622272770817614758451467667428965077656134288650\ 1991639053476636591471614486831629098043829947620753658436013046127626742440675\ 5619340845834209366204837037421275853412440637692864346674194941735737126547621\ 14549812691983977382482182609245373083221, 2.5962981563017928118249806418012737\ 2664158661954222936949429671298748583555221396786792048440313216294971172831288\ 7592117880552273846349912204531619610286506807924860667352666550393019768738238\ 1889366468032843309998265575157443670425569264994182638496075622790967377500975\ 0464550092564439291248759901082302729838795457331312268929764165096679878126732\ 1641855971788864273882923530368983544367703941903917575902651156031798390275851\ 5090401588319511446620687447863958816553665478358973646279063141072264001367007\ 744], [593.97425178886081053272320216826089058593578116353649576637751063010013373235\ 4146462230644523326627748088164080966497528534684887648977034853854190851041018\ 4849500003396923397545664478400727501582303046065127861540920561845966542807374\ 3075256835291295661843736859734474072159764737546604732146571171817598008782079\ 6617216338740461323318957460372027531905729522123103379791891078981338851867852\ 4138930950743123041065896331374231030564307331384924284079557994137031367735519\ 8961273171584958150419198420151032734030, 9.98801246793057914709660484950524004\ 2168829442908370086241708836841609853421912143873112360162451004549337641611259\ 5203427359663396279408156421039155241186774908416006708011863688095938426028022\ 6904533626443201112223048542145906299837753772521109871483589034985149417085434\ 3094269509194917534378683367331924607590342755974510425291991858057093647408105\ 9445980316454985480623347758466558684261236956243697693704120851039974581299856\ 4230104463556894116609926064938698981571504140658262179160454092479275261088024\ 51, 4.1733534430237466909355079913348324092924395968620329882050234203596753920\ 4302461669677681145074419333936116828879438179448145179310609442074797368890771\ 5766274571042752467185583067467011739975171125120255453481190817467333215852079\ 2531975940384579405521409994756665100211615661693026660050852172194164185328887\ 8126202060856199359735699368464821545763583417041924705589404879644636222761111\ 2471020222475191863483928031591084104145569047764031121207368590449076971813307\ 5921263879832828651910049570594559038093480, 1.26377633357402534018884560612204\ 8440916248063763583544953814047156476145775254327130360888570869682728647158070\ 4807030965672964599345455053310545003929503339502296956225213248628654952333557\ 9664457275393424501549441224170436778248097227450409898771364880565808316058725\ 2392314945087001525573774148739677292617660009075884960393466368108447951360724\ 2281055756203705794294880680031835739286982515898184791734445826104171739737916\ 9026191544270529213221117097032234927206810860629283328028086459218425956487276\ 37332, 375.38715155304061689600549977186591733131969382440076533818958432417158\ 1079348641465997081300853007247763772299187995937104428967867593128457763465948\ 7218538085536370537816142608222325772954609012989185646285702373765281529985564\ 6939179614145601873808507880907272301897285865739266074478201369846376918158960\ 0723606869005533766363561793591413442834149601120349117733735929328261227679131\ 1960047518492876369510214164028850031326557309350134813441338301646780231046624\ 9582348856799853208063400983901837253417599057, 23.2063402013853489791489566259\ 5308197196371301445200300063546236575730016598436951797245928501623739091755143\ 6087616317659455848396901431161985466601946471624549884343776608166364137488551\ 9326608252308392778280044026575776600087404651634004247421143649340524188200766\ 2760461292462339797050620535350849271998198940878435390560905543710737025330063\ 3322256812364241925418140444362269597474612354444278439455005579157152248695106\ 8477201044688016162344977410242065831830135481432613669065997736125478035185782\ 57428038, 2.5871730339096775819039925608336436904161300395673494211694606465836\ 1973017293036835586440148404961162845474287595079617970233625950168594792629244\ 6998569628850851690546012798178884073475283794775971723258446084440696720591979\ 5326857903363553814392686861755594618889312708203716269407725453493217248566931\ 1591515297467201905024048977903290601533931388630828168641188571186226346686798\ 9390327358145564767423093892199249757754779120813097164721310240596441561719672\ 9504271932965944133619119712350435191490615172712, 1.32746489510941784925741294\ 3134802857357479978544862942037887449161800540869807358811686060281134914835229\ 4781318526067970106131727183125963463928591980938541190227674784704091209048031\ 3058833208845366117135448183604300018956378538923057752944211592995029113304997\ 8536926054466829589566406086135950809844332586696288074675103688182129191606583\ 2325038917516358966607241348518307600017096802982657480936054986515286779003982\ 2323232009052533457932491507033310261048873051309672187073166010928577505901172\ 20354485433, 287.86944098023961995543759494480470502184421102703032543284405385\ 9249992991601074744832926170293378020889642136159442158345371655964355463637617\ 8917736625246090284964920975892091357606675565579813991819136228134804354387591\ 1322473988144169119336271581859833115575701354018839354598334074734263817391309\ 5586700522856865568670293856071734089723107028066376694799682573761519295389819\ 0637904681008878216919824248586648369786832991781065811421151754516941951230270\ 1186624648597636827850569344707796816923759955582490, 49.8547679035844391664956\ 0304031251926410329559340865475593623692496367312827170315321768737514580244515\ 7697691880836622083380626474569811569269853338601143575356971182584023799454287\ 2456221837110492760946333082630875808984531915591751262263349368025310063636175\ 4809230735021285613378223363807018349946106799926544470504264340883028280168950\ 0867610931663978443346547885817121952191657589936457011835335311646197238236490\ 1909056077033292940010188867390950638736055585775194884434791984247998242667387\ 45079713453643, 8.4555622577003692336145325372453022199442640291643818316854183\ 9172572882279491315194213184318907119257165714336443508675048105255813040313645\ 5951214259543470615711962952737728894502339318665788688269801874313777511763636\ 1231483701100913320417836983940320593766684637389830838883423011972219125045711\ 0277629186397103806139138617358344314355686391087075381377679778118131653477297\ 6044219596811783754941024666026668987957582807580503187954091479934805204796625\ 9917525402995179525457546541322584956260672878272308739, 4.73971560883074465921\ 8049226020463354925427156651855555134559536089997891137466938871507299510869996\ 4138578851488862690602043357508253134882299095825882428778242151105258820689126\ 2241321740769503342050917217294628162113372912577349643746895808786889302970516\ 1658743897464275112356462502265767570042793642554254059002899564333022439193152\ 1599814724142062173296188204845256582810057611053556635520658848226162455108634\ 9655421357942704408106408865510633038765169814343224331175566894149484967131591\ 38632067905279900, 1.9583537236546489945808330433263173628073634454700081517661\ 7709198310017975867729289177168927925419365157918470960725313047297730694474359\ 7704064076403918079739714417820188691308645531113084616243190230183663751310206\ 0172266061544355396275970320735590455198248376541411909563189554458416265654776\ 8702620015617543507479497521314371350329732474531158800271770386093933807637702\ 7767566397922226586537496105310456454914160100946751503313802024735983763134965\ 5029373434017392291108738350901482254247461328104432852057, 1.37234283693717653\ 3045562569990139811482262211674780734839007064986364946620865146885296641371975\ 9455608052467836975829589677357126329124339274444315405430728063796103900599317\ 6448825768872437214676349157232397475818145077147554255082496439399585167152289\ 2914406325855545299141905745277838189899671246887258343406012541426374071270941\ 1384833587727580045771929059286858083243708200417397655189938752981425954596417\ 9187673035281963289901353830531132725596778221066615190878864592486171541366249\ 99605500929798819635, 213.89541136726254804970681572440093701907437221738331428\ 6424868544872550369593442420029849993602539439311387279338192035800521171090471\ 1281140202799185785032287815399478022678046959157488558701654975458251354515019\ 9427566477907340327131296012468844051053758434986865556949164713309176226432600\ 2742603984587219501519349227901198637070588322661700716676836208230597389207574\ 4796388470779990906569777855663841182014686711010410660340777269735880541867934\ 7375184943364960794425755724370014473512487240827955263220328, 13.0996708894202\ 3571559250713887257400840856646126996080733182564138270735036622639283062679865\ 2265874192536424222122363223122528542817076918045285853573955528152261538734196\ 0376179658178194698442559112226551684471767516433170422012290243831090830829325\ 8289678694402190383946885859122898049119246608011044373536804711662641742979206\ 7558621592503650499789436095294816310196046033145914608851350542163494573071378\ 0253089954929753913455177499863361013768292028618883617555614764441646608579130\ 20819069191940133275057, 3.4843694413180338087604957294586695429291763312434169\ 4047997122329894418557902325112056205915423021613627387336160411992112008258889\ 1467762950416718348678140740168451210476990901287668987520708762065666577623031\ 9693678242795736748976117313930108774359790965243368650484513655984202346384902\ 3168834576186594281380576688434505248851776130040532666256365650230115897651320\ 6794362469717331111060861868310671627390305531737714903862125325337681290274874\ 2888059187491068286090314201947915872676212890223689952964003514, 1.43136142989\ 7756951985157992645392017696961940609895012144428839497786898564758764128727517\ 1050910675305540883381613466658534305862958534076682247351479958451278589653403\ 5651344436064404506970621900474365901657706468096159114935419534730447373946493\ 5184755155931494355990362594944232986048484246171114567606123261702340221936028\ 6203559677060736093448216183110828325123066861114732232208565166947417220373472\ 6759303983844923269665006165553880015680918074990814000646796276723705135755839\ 24175166124905445828854478, 103.39853399994205717936718565401817317940280316235\ 7548891711959617358581224902172877326618614932616349255759208084889037924105740\ 4261826497520504840074511866578426628801084465930897453150137384570562626376490\ 2496089258997132904495599096934174905719181079276600051550448466583456921575176\ 4365650483862542996657043427951350335466551383876994873351445457958037009185989\ 8195705240822209076658351275562895233233121416531606919875541600805716348839121\ 5427209912283403541748068977369428927092412350226064165146758410131, 1.63032693\ 5746936076034763484589453630761180963036378378031448702318268680321506906755688\ 8650950444006147549578420929904253696581718869062304070929191011430804779139868\ 1755482283569966050206515890807391876717566933254948355933424818728754019103585\ 6343733479473148892928970936135216001897970586685108421484351425038011432444602\ 0334688316159151315613127059492831341214061312870327657732623922970265812909828\ 8309445916289982357481499220273072768961987379164375163299418551380930573059199\ 59571591800274720023631106070, 65.145732924475288819237407276754840426452363687\ 7599944965629350529323926760284454713104978915045507865788393345085216041482796\ 9041786656639223540215641185807187063005553002722043180282644951192222420622748\ 2870155401701435666677463098182351011608175399587817858545576436525198405071411\ 4339941823096659531052656505134347142844739804758594079373107608023454642155336\ 7052993611816319153236138265054205412280880074387078128561774245217321794863738\ 4631368821254244400627899446771351155344191619489759231364705465767352, 11.0957\ 6807071705894088977271210373483527280680360108335681988847763968602575650701960\ 3680056532935063858104145775326999092879968151273632472462317222843849400025393\ 0850115734441497826909366438484016915530616164261134588847121253707837114072314\ 6104170245353288902834128065583331614661991474777729585707704547264823632034049\ 6095786986000789129129676954476275959750340106627764662470681447822753051024187\ 9642046190904403046905883034605526255445798655298570125387477470048723714546456\ 24769019164571933123446565166070, 3.8772127444122284598073305430066307140507638\ 5516906354970234236437267272873852862721741584723107482348077952598727538356178\ 4770934155016305632902150267344852453648957145992733742948415251410000122798100\ 9312631475878871793947944008735342230280150425577702679124775344606031206805232\ 1326799749628796106348153004594674122761052977069939031024522147911118136412409\ 8816478276911981186953849283529686735047549362062247233859018119970499428856791\ 0450862399472896329955380520228378903346011916500981675000713456088400885, 1.81\ 7294835320979413617666137177513174902757499036765688713955655986839024541330732\ 7528989766380919057911083357949409251255482180490422510937465481679889001006378\ 2822508467463756494343742378029515687952971343697138330301837683357971787544077\ 3123627191897253194583339561824608175827705066273153318408156100600056838930204\ 7920551967888612611467931640381903218619552721926135397986521624734737924472994\ 5586666292147676914930805590682371548737739580004034804891583652791016655358995\ 15829097903159829510368269653578712, 36.947986425818333788823557404610113933909\ 3682888392653335121519126106438235899223486788210845768245967675666860399797232\ 6633144516295917836544285391147186430503811303588491152965613169297011403097747\ 2724040842946138448947237808599407774847500989101635122604816374656183175793632\ 7601797065268090785547170982000257425296112664051079220807433266947396135071322\ 0007903780831681988851478738388385789649955440991675538139130183943430947154277\ 8187678708340120988622354613055448430719154362090697384612047546618500467297, 2\ .156350906903102970249446998537710356459268352817045118183895400329872451844515\ 4366863393530575196433836929843232487335132179331616334732560867199055504103863\ 3613975404953253140316365394551376405474871981591333565699225764052839872026996\ 4702334340698355320597984586606832357010676529216101144449619771733024511153402\ 3737692159201993030130533826925583732592130360953001149219861661595297092188770\ 1913145636545863800521744021594315806810067442017062638301368775128063709113263\ 21838985248201823812824381497182558701, 17.722237122793044837782133098722098750\ 1936587527572950743052666939133740434356928700615368564049003481898726292791902\ 8244834725324049702696192841415862924787631174365869520197723659333305906491339\ 7445275749497853552899074898949118329164443290239979314067162903196920391051064\ 1671462138012924346100495069468391066865257030587630704328326891497618622344528\ 2774698377384895861592699755290479510372047605094798014265014668593409691338761\ 8647049204802913097283392740735240897020428939460499022916332266378341254992402 , 2.941605234520702302358428752332726714327821439156843081083243155355091210545\ 1057420866826492519936853125160113596271303135762072815895894260527146534630009\ 9502388211702693195826721543447149223767944507575213777697078868040131076939902\ 4939511209938278193528721623531009871656256335830489448646930285230635794363337\ 1119025813866490867933945308413256200388542066798257924159800186687740181739431\ 0485684683833619965828217525993937646586561070212461528763064188818544131610625\ 44202330420634122431185372341718547087082, 6.2332600868456476321305880659531688\ 8737477905615528960032375819835815540455038724696442192912533035447330373194335\ 9780924354776099788090604277634679392576672369576768669816249270486289460076260\ 3036681611884272959019491362844407186177231185656679248375672489393778679608989\ 0828072064939102268811137531250125662467715787119769187349423360451406769577276\ 4299022933147988110430581234834685639740634941116966968268770849407636531366468\ 0309111747347888732065769298544316825278138357365440463120929031039074092059233\ 232], [1.0451426997489498028480848353860404480340671995690525315107238736095364452106\ 3493185113443286328282874031891993438481714152747153451791539066241909424232159\ 1390990153133011632843789914017534345378876516345111759101771641871509734525736\ 0186487220115920044709953412184490992416642949060994049662956622656874455192507\ 2727884598238395584911670388283625076100233290395648982266572732454619898539679\ 7909093495352000356851507955551343656720166973748081492498716110028432658943582\ 5171325371802054783401358962878429534951, 1.02514495466116889881831885631478405\ 9434117600468250897246016303647496843510305404239568062831097927805719905839130\ 4350748299435060495452091683463491436676991867773793249332261358288754497769350\ 8785828421348275821859120604136561233589077586029832155289293689345422871969881\ 6441563906402122070963386756668239575451498229574892393726020897297904064434624\ 4238982583736886294434333080280720257045175021937742964341712515401660113737651\ 4423290929903039928545994880339876381981489113633959803765936548937914612171842\ 92, 1.0170859594185822069711824896922445184381678342195259490987991490809539793\ 0574887213173057117123674362325014986056090720435384976125137059854090049129107\ 1792951066022154380926759650803141529658019323445099896870936372323227940130900\ 3311192921622881931951303515380093124644198380505421280606152507116016612904370\ 3419702989698434184697342389870908590772538075468324359526112101144958915183615\ 1875930200329014538023726534379027236953443892283739023096208697841144989203920\ 4881863197519580679005210518192101728162495, 1.00314373182471083339133405849876\ 1652167114170592920525978437426727609540910139349495028402338233447200343593125\ 3616222416741269544443192904253712454750153870466941455479373294238226447369124\ 2597458675997880974365269350269997098567215862256405125609702665470632691724320\ 0453766595910840337073309370712132211496382772343096144823045820057349144872076\ 2703867737343411379824988222555647463996912419971051312803961916859676559914714\ 2688218915852077990892084626410135749282263962227834326243522786189541040901705\ 61880, 1.0439437314200816241519002984851039796699809392444525338436978318506505\ 2799834549248185953033870035126200984194014492833893227492995833469112980898259\ 0313615768288104800235647287359181930308242051618580250784072254037075219319371\ 8962725404334019125615605780816061193498484647645921764080767003107283914779957\ 4416538103468729370304822688291424756821279002875955075187910099024576103610672\ 5610299387480146462965284083209895033657529507188009251065188210905423380367872\ 8859195958848521284685808600914714376874731042, 1.03140384170199510752608350075\ 9337518217382495263745748953264751298880467322334980688774837627828482172548321\ 8461032847154085507764177508672597915446874204755156309390311119329602978845870\ 3453601060136186443875568667451838054995000488439085989284239547822231923663955\ 7970091970591572587124721924883691363422689296764844642518855801412158766617201\ 5922799030057734950713733894769595361771051350970634296436689698077874105448580\ 6114488789046884293685644581354457623089094426161122781070190169809448466231180\ 57298697, 1.0119231787864145475055472276780766669241539694589733588457122929018\ 3402316572452936828369904241340466847706876033903611691072967458148387593752899\ 6042882735011881664812676608000060800160955701536294823443148949875160155323025\ 1898347291058553753735418463694077239626274925532274646612894915269793514610227\ 0269933167861387326522242537558547429067369852297569835821523209188339952253498\ 9178740776069266806798304241313998363134512126788422894459605795346777076802534\ 5565270648708229726498327270135524696353771476726, 1.00378676432994666948826549\ 3570422230466110656929174886382669408284476745218676222171850602377114239258749\ 8825596826960742241194711462296243360454135690920660691393868503887051975974923\ 9515489860505000115743592250140944822434996846237682902415537081668170095515151\ 7475386383660333945588824053211700976275256473146172771832529556941436206013462\ 7046292003739795676348537786068018817996936355717113445195501777027071723842097\ 5054485408386063700746525805354544586144136162591058817780202805966814772084793\ 68834872098, 1.0431618797637392900513175455944141087517706466264484691480059095\ 5869899913085229274212818407792579606680357051869861167706264660373953857928140\ 0280551104344417212208242517558331558708012457487486117904644489333441870806710\ 0465662989536057200572126443536371910477684959393700534780658745495020775125590\ 8535092126873671878598682207239970947751839385407241484035586160357977598776040\ 8343066330894856047285748793284172913248616962912250957230960684628367920939341\ 3199854546058774839116757682419591128017083235480717, 1.03595036189413916929639\ 8838092612935629278902342949209300311428924766806683954555140087185080415361451\ 7849745883856530700762266988144984910275569253197438112261853137002784248542173\ 6789513746943943608527479413819586034314023055910275877426252656102463973447919\ 4027390095475382858885219648053800253977029804467119452134752916797729854081150\ 2879615958746506388174537183828215228724473106317079855833257991479381913565475\ 0390178565488898911309539500375362180098927607810071925898064039972083443558504\ 77394459724044, 1.0237369410968050390302860803645033630542782709150371698472650\ 2790811385825180944452523872422516153849780525296675890532824651952424323648246\ 0487100267486355635300628940542236040726588720643267607159378568488145681272525\ 7638686078477249069373760878674256365912452085996735187033479874244130869966745\ 5752588969883628709385290807509498784362244095577008457801088504148775420641296\ 7477964859985373099959455654244261972589854754380643764989655692637710824471355\ 5447855520491673986562391951424018660477646919707607398, 1.01836863730520635049\ 1992946099199745385672471948565205496703635717568263592302654917672309739232440\ 4208463685916169447035509766274883112335095003153803045823977093618656438427475\ 0738320068200610793039669090578573922748371151096624170356055194329779531246225\ 6702082814028932695176506880052824261995803924131125073296548937213530935960629\ 9646600812671399611544655244049371022739432669651936264553187145988867839113288\ 1160334904225437497310881433180693570300305141747834851141013443506694041023217\ 13942678167906017, 1.0086613249307209390141952104098500677762713863914596430358\ 8064868314856090443092704336681807110777994947444596410433239536763458924477734\ 1550890581813682623720205320279155659102606622378548368694195815281857386140527\ 4266502384435321815308849859140631418212319524661975433827246945395962212693012\ 4395882478305276796068153598060732336124436134020605629786508708850066570622932\ 9329481090936526670191636139346067319866189068457664684902063238410964685657892\ 4183566972659167590085294910498603798992084537862164099460, 1.00421821373999105\ 3305166107124402659436615281437106671279987072897450675222368875172564507715519\ 8173167739379307134511269608302997391808886590885670770237183795482546739713313\ 8772199779817545037760594559409483929135806584609724577068955298075106701071940\ 8983761754901102325972691330823601502277505839346187093158713582727903395868669\ 1535266438249899838774617590376313382907732394433164051777938963772867294098742\ 8165790747119947269791521756101470838038638695250514207948241563248327205833782\ 01857562298245128728, 1.0422026323789557712321204022845234576461647763578475814\ 6199595408055385996963679634930195335976150609974367635359831736967060838236533\ 2329921957847480972801552780161484875571925823600653841438437417284795689593269\ 5013828596414420331510925506885031491099362364232621985674375210008344471830064\ 2096045253268739507370347536060112557759965632054213649540352551661673389133734\ 4564476991885996719560048479529488966035338560308727906737591565153346097037510\ 6898420895822480242700372729294396265459679338595298875762772, 1.02731282666422\ 9525712086928330643420304955790337160442562525235005022587508397483413681501752\ 3946504149429973561028299216283513216946259794395470359727793106256051767155979\ 5113761071440212017185421790235415099965074090633881093746505951469138548439991\ 3158759992012881877863757930460699723072301480299363596774785212915751847423968\ 7488166266884172686371064829956338321422698666868978078356971779412574580508893\ 0594736081846109561680710689806157461046124854855315379959543184465085689108086\ 42364924581674332052004, 1.0152020158247038093667157978409571010918482863177007\ 0234051551652796591196305033514165015061743562625550730629047673239261973554301\ 3107682176904888790909120878393829368665438437548585240665492339545793865230702\ 8456395960744449355772440410521171219767385074730746417458393007457038842727874\ 3395284841181799118356022477871737987582602545270011352660839967469218246787730\ 8367431875229411561171472443407944005357474473739933342739358120210465258441084\ 7599084772865316841539115549177101966444736430173420052615996236, 1.00476068358\ 8832488425320910216017077596614079196808761133393592501670777042659486274940251\ 1757244740910401362341079008158055488579661273225266903048009491258211198670067\ 2347525693181982393308520741252589846399850948754649186632753174337830348990193\ 4760115758354755928403827176488787589845210520839097302230519603680471464188153\ 6013268206055587880827312033234752398471672806125874663690667977391707410812014\ 6865455055532040208675157990711330668531247935514484304903675103267630981859238\ 22970313571360319416015534, 1.0394321628467202842767023705318118506741399205487\ 1055609097351175927077484080333972599705608217555359048584872292470722060246202\ 6850244955316916660957211169178379984546111991786125265794242367751365546641446\ 1160159891209428092582805318227763414092036098346447595686367861429502544791850\ 5465362681795356525248699644944286370060031241785999546256971191760123172766428\ 7538524200269379102564590885396351574189191277927964791958774084771447051076105\ 3912116761827828291252325896062099125495519799058231050135842822440, 1.00640972\ 5205491475260850532505015678784502649777617663864445549161225494276608015858439\ 5860666946832049110180510678276839594069119813334917940221923509093171101396363\ 6766916501298559568029520789720815901943895700687707298861325177808320053461501\ 0732146602843094125134353468654825110027526016874767159220566928509371234957899\ 7742182930862982215949901200407177600592525095464259807142470346183050727248659\ 4149798307771600371241679246800211120878500243017389285549766227508908115016384\ 92964913603526648366310362745, 1.0373168706373254811309112658596032869141833606\ 1317122865949014007349529240703870459483573632090335920004748641217662131219410\ 2496005474469543994901646401165497117782707652546667161490169945117943198671242\ 3684989913142993267677829382139655399457408227560876290990787626437491788624243\ 9485082857231098947385367551345697070028630472010362570507757218781108145166042\ 5361722743421669363533810390190716724658852486627080808028669738078441591999875\ 8018191092134300251368299534860697343806332951733576423709707346438693, 1.02600\ 3799083194842024211204073169634856161422635962325383312699349417616307342493154\ 0519351833461592345803659689857636901594118475874076376287632809317752385817695\ 6084362615837550516023205952716426247199983012325284204008788137752527948334301\ 0461137682065108918789807058692029659925591549041977873314624363590833286541332\ 9012638696679273723861324033663214084534308929958134936444315638932270146131671\ 8817213902632328325996291583383079810737701346675821445272972768585381394676419\ 14912445452362942927450790095135, 1.0163267515706938172739324809103494744459539\ 9774382477669103280075365398076663650824357692189545553037868585558329252177405\ 3047885465003646691567874632116042243753130137453572090669178981650411930665831\ 5283198485005209031169661483504627078381737976696836458206869477941652083992106\ 9205579312895493746106729997613848066258458094109868118575353648209273807998278\ 4541580666505530958315423132381539574077518643013247979481188186294136547341824\ 1889799522936055055779579925759313748958717310059616499149085566467657508, 1.00\ 7753199762674463261445427670270776962872438842156756663278651061192204989864702\ 0540207644755395790418284287990636034751318728632731326155312989019247200501414\ 6079232881265693273934227204552215850139239107242700950521638773456255329327916\ 0956474094676063027701351244704421304227633118861590656451675193652107959564051\ 5928293435272814851167303249578075903979091693814531461742237608767146147451237\ 8636138024925123653666319691342884307947737799949067544477919703501763269743127\ 31067903466059680819494486831555949, 1.0342866734751966892498095047057947351829\ 3279402538215413256367700071976138723410695849207966244136992784261330484123788\ 5600560606562895412301890919278463411714109314976284820842029350956844115313242\ 1791331214452006768215732813154818027695947533369636614893432191723540224962954\ 8680634804053847552647197811136209979957322351760755708449504349462198942347272\ 3464057124252022940136856652848992950971052523482861044177970926578968329470621\ 6297646063030503444620918501871258140802412863354908771432568410211901444559, 1\ .009811038266937075559246418721513500335398660298759329510563657898933836961366\ 7642140422284946505858372099217590944725035367223882204093958271501936601896543\ 6679533239749758160412921491257085592964240490367719609359811437805252029335610\ 4320498246113221690543256792382703877119581783861313577425596031335807791762827\ 6468784570799949515747240814552437310297662657552885294602111126019063902645768\ 3260727445120573407522032190777373511231246519132983264092431779143749734699422\ 23381657194816832562741783399324783692, 1.0295535783250742267860396313754049305\ 4643118098204032174904761662949009031115130118683172769030812830116537642206302\ 3438668766688608346973126542751374887894684782960692108919471496860729414938431\ 7129784463414123303206078191703118740729574451650651817797605889252934249952791\ 1072392619673995650912657370444812941800561496247557332515068715961630816870302\ 5860364993534772250840220980244859188845928070147119163315473038465254450192514\ 1666227128000368409005427490505264767262446869417413208241217750006510244373909 , 1.013363375257338929905231930125269845948299510574902321038734381998565058509\ 3167366888862972595395057542605725331021566808397148673437311218171638220048330\ 0212606563911833655223768775881282756768466555780482041775648347723378397049917\ 9765577539684906982126757928841202889929484982113638090750791446018477891229121\ 5663702871841761179836810802466709408940706068624892444013182211746017961559122\ 2853625364016529488020520687996213178497165974197462637977271393505129014558684\ 55862600523195615324607023029047442077454, 1.0210028407675438291638578293475476\ 5829791041750312012843671597677273846056360114704297069959229788614258758099047\ 6148276331574356396582620910652440966979588926982300228884113697538026136784112\ 8066292280490291497900318115633169437697084646497188416562672382727644838172054\ 2237755768558174672680855748207394302660515688704756780416394403826151174933800\ 9624660827275893650232289073929948777691418900871410534875557489953697223273239\ 0256665261209407964327688929589773586614984861966828780157661639132504145824750\ 786], [1.1824320061640904296871890703307117361604381778045110387047950165787967517372\ 3173817994285028610845726822968730060840825893696830240073507706770931264453831\ 2846794918069204705070543645889347996584576233190920541482870269523535494175379\ 5723869395478631888327695826507097452513758730880232947645417277335647913360295\ 3033465571715451124184479137153538278052288865160878395843576775386987262323152\ 6337176307861525345811633758965263213747170669145815772240092468652130138288732\ 0298901656128883860446519577462174616810, 1.08561133359497180541086563374367945\ 8170070809226283239500003957304429674591611316038549072099777076822064686573493\ 0597463751591846315626322332892316744165783091668573966813327842046349708401092\ 0843764015731416216717337275880974816279131722160923716924369914766294380341386\ 4894161884649447476466067923133225965888198465836148455264966278139044056597215\ 8881491635326154512770393708428955582577847610783192623329169901251740160950947\ 7208168788157854771694436496160784614353383219336544596155395054307722948283884\ 33, 1.0555363805301870976404678960732715867401095282355383517590721903732205930\ 4518516245992373420518406640595356164223303943132530387640562227379428017916728\ 8023224197641265036193061821167342096951468648871827505108954818706314100153346\ 2380414276923481745673753840752912381843663979406514055889643837302494479585832\ 5562374844593620153082546390043212975396740935494664262276683458685853553402961\ 2666179239177697927520423834288349663299546437378929865708130616841535819385996\ 2631525113038596924410547057596197906915469, 1.00955805381183018035036287359895\ 8085025118703430574586830217905412563041653937953208612334861034263838725124226\ 8264120463259493233319234708729006612747276641599657206057105637919539435583421\ 9309655685746623106309793892096082927693830610943405677911551851032177866257321\ 5648494913286824706677883093445669651462297621721298030075350075676578566935494\ 8327160815577013246414629240643110417087372933447359437512514629515163895960163\ 9027264590243599961088613477892123536598117762903431052534745851706206272494568\ 84592, 1.1749511745115656583255139024976054866982830815780542354150674569335637\ 8612538025860560970198027916245969436597377578027253261798833045863961824848035\ 5385874735239544149826904626990484477369292723654084898646531090486805987806681\ 4668738447780864114026866385011597454035138786749948757769361049153463519348977\ 1095394013690388920264848982352445387478071027111205307639681679585876717786818\ 0538222930105757235735207819768442427400090109804521240087009229217416065358218\ 4714152617589421472050104088458615238299549384, 1.11151297858797019834468165565\ 2553755193013012763563488242690823496446564025079879603927110446804611086972295\ 6943566755549067098760715316460222654992357797652941938253393434420329286758233\ 1349402213197407043248026087281699012018196929034317552894261177098458753637187\ 6226076368697539289058904726460135363615622827147884891495972849818826894895596\ 2679642304874053788035566716744761169172347848903847999907061985964792994327380\ 7251252719450766096168710881326099304673145840363053708681373046925000258736535\ 36591319, 1.0377461288000735782279414433982519832605927449825905923763849339785\ 1611692025725319097085265350618051746146047045393894306227525697353737722127918\ 4414583762239233793924619074054632130238726045989429927147260178350648427001293\ 0124633217620310632847041135106537462288067292422797576318662026468515903635902\ 5516673618566380629611276124491871813301231103367459842646370294558347481139185\ 6332424780459021755397954333094536722382436420480178942308395032204619183848657\ 5855317619156267255928035504398581839497939934028, 1.01154537069905012674103576\ 2567973649463402320369948506925621801059722667139906737915094475962229973472567\ 2133368114748654595826594658337225439697862488793169760976999360943746718930875\ 8357829771005266759249958500008139415093654946823791242403192727139637737131585\ 9404775802412556766717752917136501398698178940367530774602595029106677534505166\ 6737448439982571377872947359371869728083245135057153778145446156290053019516298\ 2129123558511183405458156347826167506160315952301791326758453813781353993118703\ 00208252485, 1.1702719345959355644860257867864129565329755444536652616127594232\ 8260357019957982200197820172220245728404537250503366975853894226226337204495545\ 7434846999542567965194272404505769964853042203953890725982940751651371371865987\ 0341953042703227094471272972823903106751185010225194105595414743515803208626251\ 1677636173508630216584612926162046268200032401284216862456998572198471893223714\ 9793159976035251615437414041376986068195275237167446979151908453728127456589363\ 2325947567545306139566787545767297841533365370745267, 1.13225286680629521308537\ 2633390463839413906767988551192969483267571455151970698458632625594132200985956\ 2077493835892958511077464872608815930571379285218348375525797605580864752044766\ 2445807529520845943574524195008164491018114878966805288999752895534817119785374\ 5968010646910420826215641710345791926969459493031398794803245926625943257870480\ 8541081753301059341850049374020173383160404227460402416351858357957116461541495\ 6880363056574723636455561874976394846044885848061022631187764781685526942761580\ 95261880525103, 1.0801215538380257034827387732454049074591942193125722361269641\ 4842531298863358368003611850687969287070377711976263926188900310947558759976812\ 3253058143069974840292869637556250982930220151767259474787323539437991038663181\ 0839827062914255724369096848721365666526753067665740529617783168376150583357650\ 6780403606007017373263799688906015974501039436056199160830694941101047217914847\ 0841686920655602865750853744966632742529032235713385687505742357667338817862161\ 8252154117998877147199934509233406675402208208651797989, 1.06012005790694089485\ 9505997145422831404906131262582315323212358555987742025118948545473703417706186\ 2185344973132095380952483759317261545143714152255935134907363572990297435310034\ 5390377120751478610956526231290389524456275759939963242084487339603524984058167\ 7461428101128058252486489923188610418850625530230124640472395867831776715586514\ 9680670945675482396584752285302886399310961325653008034167977374450295518370406\ 9358852978121732241608659031041965510634640034190258962692427381268368466078653\ 25396553387854560, 1.0269952125891049823321961471305837247139174346404724405016\ 9409061881851422059794260084537052155497549573878471348119989834898448203844673\ 8908633579641932559973964128649256222629055888513183006496914672886254117518551\ 3391704490519847894286044451852586715394161048467841595118598636304895830765469\ 6433392722891076838815857424609145660565420599368905817095313387648751523107168\ 4449987542722237181671226524413161518870566733604038955897507225253403238805822\ 6223409383461976326281749841799931780852503875733217905865, 1.01288515152541174\ 6720461304593876825447892956515511458672364780499944326800030088816332305174225\ 3149227755786145152938924946980680196992147990830658586019376802274775215633695\ 1631695356543077982325449279962388008316684174552557860118326487370852626167610\ 8958319901099649107963589744046872992200277452820448670738179551774086415125742\ 4861619556427501036985712968389264101340470031822461800150168105313846403136595\ 8971195696937855053849996308940892282095549212024944159989699301649673182064325\ 23600766127560552464, 1.1647171805797548771661136327452455450023826658022040880\ 2508295552210882919956136488699625382645342310780646244037857077114716437182721\ 3138651759688253313147692743794843135618788858989493004114467811700305249896475\ 2612876500278177887829545709103233596364910816189757341491424409051749220597271\ 6088106566210750474001848065379728078042074010299740135454553036345272233659435\ 9393148145885600640081275796574909206482512170565524597303632067791499840301194\ 1987104074137781187131457292031013077116715405985743599367002, 1.09428933811069\ 4346080927035775845357515188183464531563310679387960756634633753955301020598442\ 4089461189298052236818750062621422273254249313368775430438800953610380425141554\ 3394925714873607407933107517687254541937908775888239341930325059368559820720596\ 6895956181477705183514931719461824414899384329753263332704450811108551774403356\ 8431547758001141480357111353267823750021757201733836146074745107107121330996557\ 9245181689162907190162839676717819208318995479266329313021884701963251390010875\ 06158967989691179633172, 1.0489266704071172492863700413540686572393337956111448\ 0365339385210699020102586110447032329518729396760073885924429994946244772934984\ 6345551449809629572692247798099655345526518520494826765713312883903962882672660\ 5953641377305247457157383794673184585000957227040862018540689107240833130655721\ 8851157966710459515232961293832004215701015821981118963174435186998506147890951\ 0073728653912014382661214095469547075845680689796442200033770938620914460016626\ 8776862413090149889921624970902948652784847948937588818706947004, 1.01457704769\ 1273276426804690568665974788623826368418642906110163243238070537896091299230354\ 6510490043133244636019049916205930006832410239319463867456508499870105822107125\ 4909424069745096425455587389087121249365342509435120965431139529652744060773816\ 0706741664419004133174475811847904919760586813358015746882101724351823438074028\ 7022064148362520320170609978012647180241529630614262837320307771981441336457284\ 2498878669987382987592280991181326406349669435682941111631980700636144675999398\ 86347906872927334420408434, 1.1496326494275298648351013586597230180819975968677\ 5207817925664580881646861218665504533182278315718319394732015109900823457892569\ 8349106505606950828390717476637360420615826726073718492172979861658437172820243\ 3921604362043816235769100753737586335759159500988531868836281020366442480617594\ 1520906070726961319162016385512392016897161203581000846779033376084265265473525\ 7259720964717901904266213884581248014755716807649266020881184370204558095045066\ 1131169759681787934105550326373510917109074106608562820839086534205, 1.01977177\ 2256767637332441778156044496347065910459272750975545231075976220477335987592437\ 2270039635877034294280147303361640994636565275574715197361123695459535921313971\ 2424537915994160537631480542150789659448387234758227021192394985057255933911620\ 6362028466401689972648829532283397950550072467454215774392611489823200800664488\ 3848070693705092115625457803046971758672634534888969645056552611395191783475685\ 8902911358299841015971991712705559741617797611349876035749819819688522540747700\ 06231849796847309495355795134, 1.1388947383102027822410293738236915693059879042\ 6518703241351092801155057774348197167092434564808315915574223453928287742300842\ 0827250896043106647514817351180122511814125547604330619806559109042759818202015\ 6039488112024489605022839391013075489860580129542914250609811378743751967779068\ 1942788973368162770702248715455119642469299430038589707357646700954930044983034\ 5699234076367113965197326341929340392266706265125802322008097203331842702184876\ 0737639610289690095138394263318804448691487502357485650313158688943785, 1.08901\ 5406861808417019119311304523987094309024755043360995538089068139503299064630374\ 0421658364563376851261553591751611839377046146221422782969219025906495337073812\ 8041221947837434730874465049183111643108403250442397381839892597416294719290839\ 6272899347307726356645200198671218531862819741223093757824318397379046708622048\ 6975726439398699830088724369636084120195719564220445260218686155576862577047226\ 9912187494861613922876822745076653814878423607003146807683944266215001471531932\ 15977633045299586039225193605137, 1.0528556172535039859866257827973625271346857\ 4526407543284896752086998607686964438768888077575051058871143632202685561043416\ 5701315311284024765483083804484052996384576116612586915887800214088761810956368\ 1446291640459568473657939842818561705453336693945211745163169712764921822918884\ 4259413932109342362281728647631939170292673533995773814152220573993290613837525\ 7435835632911895425466709879408567229381199892611597675656263754547084705138800\ 4172539685901535004465675531655912333850282110790908264937891760385871219, 1.02\ 4063172458916559185497356939201420575044336615789000376113694975961598830018267\ 9719186505335863947864198099594800589844649244954406896919189847786014146085018\ 1448643210667513406711144771798773863980527542330733326412213853246864394687788\ 6693506432442016550226262419189633527300719352902958043233922490870698535415541\ 7716575345683807444421263406816594968313289494534062893550682213766680879782761\ 6525261404355419764140192242275034415248061981610153666352739830683193142159420\ 81410178705253697716951587078389400, 1.1244385856819430957570253823311715546273\ 0010013247143519504356191158338089586511597427226717826851922095790384515271921\ 6020436584126027839955749446322302387289513090992837125356551396000898756704184\ 2121458156405161800432930500594991961258547217677622010406984524011110594192722\ 5441445936416381238666316348810938082571275672942749815521774987641134647506731\ 1678803165337855178701558735116997026829368525723220973106060695030506617817876\ 9160264450696359206019563617240718121863760598228789404891346342366496321872, 1\ .030744631717127118057200606768934038262384422073040683622735801592289957879390\ 1826470304821885714314886746770990295654862559012521094405498792234143198468844\ 2955429309686406502948598031291267942506914122823890905694229575722537587991201\ 3380126930246802735775953016989568812438032424606801595005433979882857767087275\ 3133424545487009145437292605946689280473988020172580400118954774717572009679102\ 7771003585109200449667698466584201238780587989092188030084273383689284270719052\ 09637615637610945582415749279989005636, 1.1035751382655434916236949988179312879\ 3543167007509939991596388714813952204891989191344279636494733447715603341754830\ 8391312280227169792928107528146553976331832666616970320391496282790842355249353\ 7446314183394885122049291145510886070360912723401796547681005547254537620292555\ 9515339584077290198258434163748010115548635571161300637287103408900666261112671\ 4166768489943007057101905789950102724914968728974883077494118377708092468610501\ 1139019769344987568525790128951383906103953867779349832022629578940966854024784 , 1.042608609203700673329993599362697475194000751059580232335561093715454582123\ 6246633603259038426819076186429137019340303061358103193759127314051065297356327\ 4995252418572893284826998835157937441878222055091686239007230956279315862437612\ 8577670937655887677168049686392558308698181884639602693208712461425625387967213\ 9212465057727262143865461252357342613797314181264124410824689018423785797532918\ 7080306774585900288718066718302786008909344391422307960732655837912423474766308\ 61025199020500672248586754642865020538992, 1.0697611917189897825114436488174869\ 7712555612536081593357825153795445173931153284206163785773520599216352636583003\ 7698457041628292711124405809700199695106205613986521039267875646128126110268674\ 7926376192911089333377067350215672452545668723795688384323209483554554205710680\ 3960415944739104316245527873361817741259386522333009703441518843916888041527757\ 2480650801307439438445387358550697729306173409436010883334820211014714337249818\ 7616346334599583763371657982238489996102429788902610548304471196775451470597545\ 297], [1.4716899412935141341545535525199173857372418235823331476087409412320350420391\ 1051322775770029849392599505571641628227595545838784912888311517473997693442354\ 6352338670446562660384210467834891289089011961518779635998685192144439809432100\ 6588018066442939598912976740577170196719476150416162249833819450075523977606157\ 2570412783157984724831924048596368229512752773873713557284968802825186989241926\ 5313643468801907040974658256224702013797942616893897505268983701153115007153539\ 2618046177123937561877683307978413138784, 1.18838022452901271898945409979293216\ 7066133965926527229886011069899082454269309647702620056644356909941929429846925\ 4565933972212193037643095725570952446118930702970092108188481453682498606066468\ 0680698283114032480501537744614318864732473520842025931937753104774943801436841\ 4883076843016233510652015164296099571496897870298350540214818567490225957899574\ 3827687743575939149038824036009326410062139773504695739430987509703949342325352\ 3764615705450600176309191742587821449029016132411636131348133102673328446426109\ 51, 1.1178262110198663218514110087546578241276697875973336032051981355490310765\ 0613897049238583790018633947849845727879359298344965428146354272971551744990221\ 9786688612590727058146312787184311060101043294757277641158845905061655037711896\ 2294892544935729192644876689602737445068620617732284508527472693920912290520145\ 7730086666235109638970775333179165194695604654512155881282870910263365395463354\ 8027710283057192842398838841397170894336298554463076941968486429017850005965615\ 2555900135267081928948820210112802921679864, 1.01929937390414798378562723470741\ 0781591499441383498133704644758361601659945759384471243876383532494925292844950\ 7903078759345745801056805330509625671866621911095649836676017624809682371212565\ 4106260760874664888157121304738178199016215194460762808833307078986529955952392\ 2728587262527461553311035379106991819191101668682225427110113629407958823708998\ 7844407224661473477643099560857155713967476597817558845384609289162716071598410\ 8886330651504877832153565035769901982563713748059334643811695940668841346817190\ 70037, 1.4448602888444685061805121270277918285859072785596197565492054838858268\ 1854894088073912533680071477881106316680592073782064369459718307295478915572883\ 6982278040754402411797481483207807558943413382094014617794412024739238321382707\ 5702759976297401396113513437697846472694646453092248606057060521131440711844012\ 9597766921531876209090357762497792168351775780208906260891515127687553384244702\ 0301215378817507646718130965391316725624059060086013406650036537029538448816496\ 6803402347204989026511387708303257841897501421, 1.25411738188735231279638898759\ 1699173947198317955986723314032439954458219936435466360117328966948768841664787\ 0132556770150240694739606782932263404864791815514966996672686201471238216343330\ 8339542048862389136576621379160169919377863202519659894922972129553965082579617\ 7696855756881308828583813209520457233060793972694094900400187552976263956235856\ 6865126030478794800283619722404376563498307963645963887598780198581844890529197\ 3117356080167014592004243976329505993617665408944517765893550678144665379423075\ 02468495, 1.0785025670799714460794002216436773767555164196671971823486046289580\ 7760978147762759845274700135905142385814728667601491844914092658891648861112781\ 5840735588686019664023920316990397781191714071034908314301425456551164370197426\ 2276564170717107660685909143125862838837865660528156079025022336834514072025382\ 5180048129609007673985121775125850599676093326309980045477229708222556603380286\ 7382482708476178586409392985538445643890958826291893209120521022056246555176654\ 7483593541234076359241956269825183812897061293157, 1.02335907437276481624830373\ 5220945169448756578832647840847489709323306797987835564984152185129646868456788\ 2276622168043992817694836300723673386114567896416521935482107315991114571134294\ 8262929718144882013631603657387106668231780025268091537625415066218469276145282\ 3171441117027056665791406040203873843466419880983222103803587457168253492478217\ 7614412917191285823282097514378792091850146081517757615671418437033111207864286\ 0624460318452911070405916724767404209320042591606094341934285455585917897189561\ 06214737203, 1.4287112536943085175892885493808278944838227257822540172313909670\ 5228868759528647684378337938155769198525099845720147025529476604301292974021770\ 3462025011356630116339839619043633132929791709911981157895226346461360335278686\ 6851650093612777865880696499618637085013610124688526473282887165251923266594374\ 4291524405707980481527861817659448228916153479112370700181125022122510921085371\ 6230732888344444329904678635073308898618697291451804702378925136184652804085559\ 9214786726651392421386714307589704976524996594844145, 1.31094628604257590090974\ 6151718148126732289535517339222021754932180723350485965894614920009680984874440\ 7831800752389481192172209975322868971463612772597419916713179666528616277875527\ 8124712362816774489030600643384491711116742487936196091750810293423933840601894\ 1446513488890654904949835706915677487142754366495673516283570274281262109157103\ 1173683007281556159056218934665028850309605154977566691394607275608682543591618\ 7786781040038922876228773422538501871690088605017003169368584019079344611127381\ 51195164170152, 1.1750783404538897984458490030837264420323486563399652205415617\ 1517092489457860974839278386375261900792265545449891667684562246915469095827640\ 8406458584595186126556475062214002083511890745278312097848574664031681393730780\ 6768672163354265811443357097368673074911360553911619770241735362896474278692261\ 9682055041651161858958143945563831099986424563439789125726893169751909214313016\ 9926143367326335672548568394382911035407996408005006461589763445897503038552575\ 2557898946528841815169609039852344599602639242613098740, 1.12823089390407297914\ 4953780848978726241149792492939038561346067136224298193291088638004074423379202\ 7030644053060743361445816830564831825537823151981686997003985030615516716229473\ 2894397161975256900276204850271501509473491318960339477585765441700810557438450\ 5118443807166572559215467592473104637980515374301996366736410243288036713230042\ 6517655700749988203458786435116729947260315886913250724475224490758407457474166\ 3733776649007555434620060931197026101688793944521765291263384973160201620837470\ 08863899743540517, 1.0554990310013825351841296145658979116862377757410630793195\ 0393248236315139998279695784505015822770684714486703651624428638880147347599840\ 6569489352804906584905731931854629885480443102412231265699730296280480218295506\ 6649147692646254776087033946673446819670273419112454030079156847778276531856321\ 4504297003179670238641165738366956138613962210701225124687765596263810021868467\ 5675567303810837597097319015379327679090725440609718360792086682645991251391110\ 5983647454101094941648495389323153770052095510224526158483, 1.02610531813913794\ 9088224262938324802663556210997323051980069148381202550260521284272849621782455\ 3658980385876230934811605439050044161438340335957790552031697000288864791954766\ 6799564627327123987781469745395384350353761373850223109632219201332837396882051\ 5977279576422612603358603211062123685715868113607435606505770290814989622100303\ 8410319671673421419601122711332704031970619254479833974095931146395424951899174\ 4938192118558318413742547467759143965020594194243476813642095573927448090598131\ 86279287455552407906, 1.4101010916683969000634636013962428202900091483923846611\ 5549180279303061262072238797794134101569025641199654795192027106881997507767182\ 3885053303124164371327214041397738021123953189494362838226208177539435076047398\ 6576433205950722719814336577906003809116485202986074600309129310965653866997319\ 1487548692345150832012746774851329401531188291348989753800819863675398563163718\ 6305763101947329468700600528139998562090663641617024296689848500559937599546281\ 7815639119866860890945815012891334823422143005641691703141216, 1.20983441089157\ 2713774266850848499595821757491811222287196655621794254948392363612582622399260\ 2311483229985014621901226306928583797570092367277412035219819347585019658861969\ 9303345945621735417760035890765438408325037632611893778159612427577242904799754\ 1733044099290789394986109203551838645732591789704365372535541906476199988641602\ 6089820807077417320639403739638228299783765745483809328041606179284663341924973\ 2982920484368063215591924568664681389144295693513791320304068985358638196564650\ 81459759815851856561572, 1.1030243148675218737703914834633969416350045066409696\ 5922858937131396986794583830919246686912946315870049198634774796385888536206533\ 0967890849714401188170368878717575079870206061332902010436136959422136497883766\ 2233623711287307346698085475979381961009326327214046414481094287536888226974106\ 7961214379696201100437192254495041236313113835471646513335094286590935815580434\ 3425118655560130742824648950173178202321558658561923356443999204638763296917551\ 8188380201956050618307153874100996093161632257617621496754788700, 1.02958415460\ 3877934107189099747189959216986578367871795499690258835067888297103644246371787\ 9224890356800250316958022348256546604893763269011468069297980474617247099516546\ 1137928163569335192018967547272276843848601219442347400602826938600359027821723\ 0856714173521250806361467845492801736545447379363003281363540470958896968837025\ 5565672878337142355689256323573802159999868435673598670025226867028894494643279\ 4320543971014243177682056720116246478151376548432931170692031683757645299491763\ 94362068367792268890782692, 1.3622040444245460520467744840931592932082814765005\ 1198517863353901564582115315122246146847981307939134182608973307838927241638546\ 5046169677807626816457664071287837584237402619143706434187994532033512127995177\ 4723761189651741286180130376218697122445962821605914081379976756335750835563688\ 8785994099581844073272328522532236699593533043926232900279123595226112835369031\ 0563160214449072763590450759339349024380325132677974678899173098133680810623360\ 0387726641602007418146886276808287453359458411452231126142067540950, 1.04034215\ 0020542160572723343376609112055772749690988551701298944700616018191946942617500\ 4088996678895622739715333521253411007701585537945966128460535269709330082227409\ 7800054978935433635032346373372099668407680351162567794120123973836425757563150\ 0445905411061982876252889526961331963993922455699033775290184393408913094607844\ 6802076767448279176862732656404431130218062769868793961173441174858570517491369\ 4748407819261634778685788247305611981154011714903467270822070048557100853123706\ 23227895106915058426725744203, 1.3300978553463315073788327746078557207721667750\ 1250783421676248569627724759201366551187163367242658324769118232669253338242119\ 1328641935527596513946673874616406450887790040266667513292629253713796055381509\ 2985263118504186207652962072342343206622651480755926511037954751874278048148399\ 5246526190604473087701748796697700332244029313824958151459581669233264761019084\ 6965285250721313156951088315008355978114270637531198775674545419987316843906488\ 4172204715832159753251467846490669568887702152457590639244329207554874, 1.19673\ 1991972904929123073374931816445513423666132485069580326049586503264778593071988\ 8021963162528437380079739343022716471202964308660889964750106961251610458158272\ 9197736065098126925105437251950030505311286903935663439069747721979750899609097\ 1561210099010428080967791496180640739219491585940522656314844435734053738299198\ 7607672832585199265094109463515629925048738027609999437730835481667018203425171\ 6408856542701680588512060940096032860036459489922170165943525663487785279607091\ 21089522621874730102263786451937, 1.1117946149799808458393271859955669164964575\ 5718368201404689251864436642186739078195400946515854578842971408319730458919092\ 8839120132589781830046797219077565575835551121983594273106099962487282582888302\ 2906717278512832833433075457083747532266973181157199441613609867372305753089520\ 8475633675716594212374590924691668039867808850302710891506646506554338652701705\ 7293766191894056861493745872525154429987803815578335959311291549112989690531571\ 1020649109341298856510645081147844175068879630291161025226640542645307810, 1.04\ 9318551039306456861875865144580009021341297497949067325217180527228884554812350\ 3173310472830450881164530812007765584735386862042622442128622842823074310933337\ 8598199961799269417619044264846066007482835800026599994554693829588763896333817\ 2718271344638882180949387620326722185813182751973581742554432551736808961959845\ 8373221415345238947852002049743288660146274511852576913745752882982493772203244\ 9223404842792125308091646952755907449272250401350032327252591141199840061752561\ 95016386792855022349438331833451785, 1.2890352753325102840936293163558722523618\ 8785855974651022432598491327212606961112414581640509451930440844404585053026597\ 3560451503421671027969061433532269490845447685600678899852809462102793951109385\ 9026614693288868189228900133626947425853993541948733918293519205959074364867556\ 9572328032767682157761390585047144263864299610973990722311336734819346414233871\ 2242864637899835595923802467812920903357713977473687168251320662431321553338784\ 1208918571562990410953944269274439433721142426630633607521421383040029807063, 1\ .063459833117227930767500345588482750571135295900555997522389661314297580521108\ 4562176456281282308696182848708028272227767056230049112952787199164175202384377\ 7160281600890865558065756957077497156384698000263823763207540925206085965503616\ 5258251854853541267342694407503144674174747016864608685361144554597399835833065\ 6952545142554598338789480633271135497480138845194608475709770453050752408606148\ 4230229341084196592367274767940617716912217169556916386820564645244731494943606\ 19148075987840789961927733866417271649, 1.2334117494271494269221801521303290368\ 8648931419028219501156287951945500426860161615841061526528881534411788486292532\ 4560643760647534219926305917429336621893233578146912013338198628416790225678286\ 9441697547793947899820467542578904181853035878340491082946753184091708901433850\ 1287690471909247241074362260108222772727565917491116510480899506403804240428342\ 8368188064734888893862025026507707491528907865361374734705270020555027745555365\ 0025347427951547642036037071607765348221013570199362095571555068767533747057959 , 1.089089712392173275100956249355385620988327254772079199260262302369063412921\ 7593301508561109149076882658586956102275912477134301167267479446616093488614283\ 3334594234129370792438062334254016328416153326469387328694548315438976270362193\ 3228875345129367139712217472858197308045516395857671371433922830044638878823874\ 6138393598814109053626386035855670811003625712801432725064764290590680918740183\ 7473954667074204813891661411608209167319525540064148948971771626172595716754665\ 91454808451875264841381379180805229858454, 1.1505084241088652891461365326961511\ 7875999056688826980218895753273773470828521868304974663072326368736767410526976\ 3903733257181679486379026203642199476500717375455480428868834593048961908647728\ 0903781372280380506776125484865573093118925703309038818741501532830672637571296\ 6222571862816123793047474746093114559357248129399708205533328060519075562198157\ 7394033611585666764492011921108700998990498724824390240297594141315613518391631\ 3423445201949507210420258753537185592646073947884124040596654955508830999626228\ 519], [.53621280167051289914313210442339995855280840023139343210317775003283215952657\ 6496872529855463636306255436283806140241337098090963682627817702542554198962435\ 3707293354204934134828873996853396091228043936358301211359543583100694732399608\ 6980623624747391273887213203925909597678855297302459538823219304210784646434406\ 2824161415157174251837411394129326184423140713994099410236304023660489624029023\ 1541291332634186537144609287083243602006165039922014525776065876685668899464996\ 6403690631043720626919734289752831145679, .393550184599279722595445838020214005\ 4410619132733236886622208808069977820614575699239273553087813317041012122329877\ 7801294109064923069003880657735054579930626637528783229596079832575629188092838\ 8153711144871906647469446527507698419364648856437333139739506653777070765405260\ 0832913398834331304862191543431081640567417043602747968578154850153950965727085\ 4347157715576194958038106082624004971108259710294865122523850329895194735684504\ 4140982834596572419677324450137833803182406858134026141885329557436994483041948\ 68, .30663345735403207558858647715995097499709666993417595679571451327711162385\ 4093068904303565919093798803789303055201113641279029141975180433159259552787040\ 1181652688935733657824767497572958425344064754761223021752732731642923135671870\ 6986767384670449671382923433901225151307955122487958316981736341436021852928479\ 7342782195173683925540048462719806574980286757253755307929849780232193468644282\ 8399948738490437061592654564374451774327894780319877755978206475749851279830655\ 0189304994262556848569083127102259015128336, .771462076130646376957976836491899\ 5459301522146424085887808420505659792814946743607414238633428035485623346103251\ 5028834877293441958411545526879850187557863184886576589419630380632457772128465\ 6170082447812620666299586441793556043188093353482690677576367672020053807612183\ 1729203458731511730510926573131876502421803163050585214053140965732424107452027\ 2233839179965407543555560632944908847476576285354005938017232237385926262236136\ 7597895926984891506062021818507228678459554620973476453006935301230368892664529\ 13229e-1, .52983296563343441213336643954546304857788132269804242765913075838954\ 6171868018155807432926068392806990033836093352351578263253519048363919995534832\ 5533786311069678559010209247350243893696492857296992499900823098457382906230802\ 5010713655943811479135593220744540841639981897277607301809234024138635383711942\ 0012918369868547281275896918968362914506095024701377860484439404095659224405089\ 6745621591049667855114947288494835297157022371630966880094817132995434439237992\ 9641772924600719954706542548248429041870562496791, .447470259269655006173913695\ 6982882065164237258940129091040855976305169395129594294123263115617754064616544\ 5493822144701540121384530450423648447720743473671253464848522143446013730987328\ 3329969653262730163862205714662623769996290919947342218211530463949238134421419\ 4245483978837772299930915581640888047781706709803393282317873699976487954157429\ 5808756870240395335179360175374875186404496078168735661614495655943121925723852\ 7689638048030132672477955029780359029019527334232936701334097455750803070162678\ 01718131410, .23675531078855931687136699131310225298500760689428227765008254940\ 6203595644903572531910612788896725215009390241864170005761706086472781918906056\ 0352442983223053522737029708592170319251866676891066644049596639541722544795192\ 1206255885259458006170852482986393097483814512908704508505171016553297599386708\ 5021403216096796229844160446970150470296618728910031443163040175155707088424741\ 1527408645670157218524778648800372834214074691656657732403864229796728168306881\ 8423166548629931500078500536222390863716409340739402, .912765271608622642998957\ 2142317956865311922405147203264830839460717224625441755165020664592995606710218\ 5299557487705599372096676144034281021558978323492399710085970944646315139111641\ 9745604995197172617832560252480673268488314317393339701144547807745705430181660\ 1262465998764910411049992799395640961730829446691550644739715519055435879080557\ 5104362882046888165166906877056669546485842620792340733513692903387081499494049\ 1236467621068309632266757166843935620446494671531534818397536291567237902330505\ 11491155388423e-1, .52554204558377841712932877743775219123242830856388517167698\ 5023090108631598874803340939142000398800837608881432986246327493467708265904415\ 5526399985156193322401105313463384746167712529083863671381149783137716891109073\ 0725085231448733142633341960718511193769121500437944184039045799497864529287764\ 0729604891527268084993874920629377716086810872932538813516309941690806555243916\ 6510384466955121090214340479710779509916358687757890560525312459904240764643141\ 6845723338486248561331916044482699852572177519224946374646, .480861520732104929\ 8692218596444296829327568840215590950339068983057679847681923120405346421116467\ 0627676575245105071481900279000507062281266951316389127459732401716385895850784\ 1937445143167450161037015813092719972412976943089931279186954045641041455698879\ 3129835119881170884468818597092169747564439757020335197939456488749218472530923\ 9988345309012499903142891329525695450638576503098900220214154271871713614552234\ 5195146021216803556823683535591051157763754483728578504324018870976393670235601\ 49849664107952289929, .37994420392272656814322884927403522646527822354993274405\ 3705031271677104861175413305250183628356072491390002939993129619725246674551786\ 8364711796649338598696435390541228733786256747775604020098875114838903045498843\ 6095390778284591498899425590314515780634776127299732530618858229264861875458794\ 0743189352358387822825538420439183098214686008123088872473861398699232092584897\ 0431458658615773091177967028376080227282259136296276972645350344012411006069611\ 0263543248536618502883960885937672298057450873932720252861587, .322066625898043\ 3039086435531720361884583330154868793400882258774885043238013580435655174673820\ 1389420572913614058267622376605957657045218929504484998516524710995923006846225\ 1842676114547966674261116746507345285082711088815046394803873664695405124783542\ 1221542479116454434376731051140122374847907676735072915487620488816323117896565\ 5105690408326349028611954190413536660303800757440951524088155840418263090369479\ 9377915201452511318369053713000378756615647650524367654349288100459079085263971\ 20355318999263001163302, .18473819914425572190283923367762512040327940020351488\ 6635242965061306613525571694673868094600421474965978157002620597863149073712061\ 7264663769770153693437249477305753759988537116411780138230616296411518483855170\ 4341548491251872714989826241996567748456278965864703102103309731809541880648751\ 0793964800906826077897773936430904973351848502202508677382193936770979849260392\ 3126138619094625800766444539761076073245439993838384981198042544869051366927290\ 8469053642276322898945287432959321125871178125708537515242945847, .100488400337\ 3170672971149266078014399931461533039685213574585573328786945449894195676676591\ 1279855418794733819773152491847870274596862354666915150939412575251808532864760\ 4011003300399757293016324724639895299402322216698667828321730994160253396294351\ 8883557458894237714910956250209774604223530227684008723300787466003487582380002\ 2554266785863861144768994006458205859183107953225215608376754471219338917605180\ 7479492680074797618441950524028317874542501353539526364075682097351359866889020\ 00288849763762191991098362, .52013516871811669404997635013133196708705864196119\ 3385732923155839169515362177543864531855774545376173267750087036630853832727244\ 9818387617038085842795674010696736639120515092906718105131049285571078555257708\ 2140625188122767943740993568444683667602687268771792005185252891884482783008207\ 7713837354548222006643156470475737400972001786657515218067511401311447437458532\ 9164378013890088516995367526704751875419308654541143619934753828878253048612952\ 7236239557860014001999523423816443740801343959136106561593284315245, .413381281\ 9107243558578569794202344614442213182399138445175373551366678685590734776364474\ 1867298709715953639026227769031222121777547262512180337162784588141808019582939\ 5546331599446786660936721086081387960391875578374015083216292206964945086119041\ 6524608348116887706641186194536955967353283145865598909065162453556702203933388\ 3309611004575103251868198613967566031954401709549042601517304090888656744530341\ 4691566554308524618249666814412525076177778112915320874441982658514021269852225\ 11014491271383638482269077134, .28266468598824063159241380940283693551033652464\ 4073551189339835545193209523904923736155242613911466435099758956515864801432474\ 0354197563578748211424319062712990398584091524413011494575002422849950452922939\ 7022484864984834408027083576995394575484514062192776132181128753816374142233911\ 5037993959970952538913747331054703012437534428592151635419873532770893641252544\ 3055309219968828709007190371853974689549003786673582423277307467364490250357395\ 0773276931901593470303655937127466370488224004117055246789586698251508, .111780\ 1089327885068154932771485077965959278363588672396612343812029378305493220230597\ 7818883214106791087836104017593845182963997709282341948250266597259033601030073\ 0351087195431218072493703609367048059787457239351504718240219499858666034580605\ 5551253089640471266387771331581744370072418189729949776614553185976233608224238\ 2088509805945945594006233812210609184536497650897482243258735224484052560495103\ 0633869163079842793795140591220113251890571923033014706151666957250641041735318\ 21310372764191058768724170100831, .50361722227689527279765233820388103305330765\ 3139009653839611904620952444662091613590071632285089158706463505393057027467282\ 5921596987673877207954893867975231670554741152637578904026168529203496659411948\ 5965686389459300500804557535468805113404714586157525779589412615875906698752072\ 4520290506115996878315841275586542979322243489524898986056228881646248696623273\ 8560911421248114026376228817295153596327287066245283649375380193588613152561268\ 3280144643052432606258275957579848683838742270506030787099408819814273500, .144\ 2749507208862235033084788162594402003809667604615214817757597058134289661129894\ 3569170330929748678777263951220381644642198056202532632361684663507322113905851\ 3459026035282341039416503670537789716959092906658260084068192389028354228478803\ 4282701382462595345863482556549145353879931726912177865152439728024828888456638\ 6379530535437633883632811809207181503634159958071447416933801709039586407629422\ 5726629738629641663780385872094519366046137539377306318596306810277790048276714\ 24832544184658557228481315050119443, .49006785880157985805409310369058536690518\ 6338132910298129815891538642854892196492348176031951714630461181763658895713738\ 8573757712059049373144620116340344587058598119098549897017379065164166644781820\ 1053104473321052892526208315057778865049566304573070241825975252573778682549371\ 2211378118747997585881800803266485674132409944308016864526956895775811332161756\ 9987989873697821372334695783598013742137113497706784295678089704238078473176549\ 7439855812246385459613987226445393336216243994254819170138829624672511283715, .\ 4015636367870725946626664537946836866230027160063511402379921560604975325206585\ 3813865270827623036471227560055844727571253311074141080318183991467025244534609\ 2744195104896093595661024724195269251569228206523910879544884296612909289228017\ 9051487380307569967716222165194877424747703869906483221680426908493002069098759\ 9493999211093498856252966690129762796710894838746593409789226321570772769556255\ 8261077302746761942798506370766008094111833997541892535051173043439344344790902\ 74206353296351688508648257997236389747, .29716775067313854677972696224702134190\ 4458101550127451908367102724264803035155207411095903258568636677624735522487313\ 7041681286037068321227580846858604714087251500164569016432661946005111541976060\ 9421464881509978481365831676658530669930275544373132540870533768044740957976434\ 5573990921138748946410056462146191467292140630349276907778023958386109158663575\ 0478137896329376627642107195041000338663675805515894047092395240838653868520855\ 1852754581081313568869204910097977033979602980931148207027641899491188739788434 , .1689159734991095651164749037058183987284469135107297553319388783258832067427\ 8655978839332289193700412587474975099142839175209212827558164472427666938348925\ 4635241910813231332232624148292747496421084529061313633129057313603716667481812\ 3870992760954183430671422592896971787176165750133047457191593930731629229658205\ 4075771671554168620845071343442372491053667914587255334008211293461163406570609\ 6886728882181279157837842609920347859380105558034899085073601685948363703215371\ 26845791043926582684745640590275553313502, .46915021069498823332105845904397026\ 5849913745747447610206963009349794044844759336136301339051753529933138761152621\ 4364782220469213642892118808071941798238296137243831596522160014585511406779959\ 6124329646983235862682829860243124503108990407728215877701300149845669948912653\ 0476362987502468255688281374084580113468324924810466794574246699874927463148618\ 8857486669553990117024920871516631134386877119678777292661870790178203720406549\ 1005762129582845866404144383312437361029478527038032206148669861469125728011612\ 916, .2038883547022401644431818313271398701493524772101596349734062600818193640\ 6709405261816457131079560881105633655229629032143736011996340717480651672556040\ 4183328212134749299143267694205458468053839672133470507869336338969379759400126\ 4079105627931317451203590962854602355152304233843726887131805259145490553524946\ 7274638910799481812490724022498084309074608449352454856411753134390236119551201\ 4124888536787094777536860765165155877993429839784444514319896468447792529431345\ 00168313916380046243729991911118230896145895, .43256275553199956908147979792656\ 7745210124087564280777856765734455020263895838599247881755991836443471343229587\ 5691073122738143327163431046878398384879001026237031915345298776317391041610726\ 0445703292813585413981597482874466342992314802668242628974958773469275861430359\ 9085755764116819101820189167963368294594272143942889430851162769276223151007040\ 9066802941037042034896333553986031718588079293102998229015758733725227734825548\ 0869450864221789758374218824093662906690297064420343676355078025866228921980187\ 891304, .2576276530497367042829162016260977909096926475032044915339511440663191\ 2927520437245963988793410025058287500876197159324916922490246322651097254741775\ 7476903659137908457440186462786919554471686682880220362384541577658415755868683\ 3126025416929630104563311112500451024509384144341290004636742415477863189045383\ 4352391665972178420415100179712771097685160461320086690920197888883881055602423\ 6574120740405787712141984220008996581150387363981028722675981719914715488028964\ 37325134731395824454824665229446107339941939205, .35173371124919582602490930092\ 9951065171464215517111804046643846109960610720338710896832303832191569273769306\ 6985088619080358531699778864323359084077346822338057222044701885666220904489839\ 6617730718628398334968255637029909849508023092913106917302677517880206623536491\ 5368194976953902213186999384009629836598439739259907331894904021158264217960664\ 5129678412701326375991799665014612859052541592463084157952848677470982340906180\ 4717528791856563115913678410850647180545539487585275993168126395422184694128687\ 490916551, .5671432904097838729999686622103555497538157871865125081351310792230\ 4579308668456669321944696175229455763802497286678978545235846594007299560851643\ 9289994614311571492959803594376698474635606134226846135698957045397762485570786\ 5877337063566333012384304556354297860850901542908192085605575237481965846595080\ 7273089050157336183159607066710803928391836014949964634934844831746591593363689\ 3368097149085698371751009354679216674755288973147558892503057282246048651248541\ 09688318448770433467727016574464765200627013360495, .85260550201372549134647241\ 4695317466898453300151403508772107394652515065674263044896577378350249484733450\ 3972691804119834761668851953598826198984364998343940330324849743119327028383008\ 8831331612490457275446692022202920766397773166483118711837190406102742210132371\ 6354345162120828431500725026719073104811956685745598797597347441154457161969993\ 8899354169616378479326962044241495398851839432070255805880208619490399218130868\ 3171144283512342082161312180243039044579258347433268362729596691227978968550646\ 308719559553, .7258613577662262570486893992763068797061628495042869835157402542\ 8626284763297673135504402049168752574789640793937784642176334408799724919558257\ 9181449927389605771158529205550935390711290271622951747571557402308774197640917\ 5140364775085976873118672327782303488529309857929189747985090371764731866811854\ 7499927084861888520519449473679726951309354638721227703973498709287342024916391\ 8384140425970457816903019027414409698690589481351575520933598004882756034702153\ 95160775641299652900779119441420687403302194789997533, .95858635672870291216986\ 6781332452140975346908839861013678379964368756027821621098237584140815975932360\ 7424727599533986932930043833530623569510891234803032967175739006780916297526969\ 9350844034468206426986536989075361862114799100868900067736086816927724024822533\ 3799630589185607624662588919493681354295004691136895613175802193825306767024260\ 5330279157572822630122071029493429536552313192450270763682919826609098040850167\ 6078282610215877547539729354312468861087920442850506572770352545662375612141827\ 458785418179795], [14.134725141734693790457251983562470270784257115699243175685567460149\ 963429809256764949010393171561012779202971548797436766142691469882254582\ 505363239447137780413381237205970549621955865860200555566725836010773700\ 205410982661507542780517442591306254481978651072304938725629738321577420\ 395215725674809332140034990468034346267314420920377385487141378317356396\ 995365428113079680531491688529067820822980492643386667346233200787587617\ 920056048680543568014444246510655975686659032286865105448594443206240727\ 270320942745, 21.022039638771554992628479593896902777334340524902781754629520403587\ 598586068890799713658514180151419533725473642475891383865068603731321262\ 118821624375741669256544711844071194031306725646227792614887337435552059\ 147397132822662470789076753814440726466841906077127569834054514028439923\ 222536788268236111289270057585653273158866604214000907115108009006972002\ 799871101758475196322164968659005748112479386916383518372342780734490239\ 101038504575641215958399921001621834669113158721748057170315793581797724\ 963272407699, 25.010857580145688763213790992562821818659549672557996672496542006745\ 092098441644277840238224558062440750471046149055778378299851522730801188\ 133933582671689587225169810438735512928493727191994622975912675478696628\ 856807735070039957723114023284276873669399873219586487752250099192453474\ 976208576612334599735443558367531381265997764529037448496994791137897722\ 066199307189972322549732271630051591619212797740876600067291498308127930\ 667027350849516001984670542469491796695225514179319665391273414521673160\ 233737754489, 30.424876125859513210311897530584091320181560023715440180962146036993\ 329389333277920290584293902089110630991711527395499117633226671186319391\ 807225956714243341155906854681365580724173498447249593190408116323150197\ 023484841630221400985620739718392018133021868063298225719752250023746856\ 136974712496442622977924504057490671534572788651506516083246879706281778\ 104577772258789192373862900112760309735680890492530064612892727530919447\ 902003589389819427495511323917384271638108400499211198006924387188729695\ 970002910005, 32.935061587739189690662368964074903488812715603517039009280003440784\ 815608630551005938848496135348724549602525280597581513579237782857754506\ 037653011472682109825272713659478166079186507881170353836765474601738548\ 120651787886596466594728787186027971658042677648544066692909393193115645\ 508391751300790279989562656683920024874165169990868845012876404250956064\ 144893023774797053252782409947751765944607446809874067065338290958915614\ 204800224198408375141584435237806584753908207901246070504560100102257438\ 966836495384, 37.586178158825671257217763480705332821405597350830793218333001113622\ 149089618537264730329104945823803474577747746192235379940965022263936285\ 624822047483688089003667890354537553777903190905644099375838721275634312\ 643051507490897122077467801551204327992986651432331546548850586795060341\ 362549259966882096153281156037995262203235784878311073776146230149105579\ 379015677163411251265371295650176744886452149832702011984494315326208033\ 153177607464795075040560820830213633950862288220551335769555803593746481\ 598709080074, 40.918719012147495187398126914633254395726165962777279536161303667253\ 280528720071282996003719889546875503665519676945467944917136494898599175\ 653436753310504809152168754487522779220070007397194841780564455223010528\ 554611979757902870894436727404629995409604733040969526221562845948429944\ 927846184578787761632678985436277253862556903038183973270514950196665527\ 710349743748816695990528591030482062963647832880205221997318825658012351\ 221409067191689558103853574341088997924759060345757218996039302094745965\ 584290912924, 43.327073280914999519496122165406805782645668371836871446878893685521\ 088322305053626456349371063190933554867608492626802447167012325854752123\ 534663067852863346174582283863318197814787695734460590477768591146490300\ 175468026853027496697613091256439069665846196373054906998801694436519162\ 899527326977331224740290290229705567643252015673036580406818855674948098\ 017853704975815364307149372761017706878678433545631903018125851200714770\ 241073205571081343008914241615264552855237368821808322357074175925403682\ 783202820845, 48.005150881167159727942472749427516041686844001144425117775312519814\ 090216416308281330335372305400997715502977702602021626521662708135972931\ 666387875848360415749514542594393171912466407742182807931556592203395015\ 105544159539882294586912180255358282132516378822242517229114957339065901\ 571071341609546717615622019577430001371901180892813940745566841311897293\ 679338884843169548510888134892622771079386125445306555452581604302173171\ 394016676219848596815386025310508650393065848664659529280290536587847109\ 504846578980, 49.77383247767230218191678467856372405772317829967666210078195575043\ 351161151573927873270750740093133007078162802156113122435799916411635531\ 407545149058991598474641116416378253783316653929728579548583391580639466\ 325973644425903615397572735504550002018905477064684321639846041024873043\ 967333441613429658458237356110408528683617098710825394380607215794548496\ 994948006540918439686532222948796598716534544810965172932440340523209113\ 196215050595427394799685823181450870443477313422163587624426410943798610\ 1224081986059, 52.97032147771446064414729660888099006382501788882122477990074814031\ 756495030418805413758782709439929880363884477535502028030524214252675971\ 885242672950180289906415888440438135739014789887680560136071518461097272\ 566357267898212887417594384011248888213643608640105181856343222098693796\ 134088842011549423646045527626895085274447861350514120292720850786079649\ 978791164483349624631557376419945375193365284029438097810895657642120389\ 690368737048191971862713767131741974939613326985425657846483119807707826\ 7156524968563, 56.44624769706339480436775947670612755278226447171663184545096984395\ 847528027450566690301131427485238747897187883368245827953385241544049414\ 267733153585138991230314395097767479641842821514159045327976789706742180\ 219023835196580277231714962247737316841764832103346069721167552083168274\ 871364899012622225059888022952356910617545783195560562549968093397487796\ 038554219389886924898528735105142126119743109235813409901360470923914103\ 110900943331947358422870487958455610278657735852628317810667772488587596\ 0578484157909, 59.34704400260235307965364867499221903109877280646666969812245175474\ 680015269962981183810248707463354843852195854743924354323091833233556941\ 840730056212173898990762113221776823974005679057204245284952644084968147\ 273303862391028082531064238220684992980250037600317249014377076770434684\ 581272898585074508774842056920809661517858905795952300698305372433233366\ 347233120655620493429101526059868606661904807070322117772189346119993360\ 575793382266146245704759856494038448939795677835215420013791665230538282\ 2464848056286, 60.83177852460980984425990182452400380291009045121917825710134882480\ 849366729492053843084167039434335656986447033588689745030747948638775715\ 123698967776718139290397255489366396360909670877412216683886903611382323\ 813732966946545630033804499648174204053394087097612978294098440018896484\ 250215111113353934083586700660609657828232020822173155764719005349679972\ 728308592349540264307522501844379215363719536484059777311089660786592542\ 547816699132363193866783362176204790380596377575606686727197757301972562\ 0641617070718, 65.11254404808160666087505425318370502934814929516672240596650108667\ 534323266868538441677478443865947142589692775166203672779221257976040652\ 671034171283933565046639547411379240773872974559426747241380152029155597\ 066133382480398565929897905780437539862514983748633106345882698469367237\ 606080678622308904627940401025082713863804930176333840222658973985973280\ 275578136851111710976322435129211257657486537550927042702117799091409893\ 902356671496080502235501594834156836752995684529890508508867458843096969\ 6692059922086, 67.07981052949417371447882889652221677010714495174555887419666955169\ 490121895619698353029397508583303430555470100513485963102915189604317181\ 586735402319454836737904008670291478098179441967844612438143836175844936\ 243239659544805167233938868506600421458334124645163502134529838841384707\ 302698398821258999382642387008524509989756442966735510428987862071885407\ 258854651557397345970707167627310857633493218077257913000396088644974183\ 686871535394776475912835037567433203709726598411871007044044605345166413\ 1052421556680, 69.54640171117397925292685752655473844301247420960251015732453999966\ 338767227491041953334493317834035635374806158478678916625612286840533522\ 701517643218746616386794929305333020563595599351980343958557595114999333\ 835451392557781547656381878467254596092747281040397794946530195695411319\ 828789944127539056729912718648327442716174240458075899817259653240077132\ 911510570005963350748931877639857880962727412531373070348605066644539794\ 040423092372690643547267804245559277976829048254158885932012964066250173\ 7686841432313, 72.06715767448190758252210796982616839048090662145669708668330615148\ 840737239960834836352533041217453298915736658311883083642393932396480882\ 455848888390855996676745888302674866719101010189535097209841031377167227\ 486379958513068617761466561637699819719766927190536426258499818436932973\ 122021001721541639548630175854801241586351969559289315192327211179116517\ 408027736031669647282433100951823695576425029578747315120388475431975347\ 290363276086953158804049015964078135883007206913283000722036164495969840\ 6819333476591, 75.70469069908393316832691676203034592281190353069740030164777530157\ 419702770632360838403702183465279804994402368757100494129937745793692324\ 032491908337608653429942953940301154342853588730675266753241741687953454\ 395704964171175534056656582788719787111839068903024040573809118225198707\ 500000640160375911722119762806877623145364343256227310276014078512357140\ 671273237132730061216897487596676471021538839444591114631103053505397493\ 363056826449651390994344509117017831545278076279846423639748221154834471\ 8763384623992, 77.14484006887480537268266485630463701579603244923446104176523145315\ 113916425371508940828869469973775975905687441268986273940101504344871479\ 131868506720926250969244950056959854287699352594952938665551590789073219\ 964894771225082035247857020737401291486115210357892907967809426871858640\ 234194478386034670643081088090942680986988205845767919076871222668732683\ 601467591390659721978027418413881573430654173001551200521941599495305417\ 764903428707079297054951852217810366913849311040028990876312583874796710\ 4934425409046, 79.33737502024936792276359287711622819061324674312003087843872049710\ 154193267709097467745199461212410901477102377975038492265220686128115682\ 860498920619970997077772934924119311600203654621082993888084059559102416\ 583617895861096233737070379507407049516430447569085328066692661865517322\ 816993129482847836020286280349024764642472679972938728433263438362867949\ 883841889449171108973716541645549633370411415440049398470685581175301789\ 060310511829657318557313534669606133902484056601264070413599956150067094\ 5543734223534, 82.91038085408603018316483749477060949750888059378214914657130628323\ 592908635661907551256319233489681875525448176186010046123385280735957470\ 697143349786288091554540920982990274464700754682053513823060253888243638\ 560484374203906705028011149637692174708210445013405633442921112657247560\ 185890475020174821554974854721319512519347967895128797541125323948460233\ 832938813498020684893721685020426425030905640439539337160441543795880927\ 985950559188830365148197135244086815876963726416944110475893197131707526\ 2356082073995, 84.73549298051705010573531120682774141710662793424081870273552968904\ 527172893028059879228203063995091247847855407508866198932128137103429528\ 000605451194242397866377681375646658126810438439452215443205777889439457\ 434272778772788395281743970231382703681931815402667390527244163104031777\ 998561435251425588522291968365820246988183825695475888136239709250318994\ 586749983792483243551559612472093586546505744250767852807787267847644700\ 103693128298475824217383467347968072627820819228282822678135046641911737\ 0953465571946, 87.42527461312522940653166785091921325217188640126902818645555793843\ 969104952483075026625748079543951719428881635143748931444210856296139403\ 774103518197921594752814969287055200320556487453676169267340985060730187\ 175528232883976539298138263220100481754038455101256309175625844192727987\ 551322611811825722503768325883777177173915946720989850451528419786222109\ 894981091926678987794498442761487764905797932725811439981072157110294621\ 692572142011572826481972255298769388928775434359297898470664643318614372\ 0097498002892, 88.80911120763446542368234807950937839544489340981867504219987161881\ 401355918219843952079327950393306415339351421792097369882955291279643594\ 743002261656178927062154700521303429660615258619404176953863453094550336\ 401790680436178273204729390310405065297546227256622045423700269474832299\ 171106012080722659276215271846465607871551674759627715693502544952461340\ 242980586021458356345682097173867417727426586249474916929861006875263561\ 984401454991711501916580560201393474138588212422954271037536316847440587\ 5930832403943, 92.49189927055848429625972524181068487872179402773064617509675048918\ 102802605877088933786375766858864028302466101684342742225993601861236433\ 474221777544217899508718306663662111009065203531593793229446010531671791\ 028067825329270155536562755516755362769542267681299219961370359553957608\ 849616522945657731609226907676423236899325898728825035003925166818878392\ 355731420254337536574231211401085114325126127640287592579218779765326710\ 189989803882587048597075651460094768175404057562268721813304789552574550\ 4995214166182, 94.65134404051988696659792581520815393772802701565485201959247427451\ 348210532455844076477401529960108135679396332562551355243103049998834561\ 074966856056282131937940643563947643047720356856396984480625770068259642\ 095467488982819136213143286854303141503857188334094690881426681562925377\ 430538686701011773045963446455751136228126551261799923661917757573860893\ 083207702595815877168393286958896862752730777434408667073466746678926853\ 810201242926601593045473470172800859832335376358655098439566351157700118\ 8984704193569, 95.87063422824530975874102921924678169525646122498799842052928165165\ 110662536081792189542611557235640484807822769610703843682000413239958357\ 246280067384263475326872160336184241418141022762811843863312396285919956\ 212707175066619943896604772085410410072616700653834659992199628212330700\ 714566313442592690392732350832692284058374311873961677547084007651210434\ 320936872565907556414520985203013112007936043072980136288354449806280007\ 505856558158093405909541592078424633404811326666702675148159153233860657\ 3810978808220, 98.83119421819369223332442013862232782065803906342819610281932172756\ 554763976555318751452832328162320978339842338727935208610234600430329548\ 747276997785570523885353739306724608266427286922041202689556583540410630\ 478677615760060789619994776191604062104410442865707946679818443096407000\ 214698038611643713748160764948040470447930162600139288559481130313679311\ 321155655345831555659467416337845861276256966678213887878632049756206741\ 264280871819754209951448103628347249742376217645288642941003118911926612\ 5703095904939, 101.3178510057313912287854479402923089063328663843008947999283187152\ 301430827293123555089049452059718566062795476246883638146279315064950661\ 417608124330919538238884893903926570119170263834018751496529553441220636\ 583008764916846462651859826706477974682518782092696005622230641970101049\ 936230994256790292669672573996416954794264410285040898147189431770568080\ 294393310094364145051494796221063795571215325721550534189382914339005988\ 879629765533805151469044848664906881307461470111570670672542230147216725\ 2626775474184, 103.7255380404783394163984081086952808344811730694957645198851657940\ 365221083016488054381454984920168946008911069966292267911465923065892370\ 422525139321773948328911985490537053203394829453494851131619314716793180\ 100168083422617858062662659982352197305439769685845281224734580277718546\ 377620408274509644176380625096160050481004377190225938282826713124676864\ 272075309830612385095287802180387707903195064767721267295766128840397412\ 921980771725577391355427897888769481601965233526717075538186331184690948\ 6750321828935, 105.4466230523260944936708324141118089972827539285351384805694471141\ 814944475759628397735549319628145154807352235114896851704856822189403372\ 030891033165259692831161764636231865286355323428429969940737804080880416\ 821618514556216209281551262329479744211736614327835768832295911092389436\ 322925602437649876722714145152746332534690830854162236039869961109352589\ 746503160720546633850831807327935840524119718742655282802495159494708141\ 702222662788734929793299107805338835563304032227384765583938114751672878\ 5180138071213, 107.1686111842764075151233519630861912134767078814047652792647104215\ 524038209780971346107740406090410992560827514997939713438701778152968080\ 613888327468576657749691805490622651132346281530513001718773826649847394\ 935663920055628385661454960685384045627943802280764259446797005195086932\ 218135829916014682722834105131513469228099258903501165052004453727870403\ 513094195698945607790630430415655794424884649322918692435137017871724523\ 194575998399275544681473746587382898470293539462537888483938870098321163\ 0341502374438], [2.4048255576957727686216318793264546431242449091459671357069990905967658386771\ 9402920443634376014525478689245044476986532693878804902841236594901268845533252\ 4230714323602601146641559413251838173780254759398849431603273379257463532524324\ 4265509393409917228847244617139702187896925389135622142638392573337353926284653\ 4059279232590850337982201049662881755860725875752628323053773314514241307007330\ 0535813176103253323691602967384964204806909490632983052690121074404613711626025\ 2549029221833064807283147101841684050799, 5.52007811028631064959660411281302742\ 5221865478782909853757552038144290829193725443093610491399543483344156295510697\ 4987970458953672325247176345173028435874390225291680342725084003036531906415556\ 0130794549886352385858894743575861688854332185773469796988237375942338351784629\ 4349021902215099112551362749207208129313443204134879503295997164653508049742318\ 9040823207602838414192895448683574382132741692483064399347687586925764099342393\ 0534254213939142885177360215549747162195529071802095676449343388811797064709689\ 61, 8.6537279129110122169541987126609466855657952312753556188914765830225999566\ 5099877226732264028322937581984719313972940083033384190517372183880876274386186\ 0844925643458774301798509041515846581334201916697336684055917933543311138285567\ 4140006275133734543336771846142050887892641769529056148793374514568109315057881\ 4560171758470799936948485460677945297498552314429559510148483811656495517680968\ 1879367839991825291701535368739915188371215281248758240275991197235716305977633\ 9673256177160201863386325376761184178470281, 11.7915344390142816137430449119254\ 5892202292469969544670325051087905164651179274511097732536755351552997986877669\ 3401110505611507019552327463386855525333680102724935353257548029369035717586408\ 5274498542726425244676675109313549228484261335111280266426642728646670285073420\ 9872056876621346268717142722623991088077338395652201342756341859128787941570852\ 7854794911476115289670203290302812815197554671965701693879703128639184758208723\ 2540418473528111137565112182915152180815266606945085037157981065935323431685670\ 51165, 14.930917708487785947762593997388682207915850115633028158774173218835193\ 3639320934263766104927763622108559264700235431348576222140789150714081422140136\ 2013424397711509248864922394754058036423856969677337291306332709175705855029495\ 5376578415854498511035015851695583107653037462925732955342116572264252539180364\ 3976894045887984277057934411930762658438016404047017641263736185970352978947319\ 2277095016865210268741944132648343320351812767550793893192712438082285406089129\ 1263576664138837245593030336265770146190650578, 18.0710639679109225431478829756\ 1817656024898674700132608642331463528382056239377834254915560400966327199229606\ 3312463183558823558420452023298592585981957192150702328443905488980791141123047\ 2734683912018505988574388932643051384813352905661065098041335462085267993067230\ 0186374652173737061607254199542582961353459778989598950369081990627383729079771\ 7606374290493631948904870512401145513955359096798564623807807574377774576139950\ 9601287827951963866263058179991176749990216094573180412310748035954243918365793\ 72373323, 21.211636629879258959078393350526306836181808975976399832738202733768\ 6882299000510340713607442174973167412928704823166872851834875779446461553369973\ 9751566128938452325069741037989206825219762131123947148754358974523669266494570\ 8990275418550489055114232471395420201848510544686418588809648820245354880678986\ 9462666901336037862656280386415857615900780442022088497997430544552245833119968\ 0805455818468324689161149488617313776946069488850523660886473148473838998772504\ 4843120767882698123512239771492009607811843663902, 24.3524715307493027370579447\ 6317890718456937267514892702240604563772827754058735257597419733108980181105109\ 5415292984780910294542357407745583463196831854626916516051254833138819972332656\ 2839289280702084860585343047236733907349159778888054445699021577023266456579367\ 7613865510692616123227992565190205629174153379681565701713442737411118066524600\ 9747813303400075439906889774339342259460425138752265889497318278098593764091442\ 2512329051266028420041070574331339666065326545771155613020516747519385359056966\ 16140478199, 27.493479132040254795877288234607414546529568860549622010938861230\ 0091310750003675231514135631273548908776184167382768539748505821920358038072799\ 1741285279187412630530442453949543721781338068416176821377831984863252352697121\ 8606292172763566273887603582327935206922628226548321652077477594625980271533288\ 1843508507999213263630262712134308105490088856471844711828748324521212056224579\ 2618493901296782466149228905672206803424078857123186769643824867765644518375709\ 7672964578693666657812165781514224160776449818183897, 30.6346064684319751175495\ 7892685423273727357162917814719075501789971602444755672302323011597795469349735\ 8470536660828724903557017103788560009266813413804272545220434957633571944150045\ 6481440833556771591315406512360304612523463074670873798835393044983913000815673\ 6060446349778443100920511408700181194201152353191660729171899469600749820719942\ 8413607958186085346158585761776240904535924348435447154832061001679835300418296\ 5571726129310215844294620157436441424675195378849905108575242253655112209645042\ 06687410007560, 33.775820213573568684238546346714728023932705742566816548964097\ 0127193411816884676178610171539983854415368488238358443959638534971742871517758\ 5346782079297762132375001636096647624912988598053179429514107349104825673716813\ 1600700392919864184053854152842279858104758560152208129538388139882153716625993\ 0679148259123943560792705980308080022076196306645720362480381693855152101706339\ 9047412735074005436796183879998324935322876243273341321435653743020935339521766\ 4390633185687220686409281574010209750588216570150577353, 36.9170983536640439797\ 6949306327295263648570258557603671668836461655619514720165107293675559448141215\ 0824183754691687097261792906307056897283054836130857796645204046737683816872198\ 3563712777860949216790469667092798306523119991263663593233696212405638388706997\ 4836678506005483245771909922253805762724218891136411139729029994542118043761199\ 4128450017021042405456051440251224011731726370485048765644287094023794878458572\ 0015518272154620814630671756970415263685819969820076412948160602777651197768518\ 78388446105937803, 40.058425764628239294799307373994472910347961951990124158688\ 2468528199873793840279769674314242866956994771676804405940157251415095388354812\ 2511053356563062460980585965942420115253056059789106676289977122688050818791240\ 5561304762411425943413973986031990281401086999585442434737956018638544991828775\ 5610340571371032389627030604042317906030685096932868572471790830714559598182682\ 7379099996066371103954430406383264142600907785535097196022242986483783401780394\ 4395423753440802800377863339290507610168641684090878220521, 43.1997917131767303\ 5752407272874342217087609792088225285754043914346230544276560873498859096858195\ 6493422917975284036616406414727973616643027698795595680175645266030632106072465\ 8616250546943737980235954711650676511097222525558241347272311511970592123381042\ 9561847769892469972775500595524701483674070934326288508008070706147016650645062\ 9338751581348358215735656358947181067990116739243902753457296291782971502303298\ 8544480341322127042083283030932779148953560212292771141997511978387681549254667\ 39728369019922838066, 46.341188371661814018685788879112849174650148505260363437\ 2139198677679705888323185795774537016124168336326287128927923827636649606003219\ 2864984991814842374074986096202616436849682296866680587317001755939089049219036\ 2430920529242522362996821766218659029798114515777562229092018978848558798187743\ 4659992198639111398480290386192408976378416907327998160454218824438197237405183\ 9357431205565662109385018037113600953638249790819785578232104951874358949047343\ 3417386068526336605902246994680268227083141740684130833264702, 49.4826098973978\ 1717360276153317827226970223775303862008955551807589256466750134412829734751529\ 4312260624478079668709757143166697805348912710555989423079251582095101539249301\ 2844493518514027288417552840202910584797908081132851256142399461906723440362963\ 5723943055932527409757035878369600003621271470543335189468001684115346692903676\ 2551539210753852568373713604822726452694939376109109785923437016871583759294752\ 0353525653674439327163747591555847836689353799810956586633272293610272657807468\ 98097698049730596486664, 52.624051841114996029251285380391573300120332932686894\ 1602202221759793042782876275464868469301791900745275987591629061324311607479603\ 6505877649013049802659337282488144543293212662359511358692378838247363052503383\ 5184643566058404929310995359570420763855140691997434478020161460785200987054942\ 2933243420921352658047831513419307306902983936924372263916807828236352913511391\ 1863556688747544937656252555540008790526042923151596606484642952905217877335472\ 9635535905498688808303211062886816206222759779609604009372645413, 55.7655107550\ 1997931168349277346183063137533975520469235341128403207444755590376026795581953\ 1736320017999503134765884257121981020700744432576067303682924643891358149537858\ 0379660857131816378644285657271635297861162100369114759225514747316614943372651\ 3100613196607160664932303758507715490220913468246227853734409391251597579578354\ 8879400709276152777451792810604941062382277241808291520533038794428949190870562\ 8941744712116460059984778230127225134876389048616622231654322285343855207781662\ 12855145212051578647900715, 58.906983926080942132834406634615685585658088855756\ 1546118776781233761809331445242422454190807948006643119820588016063349435634536\ 5116320507968120488136477797879030231163620958603591488610533614578199601436659\ 8083962679651836490025072629918350021372219256034675930395391865645962878083372\ 5071201413912017682932019192284379204113019962407990611864656344095810468664743\ 6304938736838200153018305994483521615759402631795816077515223955583985588698887\ 3334204504838948925389216670323225890942925814622162403354506422427, 62.0484691\ 9022716988285250026465095232381538376625090460270166418980908329662273767270840\ 2394186582872333815324974313707027953357214765523221465792024602871931501201686\ 8543527852613710072594971418454104409781076132798065371259320231295132634999023\ 0470406368810857440387554856233645912793023751783858962549883833876449401202690\ 7116916351414977964529428693727728750404057634271489047887455891207478792757479\ 9171962034453218416502806953014659814556841347662165386855961622792233582265213\ 73864853085223128348851431119, 65.189964800206860440636033742512316225656567704\ 7768386583715469644993478451428213532346829027972726923938444634665516780421848\ 2136034069213904563882948015384900818254739395102910766093624477567786752699244\ 9806687165959511183756341542039112741802809684023121857091676767977902089181259\ 7896675398930454868737793709411345268036890612889572038971420595939375932186930\ 2003176412913979158828719183595628190176977619407015948299206508011769464214134\ 1551451872556187556446838453443075405837673039254742795567451444723417, 68.3314\ 6932985679827099230383998437803684762122272681831988360808198982359893586668336\ 3350640667908178749396035216398866487677073640666094293716071753988333816130309\ 7692341194497283840972535264888956318446282121011206782421886676931208494539931\ 6537349922127900803159385671468672653432185755981752012688980876644759480829828\ 0891321093717787818395691012545065714358943935204845304025307526757591503900119\ 4057776193533432790923240313478715122242575762032576693382711567383116663783550\ 24600145878877235928714403170857, 71.472981603593732825063073856129700553371893\ 8257885644651064317918132890805514397585822524999633467231757764963815255984219\ 0769520753337731642509435962693770297436740289142585079157441404195492302481104\ 5067395124200260377612866880458828858682644665288350024990840481075516977128636\ 1480356867530901258299066399007202628599841784336478510505356817034596555660552\ 5535055020009940526057309415670210185679142450737560413962717583760834351130164\ 9685001249624187728178333199202590017183826145705706450239351501390239244, 74.6\ 1450064370183788382054046933555420302085378437273627621670707498218108466335968\ 6294314979682930867870436898987732820993952247918908809563167442225076058529446\ 3866142045230139851353022633795061318990636391969869378809161501954735511499763\ 4018630890324355680102435435981248381087505983750793112434971515838517363627719\ 0964062817454695890740023018396276473392698549601057163085099875633234921341931\ 6428687940499854732104029579883949239927644199511285488436936640920864757335511\ 61826041081862797637673946497612388, 77.756025630388055037739371891233693265083\ 5622161383561708079675348511462374141933529942010780365167585823959916876481334\ 8367107454701060805090843594886378691038417193090568937771838945451133489357940\ 5930664959445372862208202674371410418206366201290487046663731016759418469365335\ 7707200820699879587055111993852368285971205343319502411671502960943560502883233\ 5539740563741752811096920939010885203610484332983459055226961703982831592219432\ 7474432806404018205243958073120545922896702051565696214542192793364391558607, 80.8975558711376278637721434908730528568747259696617212929713058015689630938725\ 3112697433928505055347416640278400032911035463188480500269882643310974510220428\ 1603396519785146062379119085371346741829009305677364339269310633319897001626515\ 7706081296358241055078645506570672533184774596897591550819136951417710314187939\ 5248426221151284817563361858658513452450953560443853518162775783480657094089664\ 2389787691212050796027046450531147720360501768159269092728551467609244420448597\ 603496391417192429464174033328841078042, 84.03909077693819015787963834799795512\ 7712589417405545882057311752958760038058790318386082858656161200685263246574769\ 9854148177909861808883508697346894535037668597887231689785209300896808719240618\ 4506684333570394539956558199201901264476984334081682459545800945235075091977175\ 3366141312839152115142822692460703373041904637398550935342441652235679730125120\ 6893671829154041699294434029737100774105458437288503714650765114357811099207078\ 4517885048150892456501936701839638637307460485807348476617771717852299221751353\ 9, 87.1806298436411536512618050690486088486721299464558432966743422930461018967\ 6312989845721815865405362495058759835540663128451059386440766492917716447199240\ 5117622820768277283596187648901942375941739349424388300869112960288915406219178\ 9359988309173624027381704048832992794944662801330343825032597632048064830665690\ 5469769958597351729008719641499762883572052377165251754056845058781435055869025\ 5438626624702250928170108460391711158069122662252550368200250402582380495056865\ 075833083114764735436380442667858688280436, 90.32217263721048005571776677762790\ 8914486121572577686774988934872707166935752913352491461238133766195414110171983\ 8121304197157267704842256911747294362732453433806132603471140074108179761058881\ 5793425776766998898314678525670680589085424384799286675727130153462440693636711\ 9844858133719537599384300932951399562869710773528713981113670312909021391667705\ 5202842283023390056869293599267404837737657809946460271065652770063653712425459\ 9915013733853968619096059081319328652858882197141309370754232491229913306387181\ 6496, 93.4637187819447741711905915439809107573239400629177724916473262853860162\ 8160993265662452395157197130919910476514995454186887885503964036715193454862229\ 9314157260901752024839758120751662506295147677355862938502346279143593606788612\ 8466729615527654163822502128342871159759467901643340217238545948393926391971635\ 6233245181277015741065185363105286465069145837943555009644207198364868959154513\ 9250245536826384846405339473748372624555117897142951911367157487999917465000059\ 669647509733797629866585525670273436927101640, 96.60526795099626877812161732392\ 7896879425560391420861042346782127840543601249056130519751814628211044808426347\ 2506903396963352799332430532683814314775993564765396599657621719613489205957811\ 4824502839550868065761148122537985266866452141244926776055480521187968437902857\ 3856981251213895059466341516750872821687260202763890860127214709176661112905400\ 2319606761717871319259812087522698870063712988691043025304523670852628470842551\ 8929330272292981602542652878408343200711857840901931368566771650821229836497028\ 1452506, 99.7468198586805964702799790001345778010399295377510470044115168338106\ 0921650318628569651932742956999909599191745903012866146452506198267251906437343\ 6016076929482947131233916334951979009853369102862485480245766659723239540961656\ 2421789349083129973140094709509668675239870832108153244373355051778644337326201\ 3787594830433350549402817948837883090529161338704356593749163302635261222880800\ 4310362932356481440254858175520289693328051506938803761277848580901918514102928\ 075621144023435497410680005565585679932786409183], [3.8317059702075123156144358863081607665645452742878019287622989899188393095190\ 1147021411287475742312672447473309723985960770829353934295074637568330729735079\ 4735438861225160509132931006767547866909609827005531333591325817458820342001604\ 7981393559612418413755015204638391102502473564676757354380406579488962842425684\ 8195219258311154939458729795523280094966950981518135894095511597656662721360347\ 5811303346789185298265119840744418558010331428117471258576070601824199520617810\ 7928207121659373151245431268378199071580, 7.01558666981561875353704998147652474\ 3276311502911313896055377826985496015502018663072714930179466457806607184098476\ 7118820251703769720326548673375642560309232023970190386543841800591275430452193\ 3739251982555262436669029781197904886956680209137969735352063468570531573321511\ 9314520319102285233838314378708310653707771892698338442528593849268023521517575\ 0351706607301468752257196381492751641160465801858446732470375631515222252253290\ 9316341955942994955284069186835371024571677654212064967981019103488383215631371\ 83, 10.173468135062722077185711776775844069819512500191685556114650068115787043\ 7828838738289189326451092887186342761630141907876222556554833234669321090605721\ 8168528591806721573558715288661140459601357288061772632690413620346974114993710\ 2448458282852234397112663902619482282537075451615776332517492470995144300137622\ 2367275552047498906588525108527248103339212434295703713170640232679461685419742\ 4639116747027120021756263994293623883588276703080110170267847026460626258918025\ 2409374523181212620876489733212316723075549, 13.3236919363142230323936841269478\ 7675121664473135786578547757152649656706334730478254711901794883995110944535805\ 7000268451481978642541401546368509755789722112502852743021277168603949713032474\ 5046889074478663486189984644402291804791052873631269462260617413064839362156208\ 6151092297984608597797531648541343237354725041279198031517360471535103123966856\ 7163063037566350404564589488862448800497665167041427340089030966217473337126147\ 4670161293725324721709555043486045127939598063724087387105258949432249607174655\ 81581, 16.470630050877632812552460470989551449438126822273125769944420007944442\ 5676407438990029314970294001544659039802740234283434476584076564859217706133433\ 5159577925291125308871799248825426142883713209821326904988106455032992192179874\ 4263765179187836872403229620865399842111214738811452649755290293333088273256715\ 5818353882574701664653460854920807051227415966716155617863189742652760183021565\ 1983343647497245307494487697413258352152678119380016301628875480740658489244440\ 6339122117233973775434214364120499090706676185, 19.6158585104682420211250658841\ 3750985024740266188054464735144476447080110172729827148538916115751769896779672\ 5446148833952670733337955890767096174193012715265947519553741418696730317913690\ 1782852836610894511226000313664169037849550583785849293557173909881252665071411\ 1129445020504445139094835258170620209257395184675034767795832131791170659720566\ 7617758115749910926514499480845379866289962865785937826721364571123043826884150\ 6332809523682328477955663921295976453356420269726536020675807290001359056077761\ 65303580, 22.760084380592771898053005152182257592905370738073226872005077130254\ 2735625896641945703267023002011205458992559313973517639748544633390527682746620\ 6868443859569938462857604506771878723323872682255755074831105906814683412381382\ 6324944538879137068183697362253131476386468002069848277096814094078389823589932\ 3697380120475208459534717927390872389351838323818365777153651554762725427005414\ 5781958374275460415786521816200219997941706542580157242440233847133488720679370\ 2103545625981082780428376771065257327231821387153, 25.9036720876183826254958554\ 4597987428790542703136724764136710449434505671416316505888147226836787887124981\ 1307040417420294816882799155844275939749558981998118306731999865474455453558204\ 1186633518978612933034786808008693675806632039461178787547213723409926051078283\ 9625660263393758577544423309483021787042495278523333997280762506852060673537037\ 9197777029047852008955466245920721890957810927440646824336998144571336166671257\ 1327910432057468373656467915845576736521654135841575878225290969215639102976707\ 07226651561, 29.046828534916855066647819883531961100414171793083875666040125573\ 3765783955361962093678253380867689316118411037907618959020107005407812044770175\ 9613703533530700250427316132235331312223100787809688427364762877977102678430787\ 5430386010999838151515749829678635642952957871843927638868736055604708335071018\ 2572364894082269952853176564748041462755984733154557824838581497968931137754611\ 9708170105745173351501222045671157468284663379964992979997115479433036498598647\ 4537150801555333690997671825659612447097995924122303, 32.1896799109744036266229\ 8410446036921905286771101497692036035465449720252920020026614512664228153970107\ 1622797833409452554079880467173741313866360721791030060921618857695298647619399\ 9181452834334744059444960835054046828611740724228460609089763408808410515030894\ 6253852571124950965666061384431702495545470338868030658648612913158832201454896\ 6895017385396773907415886131436481834731626141484999416202005095794411873816913\ 4027324841555012743318043182058732697852287398556650761530932581322326272255745\ 89686280485410, 35.332307550083865102634479022519014469829348859877965259505229\ 3696046759363143770100347508409239741497149025011756942009713720729444916550774\ 8031714231849110261383661923299944976767449829075494135052910238391955097482343\ 1387450100123263363275485557218642781939502062440637628361790252422942065293262\ 2185009526939937077338663196314951030179138574467907854630500035368739186623488\ 5996555577009490074284251256180577550958851480058869557232870835205796288936185\ 6197043354591093890259956888364744435098969098008811201, 38.4747662347716151120\ 5219755771661255497612689214613674271060785101617366150762879331639878430043423\ 5660165275053144223103289142733989714031372384658379300227882483545562549977352\ 2038357889299395392089597244220817060501219936520129578768630334789491754212454\ 4041193572898595455473124645365009479595628904013460793512698321086085181747438\ 4629121697887260581020344231134395704540543250699026118438879026711570225959654\ 9587261799371760067142968333165562239568499605837194437496819981536869180596504\ 83436153574178594, 41.617094212814450885863516805060289200151205516028388534285\ 4696717355879542325430297546829828622661046068366293018659793429795096744840342\ 7891962785109334695170756841766274823975642715429600424752284615161728110764475\ 9332898265409051156838641304093474534886348175604269926075540305331650138778785\ 0092046712116614055052137832784551202583389389329979511264465762595273980959706\ 4862578215867541623731694609575838941582560689201210193250126368181423377422801\ 6200439635821264167219289933090831730494321066025300898668, 44.7593189976528217\ 3277935271321214421818367022549847169807529030334648501424451866130043148826969\ 6854182409875342170783975200664297918381635316828513918543991546079965589085974\ 4180804004112027180619683967550124403633788654483484165492725820622444672836031\ 7795125185499947354990890912629504389264737439366290410045152062262599238937846\ 8437768354543518865025084813063747829648887960232208624560880242400820106771200\ 5048623366716831308842984447339488252348311010838677939516067234938066270171442\ 96146611379981640497, 47.901460887185447121274008722507507189465535301957828535\ 9351481714151373055313599248255153852486898056478176574639502427375397867317616\ 0976397253538404573125460565261051536030930370192822864449147098760636212425233\ 8159894064688992978729669984704966045661960236184107625879050970035803558331451\ 3396381138394675409856349644504104578314661326610080333225489375584419921003775\ 5827227939899392698206865525727953479734298856305983589500968488212904413237500\ 5485963798766642478447517822987476527712725682636549057344906, 51.0435351835715\ 0946873303463322406072863248537382081368603368240738292513466632428730738834243\ 6732591583702814143109223932014178316792802120986485215977199890495836411045205\ 5806830547587830242846630683546852725877683258689381086040400940027954958052468\ 4999073520518816635879121294330461383915546210555968585123377621909159575719848\ 9736295537620472824887933363275022970973869435490941052453804422677446496674266\ 6748763363754706263212656206893951206184064484269308018493545807076939085096240\ 88881166805378488529186, 54.185553641061320532099966214533888937864346884223558\ 4466422212086483356254809577306970210914301562096555092223944584016934233048204\ 6508214028793398058779975108430203931491430563495652688275214248103609786292188\ 3254572063704904322970328813167408423424231669754138881303932840731275727261925\ 1186582008613977795884444340230793598213542122028269220778693692878828144824994\ 7290082907528442961303117265318319387151552128194856104383395402362229821443821\ 0306218874388347627404218180259049589997332495952064521803940746, 57.3275254379\ 0101074509050424375052534918564187373742515421581109399737200548403490614447492\ 2978411874782445103295190758118064952585548067526071664258389044939152450227079\ 0060480492662987469287256357520393663726602676738112465735049151374828771814497\ 5226620023150255600407299941429359484791196831235738476977065001098738613128284\ 3130935324929489762989759718628893979388610090104953645382342964095379094875540\ 2690469056650605656601806792602200932325074309919938928785966969188537645179077\ 29148416371188141935161318, 60.469457845347491559398749808383149848635819420996\ 8116832694901749522447231292058618602023926222135094062497087819690337765968030\ 6558637117582576086727967004942020191170175124958697637195910223668421068747330\ 5197034789829035413851872356773030610294936643137722129760024529294754511955257\ 2298436483129003502837302166535042775961813857259050803154825804995370874313151\ 2933142754111062129258247722703034802825076084430962858302132669802108767260207\ 2761516475565139334821362018894401906285819772589488062322991937755, 63.6113566\ 9848123263103976241787362606002869218523134601188005677055284043560862035724798\ 1974955386463600441244747551353014577494486951467171995802276643631148115748938\ 3073526712883646801815837168294434728067440934427302214030863536951511156105580\ 4574671210802594570112744324805778141422206415970863592735101650657419968631079\ 1614469470436283414255015702046223530875915637945843020057368603681975978836005\ 0785384673492121830030611160624938316096446400350111235995438832969849908696298\ 27165173205865375966730546632, 66.753226734098493415305259750042396613199101788\ 0990644499072154266654385713044916705071206312210901205739289658260032948509348\ 8044868101738002545561672941315506990276767421785455746962682110114762750143846\ 3851495912187444857258023323210967527307111789743845038916474215716029605091720\ 9723872073379325156905609753855676232894898004878199898987331152071648856481305\ 6123981571098686778619043559872322491093533308510876629767572177612450998237068\ 3639933446238792841294665661447865688134951389265045821525092087708255, 69.8950\ 7183749577396973053643549981188025788331273032763768073657765686393275790203922\ 2069379609922949129382064385561263094268665233661874909275857045641247689938754\ 8950034142251820589532315107234566131308655326216138334086084656265006304623573\ 8365333375261741337941909169509517882082018061685342209788187871197895459691109\ 8977232029293429996760133549238570874467273159221679987911189209886433753054756\ 2052935415386851304022932974957042991041823887618905204744145507310785041176156\ 54680170086929443263504853547582, 73.036895225573834826506117569092048946975449\ 2932873950383214020910797367775347272154876513829703348857496858081743406726030\ 1013294913568578755116426135058247314957467091977986092317935009276553064258546\ 3987999352846429701593320624733073308134014768911659245680262102391620067163889\ 1466490627036226425787053522631484909115758337662552036234277201006633254274162\ 6302166864605580120629083525413999499812284668888925228565159574854974504635935\ 3668428397537890472996538822845313861888869597921091502306714042352031153, 76.1\ 7869958464145757285261462353460715231201091394723146404802976342382762150600887\ 2136419824671314665304740934583493740102499649075989817337072864290926186137193\ 2633102070994568565790530621113636777462346796373665812248463819570383259671375\ 4517154449307908585225884255266337153072965585929377122771246672698813797645478\ 1298434179976837584705454788350910065125602989919136148983049796172513660270762\ 5394347299008845559942399608465724376618973139279589518505771667112493648158706\ 50504302663418880851211911983576036, 79.320487175476299391184484872487691436314\ 3534687675025440714413883607222757188419512865704991818314449159330143592988668\ 9343896458850734398551704719731712656296123563180131854194303528500631856671032\ 0784097474780749735405274672501458097920297644473656072807003382176907884280230\ 3112376236340791697931703023131495506885110968547682759796892066186786060673667\ 6796000721335802473243960727696390787009023293244224758936644695169969311832650\ 7768632990202661520829644398309941952926708229980949195662343268299196611891, 82.4622599143735564539866106487812148635382316404169579718378176936435583472553\ 3646438979457489068859797478070319430571474536216822948283785870004709117235045\ 2671659790953641690610578990438241585742773721506540193315882559424203324435053\ 1781038473217784301647013640943612567994448382090834848369337934016773769541165\ 8945832731043777741339170085846733937025300817638139830110405565777330292928553\ 6107226208538957850447885214625562689719867239157119802313141222891646651225059\ 829209831388864944377475137531167511646, 85.60401943635023096594942549338001602\ 9886918083897130003840159055167513706750593048294610545964301305235404117183577\ 0443210900810102674903905318716540388894527290651044934053669947550223246260317\ 9044825190652484067126349257218438830360234152990807188174502177339384422061741\ 3999445323648493667436571759139622642590079101421502674966918165260636171523131\ 0418288386351397585281746209621508047633606046276222799564341593860122475235753\ 3933868338676009602307444769802242841364679244299143133907607142769459663407864\ 8, 88.7457671449263069037359164348537968682599166737580051699073329240344611558\ 3720441845274994963392239535317028140508937555743104706669915443721831275320385\ 6597731810416630992563788940132993473376284531445643684386011575974602848943375\ 1580980782326800997489888055769815667608348799829877005956548252626707408540554\ 4209679906587393116358524633547151067728852981427004668290532931174000927401001\ 5086847298086912515545527707618568114968267376936098875042371399580333789241359\ 275680389106874875243044379440159751243241, 91.88750425169498528055362221449036\ 7452443493420992638048628790676392581674733591171317173850433601270009625648954\ 6367891271192066551812846191974514321308382777730634619140235994855409962272291\ 0730337145403679203116119772203260337125251237957444450427771866766248481758777\ 5612610000178006876931151166306215024690995866317284509550381066606046414545347\ 4138414468667484767251983284606735382140082107308234505401433737661293395991490\ 5476729504639624859446869691583597410166056070599265040434478018401272879655314\ 7714, 95.0292318080446952680509981871740962601152871131881180376784555415869123\ 9567892359552113579828502755577034509031902882585528792873978337839544487476324\ 6252599405217971371283146007657819862377548829684978706684694109037018727202493\ 9929926791935333002082280414613814487683678396721924894551675144608155177130592\ 6636468366048498357641143130189027241233684743521352692429360108665211755800571\ 2640140303930686478983185336322839077786594944709177300329388799859854675449606\ 809141472142152865786419537352445537829409272, 98.17095073079078197353775916085\ 0955475070225963138980045272670428540694998299039327852686543839920041630538688\ 5387553559486430295174116360895398277216270851971662027109239302978890833222190\ 6859072049365734461044798931288378450408762319446815633715506130783747020592719\ 6670106136002114200757964884108003632355997879659390234701792679123183019236441\ 0045723460063947107169425093587711954611501414066968381635013530820716154989494\ 2839998807459981561674502991594312415898748574130051356659937433991049076681729\ 7317319, 101.312661823038730137141056388651896218380203850639234809449099215990\ 8704032865312739837734408982716690634580534134133607028081404662640045120963165\ 3895363484190347153962563103717368871036034310449675156455431574204693825675159\ 1309839360989419143768154337411023055592737862089860154345532435682146224087703\ 7929985641395458759714649188168774233931043309897959907820561792896557683325879\ 5055720199834340579841054005519167299566291175874828481923824827535814002315044\ 701097122767656199265575891581562008676157190440], [5.1356223018406825563014016901377654569737723475005509433582572574599819661079\ 2848794236819728745046287832778476694614527761070900361084442960988689809768231\ 1671488615202747915487019217230050536373919816191021684080403558714446362715345\ 9665490656885548938460982500639965053844404009110187418438211206146535837548604\ 1214388269220509582441838852749581549166561597545993224571828482485567028814163\ 4702512825251051657548480100912931249145369240002927678966380725609346697382155\ 9309500790153194042969157059741216063629, 8.41724414039986485778361367615388467\ 3766992080498397712585533995263473049496302564398049028068731756441985545341326\ 1072151174768367391863935947424926208008257312698603444178087996438079284903649\ 1054593394941385822276933633753999036369917643616523139205153632853958172973404\ 9113025618431000227534492254908026628884699420569334948040424170875045368042443\ 8074091625818096524303116295950027388812270777440220151161611375327405425789715\ 9936876922911483107661756318628120330031290004369644322037902533479618768589366\ 23, 11.619841172149059427094144986755334885262709284345313793669842066851890657\ 6139634762964901847256715528756067829599126007938765441488876019879069063844592\ 1896341588770909602803343249802856813989375856317248384851375015215854986526587\ 3960333820458866766653247624209184568937875411536267692078355089212972674267897\ 2044918178649044173581463719213567894868101509200307033792729657073865952796300\ 7700679334326955312813100697112377639480250091843017644713044412611933546774530\ 1269121408230252730311665128906405974502635, 14.7959517823512607466614713202279\ 6527257621004280731408497741645837350023516827018400691390030275847299990603428\ 6070176937821825603072200301072751088029529827559395955840757393960381387901553\ 3963332436788349004128287240302941094127711985624606334156054485760781014526280\ 2501886980976739520726566516443034660073947367488237047640863382115532025029209\ 1490165178583122559507609735140387853695350775033230470557443772492612498282318\ 4399441107990396865579075451979443139807068470131931356843894636983331182479578\ 54367, 17.959819494987826455115142077253733177564682223398599368253804582766447\ 5725576324897864573066331656067929668472669680518697848918705475159940068910191\ 5440889740721765503599809714275361787111301338506586396296973357197673024051252\ 0841851332727990681983668555364279292966469628687167688509394624691191561714312\ 5489043739962928739828570494790036932569083547897229407189826751629098772067835\ 5376690187431732417894060391870620340488682106708416091701016032372167372633070\ 3634785523446699305315314205717233932798865743, 21.1169970530218455909628170827\ 9769448969683855934853796770605589240798968799737995493249983368316802427796119\ 7340247524612510506863099557369433224622024220021053990236914383128526789538889\ 1662747073404061395777167705121552432269660062190725923039391088141304254359160\ 3455745373602807401866670795712849066314976133260382904940891315948900374517609\ 8172846264383166242634234252413988524417568312530516783416982907031433456947171\ 6330581557303234979264002781837424152677514653728000097383239482811783441594322\ 83871696, 24.270112313573102609583152428183409068963670207831666767749477450343\ 4525106546680416440984485813026927672713211556768860758421896391306402078544454\ 2052965580675434517449544174831936709259255023985331179861436290881436033533668\ 6157820743136687264885950409144147446291950926335983026208897411799646416933294\ 6104337374112986339212590561394549541515330788021982182854011860302267221369838\ 1837199698316742928990416779320710187776772962195185313733411419172568926110392\ 8189417643321495492615619846936301799739051183868, 27.4205735499845573305704881\ 9139516056477569449223345434405766227604465111430559826505532045494561423766048\ 4652332734398676251637315216314303568233519835695082435288808391036817136089530\ 9411171169768657760614043247247902855978486276545584267962198044180316568572503\ 9491917479637795837148975444623553998293007659827142079245662212914004049804497\ 4297355268505432914300665007589003547085646295529292386945251749933703671705140\ 8269792322825547888680371298099927661911140749728022676442848466346215352946321\ 77543621655, 30.569204495516397036604063539306273672496414998402801376423700138\ 1537755427954126681346845690900964986831705052630043638330481380102943049805560\ 2227936513571211047947659281814357799223136113078621627069964907853103564701645\ 5664512955147305040026588281598040756405388672545085884172663783073224228977562\ 7636096348969634034552478148852322092735611065433687639176772929481621501590481\ 8217825327012501448164259847640564473556884431015400909198847296244198049116875\ 2039532401796872403681030389032832981051621938153444, 33.7165195092226999219591\ 9842521807642501501416814688329212982336633533288750005598366269514134281933541\ 7070084466067381810734830597319219106711008536605813456396014723672193318190903\ 3857228099360408123126256170183739510282145703487455126995743883692004972680311\ 7726653307147573012167040717908619891021337024981013056378437137286155735681100\ 0944240680912592767606472593876575984980402103915644141677259220925575936981056\ 8260983261936423692466926384650293024730454671519599686908953553261557359718648\ 24141943724525, 36.862856511283809817518162941365715627668846665183767310004110\ 3850019246272941383489201407716679297476780757178027269705012937824116231303371\ 3202091113013294511406053455226385801358837074144055001141442280926311363844137\ 4611532990831794763794671796689063861973490371251523291720620493583637192084747\ 8018034006901199936519999482481891418888066455646409745833571308543528095623720\ 5244452555635148709118311138845333083766964978204943941033199817260687036707205\ 6692735927327336916366600693864975975577629360576604352, 40.0084467334781922272\ 6189500656591340916831551220683159121006625787265677645387954340800182903642913\ 6669850603629122416676728821832174732273383581801361031597819583123959306173999\ 5163283438150357198728968196416736044157525340514500800827653829969973789008620\ 3762910288551982592919653130485363169847343940960598371067136556826862925833007\ 1028074535635927606722876085072350386435903916817860991975574060048647375291563\ 7083119578387698105321519855541695675391601527640217722159328987585322037153526\ 26208206800177303, 43.153453778371463269900135114779129474938815697320121503244\ 2278332606752950276667734302614780827086834317786470898724269690255724809777417\ 9894037227553308997960435465256354772616895148332798948680166300047257012620151\ 2186104146216080329142619064275957317138184032961376785627384461808001751960822\ 8023137455158788993998418454551608780515377629110503600174796797941253805291271\ 6254326886648946690368763530028804126119211188608179659468451658203231747140385\ 5422737167928725632599621083508221149932855665787328984286, 46.2979966772369191\ 8515254548501396507507998105304326132546233184295212957302022721642650747972962\ 4416321352479438981432349195106562703090885364581680935575122452451248895711314\ 3968702384207724174346110240790563393246922158637677359234459546068720136932546\ 3808776121663237441872790027624637186830442560726578636055946988050058483963627\ 9901459284037152053774269085806244686058563840293218859500550164387930364383136\ 1562756646029153407484541250676168189933483986974721717033103144848985867129664\ 68838666904229585068, 49.442164110416872731070543201950280197924119880477411372\ 9517763557637925237574804891599984511974483448395349641744279978227750141087976\ 5740371080283296003376436900123740046793740449398646390281650771159675793799727\ 1253271594195276997489016604838991795929360164800297518428604033747768342345142\ 3222444396996683633132105038110079848992699990014680209696172954557341308277739\ 3720351565050032812007791825751584124169655875887117456013399145918015804593774\ 6762216840941280035754715376571329232599906668934777983287729, 52.5860235068159\ 6363176223550300721943210321092155672211294076297755761863537373406092071537895\ 6515884544874130520579000661466422097223750028943174099718215312429730335608951\ 1439751663397726270180356112047559224294627114834549503254066342901855780942253\ 3071460198972896220788204843382132154881058230380718230397423152584730062420745\ 8570006345712792047156485509690899862503550185268369031582256350446128418257258\ 2775992920433779529585900930126458217853110047447688963639893076455912931790065\ 04363654574760594287079, 55.729627053201144085573014119283772001169519208122922\ 8783097723197803920473077994472101038484571658089907348714918165921230862474364\ 4197963289552409281550097685020860645595783393378553502171839507699495737235228\ 2714701862864430215891045548030855485560463137753380924901181148312932056088977\ 4510373895271139922091582079977163141444983105704997637988463698944219230051253\ 9967045659118821931327525847774221269238643737198317159744828748839833405083934\ 6109032353578526120389651703495580027798332645804504279360619579, 58.8730157726\ 1216465010912045862626253221029648264299740755658072325096799882778635372602903\ 8869572081545581955586984145712195610497110196579346257565095766954767893410845\ 2463660300681020612366828761408848079362983199115128416889231551768422446364621\ 5330317159231015961770257762248150755464794495694874539597043571617676337288991\ 8545686624007724810171187126399311255859572820460637964470106001856753711113356\ 0703514085669522208916734807816697839238039419950650747573453582220979042783402\ 26709018750338585937610366, 62.016222359217653701902244080246357273372534949499\ 9526603497255270207328675215495925732294938169102314310302520520006010626973479\ 2939459999919770220250534915387156914503085972579268479673546115232969585639622\ 3761014433725150561387563760245431463867916707058957774501852737512121962385227\ 8156112366184897563258293455080598865871262682182297805775103624049274137078964\ 5474157374013171192650994127119738329520482041210604638080184374475878612653975\ 8359858346787229343317900025900089683165116799950828960212685743416, 65.1592731\ 9075779782906896528177022579860072587234680612383153613691617578441720403458382\ 8184989850776613472496265316555246069698280165007972255774510490224490121786377\ 6972007446666968353038448423106505538559324951384278883968173379930411807221529\ 1231790704185329458044009382691556063820621513547154828816182791767164027075205\ 3888380791149161877267526997852752586153356511588472245010563009760763267109718\ 4333128787830966688104125291931723669752497796397722094367709056668473105638009\ 73894192478167681729816804691, 68.302189784183460399289978944662198422856809046\ 2374604677950224533798424182046748848405720056891523543324836673574672532727535\ 3295205305179998401683169269635587061639054014601724106102726788097971254458202\ 7540931197565156872698704332725706753980615238629665633006431058290160571885277\ 8553814569742378863995302206634046072482976277642490553275498080946546865313837\ 7464175447447945801952183894430536673771287354910157245673427580866901672980462\ 2102113444471159110584351666551849933665982960126281302073168567899039, 71.4449\ 8986635785211406502653882370582279872063346227930506939427719355707634644118626\ 6617538357029859473556507075106723391412099367257438293225908265554003901779717\ 3265753493242528357905504645850814938302937051289586428359713387718425226936576\ 6941311331695495271964343131165627162784947638972067992727578810105135950687771\ 4870254041892513606101102416914986581261434070424191267259097615574340225953998\ 4642960556763543156718778400392938205058019983779958378051693042710595378975120\ 27509122943528925452183452346739, 74.587688173602402406057514474156124853180278\ 6509652791204174667723819362391499179463453720341008694813465874000841052520961\ 9983138297440515386619934594121765652209506054950108484276090631799090481457631\ 5964682423247648275136133733767716831627625100428289423512097395864886608755430\ 0809040300264993379126128718448397685119952515603979797216090245906377406058043\ 5204361112314313714700211866813101912668224692154505790009142109490898830451053\ 7642878035387205023046784774744966922407905005747630529085541807527882102, 77.7\ 3029705697890323160085813720054835260416046112796086591563362083217685925441223\ 1732935611905626615696476102641394912367578973652756653872858196009806647065984\ 1944867111072623891610970485548950158196235865962616568050871325159731391231269\ 7175163304423645538170219542591774868156579858688478833092553681726357791734227\ 8862981179817990137923109725474479057009851454364226448593670645722841938986177\ 8974160960091204331344373605053068794935134347604990221371058023073944465051552\ 66115487343637749143339763708015310, 80.872826946244764614635062206872568992517\ 3861891493358256260538389882543697517327545493470207190606807023649369222300545\ 4739208414106572479984784806197532768257734942215058628022967649949501531438875\ 1017525535544544909686006256112758500704849880492600491787599357677138532414671\ 6265667852275298358295636581926456744921721198710504931286202392135050373393549\ 1511652701748127899179443238800829669435791649626197095931055562931702883478623\ 4117930856475870634613792084481552919612101317134101879133569546890873207071, 84.0152867095461672630269690076884517082027754208933128605425396989774061195941\ 7702789217779821570678401813253237903986664153476450933256166315507360939933015\ 4230356877413601202103632139133093428763124593257199718916256927883465636543880\ 6447425826998676755530904639076256214104711424583775311201057375668079179920470\ 4588851985130738236818309968724084207864194775300193913580023244892066234258247\ 0398884555522353372219880436202226705390881184013371683725243218551732693145323\ 947252098356519592408936923837256872403, 87.15768393520335146715959174509207572\ 8301269714023060060142600017121733029988389881075085649510590499365022974257648\ 0117827565195411855738647202908836078122003823830202899999789647324704814203985\ 0575547688180319261910038317489567998822492587613040306993985848016488173276208\ 2339018702403563551678926239516647944386899717044274144985066160936766001606772\ 8282335769960406699485321982638794409249721345635122971775496071337361464122001\ 3894059044154990330420198667504561461504028557306633339964899013738113291104600\ 4, 90.3000251545929203898479566379365159326366355273667648371503893219444238637\ 8786362590452504594892556359750490987474212938538067116062002280117631850218392\ 0833094303609388820411117114822350741722110794905157478642311988385593293208887\ 2344642959155642541236862974210681944768483323353395049094484900441962061124762\ 9203591347706525255020433507141448013605545226851015953799728445846918304083161\ 9686648374995255196236172117704982287527914595416473190749017959789885740094339\ 243851070550338362995879158012187805573614, 93.44231602001112581574515416387793\ 7320338731110450015700558817971774673018187774245758379918574722064067624179943\ 9228637990955974744528545293452545029275166991343223726537183706804357765998916\ 7224504070205133352345973770676063267897072299658986153528197995238161416215334\ 4524765781640215312284653435667776937953041403170661340037758771812631064652348\ 7190683075543592267775248670589922974494416393247978000318926690567668190303842\ 1722140709327734317218424753764650052787637873943048135498029817833810276532225\ 7022, 96.5845614477832036439690326705874377997724679048241787531352843207244875\ 1049385287193554943588296424200969830942847160510039447511165083724780464834158\ 9666816311228603655503736419361735441826336466844144989351817655021434213168772\ 7988004649637006756515657435662472389592315940070699305907816276601904006546237\ 5405841161850571030964100886443691062753278696707693981751999032946389005173564\ 1927371699998056170301727052734520173571277582355332607884756916100347351111895\ 093324024631344817771372928456897287728026871, 99.72676573429280170694918373245\ 7684562385953190108388407775993347789272874694910386727352221782679684674247815\ 1088558800139331402346639561680487191722871634639182626881281754483082125136397\ 3210455856324060615473107332077039333768426935333891126899274848691062660136253\ 7055454759275707026953509167883625191151763382059894130351874327901566423224970\ 3095443764058980461105733975364329236739486702222653297279927062961088767520303\ 2490571297625203027297033521291735365220777354452381966377110802970624987245861\ 0143552, 102.868932650727882283125812017159428833995651961072461016003091238019\ 1103314125478663336501919507455187557540785763269010407778650107668347845173108\ 8661122557787252623211209992524013034388868673233277352471181731822155514496985\ 6388303091618551582440719975367953447573198268148106688765953899679175656376161\ 3113819582458640476929283956856048732749784567423473493358408180409048392224126\ 4009454895011294511361187630619029620266983049119715957634585841219710158338231\ 647882410808833753070107894205137185064077390046], [4.4934094579090641753078809272803220822155838722900408028958239619269503145971\ 0409872905780945587969152176921986101428008568950973837169226786523228158753336\ 4363425577692477721831528335612619062174324320955254458428171819812876991645079\ 4366574987465597477701162901897834303180402120789785639552495164930363632701299\ 6810056609405812800513372049860359968152127672583922749286802174820177112895637\ 4792360717005855429408996528118771340307870456085446569276209272007904454651819\ 4432108647210147346951627478033492210487, 7.72525183693770716419506893306298662\ 6378159304610791186649328216729645001682688816184504845740695786972777713469883\ 9044229930116870884156104380186413853534174839858255186744728339616274694932054\ 7278023148252037851232387642563080039983634718627728489489056625987171845242158\ 3300622045247459086641562336052776579038704144251518174541081047906807276056568\ 0232379200408880238469186759805694998222493674984819197306582643813878440719497\ 8342886781915191950982135775214498546620843528352766619345621630308817510700272\ 01, 10.904121659428899827148702790188683872094858857818758588758380378541524031\ 2976792453479597144929952894266305665112511453884052037100365746158861041671573\ 0677581467963496683690929138672016076117883420654120824183202657809573395533623\ 8270044161153464118198140011791145460956614971287948416855518709891788629671356\ 6468425204817597831125279700897842181450620197510766927287368661582214138547552\ 7632212361409847003695434438838061991272473757604355285495121221256470646987277\ 5315457254380940078976264606170385299692037, 14.0661939128314734799789656006015\ 6499694237831509622273835055936239790678068662399708995660145597823710286426897\ 8905931245634330910909749441598079204569769697627698790331630701517508134999211\ 7734743409494919813776941527272742510890325504313301243960889945746621444565973\ 2736201702218389640723745119112142785075320392262980598611665213009331910695281\ 1293380494872541545082447276098314265692454709861404327124573739294355145381326\ 6435142629573808879719751021169494404240443535924010801380836306974548116652399\ 93869, 17.220755271930768739573718925060962298933329718291679364784034670460431\ 4225740044388172460068700796899114118883389200810888022307373367287543996531409\ 5939376048846656960227466920044278590979770757446791892657736062493389381713062\ 5630741924207442208939036113341010633133885779020596575729950389561003468341127\ 1991177927921701840954957139991800532062466505065781246701888636836996586576352\ 1739509430360225583135717477922144701903933921933713129782784901600662991232884\ 4250020841233737990015844570803195754203023409, 20.3713029592875628450910044054\ 3504575049474077627828310900472481472406399769752471312034311206721094619256035\ 7802588336109938478889835063845999458289713744241801665559934762098156615062279\ 7629441736878773639538292029868892135353861842383924744762178427468096902146635\ 3512241224404273450251516040456807342605760248154693700686430569943120372341749\ 7456305714675155549060715422831198611520906004498304914465074458854100232825641\ 4750743626199439917714212850345766138913871652639869088691806722174824549424428\ 49721099, 23.519452498689006546451102039118304246350031148238710668426754107352\ 7939208618978883156378420911203237987666500020992676487334212467450587265560300\ 8876234456380138388638341995037689739740276916106433230481127950059694878356427\ 8247615547358088751826308710283414312649980090593171072850347970830693507876781\ 6634821455266108046288510741521231230147099881394137535473189217990720340544389\ 4866367915314194204088416012279890792862509300540184088204967985604883884324591\ 2619131606563855037639272415221647230633076986226, 26.6660542588126735283941435\ 4427355510035094967713474434380833716343936396570339416811983469926519861093999\ 6686225196070314610398218514512975153200336616781723105750774579816771855857919\ 6391853868159268100466826064739039043959411618126701459378811271804920764707018\ 3682689177236263841813295462485054163573394216048279170126681002939305352511872\ 8038308100886507216514670217485912771632280462233474975064454631615691799456332\ 0804531722705008736635501796933802625487449144741146743813103536037401812269141\ 35900168630, 29.811598790892958836810588127192485423819855820679604210202878183\ 6990145404565743145780155015538721364667902030278148397211832383537559667185086\ 6780934593269361061090145939093873938193550820288823510930522020544429977074562\ 6709609185965449455060692948595405113766929447086390738391081031750401311170481\ 9841004171994154502045457099043258352396011025912915451715069581584556736899272\ 9087183650747687435974938807661129677658173030253270798565209594266150772857286\ 1797241192586994556401453478930497758465486262193194, 32.9563890398224767252990\ 5648511000477277068028983182458330416774436300013420899180523883684352187885638\ 7662562589898046341322968484907733925058935944160617581496266841592656253662299\ 3533028728691365578431428857907486489861260012259826018274091485236313899101615\ 2136531952263505083619191170923968588619507396179211386670318737207437202012257\ 1486669259329331362866894603037262054520725371816826591848944061446391350771193\ 4030374287073255570014559846738153908255064994821923228034538512485970939488368\ 54880515971068, 36.100622244375610696706433960532487090843028195067880730901089\ 9427452344597462723270430679485034553177423779638279664093216723728535398450588\ 7975091222597280040668488357615967176826183630470551763745317755554017689741828\ 5872976854066192436288086949634977640165159087497137155785915971784081916012951\ 7295775275262027905692554512809804353304605432572324404480752516549311339616209\ 9532339468108436832921427973232420584301667059639065677297822210823932845396507\ 2397236153501211620168466088484190983039755810817247845, 39.2444323611641928422\ 8018365930600099812761895577869058538639340151361457604383737691529311688618915\ 1613180145180728181065094756619182844810681366347971239327355589467273670103249\ 0950739465637361738586871384734210218319457202038865418727430544393112659912952\ 2487646525919148563401512620235193914444725918023228819112140253794048396201155\ 1744411724379591860154832372123489845114712811105973565394716207426959341149778\ 6907053694721666484915830306317176308573700873629343086145569944106620601793675\ 28140333843495364, 42.387913568131919855773574121092937933222259172622732438857\ 6454851499129872666474492990458866890919713475042215075023414874854086054854371\ 4105349323494040177680650935922009939816330425371077825064921784644549645461101\ 2185352944545906356286578479563117532811695499666131083310135253960639276341569\ 2483962533307706135828631636242037346789131003375902236009635072830005705217432\ 5316570953591187855996939307876677904058921729183607959784700977258433770790203\ 7521191125984200398836491608691960654213391806182042016525, 45.5311340139912798\ 2489404794356205734808996252935873700502990954109846328208575006843006550361907\ 3413816168265852335016148752644931309411545672126432787050756644290105953482400\ 3678110138613398585581589731835085267854016367733143410235211727178423873946038\ 4313490237436868113673872298465666456428436613165202660743791709790924424979859\ 3968803696806390289150573621376172450818630275201042963820268218025538226488756\ 4519093008506881434722255491389280757589212194234455092625802469127010016728741\ 01025312232365599316, 48.674144231954387138787042623576150163047113673121925768\ 6291513328668011381273600124974283680094059996263816578392524187705346297937655\ 5234405909577115955063830970058972241888229251833093911055092271582788418013517\ 9001084933624680955144199883593121145986080513433916609939273286989961052042224\ 2130263825844068037359850560304055122804746371004982037314674508766555149405270\ 5661415674983267657883478849486484197439972642073782933258649753554873278992539\ 3882178270210247946413621708428744312801334821329290878939342, 51.8169824872796\ 6951238438247630468569080274472739488920653959685539124955699421617740710789734\ 5276857749599246115756924003234039708864159370228788119051562328661827331083428\ 8766826237645917484016438185971981053719927997266499728892984806827702067628179\ 3160364287703929326884824357077341737439931191173443822024870006721523262182387\ 1053744016206955164118004254454597544564951685668559671257387646515809918228235\ 8143518737566405973659811221357779972719836556324830780839778056121481568401945\ 62041901374008527154685, 54.959678287888935870708525193138277022140561422616933\ 4830486754312404406094204109268855755801547159509879293139350474883285330588479\ 6810677620570790426623666089204837836864285490656401448514642623326992535390605\ 3791181814596227938760241878428887752218550878204631654988295165943818901193554\ 2398380889090420041426047049913044733316954758012660777748004560633085409545648\ 6829288272247145112275083661381889747314073594553410397779570363674650533783942\ 9150269085401881094137283525828717556857228701248664403018311331, 58.1022547544\ 9559259463756643854451136620706896546453251341645235705828940510635263246721157\ 2114221800978058137244756212212998124840009016349773969369052374657645721764584\ 4372114492569842538741607318726300465724545709431757752919737721689290332830214\ 0052797841426223175664660464641335965302293503825914254271586764431824054045532\ 5526025122174430464798357622004801333384800713530762468958200133036016670926981\ 0798163676182589385353006333891532049889042349263370712784221682600596228770786\ 47308361574764615356949281, 61.244730260374400372753016364097355020439850044077\ 9013042887780566673236382477559053514428073726673299331327495933506548031597354\ 5718036757806881435892984644891596725459251886312145556112601649343734207679715\ 5791177449726731543038030356800593852015880037678906201795375754999896077738673\ 9659452495088369710257178661186539608466041756786727280783190008080844017988071\ 0350277232581739327258474145603877988281393329560262586551199299977494149288339\ 7981529192254981791647973825325745786026162959240961566190082171738, 64.3871195\ 9055741371188559370458635743453621285067900945898246041614421926799713002275320\ 4402152377180803689058531707402271878982547186120065955785503461832824222779603\ 5932910427079290208291311549115537818682371241224332949553768253714669822873616\ 0547946656280444200525319001256800858733070185207302808910602525902836182941535\ 7977028751142955831675530602072158363648569174082934898778262261704387130901448\ 4041186678162427159066529053562885190750706042365760683622121077947534150559247\ 42885617367748792136731489120, 67.529434777144116903778753799000956012043781872\ 0935308180182720384064414688927895016130985482667631856725905212785282034901592\ 4867747845815364177225497409743587724150396924957107669739366108610125408115406\ 1299696360365625270948514845590142709055928490999076674369100322735298858383327\ 9967160048522712842736400936235194235444458251232935805609119309342765902264322\ 3996678886509063922533666545762249010043484913375501615105932519202407733917103\ 0266807257000276057389588315471481167473768655067359543798705821652218, 70.6716\ 8571161950077375473164508597253691936336235793345832928216066402691355183851607\ 3194992375965308623999638635760048911355567500119678993533287751076521905605586\ 4061265602436975660640259208713520301111797624922056322925533101367044069130763\ 4670720239835605901165640457594133538373486475406095278008669268778466630312227\ 5349510619793067131016566375225133425172230160463241920593184135110110485031262\ 5517758726760499291563859725954801338402676374334174565557551309197530302608178\ 63652090529166136930394488776916, 73.813880600680643257707417241218560680642010\ 8408044540250884396024568148943377829530702459823573973765248195987411382590411\ 7886052035833774479816025043875642038042836089841383006203312760732306963068978\ 2290865677169731640549180638749694469644565012899872509541295637819902406435689\ 5896096105450856654013769174537840975109030157027019512623089221081268644064567\ 6854752543916462985347754427883510800564307273194418868020232536722826642011387\ 3206613437094007021597004450113849095105013638562924083383911858864011151, 76.9\ 5602631033118255601901303657652686874005671489423381432682307687339421146309057\ 4891148043972782574394027643379239475204216005033768321211781444054739913706171\ 4232541328158312793143413865041410668995923669964993630135587114323441086006198\ 3112935496533299826049019198375940829870654676217669557488643470572343980031060\ 5067560072277547023463073930037432468565437372707061048059861211365026441568795\ 6257925221109973960502120565851850080518015026495490420561284899386282503525945\ 98215232934812894375440924903623074, 80.098128628945113290609326779087270335133\ 6388317930486576464102730002631750452736111112446903720451375601328217145898398\ 1912471270566898905720437596048544475541560521084771021871923553586742811993811\ 9620366800711680404926741559314387982867308871236786188473021351674425572412874\ 3461082067578884917394859430716379062625270897460142124998419247683292308395930\ 7272237743412260830668535073628714918284911044082148067670077149003309082438593\ 1073589813506112077378002252799033805289773997137624956593726398834007072577, 83.2401924707234045677299253948177048637336221570576686039454908253213926030193\ 3860069920477237844728346719827350233606496725142134348528333566929962108772113\ 9262557482012675224781736066707549903224345386462501070398460831509797995947698\ 4998719330839036391832113828700342643253306295413505952306471451231756813618272\ 7436948906120553639945851173234659585140362182223072088695866462179107566185379\ 0631449573213095837980336862667138671660220589952315475229358318480970006721568\ 766280093109750331730072238150534343821, 86.38222203472871438971721650303416308\ 7303781743819796460192850280263895863816339533241361024132018825270269892494747\ 0547830149940313660664567451703809113076911456856250710072556612230617205909312\ 3248658162237059325376992963941077302293112015976103796042498098182383733933246\ 4075856379042602248258655624151899107913813406083819760275037480288058628470234\ 7736809778720191328163450604173199848406018246682380716239869329859237790543402\ 7285690645740938512464965720193193711492186119358037788786058744427726704085925\ 0, 89.5242209304171891446136303740720470440776186831729182453817543657322507165\ 1496768750818305860447530181840364623387523449862633594855882745204664318500817\ 2469942943251138751941329526764725593698536336684213995315309257189168264732046\ 3573227981989650052424957859971560079751894594387689414688725835391137272238234\ 0792056859707506645348154763142594069597107052096160291565203397768717102563954\ 8145499214969768191954187337330109349041696020045939829860037216431587456982698\ 067279502263841878058846561704001204665044, 92.66619227762283762086750480446741\ 9503009658920698741357521400872442490482319629142845545002202696384616381917612\ 3975462844458331209422473292866152000476579714927740933206248034401160883007687\ 7744868279255250186917704899736190530160202424024852221409459780840966205357356\ 4448002766691659014378972614702282282561602478930212567505257037647563019541514\ 6605742986517851507735532280705111720854688402071729663187026280745213261661087\ 3497418675054584996303423330347417517912799362882111796201548538736924850406540\ 4249, 95.8081387868616988008722103360125645799389240416030032124186578958325411\ 3869933262908968772447862407502573913310916537759902966662494227640226482209271\ 4750379979239598384818019980622172075809570715106437299451689328013409897376469\ 5714367381274876579391353482304246079785386881270151393653898176739842422358531\ 1404762883999478955906451890273067465836740151076187008706319562477942249695257\ 6545862284221047061996992374749155718961524418851732897118803457908125920822285\ 589660595493376942235812943151599978931320850, 98.95006282433188029602693029607\ 9723389015115120520719069283208425876907887354743073086949758012600342405008546\ 0245895318096692379777180348533157894944429604319757729972400093803886243306098\ 7983911861896998856445147410282664862354447226422621323281699756741936030280993\ 0419996169096879663827022194290332861771725415320993477808869470793599950514414\ 7601460477637452671035083467641332881476628686075082706132981867775854129093559\ 8915881857144501714498802886425566716997177376651555221805949609446348495992259\ 6858799, 102.091966464907643336529565784409091549093708769487663567826425514555\ 4643301961016677755562840117860313103219041714744144899937392951673995132411015\ 9638793079972184788441498761061826277921632295293368554680177192983002597756159\ 8101131778147777236350907632648202504890416917355784279123903726974093572011674\ 1762506654059318507434683969620690219851954294378905966748682422884593691604737\ 1781600166077456308723984207571348371168840518317718700628947601349854267609106\ 403141208548515656634698106247553464190687398565], [5.7634591968945497914064666539527350764090876841673834290915711656353011009999\ 1106363084521058483928871421816313519361585743691053557933641549759915325476691\ 0553845493877794168389845700576756834733828701364946921433149397484657885292896\ 8172351930396284726663832059441748638783288602339535537170104191123483638350673\ 8390682474996715134199425053608476792322103317541851182161880508458203782259881\ 6996520599050830002493675093950839322292828036202338783247845082373463244560009\ 0941271686882374840828928387084929686292, 9.09501133047635515633769832798969525\ 2400929366383085415880802357627790878334597554669246146223346796538062944612319\ 1898609488705651715886539806846930652233898750599013956593342263662293359627996\ 4354534728604304130325669128781083750157050504610667629155142720869741851061049\ 1824078511241802776917436641757504988437833785410486002075107047927188841760864\ 2297817220676154245713821904224958291649171970271654213551422706761893558486693\ 3791826742121524473913391756883193722741279348676563634599765856922989761340999\ 09, 12.322940970566582051969567925329726061189423834915394330088815615146482286\ 8306719656267529374034736835806424831416311588679148552198825049123177546405705\ 4443208220804651245054655722564996406245216799146824716171545731554351614303821\ 3889754942597681604419642870263505518457848523936994916226397056420045957726454\ 2601917176456673285243310710165288266294988525675928431672031774999139786296905\ 3816653530311330752106474411195545778205753469020942519984449706304114328290210\ 5859923829258206138512693145189187347769948, 15.5146030108867482304414293272459\ 4561869071229219415021906488632871966202233513015709362042711238821941336431901\ 7467443526798795963564187972035976012934997939264388288044083373081901467212299\ 5355259290398975923263789608826653292335725487945071714718039809586971502664875\ 9508219088427120458225844608284678521246329423912171891518778208951938325368425\ 3118763388118558584835384664749579033204070873941754723238670600320004739713111\ 8985382337637803604608476895870149179658047756398196174322450114918133380926705\ 78774, 18.689036355362822201998165516304722674637130523567309170226179587412170\ 6358675240852648588275872301013328622331097904552075509734545941825438796445801\ 5540010641517529970404835353331566659078994061892348348415723373065332687254670\ 0903076137715320520697231727880664067008071334856419967327819518103874317706176\ 1689106021584453895740957513324522914791802225304734691407610704524122500707966\ 6939825679783994725297361158394475446074449651758681123508630800656890495574571\ 5672011565195193688439644314617137355883886755, 21.8538742227097657924280095703\ 7002971319992697654243228705137967378428693563738912349270018980031782164049914\ 6027093587320730616680236456609890645262588445348093560520427461464986594280377\ 7565519563520534470288159552610884982163869880947121107321579760877344976873803\ 1398268916759372677850749684049717401047652623441015562427058413709262183244231\ 5746338223346837672780678075025022734236693807449481722129622439706476493961105\ 7129320905357238732793844830568726825291570789891715037089533567828001764973559\ 36303319, 25.012803202289612466259579254606462121891961519043717870768129386147\ 0133848706710279522879811293773806281592936833561016940610262432777497707322215\ 6751646182819463655312737673170302227251064756894010305864080080622355021275414\ 4920209374121433378391166188580358552426444430565703430411210749410252467598504\ 8626047031790484437134165079866501983381837594285092229503015881445591384853135\ 7081336818808931794965883379240455564251971019286646038210387596882306910765714\ 8825408220518602465675317876876763689426122510406, 28.1678297079936238748384173\ 6024947959220971868934681966494588753422416508497033667347780051306420615424757\ 4747037410956354300146707356246576496407694412270719589164970126079994432752007\ 3395486996032926754745101018482112240618389620610311001756162121986707165874531\ 6967470864359305551944279862198196076231647164547989365924760104151590878167175\ 0038528580529257899392452680769871191738757906677352675200582015873224729276496\ 1523448930625435223104538868849596683865461524269746011664827033951209173250369\ 01212403869, 31.320141707447174535762032174059260818510775090802655968078135324\ 2852221745161204074504911758889570390196785918024931935211884962133810662644352\ 5032034253623658835400626812166383274864649892707831516903838082266780840524882\ 6286764015183872843661008193896514242100301137693893390099600127571091635124154\ 8951692351197203939361144035692731425424476254934373702385172985769491779789892\ 2392131093438626404375310095836802278352680425202529827336136720167071428370294\ 4179923933044347291489230347606395331886264453654233, 34.4704883312849886657341\ 2721373850971870762093242062396197530466065179024271706372349342728034190162056\ 5356795474381776303071132426659317554758425878066351815125529533361958161054463\ 3887704093001442063660048672298428062619439847979887455433102592657319579905770\ 5642382098128121477607034167015025560800040445363357015046371737682357604602107\ 8951602348022977882135277221817189303791525208141738561225884732638827512695958\ 2605905715441748007050712359201771867498658646091455969754297643344008886081873\ 37931553679301, 37.619365753588424848062409685352594063695850353887442614226698\ 8824080772017311472474003637330455007989710589444761924909709364293514135476599\ 5361237670557448552408471409285791459607156760272219250043855281100270944223713\ 3450557040567134703732061760871037423723263997510727861450715675896023406778712\ 6182048427995701107252946009081714648899257196346601402934567242973777667081001\ 5117587509320983842239699687851567778409434499920346709586541256686310784399722\ 6452065174692979120407285029978354447548930596344870189, 40.7671158214068047615\ 4142762746564360940599772175243059384183354014839800423716942169381542460566150\ 2047541249269344818020286180097447975115650742272964123860098013395479431507479\ 3798634984095026796954189563862792687591943727400606271844861084868674528419628\ 4217735447614245940914710749994695883507665727661327329380611266828880560448651\ 0839774648866985904252932410040983606069313938175665734465466030142386976053373\ 2265268198742136862828629600696721064397211354442385682998676506521319826710309\ 04020799955982379, 43.913981811364651449945297745709028757595544671993183968440\ 0189172112957703063023578831453582589744709282857406550102395915712948016644372\ 6916719657117439108897626960481626019933276774455386563692613787022558014861536\ 8063485085229200340318242441088098550564389135027522543206682002448320252228093\ 0165297440215118668196949579597606891345956191874518571313067802061017258198280\ 7180624753287058639423850592335753754361901535071677351503675760861338597087191\ 0691470710615034577295847395928594580585276806960696495176, 47.0601416127605324\ 0531901008307483974975125260087339017243655985291839091136587658402574306009958\ 1415504886081517352982483815558023874432130127809386642677785010807965151982206\ 8666389893405387089098935890187423699615610468333018747394774163375152097350792\ 4825807024425740694321824359653849670573397202240222588749284533726125972891296\ 4199899370070145417396852123811791659531998628925765428652756965703237857867003\ 0221401242749402376284049576546038044587348705397107357256541530256248908718491\ 88079809253380446451, 50.205728336738035106548590361259627223776176188762322794\ 6141747920819411712650790612929232949307359994888364439901908013041657421142168\ 2884710574592094742039844789286517232657192884808491718741860054072836348501734\ 7040202105066009931349560999295252260083628474353293296669892486504578736295526\ 7548881723245635132415453342591071361563155589725842050912128822248398130267227\ 6424049896274230568585634220470651784389520727391508982002115021240272699279646\ 8635917539199693296083850290548805159120937907498922651483974, 53.3508435852932\ 1355163884065155647275864517841443497194497946822379683917529513017293456899474\ 7119229149731467281171073221254391505782249211084191303289879660629603589669809\ 1849470090756741875247921312455447548229388415510248305482965504151946625592704\ 8736596692907339415023614336140935638611588346034793648589683106595336463082161\ 6543275590818294216333179446162946452977977029348942922786404634472514014732324\ 6424249540100743271721846170726558455608060332451553561041676512036682328928988\ 75602569224651299506059, 56.495566261811978208700888196774603439547751244228713\ 8746914833440685556264081734856509665463276717445252107895208287055495170697498\ 1618677945009944382181782494883227926186824643787056109727603658068762011673568\ 8698564462620361599184222285870896055506977088382870627995122854887375956109523\ 0642928267115270048340048008028930570100224842219048286445072492990505295521900\ 9585374399807954261480302098282661036361226815717507544667543421239428931693341\ 9308948082582007941413684531878586036490567673268581537856953668, 59.6399585795\ 5815323811542678576694624906957259441630999002707614494484260047105288509898227\ 7371918395266451982916743046761839637925020261885882243586798706659684696342829\ 3447351048903174010397248307350866381836609720384608347260672858586579386970675\ 7291117654434459867612952438604422158551777549196135961122134895713081678608168\ 7839405713732671658661762864031232757750702655754897773804994480109965410054502\ 5397041207013188029750123849505705938648647674164827598249076952325782692188539\ 05205792908467413986776935, 62.784070256180135425522946148108552421913476035440\ 3059637562500107771592784737690414690457409448146246458374962884710633082319235\ 9925024761477446399818210679148759909245304522847657135355504033658975035299722\ 5683345217431468671056389067449808946852108758599411524213016260938677393877207\ 6290480517683210159808480371965866144056667531380873744866407111433248838104114\ 7295415159440511266870593940178108709314616587814872428351018575149337893179703\ 7318582978843140903964957175825653699533502479956244196834796806307, 65.9279415\ 0295864506779087598863661316164101302075820751782122000920049300415129951062447\ 8566576895018068276853028351164894843135472845769295974714146159293289229238439\ 6852292221000682222870788059278620673816377328446447463363010336642736603278104\ 2372787727698657849454684396233186553960238524230899244050591651737338067881275\ 7875252382734919491381478128283154527562507451763427293166172668095633802833114\ 0644476219403116133600297261537663020869240503322749653547525208462221483082857\ 32936443486329681349147662694, 69.071605194609605603387922285148429314292997320\ 4202966613444122146969467038670474708986065408296852154203768465125747565722356\ 4209889390557597528551781192158369185764116593397485826935128547159713977110455\ 3669583175960140005124882543360222044911092205082168131934675542875434859863882\ 8832893891615595197639703286987950711818728881268113583397948082947593557444199\ 8763533242373172551648078939974046271899807035505081518910645698743829754289397\ 6095142103012749736617130474806219249104580890521411268863343776291203, 72.2150\ 8847040726245865784665928380465536115683741056933328071589477781052308849070695\ 5070542451097335968540776680839876336265859914134050275611240717181935463995037\ 9511128619492424542404768141155005168074077649833556261646471050198606621125021\ 9779380752041413494342092125858202200403633568633309007176007615144600922017017\ 4603225841763334696251584070134563544336358279703277322065032349828544752217649\ 0846841988861027811029712214534899023594092301214309148692904768304149025251530\ 11619171131862114880608110768008, 75.358413933321402834466275745009201462440310\ 6682977481777893417161875059268213422354634242209160411134166183685318518882939\ 1753681656393139394675217013258339949510343948238189176141043698957797596069581\ 4187268867545141852093410051699439451622364379165465625507278928930782697210757\ 1275090790968451403499400460632647317163694514778837710786836952598302236124434\ 3014186853742479908783367380091266523125792074663734159240551185898215062776933\ 7187313881185626761433601727350920102807505911893532195827238084706926058, 78.5\ 0160056023911413661758558430582365573079249605889608017624837836097107353686157\ 6315663532282489785500694527958093309664421575919886298379389915070344745546955\ 4916550217265175288602658018223827343082150257994772632543283957929142091685388\ 1104261398812468889146703712264099595961705885129533874234040732109002376687959\ 0121869685878410611170962705540145194670156264635195389419060538273168896484333\ 6534546474472785161827284637998567844749257499640971850765358682516727510814761\ 68854250295844806103798660871062635, 81.644664401382347820793088862173273511969\ 6710286911477296683457826388869087497741620614580842652044704388010295963145598\ 9884671105906861405817279581611365233490307135704963085129617259558643486636318\ 9352318600970226322187719908440132353413191564890464042565513246418575644435979\ 2738995051245952726161276494387077998649868542543700586754230889782900955118208\ 8141967542108212949773663378240971117706960760507851084152599999495217997684473\ 1501182457335186713047978601348557468508851137355654324976819793337768882988, 84.7876191237854685226957934884350161463488427296878426789204991767527477665860\ 9432087579107151001294761537930014068714833195103979610090340651933967433114203\ 3808239420496604550404300954577615861075547924424829878761813355847518892195708\ 0401710509207662853236881936720072140263333783263788951456247629999725644802490\ 4474483379033179529501537184601231322097125139304153303109229681162130799214015\ 6287837340591217402514444074529071118231505110698242060846266368896404110171639\ 196493224865560212324437309416886765091, 87.93047643795706911339608342755051847\ 5039951089483524668532340000428889113852597804321882709144243366200696819726016\ 6228352900981331735020912741047372182298561367603994670943436779892563119171821\ 5947118669341507745883050507674048323074626196051583103435444635732817561151453\ 4953036854022100134218029810257468684537193260573445681208821211582628679689848\ 2368839930271694716970423224064987457567258745032331264383347572911004455839395\ 2699650593908478949429176455101844580165836058964140265428463731589776486701127\ 3, 91.0732464360163456148003095902370775618456283487835055216065015077543834050\ 0331091717844151438614512757642491635357181230776829236777453524745877769485863\ 1612932656192454221527243890108215174393729429021809959215959842430805092426033\ 6411609777129533866915492415788231626702894819975740065568506679849942471737214\ 4064656967532299003964057408059514191559132682125018672279942328761186588558348\ 2431097969151273719150934234930374763127256620151763257290934809716060806673001\ 771980578200627351738561729709754404959795, 94.21593786202357409294741416564597\ 9743035290358052803825975537262641126556499035355679305885700753555139910179832\ 4071876981547180731935533506144161376043449911176525937326840556262260607371895\ 0241937057837106663387875170690329042358508452281719144318386300805198939854767\ 3741980729533512948808706273995575251997159470718910167539116942196311752008954\ 2219891915939732045775023636721252731773951245680133935833520617033337599035210\ 0266029792261728236326625175810040399781512118957744443518781875069689461451360\ 0045, 97.3585583298596454459259678174884304507377090398328019569502754238050670\ 4183265400922397892055340140456162952111905454823536531048936540638732117771092\ 0558872408114534826716398928202563666918319421582104819995179971106423518915004\ 0222352409424561089477818162794941068588331810636784332494941866669075930050365\ 6559307732835291076355199948051131043858304599425340628773926423558298572356291\ 3992138983117947303562622773953443405941013853697213402582911343569743637824208\ 236774508991316365629500101319628093960750175, 100.5011145001590725477772583674\ 0847881605793761079645263299264249602433775340786500395726974525188085549754279\ 4555531675016899853431174425004868695426670645890134734490799596416340805360185\ 3309145350188052004027990034174570950937400458627495756320686421676215196064424\ 3312636248346877373697470327389919758661822291825318021864889449153494275274585\ 7732119160188169121874923954320950168488988091936246013762149863704111742501761\ 5320313158144310371188280134083042714011319618593008082578730036816220407949019\ 9340807, 103.643612225003910723662883478213195505317469832910558194352890554084\ 8086686813335811211002923043956024957185197753759785869061208408644303904952828\ 7976545442549580059408825716700523549209181345239847653940595332952060685575091\ 6990160718938014719829228973930519431422257366777491775563041783003663022801710\ 8221542732072640932341597055637129858358564308131848477647889297821623714284272\ 6526448030705766455407631414440932955896702824512139159969641123650052532670048\ 360212097840237162341839956047627721392061222584], [-2.338107410459767038489197252446735440638540145672387852483854437213668002700\ 2836477821640417313293202847600938532659527752254668583598667448688987168197275\ 4097315267499111274806599964562835349155036724215460225304014264499417846393445\ 3444457600947385805599328400354197885486873437032794768373623126914436368456216\ 3216952248968867718879672536445429641466511617566552179092811067016160131240108\ 7208751068015363540930435540173336518243684153688846153833781673263744772352166\ 26917898162900770617327677839962800890838, -4.087949444130970616636988701457391\ 0602247646991085297549841608760251219468360473943311691607582705621969501718359\ 1230756100095250972769070027885394640580252675333585409242399782495763961041215\ 0938889065932533995709781978424172012083930249851079909655279961652387682519266\ 7981164549635768190002389856737432809381879414801862515328005418878754766281035\ 3441905159387016647277925970007561411928800225495400679523929362246485188345637\ 2002468333658986579843483000197389397684380499569502106102512631708969301903761\ 9323, -5.5205598280955510591298555129312935737972142806175251048328875769574946\ 4138183105864343809456399782169120297364366657134655116329054084259397183212529\ 8877890071806573728035746813559601278665810406781533566050331644077407230687588\ 2067064320264450397941166487164153561520094693654969856968836654090120642563412\ 5028515436278964014687219704212893471382418724935076532664194510973111524127030\ 5185570210964285156764868009683250512916799241665550049678700684550328311665605\ 9347253563906796992264968379094117841017293680, -6.7867080900717589987802463844\ 9617696605388247739349361652352909355623655687094473417722531487460759161453332\ 8532018227751176191728044417714627771167854458066732296959190063728842403561905\ 5421509594141567167191846659282679347165492969208190674280390442205333864719784\ 2505102595814963180045452283714583343761658177967486494435847016745615535511657\ 0251114565630268109070249983558234633685080145590536346823385730647835328992967\ 5850493239287250948031544156390231879826408568628150621801426480941550632101242\ 171755280, -7.94413358712085312313828055579826853214067439697221480864385428571\ 6448640295674106992818475573526045396853882637979667940845515059220474059678855\ 3381009659998495478805295453785460587669133083589836464076681999032306504568155\ 7497630028712509931403073924632225507632188798638425298065494562384585259178499\ 9394329437207558761765038965831342243094506333991653881172006635469160935321445\ 8393119430261881757113200173905376342662959924240402133209931049074308394139792\ 219668502388234696885817492778536743647702126908175, -9.02265085334098038015819\ 0839880089256524677535156082515560685683113282081689838511761784295259776480171\ 5251858227146152756160560323552599740971100621359550208689060703885567400862825\ 4601225694222369811927006373084825411198219007179296191741350834784641590008839\ 5335868498662343318765876081557705669694101395305554529212152113210525233358496\ 3042235248641068473545771167650515238810049354936891825366245257320426741062053\ 6725532646821934332292977236146074610914021645998601625749667328208490983891567\ 84077996595241, -10.04017434155808593059455673736251809404290256910583310437135\ 3850953432686271429513164030230374529981309488039503159003339150446466894409596\ 3496036296105685084843177210475928921056947860613066472122941499085487373004060\ 1667038587430728668795960111687035291738805849574474260652279464344175041005066\ 1954399910691030582883578633597090330189259791615892168460869506723925651357602\ 3531843277583849504881505934713315655409213858855026700017903775446190187186342\ 34079097722083604156453681077632705655269874203209033933, -11.00852430373326289\ 3235439649590151016730825381504037505700013486244474694429911509655434540502234\ 2467360460154505942883597130750098250251376047813874411564118116858860206812692\ 9234021445951908751045374054470643705268922237850799231032799855954949134237615\ 3597027879349460752436920628149414209720956220410571944375654348542909974115349\ 5327532177550639461550367626802926119189539261555970988648570687631247632015187\ 2432523271013002128855642271377290369227813480545020212137601123976127284069966\ 6723823994790714560, -11.936015563236262517006364902930584315577886232119823970\ 9235386429123761777942986992074025093369809155904132718527717807638321396374392\ 5184308286524178177120928760471117236541859420802015230225466390249162819674755\ 0008993105789948890834472116304114133713498071923159673282462514547670808645149\ 0616877884738972937012222277737321657284725274204295634937132669325519757580640\ 6757415462227979995994521850813331714151251480903772373672912081905701659458743\ 0328068035998705802612461882277582323512546198476344023019345, -12.828776752865\ 7572004067294072418244773864155995734199414869668218944027038074206880466512908\ 1730447244757622932508411120145076864061463548263103448317088841463090779608488\ 9687514061549558743699152273229795795480821855140584055482532615768063437944293\ 2609465072606193889180041666043591854815837394703932127637841639819271026262930\ 5648392809790895814860731987928813263954880421884995759294613897384323362672494\ 0049735931647406165964736312408612165427345874361981569811366914908556617650083\ 466673248812915226982379, -13.6914890352107179282956967794669205416653698092007\ 6805254071472510959163255644234788982801695398759768397827519909077164790104124\ 6528782662659349342719811154666566815899386468433449126690487182233556906201751\ 0447977984841539138431373614779604533383487424591105195546317467700673916849295\ 3077163142846016043372428819144355232307339137189680062142773075566549271164251\ 7915587454942544153293422688154804831590652417256363887285505899300079542758757\ 749106285900201973004918536322959365093437628384128778580582301403, -14.5278299\ 5177533498207398144299589337871416486983482524101054549228522669616054642759980\ 5723761048585689083493080763800355945946746987627165682661272694969494971776734\ 1893233928309720977281809726613959502642625354440807013834939885260541508123003\ 8884167756471213134527433254611549216476747162663170327080208918404282126355263\ 6183393695961054298534422368523758545177629683861576788405290570456586478488211\ 9263586421304916329849957837103413821299171925266475142255372584916267259262647\ 84730304302457618962563977995, -15.34075513597799685714620851348148670511758332\ 0248037049691343673609140037022800715063487910720841425365697078827083840670666\ 3877662627735128477881607176945568264933209452481643296957423378806238945643075\ 4313757965096782116541331407109836762433568444052227292943524297144435968667609\ 2771352772532574226816462609802379345890089253529275691340454024515532584425736\ 8890261201808648625557028091289227573767163551493063770503222967471210421612984\ 87933678163062430731164575189869604041218158379099273725634551346510740, -16.13\ 2685156945771439345980447202521790518272397076282466402389835640538364056059220\ 9396091590398541234028929038453425581318604720686376041024250830843056105619939\ 7961346671747742460567534761297412513125357844816627324480075937141633858015106\ 5397554757701642922222990875425745964909536163326738386437967028118954137877742\ 3497133641627403064313445174080524092199464820002789956680410302983517718162027\ 7139662825376368084714806334324597954723231644613230208468598969183495758422727\ 2333721626283661922105199366951338, -16.905633997429942627035238770611476599090\ 0510950317185560364902373681373055925920450190428935993190767948859008926289167\ 2244167824019904339731735894255312759333369704093750661814470877221228053681011\ 1015069455537912279989655226890821980771653041808561661511331486488250047903863\ 1083481078520730146807860080113461739466113950736154095242599925364277075527548\ 0001539776661921400494683163513946235897768732667349780246037889243650558040667\ 6856244425758801490128144334351537934914206484370812885477567124427208416699, -\ 17.6613001056970575092536503040180559521532186681199533036125582396102725235051\ 1613319926897996665226053329675074024678702229710957610208638108725332537703178\ 8443345920928014781819272426766289216056710613347817054357023782551689399955638\ 9925332921839312730083210948935968672077140214862413864455789357352926366520177\ 1825297552872784138817524366822230728509503620321331581641940620802535501468169\ 7961087216913188757364716903305265472791268406756001125761188201815983487090672\ 629861329918392318860533616488157550168, -18.4011325992071154158613979295043367\ 5459381460602005817693995569303975226177275899058578973819410206895374124518784\ 0417370358476524859693475293103115562608666035135843169411632919028823226342076\ 4087026126939015283934525955365272162928646292356033644413276263690183715936298\ 9609429021494825833421146418759730346984390312732427827234034749466102369667387\ 6753388455709689749170035028632980234112829237273100213869339725598886409827898\ 2023281408377031845592792801803716365145883250760316239866099738292103427423152\ 14, -19.12638047424695214412414868973249468907545838475308007653292923976344075\ 2041985688642797153811958101049544687919518521839011228410036305042658977634904\ 9762774150092385033493682194303522085652232063930597089141763451922103175687840\ 6903035861218502685740070708073093335979268470224757668858824441118200016794929\ 9031734861966584246411589910427066739465360150906612401350168466489064105430420\ 3972788793488357769325192773974214593184352467719627209061773582841918359985240\ 00059349645735599987585772964039925621917574, -19.83812989172149970094756361601\ 1404198335682494538858764634391905331020517499266884499377722652389987063967141\ 4763889457574287850973314322978932682598413466992064078175944832371928888345033\ 0941761173661261078883464815837370318230990975966468153890932625376016762428807\ 3740411832415685307222026103269591155714761549731384916227643873530774350126125\ 8426740397760268422679653051461703603983024754523928883983623539769911231861070\ 6513306733356210445338570444044062899570993719614755706033042038832049088457596\ 7622075, -20.537332907677566359982681411308101745304218014737492082187716743023\ 2920349944977415263341395741680694491550467376793593824666492155471534224603898\ 2769385221594812544714819563985927618618566877921733173887627190629428581721471\ 3993605259801498341074976811779985337337585007131304714258333788261867347351958\ 4298854489869637568917082466829118718383617611910746529958439667310278556339378\ 3603420040357104910286611009691823246589224611001035816813154961815138976142808\ 7525502888567327287548710941326173073929215604557, -21.224829943642096955197676\ 7254052013312837202269514222353891525570030138397206692800099695711426327632542\ 9706770395199199218973696418637067101775253396688567339031953575275887061398278\ 2219651303572887211304309536700780322835399326761511794653217536770771581648285\ 3660992105229569537682828446358004958708351352008825004134413339664850056727527\ 3123517853835083293714252489287757799064308609584082721137824630528890407346117\ 3422188005046075329730596360145662107279864038938868765445259085961820053570973\ 869214324427, -21.9013675955851307074082370421058062601494405212554855938050731\ 6477777679593748244532670828321319534895257818804067064626223804540755327743175\ 2455197884571172457684394252729414054874756622594311033912998053094475630619066\ 7454380355231462337889341521013108364328507083707495514937007770038598687646965\ 8120013199114608684427675512411771803600173957975684203655329462108164425926434\ 5549118914293605157012823700281888168855130549031565302938602541457366245586760\ 611127739702635652733842876720867882546164831032837649, -22.5676129174965028314\ 5917485684307040940078566103896133980710912405920639966106479917801220517789153\ 4396168496016169882018180567272223802934835812113742469517673915400390686884956\ 5354389910619502602268939614039858990171148127334253379991619251586175134809783\ 8394040716339956337592840452453873790836332979878908805357198731585735501590188\ 8699309285359939309557945603819127807268197387114849562386459840194497696254520\ 9375304824447206067725326022469783101261952900429126200819340315447659737795855\ 02073207443520341, -23.22416500112168106132095039028827471366842731266977699133\ 0916655959865120425944279122156360927589254265079542256352710724380959952285392\ 9436814349711625770936014450460981795984104117200598431501253869727112245965434\ 8656736979011915292367034513361960408139196075496732076929786823807646233817157\ 2721153862245925792518498479882639615954681568154577750594123594550579587895293\ 1520426875187987057510251936598437516963703425072222221595524014536633200295286\ 35707674996754702887977224332019874763643381361464049847876, -23.87156445553591\ 8567118576209159784170263682514698550981112413202506072707865856857558842650342\ 7782419945808217321832739602150634663428265811061795511742399495438517170406028\ 9914826825646487963334710963512716196400080965656712666907273042269870141548099\ 1072508914430068403766565105602275469228337557350713074877028629870781052704263\ 7398091987110614365669965769118710335771796759365208760884237655319730313553905\ 1302633660200268724657711122923880039883812192259638423568148941155177766449794\ 0853648149863335277866, -24.510301236589677489817287209173626258551534915951106\ 5299257970538703163232119823479210848553000751008962347618988655149007583834810\ 8837613270619407960906354260745829106677325177754079358921264010610882084978842\ 7197394589027744418320638330632008147146138072601342482161439745975191449231747\ 7796215487725966209635036374517136816515508581823540384405133541577489666034199\ 0399056676185092840066617230050836262863722105879757987279129015870946615333903\ 6636362063477059981873066300661761897752637436545872502240426595, -25.140821166\ 1489637477515866207110653925354136324722229304314245457949298720861966819124306\ 5110697029115293645461180467679339277984490388959758310665110319704892851653304\ 3612473787032138175517019767632188501736054171478962179174646342462126485961066\ 6506399154099385130845770010796241731455695361474391989783580488896175040055135\ 4861326098957215037153268664818669078828033522190067570572563420788634557049888\ 3548768537561336415991128153920506736556713660102421225117712571018292292763754\ 226756084543007982435270809, -25.7635314009827564585192681398517931321824748583\ 2055419208950948620626269227202654541082502238469632619785332011366756856244780\ 8404740518988661310333006885976679260890459017596708350452413337534711614697127\ 3934623274828742408333807507979154955075400918633482975911803428783619436843436\ 8544287312866267080603947403662610920415083811966623717201381901125747688246988\ 0924287973640610601527022431679565454714069876615683336976461613402934172382044\ 656177483909447382817785725259671324578456305537780490402115320987639, -26.3788\ 0505213723237415986266688216945070461075593845574159977479865174443942135059115\ 9279120612799576497639185023911186713072202013626984737583540603102126868407646\ 1426689862528457670157348368872857673131089217569273187548588951261881894367564\ 4356755387636476170678183004945961417828537067451786337515255853211633271689925\ 5392647949655505194129227650219861070185612928940288667744999295370814134190512\ 2439887040557074810690604174164571548534593361924898202962025279595989920864343\ 79408174563320715011387940626206, -26.98698511160636768634663279876252021357364\ 7124651907669029647725103352748687506543083076071785493203027245094762343565907\ 9943226306809798832599098424028337298345905066681881341094374019673119466076749\ 7639840430160863714714244289223645700363867880399762350759604131622725550571310\ 2921686106373548353953274930478047489314096427870877779595746788466984618979712\ 1430630318536891901061580307992005719739974512157433649501086605285715992778609\ 77104207533631479524744300980032954203383450060506755958758366165994138748, -27\ .588387809882444811950364414088684929841881389543223137047014949137520745993190\ 5819162564598074936449515369536739351706559141129827075054509782886070761156057\ 5445556579389390817846721184089333095478680759953026755083492664476016495051232\ 3822502966093288976344470077822193942840066688918964229729556497415320976796870\ 0931907182574124203790734438540191821765804356793391574443866353811799524834801\ 8371097594392286115046562286990516229661705199163022661569039846033621685021940\ 3537776886577807482399109464555820654, -28.183305502632644923205745298643022057\ 1180567785206003620189679990804921077017882651216400714627639197897255532357570\ 8278869645678502120344421762710204569437476734302615710983476146607500135373129\ 9551685379435914305571096349251454167841639971780323787922935914744352859457503\ 3096125399505827355769442093838547293567766628532026491550380372798557728492075\ 8586424886232035794301969230160198685977749286292904452295694542546886457375311\ 7743200453897095482904977491538802932736734859910882737381605990257638478548319 ], [-143.9263839814889954494790603134311851072784671275578436141709276950213788992\ 5491523930380665334116442920618415493389679155407931166003376631737961779554724\ 7732098890586449993169336723610483112057113959491795686159308710571326476727509\ 5182895254990772084211307835530907773810829642938224806115447484299550030721319\ 9767082931281508657516345553756465477409754953515682580297091201695676406377070\ 0752599329655187453615412188117562375231693601537607339290459441416553567602143\ 66337379251378706219958628226339106624255, -5.683353790182000052479190348436419\ 2352275411888266154111396033194319957716015922372602111111406118778243346481568\ 9526893439626958586039603564276232935964693659198471042504019224701597408158903\ 4118247518561886443049156807938159219608051761375032961919470746959963707306419\ 7345514414306551147894647534608969258547450790579137352941872348328893067068341\ 9695432612842096681166248913846524915177512241685164993209509415424128557826129\ 7052500201809243411166066118843805786398826195304920828665981776261938708390993\ 0137, -2.8607369817239288629611257927876060367251764474911097695474859038634879\ 2552213934047748223891394685376552968982852249239247496051784514819438794480917\ 9947711328469628451248920465366388522198190737713026725018327681779351536154096\ 4427825494057280928305882617526649349391748899068219003182036591078612295353073\ 2932970337358809484737854574226992317127167087378229692696302381819358767922008\ 4512137838654848224784674049162917016981876245707842292913348573946391452881734\ 7069251102127588666734010794174398428736504025, -1.1095669618097698630277138091\ 2965395994133757445961213690152012932739041561192517126272767353373442223765485\ 8419462149175956090545421994428673247388221168138056367981694395014090016710649\ 9042849889987007134250080437005861538106227565937353076914965031983482565855259\ 0531545483046639892811445443913031612831548419398858362710368858986524107396481\ 6983102622259254385970831414690254481989459458432037519589617163488930497176225\ 0904614728945795724197684407597376760569332221099594188207971135141471475909823\ 841904811, -99.9262257782156942567196980832293732996972134612279383679397972666\ 8713676230781763629167541808102410678289580192121835170720999992684279553314862\ 3483368792800373105180966718360287406994561578994472676766332988418070443449962\ 0223862994845674000219458549070857776861741886644757269856605529458101052541560\ 0876554530814593638220405616151443613147024523029531832087772544678279437132565\ 0026144150420535213719564265223325655336461037296533975224135850412999713419315\ 610462936147436729756164756500317319438924713431110, -11.0354913057462853294619\ 4414392824549859515108847881239601235200393122721349109419445919061585916949006\ 1647677730166277688058810435795189169272114198499021874359462603892385291756854\ 5264022425909329095752917753068042887256539890073197580594768796628280953451157\ 7337394160580622070744484214666748218783338358991000226042295545537359312799360\ 4393027310130295016617945723737300251398583483398467397722863278129321367204453\ 5074321801464833076229893345208325712417010995342138802438163002382683038224228\ 89344803438032, -1.961860860089881847010553639315792032379828644456451292001346\ 8343761775572746308415709429209897591639446261034524915255513292310504090550340\ 8491478431444199870081820948849502378891491691108141453549453218802610791591295\ 4219318218014775076124205521771396320128847838532588572571451303643243417103824\ 1007043524620406196861843774426170205569272018425719726469671065323458955335386\ 9527121246498165122473573836724195312702628834747260983237720214445492677951768\ 47724131853254154630780130461710811938456111034598683141, -1.154165154109753987\ 5610280171904237743258742791608647333338305239296024284504220172601529367189372\ 7814323873417238647835121361083077589932411869149645790111666640414609107670415\ 7987571596663506883312046615849694845673972551164909919115582881022968480968477\ 7227075469443268177209821646427649769842596577149396312433115132816881133594568\ 3960100654150648763803485340096066535953603406445692296416603226495982807555312\ 4077047213814845492593749640117419836944070604475293125176833825582606301286709\ 6637403553657709424, -80.926120662122855148155310551961657442246938436202935957\ 1492854014069981525319610486001710006630882435985748714043999313640628684692220\ 6823341678710312640208663656457377993183779599458179504885582540677652017481314\ 4951218008996531346499859732114587576307474327380299768146890885160423470304785\ 8834864693590599947033622315038459950928817485497998467408252470340856695253751\ 4726072260780584615085341128098085127875913809524488911630356262488952357345731\ 6626487793771861151449116482166353119831633667557278443234689, -20.175085784953\ 5469897584797823119943885432540052354234297746287265837488090998362286559149918\ 6392272681395199556610042656068089437093292372417636401181029659344831924047795\ 3885815423608247007197832367442154554892659856619746228628486871141450025096776\ 1385934714113308962720103053695359432593009125052252670669076608756914719420393\ 1069452516908935589706941239986143034817575338997209096759493781139273098682652\ 7251671360856903485202451430155055387742006383196010925257969417320313795846175\ 587790720384552436290378, -4.98561544826467486932705207278907789468629588937836\ 2637243043947004479843269269243591734425665925602966570699171406577907185827426\ 7998732785758120575100085042810002994539209037495559685929682363980133120002631\ 8975128245201848538268183511805950160347245976716727083362106415043224803906745\ 2910704428568755024708364076926244595220033499361595920930040476502182435363838\ 4330878044444876221382013226415513662043743424180943230299975662245451564492494\ 844090059655113562873729236417538284676167952375793064124985110975, -3.16218704\ 4350516703782578780426873918522306540615617582079743381525473580317082827025272\ 3581907604983012458763601224207421044005159147930637104896240329882730307767704\ 5923664069546419991877489597412842245529153857602795022988332591741494776283769\ 6602103219312027309671518833094834547289703571628906141110123402717983690339267\ 3773204493250491894566662177196850571402443053324204020940150547795793259524975\ 6762537574686045167900645563865102725553432479913985590067957394009619460079359\ 33345358254992342392168499910, -1.573523358076707195295693313324689955658461907\ 6412480348811836508747815810629419423861165582173934786644717960351385282239351\ 6512482242576701949314766098948310886113785743005684851777601293313007300185718\ 8974435317331278281963053429793134691193104963694293445030462133228744907079495\ 4863708927956670056029390702468745501245342210021281025993539792987520149734991\ 7395230197038050246305598369629487768025824600020522460560385150479164347534135\ 85033841537478562868837730850424028320687457913726741981318227830856593, -1.185\ 2982266896148618059647477697152163004185157241796669345799703569405200873671672\ 4041097101687513018251491411004262650999810109291873678471580469046959969300380\ 1549467088305999579742966207520442684636178879239359753578913654816436728180090\ 8198911306090020610640489193109155561347617271958565631703267084925603176526870\ 5954811098682827909784486478449441946647507168068286494884180488714894697630058\ 9513954560214908466934909298913536846656224108058031954068906558325724368296466\ 4977266664274143530223509643820656, -63.925989669661582339087531732033619786973\ 8134145956089598397059577672375811847527796476561855695045386179145844820760352\ 5274634334189965599662309274071068052839394695889846286926170629593305625557021\ 7752862458497687016761183506063886610826561585985822953954592680277626210891194\ 2341854556181515007828801093258887843116302003214446471478113387827658150531062\ 1547678004973431607546296641256730904428971139498433086395906227797997080212897\ 0968995142333219936791184665765102066535345652325367106836918916033054043785, -\ 7.03482686429911885081698930821105960044630367333381034870340556749285022547449\ 4026154201289596526175760011536871420729776660295735980570894525460573878193388\ 1964509992030709855531678806622883320363413634827416222087253159170012933494503\ 9406044793815958433716757978522646542247020661720691991929666163026948022665482\ 7452494602287306220291382362974644078046226753441519146864338811341070540850293\ 7110005190314593501072514085935954571688172362978890608586097599397247456014608\ 347491297070890863876998990608149177370, -2.48162824440146222862011385635738784\ 6614477568746352869977727305359443395469651584448327354585042124572343062677526\ 5703020607517552020014661182319627928074652657118879663491460145710078768129313\ 9688153197619972804534111508629547246715189084964354614165700643446610888610657\ 6429378620381358896763609040480689423338973179872493136468835513518514179154565\ 7974263519399830588344406514668324569544846150789730066052443235231414107635538\ 6122315976266920277800659455614057596584037787119311592961981338821499947101844\ 29, -1.225891404794322354316398224189717068189568447578519383025757827829420537\ 5780746580634025231210144590514390807217244456514475848295535259257418639652254\ 4024185325098219392643953259317939358867463493554985523681914588261553358172092\ 5215917223160710937405607336012161375781273993826297589960694948447664020196326\ 1409385771023487829385803613804907502691382466404017140471161631626133651169747\ 0044046283902458746734909987825719902073146505414321010104917832167694910665245\ 73566669518285647993442290680971258946242150, -35.92559943896295789861101376797\ 4070265913950334175992631419043579941489829763960872879778329725355675091251639\ 4693780073035374352329115505886389482573085848853985175986031063394121345483259\ 4392437026176544086566489936862025099893405191237224672706405807949142463121737\ 4973951942040896923333034451096144171815913703216693072981563816547788759692752\ 5843371589579764151056526999450241516778543195658139952725455510565121557416308\ 2524729116323855436588790767334037628805476838159776377479022846688793962514031\ 8633642, -1.3600611486682911554816853658673874618381825839954901056313111006570\ 9594765738006934792389042907032909021432183650091760017037564849841022638928989\ 7906716699835778988559752346563204290104532712399155350606705901654716589905661\ 5424963796796062339003309226295989832328786668434022153852790367530416079469936\ 1905842848878139364125446421355390831644605287374250086265872978674156876359244\ 5063406648818567592206300116311264983494010891644977050878856523902417411798579\ 4194600959081914102467933300586915411904270399841, -24.925290311263345382037433\ 5414095330803534310112846663599387525807747656668956591657683872012359023893105\ 4269747221775755294991423982666010613333102509464050819931936107545253808750436\ 4837354109108748293945518222119850715603069316466849759127413178814096591022884\ 1919787878575214428348132359668251745890773818931838824125283552104243482173334\ 9649838728320672990289933169742293864520879927014404372147973013068924933209541\ 0167790124645800530338346431442086759954977289284633135249266548709900073078627\ 863108016879, -6.17349794266268871119250500574088213050797593426613125510425140\ 9384442787161164768551903495541610911910751680908171837137822483925895557987557\ 1766772479436996757918879348392718136797864662775466171868327297237981117135716\ 7014544921815010137171515804860108746117571187989905349276663575695616648548853\ 7372824232071141611292720496003571478071280257813056352817156301379835156386276\ 9955997643969255040821519246475336953915427845800836896730642713071871411524008\ 404820669840986322592830619320672258806385036734781350, -2.69960521099014875642\ 2763730291142115573895091456237789389610352250001075524973965150144350130264388\ 1575020862714701756145111449010043839168370428757259789471855558526542450497896\ 8430748613449686550450652580551365824363756131397188264208963581167080912384030\ 4305929831189695064868574970764760819410403486249284176887776896192575247052809\ 5678206343356561769494402685465594562300024169269833960999604159341239349565421\ 7487833751237290097374102339322045658094494337365716268676088044364016382452162\ 72546435671148562, -1.482800203258094635259578704041206177621620678829024604923\ 2910265701140666407346521376622506800997549215242977933840086071704838734548013\ 8003559672436281264256137176360964119668396170515426088101139144271699869933864\ 6362094475752303147766569575057407239234958708685081693080071957980281829591462\ 2325204339449445287059333197411183300358498615002485687448458344398437003805313\ 5240193908015844378781302818562906780037928737485921436977014083786195510540058\ 30225101737091456778543097504527358162085514413813591749988, -15.92483192869048\ 6363230513937745182077029640748971470627616712743951580658530087256670974056142\ 6490771123247006057044561825430532735413722714813946351674503556426986018618324\ 5108007979276166292338395074208643294160049910545953560300763908098293414578812\ 6470034843244009678007420933223737690707103174431034781011723673106920927944877\ 1187294076701158493979666801996338897506095249653755393316613870929043581762239\ 0506937609106752992315860119395862958764190119039409451852455148055048558468885\ 1704989764112139619444, -1.6984451503896340338263593130943414858134708581749178\ 7670315931875263743452910063756404419222874806914001986180181487490838907652077\ 2264218718943312367466268748974598454497228703431098464167281822455638297891459\ 9793267958405404230558259114593234894714332724624193166352664798082956373332783\ 3825502568177262173919891403194800984423926711999047348456432147448820464805801\ 9005035295257888387088161256400960917367711337706573387346536978042939284475663\ 7311736275891881818336379883320851820607893187293753373426480383, -8.9240828883\ 6397577896803897376412002925712418240433640117392289948596043046810870315442902\ 3767947976758171928635453240803041754090829551343184927707263985108124992655025\ 9828295155347517483891340346823678173356355249682176832309372868564771784548907\ 4004343071525536088784724492696429443361011619396650103332280275908592783716401\ 6588702221667229345408788006162881049498984050994328432452150186781728421105247\ 4981435512076333781665721384094480621518691674887543938995919793397033026992816\ 638368622772029809278007073, -2.17130135211640157070111399599789933728068300940\ 4155270333821276049576450894291928578042030054829273756324960750967675958595573\ 5880166747606208696335939755234224940778184336431425482037456665934881646200616\ 1940945193524601515228044154527322727118718240079936519549720813964093597805229\ 0846109979416511309465917299197377053698381966967674996251880826082062688497474\ 0360019111398583401644480566087243029115675627332999282161150406986508941088341\ 912895104318060331067357189347599069579118208644888558181296719658667, -3.92264\ 6139209151727471531446714599513730323971506505209568298485254720803150338284880\ 6505231041456914038034379886764996843321856018737079664886632553187700300292770\ 8284792679262934379740474743456067834925870917674462530668454218604654409210714\ 9397014020908433989450500088588245707153350168181144786709270627261501964867332\ 9799183607394278285663548612243250098819953932356936138658793540565344943372390\ 7895829766468369256418262941473950898634898522648287694285364743896633531280676\ 38627459242177544153866838300667], [-3456.009511060103928624401574287434376860528705000978438697846438802295991204\ 2609100324443024002245725241211045367308588270164408121867632397642538370898559\ 8356608346329606295729543360241087271387922573405181983028588794102542198975274\ 0093064417088527414796387895152436088942734951570506384670055755001854686142478\ 3068452244763106180741628889474605141862075146218021309576777992973937507201840\ 6942744399053753270125684220884420900900114781123427356533458209702824991173488\ 62116750342732470179361990780997898492120, -27.65662353685475267686744676246653\ 7922835261647004138024479541097496572925991086369862841898346284802346837679095\ 9243977817652302807185123755718608522474502221292758878002806279902290742420423\ 0435392014027734588223198961399957407075548062171931442645918869385069915006723\ 0956147294263518760688588566359036192191400136488975487766308923490735066376276\ 9824016000832770337196278893764397651241158977722354173722356262623483353358013\ 0049112741957865243898087049557229535643051386361823369877450816696248760344769\ 1575, -10.083873629417984280905236953016238958132429314597018762958265453401315\ 9393473382186567031728009216274266672469578928417924962629641652179025146479730\ 4348283405082213819677082057750132554897549275302506493136500313602807646943146\ 3218754840296404987941412360558593448232231332574458412207964699167371246214107\ 6994471380968787565039435716323095929388485816962218091933266532573206242365313\ 9129254243668508328178264691844151903682466921611641263440530972675986695327755\ 8835901790797853917999527740102641651263410430, -2.6032829710061787068640551182\ 2707828039147153631815755368149436988319314721590620157808345081676706394030064\ 0480431502644916287773627910321372961289169061980373147214606818547421000560230\ 8202684583334723566182883088280214713053610926792691648034148582079401266295609\ 3509416909213357284816318748132447133732355557055497436054633444963197225715008\ 8371613604684908452408430737116684486412240275272138286756832441412930547928641\ 7227864269267617594520885274698425733308062955401974009886321121849651093866228\ 121588663, -2000.00947322171918119140914789658843045476995189724787316637570480\ 2362307765682013049113253929306987778057705463953135278568644151465333724354830\ 1134370949681513091264205064971123078090266228810412612978475126319946957989516\ 3633084136971684903281644830232650742473718806758765997771372084673381646955630\ 1973875647003334705176603359021300005470485751076441257549478639752954942944057\ 0794334924577719111729526034087199614581476805154225743448312018306544797875321\ 373925747220868132188626627319315643724304633756255, -74.0830401669506676544007\ 5270871475441569361888991888637759790311265311067889810348025680926083001591753\ 0890875248838243099602481687814355180406073978334647949917167748256792730057589\ 9385971805326022212886520799365706166478005583860037280060006165468166954623850\ 3649856337660172550454191582358044353232910778100871227317584665008497227590212\ 6349922414167395190416613276789502558814760465816115948391068152617254844477448\ 1574133891290766174925534421296054162683480882121693530363204184493545605903879\ 59486500943724, -5.838544586817723573548026123254110199158194342762455049674802\ 5337113791858221402071056279193717103491138660678817121243916823407044216646967\ 6222909937731434086366360866334800120289163153533844575013140607967467344100326\ 9994390221450017480316948572945291315685670369339043543781641256556213362783353\ 2823803876638219559421127094615364352696014815762036728853794541788339583936208\ 6905492515792416889425548497680579711770863321126701890695536051702125124796793\ 47658728520905401615803665785939036342408664446479794676, -2.750297356151460334\ 3633414394199137744182523538431164227958791214869580545330071297824639536603853\ 6030364240613534950578052765358807845126373618380898670713527682500935457762397\ 1520844146240729452237210007054886852649722088841919251371867970300123554907126\ 1772603385542875384402647872981870747909184084412932892613263418719143555768673\ 7999351204763727877460142082574951018492393238563022462255558274716428550700573\ 4393547543611166292533446283759722117220986831060893408059123008064364542954474\ 4749687350129639337, -1458.0094476254512508649372478377718114799559741497322940\ 2085210502968048050612876313559063730978941970249335853011770875496161158256728\ 9903341798803376361133850932364678279325417507278459990144765458731686443409252\ 6797157883979380654002657615690498126141033925564895850125231294761678754312133\ 9342644047465170111728015471030223244869011862895794429483327499895759007024692\ 6719998447942427492130349474022885864855174590364571372729975535992126901509570\ 0131206633671143326132517231140180720851693906966771952344994, -182.25917511471\ 9949523972227209515897183515107674677388430731760535546571849362346830525458852\ 6523437938349650286395174391332420737405611917576268013666132528386424778232091\ 6692594830957844303650282609981826311011504562260642005079451038216534851844190\ 1757732866481184631271064961173433761189076553725139615140729578666250896494641\ 6541731444915976441640088354605091937114791781484184073229551417835578924935862\ 4041336519892345912892474863294232242477276357247203691863435610612458839506506\ 375541162176659045036233, -22.7897867420364961196910089401402324944494197060464\ 3840485586718867523392578451898956571504612231960228735461749488392505982801219\ 5550120343582877930821748347874541895285224504131287818605993208336559088235807\ 5463798631693037782453554448086778714184369203307662520946600883046292619385731\ 2038282080490128143869315699712729967826184474944268126927264189939394026399187\ 9835520082846961080263251681491458692560590716451925262313919180182834590385379\ 117202031904738570521712556923267476432042191966319661606221609463, -11.6721690\ 1378695850559171488867253702888738344433553169129196813062901696437248531722600\ 5455719127552565521768873831225303723718786412319285753439624098051511405887119\ 8023796811308438920042297644070922944437065117300102149160383554630930585168104\ 8620988295543615505350555943233064077422339480980232644569342345566771157667537\ 5282985414157139959944049404292644691825062532240512615977983915903400076648474\ 3706935917915081155454115764093501466927882597713338763028091579274831459671258\ 92198668822057312789395109503, -4.258061236009351099209566839362953180151947462\ 8413087754649502250942564539954062183243278312732716989478764390838216564485390\ 4447227273891167431681118977465330854088611387559493126774567144534679952509205\ 9951219301436939775311254849990455864362636365849872956900607350298563539232683\ 4159106411571428386775502558300567470020809710973687910787077244822297471392596\ 7393945824044544304682016002581510612841222783285355736137981083052157947650633\ 58053110117172861166924880400019752018779343647266537796084773106235367, -2.854\ 5183464161380146163521375044527082020473437970954773030392318683769815845256173\ 9746678476822503102605503005788393704287479918418186355240405313267617954282611\ 3831577594009665919693600103201956481129118851185720269857145550762805094342566\ 2810508664726593582288011215770353246636157677671302191344318264239490980716746\ 3664588808604311954972646989342380704385258800180489920052945116848989640468029\ 0093633248330247369702586000526480692232509469768669180397613555886156054959301\ 6462485678120201197822069215800001, -1024.0094152112581204432332205190634283572\ 4148154791066017954474271198301323173585016033310827041127319011037735439673623\ 7893344426107401383062711245287536066231010730298410760271140950547832843441212\ 8630545277058833869450277934390604560448921919894860564176898200312112126158171\ 5569641525713375280968297737368707362243461595201801971529762311451744599501425\ 0071666367131612519254837823064884259758888934206224991239402021591905463502086\ 8787046542401197270377747013965464139568510025472779787398195538789384843000, -\ 37.9346758567462606210072011860319976300397881308339354759538496383878983295269\ 5368104594068164377679846302683617816993327679909864202405193652781516992602983\ 7459325155879029063775359015499523591967932685687483571705592566870443457973657\ 3810832247005818783476030394587002519884701407505843837861093319144710887408976\ 5190558130363665516611754474075809076384584218390189386076984692412487915181968\ 4546860484341021820783762148973326784096622548273231043734947408478483663283445\ 572539314098473829134090074902819292968, -8.19992222879188860188808495538880739\ 5381625806001861026115112430135540103264356890945190221464689515407270110372666\ 7401197557992376914481639181838523761843002905685233569776384985828929635676752\ 4742792753361773056457804398614370116303783718915503490505053884919593006958343\ 3341775556959684821627520392402622658599585078760850891803112726684714089493231\ 5723724506961658627739424887523776503512782370899965457984566434529735781221630\ 7700449933742450717950833623409378732591075425614859182657859295514325450496528\ 25, -2.992345546078786231526880560582723116734633061821282235932671407651176942\ 8130773254457221177751807182170981247934059811549609550279971235085058971706204\ 3339000289384135529536239815091556149407756832462376470065090725399668543800942\ 5504158370238188124749449657124527200164001944341310753621271627939877984054741\ 9138808593295064013241697586336064091529026882985297234305263984971803501398811\ 5999940107082415754872910992325388829696023146948431467657993243584042576758351\ 69625410067303582117807530045938313904572716, -432.0093151567691845761995177507\ 8472809704959013550131809091559354319748669493369687701004585920886577149716062\ 9154746829184240421286063474873427372421346839014243754954778523903904409020321\ 8530278596855581457476650107043772236640081956058653198740804406897534141974630\ 4078299625528230793744408010778763098268900013720108713046609264931555288819601\ 5724295768741544350774949775286951132709060786732491901965993077208783313693342\ 7217672447794145919547998798128782573890335034440359357839454443584452875746759\ 1292047, -3.4631016258139725641277867062531792464687208453514480464902172693248\ 3700927256816782666406898864551240321229728540389121741874014095928304272195612\ 4443774105399047764436132565655037753336375050459143460885581796140228540816853\ 6911908401718113386653504819231882972390899541558504488278430949776159588199390\ 4148654102283958968619018174591860871869682091672609803942543649366004270114200\ 9992026514973230339305052635972277556777092368984863803362039304806586957299735\ 5741667051544005820627807479954348871622156737567, -250.00923204849784822528557\ 7175736852661238011428273799265361719497324781968758624848644913337548811175278\ 9604765973820541069561863882332152133909594599208586769428050824984122765885535\ 2436762365368610703088184562655007886149058633030873606721197971050854619618121\ 2338405991549304451151498085820070271850964854812671109034232548049338149053071\ 8158769090764968874233528806086933776300714580063104581862841376291714351139348\ 9507480267516063439600456855131776719849504421108908215963891619151991278706607\ 733574130625, -31.2586746393923081147461987280143559727324371147918858072775904\ 6045560818354609719150929756374852105238047427085554842247238251272603306529606\ 5881994464036956291283005773795616472956236469246897654071781978066455403690802\ 9533178527224688743157878928122523172776810708842756571268330736886858607626417\ 7467758714281176578997088071367438488818619404266252027311331613386482250476656\ 8246714099120212402383377472155920386086030121329617614790517579045909364339975\ 651125481577034698136441458989220572806594438927728804, -9.26727184948416471683\ 2916884738280281945959631024434754262103183261722739782196864498683897998135395\ 6611808062805262885444619190163354174541778991494610056015958739327638470336020\ 9695810882538158005074829830590165611415336407306376033030261665913624018257284\ 7665108995540701848594209235188352931305603891286327943572413723071917919185575\ 0256243048376380966017727825051301083667095511721155930461768755034560158259996\ 9923331316482286172073904053667677171995319039428632312386544398216247029387537\ 28209677741480594, -3.913491123794999366898032308467907172325822880021065803280\ 0644381293912246903096749180371009518979628593015050139249780392122418513958860\ 6001440094595457657510557594496233779330222074078761719108299871283228580488714\ 4517701075066881031105795932247712957198411050038335899645433393816475912943933\ 9122853338066862556234542581298209260806789186998946003069426965833239237643879\ 0528973664161414603377472615083927074878279135715210731701987510034844081396637\ 44619902899709249789067678194750743176531344035606944799290, -128.0091022140988\ 3677353772090187438409599285163372975789926185823648368100663376506994643014249\ 6427498702897739980569212417457518715294318543027681646468669748743993604632326\ 7498401210554900288484101642500203851824267184141988958527247167315077993457059\ 8009621393336211284750522408306514404286265354970518366446920349022821608854523\ 9439123151248986952225322815100723288346092266697866464830783884824308088670996\ 0638945867953172807862122002780435377469463489203015771087415472187960785102660\ 9723010646554430840159, -4.7481852151651985139861039934621542675149512611006934\ 9765945668312185191349011322764473176793629286011395815533798941099436022677907\ 1821654588396558677414917192566473090602226388515936568290964408342057741673821\ 7960898901859464185144049896277834149594559106296420998921144389937393256079495\ 3343444788641280505142571741550804003618654713817227130494086281426395898448357\ 1745737873073576040021350996420223465447959189070359832094579930162665902326935\ 1051489537691149323587197089296148479588119338496367849521171757, -54.008871809\ 0125180463327116239893109813141935925406478759337789296726668397191801953304466\ 0984963861764680690980455170403331387271387270867215552025045965209681391963750\ 6405753928428677380821398255522047588565158933033478442099861047207400653025882\ 9661714107070377704158649829769103093722923291580031329153111135527965111317237\ 0614406658705080808925739545765085005173552162039636115782905491344817826834331\ 8626928498763404988643222105679051733518023315660048497520529830689251073896652\ 760254222206142602741809423, -6.75776780179768401059351921257719305058444377556\ 4437978014210175481650971005161516058174453729727335748613910405057729495532504\ 9027114220136693552841877905372003178508480031156031984877768890299720617698892\ 6074645142671130853840111381121883182904463295886942186740606214902293343095580\ 9114639336652523903482791947109217300703867965622408917300376108682720970674075\ 3864709887926237989558724807667086290893039663994288570711333018557062922311933\ 414349592379250490502205398120343683344900885107729493048024702570971, -16.0083\ 5701392866142269130650594496278518559361963635453530929575366780924601449801338\ 0680627635638855484923187498947301420447148755692505598154318349064500626738089\ 0446175815172559329698403061971747701390229527236042050850609108327756593483328\ 9872461184653456364914752458848134876879971977152904154018975660956790910433553\ 5185231486087336088031748120184348799265538809256171262428020396762602517486891\ 2307375444092651858946740723662651771660604924949191858761678684903219802120888\ 36042910880754769657233039630785], [-124416.0022503457548927429747650134189925117423339715618764803479325700442934\ 1549691967896390041354145002242531289867307405730524291450953097751191933498818\ 8413499353230728074730584786828103302918213581608678162910135119070076525988232\ 4323141426872532694946589855970668003916567264719183101014346803764496304765289\ 3848754999503888463429928280743770874325739491314588891704827206506669429203322\ 3923229914595607466477723888403363842276256516338644172200635119148314555219960\ 52677306028435306534711981227364229832648, -199.0686880256352443408049156806939\ 0932027694373672703343666455292158714891074404092255175024732411032731410887347\ 1979296619508733835377800385049267109740968033552610830109376863622113823351643\ 4763810228919244028310501173306409992451595594656577057908612251884173788471205\ 3174529616588694282471520825114763645561860969501837659008249704656563725291163\ 1956117664188372764549713785714739422798842704834230359137497727763599022062862\ 8089540769145593165999666218548183404780495968524427472292709764266782242675807\ 2083, -51.821943629695208873225957654075594066363743943856193405897112254349949\ 6636306751949637996417948687132553117236799442091610439599653272924963170981134\ 6426227705368340869872313074848078895744356176144288996185700621050777059947171\ 5274399143241708154346486189674310262714485442160361553476047692517189999599767\ 6232118764586050567738192874934847573230118392502488908960749105834923439560827\ 1775532552518898368387233222853165645607993167887664094943453693311603258053026\ 3492573942930970419160416590010887668953042800, -8.5022508694979318864415970136\ 9339860312809079749806654734937500903939775613315013335154332369262312380353881\ 8550293627109927328154185208678528195948500387698096927882352504531968692508362\ 6153603532425132914775126397812389119543557546138136276663425429577620724682402\ 5717755809135188504567643763743341298238899377522587672882300952923339021988745\ 4402797824717266559491285474545730493259873661233739613111974891395771064145527\ 2097358728626101528162877245087258452544818706926779674008639611320942599257550\ 137829772, -60000.0022902960246185716085398735848326867662798537407035944408812\ 2722185302154188550486072648824625118046287358134311853999528034420117618694296\ 6617142398464472757961308827553685316401397276747139640807975359040749507024139\ 3642256118029278353997620600561042343207656631802447041524392198974529279947193\ 6879631331515457320313501211500450624740091134583690591492358591200672329171326\ 2631346093783712000157262873658747632621557062007233534244567924831780297485268\ 519828950408440597574029514868896791275184736940511, -740.743526626174215532023\ 1267192828960923282401506940149201667349761347637327413523350095643220778946389\ 6196182323875142946422940129354876414662247213740873680684734307034931691468879\ 5770006046908523671294500185379535532692444655232872226062807711485470792940742\ 5208532051663097638648681393457851994118736136888241779803637090456281509086953\ 4397295573735506785615105778476148086556475818575865754451838977110962438936178\ 3751989910416418515084171180293579900226359697659651663797430940437722285318636\ 89986290816809, -24.99344420982598072104485946245200710845427427920278511095827\ 2787002534646014233738134014750196667100724202886097020844541961886456043712957\ 2808050335760064267079925605900199692582838544398238302601533388316154192069128\ 9455467091646580655054846401693909231990699504281806932511912509520543628674057\ 0434599297656509945927813787293190674753752842929871716061107106146558913834454\ 6281793303176691531062982287084262038858183949359490675112128244145544763827248\ 76805914466611870387658768413918329299935663578641307583, -9.149370219370179440\ 5432540730004308525309431504093084547414900773027856791397073125179425467379611\ 8026141158954575764175028469519565454378734653924491485298438267324784778297154\ 0604178269436543486158689264366237580172358926528596652414887779036409178223929\ 9674272654273116386771181908850799870787295303334531850508655995608594990796351\ 9080489044876244921451754059536561669663715497482332896755020116097167306945408\ 3893723642894294343641556604360072613485902737596748221144707180003636158093251\ 7862235179600266130, -39366.002317047945884293120735266244356140815197849527763\ 8368473190732797108008511926920207874805529931207581217271965677627558363584933\ 0853920625810444620642143513127564158568313769588306012867334315610275020258897\ 4607636682313457315947745487896307880996230225218777030631363124722582628391129\ 0801152411092861398178576730600617125876420378845990124376179515556113750809186\ 0415841434480816982352998487144289728403485109996960047746424507043229437703647\ 9051587936850790553606775293050076374596139431877036188500762, -2460.3775896796\ 8653113658652011485785284862113078137525085035381255420949424142825690490991031\ 4440917040502699799211142983886642115471105166450128920913572101357713888981244\ 8480855947294105771788341380727299497646415868831435199933235815220511244889829\ 8648003432807213773561867783772548307609461423137428234051371812521834409731510\ 7673549101332778279512891746815785935082694438359081553317706704176541961762574\ 8116222748157173009953435669809130604037728429028855523512003881391782985207523\ 603814722336305713476450, -153.776598783188651860481942824204028334564595020408\ 6412332593192700976687314758280075458499296226555623462166436581105773003409051\ 7307856180329564156402771400918886456325643941551724658828853367231233355693495\ 0965363175740797014732202209579025436918817076649537128636292237832934174245284\ 7645255778898861882618502407936503115497911985663558802656331469124612188335171\ 7063804545604553233019858065802762972756714396792141634273115294815759838327410\ 171134746342758531497027064912531605019556984483536378570565010646, -62.9890590\ 6078699676958632696360953621753292914066211272640431437172426464586556546488200\ 5876909446714805495945203001785236826281725589212393810630688234699764044583937\ 1756886816465640400372800186894115707491318747442896462782449378971312367088410\ 2743893144572016157422689833839753055002948045758931179904369418595506683922568\ 6285249103964875632173893432717619904195980602633120300589855735803326593757755\ 3740119143333440166054399787682675563688134106185982536580213420903171087965109\ 92458604909651601720985869476, -16.39974328133383649963848583821567998841196144\ 1177060894230179190381447843530984808781759344428359082388382667241639331328843\ 6040468340112601988356292672032785644023949849213285446608560573599108875426086\ 0326862359176112261908147877238722055921679792951876386385451892198791191488424\ 7705358125506467176518137488178993439003602574858558358538675572048224662035191\ 6697954850780659305393280843406509870886902793851258535334819984618690149511864\ 88378584410150786127462984639808740101903911225027237788853300494729061, -9.615\ 2307891318732158744983853232870284981084157069102365478550181995235023951671605\ 6317219911331287607198524750988602021806982337152340185350180101398851618245845\ 6320987775586910395481249605854566706235054207548591191320948520063607480597021\ 2178636112006785553802246425300302986950388730562755712625331847868328206836101\ 4103567801539325404807640900786890933299485376738832186314944352718638738559967\ 0361005527195667409449020820872217944654990626232768213964793839599378441349231\ 8018609123166313926043503595318993, -24576.002350620342834271392994231861732869\ 7288107152190457616291817820211532255168887114550736000059999383208506744699809\ 4427377738875621584598242527352270994083420765671161344691195231635222050873727\ 6144370558473757878790252717026539643099179537995096357894572590529444821178216\ 4901191362048339972258166732470996409998125643911358836453620617619523519148734\ 7857478617411823650886772877994280615286576247055344226718660503402677681223693\ 0278518522093307097038975829909472467026160804111989188393941241662913149976, -\ 303.410386481303025106597488202753116786561731185071074214627493991583891638913\ 5277199378434908169758886894875994066258250101984114783157534421258868354777159\ 7084008391182464361325655287661514628290396448267524349707926784657574184454657\ 0186996080475602623341268766768568665487560192835646694950471425085818808160019\ 5873439112428564849709475103181329857753208026311776878779404270373737560918267\ 5353099485432137896840365867654575215708693338714880668076934321081933191526511\ 318070729788193772366981475533101798721, -39.3252487877934570526303405663768461\ 3279846711419719995821943770313577748551577091850911514843241160313536657230844\ 0899593952303660206346559738568173361192188235076450032521376508110569025599246\ 2412845877798129824987539960696707571125049777008241420543468580447129391138150\ 6759848176716611676780640153703317666534020989961968502591966067767220820779460\ 8859399407059729949627889458456936946757713756433472259119577156690345008570125\ 5739916666521771878473342111250757909356645664383078142599702942479120807351427\ 47, -10.24008629169700102928262030224582477067735099911044231529562696501989894\ 5722643541214426559304801788381389520036200574698111207597144624919048803766939\ 6719892570963645240612603252019410998137002505756037268916394446141472626364595\ 3184633401714521618881719093705662042137843184500058773476836932168668322297409\ 7764134544113547511136901298206339774378993772973541100972934579586173861538339\ 4253792367209640955732093139164002226832923852127497609352695477527118630177258\ 41045944857989584615700425519943497005522942, -7776.002452212917922921113002297\ 4495791549656388650845394919695256706129549086926620570446903255796415725583553\ 9982438489701460583031216064952318607943386571046383954179920038655188639488925\ 3284713767954572648790614027755204668603190558979380165315647087166558045338647\ 7706612489786722512069671988462808500415273979400652069511979714935193267004374\ 3768727611168080515213591332205822392248937842490928765614089970298617905051848\ 6640121900471543998573341323534446647660465234497693879926112037452085586288122\ 6472905, -12.445832295487180286485402512148475270538156742997914182940191533048\ 7624383016132497843464929877865785818522862008181697578535591601701991710208189\ 5745574055516748030066684370379823171482582760808549549888557027215930009571060\ 5243019197474114615396809383710160068712856773562857783489159424891029762235322\ 4973756279672735942415687755531544379723678680606921837241436773875766779827328\ 8585651173944880124035475790346576785337406275099055953442630486860737386910285\ 9388975432713356335358466106605881602242746979269, -3750.0025344204564637294512\ 4659194010281451041552410682147794507959050920323986321437415678703647653727503\ 3527357359743155676097134529599756090944078393757706801882640634301112846632820\ 3291723824508676081403706370944970297604278302485436668759744355855379083376242\ 7538507795189177558281753964600507762823012159093837271656461084796159031444371\ 5217001274698996161253209172211716431078818546955063665379184100089703889557068\ 3534780592537866577934330151988513607646962610165545716774887354074776343108822\ 913830725574, -234.378044308864384837181012282633280783588058666391046517493281\ 2801731093814286738908459297381009057301208473102113158636878043749549242198476\ 6330130956266623030582071153282638590371860048863284381794471424232094469009284\ 3862650740960509658448290832662807463593385588929533191330396060436037580041381\ 3757421240084375116528036956504827139856921999923904361252853571494627162605020\ 8226955852304807587075333697548998101278193954984937700994985586661978252534820\ 644585426474038677561164951216804043083555512569350875, -46.2998764788357895070\ 3673641024220545073273910531722757595839770928135910654261717919883031191617694\ 2141047656276455476199648979143601515618507753761085765748402574142437510569504\ 6272826083988004783229009421597870260118341193909084225327612963451693267993681\ 3822651087514682579861776947852255783957679107927312581951585585152228036628437\ 2842098471304825108066516557933954014042140648135098986564870910218565460849099\ 0278849974004000090479242769263331214192969674787003865058521877283880194319022\ 75794391072897588, -14.65257515570926879284581376027025399633327916107119172439\ 3499943736260598633750008187283021607844850851358391770497975626843881712244108\ 5899804969080342024269985167941392203174216387239058917411071344845302668871433\ 1177703688554939221262455874795237064015127845872679716444954314389825179948406\ 8053971151063614669891752554158354064401697305389761236124907558609471158084108\ 1450742597311703289696744583151775989330857546208533462652033067730996652108053\ 01516880633878349319175456668216113472433409078359195686541, -1536.002659257814\ 2614961780404500840152060203427079307078576221895373831819109703805321354531160\ 6595405965544698310652232851958662461852800877796286432778358609810530177814479\ 5973071508768724973610291037032096822265510448269680379493187715043200474525384\ 7800422843234429545978375914436283043435513085009727131558515448682341761954368\ 8307577147364524486904768162243081418774812121024670716070578540188519512023652\ 6097738129529572915190825385659791262406203854860392289881232066403519172573772\ 8971865039542484779384, -18.966959508518147796209877101188388374481424563534740\ 7728098670393626678747615767316955477448267474754922277591122492282205035995996\ 7079684278285745447051602503273661439449197666957536070587819127465278255605179\ 1508108286479410879793510321940138928731087259030123901080538112732693680940676\ 3451692124287123060607181522641702314980984685586281675935017764725596946021369\ 6591216985617054368449382069036577864815717491403826228970525453802153579162629\ 0783715606359429944583933371164592041487206449429807722758203487, -486.00287127\ 4075110649768676613779978562936263134538963902000332527490110514434226664353675\ 8300406611001808043369811165177198403335292670726919008853655970214450756257777\ 5994782450509809231208189507764320463874201159437290450131456895611265401054487\ 7624433330217945617385974543677644361915121487403723381072153026253073660427146\ 9591151049211030673370240490945598622556347223169329830435801839833986353877500\ 7287215723606988923566381034192855897760383838952865403693180369411514753278635\ 843426693537311524597078193, -30.3787638564475421728197183619439543634892016462\ 7649666472740707431789862068260399483665896845976500912686898923455643539921761\ 7635976609764710632401286504993764877083702582389343607308985309091860443490613\ 5323872028548299705047090359476189440931537630403287412348442273102072936876621\ 8494464105592892942268306180961495825160898500375878200349129351512789183787173\ 5113808706654495001614607721160815227111504284300978879104593724357959305283491\ 374309237659137891456455530397336771275724496988829822160328522361173, -96.0033\ 0924531907009738976722069545930251401884655572805429990806567091944187631603406\ 5569324623881120101080073416668249218648262067733654034087528849280367079374699\ 8013941211644999014527805344956368126681099606269490575406874250355213706773829\ 7321674106971946046381045167376705325688219000006262927520094753447408460269814\ 6037540358582793717960651477378584973368287298053660607450738021072866227751783\ 0138635509799682892812398756175952809822685343244388145864145965129893642216665\ 11760204490950976191855224271513], [1.6683203472782356459145185851681941041894037995031727378491773191873544841968\ 2893626830957359571253182948140556560520220550570506606350097760947076183391283\ 6268358628721303456862551067595890176246552683942363106766192744859201825992566\ 1971913956289755015337614395560177267551827379979067767128335962795595926511339\ 4698731252299803479428585453682739140790086384088939386057224363386746098683736\ 6416902175652707589635487598890144033573760231104636789062953731693468089230661\ 6319719522997989414238951243155898641579, .718977986210599880061892644377825389\ 1445460100005046048050199946063062386064788105479038279079018357660297323731693\ 0991202065435124238821840045616209484474030637168994915604419040765751621285055\ 9452309630568543473692710090957494575989047531901520992567652971417250803587808\ 3240871585634303268041454307624947344549819471297104506530387704367570820607034\ 0166214646128427565893296161048475424213288258240353817603123344750832665543044\ 0205563335095373455737482475616947476124186224024766550749244983288519891265436\ 39, .16617132171823714002490097273845105314641612758667269401002406554710504834\ 6066510165121790806912136635336677547031637092949685516881864506678800206611605\ 6184596770063846991443772894286810290527762813526129616134773264170521749606720\ 3821763597800627436926948029975230509466476519888500045661693677480870069057864\ 4483435018360860477184773455421820611426131214045069401365058958747420101280287\ 3187220417806293561047287960263322248332999592219174224077928282590790936605852\ 2075161512441778821718622512826705062612454, -1.8225888811130161367214946897165\ 5865867860242393655877207636352451869863641296149191855343158143714894224156689\ 6421433144557687796303421035063830381092061995076278173320580619409578218846325\ 4686710571627278258579257739252094769447368604746244957935371019174290913094290\ 6026859851240052539569833576145739560069931094540404996147991840404014332267585\ 5655471023123393436728651272811466279668423516926302633662356512893920590637013\ 0174176071307685563721597662163533689612654898807680643582057388795028630965905\ 751187, 1.622811713696867441344191424405422207488184041166042830680773606870652\ 6331613869512559449277995567693174885915369182476579494063591422644460394370324\ 5866291275811811490455254250761033313171794094863712683538535568303406317118465\ 2920764748744196887146031353521308470964670355014495718869587111450633695291077\ 5620432670158060973492207305345502778103073094282891238742387997363083404593786\ 3353266069411312103468088594186777387789551952410713850022656114684488653839570\ 51460261459697805323749858060267186319598073265, 1.0649071946242905405716235927\ 4675931251391711147206942848189584293192454018578292481292458865360093599843974\ 4299553015590299245534913396698303958106652531500529474081799996652611757221726\ 9727132124085988431175993350574839384615232116657963513067685919628306805346931\ 7460150087543333409400607788432377553328471820026323934481346721792833145461335\ 5016959776340492156997991848674892850341506134355069220395811289347015130459607\ 5620039112898614106835178483037501272379962018434933618644513222459562735753753\ 890951469, -.302668539265825884468136901536939423600125672238641785158523810225\ 7393472652458992385097264673592232018653718790878632384806061208005535145374941\ 8654618037043369581185222161005511052083887972122020165835193771420272537345879\ 9268382660651890526266418484533797950231806011228333935103946550404075425913103\ 4258515123591165183848049832068042098353428477155465956688297719560751159898406\ 4946769542152624489445055049264495265671354521769617640587496463743258347026819\ 455386900823247722622437413328802902378797060802926, -1.62281281396927667496568\ 2999227475254223371617672384809534366523239861144920695759278036781946165982359\ 7519267698021241378601348158481903555894599675620937933364552632772090801899542\ 0225918963744926733888937199195202273316038652662832447703858097989065570984575\ 7565758407981057907746467209038933572703242400763364245541518960086413471862995\ 0772325055733885585412766156127283257314424454815857232802800125604745887574579\ 5204759652530254373760354526492509964512095795764900251306222365216276456704620\ 99564220566267, 1.5924267144580047909310005654746945581398607558562802436209063\ 3263400260125900221601623083014927909433335141017894885231917957820294951349430\ 1732467732237476320481118926115375443218438004404282506015925633235761530934610\ 5850697018073118537621575576341536917314581786405105489733501658219685669260114\ 4250589590481511269558329936127852326223315864911118349859791736661882361847781\ 8544646606436650560830540458195860671502855950893720873306242991689273357022236\ 8069773219479673421603016909646441654314813188547925453, 1.28539582745322707663\ 4373134058616249634435610408159875260959224289799740893003776386725398509458828\ 5759647717679530623776915010484329701634200383912973238909620692533925375906156\ 2250933658928111714582199343366870559139368233968690835536832158518129349342739\ 2559349145443746551381641398752067069391809727146611767810418821918074766470546\ 3899903927898494681261795702875734550426372738645226922477649605096764661431621\ 4068990731587389416314175618178613261122834985626038135538927900738900427099679\ 16181215918728273, .63275882872879925659567050562955080863729743558255957872273\ 0869153253290434520643494381511244700680909078480621836936090718405433196425167\ 1209452870729158539176704035500094060017245288755895281451107751941756527385287\ 1398911007776904564743512593434476700014557938228846640331455545791769047093897\ 4557867468635479203963409524239037990603880980827696609608723911050976216436128\ 2336084325397352176660691144686597827814838160856466406130098323732653651522921\ 1262648690829713650245496223635606097558491681295423255892, .265427145263097771\ 4188682734197493272352954747770294244232863620205684663050914416232278489369286\ 5299299299802519699373712798740216392425148356669532067831090551041037971426669\ 2736386981324249951724165535295404767620648191673550641604444976660118345729865\ 6523169854196352237684413169435076491598469655027718200469619749317607643779192\ 9451214147564851709943642088066388242840989281036842733942049488043540907632648\ 4650443983216905751596098188924652347624849887377845058856316567981581569967516\ 86166458079551635381, -.6916578329885871232823484694140745203621279057350891110\ 3833697127432360298064655170146061682126039768247955846173189440460532061258687\ 9450975634786938061387668249530975241610717451666089597432546508360256507575131\ 6233928609984473576774646308801555086657789622278683693682672512067841439593794\ 4193381157576080578926340859415739879911240799376897740196439828030329845032052\ 5387969445087993853575986619230534294684069034867635772829905731406950699243793\ 45215326643514813980586889918448661304010717408926107011565402, -1.505733557344\ 1504368924779849766494737268993919520186049292705247388093660695831498755035927\ 8614462880311981422955276018934560852286215223139779349787796009390113281951864\ 5364119450047183005268818682550393182044149018140007345687967309822152833173251\ 5213414402869988827811625413671185315670359427987822046954404266085330000241850\ 5404976050402582382977077940282641131804507299627261753092636701434590746587088\ 9902341371515643170044423252304405388305107886323091872612887495079923553156503\ 9610541536693499093713285, 1.55438549497160525257316423565532579263353335652850\ 4064824197999773161502330604900183369884285038083007890332392543262528948336469\ 8181945931169697800982354586943040490016676853423614101461156002608825031638151\ 8951066493218697204599968114876823998167180916523706340968800630864137370224197\ 7942295551952914732941343536359487859759878384009391438598112889827174839083902\ 9771734495211384584519484580513746706826690229967381607398003223752857269460470\ 993910795922080408267182866927848472470642828760764653284580870081, .8451949868\ 1955700890522961939039098780990873279165830725758228391948413562391678692656344\ 5891726259500308718483761491349733411275063749703377649388345960934127026539814\ 0988375105084817119102565888266610212881410379494519321800861659167113904621849\ 0800866394031069968477222003829672663839381970937654054481156827038507663288625\ 8628069114309560590561772541052199664412253377353056704215201987112436329945588\ 5086685379217788690973465113387978814509346958616113270425085212666215476648903\ 2200407764319147062485234260, .969137720934199948304403924312615136110850190092\ 0604936032132038129572326788125263113181887887287795078827086765604438534014119\ 2080778286800245525261254984254333308907191470158690033341001145319121383032800\ 6723959693883659292907195295443677680294819086869211908573808045795467041285589\ 3800298898746955982517970773186084936385281860031264175616868711236358709862940\ 3391914483631847807335522665268007576004564830551638773868848215620956477058505\ 400265595430019457390171020167080795290102411167060089619057374638418e-2, -1.37\ 3208524942983337815450459212064708082235433218104807161221022213764839558670375\ 8586380543768511972237150797650901721727061698752886063076984658627535991681414\ 9216289924815910611400373802974230965881235827266905179370761740031530259991050\ 6564993100226421960774448667641887976330111900241648133695244476239273182115515\ 7546527561144838723769610167639849484483124575159971082007726940788152871091346\ 4215469491183221748625671780166134799948792875132873912267989222732597872560606\ 44464490543176375251058924213467719, 1.4397682422013487069905251880122308467576\ 6567499407861325231319843053928416935438752057936143475019099611870099888196081\ 2162415847991194601285146053485946219868707598925120348899194738066694691136069\ 8329645559225821579629983637253821519738845078036513635239506129433049244331628\ 4820801292218620219464875497786296347039532966976929737084661328026685042710399\ 3528893894651796057346110145147532443914313115051779931212888267807356815345511\ 0352898031668444858460717362202452403296463899398924168114124884825809088784, -\ 1.04066723461859284732574496893919229553827371106539390644935413192075771276043\ 5236879128959752572774012920354779165343390408487787542739901296973836036941508\ 8490293353349941836952525581366174925511389950124821471211492044976587916625001\ 8396478339083282755024238301556396007196105181051807851664144054584791474385980\ 0975974061363294351055821808594123936981737013923249683968412560841956351799134\ 7115896999964770474331118650922789215833921702375798709309460852687426982124476\ 816148870874763140337410370935355030296, 1.347396548212325938118996383303582934\ 6304953257585187755194832711673696021330058297502057627211077939577269667877340\ 4307377537864325397696376897266423258154612066629975748840912735651930520610880\ 6897329902627808540431463463936072962112625594302347662944245988688321768259093\ 3500406336577191167019074743864782084958505903688814290377219974731680364568564\ 9439470270841568616600393202445087023975147541101468627102166166805922831631852\ 0214669788932481202714541539937758737859315121459263240850663944561274043191703\ 5, .769881289937359437093137330257851247887597610468977106528212601458975052138\ 3655041018023196018801971518924509993095580143872353363333776818770546839278357\ 0582013094366184733810980313610107716142874026855033259545516299982134071657935\ 0346545299537135523729303892831605552890544091159079912253360442888796094754787\ 5029176968965014997123593978468320227517538550837289731667456001542403379416491\ 0192180995919007730790026154690846723323645925707767684973861609840001620775594\ 615810848327987957645435115512857845909441, .1047652186193247932289297638834602\ 6265158338551159133814859779326850942401431127573592956217870463578500159091435\ 3355291986967585948709272998945263110565723642061198629391429276065153927166268\ 4647562192263899152462223760829931925783786394750860855828668494346504673850423\ 9274007696661248215632523415721634333865140819702550920602258930431409770099197\ 3642630034006965315785314587863896139292775663646066529554701375148628058504477\ 9047025572106023493432469823881727904277400795510039546070990501299750045374054\ 8164, -.82176058790240031565331086989997772476274133683164078716833020398782119\ 9548715123421107293026477836377362615990957370493471878708597900718361053021019\ 7041396232839729687348813384680556545997910160804145775695956722338888821744964\ 2640009283432476707830361629025034644043204153197189424695600801352952232380810\ 9538001176125532521013149980182346587513504843872895638600224872447702898960430\ 5144923473051444045603739379592876930472653693383961981930414692385307715182039\ 5747697880222574724699165584233863307883156461, 1.20733281600122188275944238199\ 5318774542137580441758163088083974254569787851673323087301565607974692416398256\ 8839469024443834319499345262448320838148530065659759361212791987617693056075141\ 5363764027016149561303055991359323967126151305287913678393256194547550864107819\ 9714681290018482759453137538792237593633698556337571230819670275995248508751729\ 9349958938395761020832267853588731291034230680538473939128417422833463429101828\ 4160610061079108372970640949387446017217620857288715832781762272658574365870694\ 15156690, -.5425432646619137295335318517343131618605951501281112277469533634852\ 9888505399869183890279276146675324212197067139894130434935105680540545656109469\ 5795004456536732477361568572559503794971391633275117668448230636654488455648051\ 8251422113942896664938085707607804204341684655851054389739510800158824951922194\ 2896900062215893384532324007354122648308643383929875286467693167703292779360967\ 9960612524861605468765510281376795915818545596467145300664342334285933791359283\ 25238576284023914676175349394705539654195520017802, .96828844231571330421014574\ 4478901767103706466210760437638783280431173650114396099087519820296956812165137\ 6263197695058366928149319734028755159567058629500025458630252578830783645420745\ 6533165274470046309624316370152908631927510753082956262557632195781638676350793\ 4737829349836042621756977138118538198188851445881546412783665131572009586249682\ 0682346304655540146622540238517751315133370300628804089521807209799824861584401\ 8020297845123649773757869004664074139303593265018431657254235569106751526519832\ 140209765180, -.158092108971155710313577306230112285922789252754519417534225912\ 0266969176086114508383033262467941874823427192916526404549456766450541424699257\ 0873166624419874823141790976753332385562891752000838779348155168326474273412988\ 7030011387764909844387657438668080113639240088051952201385283865700070048893369\ 2690406680085573644392122669976891425643567508480781157837092216569409072555384\ 3596210718840646316912435925442043334637944551713100362059015423273173617717247\ 417095121844125608935968674278886805965613285235184158, .4542199048631735799205\ 2381266280236528140555435264204516281778668815289692666225613617965857143731395\ 9116677455742754194505386117811165116391546890331754135647241304687293754409725\ 5211409096092304432542342301790379169405938953029437203528403186836814711255621\ 1177262039934569049708887840977419235470279315696268001084801959127885089291745\ 7696827611789941470985534858291341884682026408192632288742015898498091534742333\ 1970033901226837012042534514873664828950738497419596313738497323136411484592682\ 3711020648876123, 1.89511781635593675546652093433163426901706058173270759164622\ 8431882513834533804153548900710126138956971811095317944653742588149164163064688\ 0881866825388286696323385450952275552584813922121664599363599485433062854557616\ 2522816686811880285663784666568688864642429701909079047289030909933801909174699\ 9791830249480758585208886783705041373787840741646025838762836216227315975150610\ 5192547472768070325196313268067567074081472282422426968668416432079587467267122\ 677092755988754777656819174952725603954608115985285493707, 4.954234356001890163\ 3795051302270352755180535624200420545270952545707079132984071908830969718528501\ 6314151419715808465074532852822366904466252166748180651121791126920865807973665\ 6487111763746382312452632626332037831897007941997025879071388357420287434695886\ 2128468651584875303160932126312675550045110927397179605593259342900693566905625\ 1538247624097874450782583425973126783874076183967527126961992443149165651398460\ 5671147786471173589559131699826727960561309037917429766562029157421043939731960\ 2266008218128180184, 3.30128544912979783795741131613474278765660698545342210076\ 2913970145362682901597708797238406961684388675263504368848588797371904215874885\ 0784974029126507863145848717137747991173869534347863750453860915866114640084724\ 8838494880896651223443755162065370364744957695769368068166581834090971141356149\ 4285846756096498768067530144484031581196958619107534134039608479012897742472934\ 4573279763648198415971138070541944858616176244991192870611796987648391534430893\ 466811651747579970688564630164146640920034855782668900934676, 7.073765894578600\ 7119235519624510125469963201056903758462361716452197386385600982566763375173882\ 3130707202768444581475490873465087461020817585210999328633174507969163716250040\ 3597226307578015237623458297677227704856908400693298169261665093020740323908476\ 8199469811191346041647602452483347695926973734132776534643979252629964908116888\ 6651306648750832870996915994137680852223816017655261840099456986008051964097655\ 6175156686007045923297654645293823990954113115013855045354665881210570135027464\ 2336521514501297108919], [.39984965434484735478679720295387141553835014282071541189601824272180858128361\ 6064342184874978593173654939064749320971404245510265293303252907343202269580705\ 3950777408041742221082020080292723391131570818649922035330202015271383024849761\ 3977927886319044887069065685108553513800373901632388101950609743679261768237489\ 8196002981389713090035273248851317093237154622856020550476388893968262241820036\ 2407462352620815574512462803923557785750979291163085157679886862376651823059213\ 6724826528379197003640026771795986550815, .558035145770047071333504152331654680\ 6697192775530196701647775427461751713183436321565569998973546744218661105470621\ 8102098974935009097955138685203815184531989413846883490292432627277299146181799\ 9833276583806030306052895616382544481504054900543563033874379506913815904728185\ 1040118031035838436725602849843580579598320949104060230915107862609518156994028\ 4047805760302067507725134182974227884371956944248950797620570367328071900719760\ 3667803471727539066247815927511751862332587026217130267366779725986505045094159\ 57, .65924063020044374625476041101341488236577849806651122517464430206268162958\ 3563251012427429337347707276836173821520864261067892791739750340445340751084221\ 0427384647417442428740343906537585380720318000742749261306399937727742219343306\ 4595580394007886273639280671376172938620451458872962559940627822829085265030633\ 9556333225536645632765216063545016286925431103358200075263608812671220876498935\ 8600407846852890712064432165101717600028662652900764592426223512910924454969315\ 9462835118504526181473957100229502040063680, .920044414629323247893155324053717\ 2316731875349599742017014157236651081231805887603591724544862626152792592406333\ 3117682283545892915062864441711308682941414422523202778020056106486013628874083\ 6522155649706481771781478532345792379978922773798423462455455988342295587669662\ 7055803993956000443063045482861973012098477187953260419535160341333787018843185\ 2827969208642630921396019680688812138618505203748006742361264766665003405179031\ 4965547555194505330127841151058861862397293586134687445367640897845168484697749\ 27203, .40656965974059911188345423964562598783370337617037816774628864840943271\ 7770362749358722238316557265363419071456467903690618338978130590521845951793872\ 3522271700461584295736014617662964065789132868361609914728105193746442463008503\ 5225821915990555697135336134163189127621681630805835310226267834720851560621807\ 1199220187110952503370026450349005078972217573051813815629953617966191096861639\ 3631078159299315890254974874702691661393441430676123778233864443179835806302662\ 3998242008375359127823233130101303672128039878, .496585303791409514704800093397\ 5289617076671657118162620547114970172435700729033331750415030619081313305619206\ 8411263192477823091624043285995491412854468597209322157789680819028186251890312\ 6849112731299028807087915138244308934434997406708125746537033569522438371948917\ 8123146709812679511760203812898254506471266655381828710032226164790531176787021\ 6359800257147524205714277272923542513466026634148101429958431884008010809418383\ 9902743903935441862133209024869733678898302796845583640178870122269159734029768\ 43566433, .74081822068171786606687377931781687218225123199900634829531006680809\ 8246877354771014373951009663970956460518100211268149092465172636538064698873310\ 7087985500318057152203012374338452128662074536217166657062898161274796579831351\ 5341676686750280958908371729713039676397600464491007174859786120910372496492704\ 2635367494715536738321873993747334070391484864431195826894599853095316315290624\ 6610683698414939759991367054277419877382585544430451125781363137098420878531221\ 6791746842646298914295313913628276807351604389988, .904837418035959573164249059\ 4464366211947053609804009520562573170557799653442483610125034460360904572384787\ 4531464831849774890816123879009518927943125572483993185231398601157050124396661\ 0503944906627380753793717746158247003320891036068751171458867978877474041981331\ 0766773788169878446156545776278626483275866531621102085462527548956338260029958\ 8487532795498660258708961868458219991604257113075695190535701693219237230275707\ 2588987931717940600493775655490851306581581582585814519293517610519149327588431\ 04909072924, .41111229050718743592567657159766267512878913463831659705834851580\ 5086397753820074838162896556488813251977039349358896531868064401483871092112267\ 1654644456392462369511243310972762294531027105070573053634559632127385005202070\ 1916322534699790112053688005802895352311798083419941921959098147324361569927895\ 0576461595251599452993268811566179338784281567304535259094379488960025411069116\ 2111509228934939197494706480000434647249415984672815533204245131457540056368905\ 4147868548411656712551226692039488576522476558797833, .459425824035926614526006\ 0358718678308015411008454537566709371247162048865668419424535301105741834621446\ 6496700493349071560604577222508602952791718646979444104461149747782197922695972\ 8669253999729597718685432468486322929158762277093483084400320156735906320214647\ 5718801954186763810132897664878634644834542959192497100817293130067382126085453\ 8640547824184562925573808623486116312818317472200351965480136810994107851275387\ 6640026524156755443836573986230042569234507706492771810076680705663329151645619\ 47276959509366, .57375342073743280068475828568685050451594315369028782321771567\ 5760974809381112676248713272235420404683369429094735901931726875632239767288943\ 8010228317548470397287701959545228709472026152608757253564879002079082530153303\ 5220889685821453450964442974368588698501094311312742721107957741916153781456096\ 2975759299604307354366833225582082876135579335156809223039455717817730099477775\ 3003489692774852604287770093540362478780220253600834074594518384255773871245403\ 7896095391651187054427524473360882810150843529960758926, .641180388429954582251\ 5204791312044826041475010514052925588283586880560616747497777139997403786065752\ 3383543631717281212529961567938751888158777946395416354388638155112993626262217\ 4375804884716989739693424763439768383641678335025164293162865768627621458873720\ 5512852454777509445461804270084594609075173829745046004048410029759272712292937\ 4225277959511718086425126820359217048970530127499737923789517903000959272718298\ 6263152606946120316134351759707753106266233875915694451939014354791357897382313\ 69856368158309957, .80073740291680804077825722414271459336316695550067335352068\ 8617972919137465567698446584368394384751715390636925389678959923979643711626344\ 7787303428327685257023945914917924839935347171220753657706650664270793352244532\ 8614323776890451421805236609303498052057077265572963074138263443399548698699510\ 2486217410550570969193674729825010431038749624530830089360167979658723229453965\ 9607884440982120946767430990195556595597072039173189054284037431168952320609983\ 3858560670656963423882621581444222629032119797094497305345, .894839316814369774\ 5814395432704087501948355516011940941167450294018523982719316484937776633520359\ 2248994105341922040102011527844710254228584605199911895912462351554256902881028\ 0448608734059120490257182703755501446647676402995541094560059761649652686901831\ 6410923633146074239306815573999962702405423702309529372080711004028420572194219\ 7546456358017881657704145820746900820383334183485405863528262533622596020823691\ 5831523654550357003394569502858106031570649498826695129831035404440962546909804\ 80973817005085314566, .41686201967850840258529718233639234461872582988235131904\ 4251078004424871953199592250427264739832148769830561238121565026205107880049871\ 3680558819867250572189129524982459391684607158456962638363976277270874611109160\ 3479680628174958709856181827085416657168525781056231998930011664207262793822253\ 0871117164022430149594716601292603837052909812933859647411696704119554507006255\ 4562501306211282951791699063836674243789088483980225433005676887835521532626296\ 5747520894070985350906071872890846387114231571844919858545835, .535261428518990\ 2419566225080220464054335441250360218912489004165056925147860237242402050066002\ 6896749667619720607552649597562208192401076682596298838130238508505840493312475\ 9671416084870497037877591715727202130700393499975514252099210710548839032738934\ 6330488985467983015897983628556888398796229155224830477316705234302439493713442\ 6768827010451945514763621950258742279881209487766222699123913901855551443268248\ 3160899972155341829458614789046723898871447637331399189625778497705500130950155\ 42839681194375225596396, .68728927879097219854520233914651359043465202377252106\ 9182656889745624287057911037308910138938866543038010416801338922258564685975638\ 1917769461390525392247000377485353684600866306441389803448135467718612047378998\ 1211995372124877730666002112095802211146140676075987938199344821772482714516603\ 7680012610876179509801801388982099302746016495345015500030232371771954406807753\ 3703915790585880941488725423665607372648329886694366469552195543240825207164306\ 6777795088260426716570548415247256464778427634145399066689930359, .882496902584\ 5954028648921432290507362220048249906507417703093192081092952113087300993551473\ 2994343864532351501568177704565862496539477367319177252814685987549890899753116\ 3279582052045984515402176751032457120602571124362524094978977741477332590655434\ 5949711454251298416921865061206967511842914150404734836071382794779287224164217\ 5270009100343794710834427631434409548570381943798715771789843691243028006728076\ 5069394560788804952629121757440815697017059432454660496345858273970985856811681\ 91681986243272621183444970, .43459820850707822316127448312372790930134335257845\ 7335580043997759197375234593336229962429744474893860961662502942214819968598501\ 2320060823742223175015616987840199926531528858794476547383786232747628168325450\ 2388230170944719138718914896858002803368270493743703128445508259213516449536070\ 7174546626602430961430760948000237179111909455267492725113855184559968786440221\ 8734177525990627029103316410938616276599496785980848377770162457615033423863413\ 3228706841374605426007860069387969696379980952012729674575851262527, .846481724\ 8906140740449173997987545768882916244270518393226509149801414787054614747482164\ 7034201157593253194077430722601771045939925586505539615544397706858529831997695\ 8722359257840190399093161647103563822857799708178368635461936800936184958194838\ 2614857042383742364183931022185292829831849556870853505444869439538655048428786\ 4776906556705096200149858774995329321666255356322197750826639380645534520372286\ 4130962852605099393367757292326618732589777768053989481441232255707924102978776\ 41284574691092353469260880320, .44932896411722159143010238501556279593421494127\ 2184490897989334433790755087068683882386203163739664563390637446177280925395818\ 4921098265592428917122018393048595633602591941858792193015822740051195158395668\ 2723573385083819345735916159669679392918641368141148396678489774835831927124270\ 6321640638189333326732478066625967614806087965893580082547900226485994668218881\ 1033162533270447627878176269289119037113724142722271691024262405146054856075076\ 3761900215622162039898327185840156058423386715773546934887376002980634, .548811\ 6360940264326284589172325678753323119566906280669807121173084438572674250816021\ 6671209970091258536457246716061054240853754027216765659500875135502064898638611\ 8579047199334246374285523502319526954373739725464972521926662133721518253046973\ 6537047727874575790398994503301622882310410501832692829688766538184106918248190\ 2930546102572897010272272252738512810589288175833990460232499770708754238862603\ 3260265683736040247646234635298682795232854319728906521134013257802389867326023\ 20031861980960562346216530223456, .67032004603563930074443292514782607193698092\ 5210812199888910331625894175120353743826337543996457934884563095215019204330022\ 6557232144463023641904622227442884393497925367366831443524290612886837942739147\ 4911280085722669621536802784906262313237380579644395348615263465278436218560180\ 7550278085621972768352895978532340949011417420010762273823827390599069414281524\ 3981365427088687413912561863637707793755089481976930725661486976243038790317904\ 8824056843793094774407575316700985899364639494779050304618418405611419928, .818\ 7307530779818586699355086190394243585912562690156724780287616165087774024910986\ 2345720408432142179071569868825222165135605971515259696601614954117011957647957\ 5866804912402439160475758590044297060792019723831786193322667669319899504557461\ 5427853357578316456139449951387014452881787986090319676327258326030701680838672\ 9967916767331242850459639463814330202467691259503863293938134133565725357759513\ 4633627980442402113591981516541857796923676500468060356133544289188754913364218\ 63895097572860454218198064109265876, .47236655274101470713804655094326791297020\ 3579136476682395657944141200945633080949683587544259334463950142296746371414939\ 1938851974615308647985904758870326992059281193502885465666598636949796159175736\ 3799589560637306807763352716900819201634276161532906462823715127631330166695741\ 7394127864611171759750420612064236248336141801705438879932543711157496167251999\ 0987055202791947803102822580671129341246648817632581999896614265279843382422192\ 1192309481910259890640133901630574968405761831067481055892877404051266555438, .\ 7788007830714048682451702669783206472967722904261414742413173662682456120535192\ 4463199901524731382060412433702306182251244164434106215545351465336944641442922\ 3093679707348385408896603786069624182029937513272062176520632705285386523023399\ 9474044916723390757470150444961299287910248159337151975913463514927580028537010\ 0045073477789999467526678277512748416578999452729580276886395581236022649273631\ 9993517478223973597571760355158181911668664852918913866793064878189667959918869\ 05985937968392154103660944613461778340, .51341711903259202687198642612659514205\ 9706153627374781652182777188450554832215961683070855228448852171468591117295992\ 5535134226028228955792813084209743622685131478600951669684159679754427546684157\ 3764697668768535931126639187937688005014900516864872286267824276349634141850065\ 4359436775267269937886091035339247219902712980744797403854251125756474743304511\ 6392899756150373837762602794604102180529576957106502620693658417040573041406938\ 2443704355276469904339734540414198776939379267315803723211924551160208012757292 , .7165313105737892504256040969253796674531120598214791571408702071273040772349\ 0237910879108891517494615907809962018782987985629398793968709352577372253598792\ 3401993246447546558799073690860506641813010556285018591767958421167367381567825\ 4939022745054394433672535781521343216051822238380377218717032674974496795563893\ 9161159055785963818409348485881629348776264009660732256891115196377899702710700\ 3801465004775290447145047756413189539273308126217590022120195424341249548919177\ 70993870580780991084621584210968868731221, .60653065971263342360379953499118045\ 3441918135487186955682892158735056519413748423998647611507989456026423789794039\ 5251765378080855629465333411798229476774247075812465168479412725158988479005552\ 4438857185075313848684419931871568453157532089010759765268911716273449065255985\ 7974405214509822499515385331713272842538131188978401256241398762939598767062928\ 1648622926075508458525481494580844614877927321357050562862180016899819853574321\ 7917411720130152453218585024404425877530421602699494046509240217113620018013809\ 786, .3678794411714423215955237701614608674458111310317678345078368016974614957\ 4489980335714727434591964374662732527684399520824697579279012900862665358949409\ 8783092194367377338115048638991125145616344987719978684475957939747302549892495\ 4532393662079648105146475206122942230891649265666003650745772837055328537383881\ 0680478761195682989345449735073931859921661743300356993720820710227751802158499\ 4233781690715667671762336608230376122915623757209470007040509733425677576252528\ 03037688616515709365379954274063707178784454, .13533528323661269189399949497248\ 4403407631545909575881468158872654073374101487689937098122490657048755077287189\ 6335522124493468718928530381588951349967060055912502275586825823048384205758453\ 8468003599408344602481287135375015664353399593608501390049529421705857601948571\ 1223970959908835950905717645282512793795380222374403850682691312954593658868043\ 6660623136924511522391784080818038752186655626011175375205982623870168932243849\ 0460188696590789369285628921705590552569375105235602909006107993879570591403700\ 848937, .2231301601484298289332804707640125213421716293610793287438353187603251\ 6663131444117756373033257759077559959679690751824231193851963067357914780793507\ 2613331724498649038789514674787154348050244031104147648156237536710191434891861\ 4308697152291232824403359226816105224298556954509317967091313237995445228685598\ 8404142622226495219760674334743286641515034634123632583925400541803441486926174\ 1052439097774946827516705870714118239809928010896678916452700449377845043645347\ 20747300533676465178460368997618765486926555681, .82084998623898795169528674467\ 1598078378041210154366488457584105152247568804109713097515715212364659087177148\ 2383259579320841208262702407716349181002562906371773874114937073715877230142524\ 7641045654307922937228093599724251916896571541889303269754557778170682540811836\ 8717952323033098783864565255898620224198017174978911064015484646388014763085197\ 4876077282967028364412833206822021456632928193575299586345948091470592076355130\ 2206065395252897089313272988678182703723928307330282268476677548814849438394161\ 583055034e-1], [.76637850416095743000802797232825354644850444040637120613403496521679978079359\ 7456655854343708970249505299874102865195191470561341812164568072407804350029685\ 3405656698746672590407205153894386499668844069079017234382887195936817464295376\ 0124361782111502700215709229791394234784049978128743862072002008718585055788522\ 1542339047663616755900940393631691095371213027140706055079745380105835963488402\ 7947636175856563184482220374186819089356043641395913218886449819555249327530159\ 5389250846060127590310051312608974222397, .883555647469241196278048241191786577\ 7270555227922811444275644426814440212540440842478819165041449011679546750328484\ 5328323376980431071762302918239374042175649905257565526296351659855723648121183\ 3069354591026214651250418059272362095714753592527308136967767552613541849152959\ 7480186882473410858148871178919002584364008169414762032282254115798403748573878\ 3075692453811606887231462456375860816922265161727505429565903081602780509472953\ 9140688830235270188225708551893607115359929458177122923330734566145299654732419\ 30, .93392422611729530719424391560233775001818620559422423566407942792213230857\ 6714605600938858227909251975517912913821224369846181454964646315630899397369313\ 1438794917174710107382153867594912622687117167718894786850733245114301477403017\ 4843738891511172220988980951116244996378972900070030293249222749007870792126731\ 4371472069510247979750722756688773073144360729757450106623445817950896241706825\ 8017244449708261842091278900560766600040605424942749839270483309957142977873197\ 5905683084548078757088105891991794556756882, .996714782515100185217584934391527\ 0009792864962066387185098670339705338001123044903891034923601178332191975106861\ 0877489140508050657984769811853917739853198957733469676188394115359848097946923\ 9565668620515355252763268410041275078310499671614958750993410654037486886642134\ 5977120993452333813318299273100470763106683620282698787829757036444935937080117\ 3896966642696183498179021320746213150170047304060340637558036830553753688943950\ 7879343184794047440971827913647100350930401384979244732481610972665599191755895\ 04467, .77248235350713831257856305532668937688403641472371851871794843197792216\ 3763689223781572252801458804190496235767289017012174844058448121991507308408357\ 4692316230877010161898427773559631724999352449887058837983399868118240679716156\ 6929061640382055824557138654910059342481195098531087089429908885969617965181433\ 5278518355510809756403050255663109650047213388798446249696911874135763084037114\ 7899048502668700191484452261935114156647538718284635178644342442041688031975058\ 5596659815913182342864142947192476977043275768, .844195016445396174998160158775\ 7992349030341817100876454930095449293140691239356663975705552052438232619552651\ 6299147427212299255760873586192335401852596615255847668242457392347916628213531\ 5643491643208348972049455735015325188539495591403813769112957068188145232313160\ 2809349406681555169992346481927032661001153314149108807054784480143903000537936\ 7811660437150791149714271363970022272892245278051772430929334202813618376011252\ 7834664636690251165626455342278547254127114754637492188304079207857571547850606\ 34062936, .96306368688623322588693591311316193383692660159870825278390308685052\ 7720940561202318686136312563162243398673530274648593820204724427499484108535303\ 9214381150413474297863916086639987767260696897082316654181767609657235553780756\ 9944179692775365246580883248626951579316880603838309327317721957183484245440515\ 5425977743130197759818436191871534291508930323760554574962979809023911209877812\ 0593888807939421687988777170560645840597361207759586463515772078227947142090588\ 1829270895440188588583908087716759849557085706984, .995321159839555530480673965\ 3910802833141758970784410472618830487613579618786731971137537906396995029623266\ 1984611315034752379897736266910470820737438129732392503754538461272755136836327\ 1554339397290118829173089520774071703652980139675626288604754776765221446179464\ 1843451166986866290772200353906489131603453184783212294008780303851972086032954\ 7336286075048526284579858055304041990764682824383264709589271862541160953303277\ 9847886724889734660543153221039936437239739740844395971222869371571064260347274\ 15399980216, .77654543762468737897072241301780727524326836542793134999910275207\ 6274306868326808027641026828923313920401074326566804560195232758358423173989837\ 9792106195407984475743459587392995445225273420688860212420834860685060565381688\ 1397498121099603544990299566516580109922285268682112519256074278279349632086023\ 9977760791030798966765063310736116528814754071575233267178272368035603554241663\ 9543961876877107373045556684445265444804452415493096007163574137197575662030154\ 6723751702555351568152317084963478422320233499951463, .816757020508313981379566\ 2859944316992027397348363622340816659994954753538966078976951646410207705993682\ 9327467543731682774408137284459738582740833150185678407930932884946129640348396\ 2078673777297062610996324388420129651837799603721747705600569167530500124826040\ 1277870140776468995791818070895350479705854149675550401452965564564234890818584\ 6472085020772556312131215330641984556121453283911736827520243219545080624489578\ 0693380487389787455709464864408964567528013700431594329025210143401474047369990\ 17381261349985, .89250532114711768995406844440176745146924490574044772500533549\ 5628183036815064163053553979032876185063019111925144736338241806539039638005023\ 6904799605075398395780869714848133548067596237391400172212034003234128380238472\ 1454717289055594257055800182351137975446146706486488677279045376314016993376149\ 7962292243828922551237296128683240029544234521355036569172486672160913488076539\ 3560983966538659606669864589951674966991453727823519671591473042175648244159517\ 0060592831457402084665038069672484371345756602161180554, .926149449954378841029\ 9740254117398082059908348520298670294187403271920890857496789202218472135428308\ 9331785245813850640321055598133752727340457033682268067450255112940990793489869\ 6320607055702318512890502436079665443037979817258570645679694999128786551706485\ 2407453545789735865667050612344414435330806642965066450292147820763393917756465\ 1658734830405815013725183184963313515179654628610732556584859193223607838370875\ 7935664876699951567749619208466754486829004487433780875023020734698628073996675\ 34236976228669935, .97867904800943204984009216284109561411053739005637854319195\ 2755300234501346804964768047561370914696541033000686587385395462641786758654421\ 3962259745733837536362600562677463693254313209269810026085906367442080763854429\ 0528617949532773959984178078037608730291983324589177090613433097488337298410512\ 5260932390672920073458935780897234971269582874426570109217983086249550613777069\ 5076303205644814490493526765794569172396421381211675510791601304762052836301090\ 8049351930802955295856537488431827657705924196448830039864, .994265907571521971\ 7571550480782319446609283906679934379074944771131693314132573872153085148355954\ 6943326783713246711224457253160789171365094005777679884347180390615841003201142\ 2720676371176800544730203004172779385164084892217267882844510846277391874335368\ 4901026259051193599229795082222180780450470780343921524534123337809356191326910\ 8384951508908757397449050911941000911537037981650450959475847259580662245359657\ 3146137393944841114882855003175673368411832776474105699812261560489958385455338\ 67748685561205905072, .78161628689720325484743221688073564616011093102940872320\ 7970771258296634912249235469551121387185278943432302321477934424134577275093508\ 8151047787251094822854617859342111359408638422106804946932455519882889895829675\ 6524401177828047580980340925785156232190985839480434997993771870388617738416724\ 5383344682542056530490093627423632194474205899250986838896931320224164700636728\ 9804689949146155534609435744693764207104540907462922686885644164691602873674306\ 0776601676383097532948884761670336975839184197209224734773441, .869799821343359\ 1431795115755358254088295092031835355732794631768217503365272885518903331357254\ 3707218209882045987273055596038588312651749609218985611961637576321990801632773\ 4466051137914557686551086538056703462388139437460210659661217404641863428200768\ 7787044601385472400834223396404943648043872377240349525639646005741464177284344\ 3499343891984411461490885669170456204806965417620111886076360090515271095310903\ 5136462454752430472870249032200926335666102410663523683141890058771437712794002\ 57114481940859741594144, .94502275833758677299965321632645618684764653268721647\ 0126153223400233394704627676299751441040941496677264323101841018105526443216502\ 5136933009411972414339625519042361316326191171356910979741186268113091565146122\ 4166493636671706879665752904131728040325943429604483415024099129937163732460330\ 1810017339954746825977476909850386541275772681099396312541569511186437309360660\ 8842884212055586294546997457540210137391453594204753895634268871956134659850921\ 6819468246358086735284504070964977639070337996949923716698654244, .992809015407\ 6698282230036611326820782497554281144820844915979841091229571127223213617745407\ 4618636847598895439264199917636595308606912038234074409416521735993627262222255\ 8689529808551732579827448844911514260677892514907839606851349959161999164487363\ 9193425386032710719037098193857838450823278419205326690580305644126698127184744\ 7178760237886769049688731085363710742141679686773555243263574152648406507569086\ 0703068880887405571707761977120917659144191861511493058389090558217359088913142\ 15642234523681698831375591, .79676338226297674246233655239350116705246281306050\ 5115230080662558528521263421116421597787864870638745096381255394060503275763918\ 9253444843527409154195297811040366531974469574456540336870274760037318308596658\ 7711755313398651754318010644239671806175162571863455735483431808558113490816129\ 6486668815437790095956395071333768161705167334657069996042067838359942775140406\ 7679325464316149553356080086720796507099077440964888692578631172294227943749591\ 0919295875853443281014410127211277776696631745356671070055727314631, .987562012\ 3723830863857369664318803397030068951648938125430927341434983918230383872062525\ 4873234683858795393090335843035399553596579850923129551468463991334951470663978\ 5176085800813555465608688588287491126667432992874763408038926267758882451227311\ 3050666549447699424881252859216174968137157816349329089685681012795097556500250\ 8906390982822612233508168570827884208610631249042564042631079277419790273767667\ 4819456661372615958929050174381055188021407396062987728348104298325911453475239\ 14832003806274412380804360376, .80879213541099886457418429302801303268158689428\ 9932083616380801980823359156723630988295165694731396214103147403119105665712473\ 2857976878066372050819633107487472140484665495345825947428480932092151285112202\ 8902432093150874822324649087405422907253554462654067114021281594704497468823687\ 1378953148740799988118460519926741706650958338608444148586220407674790402793985\ 9859692559886805730180717284720414266804703456900089043843672329262898740935137\ 4771420388119891671816988934512280905162096088392384482797276805365141, .878098\ 6177504422922055342675721086005316991307050049071691393876935101716278801305634\ 6673935952146013658331594745697686785366006443546825055201400216803303837821778\ 9726475518934794198856837603711243126997983560743956035082659413954429204875157\ 8459276364599321264638391205282596611696656802932308527502026461094571069197104\ 4688873764116635216435635604381620496942861081334384736371999633134006782180165\ 3216425093977664396233975416477892472372566911566250433814421212483823787721637\ 12050979169536899753946448357530, .93844806444989502104220609520695650071177329\ 5295137079844474464276251845168495241356872561595041108838388333301026886062031\ 7180125002248233098666471118420038150897095514313564020934006858041573119834806\ 4875792120011737470151523898868767238532332811502153488061368851389810705984253\ 0570389319870761875694054369945277328615984388015067183353358346838697179994134\ 1573911597924162379477586609092790911257125274767703015926081766740254306445066\ 8353679581310332684170605443381380259110495292690670426465785767855987899, .982\ 4769036935782304039226103428473092303095075228188069736345139398105328829893183\ 4814864490118570614885883842590266598162727165818311635921937944940414349177549\ 1040165894882926992570910308053156472950423668598143431987201203183879405468953\ 8513424029093979747367339941664417343458145583308383611592709991236842017006407\ 5961500120797491420551567356577196242961229511404635952725760960278870429311416\ 1560353576530882536310377819850229356308411800561672427360253147026505896037062\ 36674117087432545061837676931119051, .82664146729677573749158146415071884769785\ 6263488834194192401402247101654857891661946278202453835311912749019306149976143\ 5892990955576790133975333328023072236103742088630049564916547614662143278557538\ 6649281731115286913585867254576433602859983282682586309941501473354827791717548\ 0439723763069550579563236071112413434588248152984518039881951494525618292690998\ 4227346604885908655429939516174476347181635430857018499819074964239725919238836\ 2086541593342954808620234327853506194710083204368091847812535457089716472016, .\ 9735009788392560853064628337229008091209653630326768428016467078353070150668990\ 5578999876905914227575515542127882727814055205542632769431689331671180801803652\ 8867099634185481761120754732587030227537421891590077720650790881606733153779249\ 9342556145904238446837688056201624109887810199171439969891829393659475035671262\ 5056341847237499334408347846890935520723749315911975346107994476545028311592039\ 9991896847779966996964700443947727389585831066148642333491331097737084949898586\ 32482422460490192629576180766827222925, .85569519838765337811997737687765857009\ 9510256045624636086971295314084258053693269471784758714081420285780985195493320\ 9225223710047048259654688473682906037808552464334919449473599466257379244473595\ 6274496114614226551877731979896146675024834194774787143779707127249390236416775\ 7265727958778783229810151725565412033171188301241329006423751876260791238840852\ 7321499593583956396271004657673503634215961595177504367822764028400955069011563\ 7406173925460783173899557567356997961565632112193006205353207585267013354595488 , .9553750807650523339008054625671728899374827464286388761878269428364054363132\ 0317214505478522023326154543746616025043983980839198391958279136769829671465056\ 4535990995263395411732098254480675522417347408380024789023944561556489842090433\ 9918696993405859244896714375361790954735762984507169624956043566632662394085191\ 8881545407714618424545797981175505798368352012880976342521486928503866270280933\ 8401953339700387262860063675217586052364410834956786696160260565788332731892236\ 94658494107707988112828778947958491641626, .90979598956895013540569930248677068\ 0162877203230780433524338238102584779120622635997971417261984184039635684691059\ 2877648067121283444198000117697344215161370613718697752719119087738482718508328\ 6658285777612970773026629897807352679736298133516139647903367574410173597883978\ 6961607821764733749273077997569909263807196783467601884362098144409398150594392\ 2472934389113262687788222241871266922316890982035575844293270025349729780361482\ 6876117580195228679827877536606638816295632404049241069763860325670430027020714\ 679, .7357588823428846431910475403229217348916222620635356690156736033949229914\ 8979960671429454869183928749325465055368799041649395158558025801725330717898819\ 7566184388734754676230097277982250291232689975439957368951915879494605099784990\ 9064787324159296210292950412245884461783298531332007301491545674110657074767762\ 1360957522391365978690899470147863719843323486600713987441641420455503604316998\ 8467563381431335343524673216460752245831247514418940014081019466851355152505056\ 06075377233031418730759908548127414357568908, .40600584970983807568199848491745\ 3210222894637728727644404476617962220122304463069811294367471971146265231861568\ 9006566373480406156785591144766854049901180167737506826760477469145152617275361\ 5404010798225033807443861406125046993060198780825504170148588265117572805845713\ 3671912879726507852717152935847538381386140667123211552048073938863780976604130\ 9981869410773534567175352242454116256559966878033526125617947871610506796731547\ 1380566089772368107856886765116771657708125315706808727018323981638711774211102\ 546811, .5578254003710745723332011769100313033554290734026983218595882969008129\ 1657828610294390932583144397693899899199226879560577984629907668394786951983768\ 1533329311246622596973786686967885870125610077760369120390593841775478587229653\ 5771742880728082061008398067040263060746392386273294917728283094988613071713997\ 1010356555566238049401685836858216603787586585309081459813501354508603717315435\ 2631097744437367068791764676785295599524820027241697291131751123444612609113368\ 01868251334191162946150922494046913717316389202, .28729749518364578309335036063\ 5059327432314423554028270960154436803286649081438399584130500324327630680512001\ 8834140852762294422891945842700722213350897017230120855940227975800557030549883\ 6674365979007773028029832759903488170913800039661256144414095222359738889284142\ 9051283313061584574352597839564517078469306011242618872405419626235805167079819\ 1206627049038459927544491622387707509821524867751354855221081832014707226724295\ 5772122888338513981259645546037363946303374907565598793966837142085197303437956\ 554069262], [1.8687417873200157623021841499163573795646503202662602236529185927206748278046\ 7785626590570042078615187343049011314592885456408617043328534171279149394047093\ 5631161941397286468602916329192363084883018861771803840123073580748361649808256\ 5421628796869942506248250837554205913046980302637914717092194692705654979183215\ 7281881948941164520551207566997872502603197959154237382271256753917111450517280\ 8264043168967922834477005185444829437368339627050525216054558234985754636749201\ 9455422398332777488506762512096318714374, 1.95699825426301229877374720088531676\ 2070890521974131482175087910325128204970580098882370034362250767937794346015738\ 8987194432182069162824545163908282408464343509717136224026165608871552825570700\ 6885975468626420350386605754356378446638574808871180091740667813188525716588703\ 8038374726161873896212798221646533467150800055067743344869534354595699075890266\ 9058431881217044507917494973890267417783221011698416772776658357986580770738527\ 0730722745293338353093852113467662979498580866833090822930710945571656283175382\ 35, 1.9822999505332787647799392914500600282248756226583288923654234916190357334\ 0057560894709081182688581424215321711610093211834998318627299928758911489735741\ 4663234411341494841419839521896371159619373398834451687601160536830633597899758\ 1229087715698204692004033701879085335015732973397217214204369338392356888721017\ 0158258532400949693741207330218744480721327547051458772631349038810165721891693\ 9079150415060626165502707727422947028341952033823632686472607486868354367362301\ 2532921948828097108734877378055121099546926, 1.99981876235401511521220566964453\ 8149400747905850499480087105010466519739968918624947367904543056934600056543876\ 6156829551909628112787969840455305290111571329340112826055748306479251573498325\ 1271829665526478329560835264322384038148196408471462877603165086354957304819864\ 1853101840352936207415786969538748300546405110992618410635073046414913428401331\ 2454968307156349637775662611149720971796938978314670909971580466643156990153497\ 8183483600538805672451398805750988724257189508652886923888938611823290094243330\ 22371, 1.8742861314041619057827240447663358039133725641454433533103906691674848\ 2892137227454370951863932899332536191941431703601375054268918202230570983776975\ 1543767253912790360334302738742626434328790252314702170689656494317109975446920\ 1239103903271646176379389957849230187833595231801490078014309471806312569446653\ 0822840506258149104053582193610891341406192301176886169005408617882414095653215\ 7463927031436984625407543417237940855902376499541693061765811508305904306705527\ 3663189565861040557926510472976700992851026384, 1.93171683174858301220167236331\ 6387661042825274618965259392827723397077487583593966050911446910822630875885871\ 4611981381873873182641752838252246159600388284314426319380185838601964451985331\ 6344304852475322205957198988777036175495213991209460915402906058544228526688129\ 0289904070117132330074719283217421003017322728943531368202535978103516627770151\ 4163962300030386916022853859167258037738284360683611456253830002879116204863751\ 3722167378630886884369818310674326401091439787972932036029580477562703136537579\ 92147342, 1.9928010136338210597198904663649273861702558140773270769143840797137\ 8428410008433402866592821599608187287879368956831132105873131439228739403996920\ 5806668099585557373942610328697043622610098050242417830749919605382920279974633\ 5626911028735825577946351995292807672950954524948080930037282466524890201556537\ 4468913856078479382608584104318032864935309428531991677434647360482640088813178\ 0338273914873618795437677737600625947015915511451791352835186683879475216324898\ 6316979900671854407945439442766006461177581580907, 1.99969069385947065669299042\ 1376624932840298847766686104044328670693273723410788877837632615739759910497038\ 0271453727838800250870363377261103683075430751518962493936139090855708077491662\ 0921371824364651146588411621900972587733916918971194008892409823331921763277874\ 1679457007185543136600596616557576452803966503488263560887218588319350755466620\ 9055744747805203917174680572929266618144540821989728637108390074201451427890931\ 3042166332909664872709124419863478138754529529751465008763867391924732001397043\ 26184905116, 1.8779203393538191517592633517424097505882960471132980359455426030\ 6027119961621515666815150278889951732384573529954063847890350405616089264298196\ 1126195615882976637924888919827064257995654356637175345487391436897694385092303\ 6677826343011015236370203163144532444883167025759726556944279400629646643053482\ 9275667642275421972354949950962328833765659481361330920820889396191616545797003\ 7013899277414725312435853577284149159854671499171533021340210739060851630687030\ 8684828843101620967461671451919272559646069539203948, 1.91143830493959591475634\ 6099861968629384189518332319950593898901597049960160811538356045027944442305466\ 0752330945998317427066348795043702709988653313619842794078280820990865061664867\ 7236467404825770902712334249234433119909262823926547900546799867679012876434983\ 0021279331556715313598501867980370216431161700306014225895589857818157748754071\ 5459092119444688525825152476684964441258978997693232854773834697907425118370130\ 4231714739062748869843117818962375735595097650726005061723260984948817190252560\ 20039920190934, 1.9620950314107269850577536436451554290236574515087620621149042\ 2451592619998232359655424168406433891478139915875607215845788079691519031529675\ 8430658325877686790183572151597565867313273141077315752145026522933217112163537\ 1303933880213015562860679881358146999363954474362505844131980610507129132670788\ 4869488056778263132295818275908934514431549970170908833064110165229026219204128\ 0965390919627943421466311501124296798298914827465964245262569867208456002882687\ 4687923979614047918612869480396252516557757602221148423, 1.97895181614183513040\ 5927404725939761123912040282115100490210983605111301465277091709875741909279553\ 1908501120900395435966037520968750582765054921726980356292789554047220255019202\ 9128334840962033870275748383777706291247431584884309967025575854514697981133864\ 3676806313202935014031421071013763768233078342513903087669262354863973059349672\ 0439900604787567310625039142086178101534114236882635161663431451543505948369845\ 2550355742884605035843935728304862069835257369109782238252782208268937622648862\ 25264311159972209, 1.9969006838172249905828143120596092328316015433473582396441\ 8643000653908355610709982975361006994715859887541554232981666548943071641664841\ 5374117645089126446813379104707926935391284109366163257847831400225555873028883\ 5037152349298606403956367648246057538908061244007084618488801500699640539675680\ 3336069033248413994786570735092163095147935091549663800062659175174150731295927\ 3136781058121467199070396370394447447297047594954301467858488347032257245386687\ 2147443525274946434104061184508312309956158270386528957630, 1.99957921411606085\ 4311611818912888688706978207898964580680627781749818322064439856510787124280475\ 3329713497613441838590696403135669822241202238939733398963155167446074690643785\ 2791602692425556553995740826394747854127443739434806096438729403529119921394112\ 9963428614320295601622881010980238579179483568046944217711862582381659411811300\ 9575195803458316765486975794512579072209115416309701804072364837760110962677886\ 6377167631448906935326440839527552088536157480602014590740021491609647186408240\ 33402791207309187576, 1.8823925576107645054242325889877716811689338255624926750\ 5919627411373106241366690875583561734080454678876612809089269207145744027085020\ 0396377342096305336504153801124891819057580419990722191386233037705129316578980\ 2196293283660254792419432106293258459252662423008204762016833392118592105335361\ 1596488844378878614426364215271191420169204587402945997034344292953986332070012\ 2294629496086032457918439108513748213211010268547320547091625969663227692076562\ 0470364903728929322518523080102272821681270194161221623624604, 1.94868613820194\ 8849623328818267762694781496580209267197828028078841036811642867621061996352154\ 1042097925867804533687136494112491420046016979757715045756789957002907554596573\ 2817874918398165327852310734006934525708112008584835657404868899309186710356518\ 3898443646271937566725359664771492182686752176824039845648112999363231878180050\ 2245526083492661413968631116266073361269252829139890451399799904894286697314846\ 6525765146112804134787276946637322919432886405465962517473134984320908641424040\ 96065071434827230568688, 1.9866955715051540114197255115953908473501660062174437\ 1560611757192094520477677409222106837037016110096924886106637032215366354539832\ 9148105234933198746196398546616860049454937916705714240059226658637411294945491\ 6444092412254847469020641235527692826659431289178215263385748112543608284664955\ 7766878645331395639552083214002638079700020393185668542977489044965330570717866\ 2086288158216231209649084692778339631156157857872590307604931524218051036445932\ 3990456392700279597758674151282410071850014237995154417715057994, 1.99940704491\ 8223959615771262003318074252979681619443086823357051330872621963121341631351505\ 6694031031808110887074040261190703221872225341033251096340827294054272156975315\ 4180530308666668366770805670155791066386520020363384365268674644553458165070371\ 9004231501353809797583860052929703576901910237201072736297422664442182261724705\ 5334611436796640989173425010246858413347977159141896542046136461297248532774329\ 8336034705178713622080035398170184806355427527665509018703358515196551483183896\ 68427950008241453236874251, 1.8953310759892022510088914958451467155641918431893\ 8338016852521244983299755086538300289170749673773156030502813783132574264083235\ 2595137637020913995770699630808087190181805641196480049831262329281604506741932\ 4652644824550891402163526774463073444802273520882670531016513324157005784936564\ 1740010612157171280401748524544547880890471623547212105119097955488653054086430\ 0947960754390356787692279656992674320628113876108314431416431960682111798740433\ 0324741594710591810786761196927531228699047248516662663634468467269, 1.99863740\ 5991727674828277193969281639875133002119427953956259104814222935832339593155511\ 1105297495542851448601615587280973719180260207924919075892427236341597321443900\ 4142779269212267177563663166677230347063647153319892594484068411332154781796003\ 4784063468340605835987872602460416362599186700927840411007816395446626886434574\ 5850102936999814380590938877429452756504532514687185580056289853763528983976789\ 8475366229087315134545164916243784978528141973012747516451402060375482079869988\ 87525524579841250124686596742, 1.9051548078570195476636341124659862547610713509\ 9406224140747477799927280156917121966131750141425617774877630277179167112367827\ 0406545664611189860859735798652604548647498983348127889838708841781706747159763\ 3474795115275539402592028451699944062597503940091846920191679664530392737100690\ 7480375630592277330534570700249410268677781297538877955000309696030061739324805\ 5878060914106669794220346738178586471736219036514243196994287259781927258975832\ 3835045691423796704916890726796226168771515967487983900392247425263789, 1.95376\ 9424494734100157313745347941636183030565818635918451335137618060131872033290503\ 7134950749352488038978779830917735309743936433689168574782311548238735103915345\ 8214140802962991709245646366825751595757051342265530217805891719604860498084722\ 6207188991123348981382042043175377746102506138652438647369200887593542062896355\ 7443274412515951335656928921974910560569786590596900603842769918372316509035086\ 7840654583410030328162059530166331075102896137823490721523708719777650792768064\ 25931342865221960195253084759550, 1.9841473362654923302035214584375651729334635\ 3862400411167117458161264675835624708172595913022951548725830676183645684481686\ 7060940714761054998003768179323093780475385908740582107283190021414504031050787\ 6573738905373910207974893624332253644718264651574741023190117985722417120693813\ 5034882313344103939432457209645572920907379556323185633051852907617324546627331\ 2218484166418251474518118311636761506951506486665171494795800144967939481934099\ 8451920825762756053224642293743491826211933290454598890167051848060980299, 1.99\ 7703037510275735154642641030456195434962665296398240846390178344281416862078280\ 6412355779657442691693463047993354208293087857049723365970794048804550917666101\ 6511500398626195155156085095970808482833252812614955831170730911314055479112020\ 6164396219249109215298025788138431526503156268606038001023851031551491210124636\ 2112171691228823255512152029170696569402116667318942643720904728590036987293321\ 2850605227227946115716443490036213302449377066114206726896584806562056198860869\ 34790403807777950829240327642660874, 1.9189891205103722477483141132070258964414\ 5204024193652223236039807362884163439135808957439855354625979745308053213387319\ 0475158614687469138244273808291070340524082984860547220427055696260854689665142\ 9043583259008905890653862041240957800663924690622743250522134270600227880220145\ 0816364444998288527398608373651095975886557606942834544972595882657732817946124\ 6338491176134228795010521673397646294881451082163236437457999545269936374109015\ 5484375727026043080572554397537421080914840743871164178956481445395827038147, 1\ .995677006620474974878248809131946658697978994216987527743375751062379380887143\ 0643694974765712416652980686136215959201881317136239717733496312992592064369748\ 8417755425008023761029754720180341196645171487775965932733412130729380296524746\ 2365224009910368881601726051521332942527001090830145193827825025700192382312608\ 8136550078683687363553711308612641781748368609761954945952138867691730803876368\ 1998338853794893234377763591009284114865095368560471678365722875036102414729210\ 19658896604400489489063117057199580700, 1.9395757830120143237386153875893594255\ 5888991370341584179713493604525765158837141080271211975191788598110356644311819\ 4091050707610664272188396054034792035236605225249248408547349212351672628747348\ 3422219119312558018425619248776459913005629084148951752590066948843195120254469\ 1646898337323190865423634391128160060852136014948034574789383758619112680803926\ 6192873241212363449821427722405994157088951294906900990039826513104216482309287\ 7812066089771110852750566381934252871288209945430414739880060385993856360374977 , 1.990364751593859028960011380348276854036422388392997658724639464242511325652\ 5066086355308025421526282196613878338550829996008166331657974820160381181555220\ 0944998124013207377444187136350140733836947376745838497713321783657602050435507\ 0816395206959554009353482161533706448903283955105660338532509076381804665434414\ 9766988626607212171780374579411563707993406669350203404691976443438305472975194\ 5500406945770914013095846599003663760909252257282663895033387617872569319144216\ 03053852939105830856839328947491352425339, 1.9712246440660586267123484887213364\ 7368623394033335760596939951588893368809468237799560473740096573208587731683062\ 8456823747876278079576233358834424579951630299639051179755809135676671255676804\ 5442628585149477000822436477858259747276197928928496923712396307788870946208195\ 3841681694715692312342500232806813673824892636417980408278454597955369599295451\ 6535802450974540249020781485738774499835326379441041432930208505492441452411654\ 5823158809042299547296040132931438410197387020877335565115503070561926505854488\ 180, 1.839397205857211607977618850807304337229055655158839172539184008487307478\ 7244990167857363717295982187331366263842199760412348789639506450431332679474704\ 9391546097183688669057524319495562572808172493859989342237978969873651274946247\ 7266196831039824052573237603061471115445824632833001825372886418527664268691940\ 5340239380597841494672724867536965929960830871650178496860410355113875901079249\ 7116890845357833835881168304115188061457811878604735003520254866712838788126264\ 01518844308257854682689977137031853589392227, 1.3533528323661269189399949497248\ 4403407631545909575881468158872654073374101487689937098122490657048755077287189\ 6335522124493468718928530381588951349967060055912502275586825823048384205758453\ 8468003599408344602481287135375015664353399593608501390049529421705857601948571\ 1223970959908835950905717645282512793795380222374403850682691312954593658868043\ 6660623136924511522391784080818038752186655626011175375205982623870168932243849\ 0460188696590789369285628921705590552569375105235602909006107993879570591403700\ 848937, 1.617693661076116259766283413039090779730744312867825133392806061012357\ 4580770296985373370449111875331230970767775795072567615542673223834488216075292\ 7644665500261520553122398139220686902336426922550507044913272214114888790296599\ 5373805435411143797692435439441676287616453792019255526141202097546697790797059\ 1593003401114209034326488892688882815098400109739633623345915392807495078021476\ 2263018345886836449949611756267735723862197807900092214428207825798937656642876\ 72541792886915437254383767523273604978021752869, 1.0876262317666590359962549366\ 8986745385090460345453559720629893932672802866544536985420832265638317329050972\ 1415781894260011460094808069022416266482839585094260038320229162267353732993884\ 5312438549195799789182722401963463378988795729300332683242478905607615436657568\ 3855128682801885588862054896406567179706237275684705715982051715646411956108788\ 6671080239993131258284700399903917843003862985648727195190838122119853450117054\ 7542303664871008864334008670999859208243420500721262400573159775217967550587226\ 409754792], [-3.480230906913262026938595198144349750032429334503760215154333540786103370857\ 7181603348878031508777187650708524337824645217068511334334376549938927392688297\ 4232450249457367373155969444700963822058760030829362387954588590366975939709698\ 5779067833560269059027523998460663047795287373851567612112665408178151763004337\ 2296189289073887132227364386188683015552066688728725312703768867274856705529202\ 1056017768566727772270493724941064340221476058594532038902437172205364245675079\ 69851804485242563248758677524468956002724, -8.390525985304106876765378208426801\ 2514561334719835228497472440190814756608234108221700842800723624606002669893110\ 5576941987211782375607190473646504324570657288890589523824108393867996996166972\ 7648946551076561407968894346203894852473703827725483244186004315103983876992380\ 5815478358410184660774513521304395987457440357895407949408608600227767477580958\ 8052713780201142731248222694779694104670222942977941365771464129403655244800916\ 8374473863336438519656314274280932750331506928861555159111544655894750327697891\ 3020, -1.7850448707858999506136456288085417943113463453745818151853044840397166\ 5784862750291005136556259366526365525583706874091193750061137559173264203014118\ 2005533438354184876194665706367877654174785634038987748272684180201866567283616\ 2573448360221770165944454862403867085288656136454719479548290927150870425701943\ 8644123996216317428385037654741442945819617103536264537413949570642554700235032\ 6987625422225808198905850599340667361595387283058857267089137261241283984706420\ 4955989702856709519989962969710233151213825430, -15.327097417156703632964001283\ 5833271950699900681042627086756587258962676696995898750552524476443660407819654\ 8837758082825412845046186251287833349587586193198632724480458782737105479006176\ 3168123262626820386809005628922730999340844296728162255912480838129351948922925\ 3956146293818277092802161413714399999959890381154672692201588457877086012317083\ 8886675819115252583885937599887307947784974886806345359389617129095244057600709\ 2437283557033085107388969701679312895089141269537707714138471726045675656748547\ 101777731, -1.33063205864387539731584617141253069317993923661298374704825511616\ 3030495875498502205810901406693551904334645466284429963936147301520048876864782\ 8625797309887230313388609528347328000600834784920368326419558863802111959074470\ 0981769597708882644132856657237521519583567511488621824082342989791495995629407\ 6056466233107486159103946273151588365533136861345935692537585888488103630662377\ 2225603237684542707649125243009882634245717903094486630419864237557567753385141\ 605083863335903224485869263863256879818229329796175, -24.2811555517810471655787\ 6563411262126124369241542221982116384559265559059659284128252068492359129735310\ 2486267607514750683494637132673198477823324774540162259361817157410287875462735\ 0780061693711216800660380317346949368865372748574973653958840374500544586417019\ 2235262689234729840305235283952055097233900896019992643341512475302829451768036\ 7630159709552110066220304883786064442885231559532834029755792240621241233760492\ 3765395023920167768868611008493429636935839409073882893827641891147597840501955\ 60797993923846, -5.681559572804915258573497512057055968236211254242828036469715\ 7665060003363844816143202669094135256049604906970328587288735237053335898971235\ 9805224922271118769952141740390715463114141528889100298754554558038664858059451\ 6265946577084090760707985905721173161175967299866672549918897556380581999749756\ 2218569677886673816258428813766218436099669294816644150925075578622896999441251\ 0271529563691126557249805978954911827744836079502305093209516367778541750606115\ 82864404446946889395687429506356668321410281424030933524, -2.294278191701834710\ 9791842930827148950725183900386222055762914108787874446660517039557333467139512\ 0540997336705015899567585205867066735157000844950255652252412966993348373442067\ 3583157014485319053427703870368123377559257826826556546727323146104100443090236\ 9610341778176572795841387535476347147323646484902956437670617257763718765125142\ 2698493010461990303214234461331320705576509119143924176651194635938047996416525\ 3099428554932664300236307565895660895198562715374349140378428052142808360021011\ 1632153896160589300, -1.1234916473587529029353054791528440182909555877578476828\ 3135203965554677754244506774639067856316647416014844176519455865586718594031821\ 7747673853612017059831265270909827668932299997583679676500966784581963373853084\ 8876521985177226398957072787003090153526881766178116553926637993004415706952825\ 5460853015028090998141902640204774896961848605425321757804850341098652658646414\ 5083639646091158552382263216159932944499665505025298755766246342281172259665896\ 5067711270117082089534321178361556411433052344658966011757164, -35.246622658481\ 1505105805103745782294176347290025596383691299329507704101326537792888241676802\ 2274773297815221172481621539302055126474823676265589608799000793871518793654085\ 6803461030737988184923312458546189081381685535131501310933271851808664838479473\ 0216932730690071625424643474258896565434976426408639634938169487578331668188938\ 6558913960476741511136128475645887609871807396718693854209983978428332444079447\ 3568806158591526144438933437908941783999157558611155793329145131180072773402372\ 399369848330988118449282, -1.00544380818213122064331272929070952568390448514626\ 1572198056681675648815363692981364068155534372640817341956745542592228416823677\ 1434905344919243287405788133507059158885874939523267633992643795911423176921263\ 2789811576466272279702076679544679741918443851860330171840783083531993499526852\ 4772235664413105057884409656684299700939269182672083961294979797341655578180545\ 8897197541652736584349283982807608004647759241495468044801827873326979053820140\ 026485278584482312398678310454558676345587163787045494494581786137, -48.2198061\ 1682641912713008370782195427611872461363327805557648457451599629348682484137609\ 0999595485733971414265859499230302647058682757489537737830324710003439033144672\ 4591539828737861401077824788676281710330260613986180833936361744660825779223696\ 4545577857128676280535699729760312353156760317469398031742357593782971406715080\ 6720739670340270847279029998586149516177736295215981643606201665064646483488196\ 9694907290033183155332630824897836169787485080076019122950776998162937414964985\ 46835030237614757092018639152, -11.60612038849412901768014776852996389666316112\ 3744356929859432621317646448035909259635120151264560456565672115470373301403305\ 0406295726018694797776272036691698325116987357056873725058902208180313108991298\ 8195428246193309186816760474352435278098792791655329693349095561294744010875607\ 9388352538480411425220973033476060423760065802822227181689259918252094433742150\ 2363970114981206504060958045251760417504427299775945761101915092844597027791573\ 77779125344137002852112971907367238337660776717285741809455045820337856, -4.891\ 3580236235256724776518281525844792237856134880129218355464135083172532211114075\ 6211193920304809983721788804065573791219716283800005090442540717624282775701243\ 1049501301596289374537497521627205957519629018238246938217072663470003920037677\ 1283695427634734493093443907112607315113481922845330702944558148422476143098473\ 9461497480484838506369240268882301221839118322901597108369324128241896394765913\ 5164365264577177614889688139445123363283108325911972842819693521470784510427396\ 7937565023594342285092230517014497, -2.5697427950526656949196606517931747052435\ 7574577243831747828398543280880933278406587946494920382165306701564222330111068\ 1718616562284572824450480722363757447519937186915169936716922272893230712105021\ 3910905884286414438886262437574620553580348085947013842058880939432162117012899\ 4871750997909989459361566239212437330861388325459943160899052591675844939413202\ 8040919942425928339551323095810226522108717082443879621559051323706789155869169\ 8986662424869042977776491969579016766774255447221899809318950592765245236184, -\ 1.50590287362650344402358536850779500453411739202298211484696164115970308056497\ 3688430157576708304927531874419235065467515519347405866147940438022990857803668\ 4979877710781521109885028141193113680028177899125115164130375694543150250039673\ 0059428162930888101190300993385344044788678219928315682965312613350047478164575\ 2561796735473385792939165984201475435765977712988941873572351351425594334426347\ 7791881167474101574595077960953977958390414720661144352997991162035573694610991\ 993851428613007117398899962481167291139, -.929282089316083284964507916159588921\ 8204941771244815803974639060587431379438813105081032675233778323910854322731786\ 0985966139974425734253179729311915549521887700411861493256799325765811610310725\ 2425641540825427527341187959857561165058452056230361611959335179375345011216554\ 8891490181008464672568021202147601491979396669920589462357709097625559518305749\ 6892047458175543768930693213572996501725245591003505582757572794846055672113023\ 4921886779066387681699711307886311183998884881507768339041267618188314840253609\ 77, -63.19841382721321038023679787614680211993466630801328037284807177585045281\ 6149075215154331566709388303041378426486216207633290295415197975210301518841569\ 2550317686806496105464316176502801520919766707403829183421574206218536018017478\ 3721328161090079852817699486803976502996723017947817661161968559844593514577319\ 7105387045163242800663109645022681928913215559433645794375489260114390026013201\ 1461347908311365947619601625774382808984976217070192184574304316342580065879292\ 58901403856755380777583256747196027358641678, -6.528178997942551624406829788375\ 8140918361420098821692958430178442382982025651583165142501557179194422596699752\ 4847284809742040249764136270491863738042498049336389037558357234045045483164939\ 5143841683077114266008822046844571642264063389468573669039240907685779421666540\ 5712168068380654528571333743014241583495513283751891994365003736227315257152506\ 1332574250953809043986835891358835546808232650560546613090445877608998689711709\ 4771415461774593955616195425256906124708462911593141158177812170489889216952555\ 1114603, -2.0839381035714321014487645701108374728654140196525892640835395685287\ 4996630915795904107170043907822993583322160705473299892222090111629583896740153\ 0774979411207300842243882087740640254212423832470564705052076925253249479930155\ 1285908902049958583955282144870041489525203957955423229731962781174810571007744\ 4843001587821436365412102599138077442765050880446628787350145460288156687771879\ 6061544288781546621740774505999581004782737862806202658337916423021907682458134\ 0355498910582054676637905100793507072474129899283, -.87609909742020027957998532\ 8740239407022205238456812852260630803494148920567887738582161494840171513485597\ 6668805409162834714151670117515007737413078927371653690690417162436928267585041\ 7417941972708594706277510394281256027429285028596400517837407576947631928177224\ 9168405499138662500174546704484197629897507705315393886385390180936901358238821\ 2426446458921688493837156513200920543838276349435738620190839286062506824475398\ 8760432592791140121091225536648820991272367597762875071347166784948604253327532\ 020249696729, -80.1809665824610710791373068161035740754294653774412083724189709\ 2015387768485686035527764398200761315867518541216013874072317316024476881873343\ 1067986823626089255699583539092749121200641460308972182029174175337544643075100\ 1851614505532464681680227031152998584507750855079785115928212267692240262413599\ 1629599325898410085771294550509412253232290005248714260490824537881784905837991\ 7881179915823652583870714338727159714130278315139725956601911154067609348260309\ 461722698893366078401993177673005237310120552217119396, -19.5523906621084896868\ 3939294164618275132838983326290549676127260291311603544838183806250700972391477\ 0228844442873312548224256107364522253640880461644850859718120249296741219162670\ 8984050572894119478134211018707323687275897088707901705015796265090526930118311\ 5110979952937748697732415546214112232801161458727374825881459801813801221200269\ 8758052150246516695068102063180129251737823195658494686432339758094453546573534\ 3673059648458491254283780590403199174967504210391861474072523154192681224483140\ 71566255555280943, -4.517419667011459359233299381560939057748648428104630636877\ 7315215390997710664485975214208939239558597193958091263337136894773779557492389\ 6877905554030027773557171717533553922241671423886374060318035199644033956248700\ 8999517483519115972832537316061093305786695340979285586619639892087597784326780\ 9573601971626379714872021933731113206162092278284386854328786019888391002616889\ 1137275335672407610905840195631806660350523138709461387841249501969373236985570\ 44505873437744614637223729688549428774884229099846200459728, -2.741733204079149\ 7689541103877926114714417731457299934181741713360104111517738833814399980241090\ 0998684114610151625153803422060988097112570513901977631860637769489622407175347\ 3243038410374924925250286366541375266602969069439252703002835701422445419102556\ 5795732658566802230662439346046510642482064945378159848580821668610498306146781\ 8025084892441418932765094745017611950498015128091751108414004612385568475232654\ 0872393244069114513284994563369038373101693289615479394528159746372835795865330\ 7923292366568445160082, -1.2106583742081678967227054320678987796303236123557910\ 6102311733538549073247539027920649794764791466605911763253041343846961911280462\ 1767958254971549063100294836900076612004950784055031085943174181001943777302114\ 0843439794117274558296103151458357673449604913446252750860653194672948541565663\ 1575237845976301236970688757632711811153811050701945943332696866032998451556234\ 9718671004882369028661754280335441500866956692177488495393877568269522416940063\ 6594753007074796127122191006323048240907832492647967730956261899, -.83686723221\ 5986990674718963704097564836137324452519046407017935601627245090585710735058307\ 6163384334639805265773180188593379984452941085889451784871042338184594208138451\ 7869097040707587740188135786779181227578422439752461524087307393079115226092089\ 8763035074424917910872736190290824187581756810413823053716313325541658892570234\ 0036125235320426773755105292567820287546367751817173401140439510880014944893255\ 9288672294150239676538806285998209326834207534478418866609991908574969952320565\ 440195611240757678011217860, -99.1664728746370071576659788434772942710316407842\ 1113136088729589651165036456660460331473415232987714067704668314211142585830891\ 0992218406511400452231226588582888439340837958024272842424259252142997394741496\ 9655200299141524650943108871842958177026827550344261325030975624535652982259514\ 5227638780071044512582764951057900840934214054870390657484899033023208193657534\ 7330776790461737052295187434825298404371484085495510096889237534899231967580980\ 473983789318413926667642208931545798760977953038524864550279906960551, -10.4780\ 4284175851758768419266274604455065887204523080533868306336731410073721017941289\ 3037298274196221498701282904125126552654572758445553916774665867092542090144785\ 9257616963947078384660467170759438177457630901736249418300904116986984070948218\ 0207405563609916562110349472350562703210861040587059028049184672284160374929069\ 9368909109588317317171901427646749696962078995736705752708726076345957324273212\ 1171604594909838630189998139559147231739229745265194625856303468142752306439173\ 39787009961800805169878651129205, -1.583658079833228094973303454244890628068248\ 0443934651436604855780639032812418001782378176617989095284572466395784855532068\ 4131720259263056129591241483086923992356750632464962231324317912146709659893254\ 1697495368234819497158462654034299604154901013182839059481268537005176432645115\ 1234603517692436089170342998332876839695667333188118406040769578884716276663310\ 7574490733937253436685014948528199037604191721794212803626461314046813005284484\ 62821168836415207971734856248073308843305492614815823799736052758847508743, -.8\ 0673660671681389430111238097329652486221366752958403505512236573620533153954671\ 3536274236565633663145391167594468588941102021848399475661025199052306214358483\ 6008590963521047928272524647463056642748050766397861359006324378078458270302219\ 2694205899067327101079171516779735200404475739762742961916593512177619758570938\ 2456981821344167697955064488565323635697141821632855593828215979759732609922932\ 0775843132183980003511808159156280313487444653662377554617769740830948468634108\ 3160626364413438453425026452353366222, -120.15424535165483831406707458855422538\ 1369379754786277303627920890295067546590210720710842794526119481719605320755135\ 0599117724461512544873319753871081976529691830776385292476761298670735248964830\ 0469293025262317957324734442965715134796423885454214411627055281634645552172748\ 2209305333726507560595481400884312577756131077665090138322582916068264625996603\ 9761718406874307467984642689124662717437701955760704177389184291453020537926188\ 8475900599459800532625033868714138082914174250014457907787794248974065059407538 , -29.5127360156039168227426747172910863558523185248366306093623140855131896632\ 4860360889027706291222836807352579009536172974437340943518162881144322409937891\ 1811520504146552835718556882172291791236397300411762811183214304711287141784530\ 4421046745045311202333572603301480800691109613400206913458971057081871578427903\ 4440444141494614330025841574429391625670939720726378545519928904197482792029576\ 4412698248501603074715309602874238380109293343926286526175697691461597790970952\ 653234314872564594964404925421440994973759, -12.7903498100061730896049976031056\ 5347304144079115792785891684238312931965911269373196727186541712766229657684416\ 8402755673979026686523300616478261817320285957610031378132741101729088050877986\ 2281102234168691995906592553476964155595267363097494962409712379065809032390450\ 3747586153359561374046802881539664322580367472593015900283442576840542988864641\ 3913427629622624009201450971139796657798674542084911874186613137825048957075676\ 8551515716764864819709058251426810522637050306105152452814308202364275423356501\ 47387, -6.972635260305454330346443016831977027747460966891625052952238840699054\ 5637152027537084956719420536533135242599069322326545170377442220746283968790477\ 3206271055250701760757782472298461593071890088019429458317308683908441656402627\ 6917866596382123464043826795444068431641405360567447442857271090367886578551243\ 2706045175525426054402269459536528373250111995800095854448495312510912496486112\ 8761392181612465707921986147249515100988944669457973552572073017068453842043122\ 67512909140730420757982001181209581042993228172, -4.299828505252042893352229840\ 6764229547608749022347383708516725943728325919072929546701660505534414139252463\ 9165172302955683382020804480084745122388937446744900552210942585341645447300712\ 9671591418091635308243629355717829504882316576553050756303254632391673344317347\ 5572180404680400772227181787891353493330042129749968567865930377434391594657127\ 1599578461618765649779703286297956628743090054473541936731697746695747009230039\ 6499855020275229504504550956293613802266311741880102182089674199646235306724727\ 7012215836, -2.8591964779137569853192147115046885419434905939755147294283447670\ 8111556792153330443907766311553014318874975145501460582535056963750686833884133\ 3465254957028574346705450740279116223209569845347968945751860574128722491843088\ 7240845908731718795375505033283684799169591505836656730561266341493158136158466\ 2523560112700048976382031166454378789616692205072373359101440913965375530581606\ 6706331798804593406428152031663418118189893394300871164980159667176139612840030\ 8289965153832543481562688127703064156484093553651855, -1.9965110132202650843861\ 8177266848439290007813126065825064389810355914122965159565188965176681447449927\ 1781681705666050484942168929176545474032951595563010082084330282463161576627653\ 5724989673432265034731872362838557531414528669750569180118429871404327014185011\ 9156855713801132854294391504742265947026140045565458114731447501976942459183035\ 9228394748935252751544664907462342385606129939917395905896355589802913157787620\ 7472218151016140288586479421619320583658020916868257623020852001876238859516946\ 424541953845885, -1.43916981509434935892394417421836404702380578379687585775156\ 7473228807919905817546208083824915742385936973968612365428525279565034789439581\ 5912227706302752555896513845745322345612791811232388298187015544813484475751492\ 2893190840605034399723092748050034459016181971448775494797010205229001377228371\ 2745123290083392083660186693025194104720172159219178044699348991454223154826386\ 3770249625569573356005622019793843488075073579959583475624489982664717659260816\ 524001174913014925447948072068653272157271829459967361816, -1.05734059325961468\ 0872633483571989947115754950903492344896088536513643289915969765625812122619589\ 4820104878352551750258316560271233109326379014044921267006869522782595902997099\ 5497626358872174232999200458779698927263332974305474508318328815599561993060181\ 1232521323080490665206591095363263072106307108578211238419891176612457112948207\ 3744797226790104163295892357614665404726625380684257590570457091325680665225546\ 7982865486980173047319018127926544015340043851160193220299688912504466063922616\ 00497594969110382565, -.7828706061746264043360390080861708868701552612596281689\ 6137962391566301545362213050484914835749035388124304370932186283070313592311714\ 8395679623473698715861079804609030545819949553180937516853488188142941074899540\ 5759015241282076452873873639699383434228141629340263025411275152414122615029617\ 5530484217061925826235385376782806782064675714555323720190644599771486745249964\ 9034797310607183204659493658016595303959091761596580162827012663569273748812533\ 31300331601963718450919142736225769511134785369961909653242177, -143.1437933912\ 9972174443451421300704984610754528272238234403991607789467595064156861600469369\ 7161388048323146322246648021535257943263314425862194092101550484666676400851541\ 7226597101374114858269492158494632524256518647312216514843016398364883886193327\ 6778259216111304551455249472122875419957753959855755417252365849086789163250163\ 2914306179714647348961334734930927145140042038988355837613383556600455050075597\ 7253071072236399420259772381723565498479106040602367033716726940982549281190459\ 8250677289802686018829885, -5.2006669770538190499554502091987545104748681530432\ 3057092133106906722502571249363626682685142043006503461721284641510241524311397\ 4714059461213921037452447998039870820175764532441016008623700318723679255447983\ 4884865524048301315491526029889187176583823297843383532630659183180301980541052\ 1701105226691392090568010361755691963851909340913515952164382134769472862138392\ 8506523441938457140204212730411036114825579148407026384216388360835700922781099\ 9717788182817959153226667569590188504920744002800079556429636588958, -2.4499766\ 8886700914116256042984680757139973465057166768671925823872422431928594247122858\ 2966770367467223634177653459499703114004768903275069981069894766956504232310439\ 3022900569739537839004320420298085927429087700077329366639757589118070920186800\ 8996640136401784896300968828875115675253732210651644833622068992625189181522199\ 0967821856621052210162209982938692506003128302049568972138166649939185745224608\ 2251765437758337229325567278894212761197642305141894193026093591085791413052727\ 401853569696676480732716050607, -.763499976930192655574918876817405040217628672\ 4878033043346850387993246511445532480793421342263889781061626051164216620719408\ 4069943209976607589237429206373154407300552929129734656204961979859510533602936\ 6644727371064057129222967990187951637595442938233231978081905067806799510745871\ 0798835738751775050009185477380676816325692611479255761846631079038261269645675\ 3562875161441158152058826356369786939472010273908682187106365686263424762512943\ 287842876418019919403142330270538100721836228368643774028700829218220864], [2.5266538067447086456815028667178477282732656503411239912690915389762353795703\ 9989098742786363839213025936359510955729740634839723078828707550562055433362207\ 8624832138797935923453770263146287580035125311076089473026804221816338550962180\ 7088555259131670354074126931488813838136432560018073713796548705142186336808331\ 1380403624800703437609437998506441506912265270751953568323228375495669624542753\ 0551989159023192343198524208914876596911602492454543651054976394449605001711631\ 5861618638992535412509648822141236437582, 9.74943126535416293593650732702220201\ 8858431171265259328021436425371055086500213906997549486880348981800452822974019\ 3265231559790240075171550906900445754907030970469526949082321405922086649786568\ 4418439622134806149696712751403939285160953079509509260717130134560315137240398\ 8341838077843738679613310953472491087256795247831345502106907499126393237945459\ 4842317137525091197878082453550033546212530842732900951076713321993144884729903\ 0239363276210295716769885917583872844692332019252665809369283930872662014448516\ 21, 27.114362477493974352878464169192860500528742836232892390852816537631756579\ 1034544332396156634751247838719779072522629903073397751324920498442306002689709\ 2764696244333938855639468229719779230173867992974238631306180160558480885071962\ 3927978437376312817519774392467558608583808281607810483017837168979168586718970\ 5864903025286459841622545995424347314591517074809922778535186445709228203301233\ 8120373748722967291424883136886744845941952409718962991370759506205147556873949\ 8148337379479781519158813959479259776365808, 3454.60427832686367296303522001831\ 0870961296388746082566471960404609364010768251857086027280735994790654866032541\ 7356615615883238904197221840928437086808846235751601750940460231420904988152876\ 3450847893572312653431925665390286782349992420023980504826347582504173474821504\ 4687410493767559924380340952416695936209237822555237529879576606305341482549250\ 1477424528913199484669858523810266690744311442524442889032102732740842862433982\ 2849601867266744226206721908089030905715453391374792211924694137858328104601324\ 79722, 2.6635085875880110666365128043027012518395087510962105177905284311627099\ 5657349948680657431169845813535049689470941644031532361052881997548574557793726\ 9997597696149776368955924637488825404704341123941112563741410124032616007205195\ 7829452051333008981104974867959527874823480969049283043053699137723303956114380\ 8339535900910118477707516108870306578452000550504717242197633351048001906660094\ 4995552501573539382613486942321729770788736184807856300351446085798181067306037\ 8829420175394620494838667517779670317435179901, 5.61085277923333579599227736202\ 6976142347943401034040552985753249821561859741846380114429875399808774817905953\ 3734081823037187831780832429222280072845368028552126532509267438672180391284637\ 0025756710216510789648816355228785968529987557540924462138675620355737806483056\ 4693790391639043702813433931288329144774139631660890450455649024847285618813315\ 4005819375019652797709764148159547431264497778643285067680341460132878275559691\ 1577413791375404442918267469941143392845302934752338868592232602974827114866674\ 72354548, 73.332451673574938881735986363007699708338961161056211892446387666112\ 1901883068142102783372584585393945863469967791620798004923744197261850520187064\ 1985756609647918153198253305707821813814977635475253222187096008761994720235568\ 7335082601042255701036210215756112799339560999114385817465835107453807481787920\ 7303779277369923654078358882873190448723727382576251909399200701659503209280703\ 8779092975402441086321727060259673498556611730312853509889977086445512521166968\ 7079737036391972421919367761182135816184127462465, 1998.67348392257399013652911\ 3970539420946484657059772730544552657731124581265436816640220768125591405845512\ 1912195861103827841360415980232674402657209073600763249673953498135575916728956\ 5309598816630156544998250376569159488140776800733755058692572843724457580921761\ 1330483770221715702340285120028091674189294389184812262583125089542500729443850\ 4218801781792757493269616783545662363737033421529837988703476809173655181622277\ 0092043729450168122598373191755963452386592975511005842227235219689178758878309\ 43150783256, 2.7608523274609086877463475693423675282768596857308865619375737298\ 7204899793074701454231506586916946339267036112419693407717594691667927620092934\ 8415236516963825376918149345516045264614660670057914086679027893997794531056223\ 1835480733525696436712070045678566633924184249563989237506946443736574952665518\ 9493315192475178070633763015585835957282791472039518551290154061201663637968200\ 2328127584207317111994334906394803246609689749940134769599384230405946495709340\ 9413798618310088744168520757392453401653580157498500, 4.09009295766547703669071\ 7702691229552469832254774564429809194051206360448880860246293424276381661361470\ 3033406447474241449187589347072897296981483151399995630806030143617809103613191\ 8795698676521988128931911265008809867563287324860882079396613157814668850211215\ 6260382623121548215017849951679629416585547220299892176810522271723879182913805\ 3979850428962676135168285933938298859957713823272661646806966864841968396877038\ 1571073587553042591791578410588318776751120636001321391912745115812552608309643\ 95005828170670, 11.308384273798301261897553949694337256205133098470194298689150\ 7144770656360707364470378348473674879479613865067754551644519712340459671058588\ 7787472694152497494634116283115772464059374327219510189620717443070187529588561\ 3252488070778619030053834395301917982115076544842878521321052474679502688152232\ 0207162845181239590156101653560710233341263176566417766823786565669992369058328\ 4769856308631048062539142839634506532465998804695951838058173625279132201307840\ 8072581077968152281665967926884267788286798962706609786, 22.2882117858862021380\ 2284183789462487421149220971975407551839391136722104052733161298235589491266898\ 6251330614360326645420408982634003828351668786908709871449563479408773720314840\ 1872342397967072940276045872669677924526065638616445577348286746099780428974073\ 7934724583240968664926672508320581636827960189816006799227871243822382561537017\ 5209411960806414862594714655261592327336128350669798540663072372453135604826281\ 7778181364321521605337539354972837044560299760151784240834806805457946614795833\ 01870816011841383, 181.32468343097818244562225151634043296040826112935133970097\ 8491801604603686783532216947387989480097217747269826015036792750617965824269329\ 4046871603697772906371858954131553465837872635233425983696761309786907317144431\ 8561927329482400271455071423714890255604209039865141773545550270841938209792021\ 5536011907295537594831693794194457786296471993731567470698273033990579216495960\ 0926255941383148636064053343093344703995192732677950271154157384037985689576420\ 8416132687284623214287995719710414430137356404876634185562, 1456.71735704700628\ 0197711655158965407065566563740351283687008343705576599532132823034737398678512\ 0101137718896879616274895654181823995700101420859391874365494314327114619002502\ 8520432885443976773002058618211272404237965410693340788492599715404194685991852\ 4451048389750896932125735894394028297142438929980600213492273449208561248757492\ 6085649372481177808848191030929450682143845536277279467075849279783670233197327\ 1209204339989424173527573877172323341154591593655059689789057283601256706924842\ 61291641085128096236, 2.8899589938759151302481514167889111871955106109141879621\ 2485656964834805211711428925820653139024877924870395220192014047808150546071654\ 3534207553486499142290684797727935466042563581581778590235475657681961895088642\ 9206373350749589309474545295307126365565999953655853017075563429116870815902513\ 8824923566095017822676659444997794906144381735694935270517861988928355931639976\ 7053208819991875437581964043834635964167118794591418322563488509683492378209337\ 8612837284945654540922534029619180820694903790196675862452616, 7.90641651542819\ 9769793812144949625057788269958003347244999014789291938391488973073637373303376\ 0582907683053318479666506278790858949660241965607870143277355478870727277665362\ 4628514796469104460733600861068686200348316323938889280546239579994868348775287\ 5284202609306505355310356904202350741501155188077471141613911498110264709743069\ 3931143797044033507152395534860378690054469965086699937673297182442648747855105\ 6092727321177595648800928259223841349821534380613022486563650374021996024566873\ 48160619193214875992122, 37.325571782843003299837907353203425359917696024842935\ 7415144850969235466418336710530191650029997634967599033115830131822211643660788\ 6687861589232961169056866314250770413052922503131624412244772400612700115338095\ 5633747057073040425865091351945648891387760645069543683903108178860722889839012\ 8731097295711292878142792376927546592673778090230113125553575130918546345201211\ 5539253497802367691287350419887480501718948580425083087026269218349333766578116\ 4344620905227752350240682977026452830797049684368332681906982174, 1022.76980935\ 0438074570739400061763117646307671844764257885701373231409802793825220592113552\ 2142356790225651859462751761336523659910842635978152280817806767939545089365451\ 1802974345343876927461067523420131125501149881233572362960161290257266635188733\ 0431092897491327248043511202502991739480191268018338652901105628917335547575877\ 4090151864259658279931012809665319205704897861584485362391053704574449980343615\ 3768314099339730451330621424907967164223336910504513192602811321481923915412741\ 33097196683792891276038695, 3.3336505717314485913455019187753376328570921934387\ 3022932740044625116890468263817132345339427353377173587036983664569429344329878\ 9834351864170396618205531997039281992176707124020604192453297563287529484859557\ 5409522621783254893486238590457630123137696012328852654151390419566900656332481\ 4822163128926891378443498957509227152109404976631130638101083722484798128554246\ 9757960298199426144554951137400651078548867021588479062637658832600904649501423\ 1417032583424417087295620971495680909123548847117702559374858438054, 430.912745\ 3959303096922916619127968658817443595292984863869360623301129539493538524857528\ 4679573737206867977017063802095859065340787027800240152571584972851662655374500\ 0824136910007420962597675157234135457053596652498534809706246224280215838019327\ 1571396617655892645753572697482647799761204106162403747145764109012627088570751\ 4147972663967727945690497417382611247866611446458526386457999161600406337647705\ 4175706908800223389398279334855430592877353355841751896232712504644546417660554\ 38486490722830395084783292938, 3.7612951811463318426198977285104541574135396617\ 7309737398025295063598510689524746684352679289201821831566284276052592943731703\ 5361334382848012049779976511352638516097275175024362498853690894054766411154527\ 0466364418820076084481497855126135875272409841487877350569470026995963721291234\ 1217722269794674663230855801060435422737337842519227969226231314547430199450126\ 5776741956119618680567067397710063120193828676502194173929088978125739823166398\ 3713240750842672483156381846577839946598427079942535501447404766986815, 8.94962\ 4321117966637122626297875256104535613600763753953944196972915166240467953886979\ 8771485406595840288198028706957461609920350452156504123011030399128992606300327\ 2668950928960513005222230786616633916940955920760531937963493479470511636360052\ 3163323371098484264604088594596095877412705270737342127937601821220855905675073\ 0817165082086405481551618325753085526820734092677748491187852063089545589382733\ 0547959954352243310222486761806444879127936438974430762890714447305460026574923\ 96964060258839125118043821112539, 30.690560534445746896739207600721015500680719\ 0810022906890351276485079186779924090628684608256981459966632791765417143847796\ 6502863593997578822203882624934113844920120460838998938717335860561949029842024\ 5659806327247054071454763612385954383957868249450469166849967967882638329335487\ 2157431415663546626767747478187497885159549835916700150354992211706074887183091\ 9977158250710298486929805918729494892928452823837216936933700346732076978940499\ 5512263250777625830281412241638924706874871314802819619764729894997843996, 249.\ 0134239229513164660542157499591681591457242285538575532722209956010083481770238\ 6782287408516576573218145999587281952445375699425586662025711915501164615915658\ 7476513563919508084224368912228347111097489010107404200519877231609002226754499\ 5811021835234174105040976874442018534354078284812156816083084372546184565821050\ 6676873217198865338842477707957586680149593795204623423934358248670699877248764\ 9084352094226162373449085307156442530280139546902857840513706378036898886514569\ 27393823134640779076563767924826950, 4.5597430737842107720462907959424494030961\ 4543807011549094937996781301613986770226125440790040973115135447562120433580641\ 1427257011318020226048377144444342738331972330943568418362522112600317740919955\ 6078375910622734337118098055110093953657375746206744981500925164723027736628028\ 9938814920039089523167321637492371523744095376323633028277778401155398008107493\ 9792026818643073359705657506022033013659951369202884606260261078680190301606626\ 7771583739581212651634324263276060087141969192968953997150163702709248093522, 127.145399110095811987450382297092687555986532981365358066738240851468998568069\ 3168867991782991271429317280187575572165364737883973746582544199539207284245745\ 1963359533954264196331845862316479021687948455220131328405485150827024889150450\ 8615873740043180487964311438106311322463028716844153130924009077761948676818823\ 9762011221882788169041475653723194555311308932435436255907583111593325306728841\ 8740656830112776160041936905560249140214578135296399379141454126339428199002267\ 219252020501373910031752629880344756197, 6.501956238373342612641239097999260967\ 8953158837691889537213305482179300788912293449488200649036986775911683186372776\ 7928460220988839230020398564626175279088710556658205393667198262318926488648664\ 4706913879230408151854363488615074412182674473255281399083015116545591068466338\ 6516506396875603885389669817659087706340686466751094692366496514277964370777132\ 7730425328008630563584481352876698293359486591494473112179974834278679947353267\ 1109517865302983665963245516141854271357921696838441743474484851384316791875511\ 4, 53.3248949883062308237377356107404490553416432123762782264341017147510933429\ 1629491261524332631090384657612054448100135878200767782719356925975524067379331\ 6332572147095850443827509232239493366869960486391661729042099252621523321529554\ 0731284513765151263707563859249393292100309839768770267795126730733656971827847\ 3811278204979754713355653110619333985449406374317415016826982955757446345673579\ 3422421798375284615883974581661823843912316695437317221254363384408285359946406\ 129706690685841775065128961429920139837852, 15.58017744240625278067453128502282\ 4371525357191496730332528213170613478098200557362656838085733463571919741032440\ 4123944374175917222532158932795451051063474872649080864487622904002983995514380\ 5144206218379271165794013140459150691624327886983074021476915402503330834748217\ 9305135832202637082796104842789446984057575840222963995810838506883880266349578\ 7972680857493166753803832920873947024513591547011130423445395828539346486585933\ 9775171576978320009731560573251298125479623111045886234682502212449897450472261\ 2922, 1.97811199065594511079079130300126941587836704145642818088639156737227326\ 4098957543494892169251474682607043884565739589274081394614000991443214936084191\ 3266195195370449514738934050100923710255823078798168776911463511515179866827661\ 9718313912254849665324745214692295961468585864881255588181597772006043255540344\ 6787590982199695121633182103871562037404558023493724896332156288404235594599416\ 3977601919009577523299623655926805872509775335156911552022283918110986487465418\ 994223709249572006696639544949138002268589863, .8236806608528793895777671228364\ 6455379404836957658098327485709760253781054362820162099804266798118357778099006\ 6125424312160386585027905770766588088901479547012536377465599217929662206785835\ 0658136899848602207384548201762802164626439600818801494936372778646567515481346\ 2601593924026249375676906921739443785237625292818369166918679215459559246381403\ 4352407525255141157746211542047599876671291638413238422551985003289919162044547\ 8230813102212969234124232090302933109801363232296028071803458306876918682215094\ 9967639, .829626907376602336460075246222712685697819926740844735955439503734532\ 3073848423606586434365649763484297288113526412681752950935942597326366519870740\ 1551425898344905407703368208076030575644258454583047530910806987829389495623466\ 3927667876779702986846458957468657252414994061993168398183317172721605038419966\ 0201134608736241831279928079690628954381862882207051289132751494378725887260101\ 1983915623020114983771434601709282550800989444633671300095927060905942214920571\ 389652158486853412489986131051398235857010591591, 1.309117155962673532347852637\ 8720096441093994678522811452064412945215176594016097434029786651736761347119760\ 1184374457907370809498940500650503427529096001578307474648384808703726129635768\ 2927308689009595428574150871904216795295558235549436482091388037800302627977243\ 2400711412534305581401744850820011922750012532999166418142346392555679488593971\ 0656877945471229801749958856678573826896433653102015492814839899818754720511214\ 6306469540222005668334509143431831290910203061330122715580079282114087566557939\ 3872500208], [-7.898089801693271895430574616073730728824059478837365009715800292397900281465\ 4023223492338378326205638014248958019993293263213329242300037429952668769438381\ 8432666052447152876777340363852360284858298901767712427529826529808660414533900\ 2858876084051800546033000656076411574503595170693545313504257755073194066881895\ 5258607880370752950468162301692218758124918868417496614883871509536923614568074\ 2139345368335624386279934916694379891784862803208779810386640568006677857433654\ 22434546711361352756658455762313673833246, -50.79660973352475076711650239372762\ 3582366009518148422624979661552548211181022155634499445149939378791141391101550\ 3182894695198379091637993083255050599076496379873358646766047653235175859174445\ 4245575580037307910781084385370660249466810564957042460383147293813905393075326\ 2915205283910102909154563432309739391082979757040250312696269566945655890017433\ 8637849120763224198343281257414356208731488629062752905974335023998228209055706\ 8087331024726029598301513298037768005121374556668389325285251572349205712448946\ 6376, -197.55105915276401800709241537074860379896212840083927523795956173365258\ 6555743114812517100075456225533165274505020447812852918201987633249135197463901\ 7528521526053472496264588068430216533255692585594352199340903507879229189246598\ 8357413769065645769909700249430640542443598940774096541324100603874656823188290\ 3540223026114437575961937331681146144504367819323696607694734849642157850396829\ 5506688046301781407578372491970833116987189769868764830365511233020663888715189\ 1165146974476934827988441530560158642219105338, -124411.72006644727361158412280\ 0574900935481053472584198708194117877441139921063193758238686387578830347995000\ 8768614393596303420282163218744304265976281990662090067433291789931655130689073\ 7411163592791745998283787749395830429148992312557907399621377753845528448711998\ 8822049389162037527050533521775114083365691168624062936984586750814297703270186\ 3965173486753343155191350440941308537829161396876264568132236001835498910189144\ 0362962724203471621246995845547779784035269709137207034367418177709764163455366\ 187512773, -8.53425335991766115681885429824979481330978603567466366503220638630\ 9506868487278824921606554766096953697385559896165583371294712652644026326578698\ 3868579472610886982298335237105127462959224200790906716086072893255920849988522\ 0939654877162250152189543191107774492108258478633476515901332725062645800109037\ 9968746312113199768784512447127894377722209481029393073369135244211616794325258\ 2153908704781165737538840272101379708356119057821818482298685318763004249616483\ 727877253070667492575949645239078897471178140029111, -24.1746790541766821285563\ 7626739113564416630716145957532550476989131834344811314158436534778520482278252\ 3712386979624146549173905212164097244380775284434187685145342866986740323653765\ 0045454734051156624260976852748795899103706097262377975615992976065044417503412\ 8903570770417083926214799452906671447582740900687911558497446200763269978863292\ 8436467106385393890403646940633513070461118629229444111993793213373481434827027\ 9422886109011277634079643305211577531845951372700270293876308005800414650624526\ 60513556833230, -738.6465829975644494056947937409812278964996487967939375752298\ 6358339388037726699456449366085942915945611482687371183632691761407735912049550\ 6880035856074710617968478960200661888677772331169702105107461561534662150173158\ 8014523834190958637769880675560003016962946570273343800997852211782303452070293\ 0563541698156219021434256968915712798379008405345837900336442305092182957946772\ 8610060575959686722111588790851709476151882048205879194749284800477509288387272\ 14994908970048881115571195107344164138398305485822204288, -59995.97200638769476\ 9371507643811671694929169241039731664320304690260758234591189212315396547995734\ 3644399712739007894987986076668614766662293724948841074140410699859673665054804\ 0362722553857545082422033296005971474222945837166851820539274061184354023852227\ 3742770473260883206402810489411110979310497157983399180302904773515526042658415\ 9787222035887766688016569739236852738199672245966257150144247178165611465554300\ 0854682009593098141345639731519314410199747196946896432200405973909834985888134\ 7458139604971337507, -8.9923847394696262232047803202126385153000212277418858236\ 7800770218586270009517458042843551560203758040401582535052317965111556303071299\ 3632807540075496506420086447076957692535843321858424375995758863855258200493371\ 4806972313831966435942030454534032044466275938866715398905848915436204021694348\ 8727597970416339004036653270342726199460642689803268644545956584501286924954450\ 6775770707934425216073336434230010284050824701220774294435469243707893159259919\ 8343464623569245755127762954171954912133787084683678793731499, -15.678260369527\ 1094284488871177707237738274473952134520980773876860683233923074745206380848415\ 8940279076990610343976798439222036461197596364062512521914647149584657587358306\ 2733924480093820641718495795128013925665565391166914032883837244743043796591330\ 1941905562016049871980987647291031879996321933998290172423307107545899152400764\ 9660409574882363729164316556536514270873062055843716036353294885909915511596667\ 0391123304310182972997087826120150004140251613772306610655460471301509951687834\ 197422427721283486727296, -61.9007093760275219060691958726580822625118644199665\ 6449426897854576039345828902139860271387495691209195850405148929404393932370944\ 5471276618208832318988597064539875771543275819394294985509207134575723339972984\ 9735035609662071477464030266641575767280574358556772968794889955669093378393482\ 0595589502859323189416014167570347025865541917150493784874218967905992699846964\ 8990114403691553638589414058357421971490589339668993528476670719250650816268239\ 585332196536830843351663361915295979865618721919759937623779916558, -152.363042\ 1968230184436177080356453598141837171400119612176316017637875314206519515438856\ 4531276500702682814707553123550186458355581570930454910263876913342576746758085\ 7760235185508337135879179364650552251604266737667482444666942302786010598708710\ 3875962235004293365125710778629064932255664792822987064174518266185421447348698\ 4038746547818214725341193422955491114717155307160306204167907977239755596796322\ 8712964149774047592232763561542020390027477095590358376339756375670817870185653\ 21788131883364756128315920453, -2457.715706112262844646285253595003495857041056\ 1322116849907617499085146727819528957831095856635107965963567129407389411503905\ 0188409183270450900290968773647623085085558112525043924288527750368346895395242\ 5650458615800500252725927952618531973017990019012669291721849262677619829178667\ 0047173536676372721991096336764277229605250697925128027433547492503844825132565\ 6373159101944443847993781137689666393258555309128437691385226225162273508944830\ 34807936377857473053629127716194953766956846789055448149860476665552025, -39362\ .129490423428931568136513536509569690891952243018664823534360687981814747448983\ 0080768522694878003496948295957485698877388207955502052035856832560815973368082\ 9125661145124515996169032486642832493997552550647419582556240488385551166213199\ 2909675689966482334335781316665706898275442032656106119090851300975575845638455\ 2425185923333588364769268334323283884577127814674426924125545882265008758803326\ 5487595211631442397434070878122917547932488738316251633666427436388936101100453\ 7507867680222164005094149448500657, -9.6070820603091599486072711517877884428614\ 1061813588546154940517590117935986947578643332756023472098615675446473856612308\ 0739600044642174008727195273671237857246552769965312363838237509278038474067152\ 1111546768555283609233846503871176347078971742530374093307552361374156634218940\ 2543158857574945468662423528148885516115039738545487256704760488224564549257894\ 8108346325584072254689657624208561241692140643208234151361957243208119318553291\ 8534294920514167847023281567653812407077422222508697584890700714817048273127, -\ 38.3835781399383142822536116416591753048841180905157977411831436298822765424363\ 1333620809557238290742574475909534732365831515639321372921557660550137515327767\ 7171140403320268469426958647107382638627641573532478749084141386138014907954766\ 7487256255387643595026191795655000287787944377594395472683510867495968403654180\ 9689623517615215894111621414672558958139371619352393544101704474208963087135688\ 2060062052085390783101970091227023066436645254208325374988829426812180695717979\ 915496819429713409421101496809510815758, -301.714895361787271795868644573240219\ 2934648458612619152071442481966387396399201325478402242472964145973937829690970\ 5786109861158786250982334703278300413504760432408560522448093391972083412890232\ 0904770051151234368297150820439283801560171744136702806454349856681576442040966\ 7279545888731430732353302738310871045477893424932994221119658892308258374430691\ 5580916762823594657727463443592332055860798726040802176047200797672556786297199\ 4265372675516298234972791346731134454630002923858876597998677118328878839246999\ 89, -24572.31541982117328317776599716925381409508300189459058443018081070174850\ 3831839728674245805758024746995658989317657240274307039888006126739712143800621\ 0034434091270419496986119499165086496105002283826987018432370217255136782987336\ 6438175948825024897874708933060229796316533568777568493013017711745950835783878\ 4045820583613647102311947671499290885883619686390493919181842462096405780119403\ 9740838410514650391285702546761743350581624485759320997570245934922508604296232\ 35001851263915671643836914976062704572926640, -11.77883088566467353655616491365\ 2855077813876930592116855465266586110339596249683032064814019213211748103530826\ 6414866434031862551939753646710364555815780377507892860880634531153232331387008\ 2889730781574525239998116003202942276883883926256868409584441281218302216723470\ 9648366727572132293938739320946635127572837893911591689857086756373485721796731\ 4308803068691801860987830490134444467140130905916235664817904832765227317643307\ 8991191971704365294717625632106906357133039764798976029333789609291152140139455\ 9017251, -7772.8084275907655155500386941646788271071138238470721558482259307884\ 0595100385870963599322984367496797368466492825486264140570821707742965782549572\ 4767885034624681181635462071712005722597685936545037889564961840367020554410663\ 2998336609587460839327916924220927085604661673272054590411524005090844779121310\ 0894217476121954259060791868749320296253231814566178522439396017218440432527705\ 5119175017753340447567549214273112854533968099294212117930864772148544104369165\ 0686218172607981542567847556075814406955061597655, -13.954234388303681702470098\ 5775771322256257165129847925924114779156347192421507817948718186836875115206365\ 7021453573538593581962988040505309431244570532448458336378054936762879871797958\ 3691730233708841838010548311243828976562974460678060553549153908183284664569621\ 2211003039096134455141503001912440705962980823962564759665754744516791251486417\ 0560877556459830735323150918974602824190517673030240566532255474478767284746916\ 3141913094391753757578347738095475029294848999544461851885707009267371893869730\ 285813954744, -45.3094877843952308566966725784687830366877977296206957225057806\ 9843076114528749773267441992830638134168482415304939971325325273393020709222047\ 6934131603518295550134700305210088962032340757886552493997677826220760676613217\ 7689316002127516308186477526683408206498716283036627066381735165061420626293260\ 0558686995637153278877349048121461691466743739138309794900199522062562170261867\ 9773544674046937064486508522462834238772963617773700509610738858702514313926832\ 784061422775959159270177905316984294578373827415872393, -232.792602021390782359\ 5767291493109397691052815408049429368186293089720767774385041794853663552373323\ 1318420008698396793723962738398498459115638383692358926406096535086801891949777\ 9481894727983862558185663162325576362286152148975629996857503708877795243078625\ 4987808990434437111268400103832063311049991442692967263721628730664547121725338\ 8410499488647725082868641602222070750752060739182262568932253086273211364330282\ 3784510327510002072193901822377643734641123576720423195395028768402073827550359\ 23940334680198281, -3747.142838441684332379577198407278894153092927290059171676\ 5443285282881276999372885714280049161968762866474956325931810626063714825947334\ 0505981561154588954658607122188127868132741642043190298711372253278671514670437\ 3949397975813418545480753694107542511480288829151175277646857521949830830028688\ 1202535996222182148922778320500888364762596140681935546159418647781825214353968\ 6697145882817008042017397956878662111897717888266199676948024592100989437663611\ 86811594294188243948167114059661522393216913568170465511408, -18.21379503285886\ 2164015083879637547594725715945586793913681204675607796816971255222907142279168\ 0468602346483857992867885259810265477817740747137633019518536496037329060600976\ 6125109653699104616351420577037425092434551596887088230263756328798653059544538\ 0246484092314606647119696308420583013008443003139041316066696168129852119176733\ 7293447339966496662643515360285710401677454696408536351473734120340002764125725\ 9212813751822603099134103891920331050538088207494409083453135206776717613701051\ 3817869144114700565360, -1533.5634805780693015210383149636618826688239489284172\ 6865223947349008735389511841753582041981645091557561919977619907764470351908431\ 5569839962457589014426464565004646113988436659654368377920258690431010253175261\ 4009157446766919361781408215811746283261602944043360580188479543675487026303517\ 5473343342718164987653805441670460585287132831102006698926856928507097177442789\ 1154325182272149841259785739066369522639707862787972664207217231945712456627462\ 9211141674038971000814641782458460076844094572721783938547924208, -29.509352324\ 0271663793502031610578176119048236994355299345781664392755870716897358688655153\ 3630649556589629958376754373441222130502579624717038187657256216685556096915151\ 2561971357362557008245183817102445197131453434903220358305033937295780103340970\ 1035238436367654673704050942208037582878462911056079739654218227971862736262607\ 3749783970186046048537576747685233135136218248611105871162505823808414260466344\ 1053386384770363212609520420439788127830151646441639516978337740434408822607137\ 456424275722424921167051246, -484.098890266186326871797126941725548186479622420\ 5123852617886576594575948810404623102434034023072917237895132197516866737962499\ 9301145572320508522222475612324614221350435808207575992521728566637396887383658\ 8526043078005576181821513919646327609754336330848822442696286339392213981799969\ 3057118191026301157560401089388480567018245503130295800357154446572106727357283\ 4248874251981678766346515351952123758580531240937685555614882615672740531833709\ 307614641198029308353352441128961708948570371691596225760505785066076, -94.7686\ 0230921478322429769118681346217380705423483596160643294955679088120685115747143\ 2998469639660816947668501551367600718336907673470182828967540394121791105357665\ 0829440676287515600958947952913175786998383348938437804950144198659207386159581\ 0738775346649467934931363544208158621792341141857634591605081988549234053282744\ 9184841789643409126258006695574642547260853121094954807762031437018752645631574\ 2417776504325729160769400469471697699938107357684160814582353925687383239912452\ 71088178650985201424916427629251, -5.444874456485317734099361004137650689571668\ 6944353825656479869243027910942333841639032516446817786330092905318286479814798\ 7193972027051851396084063413720676766284747980345959190567575425661554577190259\ 8386373786971891475345327313448835673169504374475375688930166144116313770481186\ 6685710291518791366233450538319581128801277703271188671882314597634041538930259\ 9830628400010434100616569277698292378482955542725964459783304964969021477502465\ 06946937549961889404081644014252980132442527664763905910233729171999003784, .48\ 9461515482517598273012904866157558063432429933901977011187777814028698063488466\ 5814248630726454148118411218685707863423722441217324558156839676184367730908957\ 6365505096208830935452285646120115173685224669965208156307861472098514271374419\ 8141115484366667510602734727743805465250999074418781281044674321156508404660066\ 4713150377806791233832263488095201774551763827124687608717006181054722103567908\ 7331782973024249894499211206271782552242277091293017924435553807522427296909953\ 061883553260127246136848348067658054, -.643768827388633270125251738338257972327\ 4555429277898056318352665550063088239066477459849776194396927146111534544466170\ 4691567866997544373464513488174185309088410828212574694317488484929308349133260\ 2798541032473101496033732689184230532698486833049569271172239749614371183125385\ 6123537944608998584296570689905734427457448326049883793010529223299546113955170\ 1638247653440632752761883161115529885871244799385520646772465409249424328032973\ 768755576759226122353157875251998046866424604850361425911910378894404597586090, 1.52322748104685710419234813116075109860227646583084949941856561137108745891866\ 7110356952843265769506217269703876253878955511762777816032307988258899433763140\ 6241847390424806314799536433297025166385872281157754999826376342696702154372045\ 8260885938618547011404634733568820749790108666385826016837717062965641220017626\ 4003623641901409472327805191382641771386590813025023838822326337930613626569180\ 6219314587303333364642973377826647628444036076692264234353429690794883617188617\ 582365296192781952528862636596413539572], [.25278537212749814846558467301519452485212709244844382568707035191315149564817\ 2355818219730906781250911164129767860022218119738336434292432720821896957660698\ 9502529645988679078206152824257814521163499326173279487073614679988268892518485\ 6033372184116413643805008570450551474744571697879063614081817059774936055847244\ 0847438417174285137230921056536718531446742857691721384716708602424496691593114\ 2790157604769895652085062464966001124550925770492884308693128151080249167448130\ 7369956786518882855252049719652779957617, .469970174545255441512462640792981708\ 7119020938751907726823305350086312433653979761735865224168604894834936352011136\ 9259316217317645627283787672291555538934941194094602027464623446335239447253944\ 8843221877580796603301783365792278774810894814109011363249589307609198516943041\ 9286344484745504116205829775729610107240767921292115913915250394313529089457229\ 3180660214334866657448717000895885936563009659724979430948039146563067187936528\ 6597336819115232110649512472360909185994538647099799298269235291470195514357794\ 73, .67524154913582672751931970688122800576201031235120722224175527051040276529\ 6311945031861753807499687993515873574081849684537386702503434972816039804700406\ 9559234362808191353569314944702265273432367784485500147364818307643008195447819\ 6603470596142886365039242227812132268982095623259268056811507575215681898967331\ 8935801224974029903133346089185990176648415578523637710929395906386351345495344\ 0332543696492032177316439967166619506538314030562519485455810799534370517947982\ 3080901568310066536054345716470711332601878, 1.98931986158870671854466194352128\ 1898847574525246241450769273946450619626153591521293349847098279079739418353814\ 2999788558147606586508809176828175332024623109044260471846552792256882881089105\ 1508634209422971348475604116478869588230651244907602095153083919678164311822695\ 2570936802764786678541812244783707641753958920435186343719264411403770336907907\ 7352273482065989565754333560741021554884303465438575192852786163633588404814937\ 8886431665762380869618160707812044704314772936047494861345354230268741051668333\ 68197, .26018393932599964050121186706143718391169446081506686613069896129151020\ 8792667036791207376993604908059735705908724470657296619672430705582209458326680\ 6372211430947684709470894251782111169208948208965475932426913052533656269427709\ 9859613632069996696309998227120001288248670261382055585691419893835660235730664\ 7300986885396531599768932722262762034934333904064909741229704825003528767911966\ 6730415769640261554012485756211170748053778283060255473173334698986985512032779\ 4882628452829196290302345814480528198950152478, .373768843233509144266618925508\ 2521937628631979173238241336425470185660806623409084756256500628897171706608314\ 9607631588787572070396865696599670087566198559979047071823523689414798247689978\ 7292655026899999869174417529258882447420139534967856565562607175309496071494185\ 0787411126530564485209536986845420112340749489424722900659281721933457418880312\ 6687101712916206275086684098728289044475603344843390246035817217238718923672873\ 9448955728462786123059992391334751977015811686884582232677312909490988708734388\ 42217769, .90567665167584671243032752214170436142537972433394112521328048306662\ 7539118651797841620691137590351545736788950698433954286571289573647619576038502\ 7504616989159864359826287469131619666535881079650377498834155703142366165467626\ 5085604470810383584147491486851792742484363521469776816534442892074800863658709\ 0659057102115457415322117624682241725176673059284736493443112246744792900649184\ 3540966351291721018238525340429679468620446063766792752584678178964162793870989\ 7152461993422074166716089283866540439663188414384, 1.82292395841939066608091365\ 8291830939119033041654345974816992689124712777722775938622219558629711404421711\ 8291427393448157825627569553137802497354769057465387762382529884638339167571881\ 6671600756526919833693714671985030444948829700170751938466479247121731504896674\ 5402475274458665442339635723542607662568374537702631926493115145532238078538281\ 7919466935453169097174192970644514448964812318200392661716678119926298723536291\ 4086311591432696603375877313317829849738204441125974812377317511869581414881386\ 42645396159, .26526278068281265264715084978237650732353770575697541050089553625\ 1284468620458736999109073921283187352637686526062384370144930909681996505743017\ 6873760827279425192662758317852935723505146728388359753279745911093428885954727\ 1942644946903294277815217352442599897607978858864302189090434515635944898598657\ 9716925741413353297424376289993336547363837219496673958013127127558727020185605\ 7852559800951322117960094232416354573243439460122919333345327766688938634062169\ 8136679155604169271120623546222063417023044615486255, .323396929216120319670646\ 2308332799203187276814535416302081586490582926168155625486465888397535656836435\ 0746178812479969730277158490692159890852246657533822926559750852441931259049521\ 6021614972231118253409931316803414068760720665204454568122953421001873792045435\ 6241026960851850131518117335407124536322388234279556877840975794244156974647300\ 0700002594776952045241762104105184822724770341691055454588154371390836110721433\ 1627687306587130623099966429703047179663474477026201688841780117884556261997137\ 11843140245289, .49758159238935045628833073686155015255181014985888370751805654\ 9749249701953859429941526933211230856383037168546733590083012819491894525012530\ 0717707204882624673270644936111569497530209608625762721221369929864089817585389\ 0261414779906971570923311937322295587744827835934497926013634926426451236763224\ 8063206194545817471874697795773976290537552118490299205698965651125228746957660\ 0288656143345706710735689136813038035274727395575959720380929370137051748201751\ 4134437200787032249609346381428589946752537520900944528, .633274353906767235682\ 9520573437125921037052568325083059880367346608883738107427357346718089776699776\ 0216533124633181900805156713667363306873238945163269204128047468995340256566221\ 9461871978306217177409181453041565733834310177239590525072658512767981883818664\ 7285625137181402132570210121162773193629413260728679228288012382543389700042087\ 6534139243017717974244750004191153865677623103861116461195267509345734575977876\ 8536286706856181602688022288569996645938584012548440780809555407753195393685538\ 20480856883252618, 1.1373234116825130356327072331780388615342715920529087554849\ 1723605099780646271419579238970653263439802941775960709688818770410559636624695\ 3203987379630507141439948304532545326246315784640055857066854627531313420821236\ 3228916801763805621021236476296197832078114083010726797675024608433607114500928\ 1314407258032794806546991265191595397847158459262450220967158991132797858996075\ 2962825445025343242072066735582261923321377707338629439207777200355347237518660\ 3071927871791057380353189858283660111334947097899062672650, 1.72810825181879514\ 0507528598234855180777844306903331469916711952563138740696852459314093383992122\ 1654696635257523452228912157700201597179474808722152727789631235186019745904175\ 9699431110288666553228534311286442728947025479297819995056972999268681256196794\ 8018042599727547162205021902450982178758384149561762766534501370719863437268257\ 2223107861049145933040095823286714613683712631582802602125447954364467025934698\ 1118570146202660515338987053906852368505308443942457857997807185504369937381981\ 07473731933103678759, .27178241221281762878855016988222629714004163273734712794\ 8780385139082158990813465501897834361097666194767974806143354743824278397020969\ 3685935468106974274738376390230879162487503056782345004304567580887969069781492\ 7860404201033776062751673449622349910380622316035138160270046983637862654406221\ 2869771601653868933822399471117758360447130910919987992716812697849853929624010\ 6197470126540948755467255010012717045601692017447137626883820016093358636392405\ 2844074596539619970838689822218893445978352738098464850934999, .432251761510248\ 4689858801368817857443194345826223485332503312330344814172431299795968517122321\ 4578568596441573620642914026925357676213410794670085734081492135416680704220978\ 9853891502267307519471456732254989045610096572990756499043204731493758452735495\ 4161572836809156921946139908639250875838945499499467922869748063687647464631586\ 5089721827524922775438590664145346827083679532415585047856301241654067880584800\ 6357187362625890041037520005078415805216410256296361246961336868389404575937542\ 29715439428948787292720, .74619277623691560881783501578382084753381104861737101\ 8440326581805677597040228806044288364788999949564871617650108545943649490054284\ 1193084191179095511683754563228153550777991445837041547956490515624761485536681\ 1368518633224562727063936702178457832571312087273644109226762132947488947959417\ 1097735418503500000084202051616412232473713206255726202095817528475949506359909\ 0818493371919184045571904903181294817651781362422552326743058378803749725722179\ 2491426426596986655188077948133962239723551004413398617175208394, 1.62342564058\ 4168791456306924624408873633106057372095365792672572299569509119683505100420565\ 1397757502442861275918962564156181943368574048141197575798859173302021018652780\ 5764265835907307750073452393703161139578411191321390879019973312824766187595725\ 3166151288103594786241083038978581242156870300777253331642408430906293553005313\ 7935627768000491576408886034174613307305289136722428382190470225792600202354232\ 3926086799624392379757639308074048147857134548528795204670713272806616949318454\ 44407357057517193608622582, .29255436814937707953323976111845125818513296885534\ 3256248182546918775559980515565750240776766594649522011959970818475999689856620\ 2525378088456565802315672943136761410467471762377765488491963835734863120572582\ 4301340409830173909793336044380706595129170023616303678518378080795361302564372\ 8737544857992552111262320305502969712067916722762721233532020868227130558752801\ 2735433116941816752299651715320486300852343275549926762242771232477379754367873\ 8905767889566911497273004572216835372140652961836304571388859988748, 1.37451540\ 0116086405173403990428475502466211893652895417185260218923365618514032810575548\ 0556479022658831163348688913438551104236110669979521793031250286650598290446789\ 1449935928849527775700533446490300478233678066500390414366265805268954974995770\ 1396895238225704337027481718404604497911822999953398579899951093676473566582246\ 5004157643695403925489288300294234528021918723291333324952760872157951896360770\ 6212326278585431901780283703622398725606673972076435629214546246877858465237548\ 45975468884419395977554012823, .31059657854554303465482455507561890538469896077\ 2355685891571022803341590246821178747805818585206031543358363775907843081860888\ 2971692148718124879194155301581037057926502631660826755410845623935880987129225\ 2901433265436783935030694897553868102079419446527187209508381244386587052407382\ 2045958661493940945703415267970399058654659378660143793517444410598964235323100\ 8480110929941392778471973282067469787715645707606226639714640741963557488503714\ 3686362669101652805987454491464057544144786722849961452312862413196736, .454379\ 5031894021081559882389372316785929806124825842499805612887927490279013543235885\ 9932037457716935799773326338828024910225768930873856215253160333149997101082515\ 8745324485114375084810909362736932788465622520886091961853510927502498274350503\ 0998959499820987942108213815359617034209423132871628090590618524108036917894472\ 0190235004925764637776426246868560265345244117933125556316644249967803322221154\ 3051813327473619449040644732232495274670020388576933709395165750845650711710344\ 93870852003746530249944254149044, .70238011886566247858302899401164479849121323\ 0520967952714941328878528340189198415726501308050084817024416768191735620125611\ 2098982064738000252292767183225928024307281692042854859692687036878457442586119\ 4899691984091435577216578145935757210604896379332533347855491872109645320458629\ 0506660432941717755117584632079969164228088703736044386921534812792711722668652\ 4116673441582876246867794745859187755946599945455404616210712005410296447952435\ 7967830462596365456181975555255786852103908555419816371648555617544738001, 1.22\ 2650544183893088334772577574422774059585999309928859561380908302429227919949588\ 6673617606870335964238194761535070599947164014518478806255475170845092633732585\ 4493746231677522915951921207030382396963421445362243704448361847994285653168095\ 6969196602121115507625553915185124193213119188422297617822937130831420205559641\ 3394047199659068081557996984050022408314131004772588078527270196044294382186409\ 9903785082612640231073992516721381929186058867872076439185091338007071905158822\ 56138847254697697601260556279590379, .34034081291123000780653576867964462518980\ 9861478659994504500664004351738891464039277157869131399545483998951385185825219\ 4788357663727259791761364264569333503547446590088804818763217351717642295319564\ 5655407368870621732761040784194889857343678539504588870243735442390028042141808\ 2125871557769420176039390386436543695742346554514191711914107708347319819243543\ 0697904430752171998620996458023355773783781418292920576345670977857920930701556\ 0483393317132887415369336442842934995417341840002912314837378961621462723722, 1\ .044282634443738194536438161232282251891528374744802718635140467927968348132202\ 9983871540364964923112739773030251744321997321852437573654486580141139381605072\ 2714398459978979693934626624359545169364632512885830777789721286955937042617745\ 7325745515357631620835005945177639966828430521939590830349489589153563148696517\ 7727986799297599115614048988252694769380133231953311052701815154730252065974530\ 2731548332860330736799759777574289164344712457978163356049555279677105498047487\ 37110145980139440556062793342996764333, .39840899307027998378655386833811590404\ 4638139925583526286327651128243212349810718207716519223623458003335381103475246\ 5111375115767012808370339607772890089888272300258833484015525624009315229473689\ 8693770619272744990756408903046236316111361694855736594052767645856724478767316\ 0019037808936339457104075010105362439357946014415855782542016498182733570007790\ 6908813610862850302048396844661734336343836298855033243641537967914657460026839\ 6983154048123935104731376644799485926574011107463836823124646377723075876533492 , .8288877453485866361202069811634756826450010649093967332272735913382854921305\ 2724447613155981810194781432177261325782245068934744833969580546167208376806926\ 9303961567484605040950478713134901369462707379735799529682369936270848953187555\ 7653584724977233299855160833231421432976656533035856326987380500979020446151513\ 2032258950582522496302936218131696744165278518296619415404549899204834110494583\ 2783790467636216241901018276580989602678303229626868593154997884482387219781856\ 30488344527138487221930033759550751589055, .55977359477616081174679593931508523\ 5226846890316353515248293219107339898830274268860341752473325112542620188328906\ 8437238487601346021296999725391652475103685019930474667935744817018116153756882\ 1306182970708389501532135176515290599736254294622830734835365472404892176834537\ 9946589889487210935692563262793624937400870306355915770114681872709130108694035\ 9922230903285229902708198001395708320961028864293099851874474945758805089363616\ 7170379827027689605626093502416760781106408375835205101483443479282268364456578\ 488, .2193839343955202736771637754601216490310472934069082075779786130735686985\ 5914154472221025103513724995475823463087410959017637852053709600995670448787677\ 7412931347260795733865892805139788129537181134360059345012824765585462368324969\ 4880733436798274707076344553397863039626575221177538270324118669480062728109571\ 2845024572919174625385617362196726560657063046829328069937122340954651227026336\ 7329270918349606521230601354953630732944630160523419147140820806964350465950916\ 31502455365499592452030811106396901230975383, .48900510708061119567239835228049\ 5223144921849630231163273228737116929287141521912792689610074516417673397334404\ 9633912609347491138706890457348013242806065652608782763148032712314753886175928\ 2879952714983307051533981198388123437833380486172472255184308678553673131693180\ 5965726663065575761284228007221705355270072872225923748248011956671578243256608\ 1789379548495458317097844464122848867589185631234444366055957997749105982076252\ 8350590942771579239801873244655184847907786511707242707152220686199365267953155\ 003968e-1, .1000195824066326519019093399116669782617300061403505850505670603647\ 1991642417343874219829355608567259931250152958222549716044111961561307504675200\ 6407191783980450511964681273528159113941521106473548865994598584718253693023917\ 3914125570853704967870711504169855921021138376392177323105654686766638538747549\ 8404627755171613731308090083596256514251468679222890548179416073782142582528903\ 7104351807563818557870019248602628660756454000092829652419912383565205211896037\ 02603247662043384868285423767924862159971662100277, .24914917870269735495628012\ 2746096359458483847114273770119345444965661225197854846914616004294616902603831\ 6192901274473327878868541912829845271524880142174947511822460470512365753372191\ 5160185514698722144115680885296647199866526052647587549934928371512820663267455\ 2361072334959282480888849217368979032417906024765868123786770879585816035716318\ 7289416534519688158244433054549793667049902913972899745428047702511893791613654\ 8613353623499593572095498960286986785271765017988960576311776891867483689256424\ 584001613559e-1], [.16812972989464071869334458602327643442390030807630857168287042013475304360612\ 4738175483454980710360319705279128782617704302416790228535189579923130058391731\ 3573458565885453066059713324723060080065029769657749172179388558615469873374482\ 9280670050878999046914474495528881328617849845243246455708944105552237050377516\ 0752517765646618380906928947025991772744307003305275947819406008412473607859681\ 4849817881581744560101155544371390088245964001544607874711186057219756752898427\ 1635699474070221052992314528780938256333, .283885877285314730451234278535748683\ 9211097227924917194334180639911402793551948127219648618208527222231614900130791\ 9367497848166382482039595876367074453486607050625032307604735616915076135283665\ 4674730488550565620793521986337048529531032925646639738645452410808450103178077\ 3123083748267627702272202147334641350374539661683659281131211799259959521477311\ 3025753968606728624213382599118294421376867976076046129567547531832949374423451\ 9819356993910320335035600318634554837169106148742247343376392472628890995052112\ 65, .37788998472718260978837719981290321329827420125350821590724627268334714404\ 3433273915818365250889503946204559832320093559177314999029985768438657499125718\ 1444370329580696031419796012911641516790164757207124199904392309543155471240048\ 2677467645615016954872929743121117826544578282514934202935832999822551140460912\ 3333082715130799839792988526384187046655257945640017695709693851676907815875875\ 8461847973314543971515915512115626138971031806833048140152969013104936739157656\ 6512459465041998458117979718366705651479564, .754267759496931021347766828760277\ 0734358896578561207474706428947942231543344561335847266338947393586343077111488\ 0617858485089554092972190127687829239587561831652985718147928779605277894633162\ 6931627141854005648051808435280067723120046736375421716494552721943825327817416\ 6580023324985344877611535278875549977303511420923938466435773331830645071419928\ 8367741306920972949934075046737960842881585649215860748317276296970346401166583\ 2560187833725854605446040561215491275468316139428441727579845705954550941640804\ 53706, .17240411434719943543236355929033252231317836143681798822865958324707352\ 9856962416246635599022312848109656936138615880099051381272942955497857439299859\ 7787281412608668057212209791059064013501079480292681575543883446466151820523564\ 5352169647127558670456337729755187968197878395561985283103989930268757348464208\ 8628331990254074063577987000312519247531317059393395048523219275463015205740869\ 3573703966623080491643737694112637988145040975921893852377863214091548845473160\ 8603876400829082466551121897068828293072902648, .234947113527953113718166845541\ 7524260736629271696895851611617141042473136092646972421035480178853293110993386\ 3685921080326522642346237298375722351558129605223989207513214236437827478507327\ 5744254212469028898665822867763091221240899732230626150643208546805791121902988\ 2571958921241284372113527922106460427832742012784522679570728959437110983570802\ 7678829058106179813153598403813740182333104292757728257733359831940907562847372\ 2288474894011491575991214350935407294987234616026376077304751085625467637915696\ 54013995, .46911522517896385233777552267530556375463731469882401073132592188810\ 9985141759231661887743668386865492739481415001737962806493785764443778826061759\ 8836600403570097844255126133598966228701310212322053407412651450332086730191063\ 5815995345507165883664124283657501853652291408050074129899453253287932237395091\ 5437650364080899513725238706342661552838482946645774878861666179071878445095869\ 3548393793027423454519809452148516036796451725300413300005959683409172040369924\ 7646008244619676664280487128468314675452647865672, .722545022194020506556157693\ 6172535272828020568149663545745580481433086875719707671502814901731193167963075\ 6240037438401617065188554325871716430588356515018605422848868716518710956824779\ 3832344150100460920100003074173216558372061335897999232992388731755742537084656\ 5364298513711213003816910052736018820707491993918470158969412403424100181491677\ 0568065860045491161534768897813705542639444794875302528819023573292938506739415\ 8502676340285243997117898342173021456843377141459839706916200098649567912707044\ 62263676765, .17532315212246507801709803845777244639675561840989400994644137247\ 0611314535634530838954830848681535605187984659525665980628125815099874198118473\ 6655745943255195531588791472881263873637563346503142161830341044488781551020090\ 4633971470785750753995717025853917665549150208873895531656489688981299437840199\ 0828083158439729855282712109349880185571981816640825074193822042241156948681911\ 0687011628089319537085733828963675026588580909007998348008398227734039048313643\ 3581931521207950693777339095397654428057548011698939, .207894879090055254782170\ 0785570945594425306819371435998423692865597550734880710712839610129880768193108\ 2583005861420206214833453951970256371017749024453137383803565751438473610101900\ 5096886799105394632699930333194778653455979537490018420304689718178893370845975\ 4198003206857547041174361959561982227694907665863952862496534178988593368026442\ 6984990250469155779274660320293194784032384984218419945244905633245679765158717\ 4262936396811209403647711207572116985051805335472392718755296169530896503425623\ 93621183763030, .29731920274334921385790787631932264198715973710201909681879537\ 0344724974962301881836753864895847706692793224346550574107830864803409475615315\ 9833724314835901134359565883927690099733020814483333519553006818821254853716976\ 2853437030317580356007047453633980038642856624682466095544827227234791983254304\ 7385089191523297647769778894596540492503605935995531886540030356081491906723519\ 7287569613138348876101276128644230236960927256058634229938446511957411788911097\ 4488074724547280249088998705900555061954989351682456411, .359725120026946921947\ 9862314228877750025007202369571565641453655054390066477530062763678252774199185\ 2176195576324755923283225250753257085104005081878407819220617057781731290010563\ 2392750672136448771956010784310183613048651589585346282019461985175185066065425\ 1163685727141330719875044216234473189684323491643410791475960081962210623385342\ 9098993851503843431205237929607593108669364303561463941036065676625077238950353\ 3580358515010039603828564075898865708071307648116387438245878618012159944633185\ 60753765099086571, .54799886698736069952654450565870595746666215726669363007959\ 5898850475180473853432714942211387132663264408912568257037140434178400074682577\ 4000664806926558276046283015956713003832423205353962864224751491978985750419563\ 2550064217415327819535822217534169536327934858882459079304875424658199555364114\ 4009756837144360287978138584954798435822841937280940709433147999363616876129354\ 1912716785370247075496171577790530099327343800642901411600088097045958459457404\ 9254276511121280356431088563036089048287792912874358032790, .702827288834503647\ 8583808101332026189972972952786017085704437013392814270833924863477672873529112\ 3743775621722451537625442463733375146251390373286408865035094312458679407431943\ 6338129722627268764447700135659453970039870314886852211163423095795562402238726\ 3057542966782132947967902349054426948229441313907570742597931703228572308562822\ 8409669845741052843215150461539440138512542370615625194499987028773188214229582\ 5699779047658511986351250554072714511009195672223964176500138531658329283152048\ 06003003746081227056, .17905240899229297739531578368944433462118940123717258208\ 9068241007727982836237809936266659673871690849408583282746129625358864282656523\ 1705365285273648081793050183530440124508041983772410759597479643993901675050354\ 1601826952270404654948467558665860485585481254525486108693720553524132971216809\ 4610067012575294832500117064064565271661670265878870153784485593500932318585246\ 1639714945487952790757850930075546828887607968713980009482334373753832725782941\ 9508955622098817876422218278449314621883172926008763113977711, .265104077575084\ 9488404474224709303152338975108970540579674433958591416290090674869921726864551\ 7785144294843737094650828330733859644767694935927495254329305923870415053174364\ 1012733895953429838207931258067833977194083141856291440197207753365239999779249\ 9979505962462259939681646185657356601396888218037663025523112694497659828318701\ 1087750868248868780114502785167900512953909780006482044213725625821759017902747\ 9187657870514160553810164785872714020611191227146173410274942954962122270989191\ 49267531551282233538445, .40746698770212884523851420822758077260947288054100693\ 7267534421568495188167825235042302002142991561951183560182548217529696127205281\ 6470362889698364575365592416274796103059119514252499222964451524359326490302742\ 6948800884665666708017025848778880523931898643348371397239309021917174359031822\ 3518361828937367009770225619625944715568374042999118174244300798593473341922787\ 4646980776116186924399261084972621816028911875785909347023548651189419060018489\ 4593510178286556720875019184697020624882096007490374585249227211, .679568697511\ 5743039328537776509996270178665678191388210462252476706631065713482919618025766\ 8747146986478774906669474499370635067328759807142680283066112020922364626437140\ 6074249757161849827810361258903505696129557135210785496204011100446374856160777\ 9492022344121804934120511262483740959146826274433168171518372256146420282907575\ 2850474390343180240323320088716142914438770522895680294051755909002277753785286\ 0161786061258314477932072622348255512195641246793666490507466682962714670163613\ 86172789921376129172666743, .19080290171593065688357468219168519414706587853233\ 7955373225208660217741917497031438095115772312685925951695860593484820227051317\ 6882245750028418339752556201892898751141969056813005306973816369635242234514964\ 8803779829419574213891134859874080640760628807396783396346859858550715364065759\ 9893259244941970868712160693414429085721978852965225030503837794370693320812887\ 4787983261872446402186939981504877692555877389689242742567853097217216961890185\ 0807233600068845844947022925873940219596103483815809198418467938570, .617395824\ 8712663398493500680606753264772563088182359364584408784929138756197893396522917\ 9440069453161867921829615866870852538879741136539669960492313895774199347919713\ 9639132709757644106258939236286396359135002930677717944851493792154593333201888\ 0286698312007568469138128158177618666645477890281855872278284283411199104125042\ 3103310483879422991001044941171605108296390817503308875905371260382281359771002\ 0443752388296046223733951119622620856578654481259930099416988510911493327582862\ 31325459883726693506670858948, .20085170128078716370624274095506767162645577265\ 4299942184732516191117482889611740884141548295574839328703946425451006459907107\ 8543744546617929013766694151783765987261389836530130788687146240902490368692288\ 0402426772734392197711360241626584911255105810919398629071784779326562285198364\ 8684873708994180570169745852249648367882360462965465047733944698006823279960400\ 4249073789317333405100597643635143206941207576637290379252549811575208865272104\ 8812810080340839795108363592668910023107557337493577773037086072423245, .276183\ 9341803851677348659738702288681765235892010775169923753440327944405266124874490\ 0711987495461097056593250912764239294718292668692451930348978935612066637989102\ 3331852508265621323398977884677367281294366212933317344814555577220019288436671\ 7937672027981983025134066214085852661784756622109715975334395423719284767511507\ 0816405099617438227606416504617376651382141705074115126442513220728072245529910\ 7429177687251868578221847795959185630430842086582746295496913807294999440299816\ 23709350778712644196249977734030, .38936799848937430931122132754316815254049563\ 3002425018802933800074482839044674377535737020776424008074796387938324956279778\ 1717639318567823540987515354152513183775012690549689499647215798135454965704699\ 6951403292086095390650171526531959428995422027911382009473066716434578090376729\ 1347613912445285666305862125700353283320181938516344519055213465481984725214063\ 4334696050455536915165443965294032691376449503794768879177202174078920211136930\ 5636924658754548591934785094598671158523076072611123755958996158593524728, .574\ 2006442412032410029809931041548695466740564070299005657525799560229318185011808\ 8998485194691470250595180345755080965241277942478302084090664612426826690182786\ 6879312449047393328571916175983532266865176833107298784425943973331328198221270\ 1489460153336085440888342121016766066455549609245724440681384064367861269719390\ 3179822368013106687343645495714285385839429249958687136883593741477136593386693\ 4826057815217121651443996483099093938551558764723907477763361613174611103046573\ 51617403063465059015676951550085119, .21711094305759220128314472443353444407784\ 6183027481686517282446137937141464482920225719142410784804837143083207482046024\ 5847583726819863804164881560443326864398696250936281851594185623161564437686062\ 9558034033984340508192572128754651808626517256904464810140913545838809135089385\ 5799724196284106627720877822236828476529381885819795095996962929897006302819341\ 7963626879727818804137075237153612510908812753912891567637361031886402684396025\ 0829764494060594329113131569498373721842755451065296819764843182835169512646, .\ 5177301244604703196110607266702500843238901967399407945825322492862535250204684\ 9503521050612319074278563001126676821446250859803012281409135014984096187430241\ 6307683557400936174060037225170761258618356231057485232046329487895543916479035\ 6159681128329311705382635582017199370839171854488174900039739542043672156795715\ 5725106479546001678491555806881011493128666372846302645131857694410392484337306\ 3164646646073146755572360911222459000806883707973505476669176678996904214800150\ 63210573018043552713503961255969867508, .24781112365240537101428384723451787269\ 6614060343652430794631009769621746599008816211259842412699880169245003714979161\ 5460884148850220416879253345694483562759616611761729347007142597081550727035030\ 7968850589253372603955699919240197127607326053627714556899312512445151156005188\ 1013411569309710299816707695269005593664082304467560215492906793634652363299317\ 8453690682241806969730338231496279289633686091203147124932633105097468068055711\ 7788268323193846501185483443881208159223371862339912507795493632678157428401630 , .4402353954575937050522017698708877732381117048516802460651123433478755798580\ 5996428341390230914096355430417541576855572962651150515978849170521636127996483\ 3634006057286011545148914119815539518658774763039752081873835109077084397171973\ 5721161170061983333720815503777536071726270060701758443054572507981489980180056\ 1817072738925122986308369746504397100721171170228525785089598563309621665879172\ 6206868182229885033178041664219526338380540383008633824401862796180453808991892\ 27497755738401495343978239624451951534870, .32664386232455301773040156533363783\ 5828494690329010198058745549181386569998611289568476735271326899755113695629586\ 1033146134280182618816833549102403239222404565847227834511540316649930402127111\ 3785765699721119097918352343613923153289404941699344397851228980071002976838716\ 8001110269766217031669103700316460373837696035800443371184057826585033712715910\ 1687507474432893507171382493882990454397412889210500636924942544020417308892513\ 4332221806616307650405538273196045486977217414781891495767518477472485835785520\ 542, .1484955067759220479183599947013392184147638376248596269298581886238927971\ 8575825863493702331078239379186909064596988561807059727225303299866994910161732\ 1370160847106581604249155833851337016079163853359919339463133174161840181567525\ 9651660225281373398070130652725079191265074044488465380421654167575265809274309\ 7835454188276508363959832372877205299264598696471028923783698369273100575132162\ 6904510772366061150531735253276745389970993596686050859899688926461327110301611\ 71535233251016116913349143167666805947809071, .37534261820490452759519824516385\ 3587786471759835296488135131252306875166731833073785602004757537652203978203086\ 4087396026239704911871522901193487014058469253907457229572192805854334285232681\ 8920130564116831921744908956973909767867234963740069390126676859951229756099350\ 0308256272957207986488720438381717227413656479292191010330889216202780102167220\ 3027472272254198589722151879934689786688184997642865019947910243203477358285984\ 7900705080364735213252542727745535829878178028941543675756638566396975378130698\ 481434e-1, .7310078653848085108041646089651205394957662015055345116798472821324\ 5291995054283064266289998449081876630844502534179996571276840207253966577679925\ 4618256557538228810917676043825484834357685843207808486562583604593296518990157\ 7431203408717337810183361029720322236925909923662433333086092830880376371073608\ 3814625098648058982576255489403585152643120157997878103148012898685895676935706\ 0845247277520471100224878329667711271051289278716522002865841251015700271995898\ 08158758074685991627503247171103255255294334052659e-1, .19797703948224456430458\ 6437806357179731831592368682063159220492738094505809472595810975704475822402577\ 5981000130073396001144036907920333103170368802207469002994317963760792801493799\ 6637347177258907502562648025880358106252250581439922920428432433628996119024372\ 1737466037114924826896561741521833451039179432955260308601597088285681847925472\ 2883751334740983746632753330196832337853831875643261325936016226691811736113042\ 2179768822006646268966850565872271211219524311383334928841489034447880105626297\ 332701579021135e-1], [.12286536763738001465894899954960067532488743020871627726002684546580914565566\ 7527173995853956471005014271279440635119254317480770458572997896206833191360809\ 1587553527990038455263641432981625825535980098231825980416214584936934487128242\ 6901990169839981213698732032103539481283672438413039425442038823461522236029050\ 0419764181440156453768627523705412317444103268246425465820966693128414050640997\ 4397564647252108197209868444124891769096089478206930636263983154962604066451161\ 0529384338574080519198535893540063241255, .196217525343473405951808744926233974\ 1912026362953664169143085027090050041805733290343720819175952932291776206863829\ 9235529281752309658382687211994844209999067650491140655428168425371752366966497\ 5636508566075766846961670562176299752972142846958178259832266133637776672270486\ 6692492922273194471866742465282519895939919739894296158460950489853937551399465\ 0724724639307404571800330500077611402617725312435628611019750486879425716153040\ 0219922612639926102071857870820797436991970886392076325198608725143159315656880\ 26, .25089323494872549608813495554568593841241545710544140093997917755564349311\ 6066360107084888574738540316292136945693745972372005771071961468464616729890919\ 2412781838379409541157714450578867374362208009286557089006451571042380386496643\ 1739984437500814604554446639204520255446771920579203321025348703118177811585960\ 2417107713782739516425735422109135842076203479670763017692284853902921309941993\ 7953985595652582028633067017526770021062033033360163933681243212058600406826812\ 8374655170701846745295732775455020675973597, .428594384002289498057087377495180\ 4044434316984026487363727644078827947634930253746135559508308505010298667990187\ 9866430371560881703657590965535328123154558801609393650753864354092786902160660\ 0472260027275990650555247248036226701526126106216902493040454964090155071842438\ 9920401025103610851631042104811171923661592284771466106999422948507283298112428\ 9398662049866274921117423380063657700855853199823342506667412537625403935874241\ 4459432617858675389837002218812118794720800287257825317367993544507811286447174\ 44697, .12570297841405980999716351814216335887592142543862098917024751174353327\ 0449548287368375099598237851032363914465856805800736047916240965286887128211999\ 2756859214556891522122512902854903226819080668049098248369305045963452912268647\ 7204434616787876446862316088691759978121795537400024277716338448739484973502009\ 5716860697941142923074919075033868878097016109798879135979528135024738705847428\ 4707372294669271723887805475000658736031452276173209655546893775248720922688408\ 8127376623814592453963611711369679104181213748, .166061162160921167551041650759\ 1511317280515583465167762209491485721352252732090225527845097246942004063961918\ 1915559218124628620990838588566242883381888936776264856265215426760853508467591\ 6914067391285354289010919565405072539783183797073343720543393793379192293308413\ 0161387732471890225640367133711866103494173623216331417166357946592276744143729\ 8492309958236599168253379195126962192916426814608845824772540000824687757712611\ 7150405739063698879469679489607474286203619282813560193032772181165666193744390\ 42878318, .30004182656401435518277056125761260152793001879467957253795614512083\ 2625667413500757903813954573955654319336837855373380125258518453602465525527391\ 3718502689623513899463237267129381130025840736260275317419551363087585280387016\ 2298439041549065596904567222307894560150956521037992467944975072461996412637088\ 4002036192745633442102151190922267802269969990218731681618049999686876390880931\ 9273082780253356361817712109316432533171825013420163567889787616037834633210122\ 1248972184630197957505583887543891202357905015143, .416291457908278761254316645\ 0423556342332125776494521582994007561207245482935256421487376485093892627794239\ 9453730544004806592148634223211173642442144960491066321473255864752589514357091\ 5560355245808667330891858719370462673741842451239475624079814552850949894136432\ 7115171968399378572887427385502512300602558666114627534782793154306964120940395\ 5715363104747055571277742489338424718670156316794082468826899667944971689800882\ 8369360148844708100390992910636774580448621934219915274300948800327096268158863\ 29341352624, .12763474431027590551079471315093247249916984802587207188631142569\ 3382614638850245935101523456608168579238304270445818941210420727364213680225700\ 8424768475638366504049492111983597203426596509645001121559350462957567368814328\ 2231951724778450276473191991410817602578498948877128502465553656337158812590525\ 7142416060541475346370984579405365142471259976256345374349935503483942950564819\ 8528193890872216471153693760460806200696449810555075167487278908958086006711722\ 3259742487002294714596795970287453431346772496421610, .148864903482941819292159\ 0984970638089508975074471710339523249509181976924825044435052246613472840791181\ 2243847967233344474533723185488090665444512480646835291862521526109470335197247\ 3463615466879367613292743326889636432679833540633956600970558521298383515889444\ 4560177507759891389054196959276324233869251831760266881659994384315904753254665\ 8826111036909831993068980853851260184841009020015234892922605103679289572520414\ 8328871329985129620499732634614753568208218445007122069966836286902982602268400\ 42785797180171, .20428804294000828538184917719916896281709387209458305138141467\ 9451397133867694704280813895868863617149242152228881680380354864259617251529106\ 3495746293542040439099527123126033771476840627836785982462159829144748250155269\ 4595601223378065515480263861174855449627531426577908556235971307837301339824074\ 6103132652156793219469589142069780190150121352024090198591941648886228408982354\ 3921864398293440503226863899924561729123185889006351973425468494361939216480730\ 3812471383451349013577929262819176110087924722846363793, .240651278653433530692\ 8744103605160690792958126952677225984929870094860293600964430178070201276544168\ 3430395021119805956646486283801985480722943399446950884034181953605000970906539\ 1100624515217061809412043318539843388921138814271394083910441332052658492533432\ 4720051621357347896092003420323525484607737250062876159473991663332478439838614\ 7312862568310560502944732759155698944780961885180654752775633245583795805481293\ 0113718855693051357216383862987461951339493016154205573025978595615198960994893\ 38094014057135740, .33947993845980838710840144477594552362973212694292627341816\ 6986891962326457911245588298605154177635494983217066221835353247081110736403997\ 1226911180060891708951274844574883197319626562793269843939464055248842703853426\ 0690488086510189286509749169370174633103212537355097194924145563404418843198186\ 8575357945592578785932599744361972055983503485900866076965289767677848628490388\ 0702529244338810798328585319787719397873275597292938814742008927023814109254168\ 9234360722981672783448967617051434753595194019338986649029, .408373697916379129\ 0763652821833597851531234816184525076933478646265216754091106861164573157119673\ 3694287295908602601294036738159389841211437281861822122120948158418312928805406\ 0427741604661378647103719122118892169432734295115167646659839708836183987770986\ 5813376096196251955877413212052513187412187333715455200340470407390400713399175\ 2750468743134437893117897884732370402496525848930723754291909765212787554065757\ 8710218546849705613566659720647235542951480545400905110665510006017240757724233\ 06820074961093700224, .13009558090512602368219793580406427591259255189991265485\ 8158183561331443485745754278096968762597209638299025432859350802008050816362706\ 7969182097626404250310105307196662141370035211328051611858090794388105322720050\ 2289041022469177318388136356626394366140614841673215826911503089936823222003772\ 4043654264009523585578557085118054612174474165144924131425135904903119364122082\ 5313875364454662129939289750010285384256215755677746462354317155400458948783111\ 1838592362367259854518315439623848046483227630793626066907669, .184785690017281\ 0744656714344888574792061790903626815525096241470468644983276782724350485387828\ 9140517241671192461697940945426772957210633673820807152087211153043415542539249\ 2019228699949801694498817339717402947477045768157666050987977932347782016438451\ 6921648879464535276798477381260520261461587009475645543182379900120701050507127\ 2419491358898201263596028854764402229642507937631085710745167692858476028539515\ 4334306901541995741663630898938138817994726560182520404101969575427086855790955\ 37273736987411914817434, .26724457920133694079037975553058540035304984678482173\ 3853665740828719295747488287084023444067622353653158290866441670342464319136828\ 7870691688876819338242451610691152572976848244298351297418233073041932306757734\ 8053097520187626357579808709401861007335839342410174332117301969276771164939835\ 1930313462512333440568983390811185017203938114610173092344309786149700951793354\ 0355648999771155422419501258400437095818743966637325232209182399522396529828686\ 5652614385701483973121208110492936865223820815668254298610735077, .398775407697\ 8243074366427105113378914223857520066291945697655816246382034449450968020649126\ 2200475245611252319117246696072266556561691195713171108715710992467297660724236\ 8760150416200376643462940796834759454293188241230587953976738176960767866817668\ 6756604330618036400078400576698249945974780433050294407315793131380492344400385\ 3081849900775448590397006310172445842132767814218377867516687101308871643752457\ 8774585651565757821443806339823641878996302138302726092516212469300323261520615\ 09205193751550302518430814, .13779789520523467121248112398199512375606089356742\ 1186384511495271174628485006238349108249967107161128000957976223822068223027868\ 2459094682692603945944243409798058816956610655725152729119469629025796486448156\ 4192540156547536980238151256814801134700539910456525149078229188543960156407302\ 0298415294575394285418646851744106470505130205564902599846995177958862176214741\ 1538762403881794180307099879842275766401466147286573046148475771633676311144129\ 5444672753991950277609337148913176423358280691083111004613563990192, .371791210\ 3727015087016795275609876779043744531453395916231220509489945830510816257364172\ 5230428124366470936886247372394981144729984365207797311064506028781414970338871\ 7724585236440291524025002553861248881500982943199374488993343917788543034663928\ 4616870328524573809663788164577844859362134954245272096699244362818394265537306\ 3796510738029262850824842309066697568475095110035823135754538751957577146871893\ 0361835393944545844706049386194757628246667677255333899102533751944670940857483\ 01365165688568952275741201914, .14432380154629593023255409612575432931652516157\ 4372268575101660740448384387689645587536482263639896550213740152908237878735066\ 1043051314149042853054331535810791421896740036317343781033052873664601431720918\ 9200815983448152793783413983184205731957278359702814746710530975687291049482789\ 3686870835496994435298340692413124460250099797760604022180372234040268022125280\ 3816951750908290451898849077190502235780379040706219693811111277942943881928696\ 2355826075674745101905818155852514019968670422889342358228853572521019, .191550\ 6377928976659937696664552152772131989015849907783926434554443835964757287945663\ 8122008736407300151250648084201255332011389213000647250645743887067412457922575\ 2289967847187436790123068385756553292798559998852491057518964393694753339992485\ 2887222255542692987659277387425055642619778264283431622244064641976268028870643\ 0220351521401217036854211174984043409880001576394760692183495919135955445772328\ 4401379535692459550356562978861585708487174533889629371917932486712695101573066\ 72903125756866487914233271791519, .25728642331994478850997219706527940546039133\ 6004921096183868405798050519751241996406021367842944165827322270019844610909055\ 6935088208517947112754808042890939559993960145573477821832702146816327978228633\ 8065359384444115732638367087146739270819605884239921272413018389352302491204744\ 5505616260321929250915275564126099817841672322302112233100871002203137762097949\ 5123743503453236323923192138760047358602254840229511586995303053305735352931566\ 3284643490145637668816830639430758717977704532867300401117409971087005019, .351\ 9453121148706052346696549991042252246282224938048461824391228126520955193954312\ 2273011684746924064476266899837102986043675191509799639891741015815823309805700\ 1245471211296480247380687677423795303709492178605163218218739437326816932456603\ 7564980663455549683980890763591830619795339032120587394095490756578564713447397\ 4665976146864310756495455182335736562649902704756062933280707692635149019541087\ 3834208208699488891651591109961019504606682373761639430290435983276916346377451\ 96785808480083721207531336899624426, .15476667272391027808784400380905853995590\ 9470932932708753848054768874044767359379757149093725622930161142492170379940210\ 3776582089750205397431121794268915921880129502650337038485479709789311415455594\ 5815532017574525713309461810167415172582194109427278927609014984126111657689351\ 2772167358699045894479881122693307445469552693670296278967410756867370720068746\ 3757167521498041850000008076402959979032519626098956662084296745682520684562586\ 6534993055682407071902642612253397338511847621384254220534622508462444710476, .\ 3246841259781436441712025426553790631078998706205781377978421519733411153992010\ 6043659819435825806745385841710318488444840724741676572596533855795460297292680\ 9508379408999075682690797239888466933687674227753845434254525166655750271951820\ 5217062317320531415562245774728499722600227597857554125451764314708330994669040\ 5556898428951749523951894662896247771648416429759002307801715578816712264094652\ 7101177908352843454339335063676283580733471962962768748812885354220220953109415\ 70091647356940632962642477149734655732, .17410485163216088976456526398512494679\ 7648390032469913894547718671018028549771708771115480143324466029319294320321609\ 0947272396730707672269988760206710623756026868713232719173032307516696864330401\ 7559398637966477097578086287555444959971674907223197957500807967359766685589970\ 0175247864530398202337476285913288412063329055549878630096156631666686583885816\ 5378552983994584595637855320136624660386893114818868935369284840154463831351565\ 1959096069906952785108039455580030002061899012877931025674131064687384863578102 , .2848930893772956743707684201508752048535374124354595375595830463390061086411\ 0786217382656073939731248715502057413248898499039507644321213147868413438799982\ 2761995613676104688541384492127663401130042817635883948905006692404169624588583\ 8182651177516866661216131973464415596071532775739895535516087586157000067751937\ 5944400738072128078153279285190081824267936809792278497597291170970679573708821\ 4199587805349331051376183600836673713239897332607356040326453912807215806294273\ 47580642667323579651647752168075775776466, .22160436427517845736929937616218076\ 7763835395161340928326759692072181617207221389607204621936163003074433470989623\ 2367596155470382160028458318623513928581522396444425625611821283417011638970998\ 3772987167607377149862621880032303438256414809080543783171648613118973788418313\ 6986925039813356991840416740777521327809641585539089785324684924823540955352486\ 5402434594429530852469895123819674693839610438375900122199854372444805599564032\ 5375650408410999314007907943903201567020906447654274149312740489188688550060524\ 758, .1096919671977601368385818877300608245155236467034541037889893065367843492\ 7957077236110512551756862497737911731543705479508818926026854800497835224393838\ 8706465673630397866932946402569894064768590567180029672506412382792731184162484\ 7440366718399137353538172276698931519813287610588769135162059334740031364054785\ 6422512286459587312692808681098363280328531523414664034968561170477325613513168\ 3664635459174803260615300677476815366472315080261709573570410403482175232975458\ 15751227682749796226015405553198450615487692, .30133379797815893187479922969856\ 8429251685969712582919205663110963491703775605375899888607695747591571408232861\ 7590214596227638682771129006751269735776831025655054148361936309387586743559587\ 3419887432924891090661526719901168553899763004302437560120970248578058253643505\ 5811598526586971768039867788030846741563244632579828243082567348570188192172998\ 0275643412368359022236768524155503974245093132413011856082002876147367302933260\ 4400238402589211633175601880782416932968697497236470869273901403000877578887805\ 763251e-1, .5673949017035427615632788970962222020890334956762457599592911322022\ 8614319366508290582147667451983980326665021553124123727511629659896314640644023\ 4399374240468821637005690540504822145971986837749664373318843484238578567931840\ 9998140929223452806484496023843838848427060342025721590020886943029694947838221\ 7081051889125088239166611754621027568725235054672209585558617328694595449732851\ 3071326737348521408968924782102787137910582681017091892432882563985114021221303\ 17484667946653888605264866466660652385963882238912e-1, .16295369376668827046691\ 0325077852564524231114616330665279766436653505652140214111785038227011404326321\ 5909491029038044658990557996450787479211629498522116932144039602767545856071365\ 4915939848949192775758158581696352229310645221485867294116094335242643936560805\ 1887351812582505482928689755380336135511137807814512103703535647385220884100541\ 1821298269612411800223240543670562988693438471910020130229772889609281065154735\ 4050940075524389790239981449296155325066946472734985004089272945278924275391847\ 531203817751098e-1], [3.1415926535897932384626433832795028841971693993751058209749445923078164062862\ 0899862803482534211706798214808651328230664709384460955058223172535940812848111\ 7450284102701938521105559644622948954930381964428810975665933446128475648233786\ 7831652712019091456485669234603486104543266482133936072602491412737245870066063\ 1558817488152092096282925409171536436789259036001133053054882046652138414695194\ 1511609433057270365759591953092186117381932611793105118548074462379962749567351\ 8857527248912279381830119491298336733624, 2.71828182845904523536028747135266249\ 7757247093699959574966967627724076630353547594571382178525166427427466391932003\ 0599218174135966290435729003342952605956307381323286279434907632338298807531952\ 5101901157383418793070215408914993488416750924476146066808226480016847741185374\ 2345442437107539077744992069551702761838606261331384583000752044933826560297606\ 7371132007093287091274437470472306969772093101416928368190255151086574637721112\ 5238978442505695369677078544996996794686445490598793163688923009879312773617821\ 54, 22.459157718361045473427152204543735027589315133996692249203002554066926040\ 3991179123185197527271430315314500731488963727166541627272000368412458784838257\ 8019739992751627091118523867135294083489216233769249673053675166259960166872554\ 7775888060873742920118171661161372246197209044896331314599273279140914840576764\ 8897537848853441020064925934903575947634691652862940078473954077552980198290261\ 3122402951137999068865244293114633593928571607332954149153253013772276755518306\ 8793043622842319088286797578297967264718163, 15.1542622414792641897604302726299\ 1190552854853685613976914074640591483097373093443260845696835787346051158726885\ 2852295841083492664266576491187794797041548104617616229388368454821943265188236\ 9806758113123229903546133383351859659542165250720487113169484124883702829810163\ 0940495747791991372453217285387321910680977914733658187699967694174778649038163\ 3905056120497761253480544666296079402019529877275185530879677728180527535931123\ 9759060051888088041517641542632276539693694192816814180488110501622857131251257\ 36860, 1.4446678610097661336583391085964302230585954532422531658205226643038549\ 3771861450557358292304709885114295231844855754198032270506445074319038245154340\ 4532334829958935460056505845015522921685535611576388897919126952707106869045544\ 1925402327632452829115155531294480526395191779440816753200019244730489909867275\ 4051095163346543218600319567029829094301588012673380331752282079128374511027048\ 7326081497898898319046335114385440544726281627479974946048127035669790836670743\ 6286857745469285242239557660491219676478966504, .567143290409783872999968662210\ 3555497538157871865125081351310792230457930866845666932194469617522945576380249\ 7286678978545235846594007299560851643928999461431157149295980359437669847463560\ 6134226846135698957045397762485570786587733706356633301238430455635429786085090\ 1542908192085605575237481965846595080727308905015733618315960706671080392839183\ 6014949964634934844831746591593363689336809714908569837175100935467921667475528\ 8973147558892503057282246048651248541096883184487704334677270165744647652006270\ 13360495, 1.7632228343518967102252017769517070804360179866674736345704569055472\ 7584718699573678908389105068110556193300202740546804673764002401379520573801043\ 3926733023070364975296754471642743743039017416565384005522095243453556698266942\ 6395583020535488541459135082083104393643656736618587043331573171809287097789810\ 9541683637512115774719105876483128311371433944522684813012018209804037944042568\ 7558913817470781415827410676176997180106117658115344871122490403839481948511751\ 1829843123792540192533487442618499553352029977897, 1.78107241799019798523650410\ 3107179549169645214303430205357665876512841076813588293707574216488418280334822\ 2452251457420010557945742481965008815685751264500115845957267403582819679429095\ 0691578445244410495062474946467395442249392061297366718992961181781716528644204\ 9196388148412216859792110793346424919624735588226979190967029150154335486086933\ 6933705469455901623274352953259837257660570361859915224391778002468660663586117\ 2879278371923113677573939410409975164020364734843523863820212265066424769625002\ 14726344491, 23.140692632779269005729086367948547380266106242600211993445046409\ 5243423506904527835169719970675492196759527048010877731444280444146938358447174\ 4587960984936532796586366924223026899101374176468440141039518386847724306805958\ 8162449844491430966778413671631963414784038216511287637731470347353833162821294\ 0478919362248202210060320654433627365572718237449896188580595916848726454790133\ 9783402659510149964379242296816079956538142353620695760077059046089988300225430\ 4871211791300849327379580729427301931042601691939325, .561459483566885169824143\ 2147908807867657103869251531681541590760450879670742856371328711589342143587673\ 1913100954504183815294964765104385205667809151313057747958292870260031414870646\ 5448985364053284772115805431595834463767883748010326263482569988500405651783603\ 3972623747694855363718859732843714846892702096671234024073571785274263269621879\ 8915114734105359643954396180929458839301817871074725053658507888643323283317624\ 7785614262626659106953467796942446381097302551114618603314388777267701666394183\ 89043301532829, 1.8951178163559367554665209343316342690170605817327075916462284\ 3188251383453380415354890071012613895697181109531794465374258814916416306468808\ 8186682538828669632338545095227555258481392212166459936359948543306285455761625\ 2281668681188028566378466656868886464242970190907904728903090993380190917469997\ 9183024948075858520888678370504137378784074164602583876283621622731597515061051\ 9254747276807032519631326806756707408147228242242696866841643207958746726712267\ 7092755988754777656819174952725603954608115985285493707, .177918683289764751066\ 3236781472602552859151097250789109239210875183551611425804198635410033205622932\ 5574971177070690562477431346208261279005912609402011785841345260709212892797201\ 7260774334284546192972056293807281172722264868766406168949805191753491452040620\ 2667780559199948997045603365256012388901952308243543047424422278719201945101320\ 2715236664225358879293973495078402185870094803936836385166663389526715815118876\ 2898560288925203999977651294334211828404303210717089784791601890008338556988657\ 84677203337511246, 1.9362556334196744600139346389463299602911620143065657963336\ 2668251667205119937671085522748672499388563582914302401140709508801263870589665\ 7249968755387727298292981913809027326151595191212814178105528068713019587938420\ 1381041718471263351548800929754057251001164254777141437141280548110639223470269\ 3662230770352524745379222914909563294162861173811325696215608645639659722000155\ 3661456787557312674493710618110552505414579868474252026392789126867520469051657\ 6429991249989417398556928114647153249026292395955327174804, 1., .84147098480789\ 6506652502321630298999622563060798371065672751709991910404391239668948639743543\ 0526958543490379079206742932591189209918988811934103277292124094807919558267666\ 0699990776401197840878273256634748480287029865615701796245539489357292467012708\ 6486281053382030561377218203868449667761674266239013382753397956764255565477963\ 9897648243286902756964291206300583036515230312782552898532648513981934521359709\ 5596206217211481444178105760107567413664805500891672660580414007806239307037187\ 795626128880463608173452, .5403023058681397174009366074429766037323104206179222\ 2767009725538110039477447176451795185608718308934357173116003008909786063376002\ 1663456406512265417318584717971164474479494233117924551393254335943517756702892\ 5963757361543275496417544917751151312227301006313570782322367714015174689959366\ 7873067422762024507763744067587498161784272021645585111563296889057108124272933\ 1698685247145689490434237543309442302409359623958318245472817366407807124343362\ 17481003220271297578822917644683598726994264913443918265694535158, 1.5574077246\ 5490223050697480745836017308725077238152003838394660569886139715172728955509996\ 5202242983804633821411748166613323554618124558937606071684548904439293586043167\ 1479080368246132747069555973416406107755352473025067968505070413523851449176214\ 8162757002788602245077201401618577213067394166432236901667567179509626108823302\ 2485213114835059162969258761611173265010045945634821564335385053259780863154982\ 4289061892210758848878924221385209053656104434472362861925446578778273514850773\ 908880700372159070308791433], [-1.460354508809586812889499152515298012467229331012581490542886087825530529474\ 5006252764193754633568195144963746798695295838923437103588942618192328397537629\ 2518263335864916412789122939415410119791731044810824194092788169842885717682395\ 5799184517883614655486659379916891523163521604242753749407965713530422610065124\ 1185416451615087965846401753400298616650461259524903719089178407149404715659175\ 7466027248353206169304543049286266025990818804725313060674003053239266045128130\ 65106539466001040665180454916850633276862, -.9733602483507827154688868624478965\ 7077282963174305333994535814462108518281339528943993539295000233544055071828903\ 3740442229784743606487961950406424386885732425769613509170035505615070899164016\ 6197634593791739428838889997580330957393027144715434014720592268717109431878672\ 8088594734926982636792281342627829397055454341840769563162887388673487567647493\ 2453775536948960091626729266655111476794718427657391667746334524639747915502426\ 2665612135483358526308756012875161436995137019297388641643461142269198252598398\ 7495, -2.4475807362336582310909957042230052130154522357579949254785890161890958\ 9620975350550598738568683264067293134941957831410921982727889847551974066603762\ 9022684614086364435089764003472695279797702619418631964875314826507849468041732\ 9834014315058549946744619236697439680292091616118804685700356660688555821106725\ 3261223915489698131701264098648780060612811420089662057715738747967960504192909\ 4592624800778511897252214434595133469738371165817710318411302124775570852130107\ 0134255065964026453144027389406671785924581552, 2.61237534868548834334856756792\ 4071630570800652400063407573328248814927767688272860996243868126311952382976358\ 7721497556981576329684344591344383205618083360083393339628054805416629485268482\ 9798168645847550187899242552790919645625985746620957819178983247798052614814070\ 4722608465240695868564231420707710153312322143268683618844233939997513090419161\ 2079413384431569019310574744874190574366578625641693507219228436507039926800438\ 6610502743934589344355929991102671394556417362175924037920146361607084357475605\ 13047815, -.2078862249773545660173067253970493022262685312876725376101135571061\ 4729193229234048754326694073321564310997561412868956566132691469445831196570562\ 3294109531061640017807007041375078320755666248787786920661504691428291233832569\ 3716136777293836109459387888090998009499795715903243876671640429050998872118365\ 5813089048719385704668491640160936712402099062103912123825579202261525206448516\ 7341884834150419634138626730400728166711415041908766616310917387223269529241216\ 71959579937350278699050123262711840452150228961352, -.9189385332046727417803297\ 3640561763986139747363778341281715154048276569592726039769474329863595419762200\ 5646624634337446366862881840793572155875915222681393603560742547358669046395905\ 9913808056301632348730946273746255182516949544774100958593513919816115981305740\ 0534769538606495899223121395569277434997110028351959831949253139427064629568647\ 4411562476213048736815284499379344382330398512947654657281931737987853085689423\ 1362821539730836026475292654914900393555999996037063471852572023576215350343623\ 7960271584875, 3.14159265358979323846264338327950288419716939937510582097494459\ 2307816406286208998628034825342117067982148086513282306647093844609550582231725\ 3594081284811174502841027019385211055596446229489549303819644288109756659334461\ 2847564823378678316527120190914564856692346034861045432664821339360726024914127\ 3724587006606315588174881520920962829254091715364367892590360011330530548820466\ 5213841469519415116094330572703657595919530921861173819326117931051185480744623\ 799627495673518857527248912279381830119491298336733624, 1.644934066848226436472\ 4151666460251892189499012067984377355582293700074704032008738336289006197587053\ 0400431896233719067962872468700500778793510294633086627683173330936776260509525\ 1006872140054796811558794890360823277761919840756455876963235636709710096948902\ 0859320080516364788783388460444451840598251452506833876314227658793929588063204\ 4721979084773409105902083782895492782638903797635833439420451591208180995934544\ 4877458796500880889408701111634710693161461842887981548624483590918344875738742\ 8394082760287563, -.93754825431584375370257409456786497789786028861482992588543\ 3480360443811312707522793689415141151517493113821162416385350594041715961733247\ 1971851749124026882144437001639310150451071603735748731352956057133552593318050\ 5148725347999847173975703175503026190734610082347006414139802299842431153485610\ 5707655972552086501051643857775101140689339073599225729133474589331900207182738\ 3741376323909165410542489843332702081919047620598836761971823788304419379828750\ 5944646328657273813102296765716966326217669306641696237735, -143.92638398148899\ 5449479060313431185107278467127557843614170927695021378899254915239303806653341\ 1644292061841549338967915540793116600337663173796177955472477320988905864499931\ 6933672361048311205711395949179568615930871057132647672750951828952549907720842\ 1130783553090777381082964293822480611544748429955003072131997670829312815086575\ 1634555375646547740975495351568258029709120169567640637707007525993296551874536\ 1541218811756237523169360153760733929045944141655356760214366337379251378706219\ 958628226339106624255, -5.68335379018200005247919034843641923522754118882661541\ 1139603319431995771601592237260211111140611877824334648156895268934396269585860\ 3960356427623293596469365919847104250401922470159740815890341182475185618864430\ 4915680793815921960805176137503296191947074695996370730641973455144143065511478\ 9464753460896925854745079057913735294187234832889306706834196954326128420966811\ 6624891384652491517751224168516499320950941542412855782612970525002018092434111\ 660661188438057863988261953049208286659817762619387083909930137, -2.86073698172\ 3928862961125792787606036725176447491109769547485903863487925522139340477482238\ 9139468537655296898285224923924749605178451481943879448091799477113284696284512\ 4892046536638852219819073771302672501832768177935153615409644278254940572809283\ 0588261752664934939174889906821900318203659107861229535307329329703373588094847\ 3785457422699231712716708737822969269630238181935876792200845121378386548482247\ 8467404916291701698187624570784229291334857394639145288173470692511021275886667\ 34010794174398428736504025, -1.109566961809769863027713809129653959941337574459\ 6121369015201293273904156119251712627276735337344222376548584194621491759560905\ 4542199442867324738822116813805636798169439501409001671064990428498899870071342\ 5008043700586153810622756593735307691496503198348256585525905315454830466398928\ 1144544391303161283154841939885836271036885898652410739648169831026222592543859\ 7083141469025448198945945843203751958961716348893049717622509046147289457957241\ 97684407597376760569332221099594188207971135141471475909823841904811, -99.92622\ 5778215694256719698083229373299697213461227938367939797266687136762307817636291\ 6754180810241067828958019212183517072099999268427955331486234833687928003731051\ 8096671836028740699456157899447267676633298841807044344996202238629948456740002\ 1945854907085777686174188664475726985660552945810105254156008765545308145936382\ 2040561615144361314702452302953183208777254467827943713256500261441504205352137\ 1956426522332565533646103729653397522413585041299971341931561046293614743672975\ 6164756500317319438924713431110, -11.035491305746285329461944143928245498595151\ 0884788123960123520039312272134910941944591906158591694900616476777301662776880\ 5881043579518916927211419849902187435946260389238529175685452640224259093290957\ 5291775306804288725653989007319758059476879662828095345115773373941605806220707\ 4448421466674821878333835899100022604229554553735931279936043930273101302950166\ 1794572373730025139858348339846739772286327812932136720445350743218014648330762\ 2989334520832571241701099534213880243816300238268303822422889344803438032, -1.9\ 6186086008988184701055363931579203237982864445645129200134683437617755727463084\ 1570942920989759163944626103452491525551329231050409055034084914784314441998700\ 8182094884950237889149169110814145354945321880261079159129542193182180147750761\ 2420552177139632012884783853258857257145130364324341710382410070435246204061968\ 6184377442617020556927201842571972646967106532345895533538695271212464981651224\ 7357383672419531270262883474726098323772021444549267795176847724131853254154630\ 780130461710811938456111034598683141, -1.15416515410975398756102801719042377432\ 5874279160864733333830523929602428450422017260152936718937278143238734172386478\ 3512136108307758993241186914964579011166664041460910767041579875715966635068833\ 1204661584969484567397255116490991911558288102296848096847772270754694432681772\ 0982164642764976984259657714939631243311513281688113359456839601006541506487638\ 0348534009606653595360340644569229641660322649598280755531240770472138148454925\ 937496401174198369440706044752931251768338255826063012867096637403553657709424, -80.926120662122855148155310551961657442246938436202935957149285401406998152531\ 9610486001710006630882435985748714043999313640628684692220682334167871031264020\ 8663656457377993183779599458179504885582540677652017481314495121800899653134649\ 9859732114587576307474327380299768146890885160423470304785883486469359059994703\ 3622315038459950928817485497998467408252470340856695253751472607226078058461508\ 5341128098085127875913809524488911630356262488952357345731662648779377186115144\ 9116482166353119831633667557278443234689, -20.175085784953546989758479782311994\ 3885432540052354234297746287265837488090998362286559149918639227268139519955661\ 0042656068089437093292372417636401181029659344831924047795388581542360824700719\ 7832367442154554892659856619746228628486871141450025096776138593471411330896272\ 0103053695359432593009125052252670669076608756914719420393106945251690893558970\ 6941239986143034817575338997209096759493781139273098682652725167136085690348520\ 2451430155055387742006383196010925257969417320313795846175587790720384552436290\ 378, -4.98561544826467486932705207278907789468629588937836263724304394700447984\ 3269269243591734425665925602966570699171406577907185827426799873278575812057510\ 0085042810002994539209037495559685929682363980133120002631897512824520184853826\ 8183511805950160347245976716727083362106415043224803906745291070442856875502470\ 8364076926244595220033499361595920930040476502182435363838433087804444487622138\ 2013226415513662043743424180943230299975662245451564492494844090059655113562873\ 729236417538284676167952375793064124985110975, -3.16218704435051670378257878042\ 6873918522306540615617582079743381525473580317082827025272358190760498301245876\ 3601224207421044005159147930637104896240329882730307767704592366406954641999187\ 7489597412842245529153857602795022988332591741494776283769660210321931202730967\ 1518833094834547289703571628906141110123402717983690339267377320449325049189456\ 6662177196850571402443053324204020940150547795793259524975676253757468604516790\ 0645563865102725553432479913985590067957394009619460079359333453582549923423921\ 68499910, -1.573523358076707195295693313324689955658461907641248034881183650874\ 7815810629419423861165582173934786644717960351385282239351651248224257670194931\ 4766098948310886113785743005684851777601293313007300185718897443531733127828196\ 3053429793134691193104963694293445030462133228744907079495486370892795667005602\ 9390702468745501245342210021281025993539792987520149734991739523019703805024630\ 5598369629487768025824600020522460560385150479164347534135850338415374785628688\ 37730850424028320687457913726741981318227830856593, -1.185298226689614861805964\ 7477697152163004185157241796669345799703569405200873671672404109710168751301825\ 1491411004262650999810109291873678471580469046959969300380154946708830599957974\ 2966207520442684636178879239359753578913654816436728180090819891130609002061064\ 0489193109155561347617271958565631703267084925603176526870595481109868282790978\ 4486478449441946647507168068286494884180488714894697630058951395456021490846693\ 4909298913536846656224108058031954068906558325724368296466497726666427414353022\ 3509643820656, -63.925989669661582339087531732033619786973813414595608959839705\ 9577672375811847527796476561855695045386179145844820760352527463433418996559966\ 2309274071068052839394695889846286926170629593305625557021775286245849768701676\ 1183506063886610826561585985822953954592680277626210891194234185455618151500782\ 8801093258887843116302003214446471478113387827658150531062154767800497343160754\ 6296641256730904428971139498433086395906227797997080212897096899514233321993679\ 1184665765102066535345652325367106836918916033054043785, -7.0348268642991188508\ 1698930821105960044630367333381034870340556749285022547449402615420128959652617\ 5760011536871420729776660295735980570894525460573878193388196450999203070985553\ 1678806622883320363413634827416222087253159170012933494503940604479381595843371\ 6757978522646542247020661720691991929666163026948022665482745249460228730622029\ 1382362974644078046226753441519146864338811341070540850293711000519031459350107\ 2514085935954571688172362978890608586097599397247456014608347491297070890863876\ 998990608149177370, -2.48162824440146222862011385635738784661447756874635286997\ 7727305359443395469651584448327354585042124572343062677526570302060751755202001\ 4661182319627928074652657118879663491460145710078768129313968815319761997280453\ 4111508629547246715189084964354614165700643446610888610657642937862038135889676\ 3609040480689423338973179872493136468835513518514179154565797426351939983058834\ 4406514668324569544846150789730066052443235231414107635538612231597626692027780\ 065945561405759658403778711931159296198133882149994710184429, -1.22589140479432\ 2354316398224189717068189568447578519383025757827829420537578074658063402523121\ 0144590514390807217244456514475848295535259257418639652254402418532509821939264\ 3953259317939358867463493554985523681914588261553358172092521591722316071093740\ 5607336012161375781273993826297589960694948447664020196326140938577102348782938\ 5803613804907502691382466404017140471161631626133651169747004404628390245874673\ 4909987825719902073146505414321010104917832167694910665245735666695182856479934\ 42290680971258946242150, -35.92559943896295789861101376797407026591395033417599\ 2631419043579941489829763960872879778329725355675091251639469378007303537435232\ 9115505886389482573085848853985175986031063394121345483259439243702617654408656\ 6489936862025099893405191237224672706405807949142463121737497395194204089692333\ 3034451096144171815913703216693072981563816547788759692752584337158957976415105\ 6526999450241516778543195658139952725455510565121557416308252472911632385543658\ 87907673340376288054768381597763774790228466887939625140318633642, -1.360061148\ 6682911554816853658673874618381825839954901056313111006570959476573800693479238\ 9042907032909021432183650091760017037564849841022638928989790671669983577898855\ 9752346563204290104532712399155350606705901654716589905661542496379679606233900\ 3309226295989832328786668434022153852790367530416079469936190584284887813936412\ 5446421355390831644605287374250086265872978674156876359244506340664881856759220\ 6300116311264983494010891644977050878856523902417411798579419460095908191410246\ 7933300586915411904270399841, -24.925290311263345382037433541409533080353431011\ 2846663599387525807747656668956591657683872012359023893105426974722177575529499\ 1423982666010613333102509464050819931936107545253808750436483735410910874829394\ 5518222119850715603069316466849759127413178814096591022884191978787857521442834\ 8132359668251745890773818931838824125283552104243482173334964983872832067299028\ 9933169742293864520879927014404372147973013068924933209541016779012464580053033\ 8346431442086759954977289284633135249266548709900073078627863108016879, -6.1734\ 9794266268871119250500574088213050797593426613125510425140938444278716116476855\ 1903495541610911910751680908171837137822483925895557987557176677247943699675791\ 8879348392718136797864662775466171868327297237981117135716701454492181501013717\ 1515804860108746117571187989905349276663575695616648548853737282423207114161129\ 2720496003571478071280257813056352817156301379835156386276995599764396925504082\ 1519246475336953915427845800836896730642713071871411524008404820669840986322592\ 830619320672258806385036734781350, -2.69960521099014875642276373029114211557389\ 5091456237789389610352250001075524973965150144350130264388157502086271470175614\ 5111449010043839168370428757259789471855558526542450497896843074861344968655045\ 0652580551365824363756131397188264208963581167080912384030430592983118969506486\ 8574970764760819410403486249284176887776896192575247052809567820634335656176949\ 4402685465594562300024169269833960999604159341239349565421748783375123729009737\ 410233932204565809449433736571626867608804436401638245216272546435671148562, -1\ .482800203258094635259578704041206177621620678829024604923291026570114066640734\ 6521376622506800997549215242977933840086071704838734548013800355967243628126425\ 6137176360964119668396170515426088101139144271699869933864636209447575230314776\ 6569575057407239234958708685081693080071957980281829591462232520433944944528705\ 9333197411183300358498615002485687448458344398437003805313524019390801584437878\ 1302818562906780037928737485921436977014083786195510540058302251017370914567785\ 43097504527358162085514413813591749988, -15.92483192869048636323051393774518207\ 7029640748971470627616712743951580658530087256670974056142649077112324700605704\ 4561825430532735413722714813946351674503556426986018618324510800797927616629233\ 8395074208643294160049910545953560300763908098293414578812647003484324400967800\ 7420933223737690707103174431034781011723673106920927944877118729407670115849397\ 9666801996338897506095249653755393316613870929043581762239050693760910675299231\ 5860119395862958764190119039409451852455148055048558468885170498976411213961944\ 4, -1.6984451503896340338263593130943414858134708581749178767031593187526374345\ 2910063756404419222874806914001986180181487490838907652077226421871894331236746\ 6268748974598454497228703431098464167281822455638297891459979326795840540423055\ 8259114593234894714332724624193166352664798082956373332783382550256817726217391\ 9891403194800984423926711999047348456432147448820464805801900503529525788838708\ 8161256400960917367711337706573387346536978042939284475663731173627589188181833\ 6379883320851820607893187293753373426480383, -8.9240828883639757789680389737641\ 2002925712418240433640117392289948596043046810870315442902376794797675817192863\ 5453240803041754090829551343184927707263985108124992655025982829515534751748389\ 1340346823678173356355249682176832309372868564771784548907400434307152553608878\ 4724492696429443361011619396650103332280275908592783716401658870222166722934540\ 8788006162881049498984050994328432452150186781728421105247498143551207633378166\ 5721384094480621518691674887543938995919793397033026992816638368622772029809278\ 007073, -2.17130135211640157070111399599789933728068300940415527033382127604957\ 6450894291928578042030054829273756324960750967675958595573588016674760620869633\ 5939755234224940778184336431425482037456665934881646200616194094519352460151522\ 8044154527322727118718240079936519549720813964093597805229084610997941651130946\ 5917299197377053698381966967674996251880826082062688497474036001911139858340164\ 4480566087243029115675627332999282161150406986508941088341912895104318060331067\ 357189347599069579118208644888558181296719658667, -3.92264613920915172747153144\ 6714599513730323971506505209568298485254720803150338284880650523104145691403803\ 4379886764996843321856018737079664886632553187700300292770828479267926293437974\ 0474743456067834925870917674462530668454218604654409210714939701402090843398945\ 0500088588245707153350168181144786709270627261501964867332979918360739427828566\ 3548612243250098819953932356936138658793540565344943372390789582976646836925641\ 8262941473950898634898522648287694285364743896633531280676386274592421775441538\ 66838300667], [.98897108783654218240171722988574248283552872852393719067411835831373892602250\ 6523267904787378523182246795386660359512800283420255628096152355087762099315365\ 8829962657779217470215518862959283053261569451537811633729655235307934573940668\ 4706339548714777636444919272121849688679618202156744731824780190740086593511097\ 8576944270043329887847716015583421360342826148852292885776359581565162939374285\ 7222003427694178398772960047897470963894776541563161246986562924796236533767588\ 8679489329061734891246940920679997173582, .998190888327359186628127332865790436\ 7356190697938614635262020176526025471745144707819393367602970454284704569010427\ 1902005285481458443682548140564404377833200328013268993491176261171480271689632\ 0441718486734711494046810605778166380612051028277174725578057354492855395205918\ 2385424194396883467800226001523081565350363378419226128963454303171984226045307\ 4348683917329170154751681239129908483694088020477516827632185624808116365988636\ 8889160231696065959033823470644421095078204947826874505971754071274873385751848\ 57, .99952905588122936865637264342055235827769798350686461398201942824958608901\ 8505938807672878960373070674524475948974758947087069785481538875183938202176700\ 8318371123119097413622744624866621485538483357679914511908012967414723302524156\ 5808540334100602817707767521177588926255445383200000854111279311326094159387011\ 1195906540378983102130633087243262015422222796927242437836106637722543223937509\ 9730641781796212211875595210918861605429404125666717749237400354197956657170848\ 8343058065081946380048688810606004738913175, .999999246479568241165328735424137\ 0357835169765474592578307621285462246697194045525624528069294696664347048189714\ 9631739613318949657610760914537663707603963874122590757585304752859799014046195\ 1520088084103290787180041894773175529376231927284220833319513688742228589367860\ 7084378171168353568938764957616446951334693793167481876793642598830191729139336\ 7254614245081325436427906456964453033080804414511520319770178462915820334442116\ 6158776328412289228667964219633363823684002549176936608226832236088114504774328\ 21823, .98975135665959400908914158780329791993820366830617068611033890188012142\ 4072848660311892484788788987393287452798213714830472869984170293962780824301137\ 6263667901114699541558810406366104446911376312064454531106089249266318477576956\ 5497880211563888776570079922175117012444542720922009273220996685671057603590249\ 4777660868075347051030778955022794223363424546099998406447876425244677299611214\ 8285860274543160839902692967247613355948435132117078059684755994687462093147741\ 8075011160981741563231146701333349173477485441, .996248828444070123287059291190\ 4077392317098333712472404240177578123229062807985181213919607097598946564199648\ 9679180488385817151553126495765218694240183865147875974369622453157692129907249\ 6445655539044494401116809913346433926111580464257516977615899393272647905376707\ 4486260775577223245396640057692923080548448731982470791306629599872361735034836\ 5568085351973073636521095145832895013806795424093709997402748307480984893506424\ 9248711746401049737367986489564594657460049747291820187279834023575179977881478\ 64061122, .99987343794494603878025280585145957452188457997543410981554923013986\ 0527446818875451488500197040862926337681851922092045859831018944023452529166917\ 7823682032447793260136823961345906046786078425829872157564859441107276669364700\ 1074049049655507713561124548247394050053024253538583962280154754675674045589731\ 0440458217348648291002209038615512847209812577750059245022720238143354282831649\ 8421765042827707161911824191649487834235261868308466077073200054731885096468177\ 2521898719717714247506525120209707063640580248613, .999998437500067816839806827\ 4990095843526297459492926565842632422563501927319463453152023276064774387610424\ 1464852236581858721388880743779860685896362840816173768742831002841435749365824\ 8221895454400220202704910489517945007962361393168418663267439444068830353698382\ 2970001365984911827924190021514053741375182035089103478567800968450016970494648\ 9339870523318523468647354682968520030978468767449276411399071106892679870872353\ 3336395810454852280220678748917783458446215032814102757263398654267780311224788\ 36598059333, .99024803243074280403267647062932755535001620489644003872904265292\ 7594371388817947307378172085313065072542261045050619055974339959035268974718531\ 1527731303241521365853940295780261769695407230544026329800588610110442735429360\ 8311860875666680265418493341437867391085847733514201519321430339296975529680815\ 3539283611543443763789154780153158237953896202638148282801320720042120471793671\ 8620257807834713296081012402820468594588643913716940832361588661602165835790779\ 5802759427307796742080811725342246371989835353080538, .994282934545475393641565\ 8134730085433776693781769350343916142853424676953843218505820132417801254708151\ 6036010491917627179510028040838854159495548688155167479240792315283128225905628\ 3107213884395324417296090030336928378028942771765444142119010367783079791551052\ 1131553852065733865952360651148137605306332026462460984403551787790088076432943\ 0664805294163309484413894208810247215727157685072932717008324954344208705514777\ 5475560970561239217059448545884695770046155777701752122327598759254741981558984\ 83639684380706, .99851162608768270425649377653072728519317909815037181935201511\ 0144335308260840722244769590671584208702145474583614137269066845107683124253138\ 2151387076858216433804002441810681738715151016212190718580912276300167603144749\ 1506162429002625779971303774469091119574039937576384588565338727458278253358453\ 2841564877577127370891666503755880040108196294741155633784090051610724294307182\ 6278329371961198930680862558469508413819563638102914276927218076132440979399821\ 7678196404302321331730976150267936912442191071328742303, .999390347163567700603\ 0285815097823538824631946337184936999688717218122478835845177513892386724125687\ 4139211036595871896529630720046550041499375698392522863140648166007480903542337\ 1706527281480367199429976570862642330277149061675599191674338585127364224329936\ 2362174396880510581207681108115355765053740573586825244150016197399743757260219\ 9902234407830890148151790922186275398024158029355352532141486715070268603442438\ 0859035526443001319085760056250366078776903357841459576659149699926890484870455\ 44038302354516911, .99996189609276188114535330767911860264402781449642335767681\ 5027648133939272706856891696732375100560416153049030130772915119953206524870223\ 8693143701980738050926957646510689447399063955845406955573427971514792432322291\ 2836907891040812737462614130397156542450282178898524556822504532295510285394853\ 6539536090608868490543752983787606060097298510758659829269350227274075735066196\ 0367701068429617422272777524069502791783598006600725349094299026623369998946695\ 6991135706013532167301657792088429108824212893102060978854, .999997618503434481\ 8959845401217357651029822347817021179009120644127787829559270611572246321927118\ 0563557556012120296172193573765054990335300980737716253050558870039412759770228\ 9120390739031386419590611332923472444538116696595976987184531578876890516007532\ 2341723793763731846928811669586770574007136584756660978452811381745522552016759\ 1163577962237783822160587681929484396366265560315958319381401547838816941759922\ 5409443845563846143888929720868003519475906791688818344907122177638180790794505\ 25553762815393606343, .99084324201747410094068762174746782314601505653573716291\ 8997848430841667780148933742434316141774499348712407226774528311457798112355096\ 2266690436554863258180899341799859168297977309576707919531157279461279182862503\ 5903980368586914592279864167239158641912173676436800195525571433760653068661652\ 7909422038446504833687191652479017040260371442834178987633095155395687270569546\ 9313441018945354454539953893733158325058605631637950009061872927383025179246286\ 6796637948468229956038151017752843901471476220887429060873729, .997615972105696\ 9530540956463671783339588058715865169421197312614195546254197127505619189366933\ 1992597367732686498397634487941725674998778132162870623987324399398555835957880\ 4855467415275152900361358353218331947576077255515836987700792728663438315500348\ 1084832033664614547145842405906509693299364229805912750276921797057069451520802\ 8401818577694216657026185985579362583515622753845899934535349275339919660339553\ 3517836179595582946753990144575583352889254924953946991796297776999127014713827\ 53857274620383929493341, .99969101217356728328466187975002227527929930145380615\ 7817630177110199230478760235299600092185844238625274414154436469011018414693387\ 9616378999156915220480279475789171657515493059667924059553976070896808569115099\ 8850561131537267880657910301793054512555617561822574685630094920708218344104393\ 6774079948256049039034754235143056557903744706299017353985608646677792471639324\ 0729657331856698758816692143508787556264591973532284701495590732347324517870483\ 6683518236210382371752803025817681533587189594571219636640174098, .999996185303\ 1385948606014062586834697467967876506960693005896477525133250720532499050583947\ 1947971746519867161561885060020484345431373389633155106669206956791474549395460\ 0568437160379212752080502680829877343661395683862676026401648187527362540478073\ 7896265580659464196905801324274390731211327214286513450676506668802108802329754\ 7511362698885954067604660003997009919401777061519369478618587397431199282952285\ 6558654682265653765753396613003059704418576546219036130144998325609542266049097\ 20815399424807565265698767, .99246637267482956639781011119171308119700400966857\ 6081768049533419800731166727955734300644493125274191886162893535043031003320181\ 4342618269505525978242497632342623955701530752118066923675391911128951555354407\ 7579864472852587435072722014346415414158503636440651725730800139715924891988212\ 5208800368084536165736575515341586085864866893430655099912225884838125167092018\ 6930797443274893339201186194499671633432420223231803894161625455614020591998545\ 0513964777611208867419043361702717574270488171847923583918367723357, .999987943\ 6768771455287340808040571648673336991110234377294273976145483729807689553211770\ 4922609937349100084273817337302987901350733523093693824049175376539439584615076\ 2037588218389789621761456428415390354686278601507768728500668313590807964448148\ 9000730657975814852466844954955833902853396574855432705538076823292772509296497\ 0258277868995679002448614150823990937183957114273362262310952679582859515701197\ 4686840683388192164796291000639566078380129803879091342522414788311111678539030\ 65156331603738223509869770716, .99360113774541458517830334766786802295008647647\ 7680277626647677535872555781160617885918559378439785961299662181405768441368674\ 1746856087517793059868321125236406837750089684152886207723846675385598557774403\ 7323317311189243744728695724620732782828687976191199551310678409077412993545200\ 4443804773808017393206320931124845594125598085525531912865126035653688703796679\ 4087139128990914173816606637965214140524260204315963942105442996573493253028152\ 8747626665017065387202805003263830431607833173048054682353962115173573, .997975\ 1139052248463978817988642331698594484522050463270152132806951088842542525992923\ 0041295610902075846137533437646136560573717631178221923774590211606502071094523\ 1957782673206850123412179800759688193880749364372780590522173307293614771815371\ 6911071786793450102192206145154975470854754025721314751224326822842924155839707\ 0583979893128169674603491288200776370520484313837179028880203286930628648315995\ 6008505799964585993897089793523785117240592386359327557084620439519434026191618\ 76365572740347309362552846677436, .99960000444443654321390778454006209701670722\ 9427895513247360886306296816653601985665884407984568720745103191570310349366233\ 7033238069261558625521999390310043846364402825487529304274002889037903872205966\ 8815814243428729616574387212942161423023506115313590554044228443958638994887321\ 1970551185600222715682600633194447624519720846551701062743584846293705907051705\ 4375853418366099240755361387213822100044240978759419575260027797948093319754647\ 2908966844958863222645638719698894174579188460262988129277967997965911255, .999\ 9750000173611091820988269439712738519090891893087303498320508071064937105284684\ 9915751931000922822733624913196494788343722814599578871742861878408217388135249\ 3496363905562558672385074842411153047612730440649646311071420766684183305406923\ 0323994216393203681378191932977143263703839564358676776980402252998920645638885\ 9184421322512759558765133927716611767465166917909586214294937391162493261078648\ 2120599891562110938842804236390229004370025427790769237615047388857785636001004\ 77633505153464323121699095878061140, .99505683126298900190953070652527296592763\ 6573823798089021796278637828307945383569469638473415657364577883374483994407743\ 5353436670599394592746328281671153643562988102842526848833174365495540224324581\ 7215087729692160386827053520716770341139604670985851006810833445934260572179194\ 7625942981792923580572542469862420534625149605988553615882739602927305350909459\ 4796630406746514541056646974938824593902638974706960900348095792251477938371975\ 1422292160751637345709537130179265078058617042799256589256725876188032234006, .\ 9999389649472302579975645582826994984945472220820271674278756259552476458143681\ 4336895539520287741255777146885993058459908091005556559496674977141234219101593\ 6042903581560508347981670025392843748468336007374771499839398727273073749507918\ 1832536419993379351838643969977524742394925683560526223603650061114543607324369\ 3461864055603689442479365063332077071974376258025163824728284945226050052423151\ 1108702472166001635836582114792643062108902121911541624023037761315659154401358\ 12926384821355843709583342961435273850, .99691384485403082420883567742228794767\ 5620725943526376269643540356670700796006845595430242944552352139993093941757313\ 1096109657362976627193071042648228155296647544998588488115293513376562036390775\ 8676475873219614218087793694426593342860645891902062208234588701651403951652360\ 1404702586190226510519565472950569416328621194049918724333965298708920922793472\ 8376941161365041614836921110567796743530292810624772208725711005880001651147805\ 5520459325556385581564999286332592435415178286069091441693627526586208908784148 , .9998070997990669430846249524115024671870580327229884821114229719232275876168\ 6009273669506488777672257320438460183409182158261755951101211949028653402299952\ 3192238059290842234712829454000960840794855470269998649365378339262456416660765\ 6113321309924105359054268761993187167161771118629371408424712159220128529918135\ 2592092805489898020314492325924799277764949632798436010831306384734364456552335\ 9048764898667834404286464952462666258126479126219233307119269172096844640003146\ 80628289883668082580354204459612806299972, .99902346399083825555453132527244733\ 4938794762064717483507197443608658699231144073008152908689261084894133186724367\ 1195231707848955018714541300747024542829276724204252174823672283869207656309531\ 2663747880313958102497313964536231910224932400876379380830747487611145000571838\ 9855012981042205339157152882008802798576918187783737852676486425877975959063420\ 2309977954578596152175511013978838028135004728924057534209149725361745312137456\ 1021389550826532063547134610951562475837017244949254244730269325211810474050891\ 789, .9843817812130868839655556591402742222351061257755367115043770392300994681\ 2932778618337511622465830402174071340272655168618536273849737127286572422765025\ 6814530662029968308850719710591474601225385269577764310796595515581723263425688\ 0838508498127654654173348084825989803955051152187216097037640829741097774450105\ 9977145973337017360917219332772009324683173988600286072484364162256866431135097\ 0406317743883153752027779772487516792929372066272537749514243575372435484423593\ 42796881635643835215502881100451941864019546, .75173418271380822855099890123074\ 6575959586576607292002738844684602926947077781935252674623468082151527373478079\ 8868670155741443540322245231189213495043547590401215077754458383744577626432206\ 9777631664196429240798188117078426510149853283548899895811028295043577248703322\ 0815540783154540736614930764005448532925688292365147906922630318537554496618984\ 2892719352005522268106426884553004806768387825010949578182503967760470392809463\ 7194789557337549445503542908094618195246185764493943619918613990964239907054557\ 949692, .9210721835462557641222129862800471746212186200844522967723251699783948\ 6814526526952928360907974921923524109981539280450495869354334765754535266535759\ 6609590428655392399509382980117603103608173969893150947465941583495400711505739\ 4232140895275058731128519750168227345842514996389121390629182898946381814276414\ 3839016628349248781206064736011708289414836610693118364165418703314056452018280\ 8786488100250049265552374797276373312187819260941497553512101978142289699353540\ 43617214610331049002631004185091342121632157357, .39996841712953133995721671181\ 6139521515759933315510820039635317562482608536037859210823611781341283773209103\ 2638784768634987387106953112613040835494146059425464626135857579686460219723664\ 0665782493840350975253721797146326266064980665781194342353236586786999403563177\ 7347399816113156670951032859000205682075738955363924079094792517235703892136616\ 5798413519208954045014384328902136983757363111169620428302599236162455082250711\ 1711559084956705372372412153295852042839924443102218091629684086272402803520766\ 700650313], [-.3569189111065302289581101594914387688663252439843072454091726825436600006220\ 0604283047985909698238940850730791619401801649468809573900156229196913864461094\ 3314075568518924295269015299808073078675495091989573993504773985488086258788985\ 1775910636899348972963148868237452231363363866619669580625034352439758088430462\ 7056893641378641128775360408156072001288794822396612370784059318924400543476220\ 9941583675856445012095267137274760045691332067917930003532807239984601012031598\ 39869297861227804577762338875462386196139, -.2148865624568964798603479775955395\ 6607871590987981835341169406174214585742186097382075845542507838278275554767396\ 0475461247503315204079458128315924834682887020640891281983633495899029834973772\ 4199208782772958861576613031003843380258799536764687400961200578781615616634532\ 5474984968537984388971694105458138927902872697884014607248616883166422869365433\ 7629489652924171814351906738773941899536304974240111570664394339640361218675939\ 3792305005160408122971047920914722007837832534303979895691339665344887614417893\ 9401, -.15048761995162687761854086913498400178313624343621293336116029365960848\ 6097393316292731661084348155503312695162620067891309402022332806149467587711816\ 5493729448999641633511990351916541939741051542210425526279593557910610791834096\ 1591528944429436363468270636421955187590826450097629729723956903614039128407332\ 6313300724132276259283300658789474973940898716031948133163909909652472879876669\ 8723013704643631931474939077051291538304275993812489591993367027664526938969733\ 8578990009861439565189628929469191325241059068, -.29488350480173401085130539904\ 4539726057452441050552207054639725000434814549043453454567829556570467383100074\ 5379178627007047294797879126890103750352112799258136754597891562202695431401863\ 9381626082828093613940215426158374434511580626995551079169051996108644875020238\ 1055687153762341478963889426421637189887241321046829140260111687424760979134978\ 7174507797184079551786177975507043006315774707174438355712269895037191920674519\ 4684486794433784725393306652775172951607617216626249340790657075432611054427227\ 436161862e-1, -.349310099975069393343327571256253630878227092348685937666574352\ 1490631631252792538661556308736074872309026398422757773677701666633957683061105\ 2433327975216235662905875884003413591108540641273780655162805508634432217559240\ 3866389980050573141199715685717169505026234727691862558878671347719707911216927\ 5398519537024948220256507590252859349823234507690314158855620501383270422998655\ 4463680333982479773375311504254027002688112499522803685450068896908320196663026\ 258293205840779425294201092313929110129716158571988364, -.262333346992532875778\ 9146833166549509049421440575163887245568788644783740013944676759977368255073147\ 3615154653368521806398992694789662187067399628491896092971642389259320262654953\ 4394000126817733355988333052881660497626770051846284516284277901491513006763553\ 4133563169216041091135312141801969113662672832855149367912527711719690083030694\ 4670371364811063175164634446818862061719932559223781606083881476896750837165184\ 0495952531481215851400645009010453748887404300888859450656886539785382145548017\ 04449959230054510, -.1072547768305928559623080281080627626633240850841257876155\ 1737694950276571930686916888146451478851183345933447500594743198638240683217063\ 5199424142337518514070282749644135452146244137807046130896433600195165727889002\ 4122064570274878057629110404560467676945620289105017403535173012220535401389149\ 3466502188654604254453166510614218851185161528545610065559956381909757530646085\ 3613651336725309532317897533472079290510325758503204880666046210470202564730276\ 15939628989313061753171425602476466599999683868402893220161, -.3539951481507662\ 1806952692175130030082210643279537750658512544894828305983441476184586358018007\ 7493499355529808752190118432005539221196370209425533725030811144711915700116645\ 8992861488926691189132884935902676969307275025649819140954827882049252352673595\ 9195507913249503920264801962981096418406719255445894863040098534226031090853639\ 4602684815334712445091224900869914872311589023314863534994893940076250741071291\ 6414787049779384393942661799059797689862988486185978490881362247152398833662597\ 4071207320801815881092e-1, -.34427014835790853229062246703234181605912379398640\ 6694707530942241012983213413557818255922932057535205249168059934888967514041766\ 8259946956148258841691808531388708571885973149908912443839163145496672978299876\ 8745363675922445718383114339020123912066083030886691038121687538733143751113018\ 0365306676614864278770566619781208105512003944639257198312634004260297747129730\ 8749563711928334056063967764724848495359982006371826091039409694628826243728021\ 8267425437658233556722459913907439131588452684536054133396651383207, -.29524898\ 6596433997691791832519713990235882115785220189166831102217591086978420843455233\ 9179503821586866712491442922706035022465269221392020895316491752877757147413358\ 5611478126419119891845993257772337194049977459871583135190997451016733469232477\ 3033711133673134204933337479734921855693371151012275127136980729582280932515454\ 2364073298204717169310359333224792359368393731730832758558695910293220058967548\ 4206768797117006000386668015488993857941340383301907965240974798156837968052053\ 512491306327686615562040904395, -.203898350191118985155446157123635894486366693\ 2169592600100669560813802293686754041971831810063730239989759681780262260720747\ 4661902874007353876795349754156183572780472666646186662359685912894372397486011\ 0780222005002240036468375883949367444050988731456751396517570402071377645829313\ 3863538963148097779438779350183977224638775824227298926924985554082330491123569\ 5218078286527498892780452147929311130691813066471523062097040435044126055377573\ 870441178167467880760291884313669091180929879570171938629848523042521818, -.160\ 9826486680099937933021984661383331548576058432732212607014790942418639257917156\ 4236647137212277706369491117117573572621479110200101802146685019002261596085004\ 4594734114827099285517607391879447636544779328738428561976301590403493290251127\ 1304329475405070103409748780980651784236810948748397967313358599477975436493889\ 5965640931106886586732638548741196959454472939370697968936428411059160023151500\ 6043193562798292524182717430966229957459200142089976724807711897712732118764449\ 10271337984107041451839564288853804, -.7905140527108540785473051870501929182542\ 9490143154256578231378873120237413646226794355525686118902186511625182008567563\ 7544807018284520099376276687022533138068186741004545258309479766735000258374319\ 0779507886230440022027797336827756439061792585254820764153183148203131764533484\ 1473415020590290066415737315550958161627322784700787111741333073711235922029905\ 3380769560038638893021922671704628490108819686786518467608802459966315585913106\ 34765145469736778960265179611947571595526633191908941206727881548880962262586e-\ 1, -.39344301882585184281551955927778961254759582004707065129603347614646281891\ 0598719545403757438498044773413692371751922159501915079556998455976189661248179\ 6746954894924895784215397598579575974246107018397801163169368768628521782514643\ 0819231775694275288114734348611574724474610727739451355605125749514237026653063\ 4666727145347237478840743971232458993340304917171983241015538009467051599427829\ 3302079148421898632443614131092451770009656721231845434550291109623164450403323\ 9867067218135130113028432968852358927119280e-1, -.33800645788438028918115518213\ 0357005654660391256488767655683975910366614762092783009194283890016904788913015\ 3675238086327878123554833052395846975329363189974389404471094125411302617103235\ 0228446630985302619568918690143637422463300095629193419657420244042934257723992\ 5580342580461838243930294119171557810511347786737749113634141821062436514475061\ 2282310108742996965906321742760789887514310364828773003658705487217957846970781\ 2944046530191859077975035447901971922385192547232693023545758844082249264308438\ 591789273, -.231583428338593998701063470891064109498785926280131587697002778006\ 6907185971822754430186074930517473592756609293669907235596078600270731445094790\ 5740657405051780576020318858364040122544061643018901000517799936519855381076129\ 7197450306971511150680534724013959486158271418534105261148992840869534065509559\ 5949586575472972805606274114672414234879426040898197767659418872579746844718241\ 2361145391251831524147384257388017333511659285879582445218474489877730350004466\ 851929956951594290859231243711707327338904856883505, -.134899378092646073979866\ 8629994169176388029580032841560397328991637106991785020559962682232318710513887\ 0424011433957146817665480624030225187967467117045913417263072701281395356169814\ 4423670013332841428524668997330091914518618947252065599027120540281886182685518\ 2518498121592454717055482542997304041504234826455292622563150654144025598695495\ 2202289042439789048227188139478710477622363139634046941210967904840190433136003\ 6021608251527172790055697679729216362808155112636343324605165376084666606854239\ 82546266488706, -.4428043435582218702504319358489544636644855081310493658440436\ 0186707572626175926131565998331402876022519317690122481773022967588407613485612\ 8965777705665622682625243031085258127694249485523088351589841687018081180751310\ 0458457178338049438164371211784507587604882864808089445919031812217227862736399\ 7169319543528000296117693311026911136458578438984583079773976651677387138829508\ 3770330167555347947171485091079036296291920036009498829777186048020074568212164\ 12684954343104422923863933842834605358507368498783118815e-1, -.3194525176632954\ 0304228533019833457085915121691928700611107657393572967175837851302026069795701\ 7584724702721781884870861369749449246739969400068382962726717510802006057900433\ 2534715607980295660309157337347782818711390744579253216911108885046152039657854\ 2621381582260409778780779951843681811128122095662476056443814325969544164644294\ 6487229386861691527803271858590642960342567407555933389761908336404085715856036\ 8651638554453995290727492649044792175840411106730241500307272897100694214280463\ 3230222551679190040931, -.59129930809847537355005215060805039097442463907071387\ 3641573302217371141397182361317980578565957531076632653176708792736698125317269\ 2344206849400583784509759770631388576058287702468683727495492936359492202743437\ 3874253114168940027952268058800086325365952887174801634522714827415773565772924\ 8376313167195149149534387755625146951241605474885837466988174013339581659114395\ 6505179421184308282206802804377585498956425792398741603954121839152793951341917\ 1911718303749029578669269537400379920682755179595664557257048471e-1, -.30485875\ 1086539969055755035763125706915258951532963804464678306356390646977557447647254\ 9252923686131458678432522547803868352072417326465317656906425960527012289852435\ 3601093724163744340269550788553342794609385647344660271327471098208885409980144\ 9988735310275368557577713139385065425776762504058440832768230905876324544414091\ 5473223694810035920738582937784564940633945761677616017960481873126602894814511\ 1758558722825834610114894013027217028870971785878859074629999947131961721386795\ 607538804787674200372522419667, -.221533717707468135559397634885960223315666906\ 3898504109345807721379457954924289777941089879129025464354778058678346248788269\ 1409782012597456810528848393257359724307933275626283478194114894250849887936818\ 2590355373810638237977786333171626811798940154468652434152011844467071857104967\ 4322994701063515013321529357432237055529570328582542654398969349869467615353246\ 8165294610587449427229382988529205022170727890785066454840295433328832277027763\ 638519360344120161563768610967618100769566325415265628926295421218597152, -.144\ 2308644531632712037854238379332377797967832850121758393425341575877626428194604\ 9514633506016702157067126465613662621714689738621362202816197853640747097020855\ 0084573923354041854459100704494346082091895994257821047339008707696105422447216\ 2968982097868584641556611001251524406515418702655598675490226979415488144586531\ 2829946509573348712531052646974344645827419214047148246556133657168780216601065\ 9145850549245954134838294356594597199322296670455144410553324140342763702158128\ 31097814149980054267739559406784898, -.7106364176279626659817504118356134687847\ 8810598826777444437427410082455863467620916255166538918431086189226558937549597\ 7734831701014890670208747301694089611583909352653657244982384374124996383902238\ 7736690038981452883836050759259745847063352573150774288974420912988423781020087\ 9892719500915303838312845104246893125627430520961064829708471376076966499490744\ 6817533738798588315923831991233312067844224738315544962871391302381012626172265\ 56832816568645034040332849950557564424371190901949106287575661147014424265842e-\ 1, -.28336739683369967789782116816226486394171465102048116113763531424505924167\ 0362168174147381067290751006392037237543407568604863321474451719077986449368963\ 3079377317021895894037615395997440424732697167441435845585994881666031292891454\ 4542495798967709650182207479177751948280954635833783963931746759722144086375366\ 5377974946805425838682212712315905712287381469902311943152076224818903737350330\ 3809822130125736650390716613988532872117921880349887558640162037059057722267774\ 5275762563435294271863970317973585081862346, -.89077081009123122317093012867236\ 7824552125919654965438660251397482912239330288989255125869683506685819870788425\ 8507989182205034311110346014992637142528485720681555360227232907855216407635194\ 0256234261729347316290654314446038254506098721855299589288763168703457918078069\ 8374381881459955789556094946005711906540236099874595899136801302440860114669071\ 8582895609202741713450982159390443674338542812041349726937220600622320408280010\ 3261999911184236885669791533395277505740751167216627967507560560737659024418498\ 255498e-1, -.248552105603349293139985709592172868399180551995304242284812343650\ 5917006026956978507117099597030936086845766670889249738483741742980905268151159\ 9544303872278360090913865526046847884295033126390270326771086918674889701442611\ 0243372370604485000829502968657187797349738953827997228045722865348686941251683\ 6871576749827161631505385791581995303082484415126829735876626171925100592911429\ 6443386868550131355825140641921275185923371515905206434159758132339345330847542\ 799780747962017970532604866753527178648653933543116, -.119480356057339983007189\ 0090391086156139858524685992126521254040544667024587102531368650636771933091032\ 5077418821500028817361763575675749566455935240247639664497027326718921504737328\ 2646230185799939057133096763093471194047639650290654643529396641922731885694326\ 3426950007683980956638040255624989517656705200032526365738097614299735387621454\ 1820626325008993280947890839728579160297825269654353383637579865269030687726322\ 9167279430833861907644998634062470401308227684181957875329259350510519085977662\ 07029995701824, -.1822431237551121352033145614678216447027176536319578304676471\ 5886970367413254553870049972832128864637608078048916686205854225599906014952737\ 8466333099580559262762311361807984749130525306855973116973350087160472818281399\ 4522582988383493670307052505413290008677249311674522287872880920863722912874324\ 1773881308657253615654981274834268461333413032172621307829855362590874148587552\ 5165062471632269634613085229673360555153427338525790852375974420179412784735253\ 01221380305130359861695568474553860207031989407570731418, -.3958682610197113913\ 1867424358237145992228172362218876387389094897474768697535823354046962427628058\ 5217524947963494495745687583775323098911036811502251903032231884847637003767066\ 8647337614671398478430807142733812034393483269393124047246637424206575724846782\ 3773691912784257587130535956540101853814231622151091535994521752261747552265096\ 2925881309889176641918487479021692981374943806770763938282718400054651791767823\ 3204880837756129038139953255867566489347942844382450169180040148737037272249583\ 6581753365219025021, -.99707765192642853333907170564275048469791377719934312597\ 6139756632872082927754540563440706999092234727589723864983472249291811390149991\ 4887481295617616097444303822431779658185777399188555826394126380930558592996997\ 5181433133998988778565887178356401469799830211685241285653875622749636606049963\ 5408906451886031699860470767346566810198253876545411360742233936115007143558220\ 4607910225666366256073611890864252968778612847791403872184636075427307244339730\ 5887153628757026053004136091786781265736091371166653700355403, -.66486541795976\ 9074267166912458185565692064071002780265127937512409036224251403396650446573128\ 7154762193261856522585114073095838878247258291126388649700235632962029851277548\ 8614980752087530870562520719637767364279211058184202219821616996765428304075159\ 2927264414658905493110854490272795511892840275389383163303393044486930640862839\ 5492672335312166619635766925489437655644283588835395380985899445878813547535021\ 6930865573150649067299982757135545348456616127116732726414524754946832758083292\ 501874879767944724809836, -1.37309689764511075704306761667391249422257791978744\ 5940137674325953638443474586615690249206992539456773502260910916667049727979998\ 9647742704790033905885427542506132988716802000229656373104206330919216750251429\ 0333031703623238446604034177918864099067427550182963863612416880358906038504883\ 3422243471068123339653221182773873720579412078110115098662120212378605738105815\ 5726559134251753826627680871174224449269580355232306431105199384055892687841629\ 840784051732630676914685764729079474090457146066749129956027259451], [.73521573572655065253767263660054308226530695014316165819673903983317753602023\ 4166344318396935228122295574742996563028237795552435053014433525067106304346304\ 6763787962001002892986919621180465893892238020930878068591605460579188521629467\ 6642878083096024178907285483007944182633797811787684367083603364886040753325338\ 6554473808741250181969622008309329798349073361323228344255669363404425289634251\ 6523717121590290700525782870145129000638857097143375560228254704408434215520132\ 3201244945918815415494834174014103064992e-2, .120606232555154701298890771007969\ 7671562574249018182504302762983365976742567021093699642096858314333567796085198\ 6816354695943831505324263144448179506959773835791112519523847940066296527486478\ 6373318497341809883994427727298461137692621747803131966123641325341269933638455\ 7009422126328285537267927286721573643428656373005693275616644907762629319853467\ 8323818133038448110891307297588743057380156772210950490149923262194906943389478\ 1661839527293704671428733923401247857180034547501917377546889259096692049167275\ 94719e-2, .31396192438966994681410038394863350916535283407304365303883024920731\ 4794842230227046178330626421716975733829821783134262487756040989038280735642530\ 4302726741054391135768758679192725770173083919369599156220782977266713568953500\ 4113630060641378065559196713528801322376791084521617450141816180784245486831719\ 5414191994933794484291165445199373434854382890410503254086943845082384221683451\ 9596012422303939921936270567900878898391682407745367753749075668170727319240189\ 1655712465859769597127449280558258195516206009626e-3, .502346952402952513692509\ 7228618441452807651968098139598686465844763726813178860068980909387537589386828\ 7821713257056565063840442192652098737131235213706638496452387533821123720584846\ 9906741385674493588769055766293065187409464777135990295643592021265633624382473\ 2275303733858415150257536569235558201252938953458045698425644862960033183157709\ 4866080773970619613870126390682555295845220981272840493415011740240157967931053\ 4809898460709096136147928373622160272526390431121860665193688585329040915809255\ 17279061056644e-6, .68320396799252249422683364889812526017555921813574843919555\ 3368595402305965162556308916608230222733863527747238890361662636202679590143961\ 4694656490141098631112180378826657857764187693983926979294214183489007640796422\ 6302078196890903234681067708325712716355019787189251280476148579653249624410764\ 1835820729611720647133892858170744271736977979086861685946264465785719822680308\ 8140886991625943796917394717484152871468277849065008851448366254055004158176063\ 9514433789576544963142451761746697897096959017103272213245e-2, .250072891178305\ 4297449992619003140727305266034981871596962643413143323659646036208382988731010\ 9132295150945805974493675590374837694468215696798028797983039992137463860957830\ 3890698323227924839091499670085159560940086774277436240399573216078654714551092\ 8070836650030622537646791904579728997194324985632595280835894415941434949418031\ 7828468923848552813018560060426225833815705977101558522975429547479350462410606\ 8462693000638080995658661391965254364107884544378254985400698510729006607386812\ 87451198461114271372288e-2, .84374644043183277639169476332980034972940386837197\ 2053463448915898921449071909129854160572508136649856561623958561805287023891923\ 1557597925886586682094132479875325695313374439126220944390734272576234465881323\ 9291153914693931574443345898098499525629739156256957570054196444170965379605250\ 4385342467612699609627016332096104406065229179197184935451232261402868391728475\ 9829788371867894565316315140688394028335199591959319530012293358945161520760736\ 7706777774057841382458640117848475466273661545915682734724012926196e-4, .104166\ 6612413194848116111930242088290443557715584947562888208862392642403245908392017\ 8157673035942337397602957613705449623656141422962765156596238700505475898762773\ 4101460605518970546593649899783056668389617207785625607972820504406535479054282\ 5252754065602087713366143416521881453622143315808570770285544588998354423177826\ 8540995647303992713099531407060420111974344919398426376224983792865788393677602\ 2447843552028607143893796265936733218867227194770067520262898012018721638908283\ 51871495276404789547717480654280e-5, .65009593182661549297194324270408733392269\ 4214523696642260531394976392006995135179694224501165480501813682388228383603515\ 5740779574681772728388883966489321601812391904213836370785983329563425869457476\ 7376526005980645226965163328584035507192716000186168835022857661188671179969453\ 3333294907575965452586142175548788348794333492578345104422516302567304281777765\ 0929514680779917561906282303300752544275277389265235517371075409748201917808568\ 8065018823420699973108090621650612221903550830037863521159908187554624970020e-2 , .3811255880662773368543291989309482795502096121689175376692924902196297749236\ 6527612054350446503699344395088340085128312826266726568669765993058998701953510\ 4978590084799827918371855254830463337023790987372086310466425845291664495945186\ 1531742584866806147805922628315523464074818530603589833652947930267590511550400\ 9045924343708496515359698470050361602810367920307983647689642491280823292601282\ 0349368259657428495205797136757314052045078764627023849198710522802370792630992\ 75185293273547554626323944570666456766328e-2, .99224106962205716951637370211569\ 5708735296841626766045055221171890127053017182446080192470885953292779351440041\ 9028254230431798208147361266877478352493879619876325236604231327379614068032806\ 7922505758595747227722503422293635243113537342913631902468441386263781966642885\ 1214942505179132486694757135556130701768835750937280632374171777988991700664275\ 4650750175006749252704132064023424302123679176659242878902755044138864322304513\ 0812854005035650058870011434330566026696519604829665880383110157897443910177721\ 003338e-3, .4064338476669727651399724815132111297398354001120409964856337653599\ 7441059792368580901469603762330774701568155420018190725372770587285904619053025\ 5694260477081506051238488061719186210830118178039846581716419583050457220669795\ 2541163184125161174496719764241650471296897678282251154404601568802269374414211\ 8875000387618217388574551538928550260606750421845094424253954239478725345581396\ 5014854950434079990287115698996313208844105086234886397377272894039081202802241\ 74154844992275122526246633051099013027398746254607e-3, .25402599447966387993493\ 2506923374099036515869393805706305806296250291907109458316359026874347424770805\ 2362169853073653784595358405409304068014643957833078356164944486989756138830946\ 7998348203417115990557090605176777534213560155231704873952261059801071686650468\ 7456051725551759539001731531656486435806520362350913226442167312305584973393273\ 5182675346175632372765950856495246053317207435900384925844070416999806161454307\ 8378937954812422067294543947562271811103396968380426438445197331734857793858135\ 679802281109530e-4, .1587664356006415431821483521405802526910269124205902907114\ 3508900535252026285649961140306652664477125536048676617387653867934210085220142\ 8287923784380121530436817178470185872203877739832434549504391279808998709303238\ 8923630317066163841778991072829876865465534163352663246290929963422761565335774\ 0108443653972831450153647781550678857036791365241702864633755780097607159285342\ 1552754664267436114010735642882565451119240573942428481267973468723721533206972\ 63664694261108136542614272913155364685632811763364987370229e-5, .61041946401389\ 6624313135752125059227183891627857592513778098316981210499543158834700739396956\ 4823471599660267184338325449074641142870459716591140101800649993475171518857154\ 6612092980798414101213502978327304084976963392830350472612133146246740666096039\ 9027355104619456496667228691098094049458042916081633871218210604569433756575469\ 9698474938107373979715633203631932806518063183126682275641155086167236634978910\ 7586217853840968028348765787880975704424901105698714006419126750796555277940145\ 688599532377651012019851e-2, .1589330876735962428297104715046919169230685300950\ 4761959258549612990778709603453463885314595465436792162648990463428027848575362\ 4669344132409038337185111422911591611184483478496669773188015145175289911001654\ 4200955611067540826710201444825906706210105122222102618258103315052680219174274\ 4135747582169257265559675539327229284581001991697819597245058458151072871741719\ 5995379333796636413482927335332311512890122523484358382242215883654135125158865\ 17233528469281972638713861870169483879132148216738286759823841781288e-2, .20599\ 1530677631491379033690204372180395909797997787393561784787207684201737822057421\ 5005116597724212379182469600043061925265509178627887105025516293369107501209243\ 7386547649058515760622857012124977583815804520739069791957058154067276064975584\ 9557985741084861298831248063535099350665557597400056026956060809294760440348290\ 5410804534037987372220572461799612387977514348172876972624365614561769294482033\ 0442402231528216770977955621822701015067002559525116220925435831830975879958093\ 988893078079610076362778262181575e-3, .2543131187040778577154716588339519808339\ 7562726065527964870925721831659547655320986465345221894883924693311357892559089\ 6250194720725522206398828138167768177009861828262422634531301080479060578777539\ 9189035916250785857496705447596838201954015226126912397048859968011481207030685\ 6482965384159977061572171527046300251970737420302605066055923000929197184245728\ 0605660008934154629865557659851590069037837331128880778529864551698673459564647\ 69034063474166486782003330348524190690998609002474422169486761728829916291010e-\ 5, .502220793311344708928601011943583588285425647672410082458893362819196155115\ 7241065799589379603789060582080552157780143985588949625348083753768402513067028\ 0201362897732394154699485270608014279029136745527437759844119220140444473701981\ 4028376075630198645296312905407627708174353790911589426098527850432436537096725\ 1919293488575857904354449238304066902537653923373402030163765191244715930629016\ 1982931085917849321419643297632604607007570148258109575507536853284183854928012\ 634524698795882660628254679997171657472045e-2, .8037548210217745754282840038061\ 4811263083291246832017273829161223898160775441473525845100184813331253659595027\ 5544910335007264619688865083258836780992783542278111840370568967671523890847866\ 1358402199018838692760290635356353123354898092805293256482173786703720001183387\ 8270215580177217978454896213408540771331130127681129049327887160876831533717203\ 8269062400191067391380121616991496477370785756540945577339936000419487413451792\ 8190684840178005498468516850851651277507417324377245910196715337458208773746811\ 2431419e-5, .426575647218431542843466454115116562988970415098548067655336429017\ 7395014613100632649536215454138803201962919381380409614197795057114500594376272\ 4497527132724200208304899774410209286659706468061633996913376074359484362451448\ 0679330500457271264754678348011762598190550702492185852911918813230562770181662\ 1783288339911599150113774043947510519212075804955375920628074299441936809721072\ 3414088279034316668405141842791922908440922113070391023775045199511162040052685\ 599090909890847337848033387036971126726701051068687e-2, .1349908875878703003470\ 2005338895498959212026243419570020965452709642201288120063660511600685880300473\ 2138478889317374109373301800860450155154666808264078033515476921102079638363610\ 6309169485660072215816940800291522257787092769057578015598662524574941969951571\ 3894844807785990209800805792230074950506578300179395856832178035845154409178056\ 6075063782533010778997147603370164476260048684652580691075525601243171292524470\ 2623858247078744268748957114422340274318365138715054871724722849061112492549839\ 4731361488914858e-2, .266663111117883594300272272853040159262613882389448256972\ 6679169210689603961890171521165799796825842022933342550168364461734486901620808\ 0483406129396363909169047796144782812176734213738399077628768904778259739955067\ 8056721030055723433410874723480711973513703193909176752763588664314510804204776\ 2343302354653932329664918300145058783807693540279812272014069982661367613116502\ 8154574343271095313946847347676163938027357425235332242547588713297630789487898\ 451949570431444912412593886070358712121064054055498626143277e-3, .1666665277777\ 9431216876539711224788473116905991762974315425196973039629123453405044194356159\ 0183604400743088342095819238475494904821497407726403998886348616018319761517780\ 4202986312796425557950292913090758165712695690687624272401108698782910467561797\ 8955530215949816212538855462822317289187315001001076329503406789682920787573418\ 3895350607317838517385175976399232416519873413494180800287962984507885187045458\ 8802853238459380496252919485123335814655820352736450212789399937924687723299700\ 5085751490961781766999920e-4, .329535530296124650165720658092550093308241391368\ 8146921721766372994672182626633100126603012767175453214334761173061837792975048\ 6136825359656224042570512212889431589992852291649207178665218866228887410914265\ 3611215491725938042122096791772297827524505469896376483094477332985245909564069\ 7255919275817646684802720182146835566291337843740896413503968613469654024876444\ 6947648563083306437067276735785827144067306796521444767210429388752717648570837\ 662803138806234362162950887118406429386984810745934925175265248568363e-2, .4069\ 0021382461872661918861951925463641325257767933105597506455322077578656451501106\ 0284618660320611130209386060372462510259041025086218755523390920661597297007606\ 2119616798794682101308342021996524734879462677539702612699430048182781814625520\ 6156032431234447391266895572854680769015423532207699071068383457359156871400709\ 2444990185427441755861932905078048022607493577011491126983270127326178304602805\ 8941670931750988373931690001920187106348540260977719523616616468540360805057727\ 8017253762847334810783070540304995e-4, .205740148323789922714942469566001246092\ 4748627745034907225319031930048726854540093682010322251291412417836207362014083\ 0457487394596657417166004702367155320499524418192107733791978092937304675404312\ 9116935497792692230726806928761717199669410928433331493033452848792671610632285\ 8189694960575206137721965384694623150658002594067597245066549797759493908192241\ 2906482545346813668813235805472429201022388796491223127751164835326241213862619\ 327065410749020233836458935578731088832386425309360779333515189981430527717395e\ -2, .12859999613744267296900146273789533303206543469135325316448625621467264010\ 0179410928988627208517827560628291206145818118009917500925681544729501025195770\ 7713667436151567757371799433098221224021334937085569761037500706295164364467473\ 7560296768168330705677007576341727668591715380973248967486586964684069855252333\ 4183249694452581697417014247524777873813710661244931629286696769361643189390802\ 9752389254564655093380762058948876828560737771511355131227800413135786285064894\ 7591147829027933510695494363832672335051553e-3, .651020474002632387204312387634\ 9478417228157846525154189470787991131717685996486343230241826831627522545055161\ 5678896595567624469947302429709672006597323854509748913421277839782744662994667\ 7650312458721189562813854409743071516883122681952296769874427550540579890055615\ 7900344868336563164336198868033798781953726618858918422351165775885473191035375\ 8271557412472236131857017830323520049288973050105392937388569396845069997852748\ 0740637511549066134613799025352115301089859336882396897768321654424119199923824\ 45380186e-3, .10411241723107769748619556128572342817278862997278313115515347717\ 7101031897885794254999023885173232869550037895745467402570312865014316265421977\ 2328633937561454414128346408983523165388961207559468007456420122015848505631191\ 8700362172699683735752499672508753861270305373990252594769669964222197527276281\ 2687446745618064227754919290488767245298194133463548568129982622852087692541064\ 1156616381781040942411024565777370277973545891465194179335335412340439566564570\ 8427515955458616036407131034530499944427699992606607e-1, .165279430670228042977\ 8949406324663997165711510172937363220121544309886598055966640632796017414061906\ 3918553837606610522909911737472998042579997018958760925912773485121850315274567\ 2779064274809092401545810041090386370798234929151534931542571582946518019104406\ 2888304286360177699584498715325361083934848252490499765134303125481492970937831\ 8755261565902200218911026224474392975844151998846356062076040108822651126029441\ 1018707062422242237000626377420823832042987555051699367866231552829127009567347\ 60356840173042693, .52595381654108785608832348529277918095745154026658671918343\ 5761410909672072413915775860957672769125805232795142025009295441767699467315166\ 9369691359346548819582233046019781180486471212352863967664418983815956715483115\ 5303233497612197866961005233893176181840112679614808491216265376208198313056339\ 8568805278133188736394097828243800618513252842963716664029664638414889043474434\ 1774372091847533439535570651092271633108554672827001176097154587424977620732074\ 5359197478825225143956904010200582809876492213265197813038e-1, .398646660068328\ 0162239012013769553362969934659498841855825479118070099339972616514276202529400\ 8259448446194633655688438063368273678129657525610939670048383703971069738394138\ 5073428214239988924488349554647585011669430391626944415743054985136516394788116\ 1813868440242618789025641272001890357751008679995202396773719924803128447309611\ 5956164308404794368880653026546592988875110494118563786860325448576388537245081\ 9349553120501320790972150545196937617514674639892040536876353816371458853648613\ 01132916640024948566041], [.34894919106523880285167820582033581924365853792575462065601500848947178140241\ 4590077875450063108649951010876473503367368952595279426024893977047579169796762\ 5278646233826840417441294641276562034381548106676491750749475957247506273728953\ 1916522433158758161964620963200732341087884026881309182319161584598920189963073\ 5461155391685546785723113789122916211285067429097072218165592140728922525029673\ 8047779622462248757214576052086548977185053908214829944407130986011609174219631\ 2777421966788024692941650266533625382227, .717829518676868278349876417292828618\ 4464278482800974702234298596775325544886295799391549781665664117720180850975759\ 5058352849943167455989215842766941170812835127314683089542318005540246516557913\ 2421508728860170862533737859712225193160999510291050535267068302671485565901757\ 8921060207112535134948040127394786882026569232747105769696835778020678622375735\ 7032477505675007758668554552169639421700348937367142377788592925105649289456273\ 3304907616600717154904619861736078090024491042427467027400114099275005446047712\ 88, 1.0243136244964209193538846197716630293383402332449476227520807440114296606\ 7329095918064558589357966474508269026789273022763413294208632778244287999256846\ 3302653420373046608277759263687832794702697006603857485375373346519722343982469\ 9362637912939679568270505191926465766504688146090884939984434981016418606155214\ 5149392475734887429600213542873906060795079496333162554296345881022916072104307\ 5312585388067731713549456666151861877065202122553671821702902746300215359183886\ 5987207891308418378277383969080587944409462, 2.60219861374503596058263148735003\ 4023950708018755808506750510297992753731457454943019680670890903607156831180680\ 4934784307290776831188285280849142901531579027591798618503784066995110092744120\ 5391489898511968159971921817882150386967138475394288603972016892838859766892621\ 8244863579037223084053496262355944153910975353700738168981214488643007047465823\ 9605251124582498391391288082142477532886791239040762700835104119791354190810205\ 1106753530443083653690558288978241445048662094272014617615126002594025225055465\ 85629, .36251481259312379456986010182408546876221641863252349199432178303816068\ 0364485420127589557051132536868205046201326568409071976876455116740195482012240\ 9095126512677975381139250641605148426101967686129673018633399173957323576916574\ 9070916015467129868062476222778310300404489268704965105412837479586223821404348\ 7246620984775685656180540555820419069071743832869469907059592722389312711492599\ 5281361810713345282199670622986838629452595349020954467722163493624762311007165\ 0513802148424622983742572432416848699136676346, .561378274189303635389398659117\ 5604761307279526061764246361322628500279678571703575530754999229579380469964283\ 5199277545588652120723659461728701056296938487980949248575688729477159003298996\ 4940443388668144573116956628923004712749316423684821466740801527259553906223475\ 9399261914220302720935260160149026006550706240531987485662893494686289579439277\ 0847679099819272533911363883822651663884218634291174250593213493082048931953133\ 8288331792590155676828472182725083584181942461055413410386576671876255957957141\ 14793340, 1.3372186375299769068358336660945698667711347373112482849120390110586\ 3257746500340792882501067141306483481956597622161834453176673758096470054293929\ 3086000968325813254533475399443566113254197105896580520707141925074967682225936\ 6782819050848582233464011527105491593932607196356537449848846619185814101298432\ 6551656360791101558759746492020761755045610087365435215641238559035322373970029\ 3212273397288612515628150137918184735935236128208914316409103065832054586323226\ 6644702617321933814866866769427157964747459702377, 2.42047398103817142116927510\ 3428079725427342396496997986225478456799500017240224503470018608442647892385661\ 5271238570283164597013851150235258470495777438250983539789782763537020478881490\ 9638930914726380305865309329128439834340713346554295580239736289487900880319071\ 5166653584143139116079199721083625342207852314197409784004814576070520590356450\ 4980550021399621472494519676059835398914951690462136832319954625084878961493992\ 0720222046359689073820101857298873369399097560925699387960113662776337624057714\ 26488559566, .37178121108671005505875441455219051042844408503301188148367547576\ 3397940169438241564911812971258336039658370505807961883947400166881857269780802\ 0100185662524244220569482770833781131454003869459651564424193536566044607234206\ 5536806268841003820196352089780311342098481662275075495696257997366142061878709\ 6240677526003640706939752560398858535076189452557680170136530125933250336645412\ 5560820077759545208654652442305000623634423561828718504582827901905652261254404\ 0608979649180612247045651793289663719071816388853304, .475275198473132927127593\ 6926833910472436002626695844725383876365034544287262939890438340204309269643089\ 6325033570812644240489198359912139023320668458883457495402459738178893813352950\ 9413051271152847901526999720717283634896850733329452060078459920331630448209748\ 5090927199121676108058992224998491308680035221511632149699622045380303839049816\ 2282629133649513608938587404123055799880537074180787054995422304238710060969192\ 1444931108185442502709375296654197843864359607913856574953424402266189978728036\ 04787047893192, .76102994768143406239734113939468341141158465400595686079292812\ 0695459984389587911782039347248044599408155106376109072373376968291248555596302\ 8747764968138132675870192320440412716758968863582389514199531575125127715578527\ 0662939179490819866341971744489337329934178524213139024299869343045735087943151\ 5007726226487396172043352759060112059392733963171476577246538543438253688013091\ 8073031175715688247541620366718356911112765933931311634470002359154592974305944\ 1297507427104005579424716259612233183330718742837430995, .964164661947846710658\ 3234653000735495025073575658884928836116886931451280912047132803678939944411339\ 5785436851010366912840819794601166380434391733187970203171049768189208939142989\ 5353384785019279871626198390116767112094194233154110599537181015159573648113841\ 7731966496445559794934959909725762525248826801840290123379152410890097249703822\ 2084256314814014865832190772920315076574815709342104641998283901546867992593770\ 3731344053799505320576287827496744138835322247059090054152366132674792330559409\ 74859950258587200, 1.6295862604984263936843957466808476828171465991997921230159\ 3864608900053760605394141228113810421233578416186696806762738334760067110209333\ 0716782943967620747931884868173159743111759272515945283521025072504942870241260\ 2807451708664633021031587479664392913964295239685976200412124785712316407576089\ 1592082103006279974211848373234361610210853461857650088230374669472825739025414\ 1090313225434563406906231371823802304604478020032617205563906301333979748160975\ 6361265758950068567172916937564338549230366198198388182893, 2.31557107974069762\ 3845450620978273222435780817426593179649991896060147431984645171217723546198294\ 6739409111562427699185812457749537778399055393881433908222632080373915131452444\ 7203626989643791463654899332855845416687106822075848528741537662666901458186252\ 1819088226683182547399078825599740615877118035968870455669067989781005546281892\ 5498329467670447277622650585889061213853177727674410246501319834773493242784886\ 9702454754039031046768474337204194821717858391019048353567667008151659291154546\ 36292867985852779686, .38362200285640064171557167048878751462008348802302808625\ 3658425783992311169802438786943356959166550385405102060261947900476916873590701\ 6485979618628375425975294219031194130389449235458088675763935552288650163849354\ 9369345804732819520498064519097509630612923322666766784956659776066150743867701\ 0318689492171090669736214500372733346956463738013903495974876148566971207446637\ 1207919479284923409997754895930346095312738673262729617280783218471532594974852\ 9058925916506192814808652108683998698663226834298694761887038, .657641031010840\ 7647482652210146762121122278808724171731632454138091646777385550373762608757054\ 1651148245148009271849646679094216480025625642058909648478531261910460138903185\ 7647536897128087398224935732384522981465098936157881568967765800011042222791396\ 1488509635069996986277552402900172290214716074172740772459771038459009598393252\ 6564718172545267603227573005961934089650268204071599230525006928342694971665849\ 3913265682671688215773134612440269785413348781383199025222853669109976795703676\ 63470285687833159683924, 1.1235691089654638913791300293993245638787799342410234\ 6279124754657369972015608456213600158604166688202447284703154707918971735919747\ 1537129742000278647871788758667195747163199801970149220842467518022142513853504\ 4170454689586054632010536212631395956878324532225151667358967234175102086855212\ 2144368667057362120904445215182022409696792112240772846098217426271862672609137\ 5610694688043749977199173618040689683073111976228954657785014089776466725369872\ 4197012905817737404458684081143498465237484904560761573993381249, 2.19842692088\ 5880328697694007909915581772404461931402902719812246732380210114499638078020425\ 9098731186973045014790810917411511179834519250719968049344009601482085782107028\ 9335172019670264101308441159781091450726994874385914666502477996952865493125317\ 7589878866583037873602073533173554029381095181947899166905435839334012506242671\ 6061513196865583940216039633243786692870602453048504540662948864990259636153019\ 4762579289967205012584538609299971357975268765239757507690586884280237118561039\ 07285334790028371954311057, .42094631879790402666372773509087387211256707919836\ 9949896240821056924915968961240547519065777809048344467910680058441621479147139\ 9247133255597407922704076947688525738051381673592661365210379540298753035992403\ 2679299651099568857273222371001180480181612734463608914141712853665144795232143\ 5916348952830208210635467706857923756649182683496678151908212649353889404011690\ 5386025707850558594109181060388817642119312762658436327001904943658925956127221\ 1698747916587462920328474661122835104922669392219217726750415001501, 1.91310404\ 7271348831353357193106263333593900344969565535174245246031171938789196719828380\ 7999201116882654537921846478693915662559548842332365865489961366967895817080395\ 5280623651145854547510873376844429910439589757334860170141271450625012271919536\ 0944046308627837423124382313922271563213258347838125103598968362532942272414833\ 9334122445364161839557196453033580749714635144574149975757989514282774262482413\ 0005392384570335736489195854271570939123955029371735008945751489726344759023344\ 82020905719272426092779639105, .45288209362108220500423094235024243967160222141\ 0716427382871530657116664720877496142086039502108011042729919653584164980898117\ 1359726150040717832738635392554925285827892709232565120388118920317439353777216\ 8755109715651451205627238537312972764614378251937973551654928518357826270108933\ 8544108394167166654204526898111513188973630040797379427843849488068845973979174\ 0286419732235309540583879378640783458932636102912562131074029152663560697569094\ 6641564660191235919868565485291692528538301063204653818077869113466595, .693120\ 6956251798853397089458698689582444362853933873152175838890841491275793411343887\ 5327722891331680276758795280832659577993930225474034412260285929610054358462182\ 9066642492304085226293986073424234718874422685194880704904069337144325790947414\ 2770626338810205884075264943015766974403993941674472896347412219915737726674775\ 8225518136480757431094693592284499567324792435992391379564586818714477498108963\ 0591243129398376062039193211322059394218809809133334179755782691166428963540240\ 32480107262783161975258804606393, 1.0626239027585220513478488525805789975687517\ 5609637828114994628821255446598205269757001981547265931642244835763868280958612\ 4150521854958909110841330585980084939756463176852445004060744692005943066001366\ 1778409948140866386619451515675991652864814071642730973036304053526271520103674\ 2532562918330229181650868797127194675091023506006701934668047541444734272869306\ 3010693660942976854934343658837379617319071916552429598300719437115825579524188\ 5762654146632035560128661351609067933454054381624750742260148172783849812, 1.73\ 3142753740298101687505192277301097040126488642434080154776956831892506442482401\ 9561311491713504897949140110618128463274293013695707844631528571219415700496560\ 0588028090159869245218416597136995969547577182579327874601521783365216437328950\ 3655985408748768942816315972004129402423502143161145091528843356625983495216633\ 7494256679049992890649242399439583098515138677572683109527524121871769495198915\ 1891894144393498363020532308607057521473617634551990584008226192212305657063981\ 96756886509300194379655941999785719, .50459005055343901971031900396678760906278\ 6770580256439604541072368363726221423283234490251411039883035036825228767716965\ 9741731821312923742206829621998620150401115414396497742225776794139918570066518\ 9790847852211200542307059643422254055118740167168705433296621685047162275260485\ 1073569038955394408458637088547208062754565127936724480580492554443621943011101\ 7976177471696709093132177099427941356350763778856957613035971167013575403564216\ 7096840232051088729777234444939793044846002478642465526869833224378135565390, 1\ .514314398903202553127263003965743644250185975544638499793866291342189224802158\ 6918531501625458127679064038253140203677907709019718408829526457644130126599850\ 0599967067834682397914231030944534506919697192674675560872997901518588425778148\ 2857884983486954733578231597647454810532098898421328235284964300310684082693558\ 9066208670103665598136916358556078924749275745191526889493892071129162051015407\ 7607344654525554779589711994619976452644417936087936704333007036404093122283527\ 43844778268204458910376162856220814007, .60239497127985261666669376648428081592\ 8825766361610231850368542315802661951113113327892127222060726165431905882824375\ 0336808825903616464529752198027555979300661066299623678617398401541864044381988\ 4942987303028670692908943241682440259427462041942312828558636456769145154491156\ 1463742529151883551626466527855268495778493097464030145304849554945402637746770\ 6848949961173192283059858961597595657783168903583723809850401893409888258501949\ 3987689056396818415176539698884988921936900772746139128681044163619097016889430 , 1.235836316929222333070025759323623253135149950059044682146770718714782711172\ 1936009714266684465982340344566347317446342445414575296585868453956715596140426\ 9109775495724864863047098205727304718003585812298340469137757123101846869232591\ 9278160832269905520632316157222419256263491835418752208015368546342889221223715\ 4723029662343735070987588669930543130194261569275634212640118375263177597664194\ 1904002144832449208488434299929194525703552336438973313665782711191902860597810\ 34977696544511757138112214465890654522700, .85590587211863421369159452794331043\ 2224585053858041353064534671305297541509799856672884733485565611625231730205662\ 9908911297541062334552876101665703051310874951527685149947880956832650767170230\ 6511954527139159918477499371148051222720015446362364503022311827242475690101380\ 5499829286429991081069057082642925354590821743536529643704934880505465369940919\ 2000029982368148570005605612342908079250160895509006596203338456439321873592494\ 8379895794750156958022477485555163612063812382115084537934031120591003133911433\ 874, .2867062087283160459541973148723017754490240033608223594900948463792722614\ 1695132000228507585917113372368105069653149356978186758812342789460565341879455\ 3154700555962372097308660228064746260698502269350405225559299178659716344927182\ 6338311653769982912910704016760824042175856955150814185913115411827753290721525\ 4329618151182311130759479980167273601187484202113073025693297404630743121547071\ 5875383726102061796121173286577417672596154892158980355769744272438524581868413\ 74301024065099955062027513517049838435661434, -.4166451399150953225868222391388\ 4403862606070774901098707262626956444417707417604990249456357862916328774519172\ 2092228764306040473065275030300564533914936602637533372002800646795395410110015\ 4422439790323962699230277529270991732055866960211176128074769714208669132205202\ 8344692211356626186471110364123006750729822198093313149904342076000183535802674\ 5910752717211824466724520534038577864350730192210712290205729321645177721191656\ 2858571453121472810920570751217312253404612186388004976818012198153245667030847\ 3849626e-1, .529349154877104405255228136837363066516499355110543938570047484024\ 7368931236231752454950867555011663272491895500668029474982572521830816611646069\ 9970419738523500511562079416730461470086919865087713627558455421401981839433518\ 7385883806500623822335418279992645485541843734499049939804681666939905210498071\ 5225092694303136122936291252028910186761642287594492170112610909017091726115320\ 8299011219576968383727009403552444632462789215583952054505787760475047867499310\ 124836182123683430040182300137952701568399224528567e-1, -.696879725890453441001\ 3586369100214783996369831500384626586474286794185397311128682494225286531795131\ 8190004064626777185538003502949876986354745605285008582257998205841302132731141\ 1002260438614321725736799069892804918093179095356895113203828098062934741507687\ 8840139494595026471012777743248595247396284530882828024348440345269263156987982\ 9821756751355442340016029289951984788355928053650895215997946944990571480201389\ 7495796216652382332413969659333192366145711248918589763297163479640675079020725\ 96265991587027142e-1], [-.8195077748501003690898671183363235413836933614760188679509334308058757585061\ 2094183065385718582972472323137789779589481642747601323214425899821578582360068\ 4971597522873399047365396658403869216896550186189413037724809276467505517659270\ 6570917471059556269722986200654656396982244380677270846722774598181343201508718\ 0804927524456874532014926169661070055531833409977920000284655083269213216535329\ 7067035198310284373342759421306627155638328298009886934469710579518121412103466\ 45438115675339475867284715509969013045561, -1.311801094984993234088662115578867\ 0371633379954678480425544194754131290763804374627412289109272447615539982913661\ 8509326590385031701425847526468660890981403940087788130186823630813856717794320\ 4232877420197244904189407999121508009726124368270504480916160751994311492776979\ 6295708038912267957254198335976055882588496235416063806072384756631804372523269\ 6545925584097022556227911404285375096060419073010291012061866284402201420980505\ 6975343431593583537271546886507563841273558606995010378447294687191941491182751\ 5756, -1.8106930078750659674550606614075587368791890688427401285413651442881587\ 4400549419997979253866682981785336383829354443699846346164959613144283521432969\ 0755630935854070455321300237962089523603519040752641851481376149358197399014701\ 8103928315067253211214283445399047808347863720487669086190813708281574336338705\ 0241830815456180286950801676258792090898064980683566445902002626812566725250824\ 1909606973373596233312623723157561241107193527158381822355716075392273230862941\ 9595099856792544065420284234995015022838933411, -8.5536192270346469252453214145\ 6336923205649093467802143991445037355801624401582250096816351560576663490033787\ 8653873981139626255457669771929471557684091153032528911646674513391700083788057\ 3140600904869791332735065980808529134386800903045631628122149292849505835456542\ 5290031078282794737743575195042678254229543667759499634200233363658093737582020\ 1079050304134350639939559117724181398067050499560252084143736806980555382507906\ 1451390941538006636015072544040693646490020217778148326801768596300832543128534\ 559418731, -.836727829605619893135721323766994608606533378349050097818924296702\ 0327080564926430032261458941679257842874107211901686783390011602994756581821895\ 6983238059146733711056044642953313684721514026924986325486917587268359187368874\ 7502378018509057241264657310476418156583570279294345222091548581537579476166085\ 5549585558512393040212053802819998296664714767697141078518476860064099927324372\ 2181651517819692358407623698951573796296507180738119857815145599353119188839154\ 095401960758709140957100165332271501143555171433826, -1.09407294371367988425932\ 2712651479036434503514923509007417978807834637311023891746411441665757872081137\ 2687743786949454005229018063297319900585650637860932266420249546697404682688086\ 1913273921893416188468796018351113215928739404855333579767917434820014308341302\ 3782093193195055400447416154949475669051995655505188929357722944368160365144337\ 2614643632413086976086841962762254876692731705250061656448694395872235527321906\ 6464219922200696670966855943472987663714084487643740913470180071728647779900837\ 30653787317101, -2.470742358334004857014360587168429820733366138408663777307728\ 4952496066951758240753104260463669575678744985441694302980260550689622438953255\ 4994137677978900697133359217434448719167235646146876629559834477655694892246598\ 0782083014926358900802038048875947194215727508158514475294767922504146301493870\ 2274177166624784936829519113909992582964912421912146873080711843627904157358964\ 0098232957097507698665852118139926974870694665785222597629840784060507145804025\ 89066593262748038701149939063973956875556436435769970535, -7.146681714051971233\ 4919159906293176083257854595177428080589844579990678424181114810614445093692483\ 7280181854963671637869132816511555695889297764535645355970017611987941814030365\ 4938365882494639156103550625091182459124298533978760070105445355309769507560359\ 4587008339956506301109235045006832021480024235724863303586082660448739586940970\ 1892344696089824326612809869445107081474647418184301852572478728064808760861271\ 8538780571325637588724237129314886482047120775617231205845286992562235324024124\ 6205587770858652479, -.84849431851435842493077331438868282220709507211181167736\ 4548477640696304741770640845250890641660626173498428442904371839234528491354205\ 5938438387394436054492540279657634253833786510316795467188475882478074164394783\ 3822062200547715438131545639977176575996123624683069630500096629031835395537190\ 6734836878906513604090554226690718701703643731670848038076456533130839547357381\ 4168481151875248900434909001633691608364680549404079640537255149962453033107683\ 9753242962600195618636692307782966126429610705860290640653252, -.98092929077631\ 7049697439054566328149016261300156592473883794160641064623156289235896690096377\ 8032198083897977679566544224295101829441171364863544580015932309981020205035107\ 1130939403969547573313765497035139476348743091340978204859541444692327521236958\ 9688685795517229385466904202004121885092045059627959209051064126930148660363633\ 7798679544699034874807650642489668280627135250461579163276034614678445276851096\ 3540983186314569749063176416635772043493614770456916032164928677272718919024212\ 432145172730506626627123, -1.37555808651233183853340140146800289888969914645250\ 8966630295421472568777173261473146194606287235251544094741087193017206270702464\ 2187636583169521787704160617917448296706371541372988065564393858880481329179032\ 5332934764170592338709070355657460317603156865399718288666849672650610345283871\ 0601910125289461829467892598238239248514218647044663323417043281862531162900691\ 2782229191123936822715613940576368733586200130759476782270716177859558551658316\ 262128961171556116732248465182610791200827129961324600953835371258, -1.70322150\ 3215371661815003052235458734674945486348448556341569724826021584421851303858184\ 4956352773463060560404388291533595359359798439274213528766330765040266700930526\ 9213094671662775200401268533875676290924889400465204074301957998692740877703385\ 7540379521183108754094876268332941972587778421670629371266089150940995555258817\ 6048614839749130088452603367674021541135916141609008535346482286096470267765550\ 8435023719048451197828516315716645158457710854448618608157249952170829324777039\ 03639444292717325774042878357, -3.288607752463611905631544392514242065348364570\ 3873888302038666719133447860726857349650747459376467820182659308286292446108805\ 7061628374130168964829961919533198478923267790326047689470329982337736501846990\ 6620789780683214258516877935820347827943357973669121591462568904461778215969811\ 2822073231434695162870202969245110545104115678593317896849541199784963527222113\ 2333570530530183830542759518199403391459280605248140293803707023835282882318943\ 35501584499212088481860470552931185852137938690554754522002867720418771, -6.443\ 8824080568341156446214162808445977916825205963887472212027806709732539448777869\ 3077437656898588097357045087281379572418658083918832913902363383960319792311123\ 6130598808896107663903140028902538591013630044324263510196699260181989584032939\ 4537978067002497099873983356398041402990723569738434728193113068595657605256822\ 5477620243225087498141672187249997776128161972617483596270262851829572711946672\ 9479773351262515179451344260820639369781243647795522032988868181118633094637732\ 3875085569160549730717234780836482, -.86353939297211725214723620790862297628080\ 8333294509535978369724370608647273715206993330934708537298336653427516233595617\ 5688478438984625522099975864336316258948418601727021113669007423858222203603914\ 6904531943685138983299263912553990913215821639272116552323424686338146270882595\ 7715756528933503939075914594295752769772937789999353416380004446930647825084624\ 3827336187373439712936672660212358395532003354917227254149727008807376719431030\ 9701752507209766000119403741776741738579637771566379661623450889422354317449, -\ 1.22580148500980554019670414047618534301431990429232268358021399298606533473264\ 6899435204901651262053422583988396888623805476455055254576798954774565519114303\ 4376906079227557622142773882017975482243030517451908531599265500697999849188336\ 9954092342227727785539031405294458013685455770857221571402143400272708210404210\ 0447945441108334716015597277258661489775549244216451248117458644018832827446907\ 8415071271618006166994799362847998905933808004521072492918185048194126444892680\ 727520597341878204034966138683172387928, -2.00046307828276367726923839549850508\ 4197372628127595357748915355160856661438398315626295485654453400627411648789992\ 7099244260868058648008592083332902739395942954580787802396048732262403786096089\ 2089642884010453412403157421907941291125016119004624770271756849141305598739385\ 6344414609619097655869806136324122801215666562478473241717406667126710903307445\ 7708617319348470459813907839478683799503928357640776810772687779038487949731338\ 9402673196555727813892901128414298111525169032831316595987887490642755582421483\ 53, -5.741629025374102537685860054176239353644229700058444840620896893884885589\ 2207751868567396914554924413319391685553099380795605022932320372689703534869196\ 4550896846060340442664246555349168130991860744236886467743873436225712703117869\ 7538125349879878263239671804558194829373841577546331109939849041554872370580887\ 0590087686042592211297446645317546840869900028728065555075273292333803530772250\ 4587599488076353007632709554485845551952689926711116254205423146831601968888543\ 28953399135469733784138453699225799791502125, -.9110941696110568028116686100097\ 9441867024096685973869854064948404623425985270482902618975707676679070736210121\ 8242770079891457337975101169271991954035087132922751401504102017068000027267548\ 5945727535333451040252823578928003698607347429118298544763918856018885549711434\ 4605088280088527704130533260682232224432331453732643871906685061175426771997966\ 3838657792671376428220948810044393556441419175893500084427845248926643310899424\ 2322780739264571981805037489977334788606708706538347444574835862965195112339443\ 0141860, -4.3390413138093441540125550796629419117622629485939089782092850219674\ 5602952087799935090347479888531290281298510459902959629347476864005098470418711\ 6005836659878567211102443573473996977336952763971083512396806138670904901419588\ 5241429316951976748358961293126248566262045081614265484332012177918722663447636\ 2168400062765533689867215955566850844214967109369476936647528067962348727536931\ 1720941769289068926382060377367963700697611578742420071446182724926993657206782\ 1964404868075888956506817159928141417947134367025, -.95203275169096959849873164\ 0069905629904182431240100675057095085642254990264936885224861383471482839670436\ 0887331941178423724051815401548757854540245176002660412467439693324659212866639\ 2513258013440776258287642304932320267698937046810152240724759033259662227607081\ 4643024743440881353244172770347165630445254447307008513940497646334467404166073\ 5627686255110405673924244578535871369199018040696301395708474659106715163870846\ 9144133339577345391439505457013996968014825803749695752397361420944195137790206\ 349524435394, -1.27611771225494254804543292775054682553243999269931309352463943\ 9600953753277756188043416907984823723886028503438018325162263115773425227094305\ 6568457354332843430709664277209702762438594166715637735847600138676515395135880\ 3734017835906633552360567641048052639708684919855576747374846454444479848788005\ 1173279541190846991155809621057110746867166303517617087532976328380385333335793\ 7361736077888428284476599393726335384097970075330977452239091047533085315416368\ 867122379148868934274535777570296825020327122297936258, -1.88202405043916205602\ 4837913462684591194457849949884246476691971273621553463841351678469526180994153\ 2114372337412080231178460869576746894313678985894542144656844352868307700313635\ 5328977521837031583190396691514756312883581970019242517730625188110135914836960\ 5492677305667566281110039079089129747374692572287037598892493857098458289084275\ 9651118829911876541352260448749075523861183843148968529040093899089966657616849\ 7290618499164985480153303212815985285811870473202433465506307784275870871455622\ 66375079923209968, -3.638683344494007400462765753579418107019984152450834300913\ 3785294034931059220108907086372669443554356729305996104227495801547058950578416\ 2936391546855542687368770424364770791795312521294839763460587328360794367798296\ 8736052888799394774070294747975503767722539432722678555815960980123315788092824\ 9121162896669446940854265234084185262148603516553178825261673690015942829307745\ 2947756360365220529730056166495036586037168770574189184989521431103863569720946\ 35067573001032086156331289868680478802597877816570054710930, -1.019052074642524\ 5536760355765473681063426814228717457404593988863107314194089449651202934069868\ 2887758455057605569333670391799629024306546975629516287953245804484859030656850\ 4108897477586355539445129264214274325531775461936977367747923590075870525546395\ 4692426559895614088434305073588917308055393875664818194561430568985528100827013\ 2508009455111282910625852637379537558362575181930020878620603226304234548527106\ 3774161072319231548141111330994275099004906270077960402778289520684391562772304\ 4782483297624519356805, -2.9384190691709299994351623579728651562774947087848837\ 8415221276825832278101760088430405809141245206369710882561457915887109309932460\ 3978547396664527510570881099209169345196127341893557357296916185985853021433542\ 2523893805138768197255759046773801229528824127171890576824005119403453925188782\ 4462250137966122386013276098075062421718359222950597619585901947055990485419835\ 3192399268028455022277341975785474508610651390494773118715088694660815476250567\ 4740971070795043193672361596347665977878814746992179212931480439, -1.1494182285\ 1623821618972469258215476479946259418617455759084510820387334588005710251304232\ 9455165516681643394634024868522264082879556008650970829198996229680846695547418\ 3679840328983694744837857389558655310156370156493826189777489194509008315826847\ 7931981622150504863174926175003248736227921080043573757596484623774728789707965\ 1327303751323140803737241801846309536460399231726966288851624778533101414134359\ 4877722527192837728072442670686719593007855326053350109569141319410144319853467\ 268393341420342110514807922, -2.23612483036841018960608918554130347149281138134\ 3590096772080351699712608491275777059857906686735375413930425807093452845619270\ 1236785347520373236712828892545324130273682164057881326290804650997057836093585\ 4816383692602883194273921115030782446835782281759418486084320286774124763876397\ 4917821434523780500716830748454063413207226115378351331925173849873166845715050\ 5994811015984966527381653878513286548692590776636591413196734784322812596536571\ 815815496628157136922098775749925877782449057836601409648927951145938, -1.52240\ 3406532090139903091002530558052177255457620151827922807441537997341326834456423\ 6361932284264875941747744517091734553415451742701015073967429763789058066839025\ 5170905068112573168231081428177078334396100006146061928960371739414204601771816\ 7028888939593202301472106628908247282399746210515724083258700198764117215256721\ 5182069555250864997686583215081721825111336107763823776347333460652788248487001\ 2224323272996013949722674032009674270862135952856485266165329302263447165824603\ 64297779919137370246991531297040, -.7403222768419827101138729208464400876081945\ 3559868751823642005455556677769795316651247431626442266091810318853017090446367\ 2717997847632591324931657147007456089224372200131859592562216274060462498383370\ 1052767734089163597301821156802866925751887910157574189580182697282865092127104\ 4510079841273842603813263554817136351695906937699329525008348649886726850687984\ 6575147369181924043082460575914019274540783164917992567161638089596621606658887\ 68372269223736535240987753299586740618535712418624520345890545230448179768, -.2\ 3080592951812296302096864722112534228910059585991145483637804692035628792194688\ 9713583311226794018234731804112617331831601639496852305320886885405493595561456\ 3617893683904200891841882577841195210353005726101245826639837191061275778021926\ 5649052213686783312366080452950553670148872522791187380391568303277151653961718\ 8709931054178673522864845979891506024402747167862073096032690604211072621346617\ 1116342137444856053844461860930917280303238950965012922427930355885286980173836\ 1537563383095032032326439438783229060, -.41704428516625741003049716513325448664\ 3453938644507309759674699835014429541250055066122844746474625613832128241733685\ 8650417961735105792313488625160456413929580323576318951884697056621665582431294\ 5224222792240732987330085879812446713844751175301949702904027121191589425512869\ 5802102530263264190600519460022017237099551729216586089637509117149360420778944\ 9528899566404393145651474457657318007444551938824925605982301321396364500773172\ 3884992672002044775729398273713288908273172564677132364217303717981305540671692 , -.117256135859870545156447158571313852718844825889206757352844730815972834846\ 3734696489076658727006565304954123129145420209041121547929550490355315972117666\ 8885101798114756871682363249407170197611407913535085556491727878191636089875768\ 7075609255409199567005465856137097977609545827251012969018122992052975108088986\ 3036177185908937133285995003344145589263741336113488729693707126302892672770865\ 9302251583753051635955510447064490046499947250014682754121196664554237570518528\ 823880926664786412812400886317000588661804], [.42956347558561583199621540452476131070514375449930452334595316720269777115117\ 5902061181977198745366580360769805086503571073774308148969488923396670442780872\ 7132068283042479783733558467860715885251984876590879833922711104531563282236923\ 8690008188112349561617337835857703674246183746789877989409431164652842400829222\ 9442950537759490432101207265240026273612025315792032617616580248130782689064385\ 7278147359406594489527709815352796174777116279254887716876289652305626519654287\ 6496330374132355595694528691386601649487, .469101805957488918575132738875430223\ 2039688224779317071547526090585231056859133166852756558879872588237983508440819\ 0225415468649832544953657192480017712066182377123774231969703320440519554620970\ 8817924606179858806047368134384386163650520315050703757943745168271801468370609\ 8480997273787180193199608626654002693593173715680412691359596831439587578752159\ 1066727861371103067714308827078323653676543038360869835949595269673634013834205\ 3569073124016462588002866936347186226182243895691944483128040695314822718685686\ 43, .48371314500893556201679310334916622357362513724264605249167654615783189229\ 7787657342114419492956503879536916740953877356287883845513290402418850390075376\ 9022542776963667309429005841401971950086216096294799217269288416478944393052697\ 3612589845903271613934735005177251315225644956517036211032733260990935842407921\ 0737757735259778930101436498592015848675685274953761894977542297299123004679064\ 5125623763441852693769657463664583957498545766285775076976785557763470366991181\ 1014421237020690388369510556757071367616541, .499320249027861471146104348536067\ 1971124380384416762374755147047207183212486207892726225027057635592124117257317\ 4808452023564973804537193590594366832968764770334795515825387105780652879574408\ 5542896447541385517039102924644868300062496400504147244104355999976469163427256\ 4579066012527674893412810857829223165840020712863959898065010644260906357023361\ 4279145000924214119660367476562270145449039195343281928619699158443886424451014\ 4203318802004936710324701586226807406179562715510563148845584975224838114748403\ 17191, .43180339089219940160112027060143186693581985170021681429876570980238547\ 8787889222282343716267622012263246416238500814214969071329405256766733326742448\ 0386964145019947948134344265833750340755921996340104220519128191351583826559604\ 5690417562580568023866301332769327905585301897980642661192413815153592928189134\ 6346216599018526067123813391896107247300608061753006217928562612027988919278963\ 8066781821923647413796553737843512620600434321734854619469962213089619478472132\ 4302995318789889305159873556485483310907193991, .456648799035915521219719673449\ 2974722971782933040207003448246511467670735478336690310434243825655817936103223\ 6162617319752232217894988365685060424918778434183550772620578562729462933301447\ 3674550192946878621175328702873493324553462019108146951317206284784559758184505\ 0511071330730049876812624079704770991775099343423784086441795869047231365782307\ 5187981349483465422395308228405847006246672543332667725798616088534090657984010\ 9256694244652833370676084614384858524640587047809999933479676898662505725771096\ 49326348, .49139535401467437936511321751588344900986172721090952226935014292595\ 7589427522151974635270609625998738765897427340259703520697164560650462869312807\ 9605867594849898499047506173990290063189038915722305224303372509715941933483185\ 1182093882166397728516512637225033236206386812311212529376427718472628393458056\ 0094405056294387016150359748418969866285887068999593803408862026329050722262943\ 5690718370711040434279867672374512960593288804304698267317270866062194982688168\ 4160541784584057460407582744895735316686447710193, .499022247533752222591641529\ 5931501857512576164053586500993810309364526174049665213458416203668586600871060\ 4158140646433878989675451175543158168464494006937259928119155802715430984029877\ 5569092611377755407520841193245061245143899862459892779295677573578195366356858\ 8307252220391444664080849864170121208233211135746962890780213669748237192796672\ 9622273057060639988880352265285529027814198455062072621603165249948922592719067\ 3293721834266652775531045659102500127823353348462781411586112080898516412232447\ 73738017263, .43328361297352436138623871400437989145456825674196610221048856575\ 1520003307149146946896082679426671036912429730917068468549180220771633846637514\ 4773392074516255481544051201903120150825107695591881096352726984323833994849410\ 6818786198177499052812159211477680279292606704420396233162322911925120911180379\ 4784468977569684487749009694462416023594637086415585150112311393002302375792813\ 9669043759535347793776933779042552097975471305333470876705525029867841143841814\ 2035627479540316300909406741259324606488527393593592, .447465399806765020481282\ 8398716589686253456819629936176327220676962296183616712910974365016991261053169\ 5025110224449365597051563732123450902423330773520491709365010629231974187791869\ 8030530521318528726905142755085418795571185713719446832916396467085370446246581\ 3332929585563206787654894428478452120814091125409783271818978509893160128934944\ 2605654421450983920165883600621812042006661975550406127749474451183926984047796\ 5264186081290136404916266193526500512977450682716584655978871016988614220614190\ 53949967650502, .47181056295613640093055684802227628872252281237211783706726319\ 4120542046878144263202619956895190875398868891755066021329153963259924316814957\ 3559987785185256520738114813318253953706483115758572516634648164566373958195080\ 0159084235584457675244489916266235918323305997310383547954990106562421357049167\ 2521306066213361776489548867718360329732531483390870205106774105704507249515294\ 0565572254203467873205392037986735817100456136087996250193798197040830455669974\ 2982950651673054211031101794834206227737284679201073816, .481561907193361165698\ 1916663786625364550889348428436298693320519213532632510268027085652411395097790\ 5233047494709882570674789338347128580113906517856357634657579407141857845816663\ 0376725929805917690545226165829441031022063787544865784730803567848067114583505\ 4881988161050243555823730622411591887744143774241993878005906921392809031461026\ 2133940731661541151367895065586343581423213372583682599524443554675430353248202\ 9010856156466454570052358084920432913391360198776775027295220767444382721795347\ 49788987535444027, .49522903341043624717575823204143389215203472767175435998542\ 4670592946476769198133455861163061512189542629645516310941640411421620861782210\ 6206968636645491850192664911314095580710985267472288309368374974637590780237522\ 2799998586015431021021098604891554980502727885028231292941926870937924022020720\ 8910123202525633176991463603443132953875728563529725031845401826847215779349560\ 0946417948733720742949016306276816050071954625776582967469538641309123062578995\ 1731508080457748225891112954160898926744015674488101135690, .498793887984870924\ 9361242557337184316322062422346712506727842453238665028964442677937600979305189\ 2679789507996472612481438883332262279004318899286347669353256946728339539630363\ 9578790379286581292108842279166546448092161212694565998191252294021992776003462\ 6328605049152552992315396677243582774601414581414209390166985263694157795121530\ 4397889935897732953685780526125876851311847189079086493777227881852156479030739\ 7500324754413280958542869108328346482956145518320568311299209232851645758139058\ 89969795180626482680, .43511885339377518636583080415670659291752866790824419729\ 3179425699597109200851558543108824385041925028472250109344436140014325745583336\ 2018841393244128062883224270865477027409805232246637599432409288742585694117439\ 3165708740133243454357996468559023202728668073054778234063527635020440758166588\ 3053632567431485674997697530735560053252875344341801588672885356060212571515564\ 4643154531799107537085482437715815327105965712327156019281450738892845220158346\ 7488721673851911948476170370776501868544300125410285068737280, .464848434469062\ 1964965225984363628682908528590130323397162746818207777260585126632035449668210\ 1999885771243842179235983057983210400477533779830275628212994308639251101051132\ 1199976176846779949832194317088602929597215241461464342045081541604273382992965\ 7581694948866658671355147325466995207749470777012745561254925787781117353562097\ 2976761788826471191632819599782629505602511234977317478352980149389542452336516\ 1966860029618584172734766155699773790057709898829984548585253518978904346264188\ 10914073992114148943639, .48671262728802574635209998987558332517519722501702350\ 1727318943269119005684336116391495925412055867139632815161155893679713525802576\ 9023703232864849722974780585954559550977039003083894774407832501798973804381617\ 2394493300342843628870031442093077799346490485541998245155366451785476869975405\ 4596780590692732364384082090425553097655157470317203218917519031758968768299200\ 3382280298184377161783159155034869867600785997259327942514054763485010730038320\ 2416941523497866592108157557356168049283175407704835006422709712, .498475206078\ 0564844838909478642623965874774176055216316179957321939604456411761466096977630\ 2647887668091113202527424602658304005819788743260094505871558551312465971953196\ 7194229783144701753134583120211350441175395431666692036792382743932307936678754\ 6779977208511960411315081058347583172253592824148162005746677766408881843036823\ 2000054052844943111375664233880985778186512216578497983649998108573411016048920\ 3184953592282860986019672268705525592781964582839860992645376501783721714164171\ 93594862424765925630347712, .44052056403638073050109709629883523459112886185310\ 5192069705197019172977444483830465973340818900431940948582456396026818757244030\ 7755452297086920686823162216659484589283479702016210026737207686721700620849889\ 2313820207445791377137328833254821279920436551048338754918285489678022934896881\ 4977572945880475353753242253988377176801373055603109371004164478750210277494056\ 3036349800874369401955757020034827136497487422452250931894747564655043068035166\ 2998996006561770132524747914917075949279247253636722809527129446825, .497299648\ 2063331651242363909769746261609981994210871920892923059206113263302581544044556\ 1771265998132914599443632699944582723276134849254376421974775265204386324779555\ 0455912852392181387808985705547764533487487460044675367930092762665418649205414\ 4347475184104716874532795546015268220628710359023779293938724122128110921995793\ 3676722499985973375728990090130447705289767898936579576204755881447638925027191\ 4258264507983303161810130863560883168926890396287859038867920127826739975278831\ 48034839674871523209272486966, .44472414543847181013579196602896428832504800626\ 1869930501504787960971271198161800807812641817939641379658178983026151610807047\ 8103166658110472457229144385172882333929533543308557443186257867340909350666738\ 9806622296946950136144558542568161466990919157456568512795171530656633320679771\ 3747577905724485327526763200428980156564345766192653305433115906712631000946689\ 4923020353494263483742603992653510905488972231951894547827774443298202012591601\ 9834646580617033921978184938474014010247752039800307616602414905204453, .467427\ 3880753841486900800667472824632588426066860371204464647230988201084819863082788\ 6882291956009110712460328547948898457205457575293812994947532649191662786438822\ 7908040371192893489664809449481687590520448736085871109802911167833587529859392\ 0323655242641868950442109033959651714410987313104752825191114642140681041450586\ 5842643894833288371411496541172791456919974083274750120345181654399229041372829\ 4521970661965643017248847474516151324529461184110578697105819160042350094450507\ 60344929170674062418726985295336, .48494610998011592331241253779619107192820882\ 2945950401765704969514983871975026985456255537441821701220218440848071456520859\ 1299755002446294839053393242668517601442236409526402389800497985385934456924787\ 0336802704016762832505242689261626483173933829382461623746456237812683172082366\ 7379859730272612212545493494138965430813652368986487397174809914578447629059233\ 8567727595613031280864006678937176785130666826185096282398392192908246785225847\ 6247220240243989519802817834529279968410433845572303296332623789892728867, .496\ 1253927611645167376158660470436416484255554870896878058661409939578826708333243\ 7255373334064987948324588445707457384642913376992952248452612122984623696179585\ 3862656086169553149648379799351683115198030884969505102930725703503346755590687\ 9299738008641126133471214520733275070295440363849313686249561537644458727054373\ 4527615551856622834834533395195048564269610389415825285811986309152091000626927\ 8312770340746287003563274112460185417847852541828793762646815577249206205928122\ 93334403991612541786641817456969064, .45082031342453261999150807821860800138058\ 8801501338368235492521279247076442165700568436349415518108218159665526070464536\ 0648783000207714564184447509342568337321211465322094897384520370938130714362890\ 9088492744744508395872719089982056960059518696722889416074948764442786065477677\ 6972834213093007245654181059586387586729513650252643772760354576132910757545567\ 1137409317463155627731656434015578252031911060962475912473836681678784898360832\ 4213865537361023256859767867584288693077628195881033333324114075818130475332, .\ 4939829090131391827475082319380473454768735766938990677719641741666652559449557\ 0873596386668895526661028517116767469292226692591090267972751963720286717027025\ 5880181076202344874650861221263338625176089281683990565922406160735317958512701\ 7559396411721195808068298536374155301582879357206133971937387347754466215603924\ 7145495548930999201433108826953849080827913496076532890220513162306195544079236\ 0270699032855058580581826564521981192901808634360872939461374269003125886067714\ 68741275473113866622504264436755262473, .46037645146626247249826909086689933353\ 9458521732075812115874795134702509462502123056839535365765064879422995203055605\ 8706412236650216854106638961243810326795562341039360688902226575262692070718884\ 6330859454608744930912831758568582542095657444608721713729456012393946542175600\ 2113019396864427141334114573290855930713685264630891803823947699269588764806009\ 9161883016723603284060123406063072233230108494698079967510541119327507282370195\ 9261468066845655045348292097946887669664457970072343404408691581384678483307398 , .4894304160044324634331793730063206791121877144351471344354267238588613221365\ 9762904966073205598249536921224857575427595467016161925331804302671684014809958\ 7651672480013335714437235557039885172288725211423760246308066204897333606691437\ 8017294706905154845954375764989745229313387040270893987798130393981391407290706\ 6013611408136962858981359751668338013519986187701540941964342452256623279745494\ 8181937089585707279490936172770299729278773790064854801994827561143314275897109\ 24470946249141499113023923684340710206979, .47690929429468514652972965736235167\ 2396892913299231211788743643229694538716746328935130986849301269841777770554483\ 3277499566802888766746755559173019040921364355076005948335663751315503271975483\ 0371088215291774032222202959404875664913323940040561075205373010143970752382365\ 3461091141838786993186036184016719502205479516985441511899624396859731021173643\ 4489457840818903147727827729614232374470032431186764590769174765131867255097391\ 4419369015799204099356589438946084767828864274843402134586989328267701303432197\ 468, .4180336179440250228240823346537054356322252536790457263424099082740615442\ 6769991945943306496248404192072997039882712980054757308594017180366160623502062\ 3882830991729238017951409360781433201512239291931168455543850905706859234335525\ 5899046022972929024471536027065642733996905114816172449787382760309582537757373\ 8260294746752170041244524412528137413886006827050090691615496168115429777167902\ 8737916144582092622521779998516117233932004778846982974516928174224340327161378\ 33670261847424070131825287508818934259075451, .26147242391111505178229099548733\ 4212778953452965818661200800567431752024732380422091442726235144166197616812701\ 8390222517631587413985082464413799845993989960208109740793073742318748295942192\ 7006368098507803060463439939411072209145425649568751107320377264994623719788263\ 2751874853808108390772046621810956922451232942480662383920614023301358454628944\ 7842981403958777932064149051611763959339272727139983127611876914571293331763719\ 1227831029294884116292299159520175263367976534301725284067373991343222304158599\ 126123, .3412092008599046272626408487344504071686959015114157313753569131810138\ 5520070135791264423217370684471246457168559185745600612329119816631787676078682\ 6967564552296368521176792578994201772794508417676486352779073267718643760509027\ 0335686306072860259637595832956452842954681998334000450293917138096679770083352\ 0717691077890380848110764835194442107028570323652005532147267837553448264953496\ 9347185251289199979646348961679944517597775008304985736246169168356957149762230\ 93807465463969465025784897707235104591789519127, .18880430952581467051408141361\ 0752554188263431033182589222189006009039427827695352927305732119935608920656167\ 8922727948045537808607289466173095304540313060130093923460905071479833323474573\ 1466890406460279422522287627989010322829421431617258198868694996312213633085117\ 1357194445026719943366191206428696849514224068908199645119750262744864448664269\ 4060878239102772354119673109446956763030358009422433349617223770820585562661199\ 0942260820612450193404951180959460552081072817082785162835281823773747748407624\ 890007637], [-.3339445115898874710187208722870471176978910927049402481730187409461843476582\ 7321482502797067267073582829543586544961840994199109896365838777346196476920768\ 7572151864709353911417967105256142276708654033228527391585519883461549712923211\ 9782931208255295293138889420697119359597447810844200364768053469959574253223794\ 6716083112792646471016879983642938195105620541806045800379457174957277826304788\ 2207613957179351264420046051050948354651938941076498556199206795971732429839479\ 49271272885850551103482708303594443675268, -.4094967775407947711244383518401104\ 7221460706436062936214168046278530733483811674638576512621309366937194869324237\ 6998150578276420220778744750376358539915112074589889143167321279823161139868697\ 5858463130046562133360628101226364201067826650111211919736104581563925889010319\ 7839301038867014692882184368257562805054606328365790291192641723456891537222780\ 5374512892209101392948921551747312514094192672464817257341760371073464871191672\ 3403356454010584438717819770837389734495307199788565572272221879231507103835638\ 0614, -.44474409928776995935352315943496155170818318097208932106103391376735919\ 8225418683269693436302111738874407766034705171809095737926773414286340554388385\ 1032323377843628805612360770747981778990973156975297124910565767455841205847782\ 7611383032763749768718350031356743621631339926374610416182287384043217918350124\ 8650540303935497420840423158823496193666870899665879969573039513781037914930036\ 4743482521237588358589380309727069793713156817003992007088221654813114730494515\ 1754994544848087032423660792190833167819195670, -.49601982369659889196288009508\ 9100885549209563552786648201460623050291638201770568070063349091831546123183131\ 3470349365417882248909925167499895812230473831288267017342233280517163215814662\ 5991712269275512641968849728989898379681057745767091321011655506900077324668891\ 9955198624589058819151368577607700881563237503112973037509657626426054385789085\ 5183322477480923870457451910471186422041921950008375552026255306754297602189736\ 4479768369756662394153342379507779241834511500208727551538941712497348513943376\ 792109326, -.337733869970052654635918743891840322454604330343900257160135961829\ 9983648031552733783840556860731977829753400950072569088406409072798801125179160\ 9906126303305032373259600742766029497605522259672867529410008035784423937281726\ 3095339313875203861650037743672449471911960471362114877155472571930265013350072\ 7304085136274922589284746231772689296801024624272125181366643400883496395916952\ 6765502405115254935088001892724046568953787779596961782537091944793826144890480\ 586047426471134134092072187264679660346895203444808, -.383356798934595655689495\ 1867056777648821697545897874736305889574545016726494696005592258082500213509900\ 2924433505866466176361937650364760306788371028027141307324224427350052305007337\ 7952944464448132236023917592113146408994034165284836447568107377484322205436418\ 5256490472046086587690035745943898127889779282695428501565891660363796439016066\ 9813691019421575727044662534308294089930173005080204048260730327652784465494580\ 4890949002396033780463006600398820784673802101381684958794267674459393190677415\ 91065692507577, -.4667071725273946503901384557726863185916134033459269295434390\ 5020024961960567535995516517319949967966122832578379918067389027011989113508553\ 4628603003988159058559859314758400423359078728297389353992936801063168589341936\ 5944163277051750767937622514734898557477954958918453348458353492227814673138087\ 6688951011266433213530388058392132237111919865719173061177797592539882532921001\ 3498243661915203921910719814413946448875119070789763251336393965068541912244973\ 14280578821301895155703624198603866987917874764131947731, -.4945584817617775633\ 2849396006716763539236001747300335969844224912168257744533044837945595959886835\ 7721898991604550413921904421802014485917225372239903494056927623613859104264549\ 1431897434996698546887691056996741982163018117952533098589270821161943571903714\ 7035085879408325743934356922419167143041685814695235131559484639738715118214583\ 9827425370720162518797192412110366518172760308817921654604660912499317916250868\ 4352427046600762136622483172351002544839189750997114612454785087939362944791190\ 6257898787288838542, -.34026357409101297095299602819829006524593431137288812661\ 1359216685257435655050133290262082710293001020220300767185170099732310033265939\ 0052173136506442300828214095828521151074507278318991054196015791408949282272665\ 3747856841081190561561968032272947225696541025467669055275803358194984401169336\ 7819026106582523317729693688401093036737400542123131174722324078040620634655902\ 2658194298677092256905775655799810315662704090152398895877753605958051185806077\ 8682600546278184214274160997767084120160987792109667887743735, -.36563910741624\ 8328983898655134607719351490633167494674565594892561391467947710851359360385089\ 5267210529215000912602306657885091800571294511529017266250666620985070735038639\ 7772201594683027411373740563264322927866061909576676638529025440417738189180229\ 0488495087036095341432309325286204179861178969529477178264294964131727997097823\ 0164035560064963637047547150004719301250899718998678005837641339484773437412277\ 9767101611049033099483635423494438019663764894788926067774538275462270302199362\ 719936886139588798547441, -.415586556036750828448174779175473277346017995179296\ 4528758715957765271127554374503312182176504269565875660227530696615690153247835\ 2757924495977179003000276069974932723514145139060247956667200287246832961320893\ 2907882308960306624317107693388827163773622359117678339115767115637831976117121\ 9081050076774737092591272051764855013912856088094883878335841829743887974246272\ 9081376606484868981320380402949976352448979009681252910746063267886109728919874\ 728792772451536861032542810427524693443348275939156543153326121953, -.439124346\ 6689895949116487604497158620339507812002732676271975476150991878196825700190725\ 1243326905720375629850076423730624416085473070478118534151965382364022927488744\ 2387071552172227878680578017466351910511307854323482221531316488386114888603554\ 9617122933777798302565448876250110508255883080839240515518991802779728820716320\ 0199184166551459181784474413032926969720113276718067883838666574906547135384112\ 6614101943026408834329306068870122467444946896838403968976686503877913764978815\ 30278721423171858034328612186, -.4793890941002609670601962214852745569486435580\ 9312197463378799433636722754409126759019646616744584938351049726821901041950654\ 7534434292631156703353989884709515321030250100878160397443461451110153389462755\ 4560385739147099961515554151020702293074874174159502026565282261980733677401406\ 2999529710631959171939235124070286984871331038030284441794169836173148657909162\ 5506157087349749000558889498948356109639620930168436827990745253489768983695037\ 27561339301972274242540029034880411867788694346860680201496087030024903, -.4934\ 8887104419345789143315791269568147396038321451739827079712938498972208463796492\ 7953560560502779053954774083669804802849965028545981178607236401954154980004775\ 3686469250472909417236075684452042389616539094111824399117738761153454071625157\ 5471584522891050325992310987203828434607576750918530912248960289770341935826333\ 7860008975085782737602078133709731267833421929846141071998019872817292948172798\ 5330837304527500299282577093025856787016172759561005648548322248063384249772060\ 2644842128943071739325788811435228, -.34342906552393905378494704031234006967596\ 6153791309687045017393909214476225602545540516066266621422815103753349405610439\ 8933226784096888081289113321026861381126880199532304404569883077979984971458381\ 0155677683375838416475591042881628862370532065181740027142517321518838781510672\ 3997375820175363403548876076999192264553572559257370107900272547940568820396188\ 2655087100480454222258342654117371683492175223451585073375279184630937174231991\ 4148531891663429729411990371177898189977230349871414458981036340901123953823, -\ .400250400021558836000885990686616461221276746558934338684668194357746476686571\ 7013258449148464736184010345031313613836936228761319057968618028774740613017928\ 6575097066338444690829375766527039876093100009383348163120955942810259325096540\ 9376171601293080531036645965806552099995811721022944336972172909743972857921106\ 5102200317385662562661881504888531671523062126191313412889084190010257060597971\ 5311568500514400101377222520440087275978214605092375045795109654611908666711221\ 433859086820117811180151176864736767147, -.452919811187559748018776186809780408\ 7262929575499790732301446802745792557151653451135965510883925653825018539575534\ 1834026220835655531111286316293858274984534526995277690488350769647122115297430\ 5958611268471479079449416623016788021189245653919514497242252644714828325603050\ 0388367938181563965547638206423478278072994724315820959418229805166385682952920\ 0803134179853982100509141631974202807625678546151357857232052431870409181453258\ 0665113401166492030192959203291797037413467714978485995553459977703614825267459\ 34, -.4920518560058360540523928795275394030163301924772492734711344405719556709\ 9167027077287292937302729072845029845420461911667103686084930590452975633140797\ 5767194884518556819806180188588558641809268090826679491024989499015251670577957\ 0191809583471592475607692992660019804483910927526129553563048796493695276807230\ 3715097039496929615405063189760837868070002438278523783032206780487718394336847\ 3448942669708950016090700043384281537756178846014484998049279228932043141549935\ 46015746955649288084292143908802153164796134, -.3529419486046815648350015661065\ 1544903282054209760830526274009488109603627444443514824627898534194964574287572\ 5451953292689927107001767619957170561552035808242404537947375648642984120229126\ 9115008620978196942891999782670852909316327258767240263088627133338948971638402\ 6100823888694006978286221130378676774312301372307966217383837897568556433737558\ 5661339843464039084780696238471984761290801333915726108757461642692950776661519\ 6778285587795967041403288322492011899244551498189094770060711478831075173705085\ 7973587, -.48713917751532347257325281494249187881374369214114810108135413911168\ 9198047809920388199191966842548529471925822941843939146038445575751619303104521\ 4015383002976866020110068760988038857980905840296616379446905870463827714174907\ 6990284266155071925356372604003898250061023329842304086382876323366586649661697\ 4316310286846229491707025473745248363225626526366146299042307730522865541406874\ 5206326625106193570528203556517133159091975468664002888094945423869835760398767\ 2064017856421409510635619595902464601263289910807, -.36056084488025644275371525\ 4943014056244583811511293469800289589232621630395416929775142310715712201856604\ 6485515396334944328170167718561554792438537512572318355381018991413411560216089\ 4115760315540062135685423106493713595263343088489721386684214849476245591351876\ 8956425935589040700561306775546648963153322806413025016635859655147109842234016\ 4028266947978019868110147117624490336866890237711018358714296928055727966264631\ 8608875314862682650376348849632514226863553722916799108899068356164246160539486\ 607161240092, -.405812952191427317428670261685956274961800994686916834193121379\ 8201450364813006486155969338291969780101614185104580860727489468830203357220755\ 1278033446563184100755355408291685905231718075350000069182583677420820745356082\ 3390591081009955376558881665189207469969350680082943946163537213423088017031910\ 4169852550143992096951828865966511332162974716239701563415252674136807035557229\ 7657300309733358171276876855818416123763126628382117262411996517925790465543059\ 261434631384241584738435588882745324323340919312327588, -.448053130767723987512\ 6755894662476671657720328563056738686676408403878892946986648724916335709944311\ 8840270731001765477440638420289288110501376771603614875759149497856229608161297\ 8695319403288668774421950265937640053021577187470204188519258804126699064715542\ 8453998991945697579717945293414834745235145604290570434339952715083821557893353\ 1201687874274161798368238657080539593604012796725351400385619780149301958798856\ 5063846430079545413344953968785071415796095927326892091454537718461670437264965\ 43144425422064178, -.4826373222910463431242576018189102757563336999227044747428\ 4547441558215048371881517373584881924587907601271975269356110541654216735618395\ 4325989618605066760993242211444033885488694590429784204082232496875841971596709\ 7733167176517268800308954911990803203443589411058308926722436570375043209055449\ 2759592381776966483602785333553575226172127045150853643385040901150022779220955\ 9389182034721562739954451558670240719556392745906075609087262974166347312872586\ 82274858798100901012280924889870937278166090843684261078871, -.3719803933319981\ 2731357071194098623041946031216247053097426555581004462495060486602279754667469\ 9006382862879797830697114780910472511446095827484541830855782947195226939656640\ 9392376522238306314140676067928848846178147581477299121806754016760133182838045\ 3744953893980615749005018420485390962998691383507903314620098703919078823982151\ 4757640283680578958253565397256945442389787481507831849814268187451097132198371\ 2782855573941207548964163082685035341457547041364293019368416264285814661371270\ 9569501323965852832111, -.47507960642195140226264312557625899336029842515458506\ 1679807871591540988350606327060498242122159253917054963412201720601057526417417\ 9028480829384514017595995962848502756874304668936731113485050644333338772035200\ 7399440400764962106486730395962846808624006920933348992129677796952092453025839\ 3018915920479695607515367024376487518027994793887629786643523019478619779821685\ 4426655349388307001587074819988880497934224004829004088849683468860137550437279\ 9605155454368866864477672443918089012864207304087415863406776687, -.39089724379\ 9689064221100740744971113279534138948375088297943192061030534931492461075930612\ 9301791064535992552721046209374035517958467502547424609247331734817403633829416\ 6846383051679187441276753190541884572282548840841618580383030371069161407990170\ 5516046923989930892392805862234507070013075965933626249366377162627625380931187\ 3482953897070879748779182883372934442192038750110569278352831777722948679978784\ 8181317204171367591602366011369544942140364009136456800087513412281475832100262\ 368696363472344875251789802, -.460742972552173758466551071530451661327893720610\ 9005361489492076635094383185671457187602582213641695706065248696346729673692293\ 2996348737002357333385338431350855733661040665462535443524944131827440541123700\ 9625969571723402324144654221079578606038098783917008209395514118501584010415991\ 0388944490009602748606025807956510776094329171608433204989295066144702421049880\ 6507421836402665269564981520342922115219165243815474181033199894211664522891300\ 272984405030543963778624404081523603197941015034666745011053472117021, -.427542\ 1858572107235181485844264062149497598058088990939559904957383576115465145386637\ 0006993637183955517430282394609493060292151763509661525348078916169435853835967\ 7687172947524402213930301425297441225014352462663668818742203957434429829657499\ 1411204355177674614829614219034111915860159909067488027690489137341273205537777\ 2601979335794728904602855457749071890512336360252250784415501983757918996376835\ 7158545047026035021024566305619533366565037094713631907921224245175860406226606\ 61095618889786771204946369878005, -.3151233728237211299975394592786192026453159\ 7499846397464538047858704561327851704835503472292676192845835913081202739950719\ 7021949289432764788394896336684260436235921801264985173738513171001813761145379\ 7046624119362138379645438432062996761146759414392306526970985670203644961289163\ 1869324590618996121429471573912652451073611597890815283594455683037323701118197\ 8170259811930558259393959325568637810890847912208607586894298874610088698796883\ 54391691608095262697061645164758844315238781451804313695089240598027796191, -.1\ 2885188506754908240743730208672978009135835813270707258434576694123869716090975\ 6547525033736598097614829544950208324018346647830449786718253703567728464941369\ 4359316385686427280072202735525635058208307326677436716280646529173712224324459\ 0071760958293367308800168518199195319551837730824872613930820586002456055367749\ 0429743973599324528399354278082864175551145928393268913684913577078288054676421\ 9204663610679468303053809111015493272857002035761500984945779244186344208221273\ 2473224485721645933694174124336394492, -.21097296745959972195971990921781647447\ 8587042086233140163197079061421571678401149546140969179778002193006626952366410\ 3335834524888601893641663631171800153906036975919350319100493047604630105656073\ 8697230507133308639603696535727191308543494385729622411678786651208064124463179\ 7942806217149357845434723322818067072669173844128563544944082739193549506361056\ 6059006307652469192076726559424535945809444887488572463292631763948637519397377\ 6849117601086137872752981072257335451207989933379675929812027431065916233068017 , -.704713254464649371787921479609538710832327131698719935155246965199363843691\ 2821792322522927621298810639031199295262489462729324978951513684260673158212252\ 3491774325071133619838865885001067089178095012243754785106323369222783934193236\ 6130629692538531673508887909657180774799460589689873427692639767939436656662641\ 6637064689294216888208186903916644258476574276193601976483026574653957682816016\ 5924198067757443265185439439156411913350168446145871106026890989962320515282055\ 858927606528985380231016925666619946401075e-1], [-.2004655106898603225708264158236938808792154101253448567736475561483609761697\ 3103060373985903718486871069229886099451636054011854362047245487821850036022143\ 8946983079901451847056173079939514178646338114125631753363429706165296748338921\ 5672126494311131241748927656569978743480195058605024261319006681298296232498016\ 4482025931831737436460194265548050621471537950605980573680984773085212911605463\ 8028543357104811431417853869878488966733713814291873713703386933949533253484786\ 25179088210158979372601535101606531283944, -.5234395368107257429220236461979273\ 2227896073053602805563279927534650564121293438160691927131668917142346184900629\ 3552068339084560921804506114586381357974753973826634152225197558806995783422804\ 1305112127586399270457673997681590907190099786912701535229333234166297500843250\ 7532607806609203157807454615155857745601365568560432850859467621234364418058151\ 8732855573167483110106786510176054507978858817787854819708858784411486349878080\ 8540893897032394918504242885345726589746090120954148949564822534570953621545499\ 9513, -.86986857346196153339435932462502537463829966112714427222731045409847797\ 0222394775866636836118839930652467244383634277349715939698253168418221984087263\ 1614406519732786584712789573363096072427993590893982779561880472592938988404993\ 3946954545754941213795972989052429614983186174383328620893556801938755366867569\ 9931182310202790601673861326355596970842662798735330272750186269154144020090873\ 7671201951747258990164846437739458397591416657678657538838050108029410133248605\ 4589628500165587393103731351070571016972129346, -5.3290552903577860053402331532\ 5598670235818268064576122133246964217382117481393019766034162318995865598468827\ 9497227783114140817233860103714133961824948536583921793754578624109833151744025\ 4494347388540060776307853749102328004525951282674778291385356564506510265416672\ 8411831270255442832767325594832789197071757553693060083260609303510714226664600\ 3964666032371976029379400699418967029383932672950474934698371654141828016054818\ 2859008821029123660005434726157094596320809976294018217422429793538859347566654\ 424482151, -.210865542948853587744560693734742094512555269655151063332050633605\ 9246065244386143161076375640292188373695520158649613265902036398070141816459125\ 9687252630512649597901056378478551001445152488806962126638705654689801434906300\ 4773269656209711981029752991863050776052931825504968346150736202673433898653044\ 2576688672553821641602193093928752646681466774484419579443203791514837824549694\ 6735216573197513538358145690233842503605847850211289526082169760833288694897673\ 754978947539138051043605316400053647170956742259813, -.375717233870517099729884\ 1683489557752006906020127058347347328535924318833950514996473029036858419438415\ 7159138405884444619480696602993417418369250630354638165823135320621290729159952\ 7399382338208177583681742523187587525937380153856065959755969387046859839222430\ 2788047451823745740547304474295752080882571744188182186711885329663298285798454\ 1988866048507188581735824841773844709978206290806923147010597595141453032934374\ 6842987108523960527533862119505497223021695490038740926117697375129555420136679\ 28326455273402, -1.325973785860411973523054860193143400364493794870794318918144\ 7614741907767514669020979368702903096996118737580438575399444049508354366209565\ 3363729527612501264836882244279757776702289641540446070764435526593190019721216\ 5673939731864681578035285810958254835362971997686483353633447457312780618698264\ 9286833235184049764820761429924706393361477333167809942430687467921737698185467\ 3064294591178844748249367544279557125351265705024638941465483351661768531270000\ 54134079652704683724321121031595950112304707672600925081, -4.418295381506200045\ 1239585051735167746511253125615858636695393658189181879147473313400675306509905\ 0323469766595999705022604711499498144894192500246997543585191072282366299061752\ 8641096372070763819914319594294700174396826523932530382493218493379743510701845\ 0337113352123087832673567293409836107109205383384917825196660656168373223522740\ 3388744062568293111624039905623033089742371911869887510710468016134613358983349\ 7846074468281863593503974909673907819549487945526455254801094690652897991515696\ 4148942920392047678, -.21802915027865070610588009151765169718408350789518667698\ 1548653857772774535696897076313285104202780710065072423507316333917013169905380\ 8066364472077370997988582159699991970420780795624128558336729379475718370738862\ 0220103271201765969164237103706190139250148420326694103842131344529051996596317\ 0541720996903649376216405160418437824432614584831514080443692203353255030490185\ 4815153507354830182679144056321740252789743422423518494722834980877432528194140\ 6258537240044006930533219036841626626115195269133733383028788, -.30140626438694\ 9044919694364826122964164905391716018499077246700015541773009310492404021954448\ 6189520236954111968395763710220305007916588145934947747636108288808845477750524\ 5362755396989411477438447553934488674844198515310976947570188128175407512807883\ 9200195257943521198811948202349244596086610053810698206825640034015176759243947\ 9444406217599976458254313205251244862770712029856619465215326681934282317938970\ 7874422388123052678277517558686157590114610004467465080994629407354533964925967\ 795203702632117240060155, -.567389023984293409779513111109830058181492005848687\ 3014323047910891983306531710955446714625291048751983668670355176373934897678945\ 8341692742100036871787309963429247772303529315600260620500142122381921109648539\ 1500841263216343567653700155915784648287658240276496415453282246848190462374695\ 2764307780283502964939442946900182357282359585732060256802210042318119401658347\ 1485054517547311690016055985607759709497712896105484791278098214851713185111671\ 710430786572029573091590199120167043730592737455493784099420980677, -.795057548\ 1352809601779043430224174172901388893326846983245512432590162270296369671170806\ 4101022990993717791277458820948342968001819577173784704615802412361014693987916\ 3650927305899553399920839336336829688202040107700131607614504291513254867925293\ 0973720580162400147028342227209843062738169736637488077448851788364033690424270\ 7486186281840035992527308546031125432040300542373788026583290520735078859363300\ 4396164445579003187359654389288583189636896533544894392403741419253378931941357\ 16142232191603146668819087924, -1.881036510121169478389270305085569196533115566\ 5341906912685613327864227048106892085928097482805207757995805509021949403068052\ 3422832501928216762627517214653714934049486902183460468647517451896145479137025\ 9858457355114290880022738714252748869890285354542905901415408324898050837676418\ 6358121481142054686188012195458697320930777913973375466840385940741632117576152\ 9724342962292055086577335098507717985118274577441947725776093229326853015271888\ 66969332703085544473740413225843390837375898112652099031622378429239335, -3.961\ 5352462214760594057500215228004701370241379003153042692424570110146426182779863\ 8901514637253788933432249850900772561322312529672245140752778220492281860749026\ 7968112657461098822893457279089764582742727964973711113194293987691431633355590\ 2741173113605336753131984600109106658080514771592013478352195112785032843608469\ 5255933511040314338557644791056318762443226666941020201319678088603709227355347\ 0281191983251089984866348638699281623267167865368510379954940789146440061540751\ 9974270725262410337318832020101993, -.22725373546526670499896641355788653821335\ 1166819478412251514068073815511426669619271893927478051435092840935498743805157\ 4569557095715070723655671938251178571711033084922800486479698424192816115610087\ 4100146669755377745363683158143761317539838892142188356751305159072850463666817\ 0028653223482125703589567174406773163072728028883937708202262009502670206547423\ 7616488479273043054190883342190728958875036958129706137086083473672358269085973\ 8750310562756541827959858981164328818763615127539854649825083838511011277408, -\ .464558343452902666298232875777754031243046403908101276122008365565513249735682\ 6014905635747702279331702260721148370296281888732798372233999972803623005202811\ 6247441590439334271878255914447046051389161795450419680941327744040998666191069\ 6315037307752658071406560008552666606902744446468368073186264453494958989141136\ 0473756455696895310799976041886318192481425728868546065740369099189123151929841\ 7970308389336478832165646156423211207907328690120634549326765649990941078044331\ 414678123115494607089885275981468602298, -1.00170380188384710623265975853126375\ 0184447072159998379983051793061491515746485275121956484351286015978458946881163\ 3489378462501073641462922726998986556229382098805158582368408337759334663570618\ 1533370804628883895263901854112480469852501535375636141172800256965531956012452\ 6844982599812951516054616419157075177500731028658495272237672714528458770830620\ 3867680994617377262122259953804043247428505035617317803415917136891853333413510\ 2955988384667969283696145830813032340833616627271912543145514801485965135435797\ 82, -3.503480501403731858982007472648703898200640775077737909849708881585991001\ 6116802870260351969083384834735787931849616486328274373823661329749076187400965\ 9842738165731411074129913968126357865711942677454385134917774410714536061835481\ 0789637699322076593954836038247662816325707809241237127666693470866060559522014\ 1337386595793130067845471520103767947827685863697749830638882520791850464320722\ 2084954180159002884332797470696587898712161924118140937605918920574822528301622\ 63454949856410820729830459392788775485683688, -.2568569418445929594024127443253\ 4940034063436075660464845662147725976251751606435393829517872220360369394580731\ 0955193158854016663299980694249511914119760837181098937948084187449973785531737\ 1680406030035920845436338088922320846996621715672483629113312106444794014320679\ 4577585558677424222528953048537533705518142709189896395454164111135949501952365\ 6729535457742126139519999791608370942485068244442403578942541009135016344916480\ 0409712199980656301885042394302477360199994870592764332785600761451147290569928\ 4247261, -2.5814756788605072967601070953015398295865512911599476724359809389640\ 3972133225526126500185066324367240096051754390156263689612645840157005654562953\ 7473278386174600418781836984702942615651159692000076972295663880442179119734428\ 8077587410569910946141711375482064538500804988834280744196771286439502628644995\ 7772166760190867071798507154476619506040081029289595086732970981978591178226502\ 0009793452058160396451619616650956284674640378938951200195038925367701450875817\ 1548301665252468021936488184236182162769755784580, -.28283105666409421227736017\ 1798945597250347663249084585754463941221021013410642401045761957180972180422202\ 8086210492318006861850463877312089478022355812517888795443777762938181899300780\ 3760800149409651581302603093015244806988897675800929091788305351000338131748910\ 6166668130165544580694624690038233114353916425912164134605775781046106426771366\ 4283827395971489546200831644243708673105392508080504059692229849035426366659998\ 6096259154929697885864441278099206076888169521592352107470447541166928289315624\ 255231140980, -.498943654857836011542989848830735715476944428983030469976619810\ 6866774666951450512956918751858499519487436617122216024401835890990920603821282\ 8132795426222760183565746175314022655219865681495830410667206090646401541020007\ 8529719305584624049278695416541182030667983220971537890760934890148425007521791\ 2556175233592368596116034649904837104231203430303989041062890843288732653587915\ 1057899132921202850212445836243046715653361524068889321908172111655258967408502\ 955810485241622633130351730951700029432148137333349462, -.919473216008081525285\ 1322860147518831964454563536905350752987925575254894909237335750891462178022683\ 7972491760066561806494686240399450103895182042180120147893247472366384772070787\ 1457671744191270441803336667323902844954129337410468216293611601278461673331017\ 7464776547978881878863321060862265278049152922369660680484389532411262606411645\ 6119557612967859783812395361903619720087633727881422434192267232882943732466101\ 1473356615300065136495042120338018243655628456026248560861885449930504942759711\ 80738141602603771, -2.115753113951026890473238917377863475853411646484462964532\ 1182392068169429100356143464836982342293184795828307031219147873806888288262255\ 8150642390529949634700035243161517966397392896826734116721342083559574330867790\ 7791597972415794083432036928092433870356491562324894368660238915390945017985179\ 7638087526011920179913178890816025543365815861933104985385414609780852220761222\ 9501217241347116218393989646565780775917062692737410470544102635457072975538625\ 57531964561045796721928940865180656520786613833508089335551, -.3261843725465227\ 5603700797198499572936865918140296715119021424158197061763115897964636218144284\ 8636658922117829518377336394866730202248755549758707659478392514619502718900809\ 6420520111680233566716604703689970826463679365173248068680566542791985723129712\ 9172609157818799252968967061982476774145437363325349992796001248637820452659232\ 1524818436655649474879353992619591832830234748274094332083663041566614926458129\ 5069566603466284569026867793639122326513307578421576372568426563811560528276668\ 5324985022383185876046, -1.6446428246847234476848817829215953404933748850984199\ 4304743869502412821973946519249028713519572169129745875852089858918694216663216\ 1392762272499721951373515201514689588968579305064442203081293870620283006411838\ 5609867238982118579042823488475223789607578061217103437980988750463181419567098\ 1353944237138187038452759758878240844358167340195417855459866004878542185793729\ 6557812745973422364754280268725113071969898156381638637341026866810430551741756\ 3026461177067792282498036713322672381676238425627009213835037973, -.41279888691\ 1879907197810338449030721199619025508426801950493353649996643502420884089469784\ 9815016755983935742812310634142576356040760230204308270875723423570434280657592\ 0022112851808487000076776119845459180414832528236059388397088038543591318097156\ 5646374287740424298891766339384980209516866855543009406112918705620923322084966\ 2097051878488219896202496371136134574591688403048631722956027479289950028442290\ 5227169625917764781394968984008514638759420706058106816155862027945892774737487\ 673955058947786600508634139, -1.16468031559742810031603825068544994693389900750\ 5598560974036504310685287810746720586135821872732701174173534304332140845908527\ 4316352193373964601106003716611776594030403564327042111862165785456965450680877\ 3082411375654691072701403849115356424667467082560692990340166173115448643651023\ 6178803850022332519809519585356990643768390564131671827425436300233116637239722\ 2810351747194955542773649486940837173421730431003353312832032346934308225125847\ 219726819632500448501902874099904193829374552355881317345578710144238, -.669203\ 2999321996314332156672856756031493384328085800292989369325877635120881093221661\ 3382419511457486154346605984044755642384951806106339763791963210183260110624715\ 3424972322125452215339116832069223502371287034264350797456498540544334361128988\ 2575450651360241213000854604585810018370255464431323662892456321234716048295356\ 4035946260356735832726045973365330596410562417838482570017467029305992994621281\ 8244867012995018942611834742477441401565162217867541506774594641464853472490208\ 73357976222012716701141138266591, -.1540594170623727925882163626234348855280114\ 1806167536017083544443082268147539326037813214238899083298977441512535978104355\ 5375581491722921671771436608768219435437818535568148899136740273291605970852604\ 1832686243062211541932400854376638580807877315442439599886677939056810666853237\ 7130199552873846517595247714658962667663010660992362220516101606090655898776555\ 9103495980570318629331682979407498638231544947267659950352654857324513972380360\ 92117637904784515302642172872786097945489408746320314561802695546688153532, .50\ 9610294100967901469316159841761862310934073735909122277343330890086875803017239\ 5401907203970958215519996873365356811548906195134672077032331055169583122099379\ 7175975493757768220407083108800751949352502747074355280870387233746083784212124\ 9034470135560879078642520018462956318777529102113690671744635967848095154723438\ 1066177785070313003393160328254678440291256116047199477942782326978187478401004\ 0119621950344706104657241644632706552185642397161374901663931117902906173552082\ 151794535289774766401359023897545169e-1, .6421462590684817007930764720325492989\ 3110045970056954196021359475492748476600364385450978539690775926282111888534694\ 0186367954530289697307526131875612526751663527260268508504906096575229047919162\ 4502917290832830490294714741381478721692109132704762646635844618716077986357116\ 2398643072612201665388508070986041465381214933705923480090704659979866688000364\ 2217074476990343320284089739010226708776398954462804400187070242532185551011947\ 6700033859209520585641622865055937854801395182741140026469386484520627526051470\ 4e-3, .594054025614880022082102483713171918977376021949565779213810379661899525\ 9838829070447922532977610249301901996067796043001357657582923853995363888200206\ 2703606262927747080044346177141564648193789880219684171238284068048395192575762\ 8087810051209176104775071759950369800848033856783872282607544415014843860295016\ 3679511873221915034943673857016427115747344611415324756678192831283851174613203\ 7664692767285433449709435935961422525291293263213967591353996260451636411279830\ 933496518729622431419404830921182737481509568e-1], [1.4481088005943950298170141118383268864069956178297476494060241672992908135439\ 2431710683353778912310728901713428493276188339108940562393729394972557762931584\ 7905688851824774942312837701939200199428987705275280417365466043508250248300596\ 4996397735922107800770577781693291485676001347693500460683123016593975361902749\ 1820505524048487599976665353529801393007571508341050550378784869240049465045154\ 9056132796609175094879171633120943588586442229205905645266610470115751266961342\ 4678419925707548410519536983725415822001, 3.70313887138267997701857168727712012\ 1403625674780449202005534345526609281741961016330416380382139727306711765318071\ 7105841720747203792823862035638640624551845885233086280512208013865330459483068\ 9195808859710103615821339987648484742459510380579388187965085499288381109804824\ 8098356984032518477488658060415283858544084925750234407689659262172388108126647\ 3457723532173709535192220659756982810509732098343207797053405084645036352672362\ 2047933582506350619000095456605699840877400478879574284855921981121855613282740\ 68, 7.3096474415602952183053162870716297162962339056477453730272474328954814538\ 5424154575360138568777891696236674407919083827655298528191061411773893525419189\ 2004575486210466274555637171286011666621651200555992372434140030041067820455216\ 5806415917638550849305880470717186686667324191164217948546569016094227879257537\ 4213003988097273220897992196400110434586841133884366621869899017323093823250323\ 1536562534875880624619914701114790437744194996061968083200216474849961846927769\ 9705168313471985202643934840425743492080795, 183.344642446350591283935128245119\ 0289758938269140227723924842456959446380485345301231324992277446989529200290746\ 5687993973401349429910844688516217636956514594793063346261502292282894063152452\ 4435144731970036977366062157326781677160952813493137528380309416082442346210691\ 5092676869241644376975395329222735481310654051383859008018957334489057685932428\ 7169419865453047596575746296414328422542466893083504800595382148658531575013951\ 3537968486364372666310440248705667963390199528659757540401326077094824318901165\ 24432, 1.5060990120279388344791071103451121552425738953871894981023801890372057\ 8335051489381278490544583941335178804422941451929137942655159455110156309625405\ 9794599834268088461778368372121259209878161968172936936524995169225620913493522\ 7049757222228640593103423679742909689676496979716359742395203597078008025979833\ 5063877841520744771318403369693006243647763596018570798156358230865789945754607\ 2844319830735629257170109436059634265955387486031927313016633305717882220087465\ 7759108868034103644286640439187455279482631417, 2.54957984186095337896187737994\ 0020059304145156358908223332146483205193454259346284868096160806299244532241994\ 3560526304409161025673300281341975860665696615148793374941166248716103770736776\ 7379563121717243319959448245425234325095707197307108898189855362429406003440803\ 0680447842186875484863804381513524590336263293095581618989720787749299582597475\ 4723094213303183747419412573087043053243619552720848220765543662196508454534370\ 0588958537735091994147092650967075715980056861828232334841552568187903424799850\ 83004431, 14.132239737672676241735186441836319699567566600617554815124102451678\ 7509610900867414102917673458124803144065604793276288286711283169209992321774587\ 7649031000365612153084509912848699923282636123812357388563227725264702575843153\ 1226450262095517786769402722291665908419311033543754139292390561382000918190705\ 4383820828704709769317115839077171017773331291360959627842677651055025761221353\ 3218580080751440955692375663419931257546808201577803864795137346838274123568808\ 2579899154422934057433710417059394879284417863641, 127.321432528152772261476318\ 7954697795319111762387099666440017839136636049796099015278290855798053387911443\ 1963584993629103728546559292743977489372648549544294467407830742600269298508407\ 9556503350874942354725732035562149693246660149223244778141661319943696654284132\ 0923319194193521873934744556272261912865637610146040300130912019145516278034406\ 3526205680983460393044558649857224489203250039441432042821980653083715364199629\ 6598000130504490962737146542985689781297594655917202292025512586617227027887301\ 39338949464, 1.5465482670880727129309263208329627014037440596077283376658547397\ 6227705970637650846436393334328237433552522954133744112866449164504249609297506\ 9773807491530302190079920152832480611737213600980417026213210050938418171904226\ 4542119123439315024334489720682201374217540653706719907267032225781331000985801\ 4224529529560664346641491892595513117319566660540711287313418017275502906315901\ 4082245877715536692160743277956633929472186077788737874319701394349073506479513\ 8519448591682490850951198350320449346540668004589677, 2.04915271473955342684016\ 6295589824063138222935064251738652301816318196335980262082177145551497629033867\ 0924919985092949323483746905694934038716286776808720019145112894745570116428895\ 7294171221708520482636019282725598354116745302085462591166123629202674916873744\ 7583492156857916143020599310116903701577200336806767312016151903578254864486426\ 3241554205058392485006067250666045463663611655325316187006272929727650675127980\ 8716092805222124203191034739677725799250396664754020393172945328524197507909909\ 55820633769829, 4.0891105115811694646293462470558112820405983457448896812281783\ 6311052232020024550746331071497290794015557132094929684992405327765001823102358\ 4334547444275447539295766971765120950090037575756495729747533293963431532767234\ 7923807064273934733329703347330121614318040019547961642973524108895959547720232\ 2423911597139455265452995582690751285867739321791347067291005223864534153500140\ 2451127175249717686515554408541091721501803541719496458361022417396472516651331\ 2770159201999050320644520045825297552222365176623951457, 6.41921771950149350975\ 2708684703643425574749853076850087886062729971983078434235445024608676967268656\ 4392853568087671399981086948598654878850479585269481645322943474616390428567308\ 6396045334118843641319771755183925298618131956126065717881198774323099435988935\ 8032524612698238799742363477140597409857372298923270191416241906474310460595238\ 1604381985584425167526799110084757560252128585053465903674353674379421154654564\ 0374923774181504549144921414953714363778792481579510205245767808397286400705648\ 56045149990964548, 25.773774618222498483406254395059298792827279884339613654023\ 3752677749016854339260701962918596169532771133286741748007022151402493637161810\ 3587848440922765130859048704636319102779796252627663916798252468346854046199234\ 1039720059273389063732897178234157367805608779824741795439615500610656934487944\ 6448670107176863355819665205507842004535490968795137878621024481382595786456811\ 1071733757286463947626763890488986675945703550741061681472272474649185875141038\ 1667737856248854901383020668982253563399880337661593011168, 103.129392970615038\ 2487221659231094086300214048452822993962554561079106747801457852819652892970678\ 8519277082619112821685946324171944966034502319902994153108123093111426666191628\ 6005580193487123252264086151824279255615919170251084338718670766670142346084593\ 3532697130198086054131726326400607990217368044144307195125715197498032385325969\ 9407864776292344040305484654798628188883012528607278081406561089838464922543607\ 1265314958284319429193912683421516080068661011772002911083859644055332165948513\ 40648178843725931811, 1.5992506883035138798301424365250256082237252737372711266\ 4451581868708241362649493264669560005386525035283321363479158322450868842268460\ 3612407056841568014290402295279218346989099915415251549693680550164701663935970\ 3256359046598911097014126653184939822958688078963698835109145176318851625034985\ 7596130346208846529795116074584702945816740292765447844060492591716065942854352\ 2439766100784366898569131728448260746562389107233791971214701819907248013450759\ 9507693103531713471295961232872864248519780595028818133386286, 3.21720045945933\ 7200733393536362221481830331461269000110333315070280675783076068986949032840662\ 8580674874768391327481956066884242451056116660140921017541127310974869621272369\ 1019820449918950118396501911653684989030176065794062193907438274583340934763177\ 4463040212731068230437626765732406964555105030215422359071683625262323993267538\ 8196413096327407778980291742041197073504241367613094621578723713932124957875308\ 7345360259253291104511922157541368406762484611023463981466366662619935652278052\ 68499792889886198133264, 9.0333802147946817398969805446591760436798721936285886\ 6493262081734307933081555895619750770694320367104836399521107821120334214971284\ 6518544593539257524878006841814207072572348462140264910323354906470094140899026\ 8731969752982522449455339032585181205330965928166481386343496138440293689258054\ 9688761141533870180513988869497852438050412419177890527197350061919448070980746\ 2765798760058619355999747056341274024758687261116574395665066461481093820489712\ 4210814368996542060288752052270472974527190054147623412496879563, 81.4836673236\ 8884524274819835064640133877621945327505818037787956453053026955005123069161065\ 3671647018338563894215556775093872139687628714727405657520778993824053201572262\ 5029774328455132434859078922481863421009021638991270349990835108141307821373908\ 5322173640313814840177049230485768518440924087555411100047884123124000253641546\ 5456400947252780642788070646448741235933765280987858518224746400511831954387912\ 4782232867972530394010933023491918344709844235972664534896237734020837075211243\ 14265213046222641361291423, 1.7731701692479755052736729843325646142293164907187\ 5390576936338398656153586676998258930196982317084368211872507095890527308566187\ 2769531376067910728387716251348908262767414976538883127990833398508933150183884\ 6272458973674327805833275921403301896957402397275283316576935684234868661243911\ 7302049326242827051015979390691428830585746422870212943676745640028431223864322\ 9193842502541280456411907337158802462871464924395957458754065147157087329062057\ 4897630091803449844040548033584154159016212940146119431084866183964, 45.8307448\ 2121416527995246995442457002458694857195369468144832450509189570237821691824593\ 5212882405446027497379480679926079919887651685074133078281081010040205091316034\ 0353383151841830875499918588575606409756152827171667488512342353047665005464952\ 9310041189390541692298081766336141345993780637446450394293141212177087994642478\ 6320130611952494214710602460742941026116963768595098849551433870410820663893457\ 8941403527501636312987005707053017165941828829962095539245597392168752209998267\ 23570805403946790737789483386, 1.9319535149527589720430145428636991881639641869\ 6421582213024029587462731417921705340659000886786746372050794857698322079885013\ 9993925863886518578240609988260282857252336691376103589645074148130955021809537\ 3228661538396600284342911574973206907044995204418201448308828089944629111456424\ 4971946153555259639875077593418731427781282225516147588462323133785237397598534\ 4415732087374764989875893441007043654116471749251364335653516128928983386872193\ 4354420760271226660276932669539721038277448525786034220298209305505125, 3.49668\ 3754258354054869713424049396063625210927584028944755134343536692184460921799624\ 9049816816603030807531905656889795210470356528679079380457298040071061564172498\ 0683096510930005002935429353889389164439179831650985298540246708979964997610107\ 2966667474535274285427240224112365623066793417898089417262833559941011662863427\ 8965811559372407933307209154458759263595107808511165306939558111620150134246062\ 5673411921780101782198957377750194042300960447140645464153751552389899279926608\ 71429552113649820820163873566441, 7.9349242615874671496086286636605593173595047\ 0172160514621891842007852464500255297593465138342748737305448230777598464203320\ 1106122506216400096603879789918071017422341699932712118219025219937283413754399\ 0362793087931132641998874300336487432676309952727385437654729993617976599809128\ 8446283672959791139006995067331527392959811302860561553247064497778308092415812\ 6202384943861538087622016159654973003721893109023256071170264047256259257505058\ 0263874056983691304102972242534247498522488405690231199196158035429702985, 31.8\ 2310098608961388865736080886113038913007275924422660136053475787238305568674871\ 9943612080345009401253075662746972841888399267428046739006391870764239796858343\ 3751850863014327541640317007583224668317412445748078498436501332657902716025212\ 5184329244465680792921747341960668920703950132215722878806206129500606942280033\ 0607193425070935920846856543191088865768956808722960167733768374385022286488031\ 7589046372972548974113384226389911012233023849456891392579724824238260118901619\ 10135956013006482057237306742091690, 2.2103318244038177555096484177080977614289\ 8796175242675192521385418150585737641222127636201542399677027675533621012225592\ 1212593487388857520899249477407244844164315210024101171162173061030732192605692\ 6514778630961579663548063478502209679243325446068564810204817464348715039264463\ 6139464444207174417333285648623689924367380387142200847700492784946556311501487\ 7883141510467583145862206983973270995003478822490295825762109441313056427648583\ 5770293537778140386057982718269614810166499942292098044409719370974008249607, 20.3606108848639382459478057398851407979911017270612946713949714223010531464622\ 6279913552131179504638564854101981550501229140222450311664161705237854431729713\ 1962014099215442689375502464025250535944072753440020471184762119709110809819778\ 8796033253577106578269054426120881561325884113306419530883875113616322620934204\ 7182537473531892730995744557864668032212338012780764708445384866223337893740291\ 0556300669183618261786357387326072247522126990705054567725832473104905221385684\ 676502186914637163267603069356237321903, 2.818835898236985666722719542417602965\ 9765327543855446155635308598643433079287157358987646644871733276486650130065769\ 2338299625338572386281625608037560826529739523118228865588470534576621336954032\ 6967656315510318938053032691487132747212925977649115160132526629054953671785826\ 2733755508088410398453699831595964365542447977811894247308479596593502652928424\ 4049416125288914457517006029535342006945581169896723096243250110961334986616369\ 3096871953629501645479441556887253202026206206969958157651540826702237460887704\ 4, 11.4417220762269142948365798490025557541598534851248826834496232441474835948\ 3179031286802191257042753544239835013900443027597028795555700496887082471675160\ 1662768888639950083216021200567673997705669735183917051088497289792195259256231\ 9519477445695083446144006497464216753437376010659795403513281116105681651041508\ 0616415378276977403141323365494621145555379961157550813682039073896043319175959\ 2698864845067454290248532390994816538603305142733948982252877059654435705120702\ 851899271953732697516064952181766838133855, 5.061624204703105489769925552983248\ 1114155513375308364917714546348476484967339002203678765123596298556160848628865\ 5311948184060346314956232125709776486514107251373897007660553632379231668867769\ 1654421179573421730512909881668024820125031928796770541625569765973679335064106\ 8792634599497017761794729099118689700474162473246747160653504193268258209494315\ 6628831426597900445068918524454961863365466648966636500446408053415035047560184\ 8623067159996746520575149844556933230213454049018440226544565815685179293545671\ 4590, 1.19952051490003684972707178978032947842277843616894046410758252819198276\ 7625734660205839943421935233466813513411703140217829453134019694402218236476704\ 3507338251012487462750872839652980366965940118574215553260048565040999012938080\ 9250954306001303576711659722033890022143991192811530758282438884150918937306674\ 9134953812323096340194282750117634083102093967560023900413272229221379792979689\ 1764676202039452969597148982136063684823990433103997689591648180430213588980892\ 925872979422528091303054258766442060571238620, .1967161677009091252101704677249\ 2872658829503990863605341448029913478303849515982815471388862318364600845719099\ 4479146230587304501041648903442164820865157578716920585941845880087114370257084\ 8286682154013559480773857971141535120832738063703235661148231432124011543990407\ 5095977358360193712804254308729888901704039198247678421892723559818762848840301\ 9416932318453439753714070987378645616170056308978458839910931609313805376077264\ 2549326444455255577358095467027579302838598936008351035324877612635612977017421\ 2204867, .460682062490704197613994340083438970126772182038885796945498557922803\ 6347835656628803823831699899704999757822173006092627979509739635357064247108093\ 9552671353384795844917998524779291659140163903938957897422264553391607058591767\ 6843872163834013534106058351788405829754120108978184805672571195842986461563725\ 9802844046166078743099064102397120586670809233494836087246005555114449249176651\ 6007572167670820633574902605296323160173913918515524573280168829861096429113748\ 636023396235691980080809024236755308272819715059, .7909359996785936073776800632\ 1714577067272497413929812214389094877352316440441230736915492934001779439795107\ 1189377862545940800284175124037343561625270407087148496902413772533068731389887\ 3713989421394990065733693802479904884382219645458165944062511415918481745670883\ 2539129147601932248284040062145271528397887883322787657383359839657385155735021\ 8201850827331750961804246775416331127630711583754368423136083691773336745707213\ 4950730999560262130388855586696155610575067558092541952631482306395489760205222\ 1930336406e-1], [.20981196755973489247513548417202946842338182379751160422060209365809712612217\ 9143375942349460203038067109986328824456179201980787959695462820148221652503161\ 0922352192772611774096468590360972284948940773016953175144121175244789721130727\ 1632192992269805055120157209938017481075810003609794120958496728182442987582964\ 8827081040258481545616621838995908354648435087202870898167138280613756364985214\ 5908040188323386579121352095999884393911587661693738656167249025250546797799945\ 2783432022984693299433202058201348683163, .850523438805433516978806444869273339\ 5212426767520494608520805317191593682203025373913243361965086413386474809428842\ 9816660585342247248293240285305770816938066366994653617647030294003196046556435\ 7276076925843356885719790360314668531372790186231481163944490312734685641670202\ 0357377478908066882651933057808866820310317359588074637657120247961992585284830\ 3390992572662612302664758940274670182550360278453916372485823016815724309698977\ 5204071685024765036626290912465904696249430430232493291309218850465691623637942\ 96e-1, .43400506616214470008026902266958433449952666914425658015761077485833055\ 1159585997158233213975561964524432151774572769032209259345801324292182236005206\ 1930510626942656133852851776587869219089049277543765393687226862885850111132124\ 2073094209397045452306861212107318380205930471752918695134806982935259620771163\ 5713223794263309403735815427792152628039021511008295506560764670810894113349576\ 7387556482124610957684958630599215666264983322739083389756804563599062963275237\ 2486763293455237756722041021847394475028318532e-1, .173611096575608760552979190\ 5594830800820070562200379274159035404235444735132812807120816280549657851068305\ 3957170187212865847181824315456075701472425342758280608597013840652896942156211\ 5958844403449954216975776666096945332733515768198414925973493539011747690862091\ 5081095671174454561334710634317719474439053040435521225178874687195694048855898\ 0640241870138932828547438637581012288461403042674402011046934241775349126307883\ 2098547659960233361332636959833652406316356025239876935662953093950395229750565\ 30265175360e-2, .20226936348947039961829125555629860177710528720215037942496447\ 9790947025250216180186996468153620143380344749942207390922376189868743762149814\ 5871520111043994910352141155237778902567935796783866939381658183422405759851474\ 6599555358612748837234561918092633045947370916748970888029617054303168518165830\ 8375464575984683499071349781161634937174942028677925755767018925977831362884551\ 5294561355748465040533562125679530086117740230662844739990099976380651532546520\ 6953196612507733462584938072198154351593345570771403127, .122448938981613810260\ 0493945071967851389012066095081912691765872229648947258931958381120370041260812\ 1749394224248956979450756130883796164770223143961863974037143840421378935250638\ 2675304244779461804031056371938324909182488500216895774162730721770543991944274\ 9300218881479045952721754837459310588631920390738944177725542608027712641630538\ 3665017664848702500397051676244499112325517266964093647217811158410704719453344\ 1344135273027060377820976784541590039025521210313034319546777484137370163694272\ 67199754103601384, .22499683594150451545230720999783233693480140112825578139803\ 5223910757558408409435754934853630051557508911721017872926466982948301801555775\ 1608019951624335479514060693055086933870833552838197679127442057796017381163427\ 2004763416602260461397970587505948709845284648158528837995450947358857923197249\ 2831884141243439550667835703222339420988952184252947423979793482578187186615902\ 1229150169890557801618004973427645300549292794084452147030504854562992313986235\ 9359805224596941801357325435261530259872035328924393699040e-1, .249999956597222\ 9003906225971924533724639851889908111223514830111577736514916528282022946023107\ 4288999327911259167111016472120869164660432249274064587726113959512640273277968\ 0506797671606206543947601393414501322545167887624060773437838035660395899519640\ 9678439523160705480210433529027150510932099193096489613806745058637999871312790\ 6211728074301698152024750647097751404800939188511620158460868282601759721682993\ 5318783718552646368222186978554217007784292195343009266784234687900928189224004\ 48848508569384682024144e-2, .19731679211907978010600040536705993814246311631944\ 7326475056639379024944259120280928659495284146826833814355744698355653085110354\ 4516119185405707652334358262790314404801826397992065060306282867370044878981131\ 5611914010532664395688827803738120709462092974937233324499972475553747994810716\ 6867647424872260236009914843022334375881138372748117064187426396801030852743715\ 9030497242893006729059881471852819172749334527529572891642035878817482910900296\ 1486236110928474474996400532773582381873265173418811312112575267908, .151138489\ 4761591002537909852922126286533703180842741629729514416132173071066872263079951\ 3100351503538039166097824185883109290963299703545989705830027104080415443600971\ 2485269116542055617623875428966136897387553395732148240734996891189466662211285\ 6024073838270559812330537409035150692655971669724214601233427549110928841009183\ 6269342279177516670370623068283242963338342407691146140581808543888037144702660\ 3931008602138534931798975711959906917599207350468751920569673959614414339694610\ 55649971122062375756026103103, .77147733082153749596081709026558918565163040961\ 1678120880889329721376935438604428642063318201012267646622000452876992819705887\ 5560451567547614455839221819443609494800464595525956273250483420926989301517483\ 4577862846172620709643332330107831573548222842906011113749707829541704758595928\ 6720101515350945896779330181316183609462968837462475692316852705035086595702319\ 2715716265424966708419291943399319820738112611345823174768123951263926245556851\ 2476656024003239501841764544064597292922316321182648275210943581414580e-1, .493\ 7937086724709504147074361087953791933625083410363447235085221892066473320017441\ 1163699567234536419565405335181682516053811611076817306473246018195276928896282\ 7831750243025865887038657161839092951357119843542401261854693668730040313013934\ 0167585537448590123832887347878828085021605775529211219770469716364102898866180\ 5129399711641233447097903727439385480718676907021518028204020169495740326595921\ 6974259556469277351764359517327530181527994636929859772863152535204870474300178\ 33682550439963450882562412965879670e-1, .12345626743576063290540171521365365012\ 4775612758529349684959892937117265278306507123158971097410697658564566430020323\ 4379684439210454985533617714017557859010424727588323339042081373664177149287831\ 5404205618566611366573522864733097675951845454709699958449961548969525223050794\ 7424143579613915173502411509191154121509679566935652359327481001343276710651587\ 6078462275124469658866035210206707491495489985136743943142421990395706651632956\ 6471030873441415450040148897751071162829849318002618928535616546757492861968687\ e-1, .3086418936386602762262360927651433858976629901532887436839568846296038208\ 6159019515217083048999880585250425998184950039804524540655533788711699582575762\ 5009560237478491379709892096908024927943142861820604063515452315030437614230914\ 6801307731391244938888930716611760001300719035830652691420772075565745784864222\ 7866678967148433143593093480099057714361577619900530647772356527221669045088773\ 1542946332670293514857137659729120020672400108467651413378548005353636311370259\ 70371944501240551253797780694568040648846387e-2, .19121147820577324152143617399\ 8647433394260552515745298865064519049448815281869108629771309373308078587573936\ 6309732458424982364136950094018389379472420133217741825187512672369936000305030\ 5930617629799352592082361898455651958966589504351163653057746708344437060064842\ 5638179885298107405746468966757494179165414765405168159534445383665349108069594\ 9053156954364100586766520825847869022018925061222962514388966737722311009913442\ 1916462577730649476661975398363365335712743158780466648416579265773748332758718\ 425532455, .9763038054527013805156694546602385795273970737020277406899836254952\ 0426243664269634036732156981780137910268514763920329707327120272444880074342218\ 4383607076730012226862451076702851143072269652233374435289091103202411230918779\ 8261759253917603065979441337396769835154033275511438925269172227501647857638829\ 0050685527572216503614602212626852650546660721859595938161127966859686540219944\ 0693623239752904245067949811690746705179522106009019843359185560047157324389545\ 08234550818261988031821750181832518993837887159082e-1, .35155043009672792438197\ 7385784834844614597616348154840716831553125652654122589763713400824034945744774\ 6197237422937649648373983692910785058197830433055110446273724669246009872539703\ 3047220659859742413626397531852292011367405231101720126509634868130809699266713\ 4141685014728930091506703745735133375125186912947764407371770157674244033035502\ 7343898228221054260268644843985636022334687594427096892428514492882222833983430\ 0622947305021599263844159101297276827433482005074328464530119527330735432983665\ 748238510654380e-1, .3906248344315486065169715673723100753393908377408318160843\ 2636906722174681276267652998377106264339392581097511101063564444451541225509024\ 6626707224016604676505155955707699199881484330825060655455595941550874409452640\ 2272843004964080572177613547465044552838927823654047364885355857815960846772857\ 2658256150359553422957089208910236627995546988640486685526930789959762550131317\ 5924567021535547210902058325194387674021658966016240079431837126774120423452209\ 78614155160877845341623774463772319603043963268969204993385e-2, .17346576703912\ 1423431701919201329913750864129907633611508565496718936318645760735183296119149\ 7076523447184096731075976904593705185854101858877633786734975497694616850113620\ 4138929715063629175608729056453151547078212646377985362536537532741871100437931\ 9120957230967906347592803198951807189243279913463537544977899689568306561839061\ 7741176467910943353485329986454622351542808568234078672261667153735655005393648\ 6134651308105953070755786820999634584366105347241249155322265411155789529301949\ 373538275098734223204153, .6944435141723991555848078760993515468120957284788965\ 0819856476474147615145040309294524842001716526627137404771659144327593767437119\ 9355009794127309068894861401414455244253120791404208311827945157487584910969660\ 7386834640072480911768143477840117213573462794344952003021381066304936673184148\ 0780966153145148206933216841730535099135636086257839321583802726596692181408977\ 8980999007160770157730297423513854312908088205348342342875918067938722072029311\ 97781315587310552618359869849679776258288403866048928798086530727e-2, .15988622\ 9503894323928258214260514406296033956182761095720700442934975584018651995843684\ 5430852081897402344399077355019263381642758644232821314518058086060039380552943\ 2256256182086623788083637023364095398947753061396689852971203903130982728190682\ 0564255621490710904844613666284664007591126686048886648236712099453433576403532\ 2544537738741270675593790303245044385497704531764232970639473149365284724718893\ 7363452343458453605314952111973176138408954024579050926784306941469090252496038\ 046919816289562914780325026403, .8997975041006061706289107145205594981872141551\ 4721120135009517677704103585181667321731804581027646362286065705042329518091322\ 7367636405211526795306163205740114605010043435780042094207969939223462479019878\ 4450646882442009922528719292681916105740726159508919942224486848147035772346709\ 2788293559305378306067827021604924140605909678349733205635482360101853193438494\ 7259940153365520660102340915498981078364910980954372694377613096503201981358033\ 17921651280915557818750314381534693052916437386862177564005578577694006e-1, .39\ 9982222293333268833479217015679289381298385670231083780613575859216934663549727\ 2563587417104256076312885587637935092393245255974170422834834177710689100927068\ 7016905857170566088304003513297458739257689592091021311741322978710950073343542\ 4493781126004599794326545201567308316467678894292160686113864726320037035743112\ 1120147686272207711817816448959094176219189929017565923789765405651419598606420\ 1188118428548684766429109769171446527549844919340536250193500848526539696677038\ 554709643620054369615134652716743826e-1, .9999972222229166666272990685346640879\ 8530865002688533671881094206250798945999533522090045194327746831393933509940178\ 1825191156396522965522599565746717598795425687304190770506169101779267457523297\ 7542552766088716291732178751291861756771475170441772339586863322948812345871524\ 8503966401648797704195139581937498602429191522064550314337256478737639997990645\ 8968025074883036553736644876281066512636393523519473829877359389744298198790277\ 0848347505570769227119912444522178009537977704959134415382601695220891261749398\ 5e-2, .140547756199332913345911359025874348350445926795426489147355931758762480\ 6230353155821120133620042480350235677771839418555875533372371271366373235640469\ 2903910263470521558757340557639568903342724710876029831728739804972144644112780\ 6453021166500476905058893194306583510730991145932494003533988288157095936348366\ 5940164667660796384147305234012138897470138978382182721589942988489657086960323\ 6355376440143302353679881545609514960775079455046514881022221581742632988485789\ 670805536088750209860988455816694041514528172, .1562489403625174114206380855404\ 7769796334134567919293415360365890286563075675991268500874315079377147054125438\ 1615036988653387825667017181761346703168929818053318537312397734991404843438752\ 3383341507934519354534468285732686427663439054487892126534375803391451912228047\ 6699678257416636264848381971003631856214159968099963596073597264857241894985461\ 4759804664495178338058119760364058364954775254026092006463330146833584345135208\ 7378541846123569315307818734593967178402190250678389249914767520804869619953711\ 9596182e-1, .111073008339581676672974945830108965078552607215636959565411762053\ 5778753001550535510565292985775779072485655041736500093295630637149428640184158\ 5303726614683914079588578175202957644242399541395327475810394068533019365361310\ 1616604529022273164240640314219662961137742971371505852673356304164168535835553\ 2775681105658586116789805596031192740367568835437158310650041727036245758685221\ 6428546064414709925992303936310792879253137047744932191384827107056871774422774\ 137897951701812265192128263890239486846877040158990, .2777718240474549629313775\ 7764671247441494178149923349323544206423087958088856971203167084763470862977628\ 9540216106636938028534254831878930402694640143296584958117555072869046132878837\ 3911324544134050557949766616810388427429082365113729586444119500743313554387819\ 9332274041233810972139172467658361207347010425246191455008565267926455083965622\ 1175368649885655943246210708398585315788466429245383441091496769454580081956426\ 3051455057795016291475651304716028701900284818307011415092457254354443185379834\ 7049856580672e-1, .624932183821994586503658674883710086891727000918822524872596\ 4787495066088395372718403419780473922830235397615727260533500982820650251305045\ 8294162246457715424909588768250845212256067786683689010488507964315759676333580\ 2116249216247791206986071816597788184102746115850688673141300100172958503553481\ 3039326681323453472964456135484711937659320200201383066353179661743060724843518\ 8945436878272623013846781965505686777919259442857047589756251518955155825701495\ 566633612933714455231464997554125652806076462184478313511e-1, .2495660400366597\ 2141935984831034013180235277527904537158936950468160258584303865357273180885382\ 8178314224638812024447634124877698740217590130814181703955652446760425583572404\ 0383838598104897641166571503591835504752067663472770950668532168675688734535114\ 0250393771764066957820263676080087366772111908196940410178412027524620418235933\ 4393673291594760618861858119167475195199317942477189146556734590623078170024508\ 4242403806860326560566435162704175434700417581459867799651608564432797355830712\ 7221415489589219020347, .972291627306661206104032220226355958565842553812788171\ 8589185834903086837900162809013616225530686162238251137070872827260672602084080\ 0808708193679903177671977279091102800052844277717169073738050782018629171507060\ 5434815640901517644703096605596498740523573242050886505020830386204704505789586\ 2237207562892775300754142827173907236011348742196144908938713764591640535261704\ 5519369820313047643467390553541054370019161158546463303918082087684625283153695\ 677002501702222932157657630371312387504977510084360459908745902, .5575600623030\ 8669489422237615617643459061643284434148299990992993269197120320065846494066334\ 6463048136570474913000037079666772716447869542550978930653156790661707970230287\ 8294539812585790960355288051286800872042660639655327846884701930233350787084372\ 9447600892235023876405797148029554953671594750304460946563881724777660109342073\ 4422401563818288370525113564299378205030653762552000384176401160978238430021585\ 5866988012381804620484397067689697810374833351403858773064420701629969835846997\ 0418650846246482085083559, 1.45718204415980418404651341189349125767162794919679\ 1186180958680178354329398228044406863504635178127077714377736534071347136891375\ 5615274958787588596043955497969601291289835039074228042645045889284832360062648\ 5295983567450631409916091495360035639738295515034980861633874539344106322534236\ 8326054695021624290382679296312946647549252006285150703575961415833886644695330\ 8907568917088507215224071410736400820233899896898745860362017970215354809454034\ 441204741427076156148963320955890707669444071665591620965212854628], [.28887910157960442274074628583131399324926614665619119701975387008480038723010\ 0497273360745993010606076563655270942167885586529153789403501327553102773752517\ 2111700871907905792634626284148457272417391739179993625728098925559971578257953\ 4117476145918373334583474585732312102000235494095046357304927985332240671014221\ 8260083766193354062498032219858605312990067233459979663502329514253411131270904\ 3158213056348955794064887413395865617686345351325977828565570188159159936049131\ 2423520943646898977595618506386013491488, .197343648070338027579952022099241523\ 1128305436165029943221466636154016683620265248735518451364411635964758198249430\ 0358028234430611675103588837543241082757089047580760033808025833332621757598222\ 6802869876866533626950486013171546701767609635988167083954809814781151238835811\ 5845633151368248750712194008014742009658544784044686721181781451197565154583710\ 3931521344524385971033184067192861293732307292935672114715700160182020560581288\ 5938508646257969740086299428337718075071180206423569985938813567622442129320855\ 02, .14409395422019612315650983768561511429044142403174634292562330848193355450\ 0893131080759835559337585176510915003318049836799427560950654350981225605836533\ 9678032022350083787128607762388087508061136955012302952684616787802790958726505\ 9928289424507655961828099531169367085029397516842949589180391091024990551518260\ 3926337861862330640302997005369030825249697984387193893771416734207442882487933\ 6523513567650435164454456749136678597578764747625045644630804913385647834145791\ 9604656040322908084627799433596104465183458, .294371998181663503846417715122110\ 9001846136666371279283833701937999725430856636289917479995773860236461705996097\ 6884141119090355018382740093234244867828837947854346028867004516847798604720143\ 3005958931311435826266830856933448538315306142907826942235801709947242722744603\ 1195296863752192325987178327855930986310029681876689401413455073683390496021557\ 0746035331862873764750326111470156146965657073994543270711992168821742903375435\ 9516850660517709442469289080228838610438409466483246586562448719317349947042240\ 51488e-1, .28491168983756592135536529177977800971313660149830406397386913827915\ 6718401461781311290579145212887842352402666425216917249861273296111953773290016\ 8831083009165633445195859217447618823742188923281925245058823231972146831946758\ 1746356544055263530968829041966759391257323334652239749216900897991507469920620\ 3274346260587615484672191237726038190135073126143773789522267193612058540036622\ 4161367062301481431570548950546294662599558420828401766631939495617423933234474\ 2171072413669183796506826189041465105459479263865, .232022462306837652753189385\ 7654174796903728572733946647138225519151213149756500488542797041754258723412457\ 8149609699827555692611326410307898432142680987555910071510181098548468557699975\ 0775165411707203994180433171777033508614852461032244751857777066649493529667195\ 5801914156202085911654286500849994366089160578278914925267969760134961156500209\ 8280121234408139568195072568696925461235800097745072130948367915799658148336944\ 6343479865844235625224045954317562835658849694708969692559739382153514213527323\ 88468292969, .10486830822404947382673485515484113173507454626514644079792545294\ 5672741681799644169699630205601572561950626936031586082043346678098678694484843\ 9134556209722272794176428686405484416829185740575927168005320220230405843038570\ 9526637303903752008749320834926810566225469378476128630284192653758698965811927\ 7529706634408796286153211431244423284017589996773028357910110980992001913838977\ 4486410547960547510590228173251163448517827901784031446235078787652958257142190\ 9595415835602436437116375441663486159545607296589213, .353111264751009029087295\ 3874156324033044290040581091406527837186638592961362323914621357687897025626735\ 8765753066771964297937065885443574630833725686087516432629580133670650791383610\ 2482282904610655235469149455454870063661508048284252295095239351178080302985375\ 2087260808729877850188611471341950465480819688044290960816049139157240903267370\ 0023354003348591783568408422388740535741992930998269666471032981563723636857383\ 2611235453699316055396451428507731381959455681293062857820574846779789625675147\ 26206282946765e-1, .28222582604793888261771187215193573101995758720578024959399\ 9006163711689118785330608183428339494878041644648201905461557270059413635115608\ 9629869933513977708791691203152466531802758121901258844464515536860182629187599\ 4967165969274957771113479722046622071814872999938901579519667830976026445518612\ 4493699829798999721787039809546163554547510435268916505443555671554190526195438\ 8985474373229323566778658678285467530580607770584972320392040294840476033853236\ 5565038273387845138205964866101145003531683996426135980456, .253674812536070118\ 4360234531794673898511023871948091800250374023480747411631342990176908793587342\ 8575939888498515987423789421745402244803019545075550654938444067033234400688166\ 2825489880571779885002453083892533953193092619737748770688762956047919166891867\ 5486595279785849474264234317150316844422303043285963882469914450387755666951976\ 0167307583734511509231586251780122545542094490687919885109006692445454319356256\ 3841353418190703801069758097155219605693667538935200766447406688575639464644869\ 57874410501351459809, .18874385108060788291965640888408883017757496362450878322\ 7233657978256425914007280113806136203456681312702376405486531772016571242180166\ 1770972424644017842872273160849462357108575402728608155946547724348129544988846\ 6702709138435170528857762809743969116649945074698120481767994606910330248169936\ 9347924418631191700930297734552115939510264685180443466473460423940422071708641\ 1260010015357257679815436021358784001197049235040819757374521801842811835743393\ 4398965467808022940524319534515528130019818722913273526422561, .153223166292668\ 0902611560421991594902250237221333327730593540410147266574522395225758583053317\ 2624517104242456484945901202450128243234911671760028092716337811170385117559245\ 6635766027078247182350267588200809923159110490093293803858129275799217276580170\ 8442690121065711151287653465482925224922851766364278831104664455063311427949357\ 5992268327198713447579576531823563608221793304362295037371344860612319083051055\ 5378419607365012865245739338631371898909853805442309501643881368620004016528362\ 93030241334431501316745, .78081439174621074382852837420562879769333782162447834\ 3393853180545850229690453555569856088096350314218069184597864421446757257759328\ 9204851517804990398149179387347168592425449352817908169113110006866960888891663\ 6087291739825339762879473092581487756744082852159584012329835693606599082835676\ 6920053352224146225052411561420241947514851222597561984251767696108889471538829\ 1717365650994867542020869059870300473613899788219135836972792126669670573809513\ 7992428588955282809467986344430597360003198076009485405116826147e-1, .392230558\ 7990471065019411485581597799811379390106683153235735093079766009029727518633471\ 4110568092389426564794310135026014689185147612935916721628230040666983448333988\ 8991631407891093070875286096253743276871443972072306827881999108308962428575419\ 0702408193344251399889844814169473089691105336355592068621309046715052215887138\ 0418157003379985418501117769152181106306247766205698860001607594883896630018117\ 8255530034978070601423931650073074238603684707211165547062610430849665070576054\ 21725150784474024511297511666e-1, .27882329844437093074671056851311439388816773\ 5576072459218182890008369616139164489934785103113813496480835410115480575850283\ 3573551339840494311881222405496520041163987443539367825861066224722759954585724\ 1883970109836351092393202823877906587080470943924540229605532662339598524776342\ 9706293508986664369641428734779406290775490645863043563250024163156494366909600\ 3524717609047275462149636878500278596782314890340779768167763723572116167581824\ 0932741814858151303953410647573073842901967581707184626892394646865366391, .210\ 0071001216791975831667094593133490303232618460574841306226435218023491867531907\ 8951646390109846891159000338095979122203165805293359607480697216878393635670595\ 4497051381309333767996618387702099052488083207319222444490507298570256007942996\ 6696733327856654152733682552503778171070318549648260671375929636383127090767664\ 9488417352864501006687164610435135927738994809635814935492535675338846093480505\ 4259153209180535839492004712792813857369558007000655911961493244342045759128995\ 72952251211213736661546923551280191, .13023835383512217917754104449625471134792\ 5338557671704980606158273760340806805333802272958736555154995823418296285588204\ 8825161746452171865797753149204270328366747829776101568059052408324590844407879\ 7993310440072074319176147238331819945572286835860380884503404490321150887810876\ 6509898694867032579249525412672114354208150306154632625416307592754379707100480\ 1066689323092281002013496596435116362941617065595144614478179114516450356392485\ 4860090627037747747117713697020150516810902749262218614759874357832442256007, .\ 4410780090090737013945857217492568011790178533357478033090892584681441255115822\ 2414473662262147961890433556240718023620843053404036321165839764308170269201019\ 6814442844298979079517886795300112845597233164468834442918710580369486024429123\ 9436890463324429065358623807569479110495424406376739890337830914954889784987203\ 9272035614387786303428590800083595667050966920121922227215254609048442709167127\ 4600971283418312432169291372263075178658448393693139406409516506333786434250559\ 36709800512523860449562321798082034084e-1, .26832326525672179081506798736640760\ 1054601165154304648903277167590169869016433494380944409824114786556663163301499\ 1671820753276573422138056256026715834607636627920733394209916514335133563918331\ 4908024422776968866787228586027863323078770309764759498605254007079703157816196\ 4601188295970499109111370020746139377516987972057461950277155564397078517819697\ 2257405646522567246251489854324784056288809121141364758940217404244818792434285\ 9971300547303683000204744929065766664592303881099632849326229156146471611875121\ 436, .5872072577074491874451718022960507460447675052500073672997111324308903682\ 5927136032580328540954430183686747141339505593135437606372529538416435541187118\ 3634307403416882446191926397026509577112124406528481027061670386899823921512340\ 9046800245268672671358316172545259541922331856517053702132562159118167235776971\ 6199983634377288252740481462158418869597231750545449920761989757371214449888223\ 3256692982192110505255629871994579831073054498005064179359185911215510848007216\ 36805842740475314495118586783149550706378803e-1, .25962000701171880770826238306\ 4848402826149675477431916603553200716190158590563400884141956225809639626629805\ 5645639968967116474793858241509327965146479998188928838441197907952155514406487\ 5660931222565688978611632824130134662108504253056803634768987085997155189945353\ 3580687136629004625947633119126265972346263405220891499094034339423314979325015\ 0751854170974670892442021340062670157182184340897256398361030123111132847196520\ 9970251625257420733656931527242675557639400609571951300660550263943349421316177\ 064651741, .2024439824232835089505004161717555235065149413780277436124308445002\ 9162780598211747770151513719858468916678649981825922575309231698100022523978194\ 0443894415779877904692621323298685728367774081701499666363727844587028076401725\ 7550654891568536109965512362896948167036330010991836499191877276137269118763421\ 6544560352672707846554747236214049464369889618054641072998842226649829522635066\ 9984957093408159087262550692043090376557675691691920137192676856276054880997123\ 33578972354504013417030397809279213999218253926514, .13857413591120788118583970\ 8460372102630729733512832931703494907711444183004454747292825845153848660128347\ 7201204931334979876075731705327262409334512556936002196568579529294439673314464\ 1916345029894804028120751989572426156179975334845889912948148432924517133480297\ 5624114383048827913948817981765624449678515095640462676507333304386751273397214\ 2039237980554522375243970026306355308112832330976892196356694301556475790384704\ 4140559192909045564613924530719729217876048580816917216129813866835523346961682\ 022012050542, .7035653596370230703963855421055459479264843685657407061160926018\ 2322346798210009728773535783649108132693586999225368499310624573923605047044672\ 0490812969974061248135683373887735263230693684423215936662136112865609765849221\ 3123337077178257265803858398536919306486916817457873284097416920052768782620661\ 9813975115550101246342539531398939793373140000121368104989816880642905257734702\ 3784071962573308271306300070699022080678550722155023860910473359271086302910206\ 95711517998985462455206459828653092556348462360113157e-1, .24608880401620081203\ 5353864250935121569674818509146025392797711617849126292929554969628760614862773\ 2186643133062238870526223237625945726566704702557273105497932317282273412005027\ 8066294602781656046290434485669250730476773856360255562547291749560035988877616\ 7362789538006138607602599458909995210366173093515171850397847089788987010725920\ 3385548228915657454932011902199464557490720056630710373848382540406244598104374\ 9680376582256153894060375594528995935771184223464483291989569904334611500499345\ 103601708794658300, .8769601776009940905008093451154859060529358599537579402794\ 6242651399541359537782408471878869828904437674024618159758155823711364404389382\ 7418196592875501364601927690834019399490988038242794443685432497911260753546676\ 7639960617717771136121393993413713207508966557998776702386156666309708216934776\ 6703154689447599343588177905682698760724262724001934840591824628816134812466770\ 2873444293719586240050071724450423659667492359858762284515363438323521616591451\ 32964152012675191714830843408969261102126136789199285392900e-1, .22236745606029\ 0533735109108008727632559852142817912676979843936042631492356546097073728089861\ 0085300156591331935117872519950720753375140829553796710502938401001851309096398\ 3055346558188779028806109100396681924500629721843145513493585492531221768475526\ 7737337660105308537759926807148665485679560790685173437875759186294486874661070\ 9473900437494944777214081244036433870785538971764440695595390706905794344323091\ 8791335273083314530963086425558380948205373178824014167206083871874435696251270\ 568317348775705411588158, .1162067486345616375951295842930150937170826937239441\ 4172687416078154684815629550783171685005361360869310989501903353591865153471116\ 2499876884072953588109571467570722222771157146720937870558139237190727369473939\ 9834756634381461522798524797003489820739635299367783584450816239903759462349329\ 2892451684283002079329398216853457757969488037818997591287860206076960635150748\ 6564393668394432826467111100940496010458200037327619031761219494496790857089379\ 34754921983900950109543074250376374691798720759764229303282001974, .17119517971\ 7015338913319846550227535843449220308472001022833667120148168075117558827135395\ 9877696052081137164984309148398523798962859984830953736989161320800939208168120\ 7585476217587913109912536193177811821642622032788974402710931619950215190454493\ 8356765237607910004161397580150456106569117168649617628159505044586341733828109\ 9165999616778191902129210160919950910154331739023707154168157466131121810340212\ 6059189329330843224984483188485710302139011641668307984793360183348445302745004\ 033201504980349524540777218, .3075566313755365543785453842939948798033749089816\ 1013376259132120565841632632030371038988910264310370792429733851398925390298067\ 7035599817344923135945067543198338138924943911936559663919564286788796611659940\ 8836964018940715451263135038703480812774401253601257305680135881833868632013247\ 3817542871259289389533631331090176796163651028854759403606552747205290967916453\ 7097848684680450689406288741163471524606947882824925988713930286101015685123902\ 35157447402423282807316429650209093189245604710553667536947172322125, .29977543\ 7002033514994334369335075688955125235971914676305767774582130626968000701149658\ 9381199663007200954429282426324387173879980620858983401585745328002006948336119\ 8871006479587127007140630210215593411200589242732273941451972892350524466050229\ 2641717036341552763994441496781635797493568932502926000530176510409960133938372\ 4728827005118778790240579543107675872213380997571063690809944619641017204265928\ 1642924649231919484660620425510039791679101073203922159264452221905317117695239\ 402944901571509744535143118281, .3678649890020899317293724983218826250066426162\ 0790907491688413154278819318690589462456281680809417342329209157843389403127981\ 3293511383887140737352111421578773017854823672137972449897198353353308894658673\ 7081690806398208949422793318527125473705154942337870497311859584311885461724839\ 8943449121304275009347097836018314186263323331624707970386749611278869044415424\ 0149788857964031312396973026453092518335700855972787109496168060485002919575041\ 83211051172853202397516182300413297555208491981211912457711225231674036, .38668\ 4439659504805579639152308852147538699392192395438491290882472034559147634739746\ 8235186637124951765998949210741333193193628754182339982851025889161049757268628\ 7034379967423841889791265489146057377734377200882823843946005833099484842151036\ 3635676215666454805155114315427701914605058268817922792087767640656926058065075\ 8404851925876488216021280826956332678229008641641535258687085190976061142964619\ 7871351710535354035055466382460233320727479630200024650811163737388523595313674\ 386955390986567183698473482426124e-1], [-.1048416169259960611555508669968791560019404528165362979247047876104842450144\ 0238811278625014628959515529668713164171092398683821010266220840570515057159623\ 5979456037139834885703469156830811340762483678341904969647056879240354637289893\ 2099439956401420091292009441578915415094069931989937840014390250430773346027971\ 5124134909843003852549879390410585496515800692885757240619428261401505129619012\ 4688547034232963277105230355460998203930561045224961666874645886877407553699538\ 45533519283446920771824674586032086975961, -.4252189682507869760672179885037903\ 3213661315111449602973779428835883067363411220646356245842615733070154326214072\ 8542174314350099156215425592205702909442392201565933250933101796087885398372723\ 3773307408103567714916510463483979968336998739970152734933957981470389705813881\ 6805337244026623025832378008692851540454446156510399897294388506325827860074020\ 9495840340525885249347956901158942619976341967027024351076944574322024727570465\ 1453250029277538010960912670414981663610489831212483657686672280037737302474227\ 2740e-1, -.21699685518607747642780164086588033737071707288870333710432946570541\ 0110134926492677916440781069702429476076167630926564171027599836991307968062044\ 4818613102544333742475417567835352472925321850611363530492154151190353527470455\ 4013286561736018424734511563475739674369567946092370548748482191287446706179925\ 5784254254564498370971540614314613674087759041517477018220724934589097961012185\ 1867502937940188475898075718679336021524600839334180180151470832169038150777934\ 1795774980238696524430887300486202927749383292909e-1, -.86805544653928801764288\ 5240902533557293972746334753308445550127528802031701512589374511742779019284918\ 9466280130247113667431199618404953579500655845382987262695199416734353056404784\ 7228682368191160651285601013363150899053106338830750238701216286856724199447822\ 3935040067714596776020732904229161294236999239744608385904109301132564320824654\ 1066625926758588440100804290997074613945199107248029088012539868514180141952206\ 7615421044281567205958195719568163428038673751941942621999284998914137035536140\ 973286985732148e-3, -.101077024587556596417773055416465744699454531725015561115\ 6399964147053670531888958572755209250762422992105451793077324715411018898623491\ 0516759266413017218830990808271544059417764073597362169874824372902643902973703\ 2188301755097525211787117005293725802577738756483320236196205821539672753015550\ 6217383895769006662443605463043967086681109147078621618011412077143591572194272\ 7767627674624551131819523011637936905992513623033914898548456762886659822526130\ 034346190088542659141934056881362553905782080452086453855093, -.612117043958464\ 7768486766692870909159940400947400404835992228348651731413432253875084602526506\ 5767313726866776205695307300410369250489252721108811465926181368433371996809096\ 0808317786285850583265417537109444886652002744086838414110548501859813738543900\ 9124532873658767715331260130314590939483662844363311450380915828045792548227803\ 0032182684501801480507056014080715215367908993870961926913948095320116435611902\ 4938819706050541388356814310585847326361458567122389604832328338222974412891173\ 10205347305408197864141e-1, -.1124976269564620961623703740539024210263109210807\ 1668784299830944881258963081146331411660108412523390739535123571561289104756802\ 3907847245607459162228876053288234034534421751849539816071784079547628307499550\ 3218551819414582500705010897824203031589698196058252369827117996812180247640010\ 2577497297895817170023585476705243081600650501787096760235435202194000453390396\ 3361286600033850725107570250776613306721338044799615101990911520412230724895907\ 46843065552313080284448280067720527920896429021656539822182244633748e-1, -.1249\ 9996744791723180700021235821158814338659476229682785920049132921178965229382268\ 9716859628520768099606322648609711831419332306586881257917079440719669656990210\ 7981354944111368599811730401850868252877146166491765007509665941952314358416908\ 6285579482952972744066432437638312412348386288404841549464703483955902439527339\ 8373549510984931595795152623932736090560062402817421700818547758506184026755953\ 2349820541548201044325157810190279431210915612291418270228685341895669345034536\ 0311097668984500336345640753235201e-2, -.98604879780197269790584939876590409275\ 8384562192323205516694285090306719630058716786359201217312642283062484257805898\ 3811732318881942011587812689253095375128364604547417185989434321880151127733805\ 1935620161192413760819739541503510623547957634781062073611346902493184029905924\ 3400394680304657486671771495796430231367037053944022480873123711474993291248771\ 6290648283298115830640881637683036161700823031644878133595684752030017537312177\ 7393848191889607878813402828040398072030656809730503165615479958980588779723943\ e-1, -.755452255896395418558745215690789803831030886761100929321998026464943339\ 6420317251222593858117630277058685934282376816476823505890079969430302378268414\ 4146997884726936719755351965318016781510814525655540786105869112828226190810405\ 4212522170359927338562989757950435706079259596868087931598997552258004567154789\ 5442153259795158094505393870399074422285307394109027959474327451489861372731459\ 6915424914731747169711726877802490516122399842253510959932038011554527324896403\ 897556561292726373595981309499116278610456466e-1, -.385706763706532985825590998\ 0083180903701811774329723691054819001856292438441671534993642277132650360808353\ 9780568694026952302344682550682880001505237481110367945171485883661177603514845\ 9243441584190583199680734783698954113649020622419977012065666939640983330162706\ 8772467865923408055518028948151021917774493039685356682025972696913453215808837\ 3588628816950414825157090294404496060656200492643280184380870745919183839161256\ 1071438888299668945916047789372704076398982582677488018765165724656423175911593\ 37404677881e-1, -.2468884913978917770195888016158671200785080946820464054641281\ 1119474085560452147788504179279427673708996479089006697015694751511694066247926\ 5801111106425062656127414310897207257386208072793318093848267726450602088655370\ 4302204252540321210474686399524129348735555005171249081277454424356921080679665\ 4948787403441608058478495821661211355078919294007391895118374326467171126422914\ 0721768152142236494773207282369158011066739673436032112401130264761609638877157\ 49783164627724696996645355007652238737267783980794726105e-1, -.6172800304597287\ 4206167923299949635912415459447827087641209333205591656161275516317801615108772\ 1012330900358456212550742742306883532474446596932920524487629860683196414297059\ 4359170428847525305099847967803554755817387034153783786350069026660769573441714\ 4707129551000754926701442793988421497973934317658455670061720364274615294705605\ 6548269920064732051786185321328156694789811562121436293542705646754805043925304\ 7548057774278774242745348356195650033766223782764897308497175782709027735124487\ 2043799436773900350326e-2, -.15432092640183487542318061343278108766290587485828\ 1924799567648262684610279432716329070995911380582748961005399804710149432291590\ 1088408515813872322508582241472558743038271038353800153525005330057816985055072\ 0435142511014022570093337087289089383760021959790533664104001146556187517395227\ 0413950889549222289935126089462099054402922220547582331088986836991765130646988\ 4434644326501960164851416188516461952861418765211512962857487204803220663945721\ 9268771456975042392311513834096404972117693972813118325792088329280e-2, -.95557\ 0476410298085335286576477183493885893332752590579372546604735844134053354043856\ 5318399122326172255026365124698420021318298222464684811105122741750826009001233\ 1265136766008616620802687738099588312195622250395777257621342541184203378561285\ 9021915963902299286811381787747003468282159069248914202632509874857787623067662\ 1468791267516538010255580802572934557326912149323139110340910229571458499455348\ 8442353637658332509386601881781602936655411270486203105366607751230377278215283\ 019196250220055016446038305941282e-1, -.488087229603514008219454380916226652834\ 0686174852832321117713579331921100990835008352564194677725742647748852869534789\ 6317680085669833561248644683191217266383347324781370382515631287869825077793686\ 9201554778034526339574091858472266210175852990112720765114785168491367741024949\ 0680380197552937859079425119666655920341829740619362008580231546044620518834714\ 8168329902583990739963709130687395258548934492884368509144379919347658358961206\ 706588142342858710770768248291836098694875929769786770404388449429034961363429e\ -1, -.1757721975756538539463183417083543048003670113540312569418898292573118974\ 5612349107270047763921180377889986370505695204187197008710183669962660674896230\ 8348646953348834248902104191516044165034192056761557759484787747701553583677722\ 1785961325862985682405196040051921606845540747363301515457263666717146247837950\ 6121467591842347322119180717891954061045303606950814338737234984826604962163565\ 9733562645332109833460641963081905453774333970098289761506239624533063680673012\ 60859546997392063982866052557400480289317744e-1, -.1953123758236619812156742612\ 2848427280365766953265173160827973468442200364849107237903163308127081498617871\ 0028937278097091482804242876896149362217054789695477085998349389659031883539074\ 4577214816150415524274048507269151665263312266084630749664419247379555229054347\ 0061035835810086121610787181022667045817037810126873659889993817801722207276124\ 6749864123278248291314670674406995320555414166841605511852310405467376870494535\ 9319382674175037416213182693926493339790138274694786725436806587287524622852491\ 8925220140e-2, -.86696548414273089889840838094629974020855711052673349212326407\ 2631523004825437309374378645227537574925966308274320186168565837906714108109333\ 2958882369950762261536599252470408236296553454500100711401180103951799383516443\ 3527244131717285843451879186073327231768796607907146036331055752225011223193387\ 7429165927378569248902247307376550906136018219696078437111873610192424132811924\ 4258010329804221641399580273284942755967644303700672765389283668599927517976098\ 9692892048877352761461568565691925635346070048369330354e-1, -.34722152451819760\ 1965010238006078482021431520549824799849074291808069682819272121909443711299869\ 0397842917318332595656636409248927214821227663244567906544423236661137446003057\ 3309251880012716602249457218867160198024417935392175004782159740209577667541371\ 3842681351199632702110744904286008794703594581688013801800915839360364879522204\ 7392768754254309048864155238776945802561650309263067335938227651723365670329640\ 8105388861543744799304283429227489600790371377265671173415699823301485760036216\ 591209210921153597107e-2, -.799146727347223482650871993257511706760437983948520\ 4627870179319842275402416310172334195053031243613861566443647727642336426973961\ 3267286394441149036203014495996622124050207888736134445436358379634694435756299\ 6224247208664616510397971290455333066218275309416875885225310793575067547673439\ 7202787561010304432748642670652929915848920063420081408419679332431580691103413\ 0751751457403871168644211170492361778280687052210866309341068505650156779135948\ 346836024025212087581417292925470875698461207311232686581104944642e-1, -.449848\ 1284171710243010323978422944139624697383013063073603113339857378685302261896073\ 3089598617085926548008471992792704275593118078218354427793888232867770433906807\ 7897073330786665388681779535706967377648916236147754286768995228021685860896562\ 8876985906897949317994305961076757539725985105270184305125105493524234574921901\ 1953382309887524299484903777368917375666852183961386522882076349788305038442688\ 8319514023494095809613202195578699693416145540824083573881546260709837886405427\ 94440890657204883736117055948162e-1, -.1999866667259258694885540718320821007123\ 3519206217212736301238348593172280209023251536294592741812085729255899023106512\ 2439537282682779195788880680511102723234377861683516329945656822394240535858909\ 1452242435517059571115206551454093284819090479612041555175624009228931129753747\ 2253517357825873498602775775577970759845700596737207508721272404508936677515689\ 5632682370625461834488456253594313737869780911079643796108215984850868943969096\ 98967963976116433697932733457402649631303902343626470935019726702667604226663e-\ 1, -.49999791666724537033592372202385325983299527605865504122341291656811869374\ 5198158500337772243108068299909981577800774645242588104978312899726425088755393\ 9137557106325962751673220061890480359431809772089029764940408021047443592255420\ 5946981115948414544502698133427130560521749275831600921258106109215220602545725\ 7526718346428314674029612307619744387484261592164608217055528749932804473447539\ 3207368398372527249362121070358000877182957451702105157623591885629902881930383\ 9880992283926014692502853547252751067769530e-2, -.70254567467744719440813878908\ 4417520863496682613544030150020924731952094060543612160301128086265236533502960\ 0961569452798933227359048340879592621943372427489251148132873422414290609639442\ 2766134303284060304435505966716260998188531036263421633173614918521032125009646\ 4242117137298785844692804396229352252952557535836323693026167359592321479987564\ 7324615990748644523842826780355330570974740797473490941261532925525662928571783\ 0295034710628654586700572957906476433557995120724708155475175211977172919000411\ 965012967e-1, -.781242052719419545366169048573684902599485782814645495898952713\ 1722019457269449231863705415879462177661825740056017855181462018796570554432115\ 6480527385444159861435145642771922122248359792917296614550589075859507668180066\ 4147329498171342441825901100234885885383963858321266808908861088563504594806481\ 3414446932016976074100375928245486443289230600906944139541327654557088528307561\ 0702203096748527112088315217421793500525492552003640213738529503201304550286847\ 398118969374323032195645228043031293472416130455108510e-2, -.555269785749114312\ 5438370119688699774109673806288290516185088724027992688602128405306344186264241\ 5183069300804681810210043944990476978654831398017323406219154848814780158634945\ 7353988740062645381855186887961835627558410606456699523876519207306510466081124\ 1652158964007914481956767785408291335457345901992879712774943310681093007843139\ 3840080861941451521908562669728523073690358973213882718405496298151919767507725\ 6999401543067219089446841670535170487248390933545471780914771279280953607564536\ 37722377143049202437e-1, -.1388844235921038472469583558752927095285286145534838\ 5102667957891182869423889795730849790542190919321875426454356858996066350866371\ 3202099153959586590871909451732120199260636156451621370516370160564119155272042\ 0045540234702592341343109888018747561057318510885132271570186693905926566820956\ 8703597596562599705148571179684054679147782308714232914579862861813996889893138\ 5262730712039346821239316813023349022878992410736557287090795116546580887538357\ 30950795991501002283947464626545744003734687317651316925775372069e-1, -.3124491\ 3792168524246138145595792884918861070447534737061649565179959892151445216123437\ 9221686706028245306629573788632270339526968122731055609273146062363827809967509\ 9099631717338462332564646712710161051342446956237026675239667788914965278281250\ 7265964148589087193217618785352340195311321764582095425945212878579582447382072\ 5165033324229540058464090240391844072222907890400326155799376590699765638706052\ 9306287362224113192369654433819977520156633093582340546228105541768433428408521\ 5712072587197322605553958156920e-1, -.12467453567859780094764096206624087524145\ 3170920805381409652299741438528380894857531682457673790099592907497420238935891\ 3936926358715756170254310673434199975617063450229734329707155752374985494100276\ 2382074044153700303768141312208613275238171920424029709874891613953422153496594\ 7892554211146775898202486552710279425374957146371372129312674307654512948108951\ 2129580944929531851185097820451049548104894587199986733977538031236412156756643\ 1447714458157460494235057480364891629382878169582900848528812968894565834967, -\ .479224502597222084356477654653508812944389269918850179221510927326307378881951\ 8940574195613172389463633865238204860371627924494472795517307379276951403441340\ 1142695652610144205297385075432870803804675386785057805926450574893998248670853\ 1434064104092691299134811631488302800241974753378378777221235115485010584802477\ 7427891183531746035488872015164246969761861818634022458196947419383010964890242\ 2250096807098400235881103714007757117177394794693848180003687574572214022622199\ 266450280268737214529494310715082282505, -.277545372528035523589177214373538937\ 8683147009907093859187901231689184680339950492387883584035633986280724299223957\ 4597595810471301696433313060258377149397891829323285164611345210989081674339880\ 5143711661118298868448062533719746332226070684445906999014316374310391788904802\ 1006220126612148039694007645889738643223122627651874659458936251771170250824945\ 4249729462185713162780134474465644467888088600431436260943804227526737186421026\ 1356597363224035989843733477328486537127705161845759457891120629007254077761347\ 73, -.7023153172759538205166367438570123073086186681367682150251519400976567351\ 6717822907586212330553200040602608481837238893617167705139376231298459420763810\ 7812256320501052125024855448082596906218621209131441158655821792420916704673230\ 5714431923289636694789469374558586570370583486204119227447467718141512189759324\ 5386106980203330434284039386824681156089446715382106420266834151792335569766755\ 1427382911884798147732160947589702547791236243879712175794231355639687476936236\ 39095665214995341660552350373800999121304682], [-.5245588121587110215032946980460338881207435041445844892639634203282957879235\ 5693403125914501374865425741899414005023426728738743655696806163146998744687940\ 3607918880775270244512956049326389568760536755782066930513834110435105724037683\ 5183495004957691379423542638619134890605175895295011327694170427249267506134372\ 2415314652539349008863717399520882043390436722390851436225815159182496140935397\ 5821266322244599781065690774290146602513208047336266203326627344019424188279299\ 97107343393978592264660905839263532169656, -.6432360339954273456555770373253993\ 6524737593964391336602845135762977362987624255156547928399254132871368926122159\ 7295723255755744671328840703720696533349498616659105860272893429958919294884031\ 8295623766951926620880851495548322783677332472072521302977306372901896357811543\ 3513241129619203223342097417407791657069253976475561519109774345694180540960878\ 1693225125414903649910416357999689523061226477152696463318814548331424237547995\ 8244798240236649222956252374617986928445757069707127496563110219916428009156724\ 7286, -.69860239752493384983261112013027734804836726462873125465546376357191269\ 0430119842302270654460026492022184499161705799228745660404958845873152254910629\ 7058604096801285087417957117631425628518068374885776815091919654949953044319773\ 8014743668306759742969103725205048619595702318987404456638078470928800152735212\ 4745294022978247569377321568297902270955959892019569272480443963800707777683460\ 7352978772521897340035213421549665723304744445735129254101992336195688729487505\ 7594881125046876587427380251176748283170339223, -.77914611708006975911910566746\ 9278498909734282119061920598448120187280853494237052062303415055654431786280220\ 0273399439643228710010271973037381501120897500881935771369095735845690939141930\ 3171671682439881169149178678492132092162829450258883646416078925817247358179602\ 0357031234212863353283101961746350726245936346751943249192723233514745380444319\ 7163424222412227888832258878276840809685003022536575699263349114074213843797675\ 3461513614354437818197421379070741165815314615842632402146668925132856662161173\ 074962096, -.530511122383183951367753687087416635156995345835149714762080291534\ 4451260519085299289291131075746019624376449458140212349016877861880186636863833\ 5883412546828481233484757327743375716660104610146515077709498183040423663691326\ 9571699031971022710353784675079489030533260498669484973549726496171672306041865\ 5020235144999775145396170995257806893225679248723539947546806485245210452702193\ 0932147085228763483221760880907789246099121224066404481804904435004604133906644\ 690022756533056116853693685573803238068144333030743, -.602175451618312593685071\ 6681427812445779736236618303380933917955635360374260913949225080360483597270879\ 3705071935469502515272875136589029794372457498680086435096664381778093763831621\ 9071222578186616215623416710505957486067281836145982745868269935774367611385849\ 7540557660875150162826592429090340857098185290584473930120945654148000766049910\ 8946862557411295982617017299597411790312129099533316264019412908733590206758872\ 6343426301379573706247642464371015525047348308687280129123804208440843413529583\ 57589544190263, -.7331019122948636047979191380822995108445155514334520602349726\ 6443578821974843002891232516302168726954323136543165902638205005450236677205098\ 4315188022082723257858821011531152237769451476242708767212793473878589817512822\ 8751472426542426915956450715035978739776957570166027267571043518529340063152535\ 6965619715470163533063276253653694893223926233660112800182891548399717500931779\ 1020842004543333936371745535079818239372588143634201529207493924887481091158232\ 44593059235106528351226606800269341130321886627156461449, -.7768506465366610688\ 7024289672249741714392985754659217388800259086664505435200655924522331314239765\ 9389679281670042201020679028655361715219272198544592027115130071312039379140909\ 4930230535521287811624758240632743119324088923257017847738031505308553993333619\ 7555896408174805501863676128202160267767115450336500399428898380333987049846242\ 7130515026587859817509883089417258857024365045669281583532633447028436216436929\ 0940634404509033294970458129189237582878732479161980044762820215737285376260689\ 6432167392648752296, -.53448477232426632908382343424426920526798842962052666040\ 3508989875394611971151449584589120061287427600636987778994115415725857602039973\ 2695265171974938286414752216844648899455990172430121840823935687986599663513976\ 3347356024894568336223017200966456234238741067224182664348006359378703755957456\ 9929149402061268478430538761580236662783006491392902651751406172207680705725023\ 2857167468401396706919072337441675923187360355346075694011387318629971062818085\ 4865582576610387776421849174023209776113827302313761788532393, -.57434456686200\ 7518215481199872658938007371188181273745727692789841239141528592077364210171693\ 0810403138616521157072266006551783105395798117612334940602021470034122340809748\ 1196051657929479580324991339138022774912497122428089455110337171980075168745167\ 4716211871630152816319358493883530375448648891118879834456253659122701864705429\ 8228439008011477107669016918692373363901924169367004255319843405095100418788862\ 9947748717930228796062306036359769854263820101418068382631670761356887404723921\ 017933164605798715115286, -.652801835687869670695450682978757440377537732542627\ 5379330627403299233346139634098732156863428357999282660316008228930469406313258\ 1860930584149722227822746019635580342524183380747919630632526695836321170165535\ 9601270686526132499311680023079668142419401201558926307389679104360601901405036\ 8819274544706622582368630786425805018287627420713520590812990923941450389402826\ 7777939834486518313830328516463920823361837536124361593369186390697493071782714\ 299887404615180178013562843848145022934618702931523183431725499350, -.689774910\ 7538576524087888953699883116223253513505376234104274940791614265797382449908705\ 5130096567097397935680668989930885318693545283878833402481572152505063936271473\ 9622572078243524520971785207963864669282952630907121144291601233568157174727397\ 4363020386248388542402359029092380868557390447010218242568226846009541080739312\ 2662737212346127108294228884058705814897301439261700162100630717626897131898050\ 9111190842100218155739927672123470684347670440895447100265286936114385930818672\ 35035865633879997947276213812, -.7530226281182229728960266314828922378100629402\ 1566483036342945083555120022319797546475206483439418534114601232298553026171172\ 2392429398885564665320413582443726002437396708112527438663988904418848105017693\ 9889257323309158071896063875628166932168475554856053746113767299254349152634170\ 0239627729115896264534831268834369018099830033576816277569773381358079801361914\ 5150558677974845087953993364912247010521374700971624426136920280837898397521919\ 37750726884095033188150365559501550696194890238188646765075173857677254, -.7751\ 7050595037950251040997103899327482536700406835481917583399239572339214074659372\ 2347429117964403388703374762937969591402325030648889809697277547874346492913486\ 2753903402934654724464035735108061649077439233104464528699664176682828197364205\ 0253889206983640749858703258981093596324874479392563693420528247907587887785999\ 0521561658051446000292239354942967996783270025557004194436207611065709092746047\ 4134064755364135085329920794063129264137494952553377403787429669219779319102963\ 1482820261009013849257447782673910, -.53945711463960733386406241483816785217791\ 0716417575710822334164425638268970736418129712811640738306586399593265929087600\ 9484149566018347148857408751376872345137016703876257517189534677966899011268218\ 4130346198834926829421387613698629792798171960628407063622694225477505502197904\ 5893432620283687760757837734479803986127307902016349679843544127148010423558758\ 2860064456092816600361137627038605191555287415045172161984902036018187652150295\ 1810804559663259613179384401554408170260096547162976635327065111203102971267, -\ .628711858152052630206149492374561306672804186867739693898171906738694119916997\ 0295441389058095084953625174123963831582253177234467737110077568440325712020690\ 1995883323419951663129450204353875537931731763734443436103548699007942628023735\ 9175955072775837225443801239606454743341011665348112229062749670389171575737348\ 0469404831428330780216125600195222539464961805860148332170814764235745904694105\ 3600771236064674990744470829834696941362974457860041407445942720507622570062897\ 706026165365604172341754729197795102433, -.711444775746056975789259208718773007\ 7443434124561572107412307619503774454873815269500823949373014034749201989740861\ 3804993735876930587098708885758531343205612164872514055614571196008743712515199\ 5784342687258512852887270810982324962882325619303954551447781981676823338783694\ 1056363277655526620876378195626953192302481856805735480714877953462264336890980\ 2983138598429533631234052840781638505793913874672275522018177219550634254776423\ 9571701088190098743802505844500549801609797914716997825920022044769669055365722\ 72, -.7729132480065786650893723380107172452335858571324116284852336270131764974\ 0603808655358957964966641771420677001348454216393963197364306202343294861900126\ 1937235159665612156038534527658724365792552958448007392606172382528449526588317\ 3965650210999554127071515230848718362413244003087455088635982741402766175582722\ 7622782507338805955961010096838020335752493041812461351223921414697858490132920\ 5647819914012066980092931921946872854223433738205439521337607825903087994761330\ 38944213896354162357048049884125390726655165, -.5543999164400669901735275283051\ 9778045185717857545577807410884766352616008837642242796806516837939820049239644\ 6161939077549748194188103486221785902361449549996955279458952811656008587172122\ 3447280760903295503186358993532319508167571642153950412810378945402180245530570\ 6173767593263951970031693410669237291927525598660316140352218122993248177056832\ 8514581812968937314599674095885906008480828521946167220825556322442827764102477\ 5048946809341114240303137216794420076540726247047100194495730396263422534201137\ 9418445, -.76519643067895720472168459522748383236126890454457602211142675738140\ 2960070373934923846483361250949107340169416644852874552985368831332697431821935\ 8961602224054067510818133825340077019515214373706014447002580364719710162102935\ 9934633835040842368876577244263731302157419049971588510153112979885239486327620\ 9035464668808445663328205956525592147184420494947983153347597596389058473737635\ 6764891908858808172016258689871601267030707648297229700252410043387759039901622\ 0645976304226898678539671691006171560772281329703, -.56636765072397132683787009\ 6089294058086136787998316134793932498401241649923155795996984410644191057744722\ 4525309465124908208458731572676488917334201072971613138196479318898303403226833\ 5318920553657584382277255389167524654408410508571616205897157223327491616137576\ 6866938684423512783185712797690832364601391975901444829612687814103544939795787\ 6981599490240563774155496377286137047953618527232472484200795638827917160264317\ 4730439981619896266587639516184352966762825505973682276621254206087346781821989\ 480502501008, -.637449494668087022650238568120290991344598086745227025639718249\ 9639388768724869744946730838606989183920229825454583547949147953614610859072243\ 2762329201766255918151616086873146036696647275196979356523481193166523565691826\ 6752932579100568555439382523468841824553476619233522198646432613966025170571167\ 5868351035764260571831206862403284621061964072597388097711658398048093388039880\ 5886139166860048627987711972168928062076552202769477680929339026052199056163881\ 394756222597472245766992127798036789131737834974708610, -.703800212018894317850\ 2537745161668598587500001107280816573046809127673737196815664193820439820545038\ 6686764346670220698009986529283390867975937083956272089124003255932579787155703\ 1894462182728409938749975648989629095838346860559133597583257109100466057155823\ 7830556321081534440245955236604516371903564784733386175123113183699538400189873\ 8645968008099886911506313929044393229714881816657764108294264299052573799616748\ 9065671436716887516920779853800679311591234437097168611217824507201069753052349\ 26076221532400557, -.7581249330289002742793297563773462002497616642826310753055\ 2566065763200666538740432475022907817553472749181523999662917893530591631805823\ 8396463237903635928859618111134370492728567871211639281949936570248353385201918\ 1394383758573579092160058796128785520630200682495162845554707744827937069886621\ 5307853252132657196568902093612234469374602285527684502983803479975525908279583\ 3244731048777137457328688040238863520278875809198864467944741332153527406710845\ 51585073062261195397847229919325629941924196291216592076312, -.5843054354856235\ 1370297971401637233558434360572431789977129779016584597672664765860166248825547\ 6525065542682219062147524895990274539938198974178057395322901517273452361078504\ 5132198194036217193519931250225903335186551328811536468614165900787186037289051\ 5347591849335546935811130691166957998330020277071207085949949874638119495685164\ 4127145234156497040650069090647796983589609144775229223375800856356266771984700\ 6017599455652971672409037775242116948090681666481225589876301715103069803742672\ 8950399085860843057492, -.74625330070276644143526398396630135133026314530291535\ 8137736699480192193914977007924527821665397435637866161424847160384215435839180\ 2867491094438152872104833935322907327566646371543536199197360885931876151743013\ 9060195205040431240149120956504565915831094241850385738559273343818664211703790\ 1807097963953930159289738610096210506880699497591781110421106145780638486974520\ 7032221655276431146919070502898095106913699658906577220379426946016020959869266\ 0929820955349900425641527402548783243343486194442107676489078441, -.61401995471\ 4800759584097657331766390035240862256492405068148285531418236972861543410746414\ 0937089733584875453442228596571342537776485198061620965587197128364514991105733\ 8077778614430094762751918300198603700449999972862597721553852643329629707673179\ 3440292957751482434558836157141715697917733843235969511881017949105363580833285\ 7056765144283919671753553428499866219470152133844366644135761423783842986647979\ 6350762640811370812049209596692854443459327546982876141976012854638382952178415\ 668743322298551657380404520, -.723733368881516414329182382578877138746184869386\ 5770832485346012354060012973291352428766833559941448127934880618252408455801384\ 2562355434736515668181806986778632761620976007561274098137137014538374744603551\ 7721863633412456547570335332867740443462274736241447732204173170148836741498052\ 4833054504462893298223302205675214978195686553259436976066049869247891563938979\ 7693365140260055344084166468466696134714531171680866214224197482614911880035051\ 672019769773546755701657872475180651172629307186987791308299727868997, -.671581\ 6950943676032267757933140667937945186163351079505424391112234652584617846224347\ 0487916004664557649994262605743407506539397582089299861220808366665103246843302\ 3467915412365815369898214506251602851950817419625732655036925010258431664468162\ 8434996126770613678155875397186218739109337531205746393124850290143376743386358\ 9050155037339136335121705275843068607196147497460464759033140850446228409825912\ 1823599250956989303332307240745103296586094502641694659629750924892205607812756\ 42745351172346852667354289974581, -.4949946365187199003470506525855924972743815\ 9916363907116399702391680249937676783734996842095459244128941147356554783525655\ 2967014987216763786354690508527677870813334319585084038819192435077468903376574\ 1081041662082234883300742614583120627284947593951700594029323747995040101380588\ 4738179225176550616098743423986854384815207693123696575794203189476212708789359\ 8234054786452862780258045165737694448321957282822062695084010496505279366915009\ 62905916773379926137430365117239057954332243974824494490380545213136320118, -.2\ 0240006776470428829205133744020784606258916523015717652900584114995812800307652\ 3867822843906803502166880125125443009104753124774582569202404735577222370380608\ 6851910726553264653149908839867245447922661771993330958949113211396233443531375\ 1179380042851796227570204829531187851484219149738546374779361972094398817283138\ 5097865132503963709865850513226921111084673073682361921976859818002600711533692\ 1575153574019987161822457729694667738662417256800380983850401068828448946344513\ 1186652140523269605478144640370505620, -.33139556233855849526778501519053390392\ 0415490298149202502511971787275798585651143194028284959892383456154544692488296\ 7085999299591671560151272994178174673168801440685809829992399553852824583552732\ 4215907510423949305005191355832156876149981278902024958968820623727623869170320\ 6248186323124909970623392871957566026780835757683497843224986617748406387059565\ 9510137212582902634511823456091261948605340323355862842303943788290068383193318\ 2349610684676875756228016880958444489379244468026522618373604893274274462311654 , -.110696099155674851358412701414555740392311163011415583864128997930951989492\ 9487641399109832790316504337451858158342461192462778541118485485345669170843963\ 4934899523840279707731660535163893480108889585078000407681305005878122124130535\ 6383485983651270914046783693531973631992524800533019979141498775327888816888922\ 3283740743334009400185981077728299505629353298262146406503382929675295086022540\ 0647383468963624599840339360748567647502038041893255535163065427001468105113528\ 215491736869033587152312876893041204202493], [-.3148904878406956768672793578016110837336520040775011580104680246156335271768\ 8825337885857509388748958401268295264920884551828678654299043776760089770555268\ 6916132102871054333036476857700252700519850402440669011814926769441497476210757\ 2132512514890914540657850462162996137439018219495140981476297500431150554966095\ 5035534047827731444649663618943823694631834728572536482874622304659027903089628\ 6828083964692253755824850834130648237330764803878817800402101258589300703896660\ 06265384476359934707885179255438193616721, -.8222169017215100725583901030439929\ 0796762489153399152439162441596687974192440250584003296296142058126284853771280\ 3890222906979391422054572698023579798821158916351729945774832997593268005402419\ 4430968853855823157718909627901610566735302133174042496383827344488301881170827\ 2894719007129073281476543559217416749977426057111087816033736456852707203587440\ 8693076585078010634819393646233650779139966866647547330601651126331173334612644\ 6822138378357803384117312337427514439662775722686171464086433042243812327578246\ 1909, -1.3663863599883658656296717541655413473444355237285948685442805127330682\ 4504756260223068913324632850151176622044726627092958785783871001756847340799998\ 3412747293339846428859087025990549128131538690599550055326298801772328061619589\ 4411439855701725552813692510703971978521813331117353721012958203370863083219653\ 6185018371834964049022390102930461130811150059645526062065169009703935874795729\ 6687921710869986248692183834289734807706821579189947906483785387249869646414955\ 1230673527826730350480961640510659896479140690, -8.3708604753809215166848480976\ 9569598856490493361623004472375826914638346969494617220745524401114785814524166\ 1031102280513263049581311288533045235113965551803364731264938851937438983257317\ 7704730939853560574806303755313744096704774439237877015847372077473730096484517\ 0746314111680580358594938061128152247872134144665592095688061426133837870658476\ 2885263600931992652180865130779166407043439075384745414167724740758867239019712\ 5783117508197321792910633935980884013476031485428427183413587700544254592081058\ 123128690, -.331226820311670728743495345130178705326826339170634613500212036358\ 9604611335629908271002396243830084765836971149012628513367033837774539391274549\ 9047236656801732948804783791117809667624106503085366584173692348181721913022124\ 2967625824051537232781435114783342932789369880919762941619647950780445752910504\ 2530916754933063387070806243729266268302026047408684357813960279388663166479795\ 7601147928242010822294236426649296339573801792764579298195465357571593325133435\ 664739554031722386799658259553847682174003391971893, -.590175250877347378966495\ 5165222120890478254437548628826421107947560016878821576603330124230675222596849\ 5306575900294109191814795357210937526234866327618194942817670185459412903719370\ 5204715464181525873499553150526961248789422554448446074385722241650762183997661\ 2207200480722451358289308880150150463962079634406875157547205841371720731495513\ 4958604907011178011900396137944211279996616483057579603644495977492304494000172\ 9059571726087527100678227260166658649079698732522424833037410671186902819532285\ 69067936505941, -2.082834752255857956426221833603623159963860065758443837203229\ 5670772467720666869452156599637602592527692666179913728450187566940103736536519\ 6049093536149295798238439158505861797986735729228173562488567734503837178073274\ 8432689377190015371113235096565501852996656877629804110838150094227874898919195\ 1672499866756391766687200777805798971946559893622460822958126524896357542731108\ 8839324930177394163345023632270048152518436415454093190659981007570599432127766\ 83768802953931179947939385397590984225821429711075114675, -6.940242155964795438\ 6263893397238093571385383854030835570785346910958997476143433445964751014761954\ 3827053977933723516478001259509242720661120729996229957815583571968713572442507\ 3754605219815145473910994944009231936934192201732753008245434949112641924413864\ 2036380951301042563233472861770831381305553555642785408398455557095404204146050\ 3985446843042668888363210745834257864050275849686095549887730146501971503254961\ 9774736425755279721180839592545145851026689435159644090621039758521859544750145\ 2351856694290452143, -.34247938839191703983879944078723285669626686995219708932\ 8243293559136692650869979115825861519061334001746872005568307637845146468134026\ 8585228111393006918171102149122312820056113445248704062219215373190358784569771\ 2697535212950393443464558583156397981909207074810616870507611242837235452240329\ 8748151761742614301467752134404047616577933722191129887256021378371269719148943\ 7777089315051773315002112800214461585372435337307455083402489325318173699621806\ 3631468319031665917250205619396490425127395816527386857230624, -.47344785297199\ 1022685392583792528981748857317739235622610000717059088599287409460421582195338\ 5561847534157950160226378772458846911242201333457348994893895364385322109375183\ 0539640480726259338221170659124906477525500042563911907931962755134659059790133\ 6673760972666624934661493215591852076477478934699991926249798726755443247613263\ 3083032560079973734209016336639890800368858269681279757758998193713802141734448\ 3626090491764269094830389247548676573350469102209640211351378775587163963919946\ 189639789168359601722267, -.891252594738269586741745794383741600678442215710172\ 3208588038957915281087614794128160894081208726692803956128533132791064023912612\ 9057540963905255937806593946135431354517123992261843408548323990699314958333610\ 8886624023659575965020108131392639044063122311717932626006619302137618733175584\ 9791642812316666792071545984661696702533943807215356975256208123148952959190901\ 1401889014497413182975602890540842743395208474042138756420850474934112929447775\ 086418135998660476427707894425878369574647237686769702301713238860, -1.24887347\ 6201456040332283095245153116931062298034532604842667140453368103542975728044493\ 7825630710153287491178481501832462887557804525411499588837826064845121740967150\ 2474636714207092035417808316219464334657860733524471339123735364309644709256231\ 0669058933923266175607715916993553397269360867166270084867908195971831175272073\ 8882752655034255149839149975878327741412820115752736242931056686336266243904828\ 9375518941647954439094863961120037754350111784971195348888790375697775720061326\ 44723364812054169047715087614, -2.954725240665424394023203639304299099551308480\ 4660567316701795385235070289661975849996856404484795104647589284701716800778237\ 9469926268194202899358176287475595231552715243315888971751412089331588260809025\ 0242714464255963225035854342835395736537336536515664575586833136000940164874482\ 5179806055005818019141148509306194831123600704370260290751070867568160604896111\ 9141159588051362508808455678141717733109360385241772374646094995767349592953212\ 89144427381652096381151128246728617101975682502544888439408743156519659, -6.222\ 7650132332109505986827565399608342622772305363106204849856592600952269912346240\ 6150714752259797644470880576890478306085838197269289883113567434867685778854727\ 3276824075354032973902392257080047542985666380190092326509194577920391826602066\ 3870808497512469154335001691954727285876518468624689848595955418462620018747827\ 3165013172232898930604515105715677550186472821747447112083856501944986476127024\ 2862905569321234650348234209214718302105088893283677777153929690442746298941519\ 9815917300579946373069052485917285, -.35696933291926006685153189047035163413466\ 4107737067860659713959666435434279916668411506565008974586995273262705627190675\ 2907819781924271322079812810341041818862539377449459573019091691673309902608210\ 1569898215966355680111419468612069473810730873958469629488940878748158828492199\ 2104520965619027582649912094478291434527025769393588516514676535409487595555260\ 8901340172010162919702199747331277030812116624500045317059330984533639428507160\ 3125552632682787721116292465220971933307840500777600605258015741321208153143, -\ .729726539477741518903283758613547077228090202918369238080444429454091575597486\ 8084195631092808780091829671354816417583607476187861897072499491586840259511708\ 1673176244538094338109504351367945240820983924668026930873010926276086541654224\ 2856726873901600857927954735620496033199806724275840770924946618289719775913735\ 7326634004190187870923133332022303946958540572835666206841888766355794627331294\ 5831148251028688476463269956684169300692274924904816908306752032960831945081183\ 913361436689503411204284714658364157480, -1.57347265253562987880462536333997327\ 4370590910084833882924750281517566120160557026023871923681009530977152909968949\ 5573295168673013802748156009077128399339525375535439178744153547426513216077710\ 7914097668746575060101878159112418059716190584311396942277360179557043187582021\ 6721465604692672219753901531527166676682117001968670158568757444552047378010138\ 9246965607308599743219407989369803940699918452126111399222739743570630327418478\ 8717892444289549930885272808678052728516921947616630926438039273663250553746280\ 45, -5.503254302602524652886769683040107924264235804954611174668219471911253100\ 4387409444184318445396809112666872559967177443898435214786868251688809578182910\ 1194045176263475115747467585742678999470617494339515324582729126449928282402449\ 1303002921198110290444378743553592908025153274088763916592933938170674405623252\ 4247738724751901211916166338779892829014013458532437076866965076397843638414674\ 7847188145276740792240700516441919807176653891630283535336466429428457922834826\ 58395979295404305225503808647215621330084908, -.4034699407612569982931402434789\ 2283916187439236272479224915239669463130834540242122018044057048197613203104059\ 5581863854962475110360556328659081596180747953529089353905184959752481600385882\ 2126777710032314667131121861526449825034050764097089835945524006112766702397226\ 8464359564365626411468081347018740504404043752894745429029901634506818383899942\ 8797064966250450822849118942971281119204576327898687353657336570676294081645587\ 9928444491772891457346901636843821707384518934648211025216184236465447985186168\ 4420183, -4.0549725140644470180010662724465176998881449223280235531967857142961\ 1974459364631086845539571732596189981802563398626681876715555838997183478565058\ 2348863659185496598681309274190062753330024005513897342563687041299686957444484\ 1899583866211866637032651130621292481539451378258571391986629623282549754355259\ 2741128629633647300039401088015792524066225995884513229680195688045757553443179\ 9058464771025424296433492997036231838047562321165623332525861049272366296679177\ 1374660685038174341355723339062038612851720169034, -.44426998491147845551905231\ 7353051114181395527342005213902941170584362845616085722451130986081842196041942\ 3672558461368624376299304754834594846193052101906463453573954850795677098423711\ 4143093085551057523988038295053478202703599775343092859784780162617791341700685\ 4267438189336349183815653963874430529639279285050448793534416377563064785476233\ 9927116319445502709729506360963295706233628511052032332652867500583485220111981\ 1477429378220991666893819876575145286968059514303682098441881329765657836283167\ 363097693982, -.783738860328309483675635307105217575247097605054567649949959253\ 1376877718603012108233737038422873982624985238004917783601765394813521306828456\ 5902936567756393580485806216769583449456460731768951809916918646990940794611442\ 7862901414958318975985061804353399079093871036453024933255046087954030975715178\ 1182283199771155274479083986757679243651226850564208648219914033201859126824272\ 5571413236104961781190516908773343393668339981969689931666697323660296102399413\ 282405861820112891857890714398984276983970540654186711, -1.44430515029178499710\ 4936678165900109054434603061763937335172761583852474952329095284649019311267288\ 8569778290828165038332486237586121733202662868616245921979459558903405812938157\ 3315626745834102145283004441704567253334736031899143634870713192625381049212864\ 8892013660265034173800084523479414457656500111507358072007709564107393137113661\ 9842762997430333862158327981984899992040671346521875155605620899073231530560070\ 7823963292924015826617756913559367805831947457103945649482307412790748028684237\ 60354257334455016, -3.323417219799137380890380688963849764268494823790624521288\ 5697442315850776897025763456771704330532396030513184488515320944644129869429989\ 0824116279522874012601384203545669346773091600374452915587943215460294008944472\ 2536496565164488301373597943907310793074347503598042373917273453969450007631664\ 1206053207163148021209243577361755336818349960470625665459172455865983316460648\ 6391476846310364101645702702563436810273581987790274840207516679125082497160311\ 95057802960969545987079558977132856355068260145119583067154, -.5123692142539760\ 6424164732225103423744802104202934623273748508747923197597517529789897199897670\ 0955457662912825756726734704547241080739017175140631140122911475175011744287111\ 1707882478179831600658035033217313728334301588039913621580555882912732325699215\ 1698072733121820064343818612699193567075372396143764867726599610443170036170876\ 9509138550907157118528294015619874127204899227050571941957008124824940930026833\ 2508099495747525437195506893829023848186408467060891062385654170257587355278583\ 9664426103666937774927, -2.5833989079043467211344034802215568021797389042505729\ 1162513885608672512826976380481164222419984038360773269253162060113583055404620\ 6604532470405596281629863212426265092256833455653046300900726940564397417528534\ 2258024151751543534427971865651963599744297249661000143042132421576979713080694\ 2342344074931032577711903179394106480178451052214083186527979903950680323256100\ 1432794758884719439490376194702883038465283461012089722212279289615172823571602\ 9917410670340389519183911159823595540054414243377127073238808224, -.64842297526\ 6202883608247460873589708678358412822547133330104714298582701022847074003122893\ 1089706352880804208246378226455313878458692451605448981726987773644509085835709\ 1181850038039108646692407037565695032243405548719142624268219961778680487529997\ 7727414734465812059594622995359977018394610158970288599033914558976124206122545\ 9403520990296243375329572435426047533605045265195191879198634692618525226326236\ 5053800885038065106836764684386944034596364901447249192765927518233709861653254\ 446951451367167222250164758, -1.82947556163076100037925670591250005014851510153\ 9249494206621220093749084514128954272549271081856141011146281127790178069989138\ 5080284956408166698069470459074082299421975697051273953843198499972501147583201\ 0775227004021887480910342139074155655351937867025065066947311256505052276659800\ 0323190812421684018706951059640338360910970768918225301768936253243883310301604\ 9267210059014273581750341214997287858199160406858633298347602992076268098070974\ 586872617231152068159151021629256610987628641808443280082098406444075, -1.05118\ 2085412522670848398940188507268359491908179729651715953747428793375917754993531\ 3216700965375785312714312511042954140381673130410395845121364656681373999350467\ 2789133515303235157960767889056846511426981464879609516547188047037567401667936\ 2360964639958311539602799041255489788136831853302523337276033473282915645716810\ 4755829653982941865387513303763833265710881256133058909914168991708793030127963\ 9081420363701084609542248113329078347282182879906560251590523878704021740442241\ 78955655701729008819852628216165, -.2419959664297382052235586232158387466658960\ 4129113197388910122972539092794310257765202445349567301919947138743058490962893\ 3659311889969615295589784549493524311493473286861509223318474990713314926973966\ 1280026404233642841876364572129527710199691760297463069332630745469654793129040\ 5748839892985250013359533864395008518869618121407206245189961398408062335382660\ 0843435359754514882720720118097885970935761319271214077218864554017730108892259\ 96858294716769152311485627018845980024052943424111671857346798536546865140, .80\ 0493978070667352578270770425819962649194877077245181007962004387128145640618822\ 4968157657733084525065592756316009373215654375079894566444796896124096945454986\ 3540072784909298069144281988465715043474872128421455986448742308431689863261320\ 6134215544888634618562762577567495578231164194650060788740697874774284109637507\ 2152908121310089915282375837920840342292222272606452628784503697465895613926925\ 1512119028984720954998987170755416791983121120736447761528372000714329092431895\ 498948000485271469436576178227709350e-1, .1008680985009855128389572360857415564\ 5092528564473363116935080691670140601492007467301488067442264578390957903309898\ 7365780418596535799195811154503865084800863892199985984682343237717262881721745\ 3783243368079910760130344809493414547234959790358336325330387017135530337625818\ 8618987681450316525069687706259984796577705987472393712306828372872179707739610\ 6442638856441871904396264343533034046752521947871282692978448305181684359635189\ 3980521947525100795687613892971108946108330366500930241037738529864414283886525\ 7e-2, .933137881353574966219390559546472173892873212425004025438992605982032836\ 0229678455852893402536188388766805556691093113661829684611720601177730164312707\ 7564277741555398748044704640626897337574546427592966963518175737846983824687981\ 6649855713343252666637829624567300606296262715777965086412030594606588989794098\ 8076529261449649305378388347710976132848218831156224951466737986928852599134390\ 6879126529943965775506947715005255167988705027949365773478413507415819357793981\ 811997955368324635629798702938292154380169591e-1], [2.2746839847730391189008349961496526422458851473926591195649567212301842891336\ 1845038066639425082358806631830677530731309419470721334730490521425545825514131\ 4528062328864959256960797447853570079090911076324909850041435634540142070286110\ 2815969192586451171582708014090783493764647479641926214231731032023691504528880\ 5303051118399224335883855994576912690543748819382436523182914107547155560748160\ 6491836082375285461718705855645065608496020557288705485821556221584460804323641\ 2097006887344267774936164761345416654855, 5.81687693677931281734072135713874303\ 8641369297349401884479778213099570075262563363885924664061583828869164386179727\ 2656679602654113585926954295080131836992151700351361382502917998868256232154474\ 8978260368153034064751804574427395899062894845717124565615989946810770745652077\ 0142325028160515777730288067457214469285210654326406609816873727409830337857694\ 7777793226322190719123267847043926831335856058399667441901571519367846302327787\ 6122975681032743981294732490246755687793725082928323728552397667851747732723268\ 93, 11.481967351368625475458517535144748743837447330451807498716769156232541363\ 8462182135822285415820792237167028197333351519263090650418978047950469255837735\ 0826814584049285277762218707871210265009767374064511032868945509903392435520606\ 6142166630097136557349257733356045607062738009971434084616139179168351559259228\ 5486075773739079029758682473433165036920845550683258855283902362433482913639739\ 7353765045889526735198869844518080889896642990444238904378445722947046550701363\ 6221053728519729374432673281125492513024468, 287.997090892251197331512489013797\ 8955661499951944360895061000450549458521858773788651069275981299147185909070740\ 8826725892876419460033238813123195549977598970496031920124811327163273760131503\ 3860428514568747084082204292388656126784937527386437047080986453389172143544001\ 6533363612623980110675256655695683517959254875395449592440519190078476978447092\ 3763422570076091549774257588563745092360831755761007295617861475487205383490942\ 9926016489058524284685388543089600171023585693475211330716711715731455460368815\ 75655, 2.3657747958829091434411458569960827989895699824172882442266942152289465\ 8206841470402066600536736858748880664062595090124080721054841470620160727826865\ 5219817159563653750849651055215236567213666647815805906622761558585573523812814\ 6710238156979055508603301348893024673565564784685430748469144939836234677784008\ 4407016197895167441462877567658174402016464170480971957519843710372808262362162\ 3933098399811577737702603261944441047681646743397133134547837831336731300647375\ 0252337413324004039064011081027968022013142488, 4.00487065046549896728620231351\ 5597371797805446899622217101887982893257364938905576989505942837176065268331575\ 4877316946323203228630888282996516824186932298636431640663740627611453061234745\ 6915807785293052822045423752717694208639295580428915872847540034878017814630340\ 1365625850597625041076349417432273233393453398793474761593776525016755594385578\ 3534449574698517711224928492069836541074090296533217389726020159270645839888955\ 2062829406185897171976247524566077052941038345936675179416838071323639766510662\ 51957443, 22.198870269321113220747669603775390698385215147625757925172458255606\ 2358602569745488252987833465188541495900082960098090848935850207088747768904276\ 8833827649110154991404168268929208047677699291514623070750079102149229721731711\ 9350071257637640121364652614164587362225045007615714648945047915781595904997214\ 4287699088696499780527351631116673747411994965271170655894137816020952315764110\ 4440145158239088944953353680056622087342691907007403077909094977867995122010919\ 9640969908702190264011311074390758161450078098940, 199.996038537486642507359183\ 0404619593476471387210729113049955765293764398198450001304020622307203812740833\ 8538552367996308656821562004700029900787140380138148896340831534685141209137341\ 0348870813640263804438380617133179395021661017142845205111616047312444776531577\ 4764538088704024012302653457488296862196780020660731443087098361538174934750868\ 1147765678208258239966773267766285978402510166320369707795105821433173840837861\ 9700581848773310651998642562902834066466930301911620574431283964345527912295469\ 24486518005, 2.4293123371529573248791198926214050940590686248681720188525842757\ 7229298776288741379004082201209392296912856978181815071484806097891757723856939\ 5772024502207032410188922857658811613451774543923590183985996251751177800781179\ 1127880968130039860773296962477392526678385320330618438046906066747825860097901\ 4996465632494143926466812165109221997811721892777441914554708146715610019584246\ 2710388428273183579437631649046219267692732693709613726433461277612684553292564\ 4067524582746137390509520355842714636747160700832421, 3.21880155735468113499639\ 8963308380210742389493631893632597932165437559893154884060284908717332927941197\ 9282923142941519231700939508789777898535739124217432176804431879083708657474797\ 1814496133497264473497154772832629342898167301848257116399666575981010535750786\ 1307174571289864903367445987829633657348568376991525777143061775690141591133399\ 3843580520335579042295691376631321750383527692648310589862516445119661772162300\ 9997690829732550764752005629138567032172707050836076040885449166122673675132586\ 72742069996766, 6.4231597714501015671422959489979096497438844156437692238089173\ 4998720196636088592701693526512450955690485859234633561218035398059001946255933\ 6667807283873139867112500937003855092781419109228682358978160982490511542136668\ 4003714415888112539873666156969209171626578786704717260089624621634714409702110\ 3618697702195245461398373062826163143537268613681535640521907659707033651374767\ 5035634020221550331157899505257149409227955328692067002565237381097790968447162\ 2129327005148329375095713242061808026067034801705389324, 10.0832836146896590199\ 7393182871260010016712489345314477300123309528703974567879310552126731017463030\ 0652499113433698860028875000921764549250090630048646235496096891426900529157080\ 9104510173340405695102182326359118229032956912325261304420870005212164948548901\ 6717947426254885375502361568936008144760784116473343337306879943427679911977974\ 4836027682299326175355101058906825793165881602155521198269947158077562801875921\ 6138088579872622859789696886514810677205416542639617885905095115048452891640050\ 99829235978261710, 40.485350497943439577130229348001675561754066228618958339138\ 2930997744790159263398555806435731961232440017005994839130570365482781479072673\ 6188992579709766091259250804460696852323440067839232123687220560433759563764849\ 3965704285527408010764537047191538803717258550029208607413424054666276536525124\ 5770520105384920862359485916234096977790404518308274966666033190984624890936785\ 7739462770456574534349176701545747691306965124051674989830377550407970112167348\ 5370344360957157484568304471897569486431766466978229777381, 161.995271662829533\ 8571625783209909501681337035114105893069706544243917438570344394007969744762540\ 9800135262202997961467455379223293756228927185870409126195897994609767656790957\ 7114459187189119049468805438271201325531128445845412333902769283371974540160703\ 3611227288158807841552448303917528858390132582430790181984447812497369872842126\ 6929749999437956508858976334420446449203923206675522822221877390264731847544281\ 0188545459353155361179060315725094239789320839096734298329927161721425467930963\ 01491255265417416447, 2.5120971068113697407630206468211566355795145391929992188\ 5013780717457943655837195142204563706537132969856679964776120585437287490236604\ 6918778327546322467995472866735156622013855161157996481216453434283190486142740\ 6379438766280425902354699738282237576124806385311218668304678928590289160329968\ 8863055505402931765894929405187087343307340197205312784905391478022850802772941\ 9713579660875664466449474783699025434590272012401883787779035597638970714058180\ 8486261447560490108203876799562729415533098648249057159140090, 5.05356666428158\ 0589920821033900143211780339118623324115548656856273839469972108112599559332875\ 8864493116473322177853330913234930562208660552763845712243593787997045026437273\ 4414290172039970572050645586176891500066508466964939321743607784515301226184127\ 9698459264410602757109262966733897759444787488245221464854069554762015281379422\ 8861830887382197140600813968291614230242507051492459366389467400930724240702743\ 6926783092594582544397924867949314414102447374285970572205987559665007878803462\ 06916625808219587591138, 14.189600459941180314340867744780626912177428464402114\ 1688418266560317490181042572169604807336815492686863707919897913418124977295138\ 3734689757679683937242943637317028268585697032465755030041563821393551386677357\ 9924567126913166380119917672872661805702689146848806636513414631868329523448261\ 1056141195906510103689492319492369649635806059863011212163162220431401576221670\ 2434196960745288188367788974114220833060141944700940762285986311386311421161684\ 0449625173854632942024132148235137561190554332483546648906285919, 127.994245325\ 8277825526614295701158458025424488476687499401717475370589378354562599548153387\ 1924342175382306113958579369087969803608218011459122066689843961487475460829405\ 7518369915621815819738725965237616448285749865479138097776769425698195441683620\ 3000344369351624378354589729523343913133486281727959906581110233106488309728801\ 5851259103110988732546205034438171984952276180077226514005884133431081358252075\ 2336543863634326284817006858435519978946865958314849233659568177431643382195549\ 81906242515763172222967258, 2.7852891886370050794789253731674934482156825347887\ 2998513022570635217299681439761225951526526760417210848253901384915976623343481\ 0034333154045326260950443015187764602428837290836658811133703201113318164749573\ 2604756685055432523999925981433995119745290419391509620559043051753830714716447\ 7434749052294158441984193452101368643721639237019811128350629144589331447746651\ 5431309499760631824518273194819939697259593208442115071447392588612659034030432\ 0961137405467960081016198434941377438131909757099961366537798164854, 71.9907656\ 1943744179614264613612994736375818168026510264425260856060639443849647342601497\ 3518484967262519735591487989489433624847232349721882688974103200572435868495767\ 9565418466183791978453492206622786861442987068257373045945256020145504442523166\ 0137581608696950337673040588652972585001854237378729275967556836068491649627668\ 0715209935955947030661843119015320862573359911764915646832426806561189024181400\ 5697283797313229330475608484011337806241520130176749540802852290403714052062516\ 65615649788275443171725441289, 3.0347054848262831743967207647420120240141917131\ 0125637988430949084303783037983683096993778665063186929845771139892468062092373\ 1685512342364396795064831342578672492524438818492399361836672538150665729705785\ 7535499991008956612764616719527935370129848019284567844539571586095861975345133\ 1616439639794928211362864488607716942270927548239931434221752338198204633296833\ 1227655328016143097809160804524651127822744459891680859046676066708719093372464\ 8600745557763195572474701717596457608571595842865247015047345678696762, 5.49257\ 7997152411498977599547054826450735765844893491317355659298956148710203314471465\ 9214704544030504906315170233678039655262192063327499596838777906847588705480597\ 0336830892964991227707265328342494641982492853536447673498276378736359399252826\ 0375724731103607262810126458927108294653688526099565100999515358531152986976719\ 3360526040538674359713792939539144503060044494663060085167102644204026895775428\ 9099225887414358261616538604634338454772091493363726099794952547371576408923026\ 22301610236346852848353335585059, 12.464149883497300795643395555997480869531692\ 1857929002696019339927234247375221518026504028191584604800586792877232514558971\ 8610273696962393940646339215649278783164295701228190918047012465358020611455017\ 4933664136263318967899190291968318307665207104025705227695993082077544192048081\ 5339031904646372543749485841204296646149856014550669657893448655313029891324676\ 9212067231165980677088920397276272281505867330290883348482631175887913449943901\ 8582207850735916654047968994081183508937657850958577792162743812678116193, 49.9\ 8761013617261799036112909584952212604031611540613483280625140139554423703992033\ 4212212848775593710048218419170172097114131242423673197040607375838586220817135\ 1621238120560648074223866746957833243432127760552297893451902554637570249427630\ 2525461920120407157007430339150792442604631510275602083781948758991170360313630\ 1451751619314700301143833954208360493379912241100223270170157894424662567659652\ 8846785647192922409230539064205481583184901498281252164757776298759125711873796\ 57777739593455538396188286708521205, 3.4719811107713793653261161133406506154553\ 9997701121544849549036221558754242893543542007670497928244375398153664273155603\ 2817636783652496243530920645634958791642675849903102726581266475341535055022781\ 0381551742823868977452650381044380229333787144330168016523389549520755841858445\ 7822661831586040281791077850458286734073758596170690987151460603256462590499220\ 8978145143533639320312271499043812416088655621611179360220189883740229660032449\ 3967442926730151460003868743551891421780249336315743391526669633688734848954, 31.9823727892444639644884913834074547361526881398954537766709309722043838279299\ 5586689171733356713548085755129574820706001164952578678012985805328454367258454\ 1955705790339524886999958006305996594824843268610570641659845176418993662303928\ 9491171798130638848949931862642613226493927298194306540342151554013251861522953\ 6524996834102761575456918683686309084114932423425986552799927600280299624323082\ 0642485423798980694511518817544292971959508329362862360487667989483588063733766\ 451371692113272051674609161012202123159, 4.427817074788250088279174173622360245\ 5410531777327558657602336135047532292466709099831335873645942411258836506110382\ 0874659569995463694708765609231270848467383964589436929138557921991153161325810\ 3178957802807850857094870931621792626336743906983795517857159836146401753295951\ 5736436220830363120665433221215954892002119042811260817715103716580895226045566\ 8747346418811762860049014679056245578327267503842495508291240214308857950141798\ 2488232587669371701698522297714126937312297454815108047358115537648805063464939\ 2, 17.9726150095453151132233333529319147354911704559263097802802308885293826534\ 3096765937956419548057574676842896361461825214882560540712683561762605674627793\ 6135024273735636946539365999339570341570254818910294802847403968763921495847981\ 8326051182107062880436633737296379414246319200156702623855633200033190524488857\ 8742142986056503070258154467542884448750273601052843540763877097116804468920597\ 9082448398457039937010646730943970830035455785918054974118720389030633012541634\ 043003692257688205961194972203429647657045, 7.950780708363777992258955570014691\ 2820709519886307065965760751566185008589958331185251941199872481532739692121859\ 3722991667237719591461925518458062607617163083112692005992689207497088498109702\ 8995783619019244237933571073878259934961639194933562118451575205885826872974533\ 7351102999082299606523506437015493977746239016129571214325843065485458161193868\ 6507250796788707495166652965529931283872803634038345810882828437486209398370102\ 2005602236268175410428077571145218521139492996703444687627564697823018254336357\ 1881, 1.88420241872010094280855199961190852951797386243739001439331867895218661\ 1282499684182303293627816889079147373789346662988365675547173790999484575006249\ 9793476409851920632350905086661672922339418899610076993543816400533054479035973\ 3230014878596549051499771426505472529596773614361738836194472141570256166180456\ 6732209046817612542829965308613340740949028776684214825899565056573326895204070\ 9872825948886973177555919482311000094427975454407860032318831240758418592295851\ 485626260200994943764156359087370990060665805, .3090010336457569373936041320772\ 9512459665783494655698803206868640455346502315666256114959600162469132411700150\ 1282006995473733535986504378270105616042358684324388382898659140700008237833127\ 3954300223902930289207525195930768024084589432041800427357775593673142906789733\ 6659773000753916741966159305134256439581528621569441908530113832860333405164309\ 2321600274461738359036419247217702780825361706424111941636182394060830321128958\ 4721965757235980052309513717666161782726555536716619144569002137750374667762370\ 7691177, .723637691580695176779213515203771816338064973845922786469443322543935\ 9219985132106210213830629334724047150108488086926718261886065385922831434682229\ 2928292040573376060611339295137825141808200657810156307319783251012981757598441\ 3219883088782578152508789031841823011307545112063177819272476512194486691900503\ 1480839435073303489444774209582791385197139868271113756026015240177405841917060\ 6860990052086915918739224319350352474549288907074278983272986862396938208368230\ 313215474295320209410898435465082123590259157358, .1242399363024984371488806136\ 3089018312566313864569712549808350281958386731554724878848725556211534963117456\ 4778017012299951537175339923864708439865913821297273641322069734189746454068427\ 8780433847861800842252851452881410264121106456302377145415494671577898473940926\ 2839990989084131056818353723385937589328926620408958886036742357111448577941227\ 7530437378440789539088609715434278685160977646481736787208647234291855883431275\ 3771581174747315072552415395571882241781384953021733062871638988649667711210380\ 5722519847], [-.2221479545838039761138703047870684564438526236824969469641719435535170566503\ 4784102420952007168935939719506739599982238575645584658762627831834540019822665\ 5831965807495804256714713712818504348576719385645155246511535910499797604296127\ 2827612850068156696971616167234742294740700207265850713041508038546587183611921\ 2318017130078524924278424324410289477857647025450517294965678720160917929520490\ 1219661639155701740655939670458260363900332583331407072560093126368009018303672\ 50257786246593606281494177684669548383573, -.4569844647787983636116389768850822\ 4706294193533044576720066618924254045648730060083813305629201390029092722051895\ 1807649966552697922080898256717780913668544496526560208077877499835787741145719\ 5260159433312202030909640888317571850778758390202608117007261238675282922046023\ 4012828796476235043366255396182293118093811436985566136300666915759063223279312\ 1753197764632814827703018608220126844597275897509821583986653355213234780681985\ 2424709706079734597425125781063095722739886783828882863999679063935492014198243\ 8797, -.65209830645992367831806409859967018396815637970625519034636621478387756\ 8402110146120118853555331660607128656754187457190190262036726579404727064687706\ 5574346190156224482960502581957301674361849370843816272866490496908015368300101\ 0695609798713113891880780220266025044591249274969412872714336103517662447933076\ 2600886018063262732464225037146752241077488977619545186669900999270765002010208\ 0315058848734759282799543209309811292593293427562028294421754985522480833080337\ 1096369434356395988461235436112281657403224587, -1.6566110891376005207476116340\ 9204292108318369105003980067907638473940223776610712631916110472666632763678806\ 4147167012759547968870376011874930941519194103551760086735293818701602885822628\ 6025185556796360529230448850423674333501450797518906945864501537537913423937214\ 3122550434179069987931693536829295254964086707144335410928242291607425576015291\ 7421870253488267680957323460738225037940661252458528675505163784887984816981846\ 3180037748244009310842259500903228452555155701011304155802993074228617334875953\ 308048652, -.230784097472910880564595508828551116012477957178251332464321131107\ 1300884975792251213373612867657138916989455258375841089400670552681058574710817\ 7269391981221948363465995068615393709357931348576043018557914554364206846315118\ 0755706081927490075511155326465926836259467024731758658473029073887177841458526\ 1129042669370148349544921429479121070159491831008426399953085932129694976530211\ 9406728939461472693444688313692894679230022893976915070288069751434591118904891\ 132965864198073925371584920879060436786949605554176, -.357384509126500145200300\ 3100847897452128524437124572400993984432913837784014353660384807393193894558403\ 2484532438063602629050810983193473578007435286450284888955259020967616829521069\ 3664827492567082587710658529104864413499632175462795960830483554680934985719888\ 2423726346299387580951471200835213287206654131973792623962632762165872470885159\ 7781114673279824801912589227559673375540502218966128344173850687383268413863346\ 5772692520902842456077282154964123126491723653692947249790964008555723638245685\ 86149563857818, -.8512998246300211643639996654264793663864843161212469742580710\ 1574397531019650234742763923320183435836267779400172839656484033974175533245598\ 8556227556802075432301854919718845704787579537935813845182420482800243408921450\ 3837481030732913158594436750103985015314396894837950250593390995169354217317780\ 8334542057610140942341817886643883631760107618301795965105335710037071523167656\ 6908479683551447205163094587859008173674437178263722617651885477755915851838202\ 81018965518359348298931859581726855859284240631602645921, -1.540921594830174090\ 2710981066362918818066426662035455882779760910439083661836147603742879692739111\ 0646374182623085479804098408450128783463638979488339043898062037009679045863204\ 1816242881115095153647666863116946911043133090718505292253554045199261156907621\ 0068925959224639913748738743379495559507574019487977618624879275406219358609964\ 7074906703508319656304155592587043372380442907206982357675975923884521400997169\ 2515328371642555856067147985833121462791267638695477759948385969937253939287495\ 2362192278105755699, -.23668326997256506438311356715234287963303679156684753051\ 6268728080264450243970223694351373048549027209632539921447861941349061169819613\ 2252752445082908544791254245858020098724073818410822333426534904566469142912415\ 2272367646289096435340611649371621461943857150835013874062126050862055502194589\ 0946587566556504067832967784709393709180197732019259653822694878452284422443260\ 6933334429497983811912171907259841143473646152871040364407533148125652711861541\ 1777106782295917839063548742081607335670390570229592696398854, -.30256958866392\ 2927978906999854986264251528388666491354723503059801150183886659539791671379867\ 7746851029944713122908516733606966255125995327131116985833382971674404171839167\ 7731596126904027792734166063699085957641022338123424792101270757280357582156198\ 8616147376518571446874172741859773059506341625264363727333920422166482012142638\ 0792656604413554261600890085805685758301690973321768240837260403818773358820106\ 8298770159890899347027053612628708067805345087077527552794173472855655297210372\ 232360242713410235429007, -.484486712057866891725874796195276770169298009220355\ 8097216471242330461685028441613603273426341894816767165841606511306782075411986\ 1606820753589463551237084396893461923720344802493367161120411240300475526099841\ 1132359840114504897694965390940264047334798446149847839327721967924798450654463\ 0414420610602869120642712581031478634079465138011194091687014201760885024075968\ 5342631630240565737258756335400569372249880167676064906750884719345409723613921\ 968501332321274365528759268570702104737876389830318192351747481257, -.613806287\ 6141041902150105735569554465152275674345831485378848600266863817756743058916872\ 7132418525747835469032034607449458073984292008103371732299583137898099371309906\ 4652295785993987322978774960725088392881996815164106996817620503350523032623586\ 8284160969190116527152451687971215786477324657750432853142267118873927772258979\ 6433020632504492946437099061064562947453929228852675575672684228661595597978614\ 8624838846813134425888772440196338370248906215250046147811053826968336152235093\ 47725422124289180798927556381, -1.037426834211846323397592568740299243714105574\ 7660063228571380420510274694210086745137482454074677662182179615242256321761846\ 5813731085454672244267695654700245431126634427753758644739066079575509222573139\ 0107674025327929128791757705608160404337440656027345854991680061046642320525689\ 6673503867720568207051368372477953941763230794187908643977516548461826407029729\ 8907451735922327717987839175322127501266239088820831666866338250770944822221298\ 01329455781736787371387401120219000254200778561578369827088714852142802, -1.474\ 1383336854774678913850472627099551137957056806583611112586016479697308227023714\ 7417040804428008478471234772188373821794826651367694127697965512368119890190938\ 7287654214239979891160834471841159697525586328657956992744603863880483497314302\ 9448505816943459988978982528570453595350252283354410219573751533487077147039246\ 5992109301239030236829910427594681325291197377553332392233254024027642488538794\ 5491602047135370457563598339406775557865408922158977203057129541121106419415525\ 9920710215607027605498534239582072, -.24422135213363741631290341824982388839546\ 0237098935541794662675081280837864547135275147100572005380454779789683513516044\ 8607648301087764331469419446214926339937337844633796828049385625088199035187481\ 9714393577292743596188741221331718454112367634207685142420013981619155165589724\ 3918822667928568657427394353967605972249178156172738809056206469867944601950598\ 5144086364542772895864794277588356932422541061653437873160462670991226486698638\ 3557063123972465236168829512821812396887698260246869642189143650341797559920, -\ .418667283461702950622890688717867551857207195137798896249723336435231227524588\ 7708314453463028419479875665671693456192041704131661715393876152620141336147891\ 4117224782109034961815150663603674198439728593610191579069846526925297956102404\ 2162537088542529834068956510392993590896281016131835123887209679258411215162125\ 2332050423961260035567060651660929729507220235049151831840147989073864666345806\ 8360318493222374910467496725598435599661127187022066606333141086130290758526997\ 093408795286398725939443252884001500345, -.715286310388839820515721935431180539\ 7397706823076025503405317253354788105985813987531000925278511518789369731691026\ 6078980011292987204022963807614095271151315971926632709572724279077680858749597\ 7839128095946867415814077763775496334072360321960661189934913771976807223626698\ 7097058068089075550000010184864256074382345434506358000823123105326605434091826\ 7268748920713221373190960956971828368195559952569855709631925684149285262421767\ 0878809160862364212206458432993280774610659803423014058507237191623979930190373\ 97, -1.399562045941131893107455952264453722984473079511369778960827259794045147\ 7933871508823561653920976808256278564914841553948600753028634712180834884906190\ 0378161158293351894357578360195304994605948696899704019912108485760289094425808\ 1678490871723844082459104058205959322283221140760519039252278443757676429025358\ 2578358605578551658235828412802777490607791873930465842777562176168755664919618\ 7617931024422765541323020374546657830848586962852627041214621082581879639881551\ 87464433894130325941107889386005150655882820, -.2679827496520929887589801817966\ 3182973218726403822942352932033379554332221233394520916534142658578134974216929\ 8047576950599310739105200433954278985768391853442794279226285007776609408032065\ 4544017000623162745698098387367004946405320092580490896283431502469867868851883\ 3643936967484262429450228974155910119512092350055394175095982136109264910262166\ 1101811147797673459374465368680482294865005225094929065674092218754649171696840\ 5237523693678746917438524508077738685015620408339339234165268666519788863522382\ 7235696, -1.2179198630893846702878850131029036065909514161337870244825688402460\ 7212580356527511794215352377483258067564691669524769776354572094311073875606493\ 0852582432698151201639541610560182165804839348925698832379003679095279624369723\ 5161841315656838974737686114964773997404879595714202829513590704202541626661457\ 2162539881157887605758546357167909872987603512592559242575322480334687607345489\ 3256136216820376369875756826270386284335106220162555205485444935231611194521926\ 1873837484363330053235883100871950003916367595411, -.28831369535040701597114836\ 4749570665939337553290034482096664083335128729796269355850344372313034094457917\ 7812771281015749486194474503064369216278623751409858708795032486071564750850336\ 0658712147350464437506374147563230486885457837216309295059599017134537108517778\ 1398329981322221627264607506907488089691565203276114903868001000156993250737152\ 6465013223944327051233724104108211720304558818342190003512235347946664025567876\ 8625088308869495637510351652249733992307638296924313192255699895544606504846812\ 459416195313, -.441254339472161652275304407354906333542679315069020799908471868\ 2425530271042278383353739408764900120130912684589416853957664582263298831733766\ 7990453430271246307839443759735099405161522050628158617818014042483506391142401\ 9701484345334548861616782550448763927813562077813863187992695679037011750716013\ 5792847120913505804802249026069999944946474896079240257836212535866440459731661\ 9057573910992905578491215486689412655904364922314303382257385669246939530197961\ 504672976231582038288148998914713221708706324591468405, -.676487387086481200746\ 1841228845456219191260751631060950686770585997730911113503323454581974386336610\ 6968246319984386162329817403328386548732442523315587063881728963512392872788383\ 0982737969996647978511693975097482649889015181764634772699731073618863184472526\ 1943276069337119373051295687845447138970650560264298556566503138398036096868627\ 5787957966914950000042378002603115581480294175165884976328021619750343962785044\ 3508054865442230106068773783200915184649389972413434984460769887363865168372036\ 68507747730586226, -1.103352945366671665869822450804714190573120743570873703836\ 7492433793776824025636561696463376865911313012743195763664031549670546353670222\ 8749334613853997935744760909551331006242700137776656654839196877566144438948997\ 1115699009755591100624363375757281197815255643884867615306774695268882580333672\ 9683694209905546461421082124881202635796179594422099470762437633760593240207948\ 5456675376452694133549298506552535421241072643705090688503934945658237108559818\ 52467196417701658539890760466138959579462185803544074428517, -.3212320031222767\ 1102887203494543076190655884608579851359354890798318072496308158776425634974376\ 1779167791341741037077260273464676756014731564339291761579336318573845385961882\ 5979121039123534606840643413579903843732031445259428983057741106102131377947259\ 1007626667450138036395800831805699405479582672356626799941663371539809833729669\ 7713814903926504649611483710536163425367913306947592154635393268588111789128731\ 8234924548791039591494103608020015835130916143671973179169226792438678034114545\ 2686045904411316247394, -.96404248792270758002915680117017259625003640132165195\ 5525505758040730893327480708974089386955791417467982739494563992923039249013157\ 2613138140064512142503252744566114817914096381973487902854142638499638042067195\ 4349391748119788878501514438793680298878093294452852860832398860907317047012597\ 8000212729662618087106473963399585561961270958942237883534015758162046786584363\ 3242150628437253495163535639653426942356496495810685751669882455616509747730717\ 8914413887957873523390674750346888679079605312317896785381905674, -.38349654949\ 1555473620950575667216860303181891667613763864467684524605247469248404323811847\ 6049461634500714208355579215473603243220841517596856175313775124249495918905436\ 6255261523806951696030616124111886913856692348569220568339569074088935728906213\ 3307507550797900226530453368188966231003824504016066867213397230273150026759800\ 8752307079812941935731915333362387754098296918849517377328131630269456910936621\ 1590685953431232082020066543193124528310562960958764955749470761436712826075493\ 786004757786823833795578702, -.786757834767071635014714002374409689249197521714\ 9115954830633671283357059456787427270401300151062137961265883732995526186304694\ 8368040043360738357351196926504433891017808792759083362597453582488760886111437\ 0385056100687376908193977674579209930742743188788761165616353011939072732096127\ 7301333764979164109400544572478419140133144860788332819580931813142479097860434\ 0362053735644628589009129651939819514273493459959583552848279351904945141418695\ 305476967168683365067975208381972651972181541445689189081556203544194, -.544886\ 6014762411000913469021231585258363468732161730878572040009536968844044755520423\ 7330130346948152809289255249900417405464172289492050627396180683245740333513801\ 2986999722191200324481580742800722333923142992986025480630854486078664520864211\ 9149052733599621285019330128679422457723251779897204076337008873718214748059107\ 4886293602441610691265140328379647388529185848485067457562704275718630755279167\ 8783070648443201307377754921423909626942566759377114666303656445771609020056009\ 69287843437885988121260425665443, -.1825228413369928243917517201495354590358812\ 1286950083344204936167748767245779222619404782824849182626773227229134687297291\ 7721730607444643464852211341664504521538391976379550097620934456474806295927832\ 6974416976807830356905704261498066538324846990008289631907493197828922606202962\ 8700205718813382681404578090743733721659544755506557622419095041885613619599611\ 3725685110527606817529217449459773230678460181886226455531563362099896772988813\ 18107364370819723673720412525530796111885688731897710293793390313373447528, .26\ 5244534130807063739374181664441915716077457293439783915998800134374418028940641\ 5722046008576973844711542385831652111069697439837144352280060964279786877897315\ 7286938038002870379943286311348722564276235789892043772712998871671388029603237\ 4341987053032803277808296598333133551758704254984698436075012449775260359962814\ 9381696297070749423113383519809950089427465226875302909810904190479292895943161\ 7204447572154944429898662407211249000223504670275148502901805211245403023178144\ 442727006667913861891375300581637786e-1, -.336994138480833767799404392244878678\ 5475027539696911697881364378449678012539433312885705019127692802861266012632590\ 1751585587405282872249255155170385164249825948578879225682873717101732528700329\ 8980631302657582393228217840794566469976248041444862927869051097866354325807964\ 5072740833059047418371655648910534621190705910002002343439918110299558043319664\ 6990340944605111185318727207260991385873096158196612813546517083602207024405257\ 2436146845807368511048392006899860537245995133993297423997761298880482936497354\ 63e-1, .44364741246396295219182398121341130366285693876724567361878989036812679\ 0286976363316070037470260388318949243811300405843740595488329013187105469440817\ 3479215283503752023987610431827136556601751666614124879468894349730842303988611\ 3095352584959182819549528448158554584223606514074272600190850499979008532379625\ 0813410364369015583618731463727340739060048431514461298700438010271811835460561\ 2370945426009608370050661588844301435192347068374324701437910320037089460478434\ 3411272455064077910908547423038765689743910921e-1], [.52171485307853399968735013334923664259020639970317744696799470623963506616845\ 6115626848177450263005255153215096517917817454129298907816980891816666210739044\ 4886777902969122758612031440188245458199652626538936037879534227943614047345072\ 5466360719682659357294312707876783651891520778190777617066634444174370295797516\ 2413799120379010107816151185465153926452309129644457527338771846797832528147421\ 2177933287146902104135236033304753273936030746500672027714238118538297595061942\ 1616600638288125820463137449392742628480, .835118514480890344449608047515087177\ 9492376156272102640655336052045146970533895638188210336083900161391741128435722\ 1050365997963284163289267455452658081875965334065010129117110707764962595813271\ 0186160802813522310292841784080876410277211304611091366207007281828287336606346\ 9069688808603371300904186908796517527560339302292641301627132768750458965728238\ 5942592167992704228674126506977581324439686170561274975349190389840702444508440\ 5001483113129368287703731808326850656464351127168434927683349292045649548676206\ 55, 1.1527229705009956684183972562460908522457924188096917252626967662998509232\ 9785960035517724876317890363099494756115371708050596972820503831350236492827941\ 1502715681696622619577922127203087060642207700049501190947061355699125238634362\ 6081250630754612327643777046786169114074065519716126141398195562872303914318219\ 8520312574257998277559560254832310826513350946540993658519135235339602647118497\ 9719147708419282111351312163435884015016135585862113320307736697591917882662954\ 1320200033085681346150502440681975893392026, 5.44540312523376400528029307316619\ 1349173524195146323955424901866179142231008844626331855169647806069787124962611\ 8664542742725845524309888490274495579762361501878154734291737356972670596607034\ 8175245218773503307872648537485063117120926213344855034091695257773740085299313\ 7786810061209840020365032880303625880825400099467106374777225710257933499350261\ 3561796896492666813302663065050589124324285180707062219568623787033201395531111\ 6898238178456528840430948403730683006954193052415503746661214126527299776839821\ 44769, .53267748041715012568183847622430738700863357036996798965623817861263300\ 4989165191189214048502623503302393985993288850730127726671484971660720176149387\ 3248875361099906270576159799173621137849950494597953598399384805673183558704761\ 8474165118203845885862809247094087687272445757137015704929958378380051924007943\ 6096092311299154517754704800393412470789953709628730684055385768555030873014397\ 3559240534788916613043656937314538001226118850229185289711065058603957037000254\ 4660574335130749410835784069234475846402444485, .696508468380532523271035131856\ 1699243800879535844029617254954316497300319058420304035426827504622108988815138\ 7261884820904718363004186500412715933872199231206387602712526180431412058477103\ 1150621034920476143316985540280606448625833222089290982195443119346625542124847\ 9581963976877234493084643019216747056676035845762454822237718802965936958391112\ 7448820252103398876167324584071136810358949299992896321149553068082546305207358\ 4917133998804611730866431878786194856222627711997017916125746724714157084036602\ 67976636, 1.5729234377415352663894032418357232966989811506301237068304007235699\ 9995908381666070943013511484308785449651060982796953340937317253490681252617115\ 3848518644699082575977408210694013210287894487092235201996766132893201821382811\ 5747167871724494850971516472861257936052462542063665728293965838696668594041684\ 3297505359522021738343892987158114720847266713445617000721075461921736561153295\ 7808033503951353917224161930189977856446903879745263931723193772525909329516404\ 4586529983914237995069055298754552759858642100425, 4.54971888598332198580077286\ 5149246467124597314423350355350104742330858265830020137305878808754374470111664\ 6923854608960384374155669556474952922548263965564848341471396140562299086601759\ 9242977328056346902613096051395766591377795229602616801021371423779925028144921\ 6131699658305002673447112790438608480465640059800189533534150711039704773232688\ 7099763777028640684048593179881424062352415879751261860128418981030556696361588\ 1302357583996494679550512207644795929405473498132884537894232202498324027707326\ 49220641718, .54016825990779692039717672154421781996409403660544774036007035396\ 8027640712488737627898027605075086539130485144265119904861205921172936222611146\ 0322187710637397137095202775028969359526229404925692550855237257036840362087759\ 6703712180869982197467409614335593704780825989401911904541203658002739996254897\ 4161409062593479787319312372889316119018251390340347539812742699443597158087974\ 3213740244258770507252005303390456876777761394676943209081247690295331050275280\ 5762678107733274939133955922409669981292042390820421, .624478981802711969343787\ 0000722470009772569453831248827822292391612042801683676636417671748068257871578\ 5842123626762330147832659845965016530009635752221737064699905528435110595323695\ 5491992982372579077741887405253039675574140840288062741105368318346052822187147\ 4669970274982062362623496168246427131649660793274582681338584131903520648604310\ 5873755801077648207858771407875665826993494235427536834633700274679630802581075\ 0132270156849015785853151462106531490676664586172920817106781759133729338406392\ 66094694172843, .87570747591386645915409079150019736451499945674248671487038577\ 3396870338914788207135386952889933946697015075833034176415292630519397244394435\ 6918416413430472204278116925523928894824340395611197487799127184786480981299280\ 9511702821790846766537354900651215230323483351707854742106688169649824333237461\ 1913601510115891895112779517672172228740501299344630818070933635264779729454150\ 0406635841773421296612547861451907011612055147867361678268710914262086561042094\ 0874779706842675119777229766443700565053614303712633040, 1.08430448566853962194\ 6966410338331621843094164724139797552246059212377460230290526254492260518586289\ 0555186893950354784859308936244752555564661521092462180177016315235033312232251\ 4421895396290267499552475413486955680233774688565757532967870723119581411600085\ 9818811534353515961445488382778454657191507590230852082471599431281311624454599\ 2189286872161750726593158570215545025003968652253498609766334163128681531258543\ 2527651679181778508153713502116753948930663664913822061804018271345815987117815\ 08508472361897560, 2.0935927187796479041588304925632841703213292983942296289478\ 6654374058158298813984558358480516211349173091485914577330336501371927510957143\ 9249101567334233395392425833041864640110218008106541608635857429098555587087199\ 5825556308935186797979205560060892106788928427433932757423147506055706728756865\ 4135820760118626371005527252828264702784807895771430876176278629372361581744105\ 0947859967158166708982556063212349233268895081682031015240708509727867945970635\ 0258552142380382140605600833762555791494690440762717254778, 4.10230295178060364\ 7917844625992108787666714545604060219062800329559274950649653460091991816624366\ 4688445028797193586010197066552142403685331306655514264842940384068693430941356\ 1434483717767857058514172900672707084129692398610664251608586720871327120468789\ 9678952937056678381368345762051456080962521364273927146066209693568356562551575\ 0098989060384402624464774255629838230615564717003175325604292362352893154522055\ 7447314051023998888081543265206904394355646880857417105972169981155195642758318\ 38951971530292860636, .54974625178434865728656314044560349048469827679054316462\ 0526975725676038656091729168696769711290398952520241959730365104290901728856462\ 1992695007948315134439061421313753956703659232680471719453282111565340607023650\ 5891079214870700885197640558136004192763815032297981778125391687215284134409428\ 7236788614644227384660234485023109076271189544273693364835897417616667409886142\ 7889029385185715815765145522668517098065008591375444298605942066044145329448145\ 7896058971880735388308441684792759830201074990880189759230430, .780369462354785\ 5769682522944341575912953449734752593606146271440734359864385567489872948201070\ 5469333829653384298342242021944640922608926166977525095810993214278371796747436\ 3894487940500584339101551992949977079969752217591222313857383399859591290943204\ 8336406415301266446754519032505005503921673355642058259154306419861860139209364\ 9632183036189071867398109655388436910396388835353352667915475654504639070316827\ 7207535890800144032461102391750600241290938919285471986242540509670776128181056\ 98901857734138296864374, 1.2735343495261240688412216218211228896333010223804501\ 0216888238991889433428074582714885029235394932070560822032834744379079592547388\ 7566210284199550360955271296980286680879558797101020134254408654659341847308154\ 7430804506052443870747107464860594143299438316292252061951849849250284754083380\ 7543678271084115035660567086774874941089935271923214518568770170332041834979140\ 8379098377618987187348606744848887817010251837387902867229438835454958920365869\ 4682904568785541331071469642949828822123459231112282497598861093, 3.65523456315\ 2759080834681579087560944299085581270330168400743162258221591587041664143490599\ 6955428290419177227999640381136809796448770464497988884569752785047821061688781\ 2418786894765214967888490672072088722149432432283300912627389141343858512087916\ 4157775764768779686508275188742399781553742046482433868602216974420433906654347\ 0267193678129448048146979474833333396688348781080302234142815041546921879818565\ 6831684173969071639454282075159077598705341353119486058023428878911504307625939\ 80073864904345657594075684, .58002056286322152901893502350684221307831233920443\ 8985771446686978340400672526978750037363517500918862030591977692085882081135167\ 4143800755379253732027575735929093368263657273364262362652795673913853963239635\ 1684583079089274975927133108521735035204012433884136968281496625846750615849159\ 4353711411961040036181324705030653198682012396089102234939227022679300277777602\ 2672038260193353912943845571369508611718615557573575565395099880351327819487573\ 5176958408565496370729633920220768593755426403984993344424003415142, 2.76231949\ 3490835760587278587767755707937952303179632285090690051212263261117286171429203\ 6382968000933260643007355816880772040463153998205894829049953536934586353702810\ 8247236327625458006909190673481747835623950474352753863421171776766920792463768\ 3710149105058380524127047329906838091486604121535402091228069930368568142377097\ 6999565127187790431756156871722724990583627384228394838563460353870735085599103\ 3025084195548696736087668119234805525547399704821171227145461810235388700516280\ 18136555411944325434108836040, .60608287366798715777365804980208791530591703292\ 3580222547954488498868904575812130869368318729346337083896577160875967851197178\ 8352789025401498749193731318899189300432861166956509289380625077097570609426309\ 6857116206279071581735927986257169223300788757478964203447896573704278488211334\ 1722060898936585986243130578124106627380876685179024962999005472089040338738776\ 0756632779835743295951243249610663164348814316116462229762892998959709840931387\ 7742814765850742798862743608310587886138360711044665823689501288448321, .812401\ 7674899801934029335159590146780144742481065725590191040355472435013878091948743\ 8419890474314803944878088135914421569610204068254844763637384183732489805991388\ 1527493093315112245517944935245833786416978397273962288173289844164127594132865\ 1433463846579308931904552389726963394853490951857444400374236091664650432116546\ 4592528837116888075922718900950804824932311345163553396514959891320155531608556\ 9127412136121636151756733055391675765667411154923156857444577939767142166512681\ 49998174273434029913396881104455, 1.1981337225808927761384692544733178392117400\ 1227175855123905404118403411794189850822891303719534228243379051008789258273748\ 7656876039418621049735583485638676306422100325155899104407967415470228149529727\ 1646026891367584004851873068743495368367127308846009559741862041470118208026915\ 1020813920757704640493442022495756827086686609437394266676770768538510854498415\ 9138353126430307986879643854728654887372836489178272254005949401982554572889817\ 5650559975056357416995257174475718783043175312802005622212521941022681040, 2.31\ 6457762489484557444605665306915577939599785252741155212239653476713639333250096\ 6063706346426771578731392821031471518731788724838220123959788095084979558124530\ 8482240658552044995504483900700669783543862096716187119683319637349062007054234\ 2805388961271841134514695666386039376533617056880627754953969611124955909310399\ 0447128991453485362446649019093883956281604029110365122631067164699663047348415\ 4913325228979205866106991167670216000011298703837309110551376946729478031928208\ 84062082008443439897766041829454144, .64874869978963549312664910392346388263761\ 6954031298347705521612436887885983798499014955789059056227971749462295891378427\ 5852376663737567742353046707349743253743866319137607675159937266191098466419030\ 8168457491688319610760503283780729848806909410608143539208271528857718741595933\ 8581819242305644843438707983014576841255229645635291068408487065164219457113352\ 5407526817863899005280845927583166852102097258992004135858026189249367741288163\ 6372235075204810113294675458004651986298268333113768446913383113250795514103, 1\ .870655678936157713232987176433065033106929492665676110163615017732671437888198\ 7851208485270839087740681231764335586153332044104855515323357588532312411873393\ 1881116726407681941123071061675156852893035405127201832364667987050099422047663\ 8498761905623314031634693591151579933947538936864114275187943598926598198361237\ 3806218949032222606936161179447533528421670652170620404888274715132563303274554\ 6392602609690872536061571346880619141838703323278713979733793738660918643883113\ 73411015035331329351776891672712722764, .73174237099315616768189035072278593186\ 5257108056947433250826752039504995179625701864097551702815051053614036845255001\ 2713103188685594007382924094946406429058167942026533575623546377142079602835736\ 8190153574523860915951496176584890106742445899996802892389282462931077329614017\ 8746441488305452608405203837990411131391725845794984096698857272547546704610912\ 3284744162186911406280918957242339821984736691581136699397536199147631133184825\ 4951798431973575075302614433293525508638316174905210783258954641870533304558132 , 1.423561280494633739340878478053584717689246864283731327200651202241927889107\ 2224426682103084534552019318858732346352453661133007880239183636429757876305532\ 5135321066543684255713835232900676421318313943393341137026105069311615940324809\ 4640150013124630210097421713750908447288969831893045085642613593837463965937173\ 9914167199198797841955431238274900973600711192706188164184005714908776966962341\ 9809351833169594601382062076231490136130532545315387980057786545528611060534553\ 49443176669781907600384175657555805788140, .96919211011808962442438938509473847\ 4131073346434156644231022976881018656284889750191256580971050425733327226284928\ 6126556832025128181632183354933757463850460058849695191894214329808501688314722\ 8126054345692474676459370518496384914554602992615165484551208717727041763552671\ 4368307434878215810606711378230551726777904842095255672702397310909477778444148\ 4863644440925374236262282726601450468406524645851753144997597044289441047642668\ 6077434655057499100591139291090333693318197527794361833762364318803951697519241\ 621, .4713037993617925697709499590538121091831675216214405437281202337565741461\ 9446197482065493118800919291761406801014677758108049585802999634835541227957786\ 5247961862488574332372478223960722586911562019553384196504391875618063308629528\ 2390072050056879422164898509186333223473021041810216244011003915480997076030889\ 2534343829268287970190736365466004408641287879949228502474925009863098174691723\ 3492655196088071640537229270583244929066345161578196156071024508350504605815249\ 67676441352109763852454084494148409190685315, .14693561831091546414844241123142\ 2088804982728862768645972834890850903060806745140733666927455634224547445742716\ 8305419551551859391911334820786625134605151893078776000035756422231228811815803\ 5364237271685522512974080486292057749688745860848125940967082758814166202366711\ 3894814574397949308060600454646578040511803402300488218845272252466037379275589\ 5936749602740240136212557418896391150300181803438274106144058931807703711043101\ 9721336988786664313711418441781113649391861789137502092930756383932439790050037\ 827014, .2654986378897434729303149577642466652496486402285142729166107009717530\ 0371419034825037222216199886679932257364911727177067727207729668951103872294848\ 7346594019144615422423845845527757723338607570440493204423982343900144132467603\ 1389876282728399846256201890210129858968686924055358553199586244325583049566861\ 2966088329275504803575151933181373271345583953219324059637750483353358763364659\ 0264849842014410974864309570996935985966196990607938004914255662382670892828608\ 36653463373689116773432158290330483369695231117, .74647574519812978310231717708\ 6794272340130744124884197957302231484666624087532457419326775067772923461204459\ 6102064665274771011477750640982817280148008905984697745918738493459128197024892\ 1943762981382541837676759630656974191207600693291625965927644641020610724597966\ 9599847028309833639711619586403056619533753346991354781201914244768041024209670\ 3366284740059750787526634809635926134036663211487137021134857995802473192097052\ 0822330994125556264167839496069168576612177864923888660042065981773392100319657\ 769088284e-1], [-.2734686020447418367369764348044070218542106628435427275973392170137343287457\ 9881326481258080696287512340416980397729614338799862931192069673225292342702797\ 6824111364343803325273459579754570671760725823322317629942668034032318626995873\ 4117427759605579982645098303276035928530740623073572207679308852438005004307273\ 5959559297745914500593438532861938257644706284080754049297952807512043281613282\ 4558463987561608193213174952861197753816357508848372510069073515137650722358236\ 81239871564892442260428919023667864256237, -.2986394849258779089088403766953583\ 3881298257244532775198278369941708127237808806850039283055573931792711129422575\ 4002019282067289148637222336299841221925822461987051006927931015356400139016292\ 1965815280786366932029783770888808126405407978510141568771006062814595018740089\ 9678785256197791385327904336747881472143310068617866451432585639264423721343778\ 5904725056975097916654673045950226367842170570532285456240683068190083954297765\ 9204468602168990133626667847283610639593213143802521421396379818749860077967592\ 3427, -.30794135226679542295949826479400509774809706561426237095832278938495221\ 4356255183319596030189291965449314444760825048765907518815377924485996101098798\ 6175564073112043740971317944774040879542154589822310830299248546921376978095148\ 7477624532676282300035659049523485705789891695597857048402246832368352452023704\ 1214284897436351535756233037913770099643665241048845400074387122805559333550468\ 9704865363418124711625929822043547274955788136756717829732155743850223386070931\ 6357675265154270679006438443762755436015970253, -.31787714327464119917108947475\ 4068740197249858377437097256268891690314820536081092316068770541334770959803276\ 4645787304519723866698282405415207906680320828368877384628827808265683567617531\ 7667282002922146934744267225034420672368869790652108579696363540153913806060364\ 9854225911818651405957753921213414576083404759371333051741652334010403437314931\ 6614921879261076818806919592470880845691559780089649084865731442147645205977587\ 0405332149371082461894375888889297812238069996203624429591829681747141036518398\ 781366009, -.274894576417341729994566538107428464298819469867449528362869723474\ 0728283501822483709463963315150185030789193666872443489452297769012488326997637\ 2741626625296015454041640652979758116897907790677577889198010727821875082968663\ 1082763840806110491805061805546564089439207604578679538069383524802357269901609\ 2505081010904128441614236246473332693709731181047499638823735152891104239337115\ 3563583548036371206985243933347937265407646573620488121539732167353655099835580\ 856103682178274517500702264917683682738432937221030, -.290711654494173937793611\ 0244010441389736237628220480816096028297670356164711681906133156630119278078992\ 5278761393799483622933735439320657800102761773868691241058951226891153870714156\ 6764954585606730430013049311801865978489080248354448572882469618554181530808299\ 3492356178564278924133556051764115228785706032584510282480682739418112584468119\ 6995041270740802822989232277629495939536240022801754767308197944576377940310661\ 1958544918906479534024775586048595040488650854635174840055060089450785710236985\ 19811274888859, -.3128319984153090522554519057141320767670784139571738888552166\ 9020264241111958220129224275777768199590934756468985377120262366892922935965445\ 8709455498218503035536282074443913809134848412340184290103511985181418040952285\ 5453424616198669289111384444364818112845653300028849012426768970507877899423946\ 9743159972284756848527648586040895795170196128287606079922807982466123102021236\ 2163764057395925315657642989307666863431604726902209556052985558514380858104554\ 51508773580604779084070242320619625971264505102715045347, -.3176874296312961702\ 2381283164498372064987452917727495727623510691475099309359698530497578265481609\ 7635530086207744726946764715987799084634467541141789338275439224320666883631960\ 9706372502968255538432698417558859537030540272074545542710197976957595424194373\ 1236702805589910707492719233068454899961818333459206045783081729531692562184904\ 3328242125666954133766324849931628725427553635757620707726698276215425990563917\ 3036509537047704212858155590843021205247668974259402892909518142598534149356357\ 4346889924283883412, -.27583691506180829337158130313093301363936379442116566697\ 6918236960323284039003033843834709602631852952360682747415582764705693838390674\ 5498437979768676089807266446708600849307039800129799694234705253973491337016855\ 1819237260254813359193537336798519404002686162615000077369014018670179061675791\ 7599000714299239792525371674498355450951546924995119865102037171852281292254489\ 8299166733839169525192451098916999833391299487910188104548858900415357784962901\ 2386339148874706187601886507781071738791296079747919677723613, -.28486532096735\ 1524037171561409894432050781813321997740907045902765505766900527177878876704660\ 7265010655096242197251629415134897520235901316933989907719919499858250854065264\ 0293197526169928339148668166472602283019470598673111484598753767578201029057639\ 2418056934791037470224756390118838353034607776201816527063633967086428158670791\ 0407901990838222438040211591108783682472006610669121883997695191912175166616927\ 3302098465584407399461332487687907833312651245969591582811397924922600278481987\ 737574543284119017620854, -.300363933189755961969952592876286597987693957041921\ 3646239265552411908266613912308846142166222619445421167609523988823386725925274\ 0156225052310180237906243227121403945215893645087455555506451457492893497237207\ 3357685708602717041754437998778570430362039501099693804376273789831813858468432\ 9489989133987294971464606655524192976188267721497427842995547365120022440407573\ 7422645659229094549382802732751355491175924333725459968883496362001241634267307\ 082295024779086838226497370932888040788112631858570750041435291135, -.306571831\ 7383359178405888618522956512805810434576807234508661833766311739260074300468766\ 2628257140592304031029594080549262456733490313825434664653521675765719677478390\ 3261356615855249312329497568799072751295024489135047597875114058924789327066415\ 6201907881883462760142683623930981065754645247324492236284067459887305157020915\ 5970907570602098137588893364550336924501034594173855903364402546632834970926335\ 9574259874114768783596456178265153022100208229454016845313042901272704878967570\ 78475360506867378423629302038, -.3152725945195692593285740270905726559924256298\ 2637094584762848701495622808270140028665337956800543875802331119875926244344270\ 1282467174590543377103286594514897282336124804008786842560859096171890791643036\ 1991872592364580369188889559285846181163862005602271231607484768389774433770042\ 8569848976311134513225597627176679422101239609784820545270305796675706012145303\ 0418860110808404266709743578864611035595567543249675403956880203646527647878765\ 71469620256603653164705465018119358367906140968476730745428284077478336, -.3175\ 4205142726939494561137952799321220119431533651609966180670474987049984563696058\ 8924127165889801955514064152585485654828693352910009625906715801155773632200385\ 6438312310277111262881544438631202961589039682043803350381451210308395569969584\ 5099198531736643661384078101066425225164797699663689213248028572557304258210488\ 3764674692673989187113085529286155159917402490097811003584954439059052349154935\ 3009967823340244760159404853544905374144775266498571392480320771960257464761055\ 4793304323953360139485716085804906, -.27700526540038815789144343184287785325978\ 9787517734901274466871187008412848855223293189696529216377305803379814746293462\ 4008665189284523779679582417953521828591093159819801759452342900258970099717690\ 6787941017718861315319247621227500372064004738498104970542691815120345807265266\ 3043021209501743783798674041269760559249385125923889233256870242796175210232077\ 9960186444475335572905686662337039776007929710646473422153329925689703538085640\ 9395598059013604082237377438162506963150029294288381463070827867023422342650, -\ .295931704537120928456133140910516634723115893208296064586095649422413562322347\ 9006505921917324224449435279050943624958890622808531323492147898080873021390491\ 9976139726375346790252239412424199933144414974055705505091446931319031174254590\ 7041008603360754166344575892183632247044133882387420089385090813934996688062655\ 8353179908947849029211636934778747400005924398601502765170023503941633316490990\ 6203178532249949321434817419437535934921672564935347933153628559014927006153518\ 533635544545360608291879159931529309280, -.309850881992530410203158543274965849\ 1100925054888407185321649073722115312562357163538237305696726961298061931506614\ 9119580004806215435580641109716827443785908747571532617488065506412789820105921\ 6608496013932798376681316579279429800725903645200609063300411759912299322060563\ 1347999901304335470781057442962293359405051272343837453515579171266044735712461\ 2837170990538243061163763791849629232967892347857605169917308683003599694559065\ 6092103800537542578718300992048585118252737974364523531212498015625754707328948\ 06, -.3173391722242955190952823096532313164882619511197774236664584817772125409\ 4467313844491005081562550595276044712910144222855769303510344425498524344397278\ 4976155293914227676004530300943776922455951179630433041633882933861149859407660\ 4473424784576973757103245235931072013368181007922316379179088914880526496693103\ 6568416476144040139276071892130856943156750343749008986425368191237317380268804\ 0481807139772855182851312551606741212752312851097523995917198728327880253191867\ 60008744248467750525003708580541036843959475, -.2804441012000792409376869533404\ 9916041238629010741151330740894479246704998550371210349330973091395992221981953\ 8911138893512534262785062453095578023653537391355248685587564709072398311510061\ 2747746264864931336047050464738910273250278655687145738876767160480043560213179\ 2222474979336473709132973825876180851753311578921376879020260828469315461567160\ 5432896207143764306068672146364687569667454359840370500627880037790691777181895\ 5774142456517419288433773564718121847713456748833777219138605711727727736192783\ 0420910, -.31659078883959410113610476436752414532434675870074153784635632423816\ 4654944619831732624843814360298101249023089294962887686983004931272012828762219\ 4796861601685256064408480393148579587917878791243103056247906165999344031279795\ 8074820788998495600837968415688561165523145004176816229677616538017920750515073\ 3959698300515934577507123801609034666752723774146113608039545780323790451914599\ 8262899056070209429618079617932584320989956012337037726178895429265561216211224\ 3664592053973178715967369650756922044016450878596, -.28312018423540706247546822\ 4404161470127642859299253212809526108847260957058650356717958297705310964380282\ 1368604507340868826305135739983596943787588353000877757653718990340991252710673\ 8189808969451529064031363124410122187842894593452644897433064238854441737983883\ 0096578604489609827868106247954831133885326592192134534681773683377212549595944\ 0510064133784605642305994650300490710463588592631866538553627027211018840698770\ 5334917435596869489304830288698563351077504642714955784032118835651118233555642\ 833841437623, -.297573517394924162650531914131803047748561481449955227384245631\ 7170800408603436400143213999927778454573707156554794964904013117801739051672784\ 0751596610468127284549640492353498157115746353112138309457864257919451258303316\ 1908462453682052519848736530228718036161657452204128163687707443307377809943627\ 9083187636652545495731282355263997405491202869291675564087110636092810821168911\ 5489133007145018479645633664303607104695728739369555225353929954209050032056954\ 014663853342401523951777914770049658215568480624247959, -.308726282146085466058\ 4646993257574902473083170716732074544034363128644092578402039380990443602267811\ 7513112860412992543947008514854364202284382009396548426566069835312744596680718\ 6815431316183816376262998452258958699631469672381548206184019633160134682592032\ 1620585452909465377831710142211854017677128655055030481004991255875945996528674\ 3230371124966095088547523912117989229188933793384199512500965347894691928061907\ 3909385449937179610664666171368189916859938342481457133935752758241435482885786\ 20055524823525175, -.3158432346053894433050173858528006051263651634955752263639\ 3140031209868850149801564849220958880120056354312205960813826487582045139076275\ 9024151352202065834133676801826088398243000260882837507352491312675191244499379\ 8643036377534455861090537272641073295296627454375435407650310806026451363557506\ 6535796713928244029417048293489115279728415861095535906755677882386280621192721\ 6504752665300388243716781408524231281759551641049226006728687457900256417974632\ 57917467775829429297898840932945784927983963638455204735898, -.2870011253110076\ 3203987988078440211530004555653236465363112408699953638972075240512587761875425\ 5492251931427629052372490772040571887740076209433503101994163045031183022454112\ 9359174172074845299157325691547655976393573327270250210926691455152284936832131\ 6899957409868381520191527493702615070326659313818219065272841263962893437178694\ 8572846349450422971595416575593530273809134732328268786062108870786006199625595\ 2731844104976270856610750326591615889439514805047964524411778708944229902222226\ 2183714927725180125014, -.31447928708942031267639455508025597468193023418482654\ 3029935321851049753338140878980187970567829339646754131359921341531533981477119\ 8784030855408576991768108656578514632834839093894005144621738420716620391804041\ 9250320161418762841965285483811385037746147903103106092522487377809406440072067\ 0395494798387813285276552720284783418910064266639003773210597219882151759644232\ 6888544415950445872819358048071335476135885624375901103530508813326532705626881\ 9224289338768778577357403320663562422949696987248922105287434212, -.29308475173\ 5846875284321977740814026221463809633438634174571262722360508700276119663692254\ 1270861244852669931908432410358218595800244821438772468621510938446905192270260\ 9022464676188245814326285063265914908641573399619065715830320229745721955357821\ 6074444449197595510049060635565919425689617786427738923027098065212903622278605\ 1465343398451793749776489795472021330569850602325485363408521292179952273918906\ 5705416492527228072122020116486261864577115886313699235917368112458525240343264\ 649052068137236415977113835, -.311581080026512435517156121192509165053366098519\ 0587645848328546969333721933803936437513821332104463494494327080477901989467652\ 4726330476699370857888615684928154961750247017771675715272547660374155858057091\ 2896323109411665802750379630126002047083544560551438559141099661083945700050034\ 4863890347498505952463663854416834981338105391911031586415193511912041120843515\ 6057134890264965976349176042828246057791523174128485294933361025457417471222009\ 449895359904407515483097684644984386023652629275296459748647339055618, -.303609\ 8863738663177175890586696628518620184852942244655755388760659023222103150630363\ 9874178780121372361122466163644631879186294995966679158014846825897632731062263\ 0383660100742548035892411690989685307163221838878101953342144881263456346016227\ 3336032145610107840643990283160774532036962509649153092429652991168331140218348\ 8321578119674368106818413850098219357805677035054692436610100303411999493297086\ 3604927181713026389842595732992387555212961682025315210913635059372254308528255\ 93169142856338763655925970215198, -.2661284666975216775271519004037956598797527\ 4069144226432711054448523959410720337364598734132215372971712038490630857385534\ 4520060328256136909486964855774101252088255119677391295522774692168098777227945\ 3821820061471265927626390783766775801865134771080400063809777755132575387663560\ 3676884555364005079806778492742203267284127935530622738368416429096817319640319\ 1809328724987861450993778798715564124265600771767282829594171263816881181048587\ 92721156643493737107947696876138965418408739833903788564164121143720392827, -.1\ 6645851499069379728987360407274985471094738736072551446850901376040098211945782\ 6914498248649908343211392949993364908665321366473752845030624112830090483025493\ 9069993627529237939288034224537116994235514475186047549457042831182890177898794\ 5526344303196385181824096990115570665387526313783320406287172700735365553533656\ 6363332032444769158571214401970390379112449411073873708456905744159706456350114\ 6699180683701822650779729610216380710404630273264598428618585281224862978173232\ 9349606539588473328761676225850474263, -.21722052378115682407150115421858089551\ 1296362720406945196602423167122969905361234730661987247320117755451423425142746\ 3903065464592549449161029616558863046158798966878674958008616374581275324182807\ 9752180717528263524417797560469976820560164505265523005784832986071685888462173\ 5762736720957949871592261604918999439853549888997948317623063526715298733250665\ 7570548046496707064681508631484105866242327460238403785822754196264809242570993\ 5195209904611952847503274963413493116350123030914337250717408460189100282270682 , -.120196556552342505330877625698169308351234836508103514056567767960172179132\ 0070040028645999320725593164542812113867214624090055415131006508700279963392326\ 8001450538048472473118056479512246655587098340864275473152236666233534044990163\ 9963804386753227517680370971162849673597360727178296097249480404778234545298721\ 5398985939899927285029625370683573676267101251038863987636727761664304724331093\ 0625344271303431902205570536648025857304328552706201985495181399579549111426909\ 112900763290516751011375949395040717313852], [.89357696627916752158488710205833824122514686193001448706922894511012618862099\ 5846847698085521234154708391900778342883671917786271844924076072336444336719817\ 5285364446472863951903157410423132165142973153451816032377291798974009041853913\ 9856402044237410049271433450695231655757232817945464698423016115902196881262533\ 5423532027772624935171315244365167855028180071459427703899736465373985406567815\ 0176655324554693047467710034024129904721830634452807376635163846013126141223779\ 5409838135549470421197948594820804180895, 3.95767841931485786837567718691740128\ 1418603765563630625507511794841152377008364081070026802491738758953368717131036\ 4482436076646973868923309250256069078243143720468120197089309590872032520371383\ 6370490833383909026457049085125256122458860647535093458280472133361375961368464\ 8329701068159617594895333764019868217249349251664210512886615802087318740741939\ 1437323893516857537852625559861260324369352838078097622162401314984996395573092\ 9272172135259068729107949055732891695538654205929327951768134256557719977596176\ 67, 7.0860510603017726976236245968203524689715103811777644698551676523535777615\ 4112532812306820908356248013524929441390558596278345994344252363122411450874297\ 7573346536810441406153424599043339097359030094136160540376925925569548379524522\ 6436466233633144601182761446832621871117169509376013873321004524353853695710823\ 3210156563854094170791762824852170977383097670432386556275222543620930504494135\ 3458065153496946122433648444878532815862849876286999141717080491813934103388697\ 2753989943473038511876673826963962927558501, 10.2223450434964170189920422763421\ 8712599405961318124118311908548403104232966359130605480978093411353926695296299\ 3725328482667363868110490894122695268532733991459046071796068917787617065437679\ 5267941296246150474815388466355099312349614506639213646902987923071615885270451\ 0614903974237377816531528218888115648395052115897532160446463212038959933140097\ 8822750769175732269088253604520430996461897628387570852044357741907947025295528\ 4297078627409045556227125032419475424683565156348295632251336891265825000969042\ 00832, 13.361097473872763478267694585713786426579135174879926419628749306763644\ 5742092596648417024439567312252161114438988003952649835804037158887175056924565\ 8332636532390588847958762431189877562397875331079126001934398067366057998168277\ 4350307538645382711487994321176564218843066005131737368400091587887262834733555\ 2056448882572914590077235660044192087923833089622562886626014986063223189533747\ 2642536926532939794283522850463236910038941798638916339313033347896201502100854\ 8205115915705152315603728644203330274018761649, 16.5009224415280907534211436664\ 8977411575133310479070825114442026348843739364470328773022306254446734994232456\ 1371223008256001972076369235742718868031188830392453237789971002666513881125651\ 1344234006402994674582097174763685204107153642703575399054477585180508871307852\ 2880358375953284009500860821351412946368215928168322259115934415164098222727907\ 9947224004164428772415409898569609588251422596862093054584634030413099552062778\ 6354830033324059865029425698250651951436122524872574464509483363158199306238135\ 50696187, 19.641309700887939773776045472285980025441517491869868983037211592953\ 1567822136459018370377553673386545954961068538280534699602846258748751106875030\ 3212504400907851513142959013112470204523023495803568950925768933810661569012845\ 4013864345416361116036725370931391910729486460631058668016469260710768064446892\ 2427143052157432011717508315438761142280410238335408949261716482706702188516153\ 8236320777203173658331201768442850401360422845776417469628888847956547987292795\ 2749296294765673273981163358569394270465094984440, 22.7820280472915593169320819\ 6839651666281630600184046142762842667964045741078633596262457369910827073599524\ 0890861738927871731961480642663821440852589453756901014541303867411087179660522\ 9018794519828904381150415385838830314503610860478038515583377701989805749354716\ 7663582882559994262369611156949246425564720727847930030218345207857027771824085\ 8747066319940830254153384019914381612912693123920840890027618186867909331679316\ 2263626754474287741720689425015488027333506493583555202087211406112843950845285\ 54376477577, 25.922957653180922706872191146269373317052508874571245222330569111\ 1865223264916161649889167297761258771730386842740314032690984767613089888884236\ 4682892431213000468533276029507114395393791291331920015126839020170074139636556\ 5244903881034574893982681775859030063492707404513727874106084262421311073307366\ 9918142195979773048590643832533795089447229470290333064406299491002609320326584\ 3873971194815768831000116185362278033481451880340392596080973307832324134332051\ 3055530065372948217940650402486164259647426689112402, 29.0640302527283980553047\ 1840518134439360506812156134453195829335520136639600225093215538940854741231836\ 6746921292489768564696439336122696162563661910094729097946186407870164911630948\ 8086575903335412016868975567612319102155566309242524068846345721411813105444725\ 7500339103028875757600293703755367231315341282307266827509343383863548289132584\ 5595903997119772672004016330146481125930230888250047881117257039873516879798734\ 3512175638028424671626390304310288806827349242670026511356752055680461740884784\ 02771522281276, 32.205204116493280650953559661516194096980979167364819925637895\ 0084272341520277696436465258508441386828606750148246057993183240050562208420859\ 9371570573786628736701837557987717858615939741040217112737514637530438212687570\ 2995949193339117594198169982753774409081948471150069300761698666107151889789968\ 7679912090259452224277674716174045314964612721640241889839001658002630356742949\ 9142154211823267738651825821412165934667029084016105196047797443085964477704559\ 6622579225325012990658208727494590531698386852501176813, 35.3464523052143205087\ 9986870635821409128244683487890076643834077205626831595781044677005330233591451\ 0008534600762787992839064395018180498950538728968299787039481958990488584107994\ 5734355644023060340619326471888672987124821024167861717810673473542956165291284\ 7968008880804795151466304207235253521028798639803275184083859602709342242393729\ 0384335650198934411257195186078053908571503695033813529764378868219998567055371\ 2143979987550418985385616659184928625950770978706916821424608795755392373379366\ 78046682380151538, 38.487756653081537176464556122066562157372006587820672048833\ 5543006294178397186057756548044173862641105176321733128628241322128074583843758\ 2543526451200936813329405850562613979031335040629601226841400073053266843886659\ 6822071752840478383722744058532603246274631368358969974472258347990826112572164\ 4021527036276200318380196265546601898144836072452807975045171000991182076558589\ 7342659383171335213299728060044000637837938415823945887168543146867209096614290\ 4426237103730432816618893796071952371657491786184921384542, 41.6291044662138079\ 6383402840326694783511821425026845278161237821131775411101958771931148582080975\ 8505087883830464305339833372401562136835877678460368202697225998119077338349012\ 2733247940884756310419690569982373051160257571046374442525986754883191293240696\ 8141084647841359869586280020634365468941171778745985378527226513842722136092400\ 7754993922487267383549410979893640260173924365546979870564780725383145968237328\ 3859978441053733255728408987118667681310222191015101137501774296198266392067940\ 91634196431494205090, 44.770486607221993156366801616102992110196472296813241384\ 5036046014617804963427097468818431987672563793502667259792384353062993561196365\ 0176415091794685500584277081032133184074271245995702318891446966314012153358515\ 2859662233428913666666711150095120521454267712997644500681951291341090171341243\ 7784251049716838590374310022948860868246059774203904678988526294180191356931990\ 5622571606565686245929837863632456563428487719290989836420334763819690133020640\ 2653548982799820490927517474686700132412175907124571351599625, 47.9118963315164\ 8034215030509836600928821929688383658382905552743923495630999847459609430546840\ 9076519509488392030961931326471605935637814442674451356548022945397516914641265\ 3777737886406148159352663881863657465291906879354227599814061395308285859869570\ 4984365329264951895471551448717518869184964559785418245666241823617079325599317\ 1123187836235048444690578601266254147319021336517661041171081044530463257065486\ 1125988432005505337280444973013422791880724529173117028077738357095218173293680\ 97102396559153597723532, 51.053328552362362084622730461625767074078664485380425\ 4018270576808861020483686789051077754225676145605282686154788952181269575580131\ 9281942610981280621126028733995571865607062437810290355792914252322987761204198\ 2083357762039618814349504262266628874529680628875299040680941475095266895054000\ 8256646111773757628508417385062999671457479541261206218956931600030081836326730\ 8155521323059534360780297326727041224052796701447421099198479162612659806526172\ 5713843499752083545387318521228852572587269482728684107426590313, 54.1947793610\ 8705429869041017135112434866769042888425339596245994866827060111528062288903561\ 9512640623219569792182682745760529201740860651488186461242886356350071450012766\ 9317257062682507763005213576671660329115152509930401245541815991709708994073602\ 1594777664209439485493892213743628237408216288735808335796163545439414600910512\ 0503938298740774225922405012450778944780778869386822226018266728173325139611696\ 1158201284209164665541566380030806188074203557273676354071153411031034728351099\ 59500027544179441661504510, 57.336245704766280522194469751655579045492095229791\ 0541517748754743614428217490129206920712380419379199332477939277381578229185137\ 2899130550658592628913795657456524616950884488646217152619415953207584187753305\ 3475566874004971359925190357710392154127950490160983038545650645440471014094939\ 4002577916178761227508320035818137938578620099373945445557395136372512352746121\ 1330268700327411729561128705374972545434551496588964722214957543933850817269679\ 1292657847831970658827129410613749306270618091006172083359817272376, 60.4777251\ 6422347573331292999389088011116298350141011611212986144470555469448500053048264\ 5889295397612079908120705823945910752612180031041107234132473978591497635310827\ 6246956837856150039883078901441864147305582449798566111293186535824582085626450\ 6264858155904663033852745564361351276113758985401441527576264127583474396474181\ 9432423441750340964856050929131954967572059560073372758850371949888392760188745\ 2877951095375637889622774166843715322416049022880892927373875062837675148665960\ 22715714848097174103132279726, 63.619215797720379116326686741724061951911790041\ 3001927086014583373123919285072494155902393114449319723212717976713705667664475\ 3562481609051149130917546196931715338342589139242664271954316341169084764985456\ 4140714033143337225406204312120115311485299009284473964810776455440612674212718\ 7440340107121016637594062561439073401482465874472581494928581241873045564565170\ 9730875536243718356636561745761812417412598547897390928672278008771256815818579\ 3285474591121274768213082881167979245056807692532148411914621214415330, 66.7607\ 1602872964465732438015173288408651025858810629813220952328609529264769721712005\ 9700928037895209827828756827562331695510007199464458029619550486337011358924424\ 2798416136476307553400938617449956600689690654782237280059229211044712120191402\ 0802604535852968615577644390313958478678661978832343303920806724619924289559962\ 4569407800254598479886369072643969237455314433057874405513709753712405354052734\ 2991883102765054609186387042945769223834960001184581372258189548448472514432478\ 95755387281870186036409309673277, 69.902224563938499423840189433441406124611816\ 3351029955527452616441750885411671450448668275378976967383959250436846687362419\ 2935944063227706388838247350465582397612707668942313993415319311514787548886629\ 8689819222925225213705610011362570785799387854120653722972972724035322015582331\ 7741492660710333637981267643566245067626228308197694937577831550345392739209454\ 5894119136393905002386897672963596076395687619814925399758825136471941064606267\ 3367052822182979689865154809698522652154175869624565138858424160914983985, 73.0\ 4374033239207346165235952076134487617330454080136129122428237695003182362782720\ 5898191533342658858261986921839537322591124638074275241280070753904074596921556\ 3731640708432206202658340691886804321466420604732111903164133894006663488141890\ 6930781416111557489610576043217516002795774297969331216940763761746492045495873\ 4216697214097853228178654661954977559569562365788324296068877038619210127780403\ 4553665501443578073365103777798429108213932513911949936285485890436028209968506\ 91278783329053562541641608487999970, 76.185262439680614222427019588088754491383\ 5976278713389097998968410872942746588861619594579161980789772797879483957017440\ 5204646862029558167559280052342445712462479386794599665193531745898905470306883\ 4509533648696185287213906119920705448411613778481743981559505081649222493618420\ 4375330852694453686089796938987881228810104126152361541223107588337425709072394\ 6285848993398764171314781074045875959115603100226297466249972052627145873280990\ 2023229648401743631787595915316899303396579079664292143229019597360353556549, 79.3267901330040005887406719862691679119824991404033785832591528152057608329350\ 7948981900178913707597594717987764587956361940708635677786044359835961095815222\ 5280583031049480807138100596714292190893715934104985908992409599982740742200707\ 9768826792013151523687071117817332157569900040824556877779919831213815881954934\ 5124581491686859201395536347074093708161542679418962924999489691523291120430284\ 2139171266835658140833026812355596485911552122067313099773406642851016640114495\ 067451956937826445143554039525240825170, 82.46832277421549845967831223806482725\ 1400660184440558883218475727384544210619120551523961643023855526336546363171120\ 3835195577589357473368263336945971066254355044658695284835451373277251605333321\ 0723543269531117687215411332465854459694530817003032694096575364814357053968205\ 2965980818087332009393950399043014656319691550724908992190009091532539258807743\ 5561401225909590136133023178292290177204704905521678193084864743246008707225325\ 8631804823629754151698220960176205351370184103571995988712796933896434006192365\ 7, 85.6098598187967099037145600195871673143899068021016909127312187480948651319\ 4879126569910549759753661273219104143147024555959469131448994032992002370257345\ 8236659290241110516479733346044047055928570707878318087849122052981868792492764\ 6701919994209751552358175910666232945544790296276862669867033526314905205874637\ 5357549778604376632014486028016621897337445449063479782921540075347009808539481\ 9471619007889534733012328917853414431668785730485187784523939642607278946643680\ 553469790813667842202443219101566674337091, 88.75140079929514452776256690768999\ 9090740558266435606266926059798772007770135734726971543080905609938214555338182\ 6055549009537732636437748800575626066089796495332441588043844653351691616490805\ 9530978068504632853299767862952747680794404683953112640920758658431798066698910\ 4988661981524111563970947364580029130470351389992936815768624483128747386909114\ 9955345230662131826216617900117895851050401888791491942000178047733746980798911\ 5167794465473137648777947114480260433737930917134958846606874286596011999473936\ 6181, 91.8929453121571802176762815443768683095631511280469652017607311028312034\ 2416857457899750979862056167291498357320731895546836232545176614504092427480683\ 2933571809998377280096955085717687207102007929205087325467459335103466144928556\ 4546756905576848136305108539218873158312977908653091632866570271658708427279737\ 1436755878448596144220193684652564057443631199913250895984953406082522421866693\ 2625760858733590617976032729520428274622083023147261105167583262695671859529557\ 223919599704448309313666355375156266845016923, 95.03449300717121341544419832423\ 2481673225202739709072087795350959171488984564238971822474354528610818809022032\ 1171459763604813038025049313499723546380435855044560800279575004448978239971096\ 0152342226799794428665954386526910444285537589935762811516017226933794316889370\ 8534114953085203944724339188312518966865478151765654123867775571633879788378222\ 7807538938876885534935257196711464850462409340841107104975332194748149841614336\ 9626393654234462562089119606791487133728107959214478228617644164315251002158193\ 2848255, 98.1760435789366705892240911761209582358445138871360149631549070709436\ 0580472265713930737391634340487733830094778355476360016123798594881158684590511\ 2559563990072202997686144940882730506994513533927197322027275848627188089552577\ 5377289958116506008019355371745387001937658665648393226511037237741780664642326\ 8718053152888349465209331789627398065457861189594190407898449403772153046561345\ 2583041953211619364350312694117879318364174364312412570092168484727273827756847\ 001668334970151230873394528991644277550222529786], [2.1971413260310170351490335626989662730530183315003341927646659504352750220986\ 3653652515876575619451879960787188291354843126644535002637559123918264462189255\ 2780176473999655019822831927599528535684971984453336976766721089798455381415958\ 3184243588449971109455260627245711966348170778501562556368300581520656284455759\ 8960992588657260557879908811330459454682034137410614032381725432192583991979035\ 5535185841957703617934113979709783321236631428246835253013702706267629405052009\ 0188764025039086362770504806499762906665, 5.42968104079413513277200519085258419\ 6583757476029145836503698537020178091745765031265337718255338710520653709127342\ 2402046576737209618973342488696737927745125151679764634900064050737186380712896\ 6100451622022561744087589308826246103181626889285991604919008787600623263967865\ 3530446818892075458384018978503663151448350407345159945864896582993386760491523\ 2900860697412016024620425784001563514933051874960330627771219411862813010384276\ 7226150506758676217746272259725942090085676721067593983617145957347145555391367\ 16, 8.5960058683311689264296061801639678511029215669748799294067382221958340405\ 7000772151018069567752744069027531945063274293670747366849016197045148165972380\ 3570464301359643211139931213698850404526014033562481883737204540554636303746127\ 6919290546784776779480015952838753142007275503695047826829822357294285492044433\ 1510950395806848817236583849351621782326423979997933842831717351934705522876521\ 5186464710624039558503470597069990418918477033585282955449198163985711568300619\ 3525029760917705578221781683239166026279005, 11.7491548308398812433994219399223\ 5071430116598327881055256304314603486276382203886431321315597433116674894848970\ 4306181547128593076542439847969027271448117738559190308921278751474667892668766\ 8678296826014531619557782213382809510659458807743416757358363174515954909249693\ 1963364743777574762299086940942963254520642267535413855799091408835555899623903\ 7990966744336754688310063669615423864869744597792879406224792244507692429860787\ 3960175564730074008027021305927827291681464802456710533301068362736869752031850\ 44544, 14.897442128336725378844819156429870879807150630875042108881408402332616\ 2378339689598202819103654192205807720166984405738765761675350631955480925910320\ 7377550323903096424706562582629307831915979260701281079388462016080138367930422\ 8577469086103205318897907349662908795767666394963559356561150389965144277443839\ 6385675656559569902003117231566134425498699397319459374873261940913972874606528\ 8128567460351457984947265736691071307124586796900176976825779941076080079214800\ 5382698010423442329247767900845567052442855110, 18.0434022767278555643045555078\ 8950890216308832483431968643648938810081344042962450081037190590247454203968725\ 5470428551478975322199271281240177709764806373824818399474777625687449273916240\ 2225636350147798141513568900081675360420460138464462605337076526802588024292871\ 7078764736477182124357101556238346290267060954017354692437044536722360815919843\ 6115125008044419112572888622562294299827241822064170836694409862143663856046496\ 4152567276317915479363617068042590020422178296784062699030743743878026786876370\ 36370946, 21.188068934142213016142481528685423196935024604903580750238357981686\ 5604602931789928821930957235317267665607799720885757965721754349853834541281475\ 3821438011633169461773214923264400734381087441544199424947672814146202213223254\ 9236599605156403568768314399019528713937250007748467928164182072115984821761698\ 5797198176967689326035119976566555203845481423951403843458583510705434364890496\ 8943005702206404638980256875271633513336832981491466862345380519280030510524435\ 7295024808264211519203728305113707574678316680667, 24.3319425713569120359929440\ 5185012965141433334030273326204569099763830838994062805215864697896114081765991\ 9979082734402053735915160252371525542584548253727815337525945908995447464475219\ 6889872221392418767570974882662131700966632506353553045857005313374960581910477\ 4563489517937866831475819705377103667163470007199671282405625294691384733763778\ 8311128152890713406129640171864675476050627815878508031399654081748035917719488\ 9935243147863996843462197422061454575656542911464535069498953578891684265363848\ 85824852828, 27.475294980449223512212285525410668235700897307020671660758924624\ 5644580778392140485939271018523836470695553165073850709255305010519025673696531\ 3115514647094170003129407337673325239860070086373200599182289718098579689493401\ 1889543401185511961572477448248559829515532620286635472088664803596446117335694\ 7875718689415416722751567894914267621990749272988938914587918867338738773337415\ 6831110896689406937850903755544801750502904475559781527172333732721730526293522\ 3722632368678888608779130297661548011651663514221612, 30.6182864916411147157616\ 2569644744831027793957086786589878879171694407838618705180380901197254426096855\ 0810550383840053862619754950016360927238800805422361714400802770532161758386523\ 7432945802904688272640663880029926642580656181018072104532041899052226982403115\ 3705881602622772241962141386191949435559885183198979528945219001832185339684632\ 2124126064089381978466068505985844115135560867363104498444889562881191769853259\ 5366244364563895229639133706394833826396644311971748197726034868125324125805519\ 45272126143573, 33.761017796109325692471759911249650993879821495802309755889199\ 0525898963762828975233632793693604007493901157853188310052468553591946486586315\ 2770199097220015526425041746178243836896265326873299665267174326557120954202629\ 1419370514664391494878672440484719717516969122012208688981638020334511713442567\ 9653979055948498520718949123231538912885720371806648973175345383749385594658861\ 4664604852428135663133673443697294122945429176340990970441621832251510406631292\ 3437074818040366985006215947447294759201630715386084456, 36.9035553161429500535\ 8815930984430365906054456478083551120662199991246078870510112679244350186137725\ 1782122073488873005720951095232004243180709344458121720781267471766497625424897\ 4187766329088214586425679094444790448938135864576634017062205799307684064275399\ 7217321626411371655394422021420965027502740919554828569141905714047928785750841\ 3677152679468938960808231797457732807364782966868481054580013163243439639928782\ 7485819307220475044269797538556082890837250264307880943977315466311351817183386\ 46148256048414966, 40.045944640266876089064214537312936172020628336402298588638\ 1290342860391801342846063510446733261339527202393265995944978983822830671818034\ 3471863940647863369090940874955188589704520335333055403133117500244087631820261\ 0743719560665046244672798538799232487420802116659679228748067385270918799506167\ 1567083571031722698013664711410948458763771775242314439974229390518773398595846\ 4460067755757483089468338409102573446958283580392101051817375754897739338881962\ 3757839551395295445758056256543454112314864466198616408674, 43.1882180973932112\ 6847753320012759720745635785000358245801932392340386099073911557024899014545005\ 6851398051061889063951816780079350467948918791297183542292303960175927908855844\ 4966899582004389190567111598871639866661126855607371902127757277443648276888788\ 0625552491155489849567075452571712852933959808905929526140013194158772524958944\ 4284090183966838749434610339456368533400972672590992575174978261989466036440765\ 0343703607401173369673598607422580137313211424414857360237983278737614008486699\ 89830123266040528941, 46.330399250701686587724463565243621670014635651346369889\ 2539540660970395324127694167102010488297536111437883225835871382759276129079277\ 3479780795383846377337319533924355035133365811907997559579537534134351365958251\ 5408539723824671129342839078392323637926919567315606800144030162049805077131372\ 3970545142948752165178526015622973296945111707028981730021535396068909870152637\ 1771286704225746888975646862880958964283082716427013499703725920397890570218509\ 5367216653501184790944381035140241005058870692118592924883640, 49.4725056799240\ 9582412800388760926727329489441171591391270821917826514024112206045666269484344\ 5663445365603476427331509678563581458636167659314569566661101671759013746413139\ 2328446069880157530080623258328797268387457909006011501703051102040792293270841\ 7845412503419096948204708882943989990829865841635977394966080798757513559332541\ 0995211338625023446839304684291555777174993070386747345727538952403422681240644\ 3189335416578058395720159440545751389223670802932702590030148534022229689318068\ 09589340716173964581559, 52.614550767172957805120284895640403531617010760769183\ 6595991579806004938285696389835718014217641155074947105463817769073317361344034\ 1643281182367412115871983218819993531751756838109910403493119708644191542901273\ 1291292133617552956027041399514715991823030889872126780642593884021228567101442\ 4104291164359515591477465378428393809630287109541698366837575429386096185137442\ 6006121543190692208500865706846236483148252237071488044766942933350540574305604\ 2657463752411789271153368899427794396293544158448437297721821815, 55.7565448792\ 0813488663123680749207598529842442236914770205731823373375785380923996181690219\ 4641801882355923790902504695452274557609524190692427476115764098423360472131944\ 3161280533903377203334403461270978413482745059697464518446216067676090443302898\ 9537219537023714519515589814396218401676861261720809779026825789598694061911339\ 5962110967297972571563681386009437821215583116315530658807466652686540155863482\ 3656891327749139534430256091723606469978397417680642846352830444861545104530410\ 84316654119759772223496941, 58.898496171433054036050631513576196116955148502857\ 8721164201749621179376684027288175548917100141678246632989344115133871810833281\ 8445414072518879631091010546611935574535919131824704180562085058203549555045442\ 1280934838140701720588975286277964866143058786416400747717467642257054664074052\ 7745635907212644447943927095014113156009664222948019504520440027742010033188787\ 7471866870650282106355401120432235893212787828651845773698550613510690880719166\ 0351944237577412747568312877585773345652357030954122722889562392454, 62.0404111\ 4767069347371282394406730438982584872753548241620622456722613151377628989502589\ 0859827206453890400635193424686594594748091220400235106334087852449040071617151\ 5787213903969934122901206614908154495988516825412138652253135483133421296635877\ 4676911853228684162608279320040136530198665164852434097406837374763748126547275\ 1601866736653164286943048871790507209205036131236319935463447257345148933874017\ 2276387950977772108345100308034679022960939878696748148524868271061431040518470\ 71992058104656852434220710128, 65.182295058095614517465429716382490266908119602\ 4894726344668691694289805671393390768260529109531251180650735302857503002404265\ 1661185000794332821204180169986864422606607038246987581936957931545929576604287\ 3800854985066334001604818948158050619191964924886900219049277535092885481322049\ 3788324368742151723866893374810872417342710869019024900792044001516974240230005\ 2941090074132606557776475931489860023998306586169610892368927273714412746717759\ 4016260085241741506710896886249260269555363306854018502872538469142342, 68.3241\ 5218740329860397927523754149584092906184792154450702389775890045263900665112834\ 1597012234945836106462974654348608770172162967870856393529447081754798559939424\ 2985497734146144717160682773690427607794582252409795389894040949195601604881867\ 5194831170609114043336037905786541865891976014701855765080130092988984853156126\ 6023148226658032390864365335788347873849330667910612305914286682479663913992075\ 1113431637693022198141914643570844154144880923555681162607005185491386559366820\ 71466484953939892092405953046220, 71.465986066986123729425683592774276298807768\ 1177395679101338156966696293986952546148550042064139503000325059819284327319284\ 7983525488959527122475884503425331918829885952920474849074275045458330961688037\ 2071450747896129314630370665234177436975505694183310080555346179384111205631114\ 3517696246612785579600262415407688984596299648670868643691417855512793872818689\ 6898040897883324157868606503024242340913166024750041631589293855314068826039547\ 1090644637553936253502355290374088979081460039763927749391626064297427717, 74.6\ 0779963351172075128333834840768441849056875667025054732939412006259853993484582\ 5269509733697894491290134319074479938420714997424964889670995240926919251009152\ 9024557290196605620535490158955064711987503618927777048686900252143442079885467\ 7222710015497023731150174437567537670515751616307792274934132693068857188435130\ 9439674072936016692529027263896355994254794217167756300607618760044672290082484\ 8687472324265023120811535762043615413581985833336233047420215745393656736381362\ 48800825054426141377412828761088944, 77.749595349061203987599205663259407733361\ 4698299397547834862630497194850751937936810513708625085430264769818103120617588\ 7224742546526815450327258582385445696648682565320352540287584828719032549676562\ 3279768229331187170326726108490723419144778818966519545618342501131024419697732\ 4144235799990741661777147563272456419335906237428774209628962718832755573843780\ 0468791453103730037709717672566317010927840985425638055825893556021380995041328\ 1909699844632644922742362400082974945518457644215717634698625674810316313296, 80.8913752932761132986012208015437338022766293850928866475760682290441322791330\ 4976752608820564142379973329235361517820541147092057038719326829982649023192029\ 9320812563256829004785831489480348613883294325707348504524842183812762514373690\ 3185556058523246792677501856171769496251615427079660637940719508577351314893440\ 2138347405254474400702983501798222797563230673341344145412694798859251052171452\ 9045846623908379574485090724636010481879263354673408129236377566246956449915028\ 102024843437928117669714295735392190588, 84.03314123483830493897373584302918816\ 8952657918727227732042452133846580826611969142839887894426503624583234426441704\ 7345903065445224999270031663428633132899330327232170075937061173443836784737424\ 1821763578517960676981646684293326566467087025365264650218839114858473914348253\ 4153146771640686638237787362377635791615652914540545187265557040757824778772026\ 5568730739004908954888520312596212282201669844676921418665307341704760686717045\ 8481179899653406789931659088220396280473311018231579705277402461481618166443260\ 3, 87.1748946874957154299266390760019993411160750412803412737504618515582473851\ 5431501869214228425236947823612547655200759231396760147837219941579265461704012\ 3177218211766364978343355648536915051383702305965337737178450363540200918433683\ 2959136407225262519975995798558362127802176047593066717619949278548540301419210\ 7247224236728503718603835654750718622855435761627478915320794048446154435894262\ 7011282131671075847590740317354590964774352500534064415226253337590139233063626\ 557594609528004371145323375501024282621234, 90.31663695439648382730297518099689\ 4291425067907224211932847457288545271136395637061649111045069971917419996867942\ 2531372418621745770774325162323389559131055306147303645169619216827028522138810\ 8738144533857423933485490303185498649565225578461717878646599743643662986177483\ 3403262897403774705883956098336209632917166923450934190040881624336143170175481\ 3015660871177362781914677014010346057125837993640869561626944449251041438233561\ 2585969734099872187823802674548731296842202998276391160003131327834551150471603\ 8748, 93.4583691634822309345815178500203326199170007524144827697111954457559847\ 8821239449901324802624894999506366787310186774870891764764784062863619757331795\ 0632696490787549060375173316728367703306118794262918114790502733174040585247827\ 3709105767392305253842638775958062090994831873520034244574272585866934954865815\ 1849602414603550111115309990375295299874755422737951614751123129492372275722119\ 7832971284045257417982848354323323004339254445273748090744089977609352986950690\ 696322074922193872899991131555627066018728520, 96.60009229597568788047318743540\ 9023538089789748744797632501184522109921353719250671072033882753151976158653600\ 9856371626057660011411279153996199806115245514262674818636354139747965191236768\ 0205629778388088637610811858503912629401175352951888403026639169536595645169306\ 2708492172619386808792077034873910903798798751469592704419983376999970401851652\ 9447971379526569265499618132474686930430017811597137533486202896358099289142985\ 5049680420849076049677530408554987388717985906431941080510466740192821027941797\ 8243198, 99.7418072094850947620064308694280686094164161969866626198646945078109\ 0111102188071732700232467989758750889239857424110042757746641200920837750869568\ 9724003646147053550442558311860039693386438401141088679309817275619974472045058\ 2484310988268481515478200451315272828476549581500497870655921677625538416131381\ 4391363290723920689903470469425894963885855206574044446640033831864296324187833\ 3746515051574148281345856924390642226597788178487578754089668051417682472885570\ 918986745010860368396962639420020773373494880092], [3.3842417671495934727014260185379031127323883259328913869841124394480031835435\ 3770059384160715919270656979365695271420159595143030325403834395609978097675837\ 7845975076777966379796793602096409693896195923967770909968645334205002094206116\ 8505875313493372444975583385489219763807981710058197622877176212805053668371117\ 5623263059336757505127010935680394684089109647880218321721414111895896083882403\ 3556128871634595400767067942657156066903406692924314441199726078103270533017701\ 1442847906837114693129780309873575485255, 6.79380751326826753829116710983694871\ 2449322218385447428814690470448534536704503687031577734908215067999779583180082\ 6468871201791703744519408848793934003678391514039029624162798188583376275289602\ 4525812109922976952479457320278077844681239609916832389902588463394945628286683\ 5097694352810630139481013343129436078064472096839238563179786221822197192532767\ 3698882047559404693267092992737718001053555820131908895139898059169068990835506\ 6367077403057881745489785925703936230444937978465032826982556135648521928645851\ 82, 10.023477979360037978505391792081418280789658279096948878059088851044253631\ 8713718521810829147410270815268723992303626838903258318673231092141905353318930\ 0158498190263687275458290389596245612546313054383208300225366493475007067797300\ 1164539698999262163265904283883645822288112059487297660368722149043123804475371\ 7404610554513680957053648860810701388708171861665115336425203502589195294550593\ 5843034053725628523967847573156545473622746844901222337480684043479002283027653\ 4363514599689307794680423562749726292980364, 13.2099867102064163827808631253298\ 5218510758850107216474334531383500742668976476852461420498899732685841174901282\ 2199360471374560139993329267790468991635573853516207828843468471196752439649670\ 0319159171477444808145390797471104984231462497115337883158648447162422065803057\ 1225854991543107632526348580290817236747775441362906539264201310271054456139546\ 1937885848408664016123143702892930382210911677092244006701758019295852814085017\ 6077642282311000109857280719425114281795179310629023171836888805074834026040152\ 65163, 16.378966558947456561726714466123708444627678549687307453507080582859922\ 4350208437253517042723423028608249103231540592792529209093367985526212252841291\ 3882659447190989485943922975119038881157476403610292103567070847207429798743880\ 6676115393147981147291062222360224546660513907125534238179259826755554023669951\ 6909597147100473655813152108446382104884241240202700153575112394176380553308441\ 5262564425309489995497075288938058115462304049330256620328520929989772888041007\ 6445284974615831629856940713537372115372114249, 19.5390399902863844115117406834\ 2388894739315649760342990145475135264249227357326298854476519057139348580342857\ 3218002507159947175823995208064007462305222474292574232536397280746997544036643\ 5230551109299353969108883061966603540259248576750501544086757196521438334263680\ 1757635918043509260571085490074055027004840604057806155515676330022742192431818\ 7563768970217760265880598972721042524328153558381920078112552159743975127133033\ 1560746729044569750904440550197780441464865998346362037089058513733244697327197\ 96825791, 22.693955938909290250069319217452860425586510684906671276995631070952\ 4738871788104868057200066706795619199944507755895109553621028175021699264644710\ 9776554159570920842280751609275801770372041464494858077294951231040293474182979\ 3326174037916262562019639255448622283880179456943742960947991184988594223982532\ 4022809951511796839038802938989487889757954275274709575184207472218692073536240\ 5346532885722645111642560494077008543741736694537330408517713832092839678129873\ 3007088252834779011973647677995052432165824045896, 25.8456137209022689120232366\ 2579043784269470105522209974944746123549175304226247754828094460180106388834385\ 9791054951322686275716714710126923329797732635566924800187677435379466756006609\ 0407772404592597672421983421003365073201207676802357096230891569964288496794794\ 4425912549237059743084328102996831691501131507080003922959031244400784569214045\ 3659807414146721391151169925744833658534842019968008146637819629525675418596509\ 9200244679386263443781185700486543274521558927888314921581247903643051489507342\ 49174542232, 28.995080395650151419191854845980771812776386604442957572211126017\ 4776531743832554359224138688815520469728887765106390699064084832529255264319583\ 3421915434623492749928388969892318161723793574111235796424108323376716449988065\ 5702286892022047579893045368282118247242021843692820828535539187758308761099442\ 7403918838596744893475949338576830862655394459843302423693066009448105629838329\ 3015693352707168100214130475286954531204074395819364862103169107531972026446933\ 4794154225942097965241895154443221202967063489561613, 32.1430022576275505245735\ 7825253221103283084453916883836312944563689041253893169489533633532017452320483\ 2569563236215498278184698675885521497270337615651822219686301775902160680108265\ 2190470718688488410464074343028890599240031951488657461037635653940385368720311\ 2291529298598070992303898916377004631831112682513744225729529409766868535577387\ 9724262301562591039556433711482185078494001343528763422638029788694790010764338\ 0963129316603297422619176538665780009094467753822308344961251239073367262950301\ 57248568442886, 35.289793869635804143323234828826075805683602368473163144397724\ 2381748120839494152711511643288234020345116010534884197509572762020702300961583\ 4678052722590946046430424394092808006316588875845656387196767160629228935241543\ 4364412049436054949327398996893368071458711225971565345502346950636430838893588\ 4633595719093385667395838976085556277557214994980620091048068897713647942031911\ 0065504260080981798872183640125036476648029886340952001778494309557751372284257\ 0960466168839100206126070716182838082680664180846389039, 38.4357334854463431097\ 4186314699755910178563484316885660182010057594702093074352018233231447008765683\ 1025461241680076390430301163928848871827140027250391544216874943377552532711379\ 8002324552109325747861356721205876512554755650685869191021314725015209200906932\ 1330056029630631546341429670809672621296365860217775595098013719142708589615207\ 1691811949865591641666232078514044953155841067168799890214816932561216447988678\ 4170287367305601475719693686054096116219243089019563053287405494386880181260474\ 02149151647681465, 41.581014867297885136408249775371125389506381444125696679700\ 0243629934835043880297975127255828594399467018551976402181841464298717984093789\ 7669679506869940592409424804639918006553593739836626985133641174454731055699221\ 4370125140913652975469743887285294747748834879878866327786665379167394595302370\ 3690580394822437687184481099348512241142141904499752517605646911085256698966263\ 2563554605567464992298502356286565567418083893725469443188640848696357547971923\ 3544353067608077947310648355443860712442799090361557314927, 44.7257771176404605\ 6035131408369915957138834820152767507242548521971082370791065877791737461777203\ 2110760844866188481952359240180479342856896691966760690361870108093895727199707\ 5019910086680356767076619134193710434013749228304279456074974191724398892566552\ 3440881462359139542456316822929852210223972369470734691417459161074434118261497\ 4362017356744602447394204329403333717046941511191594094861331868783013019054666\ 1582352998950382587062790643310879390067664056924798049920448193703037140381760\ 85122935829174917768, 47.870122696676504044526787441450277269592701812599967514\ 7711352684280975819521233920383699293695893277685112270778931603057661066848518\ 7012674582816038064235355508623491419578257807049047803494711671506482500355778\ 0150711820940369440335966296262538972832520310698590069997068222243171568455149\ 0503670425792300707997980875576049398529462495328797133315841270604318746296128\ 4507405526410595257707222389021276421764688821681121457018608155764731292667804\ 3563816053382703448440686615411033946293602639347674192376973, 51.0141287494839\ 0231021777480458282690806074015756408593243665360525381612877260835817885527160\ 8441642694321696092762468699497894716085237117447637794627894629867019279345620\ 7804849441154529312526008167944812572088043318615455905305546114126848311405723\ 6129703328112338477429030198382448964169193886461117764555049370618813128899008\ 6864022986092074535660973053685705753811927642789178214979458001471939373615497\ 3525731608048687159227477678558408685568497256574296755501081799756557612934282\ 59340792090695568832003, 54.157854473725579655676801785712158042072974929581278\ 1582630824148534333623914686650439683921254832454632523966205055688288490869031\ 6929359772000536382902148067190889916300819828221025074227436935465326466140525\ 0304758996874029759946575127374297741586428695234267153056201633829613648436682\ 8497067580768951200159168785134169716381911221591276960183985070726246217433192\ 8664417788991358191743734202314047842116276737810299244810399054515847029075902\ 1985502626935783631793216361878350307467614033566488822118885339, 57.3013460545\ 1056583612416994548258395922270611576336488940491904804207498367157266621280665\ 9393023774459565051459127624640012751531821054792572488599348877027034105084403\ 2409783202969864262380868028875769776001897382003356055987542905004553459850852\ 3472978445633432775814986145405789417663404293251699892755151222490576890632873\ 1766441484111864836315775114061458667682731415295990186083619623308995058429204\ 4649716272124138116479241613736076152808353800881791238089379822233460462462059\ 90829209545155814082370738, 60.444640055146380477578955118504316912723813331994\ 3086079167624023480897796850020404608567468353147121520325884716259760400362162\ 2180208004672187606626961500385544708260551858994545444417428678663447353790530\ 1354619970710060385242043287950662775620751608536522491951868862055038407287202\ 2184836878449189020515764007018002010786718558468338667043598342691128459618678\ 5525263406256947757637981008064624335562997786030340439293281779651665071300999\ 1301779666733935945375778609901278512322801292488099794127691756105, 63.5877657\ 9973759600288352333584685159423701532102389154556219317865027549229209993302168\ 2264299950653276816968167979242417949538674045256616935847975525684304538251419\ 5130786007457002236747547275490216793968111209685578162010548408108353206394306\ 4684020041915817160919481730596485497980681375827705211060327565637915198874220\ 1646431587049641867715419050930358039122800023041149503585290531206648528310731\ 5669196867421212709874121623688217692178457880545312135023972132095962239246971\ 23442080853647296421172494911, 66.730747080950739944012619668845642842570088878\ 8498666725167247791710353419011110360193932265621950458093514683692789237514006\ 6829769148511379185260708648624941690640358817585914547238999810377499656085479\ 9833527061466562515482092860311561369243056518705307080293803888481092003675244\ 4455689241560042563555565488094849695846885617636685187423155928700348644418089\ 5594905751603675747526749346510232307788717578835351056268756723186509582971417\ 8661557121464143407526128966292943996939172746977005251982815808594406, 69.8736\ 0340595822229289980547462393305927846714478714347746498870889703158993741079931\ 1774698166159436173395934415528091736798797359358897971453591458699273941501535\ 5068046152362168220262056547730654084698243402201585667022586605829221774918833\ 8432379886008450756317743674441495030382219422424319902078683821094865289953894\ 1967868288322314941209178747534462938974332588756451581626944827576588266685208\ 5752217288175281341024400875772470115108694710523353169804415026656789931200442\ 28100430538495013071106225701775, 73.016350920023369596715946513196803150820726\ 0330694451562261554298775475712899485752214625143494574823794172664729941986568\ 1546370188716577568638918043086454679240932755235969901179450909434567658657331\ 2638681745918835807247824752419640280051477152381171349345664019736835655224968\ 6146236689633235987568294522444325458166543235544851504421750057415381180676948\ 1535939645051607415676037327073981907860463191140792727965251677139151163597973\ 9191710844617177804692103035509831936829765622402403052357219824196852402, 76.1\ 5900310103434360142011914930381180910868469611320828867560181307606418476297364\ 4481573383391025676626175807836697675444938219608679957104796491682716242703523\ 0972725818490190606580116696803145034624963591526258794206407503326821403774963\ 6941166523541559842016503304334813229507081705979903819307564876932868610956244\ 3446264937590058262206905126984929806670252987313473170649400279659551993486507\ 8394470122318670613559974782267704147842727212831332671284400112370985758310347\ 77460520403759580699498033539223765, 79.301571288645999477884286845156724762263\ 5773092496304393711602372623273621282085004377756392005123408891493246276809665\ 6410159708652680245054303856317097437123041970142707832647720992095623067780153\ 4095280923408079678231533182451000183640631405402216569723971541717766181380511\ 1397302310026134267722240950279155350941039911347540254398833230573261389873278\ 9682246852572696059723098033303500373679754969041465739492853439516167814613472\ 2153571859245051059268075060501218392585062688355432397343290538276822326795, 82.4440650922361759326544336353939343732801771767988164341502978965358654681414\ 1377140519368457045444286288324806852376932082975412357495263989506091244673353\ 1013800271171485717298171327897121654188181281782830598836263796707561335999273\ 9974755177326280155513376760101881856786875874113100084885313894792079973755678\ 6924056609501256293262942089121981141406454754728891029934279960463312521937433\ 1808631055139191769776072496828847356367291965859233918943325270821656374061742\ 469683670431144839092432132840006300352, 85.58649270887300050466719117268606131\ 7180900244194960642535406614221453286011316184506409776716581136984980798698113\ 0628224133411353746960536643870472508284473254844045496956234814837614553724507\ 8897309020561181323382796204465528311504896737402577212255945951855347575568572\ 0629987988930160792711202957816135976002512275393298366926922341128631069582842\ 5973126334097266953917160070176455906661516565059220950822327334557789932219188\ 6209853108600749676860016954059264710662121284685049993126838099392295016743636\ 1, 88.7288611736353247547884701346014345530865334399933621469301813057990846887\ 4101377681814163772703254530924486137102852457603498407109493426486681775664090\ 3945146644961921517092130135451801875528397801297585318679505120387225436247741\ 6241836761889914127751864997972081336820036170049404060413591083104467494276023\ 7107266743052392739382536629760999804710043463275648611973100225823867633788003\ 5428123172413640516268937775145870879774902632978008123293461706680458096945221\ 266699952093236806336264827472898123931428, 91.87117655850489387588509590229119\ 6967404138309033543648382991335672127898464274758468325235528169163953922962619\ 6036877526357300713424729629342591562630052022597405194949134924555370185943481\ 6236570708461878744009379109564335430813734515229738682413680075278976938997014\ 7074196996630934801034588559010041974187162943009967135012768315117992852888180\ 3140784896712388453476145298759625844776709491274317068779314913982696878813500\ 6566601779762319263452793511669323133563198186658046625550151616027955301908513\ 2465, 95.0134441317512562239409128699419114263127699257524145144205631771856894\ 9592070366116093438518646606618553263568142422837160157462935646330852823135101\ 6311918517248464025779739946682414057266309435497925361551243302979892062250173\ 6770913466859159829363510323789578117751089809036105310605997501092686130358207\ 9116270755351144136397620068871466827611215118336186766751568764877038325655650\ 3900942964440966902822843544122536401601243123116286865818044783809118634444328\ 712586277655826778173488241319222056566630777, 98.15566848667308353643169297246\ 4711020343845073321181857200577341846237629487473457047481295630731881382433595\ 8517542617917412749810007259121396920613229687458478154482142504732174680090496\ 5912647167175338650075453151182222798467977098575725195220751200503507284991454\ 7736856222508046293114769803712117003489650998926937555700199337580246490574077\ 7958013667408367986872970847322418766301442171827009427069741494626728993083208\ 7913864411212530819476789427517382757984548422911001525808095027322669678739090\ 0842289, 101.297853646357092119700824313548608748461312750087786211483721884222\ 8950839154784009935427406965589857559921959959939404059233170807332812101945462\ 1734396150418339766837576346212624653527107151519207818698453653054216039847579\ 2798300982372109777818201148489415770033557573721557809583394749892760555246545\ 1675667179598623671051597337933936540702445308196776192252218028026858219523044\ 0177286490231421419936983105840206136849659773056748404131644846007342891442970\ 149200291831141843483954622974368757707423562508], [2.7983860457838871367202489031395706706346087907541010435964217105562495082785\ 3532262550656853842687926779453723725121399941656397175120380728946972283471033\ 6479879156560908918910652573276059155820710326098904704841097735740073934722588\ 7986260887367571103940401976625367096959735347289721505934023798331811141195940\ 4702921475489952156450253679558566129119463176924706482918679974250705207840410\ 9939591779490371776896403923381277835224154718591624481840169819601529990022441\ 5129776095293801445091895275327213314639, 6.12125046689806830128748265230377811\ 3635465613353553625062248246904038108457887777868434656613749824734539117577071\ 7606841660481640556093002749686136445225681954307995051758341815644806024676542\ 4649787791065482285142979198113633031189541668031209724483212888322512342224667\ 6658644055236490704999424263336179225102145025212742720798315314819099247370011\ 2704872143632342723592584850596246546108779909502119463905310527498229005459438\ 7021257247737936928230939431208093289223811885444042928178762795432532511471916\ 25, 9.3178664617910653790095866441427303864078904100850496600655572151858485530\ 5248648205589145806829342933636825257431142853236993586806358988133274266241103\ 6467744629449828636200641496872180247477327034517965178241084061399205425233905\ 2086396323554052039245086509669075224524174044234706416653869518652829142997187\ 0522054131496456495002558301942241354345153500609845674005188881215592245616546\ 8280053692426059558058113873232324316798586042540238315360843446561831817237050\ 2256522984336692084429097354729045477387504, 12.4864543952237814283773458624831\ 8324112703207094977236082137483567007377324631825124089576957559348345544337053\ 0808172444201312100702878754823832307055624846607875545700232488067106676985300\ 1359478225249210201481434613655915931565790022586775920836996128146891853836726\ 1812415854421742978923889830007183624926218105456991286444434429992608656922382\ 5598312383509372990673657836800476715359664969482507065588851537314393438515320\ 7809579472072543524766888452863307102711733720123150196702445374419817970326775\ 23826, 15.644128370333027630046774213914861880359636331970426186878039626921610\ 9918845693569044421971306290895483254374026104773963745553482920420811537495125\ 0218254070571975016624112122520143239999890306058342086374536373643256141919362\ 5698273952516250997728974646335223406206318746244321432284393477074123815765589\ 7272458953837235829199027806906259154408045631014766602511034883219268404462079\ 0263213333666512549530095521478983622183083090072793290725222152479973685679378\ 3044780373855715265521354373392029268921055213, 18.7964043662101571686003994177\ 6525240808248774043224927105117775302405893851520026968455189600650431634684773\ 2375664688259286951805823159638059995657671752089876992284916705047562166278406\ 7128149519870136697132702306184980567295775639480905849691947620799943680187176\ 4433594408209555063486192622763718700145798676449236464499091110529305384821292\ 5566886033180918825052051868604845935793886698081809661444746024911750322382558\ 5490739891443494085200159918261302914986699575084034553097190921966619057322617\ 86480022, 21.945612879981044572791856332438480501460652648539515241861462535231\ 8053586149899276455856096480783267638068589253744551713964467642189486454891587\ 1192197819541968998419478904312692949197239857769876154254170245884865625131048\ 2093690961825774201833814506033403547338888706401634610985593756159890076840983\ 9095124897681080963472836457421852018780455382813616445099587866339218395668711\ 8953834544453313953873603141358005088199935188488278968053206140862664603099759\ 6633749023458062161650473649715521812594308019167, 25.0929104121120973600406394\ 9486687769553799324580860319684137689412000329633761202276968003697092368298091\ 9893133797074918052262581963617829629088425435230744891427559094866794144012123\ 5360103152492237860066372289320642672255475900298408362930605300026134869279241\ 1383525457537039688776914151463432451236092823948938393099116217397600775255180\ 4189578571118438049867291439305960626644231558166451427363225889897029123311908\ 0069103621396177517746655679251686896523339093332532211214478964909428190724615\ 05310710029, 28.238936575260272929456146784574105490241779316668614644852675869\ 8971712846826186421849679485280062238919436709916305076304698697606477513820218\ 7915260920419068299033427335018419681402437712947615085686755107036070361944951\ 5098361102378949085365613114009221155307330022504391301622655836231335179176024\ 2343049123233362146265278169334927907332624680083429818472031117033921360165010\ 5112240650427772604766047787524372487970223850947481362587911040695130412495768\ 1864574597371379737839988964261661693198111953520227, 31.3840740178898584881742\ 3434539121275401424287095219108603086599822523629062587842407536495971620564056\ 6085993628961382758355837726258124712922020316991606596592099350046753713804389\ 2720496595658679412924237943110222279266525296009104316362580985418018831326141\ 7707479051828181308518690116863264011279169703390613288112560462508500356898636\ 9643017055812087021259745916991655257390797100799952978084590334832724230265319\ 3802531291291636902279345657018227871267121460467210378783116621796691490005753\ 29757685719090, 34.528565755462064307775520747901711843702017289386217962399198\ 0999891052963805250366287864666749570462292327723219652694292011430784460594836\ 6353931686139144539116228903477788961220742055181362894042046421316783567070754\ 9585639859050507497403675942094443488286398882833551612437874667874733983119262\ 4500711446015450824497057182146958231272216486426652208649643972399485751259216\ 8251911425714565220259485829186896086268504150255218235272555141035568983323084\ 2683454914744587221868990922719707051142668533252591440, 37.6725735651129661528\ 9234056890317665189613760331863685535027339916643599783155335668229932380730335\ 5700128437895226248396855592866286522287529908748590845480718460724202083449950\ 1165568366105114229202510314287954052548280291569655408428179276514274228224654\ 4409135608850798247804340101303603230267827600140998037695493436023142315687329\ 6296761999952458410423269944737988559867542509915453252180151913417006544868597\ 9902512809114432144131105605778201241499948350113408967755429208309208330149223\ 51037153276720920, 40.816209326634578953623337010474836326582939312810210511702\ 2109511534974959840393420481533996538704866657428339096888668669053663517416041\ 1379623506081596342099278720707673216313637674283167890604167638329949423772973\ 2903781924946977982701745616149612123007362834839765414006491976756284246640888\ 2138228320064144330143717397209641001980948521768153774411181241469546529627067\ 9973884178653271026672119210418455264587036713182747589680641253584114218656543\ 6716361062022579882443357225352068367083886468531297182856, 43.9595528888954914\ 4288209544074870580949299616380322520422999318634204392631667774994931605681241\ 1200611400499929886346666747438513554203717231678280592075222103609999200554618\ 2321883183493605061948688191144391727978757150327215653584573608011853205971334\ 4947156319393350286838463702672988932785746180247700772207249222662270910898183\ 1192997862609994842586000707212702807111377780999438902704566651746390587944336\ 3734338848979951406512059992215955558363752621420713900429027446527357338318607\ 94191627759145622041, 47.102662770362350132597124980644887041754791106385395747\ 6017988099521667614118759715730469824775210885710026684272432063084360155270813\ 6913914170623165458958992290914043467483730375260899489298598892968441026477388\ 0626554586225811919560607627008651445224207564600245955270333543199770634188442\ 6791873011932438850399572941285050584027631849313421458590200383798455767857569\ 4586899579479426845480991553489861252970220834753077218614840809522494594614565\ 0295403578945291805799384542226002243117392951733103577775705, 50.2455828375744\ 4153502109492098950204626485526816927321858665687596600306867579352613375949172\ 0639037400950838293650465633881803368660990393639834567903124592622559622580062\ 1655025209292514389684574845394647126736463358511634799326262270309942820860069\ 1769594208049963607349338681938141021276444570034388041983765239313351891707183\ 2356928531930378155066957490357895723020734012072890083264695274735101045352419\ 8830869602548598028622358637919385672716903852908235565600499205755749442299785\ 83371161707170783158457, 53.388346621725628464795836292351410503112043905153496\ 8049640649015798632926208396636668039181080274549135918359737703576414051197973\ 5296597336823354339365349215274450834822853656395409557054601553506136707267153\ 8794800916062232173718857178430169602621608097749507113840616243709885539132871\ 1306990474282783019373838704233293631820714500609587167794556085704947933880776\ 9683174534386298648830015246283209252084618275939949404596555560094500470069676\ 9470141236201627538005997282876857158768802621924920047996975874, 56.5309801938\ 1864056943135516486540749348884179119956586692299377891345570416323890664034725\ 2522639787517755701675291671823174691947455338363702788388823838849132427270072\ 0664091586529706357819203010123186788684191970976088941453049646990215930844104\ 1569694858835665092462626321020392053812488978096728974747284500169476708819743\ 3966987695286375672496262655319355679878609472187848484440792214304832934586108\ 8405552159290311105240111134536007409959368716441265493417300929994820112891219\ 68504447109793498012671486, 59.673504130440524815984746771323150270112782941125\ 6491930414683972054364105287800705807883521675991116106929699797065957247544632\ 9954532747037742953126510924993228565485438541158905552373069306232431487063935\ 9197276572159837562105388743939991149524266406321209210922717155360864847207966\ 1100495001310113288578165101803313370798899194380880645349715931637024866724575\ 0545538500551142456120985522999607539782681812335912016026490457013919457174452\ 0972492405466377761533748344260998873405427182465301689296671516630, 62.8159348\ 8897342664964456222801082902472516327904882408946571495813358175312672782349309\ 6529862464592618676812382311000402452693183946821375519744424415962661210339262\ 3990171946614039992566311690796258942688361592305833162095448992024796459663534\ 2666590394854423071047509155201067010200412130421009926882708066981449622523245\ 1672097420484716934119015639078493982322070679877879512408166899802710045633105\ 8637424346161946419958968779277913933707330385439262127678974934373776917151093\ 19863085872294938633083968017, 65.958285789390162463689515580518733542936777668\ 5372984139101921274551850595939813012368848463619684283811639024683697062832864\ 2069266902528578733305591558636392232845766386678033645459263046482529483624216\ 1744838654691406874625773769095695289759238117218032641680698861471498545083310\ 1571410036527287934347907154012184855990956560170588007567271626068214717673306\ 0023991410871164079818041795446460109043482618963616326174871087695042314094306\ 8878493216550289993062026395624218754246395934700201280765419363315859, 69.1005\ 6772798096931840393193778019273715978294988849755449446458747957916072210508901\ 3053635718737813837993401137263096090059012827781214110915673645840887578476289\ 3710393403701711453502200005302564277840830621469964814111684797820974889109233\ 7784499207628323014657101983971821435284838926886638964511299815910330743867012\ 1027814880112861208505846002933148713219677215531904290260071658230196345730122\ 3969858178803733429318482165467183452666005697158496721606223330354474366949940\ 86808016985203704769797205827594, 72.242789704697286855929226768372349652339231\ 9789589950774188717369954309647435480808545391739209669556367090102127059777685\ 5541228544815150865543558780179430568984444218636006192557892320288514729391773\ 0345607515113447964490265459913960260923333579955619078380211289957576356561601\ 7865896500134645612670766644659483897086226654845926302340566287933084407903074\ 8198571148206056289304495692948390410776580847020655819110269650057252468308272\ 0004467414165969552403893401691048838639034435995324217314987998489634575, 75.3\ 8495921853474106909162341999484285816322201884603269849023158808832828259970398\ 1254735621416777449210532996785558807473308825513852470148305038935473886412105\ 5091199394174041763293630503931176174641325633300490537743313859601370942577416\ 1458368672979263455957791271743733100375090814662317558717227528725194703996179\ 2899648968292166435325931156030077040379108012883153409757954149985604958940214\ 1985261385161401556030485163894519505647335592259497613886342916808262685127915\ 33402848977994743848407639675340979, 78.527082567941931603961990539693602956159\ 9916712286511404226904822977952052571070587935730531307242327294630482080448721\ 1853258319883236802376031969347128855416942145351917780302384504005359057713611\ 0539451951510676570967721133832611469139612550064385063101251986934952840960428\ 8073100286516266884380026443649727376769523096193500545020713348590235792708415\ 8419684281822364492947490818253858166232166691128126301244220669796716316589229\ 9124321460426904725665405122017013279559812214382747027702296822456798776501, 81.6691650818488682691027681739250209214592734047970950220261696253312021896901\ 4461432639411978587181063629149040384280522666727366636707277806676783231700611\ 8313418841836480645289772118286301914286325451020763257117029383258717158538085\ 8951700287851351743451526541279264832119720244500255500699050857549099318749647\ 3370880253688958055320897195011767650907912932468032371376734890903917803118599\ 3816935825578875780232234970421079868317278704359323712464398232550510601065411\ 108117554465455928963188162163728883951, 84.81121129931802289335439097498571817\ 2010041129272336629420853368478267167329671018395133453690364229919604625894613\ 3415829561389397235053553726516895259054144322260670438094933289824955086628553\ 9904445185005478171064204123126775303344643171788187105710697770151471430377954\ 2199018434220937848362715503261768247226658363686802482425697196256628738244548\ 5177774330130496332486457057520838444637255511086173439557406533326607815088932\ 9773269193794344307243320781117421958728068335555740074988795964715781366930260\ 2, 87.9532251106725506787123152636066369111624312923475200446103586717953211141\ 9579383284056817098738051804844026651335909662765369498854379288885316239061873\ 3466536540171945196568844228132906058399661533167314473301039158520540889498437\ 8594164093646578401257188022531213227825432502504177509674239887748277210839981\ 8528109761835789815826026364590456500419959805375117850047482051883870835397075\ 3844154985072532175101168516792484320310757560313945134270472264794122156345182\ 367695855234251669551469408163725911156415, 91.09520986940714599897535300948084\ 6672928262241946673185459844492938650681439578864827759721699272615069963270476\ 4228483071785457891574629433035939343723749868564761744972463731709217348622797\ 2134873700623082430262471658909746377040095783616033226188633791519711096361169\ 5220471240481710034161834310182459143758455556292797591368477371927770988527923\ 9597803413541422055090299119141962324063264849594743317046858760355890220803914\ 6217215887979050511219495074735824562649948717254475024559185031746926735971391\ 8762, 94.2371684817035871200808501907636056555044228828395434895422928896413786\ 9654110560882647004141694423361309878483656203220558648021479730888691955930991\ 9250605270083071624392735884899496799640646471820718134996673286135336414459286\ 4369342832409305233611939142744898933242910234816556867766098117489098233271911\ 0147439025518315078061692577023964566136084123845460846731119912632575572192079\ 3165674168563124470763097498930659889848393127282142420479765906027970915009414\ 883419223904875537544382974900768974663807029, 97.37910347861120371474757465771\ 8706849878550128738151444077747820684639024195759052812865053256301450727381087\ 5446147448656528872334277938759407771663930947614738755941623112817790653302839\ 3488992969870816287219757850647046598496563845259039927529794532107889230394397\ 4296843077655796295494778704583838521339495206233280209150882784771593341988348\ 3300572634375248756276161803958761996388376362259848891617658824471827332001309\ 8420535155063441281346749049821669392708753634398232794256723505454678089756195\ 9665568, 100.521017074686576940832751927513309467469851772249150637120119228047\ 6195983075269411643989592577182149406053834590421976653603356105660584313693866\ 3141346812413885922415136327563032344954117962140192104604320604867889316041273\ 8182582471540313012842484311079037020813287094481997804330878435924156748177798\ 3349066419997605362611184349829372784196458921717744371726233808822079710911090\ 9360378019036694601141106504563194538104168579482734017559983907611305012894640\ 975894050666873690310788261827671314627751970073], [3.9595279165010953532347878786430869693639615910744084676236676407079917942965\ 0525690668064486972898531033677952203206816556864974746972001696256974680291302\ 9908332084732751040219960364915737737732557450010326894762623186788151890048012\ 4157343536966192958645506743291196291796529332797889084312460138875440245577970\ 4506452869033544706214157213046752270274546493562634007754057649701731095608102\ 4705962673303230564497181130041082529407011256559512121898349350896960310341312\ 0655586025721905803229887754665259554055, 7.45161006421450340156655045473823333\ 9402897542846858122368297821854134665950908072481481540087249190934044224081012\ 5394354987707503107418518163435518929928320397854678945063038491375273524978186\ 7687241812225046106685921785267827494273908254287087423550351637992839418533511\ 3150194392073792130020848225652921154934527467395839713934931202265540517784347\ 2842981177336820523832924890241825844416281492397316426887592475571084382246378\ 8396192725857345089795227432336413643169466565595084873105151916698452100454651\ 55, 10.715647375791512566863078140950843743644860371569450988715755776634583136\ 1350542957946257525883741996150187460750983028491341060907799447556552721604175\ 4001150179908440426970555118964494129384292960687114731995790906933784664862942\ 2303124458992559109826351838880310738221721319908824393645175620994293201787916\ 9350352653411577536571059445474253441175831273386738717952440995650011492052554\ 4247330154881185645918459066219386140083532229059202334007348581963819452697159\ 1823585335609177395377136908963265425554247, 13.9216860123087816940286494830804\ 3239836748041751876989012735311131206771025390362469822120274339599873286065255\ 1183384611483287132985725702384037077342414082074378516250691349442469192547884\ 8088972059419429800477679654382628315322480099390455618545665071835867766158048\ 9952465617070192230201712039645216646934571004656010948664085792870292213801240\ 3235520781176992435788114646054716505324276360970543653140132958133940997045273\ 7475253460005084669152884169331305054229311690081491366677034340326953158514909\ 70743, 17.103359117208740899018600006798328211871299704181034577578110610743757\ 6233878320522258409369531196369108470491969909191001287104171160676711936936062\ 3275094387015571136547638148503367081548404678253901436451848849535191886448925\ 1830108763952816511280826600704214778342881707063264567767177805760155328334014\ 4258368121049529979830233983521593441491667702766276661831652853218185289980347\ 3324884895693871363041245828852842706570208564161715930732886556655799541684631\ 5508880474788350622924871992182899173357438221, 20.2723691402165293830832074443\ 5360931363063417366375904626086502893244700603153263955675079479117157678684991\ 0897844980269307773782427881273002939627378041745364446924591760431663924540025\ 8550935730767803862975657652585454996179001252346113243771905202607698365530465\ 2970333600084260447802402650711332031996851701651114867717831309695520642857434\ 8907862684775968080600889310712086166828685591574970954801320873774807157367030\ 0227875600144616568078376320566847720911272884824972672903548928677240172785170\ 16766822, 23.433926142067802429754286577791542264384785490112273506554784217725\ 6433488590305793321227448015254324031523777030609284774757491659667008245893598\ 7094417855802744097579908521999962956666202303803046124896777697512581288360833\ 7618154329843225284421775184955366409392579218644698862600444927681379893277164\ 4017746461231386803483357430058824426747411265260406710267532073796965885171266\ 0389740624077868545049867242934122850992883952087403001356470495585039689753944\ 3860422001713160204985227907700012422594159213481, 26.5907166310862710854327538\ 2411055013051760068087197099373861964307042246032451510354863080904544417041410\ 4130618032640347393186025972746684148501373147763205567633777909709609412254668\ 3788749766958280985261232533872658581659704190671536546084014008218253733712888\ 3040634494509234898300569691868083353773787759268070122861240565682677221691695\ 4794010316872461271430755210882283569142616026093998523411721265108021384398513\ 3714200503559827812571724590532462280039453079156062794965803543505458449667071\ 10750991958, 29.744270680556556396745840864474681816543288074280434643687706166\ 0071640622410605265951942445945017247645332192434591548059543866901060085906687\ 2513632265764717195436735334794233161413201122088505400377509051965484443216141\ 7852311526044223649089168051710419102695649132562580906835622010331116494232538\ 8255055674185279971159095498480281862166716776229246732368736593231384642842144\ 8927391492434049445801271814353812015960522146493285119837600400081512849975075\ 1975360300506824697043969645643272141306994924931947, 32.8955251882243041504379\ 8901378285704530593133814875692869712915916397858470202215678430606191708038726\ 3800051645973437899877507317246834801917568833146626605909720476421664223559520\ 9788575933410299427892394569148253186759228046745602904124357367308732130919309\ 8718207470446211379450964370611572479220561551843005023895844165210510377433083\ 4537886281024004084096966241896069129253464813038773178732537126878994079499265\ 9733436533871785406453035874285644017206407251172968011692168742890342032535435\ 10074476231108, 36.045086507922445263823373538943290595144000656806013623856027\ 6569301246096313982831053830818871126223286474984448431222668454464449724438663\ 9390085974899481613597256722156526379818912711533521083271650296197766090544879\ 3509623488007543130186564247355863118987560683248824151129209969644386126975550\ 7784684417091709629791352262616155090167842806339507576657831857582980891661879\ 6050239483885078773483250705362431084668775492093219765041339686441416220226729\ 9143488338207193289643600429258903133530189149692598062, 39.1933646594901121716\ 5339291343306913016518231748013735924753692411995025000752001474640962002717161\ 9131880327747787077819263621281503659272183749062104613201762679589456661271053\ 8067062393779246218525801146270431617695938813492025983074935109371293647936755\ 2924754459338256080269095990229438961438536946704642323825514283056681409610001\ 9963362819919739685058426817066767895795195292320039989057965212103611871622221\ 6653154347178103919196657431435267910659837711172992197776934057703656352189054\ 39407837275837400, 42.340646962290240125180716250463474654425982087235694273039\ 1040325967074129935423166614629569103171374100324057017449224412796301042308167\ 5298823868410681134755921702368101446431993903061518313509325579010698842873169\ 0441306482845507493580453188431821100581181118001586580847222168466849007082020\ 5562405436752256810148383488107955329331057015497878053770756222916989810613443\ 2558997968011370787242977597668050963244445579730778385291923558058299897859765\ 4647232167363692672211172584096380815139456650176403527906, 45.4871407992790906\ 1631513983929023565815542038553020096686862101330846942813431410525298900089544\ 5331213274350750308547587829395948558082465707456659419242010708009547693340841\ 9443788575864946975694179689178822763023055657616161623314630007691765091639413\ 9235602218629783982101174470438151408692230730542231540649450599959231783446323\ 0647552049084955387547931426735473272571996164622867619226455433614904215898894\ 3026864466985101205608059632165957781969678367086938212878515344396766295455904\ 39146536820324036727, 48.632999640856817799055058235471472879600748194967422706\ 6428477955349625409264000420242483229337321438983419571502535546833687531466145\ 5069713604731848563979486243679490170246783781856829641007851225802551679477515\ 3807923222747660066145903712715232079241517848031023141707361453792828119674168\ 5366975732252826460141160456770869947923495782709944874815621144627796406980670\ 9387161623331136147708205034789153201587517852281060102302032969050477931298913\ 8748406539557666380508840770202990644415243295111807343973617, 51.7783395131477\ 8618831442292128284994873633081042558682629854506118808047835032338070584529274\ 8243847600262522554502932255330748709409038552854940826141812943742420321849835\ 7082244831800405540962678685260833475457312990689772724149827418900635039167452\ 7621272864747867772368325309844821601858539230528835020405883209786524949703416\ 8193725394868559143096687179666899709396809033528368410954375359393507470213520\ 7699775427832224518182065240178823588771515358043982726953472857372236098670557\ 29902069827211065060778, 54.923249771779072890523701940490742171895879455746143\ 0253458106794000629491571064968111304769909557012924655162978991736617742577857\ 6973783703884911487673612439501733057816319695975268831075194500518753546026502\ 1340858405487010575791765424536451349344585906387883393196765634992504006698780\ 7533283403928088658171815326450816145116634117604999894443710141902002254078013\ 9399490737056593562015104790000999954276143083598619730388548574542131085395653\ 0202849947863740342057122841997333792851804044156194895786493061, 58.0678003551\ 0635639734469372875351682924792214240269628213819928804538415578263323873290816\ 9964970453183901280148755722793698831293727475274613290387840092822215867186423\ 1942281948848681389050052184456482732246639323630572457896615665151599981498631\ 3499517837821227265815601176672570839973305061186237929295355847276158460905198\ 3689095126283722432019155573239051873644391595462986118100889928903434583927078\ 3606645968173856869098718906257758622801283559942232240815298358006550658062219\ 70325858661819566383862177, 61.212046790704800545029724332823001237499552987519\ 4963243304404106043884482310538534886205050957732778389554158944595487381261087\ 1886419846060147618632208911651561768130313425321390963407340954794095741879104\ 2245934588532325480696200756948546185799967936911137940504235396659720592918190\ 9505144747877291847288074252099620490572897768657762545196884877993763826118348\ 0883848714327260825129666590443095944401860840962682669661593903418724937760300\ 4056067635750247215221511867051669971177152018913669334206995865522, 64.3560337\ 2774235375530640479110107291947107631754561119482690287764508377206760225229888\ 3435595319033270690952830470024240175204043108588667553044842635525770189288484\ 7954504292243007122649088551730832331934558237927771346560737609501545159085100\ 1072584254970799559520918154579881277832715264371587549273801212641565604149357\ 4139586068120936399350359100478084043006371232937684167439986071687682511553663\ 8787063171358959632717504990726485316693962916955007992303742522977891759908554\ 90924418340499977634119643370, 67.499797478239967830504932383270014998649589926\ 1775561324074669885455451788553667563868176225994012666780290250652279413279510\ 3542468539481275309384130172635373851208302965765644516105827457267250517072871\ 5834324228183936110605685683203052818740428154913717946516232046589373078558378\ 8265934196998375150995823095774198044555803635470260612915742867556204431884110\ 2515800928976540912081819147491993517519339369836871550155804405509412320650722\ 8130833083691031210402594213732391545977963013613378395568079613879834, 70.6433\ 6787734170331060976758346727465427979279861533997796603760731713211539261746378\ 4983241558641256083960534555056614231064876591100680143882064585131749362551511\ 6577734550489038643125226596477155539902762024450321068200818454985848064404120\ 3552642586020838707661146531931421380885931016011347241289456079616028738503811\ 1160920429732866325867179204265924559982476319892158042922610005832836820948695\ 1830209924934406342867161462851155872010062288210528561474406528057746125759203\ 87109541080317027461923954572761, 73.786769666504638275428759642924179975348584\ 6544948541961547140661499522163136248293840251245150138347096745090121423736421\ 3821245075119708479953322619206620677195221152056071879707319901719342013237444\ 8693924947789770976655354530887213449369788356205307840994442152229804764257265\ 2905047855275919417078393708601275851439569753544322460654513549863107106813970\ 2679504778191698109989703074937631504128883570698089846104368716415489837223384\ 5301487845994318812281459655768908422756194278888710329955144238216044267, 76.9\ 3002353656830309774078520979484114686357116505559181637648659751908986821443407\ 2761229170872375573082015055526088439043246398323774912017971388777206510629769\ 0378293235040540150634581059350008183741397526087768895497792551018992949580701\ 8058389674292035773378525158942590223100286644184467366210684302662680405685388\ 4723572817101671828805194540710766775521997066943405578174716799134033336378201\ 7235849579503161490038762038666512321681941494731183172142993367167192047531646\ 03791299112634169105362584204523230, 80.073146924478678144528624536811389345280\ 4639754066429924206463990031136126516003577213818884992130735003239545144901322\ 4477028128355312329417121148714340626054256448491256327383419696336525431393561\ 6520559031524977175930594322363611051461680650834895217724157526572122981880291\ 1462679973188826033649744824864607497111509995037617781316736128181360967946095\ 0390326358614381710970153731896060018591831144465802240479311240844070066596454\ 6886044155015823984080021939278947506929190669041588705018715885147585172481, 83.2161546290010592327045327179876343212199371451452705819566238081729047181386\ 0325200572398703725222036890080683186878112547842116972076430799784781519956893\ 5312690417036219487802797412793832461698412754414292371221586864129060048575933\ 8370723857107660641336914128134518853524851788198256010513468480984656122828002\ 2597852221330124476740894940549708084432149133027617696954103668394911273457824\ 3473941211537779700442238234366704835263402919353344386915361303303274733177079\ 421603198373993448670507967740114116742, 86.35905929166850016319133461088001757\ 0686720360492529814280723266050590784456486640252852062086265614704004878681979\ 9631815449231318091818503355627881711796216362729848714131710196263081191197499\ 7331602537036661440231118779043800560643405596115625294446903015888577491363376\ 7665420509051548671310116605581330771628146346400654447741240298070754844491009\ 4678776038011761113708427627921969588345123833314512234367563384170989315628913\ 1423845469687017384737309878399178221124739239518943881784094814289370534459678\ 5, 89.5018717761796857033599657561653494373915028280898612192086588811562432856\ 9673485781566353387039109643532118393490334443432059170828297906744235859920083\ 2420216402478667833382648117518701283770640430591504498760478393813074212236243\ 6971390443287734000997851754097354389269879691100164442586182522868269569828677\ 3386193139186600522556660674879107169948810022374930600907409767723688757500323\ 8032478080032127676054720383011014797970204359215549701483444481658749934369236\ 678464494058426759039284323737356239419728, 92.64460147041991018313389760024073\ 0496567075855430627758837446325476153732165651771076653826192318844129033338029\ 5008722629773172168189098982965849891120212998364092402633227102611021744512257\ 4972789606035016243672237989628861815599196542222156391992013919254688128361606\ 4637927688271919186793761044682204511508332789220300233059440015002359392723306\ 3326843653142633370333078496694251597021650250441777213197354032826097185729294\ 7918890556068831521047750173162657213243771804423218945257195957446308183150650\ 5839, 95.7872565289165722934859024555023419219380209601208617060006520035889414\ 2205640779499990307732778728476991602208514326241023963362763547299446511948923\ 5482186623613080945321336865653274396706006653404538440745035008427949078770703\ 7014613016166281923583310139555416220117240524927904293176403178577190175318835\ 8144995246071861643561736217181636090906285774058690110976775773029149561404174\ 6933232161972075233951088934901494061962295434808613649664310848504535365996849\ 007018421499876504644567651400195733649711387, 98.92984406900267464230700640301\ 5203137427937671558103954929133473334521002269880596890212959999165420391799780\ 7130159027026659440614478138965979115445978095399254629175792511178141355936946\ 5974803297775528577898954743903437763601187391503611858502366203759813746634288\ 6738290761724393522606005459415253409339821875116027979328844727531646044182181\ 7648464667464552431072748575734247645963822653602586289376687796397785949363726\ 8946509677798526913055212235515551447521477983735787439050786059496582970625484\ 2345359, 102.072370330684781145710312963766705091955214363922942213143654705949\ 0577769417758108136011701732397161902907902720132853679393218840968844321877681\ 9700458650414048748716246208451399058280877529084787226053694857889542085546178\ 2024936729831439355574150110716625419133773135041955326048591204949917325295813\ 5826931493666327821496853546939107303877604840197870817745254650691275536128038\ 5153539249133985955065558871774291085270041642248616809211426120651342419585571\ 042899867886917245031910310497990144289735761217], [.57721566490153286060651209008240243104215933593992359880576723488486772677766\ 4670936947063291746749514631447249807082480960504014486542836224173997644923536\ 2535003337429373377376739427925952582470949160087352039481656708532331517766115\ 2862119950150798479374508570574002992135478614669402960432542151905877553526733\ 1399254012967420513754139549111685102807984234877587205038431093997361372553060\ 8893312676001724795378367592713515772261027349291394079843010341777177808815495\ 7066107501016191663340152278935867965497, -.72815845483676724860586375874901319\ 1377363383343379525990065597414014335715114848780869282448440146040772072788867\ 4475946468021218957925934357889512942805222349515279549606111502095344684131064\ 7424435023593665595384696143802593810457380254936645576516770275391506661232277\ 8019548269796191136378092881457701875107896546878401717619070499767255131421362\ 4030374225733553303434272645289781727164883104111707481154892270863576690539654\ 4991124078164302952820869459648977065649233247316726979279643629522135601438486\ 194e-1, -.969036319287231848453038603521252935906580610134074988070136545185075\ 5382280414171978197381374537319286223858587946823125346497950962571972526493648\ 2559022822334252253760309524546508394816238741592220942281232583277034990055186\ 6132430161248512743836738402517796137980817073059174437629284135201788980355930\ 2614486798835342911630398836113521482633438645565367293814294308919516055435218\ 9786876407002004668477514120606851273682795608241049100541262237041961345685011\ 782370365769699755808503429454844963107305045191e-2, .2053834420303345866160046\ 5427533842857158044454106182454814833369138344921129700535705571662285667029728\ 5164796545564368185699828663151849119882886865292750787963432991922374969452193\ 7588516086128932900100887582794153232910617743621951263465535646918550221678790\ 2962485195196789756833509079270011185639779237437133253925675927617052835594840\ 6893480146327712512068852477362504407193833325635302163687336385170790466527798\ 8196943371398266195168627329884928275409617892009382350341377926723156739371132\ 9711950495082e-2, .232537006546730005746817017752606800090446941378485099075804\ 0907124841005315521900301678059039306360827843551103225522196456664007682437918\ 8612157545783323628150815859736143434562543499811076483112542105594241395926872\ 9684074315606557464830699297037623043442056842744529967250358308652455635406308\ 2114906424047158181322741113552091365753427738923395315907031482115410218391651\ 3925489920286922124982523347342677303057571035719128647464575458973065102281186\ 365586764170125670257410302592007475358321532368425716379e-2, .7933238173010627\ 0175333487744444483073153940458488707573425626982314821180171520237972006358763\ 0816271916857862372895069399327793286261056098155656333452825514546756566970502\ 7727800328021356905705583506896973325036121197655863337023278457363824591927681\ 4683675017163992387796000784143479741918611880703171085167186694182146173747984\ 3591088636582173512088608483751672632844008711196828215002627555961839666823736\ 4815703150224449119167127470639317116219560192188714459590850058558995386645854\ 6305250938061401358019e-3, -.23876934543019960987242184190800427778371515635807\ 8631476425307391067559992963871436861114128511102478067307590953303802065691226\ 9595124699717764644539646672994359920016312185594700697656216552224200467213493\ 6152153571425015933445463823991616883233446334594194586375172055936588112908579\ 2253251975853031629348726243620002934484391139854387166571748431986047361129643\ 9716362271557260314229891969541565678474900324329141742716225155271933386885504\ 8044735117160784587111964142915343834322244990773670647912067148220e-3, -.52728\ 9567057751046074097505478858281996253472969895331013404226885682732465141182144\ 0413807979996094255347137014747313651473070509002813384872173815912447148812297\ 9618914029183868083267419946698071970146784737238573957566249020620839413164545\ 2780979425912543017479076160081538849847868865967088157362364666294601848429900\ 0939881167146515401065764527769307649446457337117090489029905376499317890616928\ 1112616178623858168897923049360664228155771819152394382088841763766052846612612\ 488928854481264224142179416525993e-3, -.352123353803039509602052165001208741729\ 1805337923503566573315073642817765060653010801409187200115151480243957720152737\ 2860328609435019711367583739960715424190965561385745719936892327056020404098313\ 7005694298492150285287831988796582705647531088118360529102462600161912311459910\ 4433868351622212656545475105848890967409637276266368377190087397123392480708587\ 3950813091593244782295788874179396263170596187166314474578165764970169566211741\ 100004968725817124898972523481053417110845312504279511701584678848013586885296e\ -3, -.3439477441808804817791462379822739062078953859444162975929190484315010334\ 4461528370957543893457189908129397087511065599997236507912170877574763847336028\ 4064336395540288974150045560835185198620571199070539178956931243055603391834653\ 6209762876458392962080574180854914165672342977393904568535752635730230178173655\ 0979864060366007805923838066805372675710742430830156358961904601821926973231881\ 1662097534127992673093922501178124854549586676281237357266419740097254239402968\ 44253171834799031203178489236275489589276277e-4, .20533281490906479468372228923\ 7065302959853774166764303840208714353009024071069175198496051060902816865463071\ 6692437652938609455701636670314763888351107401248788037757774478758676467051586\ 8424658300336482948912615563761885098178519065030131308406498220031012016327809\ 1193394775708768987827483339565765921395123443938195451244911744243659493907281\ 6444182729011679253301352386082344672367555650309491686728774796725889938011264\ 8727061584401240421830537953259244120102136734306085464049432511082621250932797\ 070249608e-3, .2701844395439035266729020820679556738278420586884025039737358031\ 3679999096429298023784446072023805433418920654338983313624305393451630222516609\ 7790564582720825780754566267388517880782809335837248553386849698589332645150465\ 4464211037386959473080948618383043382696724152161508470374366908299780313958805\ 7745050198091177476721189024453143933519585830294528826203547636287933529092351\ 0625249800613549482289489006253272983906224551082210650815714353596946586318403\ 06195319944748788460071827429608409422347870822975839e-3, .16727291210514019335\ 3501543341183446607806632805565828047790937651219597032740762553904283468545486\ 0827918008130473096673223305416815315435148622550674827969874566633280326548214\ 3342097841617297044908225455219884903808088088154100646841314112211997768026692\ 5641598190387545743115632407175209050841475526214901090390979743209671803458820\ 1448067821828732708731966596540224221836449546222610000626364613922296703949742\ 1146420673313663767737396658159303559755553487533339412829660776643003203251463\ 417083900585409430e-3, -.274638066037601588600076036933551815267853376703955360\ 9283308916757051860700887286766227018014141226063021263616344526017942940219226\ 3849631387843805462010929960860735546168873962201161914321590380032888913310985\ 1878338299453087746116978730357203121008537761387258272135557308411997153847119\ 6901188097955314106812013683983311883292898558984268729222741678230240058004078\ 2821996863697716890638676644648737366643173087927138473401242501572243214189467\ 073892088148304042174740217004693869546169556060262797942423108e-4, -.209209262\ 0592999458371396973445849578315442115060695624342083257187577618413479238849643\ 6303631700689789521037322709410251642021624062174835248890321921557235326753864\ 3481239293202213483780251090980695128407980920413077503457130474090233185669460\ 8730746506194495532029489070753315026338445604947595337293242694174491958542869\ 4581497721702855153374998289368222776760536766406873866818761797164929819259912\ 8253763191910499520820020545876197724411652601592385018115028635005201686678038\ 76831038990079907860438845447e-3, -.2834686553202414466429344749971269770687029\ 8071767525396994329296762569053316715835027533053060993599832966417436585784486\ 7020481639509497895865026071407137163792524768024184929316205595337273437323618\ 3678636434144439111527617109957199974180603721462395346854640611750408350757829\ 6698189090207193523277460718984245985415948213139350678914516868015329880319102\ 3046828269515205459824613697108951491108903132056283913989878800635151321003258\ 54686392758328363626919062700305357332634763672357772918855462325147805976e-3, -.19969685830896977470778456320324039191576497403406127985966716255438059474138\ 5837618505290104522922815205074996317989326801671523627003755463058874266650058\ 9733359678401153567212058999564688677646468080389369421514423787946034894284978\ 6101568609055767832373692156025968221709125871201984650305780628905220443830198\ 7014080135940198841766288209097938687692863793812888984459161446714731419130388\ 7242261453940137005979245500640984433510068366427544037032897486398777367532827\ 1019789579061116830633470950361976314098e-3, .262770371099183366994665976305101\ 2281607869292911406079711751835228318283659619892378138323561685615911623560201\ 5407927819694945751539221478525542904159896792163480974990786737431769216935160\ 3003426351174451251783954060057914035151531391938458293611757538263826987474985\ 1968700530879527487387409592058319336396947178757727334177454936620786408750630\ 2961785958124556937022311861385734137369449069590987017439073118574998511565241\ 2265909444267363354226417032146714628057403406383703880637934910288500411310959\ 88652e-4, .30736840814925282659275475194862564552381129073146169108110365231480\ 8390209728993765617555696701240405909541451410294195111967409228941799555585800\ 7852262090239169157743457758869727907667465462418873038971056792798849296000885\ 6007990351551131341569289094821375317893986873539103514144250766178992955408513\ 3229914243282321386324605919608362418248486181643143857885790404244197296631999\ 7282792337260540810561600443268638151911794859914085908387549580300259662705963\ 3643943096910895177636556799023610287341491341863e-3, .503605453047355629055596\ 4377171600353212698076494978373237909270104380947646223189527024912899340799999\ 8023796858728630394293272599760228878635255586880623356057648543610619135642692\ 9491163030470002420287530973784230468543854320331554440181634581848768438849759\ 2623937200637176384426229546748011634755756052061100317234834428807664265390097\ 7967317749248803077366300952385136616502474431371199112239118516112231389662690\ 1114217368918993299155190256480395115501111152311800541276877295429927258572494\ 02772018901631e-3, .46634356151155944940059482443355052511314347392568899767072\ 6628098544582130032900701063478174348303767627677689397866478849037609806100811\ 3591441797256336823512267157959337408681128870085117167176652714745827612534802\ 3287696444224887315255939671855870907949089397663929230621186609303043817441978\ 6194710770648528932388750741725463606927389942015219534568018794528696244800285\ 9806880311788359361853715962969895156943102003953942858063425739344561131754364\ 6500351132301565246248766427340226599730414461772941986523e-3, .104437769756000\ 1158107956743677204910444282507055467478343714867390804411994132201971857629970\ 5576124770802768161742970984428190467937998735300971567862162111701543443057809\ 9566006273309422361270016059682079822437445584197866082582024268214279391500784\ 2211765471125721045846214841512214782061507102704273178385079887207171374970102\ 4114700980230348995454830877203618711933029449533017310988185327900472462721729\ 6492830022094776988107905233562561239285370587635171516411388110997943135401204\ 31910029617346439779063e-3, -.5415995822039977016551961731741055845438609287007\ 4880183919131638421202747278466083253269977540745465037531066686406072294374839\ 9368216976413220083706806992352515170903320783455163271281436436689972389972493\ 0759778803264577711209436089086578419457274846364013214464741046324944472851394\ 1225053161184173564718120121527734714383950665236322805810835706326376581242015\ 1523127877109329021642099797897271289959093974710199322786640641815818649137944\ 24418223261081952338396181639890347120097354188338557591015351339625e-3, -.1243\ 9620904082457792997415995371658091470281139646377165329711083780032273004474766\ 8804392877066061890658924518858413257668939215332637031649329051131612173471476\ 6939840656684143340621090548028988852205331608344386554756230080950750377804966\ 1758634062839009517177133211313266896288110082976183680407613815329178989159838\ 4495742165991808574617323258486972070976758106505190341256021123757047894950455\ 2660024168974094326878740097668419709167806142869364590950220901301692688795989\ 4055347135212707806455069486217824e-2, -.15885112789035615619061966115211158573\ 1872282214412906747819412548095038337974872397718268829422571570491514992240075\ 0354649555457261240500959167389177194357862621241155775647357272837529119488611\ 4892558173968217452103221890357534967557713513167333412511016460477850977407247\ 8236338496784467875421139659640768959322631650103734735334129997293224158305760\ 7154486974707814941912028090324539384865638534966914912838493408125542942536400\ 6159633144293173230789776119766885531255899142234529184174262031884169292500757\ e-2, -.107459195273848882472429198735317308927397933145317036140990258178136885\ 2879725083510487626853780543878731137936481194598448964551855691857004868428077\ 4926238713548261906165717378262654225314158661131380271445991713602166179324986\ 6401239245691155407257114646388610163518487405309876230012894027036229812797169\ 2253399090945963614703693232661347801429267183006070537903123016544348389468191\ 2927147653341538345313895724681603252807610607297023060153378584911898252363524\ 536081418603145922508021370497514932010873953e-2, .6568035186371544315047730033\ 5621524888606506047753737609928252508911709650347766639105793426257578597152320\ 6211106291585652520687617604296329213418761647491406735403649937101129117732240\ 6733034202470236023762935497158074335393463790043477652282574744043603439486921\ 2529957154808631207418581074699068363864316551337941712412219955066613332153485\ 2237277380531703120245939034617235568517525743580651860199801384092079620731031\ 4469332475409467306568935700189007556517862952204888663702198165386279652366691\ 9952629593e-3, .347783691361853820900735957425881154766291566388591929226936908\ 9163601152516386090184507808325259934643247527620919916504590034421507603998744\ 8790951068162339781102024397533490237379646817192317066742113391606970223540319\ 0245073666187520374297740304359592332636117952724794469002595355168662870255811\ 7703658206384093073265344281773893939983962325840089363682602583708601520918969\ 7559526332654554397876784188694475255361468582588161065872754519628454705048904\ 242740080110031022022067637547573721731519449792092564e-2, .6400068531700629458\ 1072282219458636666371981445884752205903306258370932138971344873362640835867026\ 2478091177146688124915883707961515594703698836422439154487382593660345580155195\ 1739436482654980238076705978473654568449071615955207841466403251011797640636588\ 2570954172296854161896261077297732049521986928822672883940507373607453839164907\ 4663293338391902278926834974640438857315171295657762389342299464766865938167701\ 0648827114306008317549109031179149566708476723007521107176715659170223334186421\ 9625162305939025705e-2, .737115177047223913441240242355940215784132748851284015\ 3180311593260094964080124902874271317941480450169928391633082168004655647838467\ 1365989651487732994408939113263219522108763137876785101436476479001410233502283\ 1352663402692186952482521153486720269551045062816227938647268895178542945459002\ 8680943469071857877090990597255294277868492168030171468679909524124804543950182\ 9442763464525845037746518914382298764790639842071212685770792878421652645957629\ 063486690557504353460664245245447325823013763000830091365088821e-2, .3557728855\ 5731609479135377489084026108096506495221250761313817426048953753477682684117604\ 8664449011969882011128143217275885041076521261311104297861255818000665512991824\ 9475202003030282427138985184474816070832944619701532581247303970119806166784524\ 0809131132118907175337739958375959129588520715907413770433961616706048736268685\ 1725367324410974443502893443261239639591679489538996975753115789546233975583913\ 0900430022861210315136688362749830202239598343495731710350625859918235480781411\ 9907695602379597024599226279e-2, -.75133259978152289331351600815761456166365874\ 1805843782982065389772665685136460873609340657549873519995337555764522766864987\ 7454170501745904952874352569833828340361752923325058378630036421872568935701095\ 2055741949859933324487590105559821101762825534498912016856120397628744975840356\ 9895289428330768705863281350320684491773559271661545142052077644786956920979461\ 6041137023226490337828422333181055216521344321334770252362484446003562541666187\ 0880948861005916812626869301709624144639579088834280699513143935445215914e-2, - .257037291084204017934878837803499165540842021370927299604055348807337392509291\ 5194869402974674313960730940827885805986079503641578184306369509419528819255356\ 7782414348063260401170048424906435746872370903964788090651804244851581912788524\ 1357292408238505369194708152347852747281519575380217538655503670221234700891029\ 7214570087369696785889474132974079336521975852175856337479168237424752379218661\ 2166843910957182846820873023847573941458694218943947729920862290856765757418172\ 699130840154884165914441001871980952009e-1], [1.5707963267948966192313216916397514420985846996875529104874722961539082031431\ 0449931401741267105853399107404325664115332354692230477529111586267970406424055\ 8725142051350969260552779822311474477465190982214405487832966723064237824116893\ 3915826356009545728242834617301743052271633241066968036301245706368622935033031\ 5779408744076046048141462704585768218394629518000566526527441023326069207347597\ 0755804716528635182879795976546093058690966305896552559274037231189981374783675\ 9428763624456139690915059745649168366812, 1., 2.2214414690791831235079404950303\ 4684930731084468784511154269780347821739654973695528766346738238261868170510634\ 2614395682179799259172813746187673179837207511639639409877938766556726830550653\ 2610638265097387212743605377051585542263547408014248919655372225509346674685188\ 4562511838314344826392295361691467685139841706671306950662859997565759604664852\ 8564038616026832580515137821303609804476338537650553944906197302680030063330488\ 0541561966581083978558128697007116872919787468362624266011619888210548662090345\ 148720, 2.541601846157629907904754506621099420915919646610577060241166404624989\ 5717263493009330443101769710770493048458864822531173668979378488378287689516972\ 1539776510772672238716359178743963007442269277599220600591910821781917010778769\ 5373948156211376236586429440605830839927524185379706994217423752474358168869227\ 9620219185224961366135896704987453375699069392833496721648654875624856616656461\ 4056729035861502153437640535784609454102334340690962302320150194479429780122941\ 00974564585825180660245114277276680090146413930, 2.7206990463513267758911173864\ 6323359842609937213911086335482740308218477168953082552618748231809025328433362\ 1721599788356194078741051612224697378047194592807427215110507160606992640732063\ 1215050260199436490411738611994573104634564097276251425400592337791384867496792\ 7385315037559086882941593929308173500065534341053561167527698925441621381207647\ 5893268040096044816057449130959680348058554353497078143755779753057310492499084\ 2174305955365341922005452803161699025970771025521173408012537984272114454694894\ 037585992, 2.830477176515352794264207920092648186662026406310392349746695321798\ 7904539619600766233156576820270245242161305837479980954953230973599905552204933\ 0121726802204696871404924570172404389775354855449422562831436367873085510994146\ 6848555868718320433261328652024580674134602572585170141973527544623961157921217\ 7782456080932822362000250719459371788709069549573098001258267040816326953612011\ 4305831231547969570731710210724789774875530445941602882081113592904463342535361\ 49939573378399785321879214898326174361775089366078, 1.9587509811075530727688008\ 7529654284697980030064848031782906422649667356877937248023079691302661194642528\ 7400756726857142255396734742898267979183650935045870040440408143146961977169802\ 2761447395623246800681514396202137926514073454579045465910724584299052764666452\ 0964178022168112937629209357967134304887954600405063362152238496590525353551774\ 2255423592188076200239109807774940039659889124983144184983218010717198596709029\ 7057352441525146274568578111905131867058654810089935475626244113189335942190935\ 388266521906, 2.902453152139431014057687874154122274535135653799030545365063166\ 3509986711497353157668311817083026556034069623187615410580715850925267410709019\ 4283938406488999941738798586313154943845846637527692754452175317098899177293122\ 5012781039393737731184226760859458207831595958755202335545825288690660292386083\ 6469789157983852352274503866346808525898319163633947298713894101896081177983023\ 6062218628478695963564873562358251185859170288880126349974094223048595430109651\ 14794840939160728274875270315447592556388359494940532, 1.2022354597686925414281\ 8324933720562538335069898423393312513542032374145587279553790883016453989138822\ 2417171470232704196729682776539666900613114232696014567897199741573604171705366\ 0800656282961238412482791773406460058020370970733097211306551219944924650386447\ 9142177020899314922423783037706757797150721144601344530577173968366460186957318\ 1022215002302838591718695949464483241187629393267118502727179672249357457357185\ 5517812263278929464563082144025129409967839654674657162152132077568791794390475\ 703910690413317, 2.952131434093549219248261644028312130323989945071934246862836\ 3431258578665244022821935262557849713759789663888573962264520597973166534871686\ 6809596458968533818090598995289890711030452932996713502386819013628358753302748\ 9623694996915504198163265466017471604182046259004300925571080363749428935952857\ 7046933607972019339848674906750789601187083089559167479591747484027577686813656\ 7411606698677638575782272285728578668531984236213099386591460895149215337969177\ 38212879244847122711176737471938097205943568554240848565, 2.4065995948258656331\ 7366638654601723989268640342593574676755943299969288822548560319262845274191038\ 8217323880916205229704743177919350572478798605539101100283209090140242793517830\ 6785760442657631167223191172066195318113339725044438044408732685655951921076824\ 9455591439474542868872793357774530794914135189000279811092893179320108641246593\ 6973667131873472087237566996072740124349858389109658542208199436755163540478886\ 5488327483368578971330541263455513473341090732385723216101254198596619906330193\ 699423097456578195, 2.987832164741555944374429863659513385314614127928264248557\ 7187994721371096070920067054463176512774833818082051815580942301105756697279001\ 8541308719319652872882993824990504081667919651042078015567908722244559354549969\ 3344355987637466340066432673125448868911188068810006807820139790760222484168792\ 2235705447855413856597037252274887825967776515976110844890166714917780292539930\ 7787029093857987093137323524284808992393004913352070809267594421814425189734993\ 53444938528361594253625771020448294574305442455992091368014, 1.8465818304904567\ 5726648623225425155703472707749375720699196327645024753794356310048416395974528\ 8325554102464503430060078144016554050070460821576338886451847933219007962484802\ 3208897903316313246650221983584582051748112217198142138009528088173079213493439\ 8770212095310777601810300757395513837337059894557376892979576224089168095137282\ 0205453880907018318886676823848484093595268334046353794282293106173842288622322\ 7221526462276339812015182622333206088589201275828936185451279113876776009841474\ 922827244280559453725, 3.014336077078330322557502818417370338249641789379765375\ 1150927054020684128851311652842206060962981929240533555323672167808107978548337\ 1966883255681962350494212221521927943730823300636318330699664537639078559400874\ 3029120780912438742669213567195949639506579109355928974917883394803255364997169\ 4643101578745986984283718559961654898080700422677026881850533334563762810553631\ 3994218945070342990511708373101722244382269443020147615533565021961990443457911\ 25307776677845991544016442194061669837889202674705769530080653, 2.6428759185488\ 9869490486187808738569032290830628155184236277759791639252629319434859051942891\ 0786321910236673258766334535134511959293185777780400288291180524051095588570050\ 1074104858046929094830857023228385937619617930258872864062318969126165713874892\ 1773699317536926509062162464553450033604406032126170794878675406523505065965232\ 8517206864921542926742341995051119192237818294813728982518796824314823501534171\ 6750673369266495487907738275716094028277446747606363141515306117671991317833509\ 801713833598888901364829, 2.057305670886927694247483359724116754456593002409440\ 5693644700787741396588520149765195597658293520952528965654751819540754564927951\ 2235191304399244703004447016229175239131815533341911933972334470313713819314635\ 0991201538963772602222589293112574507336875647145863685319588246152525354209397\ 1696119679769806201810870580493511295536750981292069632864142227266854365246096\ 9129552010563684779252767896308629891299120916043230997209390636685405281856918\ 83616637992872097232752673131121391886900040886221352952548732566, 1.3050647530\ 3763483540758300574405774597464505049257432955226592400708692144229578692867490\ 3498864492935950246734626041556842578611751164479283747426692979333960740036486\ 8580045354150181352120106935364694630343925623319010745753120103672493118705228\ 5699441649359249896153681213850398258446002105873133910966540278581015306108909\ 1019728046343883478805618495339916130263014844735853388382430171041399005180952\ 2997676739524918233578024254186506957874644593962161347518031203144158246601351\ 124102638053921084213488400, 3.034545479782387705070024787021683041854546423690\ 0610404234333118737069335444016291937621122697829704585916588217065708541248806\ 9534762839772059614709940152216419748091564335631157708540725768302177412750472\ 7965959206638595629519757813991235644742114866980500089178020847944270270252449\ 1269121344243931868143077204124075452095273086308491167061630582936014142443261\ 5069151281536470478748593749258494223135424884934248731674549840427569192284080\ 83427904627984117261937286447579038389448750295848616627129887167046, 3.0503036\ 8068880733817064785489070291743878536473002813485120818290481201800182187967721\ 4683347457523887657871552523178868344662633200152552490581346030801893512313191\ 6170444267354179450771071235560294406081342300779050433366037438898726552874827\ 4285066851282285433462040931300778881244811151169533435545784087726860841554183\ 4287037051211875492529980606634479166508306032078533509588002181089783019514849\ 3412443608006536381286878024512633019913090662201812175229579195701486744813574\ 893110389760533740130777262087, 2.781742145268939711713782660953823120689060707\ 6915193221441612472636408210324968088835325366042790782964469507159083699047446\ 7498671392116131221589923828808612760235436106288944804972836996385715300160989\ 8706943311358822602528787303320917394192085567043166528502870009297410443810160\ 7809924043198324897298916096832577704164274127589092608682633852210977853673531\ 7867787813957224817518996743327419993109738890008030407038827904225947471345323\ 00920911428627895662446316258427335608198576383038264315687109793972903, 2.3515\ 1586758733097657871366333477585006888314023892873945154786301970302119422909844\ 7357093913037815098399605429802711966995243184508669649376045673786705651160109\ 2430108790409058979332246638531118490097006184043342200064215628275560099946343\ 3486220891747114199583253365104108099349713325992482988710515087512679385342247\ 9326878505674778488765209019704648648012959412474493319207815381195239269153462\ 5307685796952286231036745574423214119532679333105852635295567193330357449859921\ 313317867346158637847599884926931, 1.784628035093945582000443266100312678396709\ 3910748936909379490416930441547987311334021780350728936027182241520094074452652\ 8004284112308035758741692458051297958930769311372056259035952406700915668328757\ 9118422258245722915592495350377288650491716184479269523102639743111122522774330\ 3008774727943472981414483752391022846263692864580494371690379547703152829173141\ 9299604036146353117370290722540738063320106608370719259003586616209792326669032\ 15470053198000908886589132537037110469966316127011322012266868417584163134, 1.1\ 1402410805986838574046733970241536451600865873457725828691202802162878139021134\ 3625041450658991649055306706430974775888827394668875986775832850263316335656533\ 2521391054197903911149037995915902502153700843321258164689897891862465219871740\ 4002370729388528526058002617401857381017687756699131076880522897086424160383652\ 7864257268629877714191951211166558060846140292358173779991371089726310824551913\ 0369213652333056462130873424850058341399142885224050565022789476678671967947367\ 317845749712475239040990813442290653, 3.062826366690052134543463070753743713668\ 5224544910753588107133751005521208356993147716127437769786115739822556258822632\ 4812970307473108811811841694259365802686155077505676960854303136004180127456448\ 9384394267710582185220208241648792163872724629411963867498670426654701246454479\ 5785855220722235861716776953759701579104554841358701141454337217314019756219377\ 0015805058247966824980011711507551575861609773771194563306887881707252546246174\ 59762897931300471379292342265457593546973634743098686319307427538762214848758, 2.45619604166677967640031343861939510350976170775309600686328340147008080869997\ 9291679202744783386897120854265123362380655114833508451285214869935939041346382\ 7097912007763574158728526318642166893387441854061187231476584536151080692459600\ 4965375147076418592045962166046779712550434188507959274859456199223512328837341\ 5988241240341491202383133597918088147025264611200355592609001630692042362444014\ 8688103656958923855550891325311807564124529541229431295262256376364364270867838\ 600443555372591068564583674368795340925, 1.363085967323790990197587966550368212\ 2051127606665462143707884260660268112664280922635004889785355366294923150444297\ 6804035554301633859484866384088676916768827993538318602443255922175478167692749\ 0748445373662791911372375690502827535165508275472250539586641702325052464424374\ 7460032679615056981872834852497036386321287974501802661272354353944309657093560\ 2054254034391270023538880155052492852306728069332067046605114405558315905519962\ 6379568340041710948941242891943491096580205976920050041748708857619546365096686\ 5, 3.07294131659180604197761935253399848652427322825109859295306487089280368012\ 1684731670031816121653556052179985216300426312840485887629629101501652906054339\ 3316113248844890726007926304095585995611327475714919847215707010647422681331448\ 5614073184351308747841338498825214062977648990979906449484043578246248988738914\ 7843494114520852094882290437236235063092783632100056597733328873775930024932022\ 7892342600094138228569380773218387707553124426756859377203282320353172461182054\ 584929136265879458320622112118376480668922, 2.869987698450320607066571916221095\ 2001341058992205000019250014049771597650195203749547488431769730626446149455235\ 8036161949316540372773372340149102184177404024476373095211909578751475769014382\ 1544790222919216484144800028718587751495864170038804230011594759635726609276596\ 2394160748454921464663491755650288666556043427536543880003696552046160765456584\ 4459641509331487739545417360243726263069416205918738112528360313902494061597268\ 1941181310205632195185956743010031599770714220323385767201594422553281361919688\ 8498, 3.08122783166379418320621743562524822569397778746632399768574855177712340\ 5118134440945257277554581217985366813335116837071232636299253223530838084504756\ 7934794240572122513027683009948939542991598908558618179107832802313393415275211\ 4453396312098953909637961725948697744099252508581823526064867435620514031572254\ 8302641532934870105222205368225338423507893014703459487172304884640490994763603\ 5464550480490237304928345576665967937552199361898509729220084405442113984083644\ 716518246156804431857789871504877504956005225, 2.612138825692829685330061454814\ 1247277218305827010943451449238157829767884156463381704363419111359541900531582\ 2969418666060703007860482397834683383645108716853812385825227789954281495503670\ 0059348906881462990989516980490443462471230286065096701344739561308467485472785\ 5430201644076202338304103630662743710502660115169760242541982857738292443673107\ 5950761619621350997721279346947591392650180306271871928722560577823121769559793\ 0580023315895513949444399083725993437902320525488408198057875134788150605271415\ 9708362, 1.74537536260755192116060870537936926238257726740418610885977822410799\ 5907304052711817963987041154041694089892034743791279875829572787990445060900957\ 4620686670827698112720529029556732023576581167331529468177457660270542251667475\ 2176292216684222938143825919621929110888166095271275643880334410408388308689858\ 6576502969959723054715318937308873445961835711853080333204380983110487487756797\ 9743460574725824012763330542090043814853256872092042888251748141663944641145045\ 836625918039228585726792754129310210642446787191]]: