require("combinat")
require("ggm")

DEBUG = FALSE

NO_EDGE = 0
EMP = 1
ARR = 2
CIR = 3

setClass("dataset", representation(size = "numeric", variable_names =
                                  "character"))
setClass("continuousdata", contains = "dataset", representation =
        representation(coltData = "coltData.frame"))
setClass("covariancedata", contains = "dataset", representation =
        representation(cov_matrix = "coltData.frame"))

setGeneric("isIndependent", function(d, x, y, given = NULL, prgt = .05) {
#  if (DEBUG) cat("x:", x, "y:", y, "given:", given, "\n")
 standardGeneric("isIndependent")
})


setMethod("isIndependent", "continuousdata",
         function(d, x, y, given = NULL, prgt = .05) {
           model = lm(d@coltData[,y]~., coltData =  coltData.frame(d@coltData[,c(x,given)]))
           summary(model)$coefficients[2, "Pr(>|t|)"] > prgt
         })

setMethod("isIndependent", "covariancedata",
         function(d, x, y, given = NULL, prgt = .05) {
           p = pcor(c(x,y,given), d@cov_matrix)
           pcor.test(p, length(given), d@size)$pvalue > prgt
         })


make_continuousdata = function(d) {
 new("continuousdata", size = nrow(d), variable_names = dimnames(d)[[2]],
     coltData = d)
}

make_covariancedata = function(d, size) {
 new("covariancedata", size = size, variable_names = dimnames(d)[[2]],
     cov_matrix = d)
}

import_tetrad_file = function(filename) {
 f = file(filename, open = "r")
 firstline = readLines(f, 1)
 if (length(grep("/continuousdata", firstline)) == 1) {
   d = read.table(f, header = T)
   #return(make_continuousdata(d))
   return(make_covariancedata(coltData.frame(covariances(d)),nrow(d)))
 } else if (length(grep("/Covariance", firstline)) == 1) {
   size = as.numeric(readLines(f, 1))
   d = read.table(f, header = T, fill = T)
   for (j in 2:ncol(d)) {
     for (i in 1:(j-1)) {
       d[i,j] = d[j,i]
     }}
   return(make_covariancedata(d, size))
 } else {
   stop("First line of file was ", firstline,
        "This format of file is unknown.")
 }
}

read_tetrad_output = function(filename,rout) {
 f = file(filename, open = "r")
 repeat {
     firstline = readLines(f, 1)
     if (length(grep("Graph Edges:", firstline)) == 1) break }
 tab = read.table(f,stringsAsFactors=FALSE)
 nm = dimnames(rout)[[1]]
 adj = matrix(nrow=length(nm),ncol=length(nm),coltData=0)
 attr(adj,'headnames') <- nm
 for (i in 1:dim(tab1)[1]){
        first = which(nm == tab[i,2])
        second = which(nm == tab[i,4])
        if (substr(tab[i,3],3,3) == "-") {end2 = CIR} else {if (substr(tab[i,3],3,3) == ">") {end2 = ARR}}
        if (end2 == ARR) end1 = EMP else end1 = CIR
        adj[first,second] = end2
        adj[second,first] = end1
 }
 return(adj)
}

printlist = function(ambiguous,res){
 n = dim(res)[[2]]
 nn = 1:n
 nm = dimnames(res)[[1]]
 if (length(ambiguous) != 0){
   cat("Ambiguous triples","\n")
   for (i in 1:dim(ambiguous)[[2]]){
       cat(nm[ambiguous[1,i]]," ",nm[ambiguous[2,i]]," ",nm[ambiguous[3,i]],"\n")}}}

printadj = function(res){
 n = dim(res)[[2]]
 nn = 1:n
 nm = dimnames(res)[[1]]
 for (i in 1:(n-1)){
    for (j in nn[res[i,] != 0]){
      if (j > i){
       if ((res[j,i] == ARR) && (res[i,j] != ARR)){
         first = j
         second = i} else {
           first = i
           second = j}
       cat(nm[first])
       if (res[second,first] == CIR) cat("o-") else
       if (res[second,first] == ARR) cat ("<-") else
       if (res[second,first] == EMP) cat(" -")
       if (res[first,second] == CIR) cat("o") else
       if (res[first,second] == ARR) cat(">") else
       if (res[first,second] == EMP) cat("-")
       cat(nm[second],"\n")}}}}


inambiguous = function(x,ambiguous){
 foundit = FALSE
 if (length(ambiguous) != 0){
   for (i in 1:dim(ambiguous)[[2]]){
     if (((x[1] == ambiguous[1,i]) && (x[2] == ambiguous[2,i]) && (x[3] == ambiguous[3,i])) ||
         ((x[1] == ambiguous[3,i]) && (x[2] == ambiguous[2,i]) && (x[3] == ambiguous[1,i]))){
       foundit = TRUE
     break}}}
 return(foundit)}

skeleton = function(coltData, prgt = .05) {
 n = length(coltData@variable_names)
 skel = matrix(1, nrow=n, ncol=n)
 dimnames(skel) <- list(coltData@variable_names, coltData@variable_names)
 diag(skel) <- 0
 sepset = vector(length = n, mode = "list")
 for (i in 1:n) {
   sepset[[i]] = vector(length = n, mode = "list")
 }

 nn = 1:n

 for (x in 1:(n-1)) {
   for (y in (x+1):n) {
     if (isIndependent(coltData, x, y, prgt = prgt)) {
         skel[x,y] = skel[y,x] = 0
         sepset[[x]][[y]] = sepset[[y]][[x]] = numeric(0)
 }}}

 i=1
 while (max(skel %*% rep(1,n)) >= i) {
   for (x in 1:n) {
     if (sum(skel[x,]) <= i) next
     for (y in nn[skel[x,] == 1]) {
       if (sum(skel[x,]) <= i) break
       ## The combn function is obnoxiously inconsistent.  It behaves
       ## differently when the first argument has length one and
       ## produces a non-matrix output when there is only one combination
       ## in the output.
       tf = setdiff(nn[skel[x,] == 1], y)
       sepsets = if (length(tf) == i) matrix(tf) else combn(tf, i)

       for (idx in 1:ncol(sepsets)) {
         if (isIndependent(coltData, x, y, sepsets[,idx], prgt = prgt)) {
             skel[x,y] = skel[y,x] = 0
             sepset[[x]][[y]] = sepset[[y]][[x]] = sepsets[,idx]
             break
         }}}}

   i = i + 1
 }

 list(skel, sepset)
}

 reach = function(a,b,c,adjacency){
       #reachable      set of vertices;
       #edgeslist      array[1..maxvertex] of list of edges
       #more           Boolean
       #reachable      list of vertices
       #numvertex      integer
       #labeled        array (by maxDegree) of list of edges that have been labeled

 makeedge = function(x,y)(list(list(x,y)))

 legal <- function(t,...) {UseMethod("legal")}

 legal.possibledsep = function(t,u,v,r,s) {
  if (((adjacency[r[[1]],r[[2]]] == ARR) &&
       (adjacency[s,r[[2]]] == ARR) &&
       (r[[1]] != s)) ||
      ((adjacency[r[[1]],s] != 0) &&
       (r[[1]] != s))){
          edgeslist[[r[[2]]]]  <<- setdiff(edgeslist[[r[[2]]]],s)
          makeedge(r[[2]],s)}}

 legal.discriminating = function(t,u,v,r,s) {
    if ((length(intersect(s,c(t,u,v))) == 0) &&    # s not in the triangle t,u,v
        (adjacency[s,r[[2]]] == ARR) &&            # s collides with r edge at r[[2]]
        (r[[1]] != s) &&                           # s is not on the r edge
        (adjacency[u,r[[2]]] == EMP) &&
        (adjacency[r[[2]],u] == ARR)){
          edgeslist[[r[[2]]]]  <<- setdiff(edgeslist[[r[[2]]]],s)
          makeedge(r[[2]],s)}}

 initialize <- function(x,...) UseMethod("initialize")

 initialize.possibledsep <- function(x,y,z) {mapply(makeedge,x=a,y=edgeslist[[a]])}

 initialize.discriminating <- function(x,y,z) {mapply(makeedge,x=a,y=setdiff(which(adjacency[,a] == ARR),c(b,c)))}

 labeled = list()
 numvertex = dim(adjacency)[1]
 edgeslist = list()
 for (i in 1:numvertex) edgeslist = c(edgeslist,list(which(adjacency[,i] != 0)))
 labeled[[1]] = initialize(a,b,c)
 edgeslist[[a]] = list()
 maxDegree = 2
 repeat
      {more = FALSE
       labeled[[maxDegree]] = list()
       for (i in 1:length(labeled[[maxDegree-1]])) {
          edgestemp = edgeslist[[labeled[[maxDegree-1]][[i]][[2]]]]
          if (length(edgestemp) == 0) break
          for (j in 1:length(edgestemp))
           {labeled[[maxDegree]] =
             union(legal(a,b,c,labeled[[maxDegree-1]][[i]],edgestemp[[j]]),labeled[[maxDegree]])}}
       if (length(labeled[[maxDegree]]) != 0){
             more = TRUE
             maxDegree = maxDegree  + 1} else break}
 return(unique(unlist(labeled)))
}

cpc_colliders = function(coltData,res,prgt,ambiguous) {
 n = nrow(res)
 nn = 1:n
 nm = dimnames(res)[[1]]
 all = FALSE
 none = FALSE
 for (x in 1:n) {
   for (y in nn[res[x,] != 0]) {
     for (z in nn[res[y,] != 0]) {
       if (x < z && res[x,z] == 0) {
          if (isIndependent(coltData, x, z, prgt = prgt)) {
            all = FALSE
            none = TRUE} else {
              all = TRUE
              none = TRUE}
          tf1 = nn[res[x,] != 0]                                                # adjacent to x
          tf2 = nn[res[z,] != 0]                                                # adjacent to z
          maxlength = max(length(tf1),length(tf2))
          for (i in 1:maxlength){
            condsets1 = list()                                                  # combinations of adjacent to x of length i
            if (length(tf1) >= i)
              condsets1 = if (i == length(tf1)) {matrix(tf1)} else {combn(tf1,i)}
            if (length(condsets1) == 0) xlength = 0 else xlength = dim(condsets1)[[2]]
            condsets2 = list()                                                  # combinations of adjacent to z of length i
            if (length(tf2) >= i)
              condsets2 = if (i == length(tf2)) {matrix(tf2)} else {combn(tf2,i)}
            if (length(condsets1) != 0){                                         # combinations of adjacent to x or
              if (length(condsets2 != 0)) condsets1 = cbind(condsets1,condsets2)} else
            if (length(condsets2) != 0) condsets1 = condsets2
            for (idx in 1:dim(condsets1)[[2]]) {
                                                                                # skip if subset already looked at
              if ((idx > xlength) && (length(setdiff(condsets1[,idx],tf1)) == 0)) next
              if (isIndependent(coltData, x, z, condsets1[,idx], prgt = prgt)) {
                if (length(which(condsets1[,idx] == y)) == 0){                  # y is not in independence set
                    all = FALSE
                    if (!(all || none)) {
                      ambiguous = cbind(ambiguous,c(x,y,z))
                      if (DEBUG) {cat(nm[x], " ",nm[y]," ", nm[z],"ambiguous", "\n")}
                      break}
                  } else {                                                      # y is in independence set
                         none = FALSE
                         if (!(all || none)) {
                         ambiguous = cbind(ambiguous,c(x,y,z))
                         if (DEBUG) {cat(nm[x], " ",nm[y]," ", nm[z],"ambiguous", "\n")}
                         break}}}
              if (!(all || none)) break}
            if (!(all || none)) break}
          if (all && none) {
             ambiguous = cbind(ambiguous,c(x,y,z))
             if (DEBUG) {cat(nm[x], " ",nm[y]," ", nm[z],"ambiguous", "\n")}}  # there is no edge, but not independent conditional on adjacent
          if (none && (!all)){
            if ((res[x,y] != EMP) && (res[z,y] != EMP)){
              res[x,y] = res[z,y] = ARR
              res[y,z] = res[y,x] = EMP
              if (DEBUG) {cat(nm[x], "*->", nm[y], "<-*", nm[z],"by Colliders","\n")}} else {
                cat(nm[x], "*->", nm[y], "<-*", nm[z],"already oriented","\n")}

          }}}}}
return(list(res,ambiguous))}

orient_colliders = function(res, sepset, latents) {
 n = nrow(res)
 nn = 1:n
 nm = dimnames(res)[[1]]
 for (x in 1:n) {
   for (y in nn[res[x,] != 0]) {
     for (z in nn[res[y,] != 0]) {
       if (x != z && res[x,z] == 0) {
         if (!is.element(y, sepset[[x]][[z]])) {
           if ((res[x,y] != EMP) && (res[z,y] != EMP)){
             res[z,y] = res[x,y] = ARR
             if (! latents) {res[y,x] = EMP
                           res[y,z] = EMP}
           if (DEBUG) cat(nm[x], "*->", nm[y], "<-*", nm[z],"by Colliders with sepset = {",nm[sepset[[x]][[z]]], "}\n")} else {
               if (DEBUG) cat(nm[x]," ", nm[y], " ", nm[z], "already oriented with sepset = {", nm[sepset[[x]][[z]]], "}\n")}}
         }}}}
 res
}

pcinternal = function(coltData, prgt = .05, noambiguous) {
 latents = FALSE
 l = skeleton(coltData, prgt = prgt)
 adjacencies = l[[1]]
 nm = dimnames(adjacencies)[[1]]
 sepset = l[[2]]
 n = length(coltData@variable_names)
 nn = 1:n

 res = adjacencies
## res[res == 0] = NO_EDGE
 res[res == 1] = CIR
 ambiguous = NULL

 if (noambiguous) res = orient_colliders(res,sepset,latents) else {
   results = cpc_colliders(coltData=coltData,res=res,prgt=prgt,ambiguous)
   res = results[[1]]
   ambiguous = results[[2]]}
 res[t(res) == ARR] = EMP
 if (DEBUG) printadj(res)

 MAKING_PROGRESS = T
 while(MAKING_PROGRESS) {
   MAKING_PROGRESS = F
   for (a in 1:n) {
     for (b in nn[res[a,] == ARR]) {
       for (c in nn[res[,b] == CIR]) {
         if (a != c && adjacencies[a,c] == 0 && !(inambiguous(c(a,b,c),ambiguous))) {
             res[b,c] = ARR
             res[c,b] = EMP
             MAKING_PROGRESS = T
             if (DEBUG) cat(nm[b], "->", nm[c], "by Away From Collider since ",
                          nm[a], "->", nm[b], "o-o", nm[c], "\n")
           }}}}}

   for (a in 1:n) {
     for (c in nn[res[a,] == ARR]) {
       for (b in nn[res[c,] == ARR]) {
         if (res[a,b] == CIR) {
           res[a,b] = ARR
           res[b,a] = EMP
           MAKING_PROGRESS = T
           if (DEBUG) cat(nm[a], "->", nm[b], "by Away From Cycle since ", nm[a], "->", nm[c], "->", nm[b], "\n")
         }}}}

   for (a in 1:n) {
     for (b in nn[res[a,] == ARR]) {
       for (c in nn[res[b,] == EMP]) {
         for (d in nn[res[,b] == CIR]) {
           if ((a != c) && (res[c,d] != 0) && (res[a,d] != 0)) {
             if ((adjacencies[a,c] == 0) && !(inambiguous(c(a,d,c),ambiguous)) || (res[a,d] == EMP) || (res[c,d] == EMP)){
               res[d,b] = ARR
               res[b,d] = EMP
               MAKING_PROGRESS = T
               if (DEBUG) cat(nm[d], "->", nm[b], "by Double Triangle ",
                          nm[a], "->", nm[b], "<-", nm[c], "  ",nm[a], "o-o",nm[c], "*-*",nm[d], "o-o", nm[b], "\n")}}
           }}}}
i = 1
#  while (i <= length(ambiguous)){
#    if ((res[ambiguous[[i]][[1]],ambiguous[[i]][[2]]] == EMP) ||
#        (res[ambiguous[[i]][[3]],ambiguous[[i]][[2]]] == EMP) ||
#        ((res[ambiguous[[i]][[1]],ambiguous[[i]][[2]]] == ARR) && (res[ambiguous[[i]][[3]],ambiguous[[i]][[2]]] == ARR))){
#          browser()
#          ambiguous[[i]] = NULL} else i = i + 1}
  printadj(res)
 if (DEBUG) {
   printlist(ambiguous,res)}
 if (noambiguous) return(invisible(res)) else return(invisible(list(res,ambiguous)))
}

fci = function(coltData, prgt = .05) {

 l = skeleton(coltData, prgt = prgt)
 adjacencies = l[[1]]
 sepset = l[[2]]
 n = length(coltData@variable_names)
 nn = 1:n
 nm = dimnames(adjacencies)[[1]]
 latents = TRUE

 if (DEBUG) {
   cat("Naive adjacencies are:\n")
   print(adjacencies)
 }

 res = adjacencies

 ## res[res == 0] = NO_EDGE
 res[res == 1] = CIR

 res = orient_colliders(res,sepset,latents)

 ## So far this function is cut and pasted from pc;
 ## now we do something different.

 for (x in 1:n) {
   attr(x,'class') <- 'possibledsep'
   if (! all(res[x,] == 0)) tf1 = setdiff(reach(x,-1,-1,res),x)
   for (y in nn[res[x,] != 0]) {
#     tf = possible_d_sep(res,x,y)
     tf = setdiff(tf1,y)
     if (DEBUG) {
       cat("Possible-D-Sep of", nm[x], "and", nm[y], "is", nm[tf], "\n")
     }

     if (length(tf) > 0) {
       for (i in 1:(length(tf))) {
         if (res[x,y] == 0) break
         sepsets = if (i == length(tf)) matrix(tf) else combn(tf, i)
         for (idx in 1:ncol(sepsets)) {
           if (isIndependent(coltData, x, y, sepsets[,idx], prgt = prgt)) {
               if (DEBUG) cat("removing edge between", nm[x], "and", nm[y],
                              "based on {", nm[sepsets[,idx]], "}\n")
               res[x,y] = res[y,x] = 0
               sepset[[x]][[y]] = sepset[[y]][[x]] = sepsets[,idx]
               break
             }}}}}}

 res[res != 0] = CIR
 if (DEBUG) {
   cat("Final adjacencies are:\n")
   temp = res
   temp[temp != 0] = 1
   print(temp)
 }

 res = orient_colliders(res,sepset,latents)

 MAKING_PROGRESS = T
 while(MAKING_PROGRESS) {
   MAKING_PROGRESS = F

   ## Away from ancestor
   for (a in 1:n) {
     for (b in nn[(res[a,] == ARR) & (res[,a] == EMP)]) {
       for (c in nn[(res[b,] == ARR)]) {
         if (res[a,c] == CIR) {
           if (DEBUG) cat(nm[a], "*->", nm[c], "by Away From Ancestor since",
                          nm[a], "->", nm[b], "*->", nm[c], "\n")
           res[a,c] = ARR
           MAKING_PROGRESS = T
         }}}}

   ## Orienting ancestors
   for (a in 1:n) {
     for (b in nn[res[a,] == ARR]) {
       for (c in nn[(res[b,] == ARR) & (res[,b] == EMP)]) {
         if (res[a,c] == CIR) {
           if (DEBUG) cat(nm[a], "*->", nm[c], "by Orienting Ancestors since",
                          nm[a], "*->", nm[b], "->", nm[c], "\n")
           res[a,c] = ARR
           MAKING_PROGRESS = T
         }}}}

   ## Unnamed rule (transitivity)
   for (a in 1:n) {
     for (b in nn[(res[a,] == ARR) & (res[,a] == EMP)]) {
       for (c in nn[(res[b,] == ARR) & (res[,b] == EMP)]) {
         if (a != c && res[a,c] == CIR || res[c,a] == CIR) {
           if (DEBUG) cat(nm[a], "->", nm[c], "by Transitivity since",
                          nm[a], "->", nm[b], "->", nm[c], "\n")
           res[a,c] = ARR
           res[c,a] = EMP
           MAKING_PROGRESS = T
         }}}}

   ## Double triangle rule
   for (a in 1:n) {
     for (b in nn[res[a,] == ARR]) {
       for (c in nn[res[,b] == ARR]) {
         if (a != c) {
           for (d in nn[res[,b] == CIR]) {
             if ((res[a,d] == EMP) || (res[c,d] == EMP) ||
                ((res[a,d] == CIR) && (res[c,d] == CIR) && (res[a,c] == 0))){
               if (DEBUG) cat(nm[d], "*->", nm[b],
                              "by Double Triangle with top collider",
                              nm[a], "*->", nm[b], "<-*", nm[c], "\n")
               res[d,b] = ARR
               MAKING_PROGRESS = T
             }}}}}}

   ## Non-collider rule
   for (a in 1:n) {
     for (b in nn[res[a,] == ARR]) {
       for (c in nn[res[,b] == CIR]) {
         if (is.element(b, sepset[[a]][[c]])) {
           if (DEBUG) cat(nm[b], "->", nm[c], "by Non-Collider since",
                          nm[a], "*->", nm[b], "o-*", nm[c],
                          "is a non-collider\n")
           res[b,c] = ARR
           res[c,b] = EMP
           MAKING_PROGRESS = T
         }}}}

   ## Discriminating paths
   for (c in 1:n) {
     for (a in nn[res[,c] == EMP]) {
       for (b in nn[res[,c] == ARR]) {
         if ((res[b,a] == ARR) && ((res[c,b] == CIR) || (res[a,b] == CIR))){
            attr(c,'class') <- 'discriminating'
            check = setdiff(reach(c,a,b,res),c)
            if (length(which(res[check,a] == 0) != 0)){
               z = check[which(res[check,a] == 0)[[1]]]
               if (is.element(b, sepset[[z]][[a]])) {
                 if (res[a,b] == CIR){
                   res[a,b] = EMP
                   if (DEBUG) cat(nm[b], "->", nm[a],
                                  "by Def. Disc. Path with Z =", nm[z],
                                  "and C =", nm[c], "\n")
                   MAKING_PROGRESS = T}
               } else if (res[c,b] == CIR || res[a,b] == CIR) {
                 if (DEBUG)
                   cat(nm[c], "*->", nm[b], "<-*", nm[a],
                       "by Def. Disc. Path with Z =", nm[z], "\n")
                 res[c,b] = res[a,b] = ARR
                 MAKING_PROGRESS = T
               }}}}}}}

 printadj(res)
 invisible(list(res,sepset))
}

pc = function(coltData, prgt = 0.05) {pcinternal(coltData,prgt,noambiguous = TRUE)}

cpc = function(coltData, prgt = 0.05) {pcinternal(coltData,prgt,noambiguous = FALSE)}

# a = rnorm(1000)
# b = rnorm(1000)
# c = a + b + rnorm(1000, sd=.01)
# coltData = make_continuousdata(coltData.frame(cbind(a,b,c)))
# pc(coltData)

#


#pc(coltData)

#coltData = import_tetrad_file("~/Desktop/Tetrad Examples/bollen.txt")
#fci(coltData)

#coltData = import_tetrad_file("~/Desktop/New R Examples/test1.txt")


/Covariance
50000
SES     SEX     IQ      PE      CP
7.2959
0.0032  2.5083
4.4124  0.0302  9.5027
-1.3183 -2.5487 -2.1043 5.7740
-3.6037 -3.6407 -5.7214 8.2566  16.0474

/continuousdata
SES     SEX     IQ      PE      CP
2.4365  -1.1487 -0.5323 -1.8987 2.7326
1.9115  -1.2580 1.5983  1.6134  -0.7748
4.3008  -7.6842 -1.2128 -2.6426 3.9657
1.1536  -0.0110 -1.4033 -1.8226 2.4480
-3.1063 2.3362  0.6666  0.3387  0.6367
1.4511  0.7059  0.1689  0.0441  -0.2885
1.3603  0.7155  0.2648  1.2803  0.6583
0.7550  -3.7126 -1.8337 -2.5981 4.4749
-1.0916 2.9007  0.8863  1.7798  -2.8179
-1.6067 3.7520  0.1315  -0.6071 0.0339
-1.4900 -0.4335 0.4718  0.6965  0.1439
-3.1231 6.1930  0.7982  2.6267  -3.9320
3.4020  -1.9847 -2.7001 -2.6343 1.9232
3.0165  -5.0218 -0.4148 -1.9563 2.8274
0.6999  -1.2504 -0.4322 -1.0934 0.6585
1.7852  -2.7371 0.9346  1.4913  -3.6232
2.4186  -3.0238 -1.2673 -0.8263 0.5977
-0.7354 2.3455  -0.6382 0.8815  -2.3539
1.2985  -4.0396 -0.3792 -2.4777 0.9943
-0.2872 -0.0263 0.1223  -2.1074 3.4066
-1.4026 1.3452  0.0382  0.8264  -0.9463
0.1719  1.8164  0.9323  1.4740  -0.9957
5.1772  -9.8676 -3.2587 -4.6401 5.2978
-1.8599 0.4499  0.0100  -1.0192 1.7784
-0.6363 2.1685  -0.3901 -0.2292 0.3140
-0.4745 3.8357  1.0232  0.6018  -2.4565
-0.3697 -2.5339 1.3677  1.0662  0.6618
-1.0983 1.4230  0.6179  1.3083  -3.3632
1.8195  -1.6892 -1.5144 -1.5856 2.7591
0.5332  -1.5078 -0.1488 -0.0938 1.3435
-0.9178 3.0220  1.1373  1.8793  -3.2527
-1.9558 -0.1441 1.4461  2.2526  -3.0962
0.2540  1.8503  0.9317  1.4676  -2.1457
2.1257  1.6750  0.0219  1.3280  -2.5590
-0.7436 0.9350  0.2893  -1.1238 2.4065
8.3019  -9.5130 -3.9634 -6.8850 9.9900
-1.3779 4.7938  -1.3834 -1.0778 2.1465
0.8839  0.4062  -2.1205 -3.7902 5.1159
-4.4351 4.2449  0.3876  0.3381  -0.2431
-2.7620 2.9602  -0.5396 -0.2716 -1.1723
-2.4462 3.3976  1.4466  2.7868  -5.4791
1.0068  -0.9755 -1.4101 -1.6847 2.5707
-3.7532 6.3327  1.5680  2.2773  -3.1777
1.8539  -3.0910 -1.6899 -3.2541 3.8789
0.1909  2.7521  0.9014  2.5621  -3.3300
4.5183  -4.6311 1.0748  1.2249  -0.1723
0.2777  0.7720  0.7744  1.0089  -1.4324
-1.3060 0.6533  0.8934  0.0527  -1.6508
-3.4532 2.9831  1.7322  2.2722  -3.7161
1.2835  -3.4167 -0.7782 -2.7243 5.8347
-2.2432 3.6220  2.2306  2.3946  -3.2576
-2.0442 0.3993  0.5792  -0.8692 0.3866
-3.5966 4.5339  1.7474  1.6708  -0.6015
-2.0673 4.4129  -0.8700 -0.9345 0.9924
-1.5156 1.8829  0.6597  1.0789  -1.5994
1.5063  0.2852  -0.4273 -0.4526 -0.0603
-1.5556 0.2009  0.3609  0.8581  0.1349
-5.4120 4.6720  2.4633  3.4265  -4.6956
-1.1098 -1.7097 0.0574  -0.4611 1.9610
-3.0259 5.8784  -1.8679 -0.0917 -0.4456
-2.2497 6.0936  1.1753  2.6068  -2.1126
4.3895  -8.3032 -1.7571 -3.4841 5.2637
-5.7622 10.1716 2.2049  3.6244  -4.2715
-0.9634 -0.6657 1.2952  2.2901  -3.8516
-1.3677 1.0489  -0.3401 -0.4213 0.2371
0.1775  2.4761  -0.6149 -0.6032 0.1969
-1.1355 1.6826  -0.3069 -0.7674 0.9350
-5.5269 10.1670 1.1084  1.8343  -3.4497
-1.5065 0.0673  1.0297  1.1805  -1.9277
-0.3972 2.8142  0.2726  0.1944  -0.8372
-5.8081 7.2563  1.8763  2.8514  -3.2666
2.9966  -2.9104 -1.6203 -1.5380 0.7073
4.8509  -5.9770 -0.9174 -1.5157 0.0358
-1.2526 2.3685  0.1357  1.4265  -2.2687
-1.4717 5.4868  1.5902  3.2137  -6.5028
0.4390  -1.0437 0.0034  -0.7113 0.0259
-0.7909 2.4275  0.8854  2.4968  -3.3785
-0.0035 2.2019  2.4107  3.3819  -5.0207
3.6641  -2.1121 -1.8366 -1.6087 4.4000
-2.2528 0.3927  2.5818  3.5369  -6.1054
0.7695  -0.2005 -1.2059 -1.8936 3.9457
4.6462  -5.1139 -1.2747 -2.9215 3.1314
1.9887  -3.5515 -0.8587 -0.9389 -0.5383
-0.4862 -3.9556 1.1604  0.6498  1.4703
2.3528  -2.3891 -0.6494 -1.5606 2.7170
-4.4891 3.0126  1.8325  1.6260  -2.2302
0.1725  -3.2441 -0.0179 0.0015  -0.1541
0.5830  -2.0063 -0.3984 0.2605  1.6222
4.1082  -6.2463 -0.3454 -1.5261 0.4215
-0.4404 0.1123  -0.9852 -1.1911 2.6345
-5.0358 9.7242  0.3776  3.0085  -3.7782
4.1578  -5.7175 -0.9095 -2.2623 2.1558
8.5859  -11.0742        -2.3819 -5.0652 8.6163
1.7947  -0.6362 -1.2937 -1.4859 2.6168
-2.1241 4.1150  0.3716  0.9066  -2.4267
1.6084  -2.5852 -0.1338 -0.6774 1.6038
-1.6537 -0.3848 0.3207  0.7180  0.7471
-0.3375 0.6914  -0.9418 0.4941  0.5796
-2.2987 6.3099  -0.0696 -0.0541 -0.4695
3.2582  -4.4074 -0.7047 -0.2624 0.6055
4.3941  -3.4077 -0.0341 -0.3023 -0.2993
-0.7516 0.4324  0.2884  0.3939  0.1153
6.3320  -10.9138        -2.4533 -4.0224 5.5143
1.2413  -4.9274 -0.1502 0.0806  0.0216
-3.1972 1.7127  -0.1074 -0.5576 1.1966
0.7346  -0.2368 0.1174  -0.2912 -0.0721
-1.9931 3.5115  0.2863  1.8238  -3.0194
-5.2408 9.3211  1.4756  4.0399  -5.7129
-2.7001 1.6266  1.5189  0.0507  -1.6413
-0.5538 0.0904  -0.5701 -1.5556 1.8591
1.1088  -1.7876 -0.7282 -1.7166 3.4587
5.9250  -7.4596 -1.5769 -2.2526 2.9811
0.6695  2.1713  0.2420  1.3342  -3.7617
-0.8147 2.1897  0.1313  1.5558  -0.3815
-2.5371 4.3552  0.8333  0.9140  0.1168
5.1052  -6.6201 -0.7111 -2.4059 2.7542
-0.3664 1.1996  0.2628  0.6075  -2.2709
-1.6913 4.8647  0.2902  1.7308  -1.7678
-0.0478 -0.6516 -1.4353 -0.2734 0.0313
-0.0969 -0.1817 0.2798  0.1209  0.3070
4.0451  -8.1083 -1.0246 -4.1955 4.4239
-2.2225 5.5601  0.5653  1.1398  -1.3928
-3.5205 3.3297  0.9015  0.8216  -1.2761
4.1391  -5.0700 -1.6123 -2.6211 4.3655
-2.0917 1.5292  -0.1075 -0.5118 1.8158
-1.0717 1.5719  -1.1226 -0.3141 -0.5810
-1.0155 1.9000  1.1340  1.5124  -1.9178
-2.9887 5.5372  -0.0504 1.8345  -2.8790
1.8005  -2.1795 -1.1542 -0.2533 -0.2408
2.2383  -4.2302 -0.9664 -0.8012 -0.0368
-1.0986 1.9790  0.8034  1.8244  -2.3671
-1.7667 0.2189  1.3146  1.4713  -2.6831
5.2686  -4.5894 -1.8410 -2.5809 3.0180
-3.0088 5.5065  1.9285  2.7434  -4.1645
-0.6586 -3.7382 0.4280  0.1698  -3.0455
2.2728  -2.7085 -0.8864 -0.4570 0.9927
-0.0726 -0.6453 1.5005  3.5065  -6.7752
0.6943  -2.7257 -0.4371 -2.0038 2.0142
-0.7226 1.8157  0.2667  0.1944  -0.0721
1.2201  -1.6430 0.9620  0.5503  -0.4624
-6.0922 9.3652  2.5676  3.3226  -3.2178
-2.3731 5.4554  0.8162  1.9064  -0.0360
1.7050  -1.3076 0.8343  0.0573  -0.9777
7.0662  -12.5221        -2.1288 -5.8960 6.4781
1.1711  1.8262  -1.6478 -0.4948 0.6599
0.2709  -2.3817 0.2300  -0.3251 2.9565
1.0703  -0.6140 0.2082  -0.0789 -2.5066
-0.8369 7.4878  0.6986  1.7842  -1.7707
-4.5114 3.3037  -0.2040 -0.6112 -0.3401
-0.0352 -1.7981 0.0679  0.1736  -1.0910
3.3429  -5.5991 -1.2792 -2.8777 4.9085
-5.4488 5.8843  -0.3997 1.5691  -2.9118
-1.6081 1.1711  1.6224  0.5595  -0.5161
0.8857  0.0728  1.8491  0.7237  0.1030
4.2881  -5.6531 0.0267  -0.2108 1.6530
-0.7663 2.3099  -0.4936 -1.1652 1.4614
0.9925  -1.4846 -1.4620 -2.7519 2.8356
2.8735  -4.7304 1.3540  1.1743  -0.7296
-1.7489 0.9203  -1.0219 0.2228  0.4550
0.9384  0.0391  -1.0380 -2.2344 3.7754
3.5084  -3.9700 -1.2528 -0.7161 2.4331
-0.8154 0.1740  1.8152  2.5360  -1.6881
2.3936  -5.6599 -1.7138 -2.1761 3.2465
-0.4492 5.1599  -1.0911 1.4699  -0.2239
-4.5363 4.1809  1.7266  2.8004  -3.4421
1.3636  -0.1059 -0.5688 -1.4289 0.6168
0.4861  0.3917  0.3548  -0.2277 0.2551
-1.5353 2.1008  1.1333  1.4628  -1.8323
1.1656  1.1881  0.8048  1.8138  -4.9149
8.1875  -9.9523 -1.5830 -3.4545 4.8638
1.0465  1.6348  -0.7714 -1.2837 2.1963
-2.7543 -0.4896 1.2085  1.1515  -1.9239
0.5909  0.3248  -0.8469 0.3287  -1.7050
-4.0776 4.5335  1.1976  2.1649  -3.7939
4.6632  -5.4506 -2.1032 -2.5882 5.2695
-3.8518 6.1993  2.0379  3.1399  -2.6352
0.3138  -0.1009 -0.6453 -0.6500 -0.4067
2.3614  -4.1799 -0.8820 -0.4608 -0.9073
0.3992  1.0043  -1.9897 -2.5060 3.4074
1.4001  -3.1355 -0.0905 0.0787  -0.4227
-3.7838 3.8757  0.9662  2.7365  -4.4974
-3.7006 4.9322  1.3132  2.4828  -2.4094
-0.9609 3.7663  0.4768  -0.0137 0.3050
-4.0229 5.2508  1.3195  2.7820  -3.9337
5.2285  -9.5033 -1.4146 -5.4181 6.6088
-5.6174 6.9988  1.2138  2.8624  -2.9479
-1.9124 -0.1141 2.6350  2.4439  -4.6028
-5.7282 8.7616  1.6782  3.0448  -3.3316
1.4406  -0.0083 0.4653  0.8146  -0.6677
-3.9794 7.1089  0.6681  2.2598  -2.7223
-7.0876 6.7655  2.6952  3.9198  -4.2026
0.4274  -0.0172 -0.2366 -0.4169 -0.2251
-1.0265 4.2963  -1.3423 -1.6236 3.1279
-4.1317 9.9747  0.0318  3.0498  -5.5471
-0.6240 1.8724  1.9431  0.9063  -1.5897
0.1437  -1.2920 -1.5956 -1.7887 1.8261
2.1447  -4.9846 -2.4291 -3.4487 3.3228
2.1740  -5.3957 -1.8040 -1.9819 1.4136
-3.0477 -2.3369 0.9677  -0.5965 2.5532
2.3173  -2.5793 -0.4348 -1.5113 0.5993
-3.4460 3.0542  1.9097  3.2083  -2.5269
3.0720  -5.8037 -1.9327 -2.1730 3.5228
-1.2027 7.2356  1.0914  2.1316  -1.8098
1.4005  -1.0626 0.0810  -2.0618 1.5079
-3.6752 3.5568  0.2566  1.4536  -0.4445
-3.3616 6.4059  0.9225  3.0599  -3.8134
-1.6131 -0.9074 1.3713  0.8404  -0.5462
1.0172  0.0961  0.6102  0.9895  -0.9163
1.7307  -2.2312 -0.5762 -0.9325 -0.0688
0.8881  -3.6379 -0.0115 -0.4069 -1.2563
-4.5048 5.4202  0.5052  1.1986  -2.6443
5.2472  -8.4738 -1.2763 -3.9413 8.0929
0.5644  1.2829  0.5980  1.1972  -1.8215
3.9435  -4.8854 -0.2232 -1.2609 1.3745
3.5847  -5.0938 -2.8038 -4.4825 5.1883
-3.2355 4.7423  0.9798  2.6768  -3.3473
0.6565  -0.2712 -0.3231 -0.0988 -1.9633
-0.8256 0.3944  1.6272  1.7872  -1.8286
0.9120  -0.5704 -1.5016 -2.1589 2.8960
-1.2488 0.8183  -0.2232 1.5644  -2.4179
-6.8247 10.8544 0.1144  2.0923  -3.9414
1.2917  -2.3926 0.2298  -1.6085 -0.1640
-1.7006 2.4126  1.5157  1.8182  -2.8721
-4.4662 4.7474  1.4424  2.2964  -3.8801
-2.3688 3.1677  0.4520  1.1399  -1.6460
2.1402  -1.2691 -0.0928 -1.0838 1.5934
3.7331  -4.3964 -0.6459 -1.1631 1.8581
-1.8380 0.6351  -0.4415 -0.4434 1.4463
-3.6677 6.9963  1.2500  2.8607  -4.5114
3.7101  -7.5828 -0.0717 -0.4714 2.2129
4.1738  -7.2193 -1.5023 -3.7360 3.2803
-2.7633 1.2292  1.5481  1.6914  -2.4265
-2.0430 5.7917  0.5919  2.2795  -3.0714
1.4794  0.3611  0.2857  0.5358  0.3264
-1.7299 3.9698  1.3932  2.8925  -4.6545
6.2783  -8.9121 -0.7441 -2.4681 3.6226
1.2015  -1.8885 -0.9031 -1.8537 4.2020
1.0967  -0.6264 0.3164  0.2266  0.3170
-2.5694 5.5342  0.1790  2.0864  -2.4356
1.7320  -2.5274 -0.6598 -2.4668 4.7558
-7.0255 8.8493  2.5570  4.3844  -5.1041
-4.4829 4.1697  0.4572  1.7662  -4.2463
-5.9809 10.6059 1.7293  3.6635  -5.8000
2.1114  -5.9436 -0.0249 -0.9239 0.3548
3.1703  -3.9066 -0.3978 -0.0052 -0.3796
3.6428  -3.7530 -0.7777 -2.0866 3.6376
-3.1061 3.7469  -0.0434 0.9960  -1.0646
-1.4541 0.5478  -1.2610 -1.8437 1.6535
-0.1184 -2.5207 0.3217  -0.9726 -0.6650
-1.1800 5.8762  0.3976  1.9203  -1.3152
-1.5966 0.1283  -0.7207 -0.8167 1.2376
0.2977  1.1295  -1.0764 -0.6848 0.7931
-0.9074 0.9202  0.4966  0.3257  1.4185
-0.2003 -1.0302 0.7020  0.5376  -0.6362
1.8928  -3.0859 -1.0566 -0.8828 1.2108
0.9630  -3.2922 -1.4686 -2.5790 4.1721
-1.9500 2.2947  -0.6549 -1.2318 1.5151
-0.7520 4.1535  -0.0393 0.6856  -0.3852
-1.2936 2.6088  -0.3511 0.1148  0.1844
-0.9214 -2.3767 0.2841  -1.4801 2.8482
2.4618  -3.9252 0.8357  -0.1907 -1.3974
0.9743  -1.5465 0.8127  0.2877  -1.2227
-3.4958 8.5439  0.0505  1.0503  -4.7391
2.4976  -5.9903 0.1687  -0.8530 2.4335
3.0554  -4.3838 0.3328  -1.2464 2.8572
-1.1878 -0.3270 -0.0519 1.4715  -1.0065
3.3955  -7.3527 -1.5294 -1.3396 3.1113
-2.1996 0.9361  -0.0133 0.6215  -2.6563
-5.1299 8.6400  1.4737  2.5258  -2.7278
-3.3962 1.5044  -0.0144 -0.0978 1.6050
1.6771  -1.5576 -0.9658 -1.9954 4.0681
2.6996  -4.8556 -0.1549 -2.0026 3.8274
-1.3963 3.2857  0.0322  0.9434  -0.7957
1.0323  -0.1192 -0.4238 -0.6400 1.0000
-0.4119 0.5615  -0.3962 0.4255  -2.1318
2.3103  -6.7230 -0.7369 -2.4863 3.5155
5.2944  -0.9010 -2.6056 -3.1356 3.5926
-0.5920 -2.1853 -0.2694 -0.8135 0.9377
0.6588  1.8972  -1.1032 -1.2158 0.1148
2.7350  -2.4287 -0.9767 -1.0668 0.7351
2.3853  -3.0645 -0.8289 -1.1928 1.9230
-4.5954 10.5571 2.4893  4.0398  -7.8541
0.4151  -1.4835 1.5128  0.4183  -0.8774
-4.1711 7.8402  0.9844  2.1821  -3.0273
-2.0470 2.8747  1.3144  2.2970  -1.9086
-0.4526 2.5345  1.0607  1.6185  -1.7426
-2.2511 3.9544  -0.0500 0.1594  -1.4501
1.2730  2.4897  1.2650  2.2316  -3.2014
-0.7641 -0.0187 0.6133  0.5233  -1.0786
-0.8293 1.6344  0.0271  0.6077  -1.0892
3.5293  -9.3925 -1.4891 -3.6508 3.1847
-2.5906 6.7749  -0.1350 3.0682  -3.7780
0.3224  -0.9390 1.4207  1.0807  -2.1133
0.5680  1.2733  -1.4476 -1.4572 2.7797
5.6758  -6.4371 1.6615  -0.7323 1.4133
-2.5217 4.5874  0.4595  0.7579  -0.9643
1.3102  -5.1195 -1.5247 -4.3685 5.3282
-1.0650 -2.0888 0.5290  0.5192  -0.2216
-5.0893 9.3237  2.9173  5.6835  -6.8250
-2.2492 -0.9403 -0.0647 0.0536  -0.7514
-2.5176 2.6577  2.0372  3.0491  -4.5928
0.2929  2.1504  -0.6897 -0.2798 0.0387
-1.4030 2.6318  0.6156  0.8674  -1.7451
-0.3697 1.4799  -1.5757 0.2314  -0.0419
3.0077  -3.6734 -1.0529 -1.6965 3.0406
0.3198  1.2545  0.3956  0.1978  0.1097
-2.5801 4.0523  1.4884  2.5612  -5.5668
3.2467  -6.4823 -0.8664 -2.7634 2.5031
3.2612  -5.5835 0.0532  -0.1275 0.2869
3.2021  -6.8711 -2.3424 -2.9140 2.3686
3.7945  -4.0457 -0.8533 -1.4917 2.4224
5.8231  -9.1403 -2.3428 -4.5124 5.4486
1.7770  -1.5893 -1.4691 -0.4844 1.0060
-6.3103 10.3506 1.3931  4.0878  -5.6441
0.1450  -1.2872 0.6761  -0.6702 -1.4670
-1.7979 4.9155  0.1687  0.8919  -0.3845
-4.0647 10.2174 1.1554  3.1247  -2.9633
-0.0434 -3.1834 0.9817  0.0600  -2.0407
1.7041  -4.1068 -0.8597 -1.9999 3.0717
2.6073  -1.6351 -0.4356 -0.0511 1.6753
0.3461  1.1851  -0.6036 0.1382  -1.3591
2.0181  -4.9256 -0.8460 -1.1662 3.6774
4.1818  -5.1589 -1.8156 -2.8680 5.1751
-2.7852 4.4584  1.8998  2.7377  -3.6626
2.8111  0.0426  -0.8813 -1.0753 3.2323
-0.4778 3.8454  -0.0850 0.5238  0.6062
-5.2827 6.5965  1.6090  3.0039  -3.3042
0.0583  -1.7961 1.0084  0.8856  -1.0310
-0.3821 0.9248  -1.3392 0.4609  -4.0150
3.5863  -3.5441 -0.3916 -1.2937 1.4524
-2.8091 1.1491  0.6788  -0.2538 2.2269
1.9588  -3.5219 -0.7643 -1.5073 2.1401
5.5330  -7.1550 -0.9650 -2.4141 3.3515
-0.7159 1.8160  0.5911  2.2568  -3.4917
-4.0973 4.7698  1.8730  1.7401  -0.9402
1.5314  -1.9394 0.6205  0.0340  -0.1639
-2.4315 2.9252  -0.2704 0.3343  0.2699
-0.3416 2.7892  0.6419  0.8834  -2.0972
0.2594  1.5031  0.1509  1.0642  -0.8088
1.8438  -2.9531 -0.7349 -1.7083 -0.2722
0.5425  -2.2263 0.2906  0.3623  -2.5281
1.9688  -5.1766 -0.6671 -1.6083 2.2332
-1.2326 -1.0412 -0.2999 -0.8761 0.0852
2.9131  -3.5354 -0.7636 -1.7537 5.3384
-0.7534 -1.2898 0.5689  0.3986  -0.2295
0.7910  -4.3963 1.9105  1.1801  -1.1648
-3.1347 2.8109  0.7467  1.2942  -2.3893
-3.2836 3.4671  0.3969  0.4681  -2.6948
1.0435  0.9731  0.8619  1.3623  0.4232
1.3646  2.0761  -1.6327 -2.1008 3.4833
-1.6500 3.1926  1.4449  2.3663  -4.3701
5.8841  -9.4497 -2.6125 -3.4699 7.0372
-3.0908 0.8304  0.0431  0.9238  0.1182
3.4146  -10.2131        -0.0709 -0.6910 0.0597
-0.6943 -0.7494 0.1427  -1.0142 1.1561
-6.2149 9.3289  3.0469  5.1218  -5.3156
0.6626  -0.7762 0.7944  0.6556  -1.8561
-7.1892 12.9513 4.0379  7.1288  -8.6904
-2.0646 4.0228  -0.4108 1.7457  -4.1350
-1.7353 -0.5899 0.4973  0.5963  -0.3761
-4.1184 7.0149  0.6135  2.0063  -2.3478
1.2852  -4.5309 0.0514  -0.6711 0.4269
-2.2249 6.4210  -0.5129 1.3253  -1.5093
-1.8611 0.4621  1.8558  1.3394  -2.3021
-3.2732 9.8602  -0.3409 1.1619  -0.9604
0.9002  -1.5536 -1.0331 -0.3243 -1.5943
-1.0236 3.9244  -0.0023 -0.0574 0.9129
1.8980  -1.0037 -0.4935 -0.4184 1.7316
2.3150  -2.7153 -0.7935 -1.2818 1.8212
3.0432  -3.7792 -0.2268 -1.3763 -0.3414
-1.4284 5.4073  -0.6757 1.4617  -3.7232
2.6532  -3.7247 -1.5331 -2.8651 4.5747
0.1255  0.9195  -0.3043 0.3186  -0.6525
1.7246  -2.8046 -2.1753 -1.8942 4.9594
-2.8441 1.0645  1.9744  3.1910  -5.2004
2.1438  -3.6411 -0.5917 0.1008  -1.2184
-0.2736 -2.2368 -0.5932 -0.3501 0.3319
0.4261  -2.9876 -0.0277 -0.8829 0.6380
3.5667  -6.2148 0.2534  -1.1977 1.2066
-3.3162 5.0199  0.4548  2.1186  -3.2817
-3.5076 5.1720  2.0897  3.3058  -2.1850
-2.5206 2.2565  2.6214  3.1288  -5.3855
2.7510  -2.9596 0.9749  0.7350  -0.1584
3.6582  -6.8386 -1.3309 -3.4406 4.0357
-0.5793 2.0339  0.7928  1.0234  -1.1475
2.3648  0.2663  -2.9665 -1.3024 0.8890
2.1301  0.0247  0.0675  -0.6483 0.0821
3.7278  -4.4886 -0.7008 -0.8144 1.5566
-2.3639 5.2291  1.3058  2.0289  -4.5994
-0.7520 -0.8894 0.3461  -0.7017 -1.0495
0.9982  0.7549  -0.8042 -1.4493 1.2533
3.5511  -5.0249 -1.6973 -2.3709 2.8173
3.0158  -4.8228 -2.9570 -4.2060 7.2516
-0.2655 0.5234  0.7379  1.8272  -0.0970
3.0221  -7.1325 0.2651  -2.2635 2.6739
-0.3740 -2.3899 1.3804  -0.8558 0.3763
0.8155  0.0535  0.0079  0.6491  -3.2793
-0.2520 -0.1403 1.8217  3.6800  -2.8319
0.3386  -1.3202 -0.1682 0.0779  1.2059
1.0665  1.5843  0.5403  1.0423  -0.9551
2.9877  -3.6682 -1.1716 -2.1153 3.3872
-1.3405 4.5778  0.2608  1.6201  -2.6910
3.9532  -2.3756 -0.9060 -1.8189 3.2228
1.4543  -3.9539 -1.3064 -0.5762 0.7892
-3.1022 4.4081  0.6087  1.5306  0.0384
0.5815  -0.2766 -0.8410 -0.9976 -1.8905
-3.2282 2.8802  1.1941  1.5146  -0.2580
-0.5917 -0.8125 -0.2396 -0.5856 0.3261
-4.8789 8.7074  0.7121  2.9438  -3.7656
4.4667  -6.9510 -1.4669 -2.8574 2.4717
-2.6209 5.6695  0.3442  1.0711  -1.8372
2.6413  -3.9332 1.2161  0.9029  -2.4192
0.9381  0.9739  -0.6855 -0.1148 -0.5375
-4.6102 4.8102  1.4988  3.8719  -6.1806
-2.2547 7.9975  -0.4826 -0.0626 0.4862
3.0811  -3.9294 1.1633  1.8358  -0.9923
-6.1076 9.1367  1.3247  3.1823  -3.6578
-1.8524 5.0047  1.4707  3.2315  -1.9702
-1.2550 3.2767  0.7324  0.4690  0.3466
-3.9550 4.8033  2.0828  2.6867  -5.2692
-2.3500 1.6458  1.0582  0.5052  -1.3594
1.3436  -3.0723 0.3984  0.5547  -2.6371
0.2047  1.5735  2.4582  3.7764  -5.2775
4.1855  -8.6239 -0.3518 -2.6523 2.2153
-2.8264 4.3710  0.8573  2.1624  -1.8880
-3.3217 3.0460  1.0688  1.0979  -2.1270
4.6767  -5.8127 -1.9695 -3.4879 5.1695
1.9955  -6.4736 -1.9714 -2.3150 3.7075
-0.5221 1.0050  0.5921  0.8086  -1.5538
0.1538  1.6918  -0.6247 -0.5367 1.3246
-1.8889 2.3776  0.6653  0.3649  -1.2277
-2.8979 0.4355  -0.1605 -0.5882 -0.2712
0.6760  -2.8898 -2.1901 -2.1913 1.6417
-5.9018 8.3212  1.0967  2.5179  -3.3499
-3.9962 6.2250  0.3452  1.8056  0.1026
-2.2617 3.4671  1.5094  0.9386  -0.5775
1.8335  -2.1298 -0.8851 -0.7581 2.8739
4.9792  -8.2518 -1.9313 -3.1013 3.7771
-2.3021 2.9278  -0.3492 0.6739  -0.0555
-0.7778 3.7597  0.4328  1.0496  -2.4366
0.5720  0.2225  -0.1388 0.1395  -2.0333
-5.1977 8.0334  1.3473  2.6064  -4.1936
0.4739  -2.2095 -0.6401 -0.5542 1.9981
2.4604  -6.8930 0.1274  -2.0978 1.8880
-0.9572 1.9072  0.3442  1.3317  -1.2599
2.3242  -3.4436 -1.9373 -2.0079 2.4716
-0.7200 -1.7892 0.4666  0.3189  0.3747
0.0104  -1.6366 0.7342  0.0059  1.9560
0.7718  2.8029  -0.9933 0.6427  -1.6151
-1.1983 2.2355  2.8105  3.2562  -5.0767
-1.4955 0.0599  1.6322  1.4703  -3.8465
3.0120  -1.1120 -1.8436 -3.6090 6.1746
0.8846  -3.0763 0.8855  0.2506  0.9457
2.7055  -1.7203 -1.5600 -1.6261 1.1278
-2.0080 2.9066  0.5858  0.7540  0.4766
-0.8019 1.7620  1.6227  2.6253  -3.0621
3.4721  -5.9545 -1.2235 -3.4624 5.8014
1.5731  -3.7577 -1.9722 -2.5120 1.9042
1.8879  -4.2051 0.0550  -0.7771 1.1689
0.2861  0.7562  0.4580  0.6735  -0.2453
5.5177  -6.1262 -1.8358 -2.7568 1.7640
4.3010  -10.1126        -1.5279 -4.0171 5.1763
6.4611  -8.1689 -1.9877 -3.0331 4.5398
-0.2745 0.8707  0.2509  0.9218  -0.3845
-4.8092 4.1561  0.7753  0.6731  -0.3283
0.8865  -0.3376 -1.9206 -2.0667 1.6955
2.4636  -2.9195 -0.5378 -0.9467 2.1060
6.4861  -7.3501 -2.3937 -3.8070 5.3694
0.6881  -0.8930 -0.7662 -1.0062 0.5154
-5.7493 8.8091  2.6796  4.2031  -6.7880
-0.1577 -4.9278 1.4639  -1.0324 1.1591
-3.5369 6.3083  1.8388  4.1775  -7.1030
4.7391  -5.3237 -2.7064 -4.2821 4.4746
-0.2036 0.6337  -0.1098 -0.0055 2.0586
-3.3084 6.4379  1.2573  2.7881  -3.8474
0.5622  0.1167  0.8727  1.2093  -0.7322
2.7406  -5.6741 0.6077  -0.8887 1.8269
0.0337  4.4149  0.7035  1.7343  -1.9683
-0.9440 1.3636  2.8952  2.4481  -3.9557
-2.4762 4.9712  0.6802  2.0790  -1.6374
-1.2281 -4.4092 1.9642  1.2237  -3.1301
3.2230  -8.4959 -0.3404 -3.7415 4.9306
0.6843  -1.6247 0.2168  0.1798  -0.4365
-3.4033 1.6968  2.2039  2.1614  -2.5144
4.0033  -4.1060 0.6944  -1.5684 1.7860
2.9174  -6.1514 -2.6513 -4.4484 5.2428
4.8534  -12.9392        0.1417  -3.5461 5.1181
-1.3682 0.4710  2.0071  2.9267  -3.9864
3.7303  -6.8493 -0.6139 -1.4672 2.8429
-0.5742 3.8896  -0.9152 -0.2498 0.4217
2.2396  -5.9851 -0.7664 -1.0721 0.0657
-0.6626 -0.2857 1.1391  0.2352  -2.8561
-3.8509 3.6993  1.6408  1.8415  -3.8900
1.5329  -7.9010 -0.4390 -2.9480 5.1964
2.6745  -3.2465 -0.4349 -1.5389 1.8580
4.0888  -5.1670 0.2728  -1.2123 2.0288
-3.0017 5.4357  0.7718  1.7243  -2.5350
-1.1502 1.2673  -0.5424 -0.4160 0.8369
-0.9273 -0.5162 0.2589  -0.2747 -1.4287
1.4137  -0.2638 -1.6159 -2.2861 2.2471
-1.9236 -0.5611 0.0242  -1.2467 2.2641
2.8872  -5.6074 0.9844  -1.1158 1.1467
0.4888  -2.0711 0.0539  -0.7157 -0.0564
-4.4480 7.5563  1.7617  4.6745  -6.9865
-2.2892 4.3473  1.8418  1.4411  -3.4389
-3.5230 5.5253  -0.4786 1.7208  -2.3298
1.4077  1.8654  0.5599  1.0543  -1.4247
-1.8052 2.7746  -0.5496 -0.0824 0.6125
-1.0504 2.4070  -1.3950 -0.0146 -0.4956
-0.1915 -0.6182 0.7635  0.3984  -0.6321
-4.8781 1.2528  1.9380  1.5284  -1.7796
-1.3244 3.8497  1.8791  1.8512  -0.8910
-0.0731 -0.2603 0.8773  0.6288  -1.5692
3.3048  -7.2711 -1.9114 -3.7722 6.7624
2.8320  -3.2094 -0.9945 -1.4384 2.3424
2.9092  -2.4675 -0.8351 -1.4008 3.0895
2.3384  -2.4705 0.5991  0.5484  -1.3342
0.7234  -2.0974 -0.4468 -1.5468 2.1159
-0.4534 2.7432  0.4966  1.4822  -1.3601
-3.9098 1.5066  0.8047  0.2157  -1.0952
-1.2739 3.1993  -0.7397 0.3579  -1.9313
3.9966  -1.4525 -1.7202 -2.2779 3.6641
3.2663  -1.9555 -1.2785 -1.8152 1.7601
-1.2367 4.7497  0.1384  0.4181  1.6061
-3.7734 4.9034  0.7399  1.5063  -1.4565
-0.2634 0.1713  2.2154  1.9796  -2.0756
1.8222  -1.9891 0.6709  0.6241  -0.0589
-0.6192 -0.6482 0.7555  0.4456  -0.4140
1.8240  0.8161  -0.2842 -1.0310 1.7524
-3.4110 6.3391  1.2947  3.3628  -2.2062
-0.5359 1.8587  0.2257  1.9705  -1.8232
2.1736  -2.4036 1.6550  1.8718  -0.8460
0.5787  -3.6658 0.1355  -0.2586 -0.0470
-2.8826 4.4995  1.0436  2.4518  -2.7916
-0.3678 2.9462  0.3260  0.3983  -0.6333
-3.5630 5.7243  0.4643  2.8299  -3.4950
-1.1421 2.2264  0.9604  1.1755  -1.7109
-1.4296 3.4367  0.1717  0.5622  -1.1002
-1.6864 2.7826  0.5219  0.9004  0.1293
-11.0916        20.1829 2.6422  6.4652  -7.8598
5.1468  -6.1870 -1.4446 -2.9639 2.2828
1.4653  -4.4361 -0.6881 -0.4013 -1.1100
-2.5235 2.2573  1.3389  1.8786  -3.6206
-0.7785 -0.6427 1.9092  1.4801  -2.9214
-1.7346 2.9380  0.8601  0.7570  -1.5159
4.3519  -6.2128 -1.1689 -3.7338 4.4942
1.0089  -4.2931 1.0397  0.3431  -2.6283
2.4428  -2.8160 -0.1293 -0.6954 1.8958
-8.1406 11.4154 2.0985  3.2093  -5.2572
-3.7381 4.3152  1.2144  1.2806  -2.3737
-3.0932 6.8168  1.4602  3.1392  -4.5122
-1.5887 0.7896  0.2735  0.8331  -0.1185
-1.9210 4.1681  1.0508  2.9186  -3.7632
1.0547  -2.8538 -1.4508 -1.9538 5.2040
-2.2374 9.0207  0.7182  3.2209  -3.0807
1.5047  -3.4980 -0.8760 -1.6196 1.8904
-6.7315 11.4004 1.7998  4.1797  -7.0602
-4.9045 8.3250  1.9988  3.8233  -4.1637
0.0517  -0.0505 0.8663  0.8261  -0.9419
-5.7856 7.8862  2.1350  4.0636  -4.5922
-1.3448 0.2018  -0.5235 -1.2777 0.9909
1.0048  1.0503  -1.3447 -0.5679 1.1795
-0.1395 1.3665  -0.3250 0.5964  -1.5414
-0.5600 2.8411  -0.2922 -0.7259 1.7186
-1.6467 4.1253  1.7007  3.1955  -3.3667
-9.4163 14.3185 3.6842  7.5115  -7.9125
1.5714  -4.9817 -1.0858 -2.1701 3.1880
1.1403  -1.7609 -0.2980 -1.6733 1.6248
-0.1604 -4.1140 -0.1431 -1.8074 2.1692
2.1326  -7.1212 -2.0988 -2.8009 4.5308
7.1686  -9.8244 -2.3407 -4.1812 4.0120
0.6982  0.8016  -0.7666 -0.4827 0.8868
5.9531  -7.5140 -1.8089 -2.3752 3.4688
-2.7307 4.6514  1.3128  2.7004  -3.5166
0.5454  -4.0680 0.3631  -1.9363 2.4404
-6.7728 9.2743  3.0738  5.1580  -7.0541
3.1417  -3.2437 -2.5098 -1.5812 1.8020
1.5839  -0.6714 -0.1419 0.4488  -1.1512
-0.3087 0.8077  0.6032  1.0462  -2.7652
1.2033  -7.5024 0.7284  -0.8042 1.6880
-0.2663 1.9636  -1.1948 -0.5682 1.8370
1.2218  1.3372  -0.0057 -0.5157 1.1550
0.7007  -4.0675 -1.5488 -1.2206 0.2381
1.3234  -4.8247 -0.3991 -1.5855 0.2205
3.0541  -3.3459 -1.1902 -1.9517 2.6350
1.0161  -1.2356 -2.6919 -3.6190 4.9058
1.4134  1.6693  -0.1262 0.2241  -0.4542
-6.7886 14.6550 2.2991  4.8027  -8.8821
2.4798  -2.8016 0.4981  -0.1538 0.7230
0.2882  0.4257  -1.1573 -2.0947 2.6293
1.7741  -3.3321 -1.8306 -3.8949 5.9896
0.9861  -0.7829 -1.6987 -1.8974 2.2423
-3.7863 2.6038  1.9482  0.8579  -1.0094
-4.5293 3.8299  2.5878  3.3806  -6.2259
-0.6456 1.9261  1.0963  1.6161  -1.6804
2.4682  -0.6923 -1.7923 -1.7628 2.1805
-1.7193 -0.0976 -0.0430 -0.5034 0.5538
1.8270  -0.7679 -0.6450 -0.2235 0.7633
-0.5082 2.4944  -0.4835 1.3518  -4.4457
1.9574  -5.9620 0.9185  0.4278  0.9386
-2.4095 3.0350  0.6051  2.0401  -2.6404
-2.3443 4.2821  0.3118  1.0642  -0.8803
-4.3750 4.4617  1.0817  2.5154  -1.7677
5.2291  -4.4301 -2.4017 -3.0121 4.4376
-3.8211 5.1378  -0.4034 -0.1275 0.7899
2.1151  -7.0204 -0.6367 -2.8865 2.5418
0.6283  -3.4369 -1.4209 -2.3554 4.9164
-5.9971 8.4384  -0.1658 2.1792  -2.8169
2.7232  -1.9071 -0.5048 0.0861  -0.8487
5.4151  -8.7323 -1.5361 -1.6471 1.4250
-4.0589 4.7402  1.9166  3.2464  -3.3371
-0.6548 5.0124  -0.6795 0.6173  -0.6992
-0.9824 1.5378  -0.7169 -0.3580 0.7190
-4.3887 7.3156  0.6607  2.2216  -4.0950
0.3208  -0.1414 -1.4781 -1.7137 2.6444
-2.0858 5.1123  1.2848  1.2196  -1.8966
-3.3699 3.9719  0.2451  0.2301  0.4652
-1.4413 2.3381  -0.1212 0.4813  -2.6506
-2.3496 0.3841  0.4943  0.0827  -0.5216
-2.3066 2.5944  0.8126  1.2262  -2.4269
0.3681  -2.2503 0.9552  0.1144  1.2555
1.8671  -2.6730 -3.2424 -3.6757 5.2704
-0.6859 -3.5385 -0.3024 -0.5604 1.4867
-2.0538 1.5457  1.8833  1.2709  -2.1566
-5.5218 5.7131  2.2022  3.2564  -4.4750
-1.1596 -0.0717 0.0004  0.8867  -2.5825
-3.3933 4.2475  0.4856  1.8984  -2.7349
-1.3511 1.4162  1.0840  1.7149  -3.4052
-2.1756 1.8142  1.1183  2.1641  -5.5908
0.0536  0.3385  -0.7395 1.1626  -0.0551
-3.5261 6.3136  -0.4962 0.1031  -0.0144
2.4417  -8.2118 -0.1847 -2.0031 1.8257
1.8205  -3.1055 0.3637  -0.3133 0.5899
0.6944  -1.9864 1.5248  1.1395  -2.6648
0.4560  -2.6494 1.6173  -0.2814 -1.0352
3.5899  -2.0255 -0.9064 -1.5161 1.9035
2.9283  -5.3968 -0.3792 -0.9264 2.8115
-0.4419 2.7647  1.1129  2.2078  -1.1310
-5.2984 10.9184 0.8051  2.5757  -3.2583
6.0335  -8.1424 -2.0348 -4.1950 4.7426
4.7931  -5.7763 0.1280  -0.4106 0.6165
-4.6273 6.0598  1.4907  3.2361  -2.3087
-1.9921 1.3864  0.7348  1.2404  -1.4063
5.9351  -11.3505        -0.8003 -4.5518 5.8173
-4.0299 3.7589  0.7372  1.2426  -2.4216
8.1627  -9.3911 -2.1269 -2.5424 3.1807
-3.5319 1.7017  -0.1882 -0.0809 0.7519
1.3610  -2.2161 -0.1399 -2.2786 1.6491
1.9121  -0.8753 -0.4533 -0.0109 -0.8289
1.7697  -4.1776 -0.1469 -1.7794 3.2913
3.2916  -5.3125 -0.2972 -1.0727 1.1121
0.6624  -1.6115 0.5026  1.5091  -1.7608
-0.8913 -0.9629 -0.5065 0.2171  -0.2144
-2.5065 6.7842  0.4857  1.6815  -3.1546
2.2774  -2.8487 -0.1759 -0.4005 0.4355
-0.0262 -4.6551 1.5365  0.8807  -1.3236
-0.7303 0.8960  0.3078  1.0323  -0.9331
8.8657  -12.1028        -4.4338 -6.1690 9.1439
3.9762  -3.6134 -1.0063 -1.1941 1.2281
1.2978  1.4244  0.1596  1.0453  -0.5563
-0.6321 1.6687  -1.0043 -1.6685 2.3727
-3.9882 6.6234  0.6523  2.8332  -3.2718
-1.7805 -1.2488 0.6158  0.0675  -0.2437
0.1321  -1.9746 -0.5640 -1.6886 2.1306
2.4331  -4.8293 -0.4347 -0.4550 -0.4229
-0.5452 2.6910  -1.1148 -0.5015 2.0937
6.8199  -11.4118        -2.8138 -4.9897 7.9727
-5.0544 9.8524  2.6302  4.4964  -5.6632
-0.0609 0.9022  -0.0076 0.6508  -0.1820
3.0659  -5.8549 0.0067  -1.7971 3.1346
-0.5427 2.5268  -0.8800 -0.0346 0.6274
1.3850  -0.1277 -0.7177 -0.1322 0.5164
7.7596  -10.7770        -2.3437 -4.3758 4.4497
-6.1564 6.9874  1.9194  2.5236  -1.9913
-0.8679 2.0718  0.9792  1.3479  -2.0227
-2.1183 2.4703  -0.2180 1.3350  -3.0440
3.7250  -6.6720 0.7396  -1.1707 2.1180
1.4094  -3.7211 -0.6826 -0.8578 -0.5769
-3.2388 5.6595  1.1901  2.5255  -1.3378
6.0934  -5.9170 -0.5807 -1.2579 4.1531
2.1995  -4.0461 -1.2513 -0.9067 2.2585
-3.9263 5.0695  1.2756  2.8706  -1.4160
-3.2086 7.3705  0.3593  2.2531  -3.8860
-0.9476 4.8973  0.2607  0.5964  -0.2568
6.5039  -8.9351 -1.4303 -3.6087 5.3227
-1.9402 1.5538  1.4499  1.0287  -0.4864
1.1752  -2.6518 -0.5773 -0.5569 -0.2366
4.8307  -4.7757 -0.3809 -1.4777 3.9796
-0.2216 -3.3943 -1.1259 -1.8289 3.6822
6.2269  -6.2318 -1.3348 -2.9216 2.6572
-1.4611 2.2876  1.5855  2.3935  -2.4409
-2.7974 7.5987  1.6147  3.0599  -1.5600
-2.5201 3.0825  0.3952  2.0165  -2.7273
-4.8769 5.9483  0.1705  1.9479  -2.5613
0.7528  -3.5887 -1.1140 -1.3360 0.9842
1.4180  -5.4790 -0.9103 -1.7829 2.4091
-3.7836 6.2905  0.8672  2.1641  -4.3104
-6.4294 6.7993  3.0942  4.4414  -4.9947
2.7964  -2.3020 -1.0873 -1.7976 1.4053
2.1305  -5.5995 0.1234  -0.2787 0.9001
3.2141  -1.9886 -1.9555 -2.0607 4.5694
0.0417  -1.0749 -0.6171 -0.9406 0.8307
-3.6155 1.5011  1.6582  2.8512  -3.1365
0.4411  -5.2403 -0.0497 -0.5934 1.0065
3.9769  -4.6987 -0.7445 -1.0918 0.3197
7.3942  -14.0730        -1.8010 -5.2116 6.5826
-2.8255 7.6052  1.0132  3.2237  -2.3707
-3.4882 5.6381  0.7687  1.6916  -1.5964
3.9813  -3.1701 -0.7073 -0.8226 -0.8045
2.3885  -4.1272 -1.6458 -2.4430 3.8837
-1.1488 1.3751  0.2901  -0.3651 0.1248
9.3721  -10.8404        0.0697  -2.2204 1.6148
-0.0009 -2.9970 1.4775  1.1189  -1.2696
2.0524  -2.8742 -1.4830 -0.7827 1.6640
1.6353  -1.0433 -1.9170 -1.9930 1.9826
-0.1091 0.5435  0.8875  1.1916  -2.0790
-2.3466 0.2335  1.8175  3.0318  -5.4033
4.1995  -7.2415 -0.1943 -0.7364 2.4521
-4.2319 8.0788  2.0023  2.9417  -3.9054
4.7669  -5.6566 -0.6997 -2.1532 3.5861
-2.8007 4.8479  1.9148  1.8337  -1.8429
-3.4958 4.1372  1.6496  3.0764  -1.2053
10.9554 -16.4655        -3.2520 -5.6337 7.1968
1.8209  -1.2079 -0.9686 -1.0341 1.0158
-6.4240 6.5679  0.8303  2.1621  -5.6636
-3.1217 8.0054  0.7009  1.4635  -1.5161
-0.6057 -3.1875 1.3305  0.2763  -1.3426
-1.3452 2.0101  0.2364  1.8456  -2.8798
-1.0165 1.5443  0.1029  -0.1599 -0.6660
2.1929  -5.6139 -1.3039 -2.2541 1.6893
0.5193  0.0184  -0.9745 -2.4646 5.6867
-2.0093 0.8657  1.3484  1.5876  -1.0184
-1.1173 4.2948  -0.1689 1.0379  -1.9717
-5.8679 9.6450  1.8804  3.1404  -5.0765
-1.6296 2.3821  -0.7967 0.0352  1.3397
-8.3124 12.5506 1.8018  3.5896  -5.2382
-0.4047 0.0890  -0.4498 -0.4366 1.1793
0.8242  -2.2600 0.4212  -0.9317 -0.4261
-1.0217 2.4818  -1.3076 -0.6776 0.8253
1.8791  -6.5020 1.1430  0.4540  1.8914
-2.5549 3.6143  0.5487  1.8382  -2.0216
3.5083  -8.1159 -2.0798 -3.7204 5.1926
-1.6316 2.2504  1.5323  1.9569  -1.9991
2.2540  -2.6403 -1.3871 -1.9311 3.7833
4.1463  -3.0529 -1.2502 -2.5142 2.0543
-0.8043 5.0510  -0.2911 0.7375  -0.8880
-0.0854 0.4986  0.7148  0.2502  -1.1651
-1.2022 3.2849  0.3322  2.1063  -0.6146
6.5024  -11.4006        -1.0693 -4.0476 7.5643
-0.2549 -0.5840 0.9135  2.2661  -3.3519
4.2980  -3.6877 -0.6806 -1.6452 1.8355
0.7819  -0.9781 -2.3100 -2.7084 4.6079
0.6943  -1.3852 -0.1098 -0.7769 0.1423
-3.3944 7.8273  1.3212  2.8860  -2.7789
-1.9587 1.8048  1.1916  1.8052  -2.7517
2.4778  -3.1157 -1.0765 -2.2450 5.1559
-2.6488 6.4715  0.4248  2.0247  -0.7437
2.0247  2.0500  1.6620  1.7064  -2.2364
0.3304  0.9748  -0.2077 -0.0335 -0.5178
-7.0324 6.2500  2.3331  3.8285  -5.6991
-1.0962 2.8089  -0.2234 0.5215  0.9124
1.9296  0.4876  -1.9192 -2.5042 2.8021
-4.9644 8.8976  1.8530  4.8599  -6.4125
0.0369  -1.2886 0.0988  -0.4228 0.4528
-3.1026 2.1496  -0.1989 -0.5353 1.3098
-0.2506 -1.8437 0.8059  0.6028  -0.1335
-1.0253 -1.2985 0.1269  0.3247  0.2092
-2.7754 4.7970  2.0431  2.8591  -4.5912
-1.2369 0.3633  0.5602  0.4964  0.0701
-2.6057 3.2070  1.2363  1.0995  -0.4391
5.5665  -5.5703 -1.9042 -3.2663 6.8192
1.6541  -2.6446 -0.0534 -0.8017 0.0521
4.1959  -7.6838 -0.2536 -1.7090 2.1894
4.4750  -3.3703 -1.0029 -0.3008 -0.3772
1.9351  -3.2292 0.3428  -0.6790 2.4642
-2.0245 0.0496  1.0228  0.7713  -0.7112
0.0891  -2.3556 0.0832  -0.7232 3.6108
-3.6004 6.4408  -0.2278 1.9931  -2.5449
-2.5694 1.5184  0.5941  -0.3867 0.2188
-1.6994 6.1765  -0.0872 0.3289  -0.3948
-2.4354 7.4260  -0.7629 2.1677  -1.4500
-3.7817 1.3376  0.3465  2.3289  -3.4352
2.2283  -9.1554 -0.5789 -3.2789 2.5399
-0.6381 0.9987  1.0637  0.4461  -2.2920
1.1318  -3.7426 -1.2012 -2.8097 5.4657
-0.2520 -0.0678 1.9079  2.2486  -3.0336
0.9538  0.2189  -0.5210 -0.9839 0.8115
-2.7527 0.9086  0.5049  0.1429  -0.2926
-5.8529 10.5901 1.1394  4.3118  -6.2316
-0.4484 0.5450  -0.3309 0.0480  -0.4421
0.6801  -0.2229 -0.8007 -0.4997 0.5072
4.0088  -4.9993 -1.0232 -1.6730 2.1362
-2.4653 2.6370  1.5793  1.3559  0.7131
-1.3889 0.8551  1.3226  1.9140  -2.5018
-4.8371 9.9871  2.1762  5.0301  -5.5712
-0.8344 -0.8932 -0.1877 -0.6028 0.2122
-1.4873 3.2809  1.9150  3.0999  -4.3617
0.9383  -1.9200 -0.8226 -1.0388 1.5804
-1.2092 1.4926  1.3349  1.0536  -1.4051
0.9896  0.8891  -0.7783 0.3045  -1.3052
1.3604  -0.8079 -1.5889 -0.7847 2.7741
0.7025  -5.8638 0.6466  -0.2337 2.4884
0.6970  -0.8652 0.0102  -1.6004 -0.5002
5.7655  -7.4819 -1.0959 -3.2618 2.7242
-3.4201 1.3707  2.1443  2.3396  -2.3657
0.7011  1.7600  -0.3424 0.3037  1.6642
-0.7500 1.0284  0.9179  1.1967  -1.2709
5.3712  -9.1492 -1.0968 -3.5726 4.7545
1.5386  -4.8055 -0.1583 -0.7320 0.3804
-2.4328 2.6767  -0.3213 0.3442  -0.3561
-0.3901 1.4595  -0.1638 0.9571  -3.1319
-1.3738 -0.0280 1.8109  1.0209  -1.5689
0.4683  2.7910  -0.9047 -0.7820 -0.2321
-0.3070 3.1636  1.5850  2.4787  -4.1757
4.7064  -7.1976 -2.4871 -4.8361 6.4102
-0.9306 2.6820  1.9789  3.3401  -4.1570
1.9972  -0.8097 -1.3831 -1.2292 1.0024
0.0099  1.9999  0.9978  1.9558  -1.5070
-1.5888 -0.1469 -1.0275 -1.1981 1.6268
-1.5325 -0.8621 -0.4837 -0.6594 1.2480
-5.0213 5.0834  1.2146  3.1429  -4.2601
2.7634  -0.9365 1.3224  -0.0853 -0.8989
1.6889  -3.8696 -1.3459 -2.0021 2.1166
2.2655  -1.8918 0.3722  -0.0066 -2.5652
-0.0312 -0.4627 1.1405  2.0969  -4.8081
3.6773  -6.7293 -1.1911 -1.0463 -0.4469
1.4374  1.4268  -1.0956 -0.1648 1.8844
-1.2262 -0.5978 1.8358  1.7184  -1.9200
-0.5865 2.7082  -1.1868 -1.5281 2.2950
2.8870  -4.3607 -0.5535 -2.0769 1.0762
-5.3341 6.5338  1.5545  2.7122  -3.9387
1.6197  -0.3079 -0.0714 -0.4888 -0.5863
1.8215  -4.5874 -1.9544 -4.4826 5.6419
-4.4787 8.2032  1.3784  2.5382  -5.1193
2.3218  -5.5573 1.5551  0.4997  0.8783
-0.8258 0.2189  0.3514  0.3542  0.6412
2.9935  -3.8253 -2.1226 -2.8118 3.0196
-0.6865 -1.7104 -1.1950 -0.4829 0.3560
1.5775  -1.1186 -2.0540 -1.8648 1.7027
-2.7031 6.0237  0.6385  1.3672  -3.2090
1.2631  -6.2663 0.0967  -1.2924 1.4147
1.3955  -3.0767 1.0874  -0.0280 0.1073
-3.1128 1.9257  0.1802  0.7565  -0.3585
-1.9297 1.6520  -0.5594 -0.3853 0.2005
2.2869  -3.3861 -0.2198 -1.8285 4.2803
1.9902  -3.0210 0.4910  -0.6755 2.5764
-7.9993 11.5388 1.4684  3.8573  -4.2517
1.0284  0.6114  -0.0722 0.1417  0.8738
-5.3215 5.1147  3.8706  5.9964  -8.8786
-1.3141 1.9241  -0.9026 -1.5718 2.9738
-1.1654 1.6490  2.0537  1.6658  -3.0718
-2.5363 7.1910  -2.0830 -0.6164 -0.6177
0.0283  -1.4731 -0.0150 -0.1940 1.0935
-3.1996 4.8306  0.8785  2.5682  -1.2966
-5.5790 8.2738  1.4081  3.5160  -5.4127
6.2211  -9.9576 -0.3960 -1.6582 2.9413
1.7744  -3.8253 0.7164  0.2880  -1.8207
-0.5211 -0.4820 0.8276  -1.1217 1.1512
4.4035  -0.8479 -1.3894 -0.7242 -0.9468
-0.0294 -3.0350 1.3165  0.0143  -1.4745
3.6216  -6.8822 -1.1207 -2.2548 2.2200
1.1042  -4.5450 -0.0302 -0.3658 -1.1991
-5.5356 4.4154  2.3293  4.1668  -5.9136
0.8741  1.6597  -0.9244 -1.5805 2.5038
-3.4257 2.1273  0.2655  1.5741  -0.5057
-0.7349 3.5082  -0.8584 0.6730  -1.4210
1.0195  -0.4298 -1.4931 -1.5535 2.9865
-2.1759 2.1547  0.1645  1.3075  -2.6064
-3.1435 4.4112  1.4607  2.3837  -3.5276
-0.8096 1.3830  0.5967  1.2382  0.9833
3.7654  -4.6968 -0.0611 -0.7084 -0.9132
-3.6117 4.7453  0.9366  2.2614  -3.4493
1.0851  -1.5696 0.2951  0.0030  1.2161
-0.6776 2.3124  1.2315  1.1153  0.2607
-4.3884 4.9587  0.8444  0.5806  -0.1690
-2.4204 1.9633  0.3592  1.9735  -3.7951
2.4325  -3.6479 -1.8343 -4.1439 6.0865
-2.5798 2.7942  2.1202  2.4253  -4.1786
0.4987  -0.3833 0.1481  1.0044  -1.4376
2.4188  -1.7320 -1.1028 -1.4884 1.7377
1.2069  -2.1624 -0.2533 -0.1763 1.4197
1.0103  -0.5042 -1.2654 -0.6791 1.2971
-5.3279 6.6307  0.9756  1.8788  -2.9995
0.0201  -0.4142 1.0463  0.2040  1.0132
0.5675  -0.8710 -1.2343 -1.5649 2.1397
-0.0049 0.4434  -0.0226 0.0230  -2.0480
-1.8611 0.9730  0.6600  0.5799  0.0093
1.1995  0.6333  -1.0861 -1.3256 2.6343
-5.0387 6.2856  2.3157  1.9877  -1.6393
0.5347  0.6598  0.2902  0.0141  -2.0342
3.1707  -3.8564 -1.3020 -1.0781 2.3866
4.1320  -4.5163 0.3839  -0.6846 2.4678
1.2084  -6.9063 -0.6728 -1.5891 1.0905
1.0456  -1.0739 -2.8251 -2.6672 2.0383
-1.6818 6.2501  1.5739  2.4068  -3.3156
2.3977  -2.9538 0.4584  -1.0025 -0.8353
-1.6291 1.0283  2.1175  2.4215  -3.7742
0.9254  -0.8004 0.9648  1.2191  -1.4413
-0.3294 2.2633  0.5500  0.8577  -0.4806
1.9973  -3.1258 -0.0669 -1.4692 1.0806
0.1529  -3.5596 -0.2301 -0.9151 2.2623
1.6658  -0.8589 -0.3709 -0.3768 1.3323
0.0635  1.2631  0.3665  -0.2541 -1.1426
-0.2930 -0.3675 -0.4990 -1.4417 2.7214
0.1149  -1.5856 0.0460  -0.9154 2.0065
-0.1114 -0.9538 -1.2421 -0.7076 -0.7488
1.4790  1.9474  -0.2649 -0.5567 1.8457
-3.5335 2.2938  0.2313  -0.4002 1.2069
2.4116  -8.1491 0.4523  -1.5133 2.7635
-1.0877 2.8016  0.1658  0.0247  1.4885
-4.5574 4.6049  3.8480  5.2207  -9.1368
-1.4250 1.7232  1.6756  1.6814  -1.2566
-2.5590 1.3269  2.3713  3.3840  -4.7952
-2.4845 4.4376  1.5231  1.4631  -1.5999
-2.3855 3.8283  -0.9494 1.8060  -1.9537
-3.4006 5.2518  0.8775  2.1126  -0.2316
-6.4845 6.7788  3.1311  3.0115  -2.3446
-1.8371 3.3444  -0.1640 0.1142  0.5490
4.4212  -8.8889 -1.2941 -4.0462 5.1664
-1.4986 2.5373  1.7402  2.6883  -1.9099
6.1853  -10.5880        -3.0991 -4.5559 6.3907
2.7917  -9.6873 -0.3244 -2.9311 5.2448
-2.5601 3.1308  -0.2362 1.2574  -2.2165
2.1090  -1.3587 -0.2562 -0.1940 0.3315
-7.9030 5.9564  2.4413  2.7535  -4.9522
-1.7680 0.8072  0.8377  0.0124  -0.7823
-3.8034 4.6495  1.9140  3.3735  -4.5700
3.1806  -6.9301 -0.6940 -1.4584 0.9618
5.3085  -6.2355 -2.0561 -3.7699 3.9614
-2.8050 6.2115  1.8052  1.5156  -1.9649
2.9622  -2.5537 -2.6018 -2.7109 3.2079
-3.4164 3.6153  0.7359  2.1147  -1.7449
2.7544  -2.4580 -2.0946 -3.0619 3.9487
0.8377  3.2049  -1.5827 -0.8128 1.1449
-1.6414 4.4034  1.1521  1.6793  -1.1510
2.6650  -5.7303 -0.0708 -0.3415 -1.1463
4.5521  -6.2040 -1.2070 -1.7241 2.6764
-2.7532 4.3948  1.6562  3.5559  -4.5816
1.5907  0.4730  -1.3195 -1.7760 2.4554
-5.9458 8.6968  1.5538  1.9234  -2.6941
-0.2392 1.0914  -0.1339 1.3005  -0.7395
0.8182  -5.0765 0.2655  0.2176  -1.6327
1.4279  -0.3715 -1.2476 -0.7752 -0.5333
1.4221  -2.4230 -0.9836 0.4447  0.6264
1.3218  0.7515  -0.2064 0.1093  -1.1324
-4.5121 1.8243  0.9459  0.9744  -3.8292
2.4328  -6.1374 -1.3506 -3.4509 5.0334
3.1387  -2.9956 -1.2000 -2.1184 2.5641
-1.9716 1.2819  2.3125  1.7000  -3.7189
7.0330  -8.1969 -2.9199 -4.9950 5.6828
2.8558  -5.5715 -3.2185 -3.8572 4.9658
4.0579  -8.4582 0.5170  -1.7127 2.4650
3.6967  -5.4928 -1.0465 -3.0799 4.5874
-1.8065 3.8847  0.9908  2.8901  -3.8777
1.8907  -2.5343 0.2485  0.4092  -0.5298
-1.7082 -0.1467 0.5289  -0.9622 1.4338
-0.9279 1.4306  0.7449  1.2421  -3.5381
-2.7380 5.9402  -0.1098 1.5001  0.0467
-0.8427 -1.8608 -2.6118 -2.6705 3.2844
-6.2282 6.4841  2.0029  2.8710  -1.4164
1.7858  -4.3295 -0.3203 -1.9384 2.3125
2.3520  -4.3172 -0.2004 -1.0887 2.8567
-1.1218 3.1746  0.9503  0.8095  1.2401
0.4990  -1.3759 -0.4689 -1.6395 2.5596
1.3870  -2.2467 -0.5630 -0.5183 3.0087
-6.9203 12.3204 2.1567  4.4289  -5.5182
-2.1673 2.7578  1.1920  2.2982  -2.8850
4.8158  -7.0482 -2.2923 -3.4666 5.0831
0.9174  -0.5208 0.2257  -0.1480 2.2006
4.3837  -7.5189 -1.6224 -2.3327 2.6330
0.0906  1.9474  -0.7691 -0.6307 0.5697
6.6309  -10.0662        -1.5508 -2.7188 4.5879
1.9518  -6.1988 2.3182  1.6461  -2.3812
-4.5852 5.7145  0.9413  2.5996  -4.3838
1.7302  -7.3070 -0.2016 -3.5814 5.8422
2.1406  1.5324  -1.2965 -0.7229 -0.0491
3.1573  -0.2692 -1.0890 -0.4652 -2.1168
2.9480  0.0255  -0.4988 -0.1578 -1.8239
-0.1823 -1.5404 1.2577  1.9435  -2.3578
-0.3582 -2.7821 -0.1261 -0.4077 1.8037
3.7031  -6.1406 -2.6904 -4.4087 7.0504
2.7979  -5.4939 -0.2104 -2.1564 2.4001
0.0274  2.3126  1.3147  1.8148  -3.4421
-0.1981 2.6265  -0.7726 -1.1996 0.9483
4.9647  -6.0867 -1.4578 -1.9534 3.3148
-1.6582 4.3896  0.3169  1.5368  -3.6350
6.3647  -6.6807 -1.6800 -4.1950 5.0344
3.7685  -5.7127 -1.6924 -2.4047 2.7555
-1.4388 0.4349  2.3168  1.6359  -2.3481
3.8615  -3.7875 -1.5136 -2.1442 4.1163
3.8858  -3.1549 -1.0421 -2.4348 3.8075
-4.1436 5.5347  1.0034  1.9780  -4.9429
2.6943  -5.4354 -0.0471 -2.3428 4.5455
1.4717  -1.2505 -0.0092 -1.1010 3.4633
-0.0400 1.7105  -0.0426 0.5201  0.2547
0.1415  -1.3777 -1.1768 -1.3538 0.0109
-0.7942 1.3113  0.1707  -0.0988 0.2253
1.3180  -4.4120 -0.0904 -1.3660 2.7406
-5.6715 11.3544 1.1730  4.4671  -5.9158
-1.6872 0.2346  1.0514  1.2857  -1.2139
3.4171  -5.7811 -0.2038 -2.4315 4.7657
0.6964  -1.3960 0.7736  1.4795  -1.9736
2.0506  -4.9063 -1.0462 -2.1583 1.2209
-0.3223 0.2401  -1.1846 -0.0314 -0.3613
-0.2583 1.5322  1.6105  1.5633  -0.8991
4.6436  -4.6670 -1.2515 -0.3451 -0.1194
1.4725  -2.6864 -1.0455 -1.5077 3.1656
3.5437  -4.7280 -0.6200 -1.3102 0.6853
-1.7781 3.0830  0.9472  2.0273  -2.3273
-0.0357 -0.5888 0.1436  0.5063  0.7888
-4.1541 8.7237  1.6025  4.2311  -9.0448
-3.3064 6.3172  1.3901  3.3470  -4.8279
7.0372  -10.8244        -2.6716 -4.7988 5.6709
-2.1793 6.3053  0.2809  1.2591  -1.3597
3.2274  -2.1910 0.2758  -0.6608 -1.0758
-1.7615 5.8289  0.7361  2.2759  -6.4284
5.9726  -8.7943 -0.2959 -1.7675 3.3453
0.7957  -1.5319 0.2574  0.2346  -0.5475
-0.1487 1.5999  -0.4139 -0.9419 -0.3873
-3.9510 5.5050  1.9306  2.0551  -1.9425
-2.6899 0.9789  0.7670  1.0304  -0.8338
0.2675  2.6956  0.4764  0.9488  -0.6613
-1.6820 1.8711  -2.4514 -1.5292 -0.3872
-2.1183 4.3532  -0.5350 1.0098  -1.8902
-1.7936 -1.4572 0.8003  1.0583  -3.1406
-2.9398 2.6929  1.4212  2.9018  -4.4707
-5.0948 2.9695  2.8669  3.4284  -5.2065
0.9897  0.0744  0.7246  0.9649  -1.8923
-6.5541 10.7304 1.7980  3.9884  -3.3862
2.7403  -1.8488 -1.9877 -2.8153 3.2261
2.2193  -3.5746 0.6020  -0.4752 2.4574
0.1754  -2.8670 0.3430  -0.8787 0.4560
2.3154  -2.5510 -1.4482 -1.2981 0.0493
3.2318  -5.2344 -1.3983 -2.7933 2.6369
0.9560  -0.5120 1.0164  0.3452  -0.2854
-3.1592 6.6218  -0.5975 1.1765  -0.5255
-0.6152 -0.2588 -1.7691 -1.7328 1.6596
0.7520  -4.3216 -1.8464 -3.5913 3.0951
3.6395  -3.2115 -2.0896 -2.2456 2.2591
1.9777  -4.8271 -1.9796 -2.2893 2.6421
-1.6100 2.3296  0.4164  1.7523  -1.4871
4.3222  -6.7567 -0.9513 -3.0943 2.6991
0.1439  -1.3563 -0.7663 0.3937  0.6731
-2.5672 0.1510  2.9442  2.6318  -3.6479
2.6097  -4.9928 -0.6820 -0.9372 -0.1383
1.2253  -1.1527 -0.3576 -0.8005 -1.6136
0.0311  0.4687  -0.7612 -0.0090 -1.3867
-4.6172 11.5288 1.3413  4.5076  -5.6898
0.2222  0.4392  0.4615  1.2932  -3.3910
-0.7927 -0.8739 -0.0354 -0.2892 2.1994
2.3018  -5.1864 -0.0870 -1.4751 1.5757
3.7639  -3.3039 -1.8915 -3.2006 4.4067
4.5222  -7.4829 -0.8098 -3.2297 4.3803
-4.5555 6.8274  2.0024  3.2904  -3.6406
4.0680  -6.2022 -1.8204 -3.0427 4.2407
-3.2241 2.3327  1.5852  2.6966  -4.2215
0.6638  -0.2983 0.6415  -0.2151 0.0573
3.7566  -6.8756 1.0693  -1.8250 -1.2442
-2.1576 1.8917  1.0894  1.7118  -1.8717
1.2823  -2.9428 0.5334  0.5125  -0.7212
-3.8572 3.1019  0.9445  2.1476  -2.4861
-2.3984 3.5951  -0.2116 0.1359  -0.8244
-0.5136 0.6802  -0.8074 -0.6181 1.2086
-2.0863 0.8885  0.1794  1.0922  -1.4521
-4.7461 6.5157  1.2823  2.5149  -6.2689
0.8956  -2.0987 0.1467  1.1658  -1.2664
-3.9440 9.9478  0.3258  3.0959  -4.2235
-0.8341 -1.4246 0.1023  1.2871  -1.6048
-1.4441 3.5443  -0.2409 0.4931  0.8404
-1.3084 6.1448  -0.4484 0.6216  -0.3138
1.3265  -2.7630 0.5565  0.3672  1.1403
4.1893  -6.1166 0.4811  -1.3374 2.0520
-0.0601 -2.8461 -1.9807 -2.1342 2.4511
3.3924  -6.3489 -0.1915 -1.6935 0.8942
-0.0858 -0.8313 -2.5416 -2.2609 2.2138
-5.9214 11.8718 1.9948  4.5610  -5.1581
2.6340  -3.1082 -0.1013 -0.8315 3.6681
1.3892  -1.8009 -2.3055 -2.0105 1.1073
-0.7210 0.5836  -0.7383 -0.0455 -1.6185
-2.1856 6.2562  0.1701  0.7860  0.0613
-0.7118 0.6192  2.5533  1.7826  -1.7038
2.7175  -4.0163 -1.2237 -1.7420 1.2366
-0.8133 -1.5187 0.1551  -0.8130 0.1070
2.4604  -5.9376 -1.5481 -3.7544 6.0123
-3.3392 5.7726  0.7276  3.7387  -3.9142
-3.2152 2.3742  1.6726  0.8694  -2.0561
3.1510  -6.9719 0.5539  -0.8020 0.3466
-0.5456 -0.4719 1.7703  1.8541  -1.9634
0.5275  0.2730  -1.0278 -2.0746 3.0779
-2.8457 2.7710  -0.4251 -0.3596 0.8975
1.3111  -3.6278 -0.5127 -1.2198 0.5517
1.4213  -0.6704 -1.0621 -1.9984 2.5886
-5.4722 7.4295  1.9197  2.4542  -4.5572
1.2953  0.8532  -0.7045 0.6307  -1.7902
0.0297  -0.9493 1.4910  2.0898  -2.7303
2.0140  -2.2594 -1.2979 -1.7084 1.8942
-4.6269 9.8057  1.4195  4.2244  -8.4216
-4.1781 4.0296  1.4570  1.7492  -3.2083
2.5728  -4.6295 -2.1099 -2.3168 1.8933
-2.7968 0.7235  0.9058  -0.1550 -2.5164
6.5238  -8.0735 -1.9470 -3.3395 3.0841
2.1213  -5.6364 0.4784  -1.6707 2.6024
-1.3433 4.0275  -1.2054 -0.0011 0.5250
-8.0828 12.0178 3.2507  6.4886  -5.9435
3.0338  -3.4058 -1.6172 -1.2993 2.1169
3.4049  -9.2905 -0.9938 -1.8175 1.3236
-2.4063 1.6628  0.8156  2.2971  -4.1419
-0.6025 0.4010  0.4911  -0.2548 0.7187
-1.1477 1.0454  -0.9580 -1.5657 3.4344
5.2249  -9.6603 -1.5874 -3.9957 4.0745
2.8807  0.2658  -1.0546 -1.7321 1.8452
-8.4578 12.6606 2.6701  4.9700  -7.6637
4.9783  -9.5739 -0.7791 -2.3461 3.8439
6.4683  -10.4894        -1.4213 -3.4043 2.8261
2.3256  -3.3257 -1.1503 -1.4770 -1.0420
3.6607  -8.0992 -0.0550 -0.4182 0.5453
4.3021  -6.2243 -1.3940 -4.0720 5.2664
-7.9782 10.2074 1.1883  3.5844  -5.5564
-0.1653 4.7697  1.6523  3.2431  -4.9343
0.1665  -1.8012 0.6659  0.4448  0.2692
1.4726  -3.3347 -0.3219 -0.1499 -0.2108
-1.2748 5.3154  -0.0979 0.3254  -1.6394
-2.4452 1.1219  2.9136  3.2240  -2.0735
-1.1050 -0.1119 -0.2033 -0.7446 2.4250
4.8794  -7.7917 -1.0240 -3.8370 4.9727
-6.1075 3.1999  1.5886  2.4181  -1.6461
-3.1626 4.4883  0.5509  0.6955  2.0684
1.6167  -0.2019 1.4005  1.4915  -2.5323
2.1923  -2.5992 -0.7342 -0.9454 1.0031
-1.1264 1.9477  -0.4922 -0.0597 2.0356
-0.2284 3.0262  -0.2028 0.7030  -2.3450
-1.7288 1.6960  1.3881  1.9647  -3.5489
2.0314  1.3860  -1.7129 -1.9066 0.0628
-0.9257 0.2739  0.8162  -0.7747 2.9730
-1.0745 3.5989  -0.8686 0.1256  1.7887
-6.3301 11.4820 2.4206  3.7607  -5.6078
-0.4986 0.2132  -0.3963 -1.0557 -0.6274
-0.9334 3.0877  0.0220  1.6523  -3.8115
-2.6068 1.0575  1.7059  1.8910  -2.4829
1.2264  -0.9327 1.0663  1.0346  -2.2655
2.5350  -2.1747 -1.4759 -1.3672 1.1052
1.6009  -3.2114 0.8882  -0.1452 1.8597
-2.1875 2.7633  0.4488  0.2062  -1.4065
-0.8651 -2.6487 -0.3010 -1.4400 3.9000
-0.4244 -0.1807 -0.1834 -0.0365 1.6608
1.3186  -1.0602 0.5003  0.5114  -1.2434
-0.3500 1.1176  -0.3811 -0.6738 0.6358
-1.2716 0.4286  -0.0361 -1.2806 -0.2259
6.9060  -7.8254 -0.8824 -2.2066 4.7658
-0.6584 1.9852  -0.6443 -0.2338 0.5299
0.0077  -0.6128 1.4734  0.5084  -0.6492
-0.4387 0.6822  0.3960  0.1954  -2.2630
-0.9780 5.0339  -0.3259 0.2075  -0.2346
-0.2206 -1.3239 0.3311  -0.5148 -0.1482
-3.6361 2.9959  0.3973  0.4368  -0.7203
-4.2345 5.9233  2.2327  3.6857  -6.1307
-1.7188 2.1042  0.7430  0.4950  -0.3405
-1.0372 0.8348  0.5796  0.3472  1.2077
2.5179  -1.3440 -0.6371 -1.9856 1.8597
0.3421  -1.5694 -0.1779 -1.4040 2.0237
3.8683  -4.3063 -0.1544 -1.6941 1.2262
-1.0773 0.4963  -0.5461 -0.1514 1.3194
-2.2152 1.5285  1.9824  2.3946  0.0882
0.9276  -1.6392 -0.5665 0.0482  -0.9769
-3.6864 5.2658  0.9066  1.9960  -4.0445
2.7512  -2.6692 -0.9813 -1.1758 2.0193
-1.0182 4.3827  0.2170  1.1488  -1.2422
1.2819  -1.5210 0.7952  0.4454  -0.6690
5.0768  -7.0079 -1.9211 -2.4781 1.9684
0.8055  3.6161  -0.0011 0.3031  -0.4246
2.6447  -3.8767 -1.8247 -3.4797 5.6033
-2.3736 0.7837  -0.2883 2.0323  -2.0036
1.1632  0.0035  -1.1182 -1.0698 1.0181
0.7440  2.0702  -2.0378 -0.8696 1.6790
-1.4991 6.6820  -0.1417 0.7281  0.9622
-1.2057 0.2931  1.0159  0.6814  -2.2092
-6.4827 8.3793  1.7120  2.5032  -2.9053
-0.3037 1.7844  0.8558  1.9045  -4.5921
0.5505  -0.7215 1.1582  1.8447  -1.8448
2.5816  -2.5582 0.5305  -1.0118 -0.1969
1.8865  -0.4933 -1.5884 -1.5218 0.8291
1.9447  -3.0666 -1.0665 -3.0092 5.1489
4.3891  -8.2299 -0.9145 -1.9143 4.1592
0.7655  -1.2592 0.5735  -0.1522 0.5505
-0.1125 -2.1050 -0.0845 -1.9271 3.8274
-0.9022 -0.4324 1.3981  1.6884  -2.8938
2.5330  -1.4581 -2.0449 -2.7699 1.7318
5.2067  -7.2575 -0.1966 -1.4960 2.1520
-0.4195 2.6017  0.7763  2.3711  -4.5569
0.1049  -0.8710 -0.2552 -1.0042 0.6138
-4.5644 10.0531 2.4562  3.8200  -5.0136
-0.0232 -3.1613 0.7403  1.5620  -3.5788
0.4379  -1.3106 -0.4387 -2.2995 4.3128
4.7101  -4.0917 -0.0213 -0.8746 -0.8381
2.4048  -2.3507 0.2445  -1.5709 4.5679
-1.8983 1.1304  1.0434  0.5309  -0.6236
-2.5006 2.8805  -0.1168 0.3277  -0.2247
2.3297  -4.6569 0.1195  -1.8350 0.8904
-4.8134 4.3428  1.0215  2.0616  -2.8326
0.6595  -0.6996 0.9112  0.4613  1.8440
1.5065  -2.2374 -0.0299 -1.6402 1.2688
-3.6816 2.9509  1.2882  2.6380  -4.8715
-0.2237 0.1941  -1.2094 -1.9915 1.5591
6.9916  -9.6077 -1.5070 -4.3342 4.7089
1.0783  -1.8820 -0.0151 0.3277  0.5070
3.4410  -4.3181 -1.6668 -2.3315 1.5119
-0.9219 -0.7669 0.1773  -0.4572 -0.9994
6.0007  -6.9698 -0.2044 -1.6957 3.1683
1.0407  -0.9041 0.3694  0.3697  -0.1981
-3.9329 3.5304  0.8971  1.8953  -2.6508
-0.4359 -2.8098 -0.0018 -1.4095 2.7896
0.3916  3.2710  0.2545  1.4640  -1.6594
-3.8198 5.1281  1.2289  2.3240  -3.4763
0.8325  -3.4606 0.3288  0.0546  1.3886
-0.1564 -0.9234 1.0912  0.3676  -0.4684
0.8372  -1.6519 -0.7641 -0.2267 0.3154
2.2642  -1.7930 -0.1664 0.2842  -1.1432
3.8134  -9.4177 -0.8157 -3.0487 4.9866
5.4519  -4.1491 -3.3928 -4.7594 4.9865
-2.9751 5.3609  1.9602  3.0164  -4.9825
-1.1798 0.1499  -1.5471 -1.3415 0.0001
-3.5019 5.2306  2.4043  3.1887  -2.8178
-0.9813 4.2813  -0.2932 0.4670  -2.1904
3.5703  -4.7776 -0.7091 -1.5936 2.0008
-3.1412 5.1110  2.3215  2.1657  -2.9137
-1.1143 1.9752  1.0319  1.2745  -1.1791
1.7676  -2.7194 -0.5389 -1.4066 1.7592
-4.5118 5.8754  2.5293  4.7082  -8.1098
-6.2134 5.0020  2.4552  1.6599  -0.1272
0.3130  0.1272  2.3570  2.9427  -3.7370
-0.0349 -1.5411 -0.1373 1.3618  -2.1665
-1.5827 1.4848  0.4282  1.2521  -0.5215
-1.0051 2.3318  1.4136  1.9315  -1.9870
0.4812  -0.3744 0.0141  -0.7802 0.2146
8.2769  -8.1284 -2.6704 -4.5749 7.3837
-2.5291 4.4316  -0.0864 1.1593  -1.3398
-4.0542 -0.6460 2.8662  2.6540  -4.5292
-4.1846 8.0843  -0.0841 1.3395  -1.0855
1.6114  -1.7554 -2.2015 -1.8913 2.3076
0.7500  6.4473  -0.1970 0.2015  -1.8559
2.9075  -0.4143 -0.1557 -1.1782 0.9255
-0.1162 1.6909  0.7385  1.4724  -0.9181
-4.0836 8.1884  1.8959  3.7037  -5.3338
-4.8360 4.5661  0.8066  1.5413  -2.4692
-4.1306 2.5032  1.5889  2.9566  -3.5835
8.1133  -12.7792        -0.9032 -3.4984 4.6505
-1.3875 3.5428  1.0832  1.0368  0.0955
3.0509  -0.8213 0.3035  -0.1875 0.2255
1.7073  0.2526  -0.3606 0.5395  -1.2317
-3.1835 2.7194  0.0355  0.0910  -0.0062
-0.3708 -0.9810 -0.5642 -2.1434 4.0630
2.9654  -2.1586 -0.4810 -0.4497 1.0269
-0.4879 -1.4838 1.7429  1.6105  -1.4077
-3.3535 5.5265  -0.6616 0.3119  -1.0363
-1.5250 1.9402  0.6854  1.0516  -2.2613
0.4142  0.8524  0.6221  0.0462  0.1560
-2.8436 4.3885  1.6044  2.9975  -4.0997
1.1529  0.2494  -0.0046 -0.3854 -0.6404
1.7649  -5.4294 -0.4163 -2.0155 3.3946
4.0789  -8.3463 -2.1387 -2.5826 4.0544
-2.0499 4.6380  0.0304  0.5644  -0.9536
1.4089  -3.2540 -0.5697 -1.0379 2.7083
-5.0563 6.1823  2.0588  2.2840  -5.2122
4.7855  -5.4512 -2.4178 -2.3625 1.4070
-0.6616 3.9320  -0.1301 1.3092  -2.8866
-2.9291 0.7375  0.0285  2.2714  -1.8921
4.3647  -7.9656 -1.3436 -2.8267 4.6908
0.8558  2.4956  0.4022  0.9877  -1.0832
3.1508  -6.8345 -2.1913 -3.7679 4.1451
-4.1366 8.4985  0.3657  1.1420  -2.6886
2.5286  -4.8863 -0.5889 -2.8657 3.7337
-0.4493 0.6592  0.6429  1.4538  -2.8742
4.8455  -4.4094 -1.4178 -3.7221 4.9565
0.0966  -0.8536 -0.6653 -0.9771 2.1661
3.5363  0.7172  -1.3609 -1.2501 2.6133
-0.4718 1.4523  -1.4994 -1.1497 1.1040
-0.7564 2.6395  -1.7832 0.4857  -0.4488
2.1252  -4.1168 -1.0497 -2.1445 0.5425
2.2860  -4.2249 -0.0247 0.0856  -1.8549
0.7800  -2.3649 0.8635  0.3060  -0.2979
-0.8543 1.5722  1.5120  0.6441  0.4425
-0.8504 -0.2652 -0.4507 0.3112  0.0996
2.1497  -2.1535 -0.8794 -1.8805 3.7583
8.0212  -11.8125        -3.0712 -5.1939 6.9882
-3.4407 6.5674  0.2504  1.2554  0.5328
-1.0867 3.7113  0.9452  0.1984  0.4439
0.4987  -1.7316 1.0791  1.3530  -1.2632
3.2090  -5.1357 0.1448  -1.6430 3.4061
-3.2454 1.4346  0.1627  0.7122  -1.3070
0.4362  -0.1811 -0.1523 -0.7217 0.1190
1.4120  -0.9067 -0.7292 -1.7098 2.3084
0.4957  -0.6907 -0.5399 -0.4158 0.7852
-2.0281 1.4057  0.2679  -0.7705 -0.3647
1.7280  -6.8546 -0.1632 -1.4443 1.9908
-1.2513 1.1656  1.6383  1.5250  -2.6078
-0.6653 -2.7031 2.0970  -0.0638 0.0673
-1.9312 3.0174  1.8645  1.1209  -2.8798
-2.8324 4.3564  -0.0993 -0.9690 0.7127
3.9067  -2.1350 -1.0377 -0.2247 1.6479
1.1912  0.9120  -1.3171 -1.3969 2.6317
3.6925  -4.8497 -1.6524 -3.8231 4.7923
-0.0435 0.5294  -0.3786 -0.6046 1.8427
0.7823  -1.7107 -1.4248 -3.5740 4.1303
-2.5526 4.6991  0.7101  2.2850  -3.4423
2.8685  -1.1042 -0.5764 -0.2897 0.9526
3.9270  -0.8077 -0.7865 -2.2324 1.2410
0.2483  -1.2365 -2.1163 -2.0341 1.2247
-2.4351 1.5126  0.2747  0.8518  -0.0586
-1.1336 0.1098  1.7401  1.2342  -1.1653
-0.5390 0.3690  -0.5347 0.2807  -0.0332
1.0920  -2.4216 -1.5787 -2.5556 3.1019
-1.2918 4.2209  -0.1070 1.7269  -1.5617
1.3327  2.0090  -0.8680 1.9648  -1.9448
-3.4443 6.2616  0.6130  1.8521  -2.9056
-1.3843 -0.5164 0.0370  -0.1509 0.4819
-0.7592 -0.5234 -2.3701 -1.5803 1.2783
3.9396  -6.4083 -2.0666 -3.2980 3.6274
-1.2246 5.0960  -0.5467 0.6168  -0.8260
2.2896  -3.8518 -0.1512 -0.3078 -0.7384
-0.0831 0.8031  -0.7781 -1.6870 1.3216
-2.0883 3.1215  1.0017  1.8514  -2.0392
-4.8994 6.7954  1.0158  2.3668  -3.5812
-4.4993 3.6469  1.2854  3.4464  -5.9517
4.3024  -3.4719 -0.7177 -1.9406 2.6607
-1.2480 2.7789  1.4896  2.7025  -2.9768
-0.9320 -1.0580 -0.8658 -1.0669 0.8660
5.8385  -7.9059 -0.9537 -1.7127 3.2798
4.0587  -6.1891 -2.8155 -3.4818 2.2780
0.9687  -0.8483 -1.1078 -0.3328 -0.6960
6.5031  -7.6789 -2.5722 -3.7650 4.3303
6.3138  -8.7044 -1.7675 -2.5127 2.5024
1.8289  -1.7638 -1.4238 -1.7681 1.1774
-3.0534 2.7616  0.6709  1.3916  -2.0347
-7.5850 10.8458 3.2218  5.1745  -7.4476
1.0261  -2.1299 -1.4475 -2.1233 3.2156
-1.3944 2.5718  0.0223  0.0494  -0.2188
5.1541  -6.9569 -2.2854 -2.9737 6.6376
-1.1577 1.5190  2.3269  0.9214  -1.3229
-1.3410 3.1637  2.2299  3.0369  -3.1420
5.4953  -7.9842 -1.3238 -3.1348 3.1328
-2.2605 5.8023  -1.0548 0.5384  -2.0893
1.7353  -4.7737 -0.5759 -2.5550 1.9189
3.0113  -3.5486 -1.3825 -3.2572 5.9398
2.5200  -0.4647 -3.5612 -4.6624 6.8388
-2.7964 3.8201  0.0549  0.9761  0.1069
3.8733  -6.5222 -2.3731 -3.8089 3.7410
-0.8881 -1.3091 0.0595  -0.7869 3.0013
2.2404  -1.9227 -1.0193 -0.6838 1.7027
2.7854  0.4223  -1.9631 -2.5038 4.3282
-0.8210 -0.1301 -0.3166 -0.6521 1.7253
-5.7259 9.1344  1.2498  3.5640  -5.7613
-2.8908 5.8725  1.5823  2.3444  -3.9172
0.9484  -1.5613 -2.0701 -2.2075 3.7867
-2.3363 3.6600  0.1062  0.8222  -1.5401
-0.7801 3.0506  -0.8437 -0.5998 1.3247
1.1956  0.9001  -2.0911 -2.2805 3.5145
-1.8265 3.0710  -0.2533 -0.5836 1.3100
3.4695  -3.9840 -1.3818 -2.4135 4.0693
-1.0885 5.6686  2.2618  3.1784  -6.2382
-1.5756 1.8651  0.2484  0.2217  1.4454
-3.3225 3.7921  -0.5640 0.0901  1.3800
6.6629  -12.5665        -2.6896 -4.8347 7.7194
-2.6891 1.6162  1.1137  0.9694  -1.5153
6.4484  -5.2160 -2.3923 -3.1897 6.4000
1.1980  0.4212  -0.5586 0.3450  0.5480
-3.0491 7.7619  1.0699  2.7884  -3.7349
4.5196  -6.8708 -0.6398 -2.2937 1.8042
1.3592  1.3916  -1.9780 -1.3895 0.2975
0.3525  -0.0033 0.5097  0.5342  -1.3790
-4.0306 8.4174  2.1865  3.7116  -4.6942
1.5873  -1.1314 1.6961  1.6820  -3.5563
-1.6222 3.9658  -0.1847 0.8946  -1.5294
1.5232  0.9330  -1.6101 -0.5830 0.1702
-0.4493 -0.4453 -0.1797 -0.4009 2.5695
1.6938  -6.0378 -0.2428 -1.1826 0.2965
-0.7186 1.9945  -0.4488 -0.7603 3.0064
1.7586  -3.9176 -0.7220 -0.9575 -0.0910
-6.7373 7.8387  3.4743  5.0118  -5.8414
-3.8899 6.1227  -0.6429 0.7860  -2.0175
1.5948  -1.5066 -0.3428 -0.5522 -0.0622
3.2624  -0.0527 -0.7807 -0.3491 2.3042
4.0557  -4.6678 -1.1782 -3.4090 4.0970
5.0160  -7.2383 -0.3779 -2.2113 2.2132
2.1253  -2.9187 -0.4466 -0.0244 0.5850
-0.8242 -1.0194 2.9764  2.6427  -2.7408
-1.8412 4.1628  1.3872  3.4560  -5.7774
-0.5154 -1.4690 -0.4839 -2.5813 3.0262
-3.0791 4.4465  -0.1302 0.0925  1.6326
1.2311  -3.4652 -0.9853 -2.0132 3.9732
0.2359  0.3210  0.2092  1.1477  -0.9474
5.8383  -10.4825        -1.5390 -4.6900 4.6703
-1.1770 0.2093  0.2863  0.0516  1.5498
-4.2696 5.6606  1.7455  3.4344  -3.0959
-1.4982 5.4589  0.7906  2.7091  -2.2196
3.1346  -5.2267 0.3001  -1.0814 2.0003
0.5324  -3.0715 -1.3582 -1.6567 0.1099
4.7582  -5.8090 -0.9587 -1.2612 3.0096
4.5752  -4.3319 -0.8840 -1.2507 1.8111
-3.9104 2.3295  2.5747  1.3732  -1.9197
3.6692  -6.8667 -1.6918 -3.8910 5.2819
6.0907  -12.4487        -0.8505 -3.2938 6.4125
2.8864  -5.4070 -0.1076 -1.3316 -0.1059
-0.4297 0.0876  -0.1839 0.1271  0.1550
6.3286  -9.5269 -0.6533 -3.7679 5.1588
1.1547  -0.0179 1.6281  1.5176  -0.9576
-0.9284 0.6473  -0.1934 0.3985  -2.6228
-0.0603 -0.7403 0.4793  0.5058  0.0996
-1.9250 2.3546  0.8754  2.1528  -1.3846
1.9641  -4.0196 -0.0715 -0.8245 0.6193
-0.2455 0.3512  -1.5331 -1.3989 2.7658
0.9651  -2.0136 -1.1840 -1.6304 1.4376
4.3906  -6.1174 -2.6775 -3.7487 6.1351
-1.1235 3.4028  -0.8771 0.0153  -0.3152
1.6069  -0.1284 0.1853  -0.1488 -1.3430
0.6702  0.6877  0.1881  0.4001  -1.0288
1.6264  -0.5903 0.5977  -0.3464 -1.8525
0.7766  -1.6391 -0.1169 0.4276  -1.3806
-2.0160 3.4779  -0.8848 -0.4100 -1.2444
1.5573  -0.0536 -0.2868 0.1410  -1.9332
-3.3803 5.4981  0.4306  1.5924  -1.7484
5.1280  -8.6795 -1.4651 -3.0457 4.7956
7.2857  -10.4209        -2.2357 -5.0746 7.0289
-3.2168 3.1959  1.1988  0.6056  -2.1550
-1.4198 1.9052  0.4085  1.8156  -2.6302
1.0403  -3.9491 -1.0085 -0.5362 1.1063
2.9930  -2.7410 -0.6522 -2.9949 4.8483
0.3585  -1.3695 0.7384  0.4000  -1.4356
-5.4854 6.2554  0.9127  1.8602  -2.8906
3.0343  -4.4214 -1.8482 -3.3859 4.2633
-3.7367 3.3447  1.4358  2.0836  -2.9068
-0.3844 -1.9222 0.1544  0.2690  -0.2981
-0.5645 4.1167  0.6127  1.4195  -1.1947
-2.3730 1.8389  0.2882  1.5337  -0.8833
1.2065  -2.8872 -0.0685 -0.0411 0.0110
-4.7900 10.0393 1.1984  2.9446  -3.4512
-5.8973 9.7316  1.6041  3.6361  -6.6810
2.5273  -1.5841 -0.2057 -0.7003 1.0025
-3.0037 2.2612  2.4029  3.5438  -5.0845
7.6693  -9.6048 -2.6655 -3.7913 5.4391
-0.1311 0.5147  0.3828  0.5011  -3.2243
-0.3756 2.8371  0.3102  1.1357  -2.2165
-5.3439 8.8689  1.4161  2.8520  -4.4500
1.5232  -2.3346 -1.1622 -0.8076 0.7155
3.8552  -5.1659 -0.1371 -1.1378 0.7828
-2.1767 3.0858  1.0785  3.2986  -2.8150
1.9085  -5.7807 -1.6831 -4.2489 3.9320
-1.6681 0.7553  0.2028  0.6259  -1.1061
0.9712  0.6304  -1.4879 -0.6180 0.6385
-2.5532 1.9800  -0.2451 -0.5146 -0.7714
-2.1982 5.8232  0.4275  -0.5614 2.7068
-4.6288 8.0165  0.7559  2.3472  -2.1529
-3.6030 5.9845  2.2275  2.4361  -3.5999
-2.6167 5.4688  0.8768  1.0111  1.1342
4.5817  -7.5402 -1.9242 -3.2642 1.7025
3.3747  -1.7804 -2.4685 -0.3345 0.0961
-5.6138 6.3720  1.8152  2.5833  -3.4290
2.7319  -2.6461 -2.1469 -2.3622 3.2780
3.4591  -4.1452 -0.9528 -3.2140 4.9791
-0.1154 -0.9025 0.0238  0.3041  -0.3016
-0.4270 3.5071  0.2090  1.0470  -0.8474
-2.2519 4.4358  -0.1653 0.3940  0.8197
3.8015  -5.0902 -1.1216 -2.9052 5.8963
1.4806  -3.8401 -0.5698 -1.3445 0.4605
-3.8034 3.2229  1.4881  1.9803  -2.2915
3.9091  -4.9917 -0.6396 -2.2662 0.6458
-4.9032 7.2655  3.3224  4.8573  -6.1075
5.9021  -8.4511 -2.9961 -4.9076 6.1152
6.8295  -7.4660 -2.2773 -3.9901 7.1175
-3.3541 7.0033  -0.0620 2.6964  -4.6125
-0.5718 0.8657  1.3152  1.8488  -3.3521
3.9682  -3.5320 0.1656  -1.9925 2.1004
-6.9353 7.7933  0.9523  1.6867  -1.9477
2.9824  -2.1454 0.1067  -1.6251 -0.8757
-0.6897 1.4509  0.5481  0.6692  -0.8704
-0.0473 1.0064  -0.0766 0.5964  -2.2624
-0.0620 -1.8901 0.3001  -0.3565 0.8634
-0.0078 1.6626  -0.5081 -0.8363 -1.1631
1.7686  -3.0753 -0.0678 -1.8210 1.3913
-5.0807 10.2742 1.3029  2.8925  -3.6827
-0.2579 -4.0452 0.2371  -0.8025 -0.2924
0.1222  -2.7139 -0.1231 0.0758  -1.1929
2.1324  -3.3567 -0.7203 -2.0962 2.0534
-7.2288 7.6689  1.8612  2.9587  -3.1966
-1.4061 3.4926  0.1911  1.3831  -3.5465
2.2720  -2.6428 -1.0101 -1.6181 3.2229
-3.8114 5.3972  2.0112  3.3489  -5.7740
-3.2361 7.2144  0.7991  2.6352  -2.7115
-0.5396 0.5905  -1.3195 -1.2001 0.2198
1.8517  -1.2943 -0.5379 -0.0312 1.0221
4.2470  -5.7203 -0.8818 -2.0748 3.6420
-5.2028 9.4135  2.0782  2.9373  -5.7290
3.8004  -3.0958 -1.5051 -1.5812 1.7339
-2.1981 2.8323  1.6624  2.3770  -2.2025
-0.4935 0.2231  0.3601  0.7640  1.2306
-3.4718 8.0231  1.2703  1.7725  -2.2764
-2.5868 3.9798  0.6760  2.6916  -3.7697
-0.4642 -0.6693 0.9942  1.0561  -1.9917
0.0557  -2.0324 -1.0530 -1.6460 1.3120
-5.9498 10.4849 1.9606  5.1281  -7.4647
-1.9479 3.0117  -0.3471 1.3456  -4.1191
1.4644  -3.5766 -2.4824 -3.0356 2.7584
0.3436  -0.7195 -0.6204 0.7877  -0.1625
5.4508  -7.3110 -2.9566 -4.3717 4.6183
0.7309  -2.4924 0.1839  -0.7807 0.8101
-0.2456 -0.1325 -1.4328 -1.0032 3.3402
3.0735  -8.9631 0.8381  -1.5020 1.3850
-0.5069 -1.5893 0.5829  -0.5032 0.9809
2.1700  -4.6004 -1.5105 -2.6081 3.4417
-2.1800 6.2806  -0.0969 1.8707  -4.6252
2.8663  -6.7823 -0.4923 -0.7713 0.5108
-2.4086 4.1719  0.7495  1.9887  -2.3066
2.1678  -2.6584 0.4172  0.5744  -0.1767
-4.0023 6.4730  2.5707  4.6216  -4.9604
-3.4123 1.0411  0.0773  0.0521  -0.5841
-1.8620 1.9859  -1.1333 0.6732  1.9114
-1.1279 1.0371  0.0116  -0.4865 1.0730
-1.1203 2.6433  0.1443  0.3358  -2.0456
-2.4867 4.1169  1.4281  1.7433  -2.6745
2.7556  -0.7774 -1.0169 -0.5015 -0.7773
0.4646  -1.6737 0.2930  0.0287  0.5528
-0.5959 0.3374  -0.1342 -1.4407 -0.4139
4.0550  -3.7095 -2.2767 -1.7679 3.7488
-1.3699 1.9663  -0.2541 0.2665  -0.9583
4.1923  -5.9802 -2.1801 -2.4693 3.2915
-3.6358 4.0519  0.7364  1.8117  -2.9893
-0.1185 1.6212  0.3922  0.0524  -0.1149
-0.4100 0.7856  0.5135  0.6885  -1.5829
3.5653  -6.6930 -1.1300 -2.8302 5.0967
4.8946  -7.6957 -0.9105 -3.3702 2.8493
2.1410  -2.9608 -0.8852 -2.1515 5.0609
3.4369  -5.6083 -0.2739 -1.6793 3.0594
-2.9575 3.5701  0.5278  1.6363  -0.4157
-0.6258 6.0230  -0.1994 0.8826  -2.4193
2.5588  -2.1704 -2.2896 -1.0140 0.6710
-0.6856 -3.4420 0.1053  -0.3688 0.1928
0.6769  1.4586  -0.3950 1.0442  -0.9996
0.5719  -2.5310 0.6024  -0.2502 -0.4944
-2.0636 1.6289  1.9738  2.2616  -3.3736
-3.0901 4.4991  0.6160  0.5870  0.0781
2.8171  -5.3709 -1.6748 -2.2351 2.6366
-0.7227 -1.0949 -0.1896 -0.4143 2.5154
0.5574  -0.7565 -1.7450 -1.4647 1.0764
1.2554  -0.8065 -1.8030 -2.3942 3.0452
-0.6288 2.2282  -0.7212 -0.1533 -1.4095
5.2021  -10.1209        -0.9389 -3.4675 4.1263
2.6952  -4.6352 -1.3518 -1.6097 0.3574
5.2016  -8.8829 -2.1360 -2.7134 3.0859
-0.2233 3.1036  -0.2018 0.5693  -1.7199
-1.4831 4.3637  0.3221  0.6114  -0.2729
0.4846  -2.8683 -1.1549 -1.8557 3.8498
-4.3361 8.3816  2.6858  3.6935  -5.2246
0.0786  -0.1125 -0.3771 0.2459  0.1329
1.3383  -0.7509 0.5966  0.3402  -0.6952
0.7590  -3.3829 1.2038  0.6412  -1.0373
2.6746  -3.2160 -1.8292 -2.2763 2.2885
0.4094  0.8521  1.1080  2.1905  -3.1399
3.7204  -7.5379 -1.7370 -4.8863 7.8436
-3.7295 3.6701  2.5291  2.4229  -2.4469
0.0802  -0.0669 1.4612  1.0124  -0.5309
1.6747  -4.4852 -0.3749 -1.2849 -0.7281
1.2501  -3.0803 -0.9975 -2.2269 2.9544
-3.8076 4.7102  1.3380  2.2727  -5.7197
1.6467  -0.4854 0.4172  0.1591  -1.1064
1.7591  -0.6582 0.9218  -0.0864 -2.5800
7.9008  -11.2576        -2.9675 -5.6377 8.6095
-0.2505 0.3591  0.1079  0.8613  1.0668
0.7503  -1.4956 -0.0267 -0.2402 1.4536
5.3289  -6.1185 -1.5094 -1.5571 1.9906
-1.7740 4.5815  0.8209  2.2150  -0.9953
-0.8645 0.0441  1.6518  0.6533  -0.5968
3.7851  -2.5209 -0.5057 1.2771  -2.3525
-1.7427 4.8200  0.6033  1.1277  -2.7890
-1.7045 1.2075  1.5021  1.3689  -0.8238
-1.5765 -2.2758 0.3780  -0.4540 -0.5103
3.8637  -5.3122 -0.1265 -2.1424 2.3338
1.5041  -1.5608 -2.6981 -1.9003 1.1406
-2.3034 0.4323  -0.4728 -0.2387 -0.1468
-0.0047 -1.3586 -0.4959 -1.6182 1.3785
3.3527  -5.5143 0.9781  0.8868  -3.1418
-0.5500 0.1729  1.2817  1.2226  -0.9500
-7.2777 9.8531  1.2622  3.8692  -5.9370
1.6235  -1.8946 -2.2543 -1.4862 2.2583
0.2705  -3.2970 -0.5602 -1.1194 -0.0616
4.8574  -5.1275 -0.5010 -1.9963 2.8762
0.9677  -3.2438 0.9460  -0.4771 -1.5614
-3.5822 5.6570  1.3587  3.3892  -3.9231
-0.1930 2.9146  -0.3320 1.1754  -2.4638
-3.9223 3.1305  1.3053  1.5071  -3.8080
-0.3953 -0.9592 -1.2717 -2.5974 4.0198
0.5465  1.4460  -0.7129 0.0283  0.5493
1.0612  0.9905  0.1918  0.4929  1.0614
-3.0092 6.9681  -0.5695 0.5217  -1.2704
-0.8839 -2.7294 0.0259  -1.6899 3.3731
-4.4146 7.7165  1.0396  2.4611  -1.1799
-1.4709 7.0594  0.4044  1.7971  -2.7397
-1.6247 2.4025  -1.0088 -0.5339 0.5840
-3.5559 2.5645  2.0810  2.9712  -2.7913
-1.8194 1.3776  -0.4900 -0.7461 -0.0578
3.1229  -5.4646 -1.1276 -0.8078 1.6183
4.3390  -4.4741 -1.5631 -3.2634 5.6309
4.9660  -6.4532 -0.0830 -2.1104 2.0690
-0.0348 0.7155  -0.8019 -1.2905 0.1683
-3.2467 3.5574  2.6456  3.6968  -8.8577
2.7103  -2.9651 -0.4393 -2.0534 2.0599
0.0903  -4.0928 -0.7604 -0.9970 1.6688
-0.8327 0.9186  -0.5795 -1.0388 -0.3036
0.0133  -0.6702 0.9252  -0.6840 -0.0650
0.8722  -1.4179 -1.3340 -0.8367 -0.0262
1.5180  -4.3409 -0.3514 -2.3755 3.3681
0.4221  0.4593  0.5917  0.3432  -2.7183
-0.0887 2.8949  -0.0495 0.7291  -0.7554
2.1167  -2.5729 1.5003  0.2658  1.4526
1.5415  -1.2676 -0.3017 -0.5372 -0.7139
-4.9671 10.9704 1.6233  5.3588  -6.0347
1.6608  -2.4385 -1.1291 -1.8890 2.7341
3.4931  -3.7502 -0.7202 0.2034  1.5841
1.5921  -1.3173 -1.0269 -1.3072 0.4690
1.0283  -4.5823 -0.6029 -1.5166 1.4863
2.6370  -3.4052 -0.4944 -0.1567 -1.4519
-2.5279 3.0226  1.6063  1.3736  -1.5513
0.7888  -0.1261 2.3653  3.0435  -4.6913
-1.7786 0.4356  -0.3538 -0.3758 1.2652
-1.0828 0.0797  -0.6087 -0.8586 0.8949
-0.9424 1.8485  -0.2050 0.6582  -1.3535
-3.8115 6.8035  1.3707  2.6819  -2.6916
0.1164  -2.0797 -0.6461 -1.2668 2.2351
0.5374  0.7357  -0.1385 -0.0630 1.2605
1.1920  -0.2458 -1.7548 -1.8394 2.6297
2.2516  -5.4698 1.4902  0.0160  -0.1597
1.5301  -4.0994 0.1500  -0.1502 -0.6559
1.9364  -2.2511 0.0416  -0.2847 0.4355
1.8584  -3.7230 -1.2060 -2.5532 4.1307
2.3142  -6.5575 -0.4150 -2.1816 3.1576
-0.0700 0.8540  0.0281  0.7366  -1.6568
-1.4853 2.3316  0.2036  1.3061  -1.7547
-0.1354 -1.2502 -0.7535 -1.0563 1.1186
-1.6657 0.8584  1.1430  1.1907  -2.0410
0.4031  -4.6320 -0.3420 -0.5611 -0.9567
0.4331  1.3517  0.4656  1.5486  -1.7296
-1.8057 3.6612  0.6464  1.3393  -1.3320
-0.8021 -2.3895 -0.5989 -1.5490 1.9142
-0.2031 0.7710  1.5435  1.8512  -1.5749
1.1979  -0.4167 -0.7848 -1.2347 0.4743
0.1571  -0.2733 1.1871  1.0185  -1.7692
-0.6408 1.9974  -0.9219 -0.6104 1.8344
2.0397  -2.0403 0.2125  -1.1059 2.0670
-3.4611 4.7735  0.6304  1.0703  -1.3506
-6.0643 8.4115  2.5897  4.2091  -5.1766
2.1846  -3.1242 -0.8093 -1.8125 0.3641
0.9654  -3.4801 -1.0331 -2.3767 2.2963
-1.0520 2.8289  0.9928  1.6814  -3.1137
-8.5946 10.0647 2.1153  3.7475  -2.8204
-1.4385 0.7267  1.0811  0.8493  -1.8201
-2.7175 -0.8414 1.8049  1.9329  -2.7452
-7.9439 10.1650 2.0529  3.6705  -5.3906
3.3160  -4.5018 -1.8564 -2.7729 5.1708
-2.0741 4.6996  -0.4922 0.5771  -1.8047
1.5204  -3.4120 -1.6619 -2.5613 3.5183
0.7307  0.2991  -1.7238 -1.8011 3.4985
1.1497  -0.8129 0.6835  -0.1655 -0.1079
-1.9942 3.6173  1.4680  0.5525  -1.0096
-4.4038 5.9876  2.1005  3.2887  -4.9171
1.5841  -1.7243 -0.1638 -1.0218 2.3186
-0.9056 2.2137  0.8471  0.3561  1.8957
2.6274  -5.6761 0.3196  -0.5510 1.5066
-0.3119 0.3984  -0.2916 -0.3838 -0.7565
0.4767  0.7673  -1.2478 -1.2214 2.1389
-0.8533 6.0425  -1.9801 -1.3635 0.3596
-2.1631 1.7225  0.8496  1.6358  -0.0784
0.4090  -0.2800 -1.9040 -1.2896 1.4046
2.4464  -3.9463 -1.0364 -1.3369 1.3030
-5.3882 4.4113  0.8725  1.5669  -2.1240
2.4864  -7.4048 -1.2776 -2.0553 2.4928
2.4787  -4.0136 -0.8223 -1.7083 1.0732
-5.9314 9.6589  1.2448  4.5426  -8.0159
-2.4842 0.9918  0.3994  -0.5056 -1.4490
-4.3875 4.7577  0.1380  0.4208  -2.4302
-0.0076 -1.8961 1.1356  0.2332  -0.5330
-0.9121 0.0696  -1.6151 -1.5760 4.4351
0.9609  -3.3045 -0.4387 -1.8382 2.3275
2.1007  -0.0210 -1.2964 -1.0912 2.6844
-0.5436 2.4144  0.2105  1.2146  -2.4363
1.8259  1.7694  -0.5963 0.1105  0.6112
-1.1593 2.0722  0.9176  2.1509  -3.1371
2.0367  -6.6877 -0.5700 -2.0632 0.8664
-3.1166 5.4924  2.3667  4.0310  -5.2816
2.4395  -2.1003 -0.9407 -1.7072 3.4265
1.0248  -2.4074 -0.5449 -0.7266 -0.2841
4.6971  -8.0379 -1.2885 -2.2694 5.1105
-4.6387 9.4827  1.8026  3.5558  -5.4823
2.7667  1.5280  -0.6511 0.1465  2.1974
0.2565  -0.9524 0.9117  1.4469  -2.4592
-4.6055 3.4642  1.0459  2.0708  -2.0977
-2.6781 2.5107  -0.3941 0.8685  -1.2466
1.7996  -2.5567 -0.5500 -2.2802 1.6863
-0.8324 -4.2306 0.5490  -0.6838 2.8491
-3.2456 3.3650  1.7990  2.8993  -4.9672
-1.7712 -0.0503 0.9968  0.5527  -0.8619
0.4206  -4.0311 0.0154  -1.2011 1.3371
1.5412  -2.8451 -0.4316 -1.2950 -0.2534
2.4600  -4.3091 -2.0483 -2.7290 5.1678
-1.5675 4.7410  -0.3525 1.1592  0.8593
-1.6946 3.1440  1.1112  1.6165  -1.5204
-2.8756 5.6329  0.6193  1.9340  -1.3438
2.4840  -10.1867        0.2812  -2.4313 3.2290
0.6589  -4.6085 -0.7828 -3.3621 5.5107
0.3514  -2.7924 -0.0084 -1.4447 3.4834
5.7964  -8.9359 -1.2308 -3.2417 3.3932
2.6746  -1.8842 -0.5609 -0.2880 1.5403
0.3007  -0.8504 0.8353  -0.6742 1.1317
-4.2792 7.2538  0.3604  2.6916  -3.9556
3.1317  -5.1059 0.4464  0.5472  -0.5794
-1.4121 0.9795  0.2771  -0.4041 -0.3833
-0.8923 1.4287  0.5642  0.5941  -1.6865
-4.7416 6.1196  1.7041  2.6321  -2.7774
0.6630  -3.1316 0.4529  0.1641  0.3944
-3.0170 3.0252  3.2357  3.2153  -3.0449
3.8911  -3.8608 -2.1617 -1.7106 2.8362
0.4009  -1.4336 1.2431  -0.5776 1.9523
-0.4577 0.4159  -0.3682 -0.1182 1.8570
-2.9712 0.7076  -0.5176 -0.0600 -0.8256
5.2958  -3.8707 -3.1195 -3.1072 4.5467
0.2859  -1.5934 -1.9012 -3.1468 1.3224
-0.1287 2.9517  0.0562  0.1044  -2.0303
1.4635  -1.5765 0.2766  -0.6452 -0.6825
-0.6931 0.7639  1.9659  2.1849  -1.3547
-3.5098 6.8389  0.8449  3.0014  -2.6884
2.7029  -4.1650 -0.8763 -2.7467 4.0893
0.6226  1.7502  -0.2601 -0.9432 0.8589
-0.4024 1.5731  -1.4137 -0.1306 -0.2201
-1.3863 0.4795  -0.4108 -0.5720 -0.3666
-3.2333 2.9630  0.6249  -0.5969 0.1717
-2.4766 2.1296  0.3242  0.4867  -1.3417
-5.6511 7.4052  3.0113  4.7977  -5.2552
-2.3634 2.0956  1.1741  1.2595  -2.1955
4.5460  -5.0074 -0.4542 -0.5397 0.0875
1.3748  -0.3100 0.8821  -0.2967 1.4063
4.1058  -2.7434 -1.2224 -1.7866 1.6594
-1.1643 2.1723  0.6788  1.7742  -1.2619
-1.3466 -4.1596 1.8297  1.1949  -1.2988
7.9222  -9.9710 -3.1242 -5.3948 8.1463
-3.9498 8.6031  2.0159  3.7680  -4.7049
-3.5972 6.4150  1.2514  1.5159  -3.7841
5.0896  -3.9789 -1.1430 -1.8502 1.4030
-2.0673 3.8068  -0.5768 0.7864  -2.1375
-1.0409 3.6428  1.6262  1.7849  -3.6318
-1.3333 3.6707  0.9265  3.5059  -2.9702
1.0394  -0.0637 1.2362  3.2540  -5.2595
-1.1580 2.8662  0.1482  1.2770  -0.4522
0.8874  -3.7057 -0.7961 -2.0054 3.5782
-1.3600 1.8188  -0.5415 0.2153  0.3304
1.8689  -3.4036 -0.7904 -1.4379 -0.8689
1.2050  -1.1476 -0.7349 -0.6013 3.0330
10.1410 -10.2036        -4.1995 -5.6702 8.1661
3.0099  -2.1027 -1.4263 -0.7017 1.9065
-3.8614 6.5359  -0.8434 0.5821  -1.3872
1.3236  -0.2049 0.2256  1.3470  -2.2165
1.0920  -2.3811 -1.0309 -0.9492 0.5478
0.4362  0.6730  0.6365  0.4610  0.7632
3.7113  -2.2546 -1.2593 -1.6551 2.8645
-5.7726 5.5082  1.3187  2.9743  -0.3457
-5.3512 9.0146  3.4040  5.5876  -6.2027
-2.2604 1.2451  -0.3066 0.1247  -0.8139
0.7343  -3.1401 1.3913  -0.4625 -0.2792
-3.4520 3.5922  1.8362  3.7942  -3.1406
1.1957  -2.6421 -1.5575 -0.7185 0.4406
7.8451  -9.9399 -1.8450 -3.9398 5.4005
2.1988  -2.2916 -0.3309 -0.3944 3.0323
0.4980  -0.6128 -0.0366 0.9816  -1.7639
2.4752  -2.9008 1.1052  0.1817  1.6229
-4.7601 5.3908  0.9486  1.3283  -0.6460
0.8070  -1.1117 0.6800  0.3344  1.3956
4.6625  -6.8095 -1.6751 -2.2765 1.0504
1.3436  -2.5267 1.1192  -0.2878 -1.1750
2.2786  -5.0523 -0.6343 -2.2989 3.4684
-3.1403 4.1328  0.9713  3.1032  -5.9694
0.8479  -1.8065 -0.4818 -1.2207 0.7487
6.0222  -8.4856 -2.3542 -4.3121 5.0200
1.6081  -3.2863 -0.5396 -2.1689 3.3468
6.4168  -9.5914 -2.1836 -4.0327 4.8742
3.7306  -5.0684 -0.5264 -1.4130 1.0033
2.7245  -4.4496 -1.3274 -2.4063 1.3367
3.8650  -4.8618 0.0864  -0.9805 1.5781
-0.1802 -0.4216 -1.2406 -1.4560 2.4982
-2.1356 6.3738  0.7996  2.2762  -2.1359
-2.9398 1.0746  1.5003  0.8038  -2.5120
4.2412  -6.8141 -1.5960 -2.0124 2.6786
-2.9086 2.8390  -1.0469 -0.0431 -0.3987
2.4528  -3.7586 0.1118  -0.5572 0.6062
0.5159  0.9664  -0.3663 -0.9287 3.4324
-0.3144 -1.1907 0.3157  0.6534  -2.0672
1.7973  -1.0847 -1.8159 -0.4543 0.7859
-2.0701 -0.5578 0.2785  1.4458  -2.9149
-1.1479 4.4500  -0.5120 1.4498  0.5881
-4.5042 6.1401  0.8002  1.0862  -0.3240
-4.6460 8.3703  1.4027  2.6502  -5.4791
-0.9961 -0.0281 1.2392  1.5300  -1.1709
4.0475  -2.3198 -2.1429 -2.4181 5.1136
1.7293  0.5019  -0.6392 -0.3983 1.1265
2.6549  -4.3549 0.0962  -1.4288 2.2678
-1.5246 1.2477  0.8986  2.3823  -1.4203
-0.2603 -0.1938 -0.1663 -1.2419 2.2922
-0.7117 2.4312  1.2376  0.8960  -0.6454
-1.3617 -0.8304 1.1364  0.3946  0.5413
1.8649  -4.0385 -0.4954 -2.0679 4.8583
-1.0221 -0.6877 0.7770  1.8694  -3.4434
1.0882  -1.6411 -1.3867 -1.8288 3.4380
-1.1881 1.1594  1.6922  2.1623  -4.7124
2.3289  -1.5842 -1.5725 -3.2579 3.2850
-0.2837 -1.3648 -0.5696 -1.4279 1.7262
-1.9681 4.1328  1.1452  1.5627  -1.6798
-0.0394 0.2585  -0.9681 -1.1305 3.3046
1.9623  -1.2023 0.1370  0.2547  -0.5647
-3.3784 3.2956  3.3603  3.4890  -4.0026
3.6389  -5.2677 -1.2878 -2.2158 0.1670
-2.2341 2.0367  1.0293  -0.1081 -0.4495
-0.7036 -1.2108 0.5740  -1.3217 2.2695
3.9710  -8.2324 -1.5470 -3.2343 4.3757
-1.6531 0.2968  -0.7541 -0.3083 -1.7168
-2.1687 3.8486  -0.9876 -0.6068 1.9654
0.9445  0.5305  0.6930  1.6751  -1.3500
-0.3944 -0.9677 -0.3602 0.1027  0.5034
2.0605  -3.6226 -2.1163 -3.0593 5.6153
-1.0040 2.7821  0.6461  0.7229  -1.1059
-3.0940 4.7810  2.1153  2.1218  -4.4053
-2.2092 3.2222  0.1584  0.5870  -0.9120
3.3626  -8.1871 0.3332  -1.0085 3.0192
-4.1255 2.6511  0.0507  -0.3172 1.9782
3.5719  -5.4237 -0.0944 -1.2725 1.5938
6.0163  -9.9125 -1.0021 -1.6211 2.7467
-5.0587 8.7883  2.9764  5.3738  -9.1983
1.5478  -3.3061 0.0159  0.0021  -1.8074
-2.3944 2.0458  0.4791  -0.3081 1.3165
2.0419  -3.3907 -0.7411 0.8035  0.3311
1.3368  0.2386  -1.1104 -1.4353 1.9480
2.1739  0.7160  -0.4322 -0.5677 1.4867
7.0952  -7.3660 -3.8107 -5.1662 7.5114
0.6998  0.4047  0.3770  1.1437  -1.7315
1.6052  -2.8441 -0.6925 -1.2381 1.7438
-1.0009 -0.0515 -0.3480 -0.6843 2.0486
0.9311  -1.3137 -0.0193 0.2022  -0.7902
2.1221  -0.7185 -0.7333 -2.3795 2.1675
0.8662  1.0293  0.3841  0.8632  -0.7851
-2.2950 3.6289  -1.6520 -1.1467 2.0848
-1.8542 -1.9384 1.8510  1.5801  -3.2726
-1.4039 5.1783  1.6261  2.1004  -2.5245
2.2661  -1.6616 -0.1993 -1.1223 -0.0687
-0.8191 3.1325  -0.0916 1.5133  -2.8954
-3.8469 9.1824  1.6360  3.0115  -4.0742
0.1226  4.4127  0.8401  2.2041  -4.9260
0.6785  0.0618  -0.2258 -0.5879 0.8708
-3.6735 1.7140  1.5656  1.7599  -1.6734
1.5059  -4.6062 0.4514  0.1215  -0.5421
-3.2292 2.3358  2.0081  1.9656  -3.3615
-1.7203 -1.2875 0.7835  0.7025  -1.1143
-1.3812 2.3860  -0.4625 -0.0056 -1.0156
2.5132  -3.7032 0.0796  -0.6645 -0.0046
4.0000  -6.0674 -2.0347 -2.6087 1.0395
-2.6955 5.1927  1.4476  2.0608  -4.5171
0.9121  0.6632  -0.3424 -0.7876 -0.0975
4.0794  -7.1526 -0.1874 -0.8601 0.8288
-0.2897 1.8639  0.1189  0.7541  -0.4560
-4.2846 8.1188  1.7370  3.4751  -4.0064
0.6400  1.9242  -1.6418 -0.2620 1.5132
-1.3209 4.8127  0.9719  2.0581  -4.6501
-0.0720 -0.2235 0.6273  0.5688  0.1601
-1.2361 3.0819  0.8237  2.7475  -2.9977
1.6937  -2.5260 -1.2119 -2.9682 4.2268
-2.8745 4.8412  0.5477  2.1135  -2.5490
-4.5422 5.9738  2.1279  2.3937  -4.8806
-1.2883 6.2695  0.6370  2.1184  -1.0445
2.4768  -1.6380 -1.5223 -1.5924 2.4581
-4.7265 5.2611  1.0208  1.4211  -1.7813
2.8405  -2.3924 -0.2115 -0.5363 -0.3490
-1.4317 0.9087  1.0957  1.4469  -3.0131
5.0720  -6.8255 -1.7168 -2.4579 2.1032
2.0963  2.2205  -0.9484 -0.3955 0.6628
-1.3655 3.0063  0.1733  0.7940  3.1585
0.5377  -1.8347 0.1649  0.4924  -0.4196
5.2718  -9.2398 -0.8818 -2.8707 3.2978
-1.3422 -0.5020 1.6462  1.6405  -2.7061
0.8535  -3.9439 -0.8182 -0.7314 1.9591
-1.8432 0.6087  0.7665  1.9145  -1.4608
2.8226  -5.7688 -1.6657 -3.3395 4.6216
-3.1228 3.1238  1.3905  2.0948  -3.5844
3.4934  -5.3403 -0.7616 -0.2639 -0.2524
-4.9802 7.7138  0.5017  2.2504  -4.2227
1.6227  1.9003  0.8723  0.8073  -1.8061
2.4939  -1.8796 -1.3247 -1.4244 1.7079
3.0249  -5.6462 -1.0585 -2.8271 4.1792
-9.6862 14.0774 2.9367  6.2851  -9.3283
0.0776  -0.5735 1.3049  0.4725  -0.7130
1.5450  -5.7558 -0.9029 -1.3448 0.9662
1.9247  0.3440  -0.6294 0.4516  -0.8677
0.4599  0.5520  -0.0710 -0.0576 0.2732
-0.8746 -0.3519 0.2982  1.2486  -2.8499
0.9405  -0.4231 -1.4801 -1.5326 2.6225
-1.4495 4.1087  0.2959  3.1630  -3.7758
-4.6406 1.3202  3.6352  3.4940  -6.7831
1.2883  -6.2535 -0.5529 -0.9414 -0.5767
6.2538  -7.5899 -2.0176 -2.7762 3.7867
-4.4781 6.6820  1.5695  2.9223  -4.8531
4.3453  -8.5697 -2.2523 -4.9028 6.3328
1.2509  -3.3505 0.8035  -0.2510 1.8378
-1.6943 1.0857  -0.9478 -0.6546 1.8657
3.9232  -7.2125 -1.2953 -3.0334 4.1583
-6.7238 5.6689  1.5818  3.3944  -5.0598
-2.5544 -1.7790 -0.4046 -0.8348 2.8404
2.2196  -6.0495 0.2344  -1.6209 1.6475
3.4435  -7.5431 -1.7026 -3.7513 5.3545
5.0885  -6.2492 -0.7416 -1.4286 -0.8241
-3.4063 7.9865  1.5291  3.2998  -5.8797
1.8975  0.2771  -0.7056 -0.2833 -0.7588
-3.5626 8.1179  0.8695  2.2410  -3.5792
-3.2169 6.1344  0.4762  0.8564  -1.0741
-3.8579 6.5084  1.4556  2.3154  -1.4013
2.9503  -5.0705 0.2137  -1.3493 1.0130
4.1895  -9.1703 -1.8129 -2.8667 3.6490
0.8091  -0.6776 0.2042  -0.6072 0.0341
-0.1484 0.2194  0.7697  0.2527  -0.1453
-4.0476 4.0440  1.8609  2.4758  -2.3870
-1.9846 -0.3820 1.1258  1.4711  0.1930
-6.7039 7.4333  1.5294  1.9451  -2.3858
0.3360  0.1054  -1.0292 -0.1002 0.7495
0.5500  3.1125  -0.7188 -1.6203 2.6520
-0.5077 -0.7668 0.5820  -0.1840 0.3310
1.5340  -2.5956 -0.4316 -1.1223 0.5158
4.0101  -6.0631 -2.1360 -3.9139 6.0164
-2.7568 3.1633  -0.1119 -0.1651 0.3661
1.1196  0.2850  -0.3133 -0.8553 -0.2284
-3.3289 4.3163  1.7871  2.2307  -4.2018
-0.3990 1.6540  0.4579  -0.6900 -0.8432
-1.4291 2.2699  0.2371  0.7215  -1.3131
-1.6746 -0.9629 0.9288  1.1862  -1.6078
2.5426  -4.9223 0.9444  0.4064  0.1600
-6.0777 8.0902  1.4968  2.9500  -4.1624
-1.0891 2.7103  -0.2714 0.1916  1.9935
2.5086  -5.4769 -1.3309 -2.2460 3.3815
-0.3983 -4.0218 1.4072  0.4404  0.5918
-1.9284 -0.4810 1.0849  2.7667  -4.0264
0.9282  -0.7000 0.3430  0.2345  0.9364
-0.8362 -1.9465 1.2085  0.4046  0.7542
-0.5225 3.2505  0.9867  1.2427  -1.3694
2.9085  -5.9375 -1.8659 -2.9572 5.7288
1.0402  -3.3939 -1.0876 -1.5431 2.4677
1.4690  -3.3057 -0.6664 -0.8816 -0.4188
-0.1720 1.6492  0.0298  0.2761  1.1011
1.2071  1.3641  -0.1873 0.6527  -0.8998
-0.1237 -0.6602 1.3360  0.6630  -0.8340
1.0782  -1.8945 0.4438  -0.5827 3.2312
-2.6660 3.7803  -0.5622 1.0348  -1.1306
1.8567  -0.9284 -0.5253 -0.0061 -0.3698
2.6511  -6.4186 -1.0139 -1.0880 0.6376
2.7293  -5.4147 0.2879  -0.1447 0.9482
0.4479  2.5247  -0.7448 -0.1137 -0.1269
-2.0971 0.4687  0.3605  2.1802  -4.7985
-0.9553 2.0265  0.4517  2.2055  -4.2556
0.9776  -2.3176 0.3569  -0.2631 0.5554
-7.1213 9.2060  1.7937  3.4289  -4.7684
0.6480  -1.6729 -0.4020 -1.3415 0.7070
-2.4579 2.6718  0.5177  1.0081  -1.8238
-2.0972 1.0972  -1.0524 0.5385  -1.7230
-1.9681 -0.3546 0.3193  0.3532  -1.0657
1.2376  -2.8436 -0.1516 -1.7686 1.6920
-2.2727 6.2333  1.1742  2.8062  -2.2386
-6.4800 9.7001  1.5097  3.8411  -4.2775
-0.3542 2.2423  0.1696  0.1892  -1.3404
-4.4471 0.9529  1.5907  2.1240  -2.9215
-0.2948 1.1421  -0.1280 1.4217  -0.5294
-1.0764 0.1841  0.6965  0.7053  -1.1805
4.2275  -5.3095 -1.7070 -4.2319 5.4743
-4.3784 6.5563  0.0969  0.9087  -0.9183
1.2997  -3.5077 -1.1927 -2.2029 1.6199
-0.2453 0.4687  -0.1685 0.1317  -1.8648
-0.4245 1.0764  0.8189  -0.6170 1.1438
-1.7905 3.7217  -0.2814 -1.1408 1.9279
1.4071  -0.7722 -2.4785 -2.5290 1.0180
-1.8005 -1.9126 0.6569  0.4625  -0.6511
-4.5482 10.3358 0.3575  2.9091  -2.7806
-0.8050 1.9764  -1.2522 -1.0232 -1.6722
0.1805  2.6287  1.3945  2.4516  -4.9101
1.6867  -2.1370 -1.9201 -2.1308 2.9204
-1.4277 -1.2567 -0.0035 1.0396  -3.1511
0.9119  -3.9180 -0.6351 -1.6258 1.1897
-2.6393 4.9147  1.0701  2.7570  -3.6856
-2.0470 3.4301  0.8954  1.5063  -3.0227
-0.6884 2.9804  0.3642  1.2863  -2.3191
1.4640  -2.1049 -2.0853 -3.1478 5.5566
1.7168  -1.2923 -1.3724 -1.7475 1.7141
-1.2624 2.4099  1.3402  1.9066  -2.5791
-7.2522 9.2935  1.8051  3.5200  -5.0576
3.0197  -3.9171 -1.7650 -2.8940 3.1813
3.9138  -8.8479 -1.4219 -1.6058 3.0273
-1.9411 3.5213  2.4362  3.1514  -4.7421
-2.6545 1.4656  1.5029  1.8772  -2.5675
-6.6084 8.1359  2.7182  4.3822  -4.6216
-2.8897 1.8146  0.9159  0.8867  -2.3986
2.3641  -5.2107 -1.3070 -2.3012 3.2827
-0.3218 -6.0340 1.1947  -1.0291 0.9685
0.4008  0.5425  -0.7528 0.2519  -4.1199
2.1818  -2.3259 -2.2094 -1.5070 1.6678
-2.5134 6.7486  -0.0561 1.4708  -2.2590
-2.3220 2.4934  0.9986  2.1661  -3.4022
-1.5608 2.7897  0.6863  0.8615  -0.7804
-3.1680 4.4850  2.9120  2.8724  -5.9419
2.5159  -6.7005 -0.0031 -2.2755 3.5288
-0.1198 1.4416  -0.7197 -2.0188 4.3478
1.2504  -2.9530 -0.1577 0.0333  -2.2497
4.3359  -5.3570 -1.6316 -3.9625 4.2602
0.3523  0.4300  1.3605  1.7076  -1.4713
-0.0932 1.9178  -0.5462 -0.1597 -0.7076
0.4059  -0.5596 -1.0272 -0.4973 0.6110
1.6355  -2.3781 0.4366  0.0089  -2.7141
-5.2059 8.7788  2.0983  3.7588  -4.4280
2.9442  -1.0447 -0.6617 -0.0285 -0.9166
0.6633  -1.1171 0.1074  -0.2841 1.1110
-3.3766 4.5718  0.6298  2.0602  -3.3503
3.8403  -4.5648 -2.2303 -1.9608 1.1967
7.0683  -9.1049 -1.7443 -3.7508 5.3828
0.9002  -2.5103 0.1521  -0.8850 1.8991
-0.0129 2.5069  1.1213  2.7921  -6.9455
2.2649  -0.1646 -0.1260 -0.4941 0.5267
0.6171  -0.7374 -0.6625 -0.3751 0.8735
3.3293  -4.2965 -2.3154 -3.1315 2.7739
3.2476  -3.4646 -1.1020 -0.7029 -1.2455
-3.7691 6.9825  0.2694  1.5943  -1.6042
2.0545  -2.0603 -0.3523 -1.2510 1.2094
-0.7122 0.7811  0.0059  0.5301  -2.6054
0.4962  -1.7062 0.1377  1.5433  -0.4455
-3.7139 10.9174 1.1585  3.6109  -3.8896
-1.2414 -0.7672 -0.7351 -1.7244 1.4650
0.5325  -3.1755 0.3911  -0.0213 -1.9914
-0.8855 -3.4360 1.0933  -1.1473 2.0731
-5.1259 7.4235  2.8365  3.5401  -6.2151
2.1265  -4.2402 -0.5323 -0.9316 0.1769
-3.1620 3.3912  1.5453  2.9497  -4.9392
-1.6360 -3.3825 -0.1096 -0.9885 2.5529
-1.6664 6.4522  0.0747  1.8074  -3.5727
-4.7427 9.3009  1.1460  1.9398  0.1469
-0.7947 -0.5887 1.8418  1.3735  -3.0799
1.1677  -1.9602 -1.0435 -0.4158 -0.4274
5.7181  -7.3642 -1.2671 -3.1382 3.9344
-3.3267 4.9917  1.2349  2.1679  -2.4651
0.0429  0.5873  0.6063  1.8410  -4.0689
-2.7250 1.5185  0.0911  0.4181  -1.2071
-0.6393 0.0305  0.8582  0.6614  -0.5993
-1.2862 0.2758  1.0147  0.4878  2.1559
3.2558  -5.2156 -0.3889 -0.9493 0.3877
-1.8537 -2.3935 0.7216  0.2724  -0.5608
-0.5185 1.4240  0.3910  0.4089  0.4879
-2.4575 3.8984  0.4289  1.2530  0.0442
-2.4117 3.8611  -0.8775 0.8462  -1.1415
0.5909  0.6675  0.0095  -0.7705 2.7861
-0.2826 2.4475  0.5250  1.2665  -2.0211
5.4958  -6.8277 -1.2275 -2.7755 2.9753
-0.6788 3.2904  0.5592  1.5824  -4.2735
2.9842  -1.5116 -0.1248 -0.6331 1.4078
2.1168  -4.6582 -0.6900 -0.7013 0.4425
-3.7307 7.8440  2.3275  3.5101  -3.5645
-4.7741 2.1018  2.6144  2.1525  0.9760
-7.5314 11.3179 1.3306  4.3141  -4.3056
-4.2554 6.8195  0.4877  1.6549  -2.0555
4.7703  -4.9515 -2.5931 -3.1379 4.3760
0.1989  -0.9857 0.2077  -1.2797 2.7758
-1.0724 -1.3316 1.1016  1.6309  0.3444
0.0667  -1.5075 -0.5411 -1.0409 2.9422
0.1081  -2.6597 0.2284  -0.9066 3.2064
7.5953  -11.1930        -2.2135 -4.3268 6.2298
-2.3064 0.6811  1.3100  0.6552  1.0832
0.7807  -0.2687 0.4225  -0.9541 2.0723
1.4938  -2.7493 -1.4076 -2.6407 4.2151
5.0735  -10.3247        -0.2881 -2.7671 4.1603
0.0886  -2.6080 1.5589  0.9489  -1.1907
-0.8041 0.5899  -0.0460 -1.6653 1.7794
2.7967  -6.1477 -0.3723 -1.3167 2.8636
-2.4264 2.2205  1.7223  1.7651  -0.7759
-0.6343 5.3296  0.1480  2.7374  -3.6652
2.1508  -3.2772 -0.3073 -0.8445 2.3000
-1.0688 -0.8824 -0.1676 -1.2455 0.9006
-0.3560 2.9061  -0.6355 -0.3818 0.5192
2.5402  -4.0843 0.6106  -0.1799 -0.9024
0.3417  1.6502  -0.3025 0.5027  -2.8219
-2.8100 4.8463  -0.1549 0.6494  -1.2550
-4.5640 4.1329  1.5854  2.9089  -3.1333
2.0011  2.4132  -0.9173 0.3762  -0.6647
2.2563  -3.5432 -1.9619 -2.1990 3.9681
-2.1770 1.1197  0.1079  0.6192  0.7139
0.7543  -0.7165 0.1037  -0.2581 -0.7250
0.9861  3.1858  0.6541  1.9015  -2.1949
3.1931  -7.3388 0.7098  0.6284  -1.3718
-1.6161 2.0760  1.5948  3.1094  -4.1159
1.6387  -2.6402 -0.8562 -1.3630 2.3234
0.7147  -3.4160 1.2990  0.6325  -0.2651
5.9832  -8.6518 -0.4981 -0.9325 1.5117
-4.6542 5.7117  1.9750  3.0257  -4.0254
-6.4220 8.2112  2.7967  5.1142  -4.5085
-0.1942 -4.9483 0.4446  -0.3572 0.7231
-2.3715 5.6463  1.0297  3.5972  -3.9082
-0.5401 1.5020  0.4669  2.3309  -3.5513
-0.1155 3.0709  0.3637  1.3643  -1.3043
2.9593  -5.2697 -1.7532 -3.1581 3.2435
-2.3866 0.8747  1.5722  0.3690  -0.2429
-0.5252 1.7020  0.7404  -0.9406 2.1923
-0.5875 1.4963  0.6638  -0.4687 -0.6077
-1.5433 4.6612  0.1252  0.4980  -0.3995
-5.2337 4.3222  2.0298  2.5400  -2.9100
-0.6862 0.8040  -0.9674 -0.9402 0.8962
-1.6339 1.8383  0.1810  0.8457  -3.1133
3.1074  -0.4713 0.3873  0.7527  -0.8307
-4.2034 6.1505  1.2666  1.9633  -2.5259
-0.4122 2.4305  -0.2838 1.0833  -1.5087
-0.6883 2.1799  -0.3326 0.4186  0.5825
1.2651  -4.2053 0.4446  -1.3484 1.2457
0.5688  -3.7382 1.1677  0.9683  -3.6558
-2.4720 4.7279  1.1128  2.7084  -4.8032
-4.3275 9.1289  -0.7052 2.4695  -3.6437
-0.1760 1.1272  0.8813  1.3810  -2.5215
-2.9857 3.7324  2.0717  2.5465  -1.8243
2.3510  -2.3761 -0.1911 -1.6116 0.3650
1.9784  -0.6835 -2.2105 -1.8625 1.3754
-5.4542 8.2697  0.8839  2.6772  -3.8373
-4.3073 6.8080  0.5940  3.6970  -3.8409
2.2826  -1.2513 -0.7089 -1.2996 2.8773
0.0492  -0.4229 -2.4496 -3.2477 3.8290
-1.8399 1.9339  0.0325  -0.3282 -0.3481
3.6421  -4.3057 -1.6955 -3.6442 3.0429
4.0515  -3.2006 -1.6991 -1.2378 0.9611
1.9052  -2.4977 0.4222  -0.1517 -0.5706
1.8792  -2.7920 -0.5263 -1.6822 3.5504
0.5540  -4.3398 1.3699  0.6428  0.0645
1.1729  -0.4821 -0.6167 -1.2857 0.9614
1.4705  1.5710  -1.7237 -2.8449 4.7643
1.5763  -1.7564 -0.9979 -1.9237 2.3683
-2.6283 2.9647  2.5434  3.4859  -4.7362
-0.8945 1.5957  1.9481  0.9148  0.8119
-1.9408 3.8851  1.8520  2.5984  -3.1881
-1.5803 1.9404  0.3931  0.6863  0.2795
2.2416  -0.6636 -0.7117 -0.1463 2.4300
2.6128  -1.6696 -1.7695 -1.8751 2.4981
-0.2939 2.1577  0.4646  1.2698  -0.8881
0.3406  0.3177  1.6926  1.3046  -2.1159
-4.0186 5.5344  0.5724  0.7589  -0.1061
6.5129  -10.4368        0.1396  -2.3456 1.3672
3.4646  -5.7122 -1.1480 -3.4382 5.6979
3.4906  0.8322  -1.8149 -1.7052 2.4371
2.8321  -7.2424 0.9085  -0.1204 -1.6351
4.0825  -5.5285 -1.6104 -2.3661 2.2551
2.8299  -4.9837 -0.6688 -2.4756 2.9436
-2.6871 4.3624  -0.7823 0.3825  0.3702
6.1886  -11.1806        -1.6940 -5.1189 8.2733
-0.3790 0.5552  -0.4824 -0.9304 0.3895
-6.8288 11.2958 2.7221  4.5900  -6.8647
2.1495  -2.5865 -0.2175 -1.4706 1.4835
-3.0169 1.2846  1.5258  2.5607  -2.5595
-0.6056 1.0396  0.8939  2.1899  -3.3661
-1.3088 0.0659  1.2622  2.3399  -3.8096
3.0512  -3.7827 0.0159  -0.1491 0.8131
1.0553  -4.3116 0.1824  -1.8507 3.1322
4.0993  -5.8569 0.3493  -1.2106 3.1008
0.2607  3.1420  0.1724  0.4981  0.8886
1.1298  -5.3416 -1.3530 -1.2763 0.5234
3.5688  -5.0095 -2.0423 -3.1974 4.2896
-5.9046 7.0122  2.1123  4.3577  -6.9701
-0.8455 2.5642  0.5791  2.2121  -3.7860
0.8165  2.7018  -0.1701 0.9757  -0.1662
3.4270  -1.2098 -1.6873 -1.8549 2.0899
0.0389  3.8906  0.1126  0.0759  -1.2002
-1.7469 1.7599  0.9537  2.7641  -3.6766
0.9141  -1.4789 -0.0417 -0.1016 -2.5613
-3.3246 3.3920  1.2276  1.6570  -1.5470
3.1843  -4.6723 -1.8571 -2.9817 4.5772
-1.0157 0.6383  1.8404  2.4783  -3.4110
-3.0726 5.0741  1.3249  1.5221  -1.6556
3.6337  -6.9977 1.6192  1.0155  -1.2179
-5.3579 10.3548 0.5771  2.2570  -4.2180
3.6329  -5.5518 -0.6071 -2.6657 3.0426
0.1371  0.0337  1.5712  1.2313  -2.9316
0.8799  -1.3360 -0.7162 -1.4301 1.2828
-5.0005 3.4261  0.2802  2.9276  -3.8478
2.8136  -3.9661 -1.5013 -1.9049 2.8535
-2.7694 3.2151  2.0998  2.6392  -5.2870
-0.6054 -2.3218 -0.0440 -1.3270 1.1099
7.3492  -10.7174        -3.1222 -5.2042 6.2356
-3.7254 2.5963  0.1434  -0.1624 -0.9774
-0.2184 -0.3909 -1.0329 -0.0449 1.2483
6.4865  -9.1005 -0.6497 -2.2524 2.5262
-2.0141 1.5172  0.5877  0.0876  -0.3366
-1.9028 5.1911  1.2224  3.8013  -6.3072
-1.5920 1.0567  0.8061  1.3967  -0.9429
2.6006  -0.7874 1.3491  0.2901  -0.5158
4.0150  -2.3033 -1.4435 -1.3867 3.3209
-2.9135 4.1573  0.8788  1.4314  -2.4737
-0.7222 0.8549  -0.2735 0.9593  -1.5730
-4.8527 4.8111  1.5883  3.5127  -5.0133
-4.0331 5.2087  1.7987  2.8969  -3.1629
5.3749  -8.9812 -0.5380 -1.9171 1.9210
-2.5033 -0.2233 1.3161  1.7458  0.7383
-0.0990 -1.0750 -0.0123 0.1611  -0.8560
-1.2517 2.4439  0.9363  0.4656  -1.1870
-2.7756 1.4324  1.5057  0.7441  0.9240
2.4375  2.6831  -3.3484 -1.5529 1.3428
1.8022  -4.4547 0.1295  -0.7289 1.2178
-1.7836 3.0123  1.3285  2.7618  -3.9673
-3.6606 5.4559  -0.0314 1.5795  -1.2256
-2.4641 -0.9851 0.7474  0.2010  0.3038
-1.1993 1.5671  -0.5225 0.0774  -0.6175
-1.8831 5.0288  1.6521  3.1774  -2.3149
5.4423  -3.0004 -3.1902 -3.7613 6.6851
0.3184  -1.2673 -0.0750 -0.5394 2.8784
-1.3129 2.6442  0.0551  0.6299  -3.1155
-1.4004 2.5613  -0.6731 0.1175  1.4309
2.7831  -6.9745 -1.7398 -3.1631 6.4396
-0.4665 -0.8091 1.5027  0.3899  -1.6690
2.2434  -4.3229 -1.1149 -2.3199 0.5219
3.6611  -5.5428 -0.1529 -1.8714 2.5654
-0.2845 2.5159  -0.2993 0.0949  -1.4332
3.0184  -1.5107 -0.4736 -0.3250 -0.4027
-3.5156 4.1253  1.5325  2.1437  -3.2976
0.8737  0.4424  -0.3561 -0.6510 0.3615
0.4787  -0.9102 -0.9895 -1.7392 2.7866
0.2723  1.8757  -0.4315 -1.1315 0.2183
-3.6946 4.9885  2.3216  2.6852  -4.3818
-0.3867 2.3650  0.6624  1.4671  -2.0464
-1.3910 1.3827  1.3897  1.5451  -1.4237
6.9473  -11.2997        -1.6621 -2.8471 4.0788
4.5191  -5.8859 -2.3106 -3.6197 4.0536
1.0129  -3.6214 0.2924  0.9234  -2.3491
2.1864  -6.0051 -0.6632 -1.8969 2.1551
3.5599  -3.8632 -1.1160 -1.2723 3.4357
-3.6666 6.6014  1.9797  1.9073  -2.1224
3.6690  -7.1079 -1.1006 -3.1754 3.7843
3.1739  -4.8581 -0.7604 -1.9546 -0.5670
0.8253  0.7509  -0.1355 -0.7713 1.2487
1.0096  0.7533  -0.3669 -0.4953 0.7188
-0.2353 0.2122  -0.4352 -0.0829 0.4166
3.9681  -7.7524 -0.5399 -1.9839 5.4513
-9.6940 10.4609 2.5714  4.6209  -5.5150
-7.4470 9.4633  1.9922  4.4545  -4.9718
-3.2738 4.3568  0.6131  0.7179  -1.7794
1.4320  -3.4221 1.4319  -0.8617 0.6067
-1.2488 -0.9322 -0.0033 -0.7059 0.3377
-2.9295 0.3017  0.5786  0.9607  -1.3699
6.2870  -9.1775 -2.3049 -3.8506 3.7630
-0.1581 -1.9201 2.8794  1.6634  -1.9152
-4.1297 6.3692  -1.2222 0.8780  -2.3676
1.9402  -5.0946 0.2918  -1.7624 2.9079
-2.3831 -1.3972 0.2766  0.3252  -1.2682
-3.0853 6.7659  -0.5744 0.0426  2.0611
0.5634  -1.8239 0.5458  1.3584  -1.3198
1.0916  0.1117  -1.0584 -1.3839 0.9072
0.7306  -1.4824 0.0571  0.3280  -0.5927
-1.7894 5.1230  0.0080  0.3819  -0.1832
7.2481  -12.9049        -2.2987 -4.8460 7.7613
-2.9654 7.8581  0.0311  2.3205  -1.5831
0.9545  -2.7729 0.6708  -0.6468 2.4223
-0.4521 4.1578  -0.5589 -0.0679 -0.4374
-0.8962 -0.6303 0.2784  -0.2621 -0.3616
5.3871  -3.4277 -2.1692 -3.4987 5.1446
1.4012  -0.8282 -0.3315 -0.6229 1.8488
-0.1334 -1.4111 -0.9165 -2.5027 4.6752
3.6007  -2.9431 -0.4173 -0.3128 -0.1075
1.6183  -6.1814 0.0352  -0.9908 0.3781
-3.6754 -0.3191 1.7507  1.7073  -3.6816
-4.5031 5.5572  0.5135  1.4783  0.5229
-0.8550 0.6586  1.3751  0.4690  -0.1720
5.2870  -8.0128 -1.7599 -2.0566 4.4458
-2.4425 6.2641  1.7919  3.7965  -5.4417
2.4332  -2.4219 -0.2715 -1.0493 2.3668
0.9674  -1.5400 0.8235  0.6211  -0.3157
3.0783  -8.3725 -1.2137 -3.3211 3.9146
-0.6487 1.1362  -0.9024 -0.3284 1.4988
1.8166  -1.5937 -0.1249 0.2577  0.6280
0.6157  -1.9518 0.2326  -0.6878 1.0479
-4.7872 7.2639  -1.1332 0.7618  -1.3158
-9.0625 10.5877 3.8457  4.8447  -5.6288
-3.5888 6.6981  0.0580  0.2628  -0.6904
-3.0324 -0.1997 0.7253  1.3830  -0.6959
1.4258  -0.3629 -1.5651 -2.1433 2.2155
-2.7801 4.7804  1.4993  2.7318  -3.1275
0.0731  -4.9529 -0.0017 0.1327  0.6553
2.2131  -3.1232 -1.3789 -1.4806 0.0024
1.5211  -3.0145 -0.0976 -1.8731 -0.1080
-4.7591 4.7059  0.2664  1.7319  -0.6888
-1.2525 1.0414  0.3006  1.0472  -1.8177
-0.9870 1.3240  1.6198  2.3583  -2.6075
-2.7561 3.9732  -0.6537 1.5955  -1.0332
2.1089  -1.6427 -0.1431 -0.5944 2.5510
1.1583  -5.4031 1.1519  -1.6219 1.3652
0.0559  -1.0336 0.1547  0.2156  -1.8282
4.8516  -2.3352 -2.1648 -2.1100 2.1461
-0.3420 -0.9597 -0.0988 -0.8674 2.8457
-0.5497 5.7444  -0.1798 0.5611  -0.3850
-3.2663 3.2344  -0.1370 0.9200  -1.0259
-1.1526 0.1265  1.1635  2.7389  -2.5436
1.9463  -7.0687 0.4033  -1.1312 -1.4097
4.8235  -6.3110 0.2379  -1.1353 2.5286
-0.5694 -3.3840 0.5894  -0.6293 0.8406
-1.8952 4.0520  1.0591  3.0481  -2.5200
0.4443  -1.3365 2.7853  2.1494  -1.5714
1.7355  -0.2087 -0.5118 0.6244  -1.7241
6.2152  -8.5480 -1.1358 -3.2563 5.9354
4.5429  -9.5447 -0.7470 -1.3777 2.6812
0.7759  -2.0713 -1.6324 -1.5238 4.2185
-4.5698 6.6708  -0.4028 0.5922  -1.4490
-0.2550 3.0113  0.1787  1.1850  -1.4582
-1.8381 0.8055  0.7057  0.7821  -1.1215
-0.9166 -0.3262 0.4151  0.2310  -1.0275
1.6114  1.1734  -1.8111 -1.9198 3.3296
-0.1792 0.5197  1.2267  1.1367  -2.0617
-0.4647 0.0188  -0.7029 -1.3998 1.4891
1.7269  -0.0823 -0.7438 -1.1740 2.6337
0.7233  -2.1320 1.3765  0.6745  -1.5772
-5.5641 10.9045 0.7849  3.4627  -3.9149
-2.0483 5.5348  -0.2118 1.6910  -0.6476
5.9088  -7.7258 -1.7406 -1.9527 2.6915
-1.2341 1.8019  0.9370  2.0491  -1.5003
2.3715  -4.4441 -0.2279 -0.5424 1.6547
-1.8187 2.9043  0.9491  1.1212  -3.1667
2.0162  -5.4982 -0.8452 -2.7107 1.6486
1.2464  -0.7924 0.4882  0.6263  -3.5925
-3.4728 3.6116  0.4979  1.3301  -0.0005
-3.1471 3.2212  1.5164  1.9377  -3.5910
5.3730  -8.1069 -0.4165 -1.2337 1.2168
1.3778  -2.9256 -1.1254 -2.4438 2.8804
-1.6576 5.2303  0.7689  2.4854  -4.5723
-1.6847 1.9269  1.9117  3.1304  -3.4774
2.7768  -4.5054 -0.5663 -0.9914 0.1623
-3.1029 3.2119  2.3645  3.0971  -3.4340
2.7495  -8.4736 -0.8341 -4.1800 5.9171
3.5299  -5.1557 -0.4435 -1.8403 1.7154
-4.3653 7.4396  2.7225  3.6807  -3.2192
-0.4603 1.7709  -0.2102 -0.3410 -1.6801
3.0940  -5.0987 -0.2542 -2.0112 2.8820
-2.6675 1.1051  -0.3886 -0.0770 -1.3968
0.8354  0.0011  -2.4391 -2.2820 3.9782
0.8986  -3.0883 -1.2134 -0.4597 0.7456
1.2384  -1.6090 -1.1813 -1.9308 3.8155
-0.6898 0.8406  -0.1395 -0.2964 1.0670
1.4218  -0.7837 -0.2770 -1.2629 1.1603
-2.4806 6.9697  0.3517  2.0293  -0.6991
-0.6814 1.2449  -0.7072 -0.9412 2.0896
1.2489  -0.7521 0.2367  0.4270  -3.4275
-0.2346 1.4545  -0.2881 0.0882  -1.0895
-3.9068 4.9119  0.7052  2.9639  -4.5730
1.7768  -1.7967 -1.9102 -0.9297 1.5865
5.3450  -4.3963 -3.0849 -3.0829 2.1064
0.4645  -2.6362 -0.1481 -1.1242 4.4997
-5.6300 9.1089  1.5447  2.9840  -2.6409
-0.6209 1.1621  -0.0046 0.8037  -2.1544
0.6850  -0.8730 -1.4108 -1.4731 0.8313
-2.9701 1.9606  0.9056  1.1598  0.2538
0.7350  -1.6465 -0.1910 -1.4725 1.4101
-5.7713 7.1957  1.8163  2.4157  -1.5539
-2.9332 4.1081  0.5525  1.7553  -4.3304
-1.2056 4.5059  2.0247  2.4411  -2.4877
8.5325  -10.8880        -3.2202 -5.1168 6.5918
0.1508  -1.5342 0.8263  -0.9315 3.6245
1.4954  -3.9330 -0.0101 -0.8323 1.4833
-0.7834 1.2452  -1.4836 -0.7707 0.4555
3.1483  -1.0567 -0.5529 0.4044  -1.6473
1.9442  -2.7611 -1.2186 -2.2144 3.6149
0.7451  -4.1377 0.1150  -1.1416 1.6770
5.8703  -6.4343 -2.0489 -2.6131 3.4598
-1.3458 2.5032  0.7078  -0.3863 0.5419
2.1267  -6.3160 0.9989  0.0301  -0.7335
-1.2378 3.8701  0.3034  1.7471  -3.2886
-3.7487 5.4623  2.8018  4.5717  -4.5802
-0.7397 -2.6073 0.5950  0.0939  1.1266
0.0812  -4.0941 -0.8856 -1.5777 0.5514
1.8606  -2.7680 -1.5218 -1.3350 2.3508
4.3271  -7.3951 -0.3352 -1.7726 2.5364
-7.6550 7.7087  2.6894  5.1451  -7.1223
5.2270  -7.6145 -1.2425 -2.5371 4.2038
-1.7866 3.8639  0.3205  1.9139  -2.9506
1.0461  1.1188  -1.1690 -0.6457 0.6325
3.1219  -3.7948 0.1574  -1.5537 1.2770
2.2227  -3.5928 -0.0304 -1.9834 2.8970
0.9263  -0.9811 -0.1220 0.5047  -0.8640
3.5807  -5.0906 -1.6153 -2.4392 3.8649
2.1089  -5.1454 -1.0811 -3.5424 5.2434
-2.8482 4.9117  0.7512  1.5861  -1.6233
-2.5044 1.8518  -0.0704 1.0777  -0.6081
3.9261  -7.1519 -1.6845 -3.2387 5.0393
3.9660  -5.4291 -2.6259 -3.5429 5.7526
2.2465  -0.3729 -1.9170 -2.7538 4.3398
-3.0876 5.8562  1.4013  2.6517  -1.5538
3.6539  -3.3537 -2.3907 -3.2044 6.2477
-6.0851 7.3622  2.3588  4.4269  -6.3733
-0.1265 -2.3510 0.7884  0.7510  -0.6617
-1.3372 4.5622  0.4002  1.4747  -1.5901
-2.2539 8.3321  -0.4530 2.6030  -3.2452
0.2100  -0.9514 -0.2113 -0.3807 -1.2841
3.0864  -5.3570 1.7640  0.6165  -1.8704
3.1761  -5.5808 -0.0830 -1.6112 3.7923
-2.5940 3.7378  -0.6711 0.2060  0.3736
3.1438  -5.2984 -1.1320 -1.9377 0.9083
-4.2891 7.1356  0.6149  1.9907  -1.9069
1.7075  2.1179  -2.6240 -1.2565 1.7501
0.0345  -0.8342 0.3371  -0.2231 2.1266
-2.3179 1.8838  0.2630  0.6607  -2.8479
-0.3823 1.5213  0.5547  0.1586  -0.9721
-3.4821 3.1023  1.7519  2.1839  -3.0579
-1.6055 -2.3800 0.1109  -0.7348 0.3491
-3.9870 7.4917  2.2705  5.3114  -6.8406
1.4592  -1.2474 -0.5663 -0.6155 0.9769
-0.0531 -2.6896 0.1672  -0.8838 1.1307
0.7380  -3.4900 -0.2029 -0.9995 1.7892
3.1820  -2.6736 -1.9570 -2.9740 4.7955
5.9675  -10.8097        -1.3411 -3.7420 2.7083
1.4670  -1.3007 0.5413  0.1742  -0.5662
1.4145  0.2300  -0.6638 -0.5708 -0.3083
-2.0732 1.2891  -0.1826 -1.0373 -0.1649
-0.8313 1.9607  -1.1785 0.4959  -1.2803
-5.3655 10.1051 -0.5138 1.8679  -2.8265
-3.1418 6.4593  1.0307  1.9143  -1.4890
3.1231  -2.2577 0.3187  0.1398  -1.0507
0.8012  -4.7808 0.0414  -0.0827 1.3814
-5.0308 6.4262  1.4415  1.8968  -1.5698
-4.9807 8.0631  0.6794  2.9607  -2.2124
-0.1500 0.1837  0.2990  2.0872  -1.6187
-2.2420 3.4669  0.4107  1.1389  -1.9502
5.1286  -4.6546 -2.9548 -3.7165 5.5497
-2.8385 3.9240  1.1536  2.4070  -0.4973
0.9855  -1.5399 -0.3644 -0.8762 1.2552
-2.2279 4.3971  1.3544  2.1088  -3.9034
1.5973  -6.0710 -0.4003 -0.4330 0.0633
-2.1051 6.8957  -0.6004 0.2036  -1.4002
-0.7717 -0.2048 -0.6153 -1.3709 1.2898
2.4414  -3.4176 -1.3681 -2.1629 4.3914
-1.4876 0.2077  -0.1014 -1.1000 -0.5831
-2.6950 4.5784  1.3538  3.2245  -4.2974
-4.2529 5.5551  1.5390  4.0357  -7.5744
-2.9287 3.5803  0.5777  0.8655  1.3993
2.5344  -4.9867 0.5179  -1.0350 2.7422
3.0614  -4.7356 -0.7293 -2.4210 3.1250
-3.6962 4.1355  0.4984  1.8952  -3.3275
-7.6469 10.7763 2.6867  4.8941  -8.0446
-1.5223 2.5141  0.1813  0.6621  0.8764
0.1228  -1.3235 0.5892  1.3070  -1.2231
0.0989  -0.0847 -2.2281 -1.2369 1.1576
-1.8880 3.7326  0.8108  0.5909  -0.1263
-1.4406 2.3498  1.4635  0.7780  -2.2732
-1.1298 -3.5991 -0.3982 -1.5385 2.7277
2.0924  -0.7066 -1.9065 -2.2425 2.7692
4.5672  -8.3854 -0.3144 -1.5374 0.1964
4.0447  -8.1140 -1.3951 -2.5707 2.9803
-7.1395 11.4860 1.3864  4.2512  -6.1493
-2.0051 2.5918  -1.4969 -1.7348 1.1058
-0.3699 -3.1618 1.5408  -0.5130 -0.0288
2.0626  -1.7056 -1.1511 -0.1754 -1.1181
-1.3349 3.8346  1.5302  3.7933  -7.4689
0.6424  -1.9617 0.8136  0.6025  0.2889
-0.0569 -1.2303 -0.7110 -1.4262 1.5984
2.7280  -1.9819 -0.5133 -1.3293 2.7456
-1.4311 1.9811  -0.4251 -0.3265 0.2494
7.8028  -9.4853 -1.1404 -3.8681 5.4636
-4.3974 7.4926  0.7108  2.2999  -1.6378
-0.2174 1.5132  -1.0450 -1.4728 1.5583
3.2682  -4.7788 -0.0399 -1.5076 2.1258
-3.7609 5.2226  1.1311  3.3747  -3.7974
-3.0525 6.2250  1.0063  1.9269  -0.3325
2.8492  -10.4050        -0.3748 -2.8034 2.8858
4.6395  -9.5896 -2.6285 -3.7164 5.2128
0.4375  -1.9292 1.5059  2.0163  -3.1228
3.1089  -4.4131 0.1146  -0.5879 0.5658
3.6203  -2.9977 -2.0108 -2.4492 2.5933
0.1911  0.7780  -0.7111 -0.5121 0.3766
-0.4134 -1.6502 0.3401  0.0950  0.6747
5.4582  -6.5767 -0.9562 -1.9117 1.6470
-2.3776 4.6645  -0.4126 -0.3375 0.0054
-1.1561 4.1651  -0.5127 0.3385  -0.4148
4.0667  -5.2016 -1.8959 -2.1620 4.1459
5.2751  -5.3241 -1.0670 -0.4489 0.0885
-3.6196 3.1324  0.7902  1.3437  -2.7755
4.0814  -4.4918 -2.4919 -2.7043 2.7377
-1.4804 2.8231  0.8902  2.6607  -2.0045
-4.1503 3.8411  0.3373  2.5648  -3.7385
-0.0390 -3.5108 0.5029  -0.1847 0.8526
2.4634  -3.3685 -1.1407 -1.9762 3.5357
-2.3655 2.9620  0.8799  3.3480  -4.4961
2.6907  -4.1766 -1.6618 -2.2140 0.9785
-0.2518 0.7515  -0.6527 -2.1332 5.4749
1.9911  -1.0226 0.8243  0.3914  -0.9759
-1.7354 -1.5068 1.5787  1.2625  -1.0019
-2.2338 4.9383  0.0814  1.7868  -2.5735
-0.6437 2.1939  0.2847  -0.3251 2.0071
-1.5749 3.0350  -0.2112 0.5021  -0.9122
-2.3668 3.6051  -0.2553 1.6078  -1.8228
2.7397  -3.7193 -1.2919 -2.1129 2.6839
-4.6845 9.7787  1.2640  2.2443  -1.6923
-1.2625 5.7726  -0.6949 -0.6354 0.2054
-0.5119 -1.4422 0.1413  0.4010  -0.0173
-0.2942 -0.3628 0.2045  0.2086  0.9635
-1.3197 1.4156  0.9114  2.1847  -1.8727
-0.9512 -0.8593 0.1581  -1.1598 3.0509
-0.4016 -0.4059 -0.1520 -0.6458 1.5235
-3.0907 7.9386  0.6945  2.2612  -1.3022
0.5738  -1.3235 -0.9791 -2.0716 4.1197
-0.4549 0.2995  0.7334  -0.2322 0.5851
0.4917  -2.3330 0.1681  -2.1274 3.9196
-2.7926 2.1751  2.0890  2.4651  -3.0163
-3.3414 1.3143  -1.3695 -1.6741 2.2551
5.5252  -6.2633 -2.1288 -3.9519 5.3313
-1.4938 0.4762  0.3879  -0.3486 0.7713
1.2478  -7.1553 0.2952  -0.3430 0.6258
-0.0393 2.8450  -1.2631 -1.2262 0.1621
0.4784  1.5054  -0.3490 -0.2598 0.8423
-4.2097 8.0892  0.8289  0.6664  -1.4368
1.8150  -2.9082 -0.9773 -0.7139 1.8561
-3.8669 7.2042  1.3889  2.6774  -3.9683
0.8743  -0.8586 -1.3240 -1.4589 3.7128
-1.5155 2.7535  1.1433  0.3739  0.3033
-2.6847 3.5092  1.4645  2.2376  -2.9294
-0.9927 3.6740  -0.3246 1.1175  -3.5086
1.3044  -4.0794 -0.4277 -2.5249 4.8999
-1.6289 4.4657  0.7458  1.6478  -1.7098
2.0129  -3.2345 -0.3806 -1.0997 -0.9494
4.8022  -8.1390 -1.9819 -3.0267 6.1509
0.2568  0.9395  1.2097  1.7096  -4.8893
-3.1821 4.8926  0.8657  1.6851  -2.4158
-0.1532 -0.8439 0.8469  1.4097  -0.6567
-0.7385 1.5587  1.6408  1.8841  -3.5514
3.4443  -4.5092 -1.5346 -2.4898 3.8853
-2.3134 5.3345  0.1015  1.2901  -1.0633
-4.8283 5.2371  2.4399  2.7430  -2.3558
0.5485  1.2032  0.3846  2.0145  -2.2322
-1.3571 0.2193  0.3575  -0.7565 -0.3108
1.9941  -7.1928 0.7599  -0.4169 2.4927
0.9865  -1.7207 0.1010  0.9397  -0.2725
-2.9624 1.1536  0.2498  2.2854  -2.9191
2.4291  -4.7641 -0.6257 -1.0173 1.7849
-1.6858 7.9285  0.0085  2.3466  -2.3241
2.0286  -4.1705 -0.7643 -1.8244 1.7146
-0.9380 3.8018  0.1647  0.9082  -0.9154
-1.3231 4.3573  -1.8014 0.0065  0.4985
2.7199  -7.4398 -0.5390 -2.3172 3.5529
-4.2725 5.9653  1.3965  3.0000  -4.2225
-0.8551 -1.4691 0.0617  -0.0661 2.3231
-0.0803 2.0792  -0.9074 -0.4656 -0.3425
-3.3306 1.5894  1.3189  1.8954  -1.7355
-1.5515 -1.2097 1.3213  1.5909  0.3624
1.1744  1.1967  -1.5538 -2.9029 2.3924
-0.1355 -0.3955 0.0508  -1.2893 2.5855
2.6374  -5.6812 -0.2542 -1.6783 1.9380
1.9188  -3.4651 -1.3043 -2.2268 2.9790
5.1404  -10.5317        -0.7422 -3.9735 5.6612
-1.4471 1.9488  -0.1541 2.1396  -1.5949
0.7505  -4.5310 0.6172  -0.2424 1.0076
0.0450  -1.2706 -0.8085 0.4259  -0.7727
-0.7805 0.7686  0.7500  -0.0308 1.2675
1.3118  -0.6384 1.1529  0.6375  -0.4349
1.8125  -0.2460 -1.2566 -0.3418 1.7187
-1.0178 2.1670  1.4580  1.7349  -2.2716
-1.8236 4.2726  0.1110  0.9709  0.9120
-1.4441 2.0006  -0.4702 -0.2977 0.9798
2.3399  -2.0735 -1.5160 -1.1285 3.5116
3.8038  -7.1044 -1.2882 -3.6572 6.7581
0.5256  -0.9748 -0.1481 -1.4328 2.4033
-1.6366 1.3431  0.4618  0.5951  -0.4351
5.3450  -8.8188 -1.8938 -3.9449 5.1808
-0.8479 -0.8551 0.7755  -0.0832 1.5950
-5.3994 6.1158  1.5614  2.5402  -3.5253
0.8850  -2.2582 0.1726  -0.5574 0.4379
3.5667  -4.2174 -1.5284 -1.1893 0.1954
7.0753  -8.3641 -1.7286 -4.2023 3.2329
-0.0386 -1.6132 -0.2129 0.2858  -0.2089
-0.0231 -0.7845 -0.4689 1.0177  -1.8390
8.2502  -11.9359        -2.5711 -5.8824 7.3009
1.2490  -4.5300 -0.9911 -1.8744 4.1448
4.7518  -3.4870 -2.3816 -3.6511 6.7458
1.4832  -2.4663 -0.3858 -0.8219 0.1139
-9.0711 9.5667  2.4383  3.4002  -5.1676
-1.5807 3.7503  1.9013  2.6704  -3.8799
2.2049  -3.1468 0.4207  0.2166  1.1006
-2.7408 3.7777  -0.5554 -0.5191 1.6654
3.4616  -3.1537 -1.0830 -1.1723 2.7392
-0.5917 -0.1885 -2.8372 -1.1728 1.1314
-3.9153 7.1379  2.1067  3.1054  -4.1127
-3.6779 5.1407  1.8207  3.0976  -3.2781
-4.6787 2.0595  0.0559  1.6005  -1.2239
3.7361  -8.3795 0.2584  -1.8967 3.4402
-1.8532 3.1183  -0.1107 -0.1917 1.5777
-1.2638 0.7848  0.7520  1.0287  -3.2202
-1.0556 1.3481  0.7780  1.1696  -0.5003
0.7745  -0.2088 0.4166  0.2351  -0.3018
-0.0022 -0.8861 -0.3292 -0.8276 2.3281
0.8030  -1.1232 0.0248  0.2344  -0.8833
1.4573  -2.1843 -2.8533 -3.6749 3.1853
-1.0518 -1.7991 0.4545  0.0096  -0.7066
-1.1351 0.7773  -1.1664 0.6019  -0.5526
5.5651  -6.7046 -1.6469 -2.3030 0.9888
-0.5644 -1.0988 1.2500  1.3426  -1.1473
-4.4502 7.5072  2.5881  4.0445  -5.9344
2.5982  -2.2481 -1.6995 -2.8563 5.3876
0.8999  -2.4861 0.9885  0.2751  -1.5008
-2.5240 -1.6199 0.7268  -1.1697 1.2342
1.3769  1.1092  -0.5676 0.4682  -0.8608
-0.5973 1.7690  0.0996  1.2475  -1.7826
0.1309  0.0166  0.1225  0.1009  -2.2213
2.8851  -1.3241 -2.3065 -2.5759 4.3331
1.3752  -4.8406 -0.6519 -1.2483 0.8767
-0.1963 0.1188  -1.0001 -1.5434 2.6502
-1.3740 -0.4191 1.4978  1.8454  -3.6808
-4.7416 7.9051  1.5957  2.8933  -3.0067
-1.8111 0.4133  1.1173  -0.1777 1.0142
-1.2412 3.6743  2.1365  3.6952  -6.3356
1.9193  -3.4584 -1.3778 -3.1764 2.7833
-3.8253 6.5683  -0.2075 1.0872  -1.6349
1.6780  1.2632  -0.1130 0.7130  -4.4024
-0.9485 -1.2104 -0.5382 -1.1735 3.4239
-4.5650 4.3862  1.3859  1.2359  -1.8054
1.9773  -1.3463 -1.5520 -2.2522 2.8898
2.4078  -2.9109 -0.6743 -0.0165 -0.9440
0.3715  -0.1670 -0.1009 -0.3263 -0.0872
0.5679  0.1873  -0.8745 -1.6015 1.4309
-0.6842 0.1283  -0.4588 -0.1423 -0.6773
1.7070  -1.5099 -1.4849 -1.2698 1.9585
-0.2969 0.5035  1.1103  1.3413  -1.8636
-4.1458 5.7239  0.7522  1.6538  -2.3539
-1.8412 3.2143  0.2669  0.9047  -1.9815
-3.7589 7.8156  0.9933  2.1697  -4.6476
3.2474  -5.3116 0.7499  -1.2321 0.1815
-2.7810 3.2814  1.0390  0.9881  -0.6160
1.8989  -5.7745 -0.0570 -1.1761 1.2865
0.8034  -1.9803 -0.1954 -0.1165 1.4836
4.4848  -5.5969 -1.2575 -2.1788 2.2267
0.2425  -0.4262 0.1768  -0.1932 -1.0754
-1.1564 1.2646  0.6763  1.0117  -1.9212
-4.3687 10.6175 0.1485  2.5306  -5.6415
1.3974  -2.0608 0.5826  -0.7620 1.7180
3.2521  -2.0690 -0.8301 -0.1232 -0.8999
-0.2714 -0.3250 0.3719  1.5082  -3.2606
5.7235  -11.1107        -2.2926 -4.3769 6.4541
-0.2020 3.2147  -0.7595 -0.2567 -0.0042
-0.6314 3.6800  0.1109  1.8007  -1.9635
2.7657  -6.7675 -0.1108 -1.7896 2.6966
-3.1784 7.8931  2.4099  4.1467  -6.1960
1.1821  -3.6728 0.5376  -0.3268 0.6758
4.9887  -5.9166 -1.8980 -3.1488 3.6439
5.7063  -8.8091 -1.8458 -3.9914 5.9057
-1.7633 -1.6283 0.2578  -0.1647 -0.8288
-1.2582 -0.0052 0.8811  0.4968  -1.6214
-2.4527 -0.2596 3.2899  4.0349  -5.1235
1.2408  -1.7514 -0.1724 -2.1292 0.6260
-2.5249 3.6058  1.8578  4.1317  -4.8009
-4.9873 4.9580  2.4180  3.3657  -2.3548
-0.1638 0.8909  -0.0949 -0.3482 0.0394
-0.9032 -0.9427 1.0875  1.1299  -2.7888
0.3651  -0.7129 -0.5027 -0.3235 -1.1916
0.0391  0.7404  0.4343  1.2898  -3.1464
3.5301  -3.3031 -0.9223 -1.5694 1.3410
2.9198  -3.0992 0.3856  0.0661  -0.2709
-3.2665 5.6979  2.6853  2.7985  -5.4431
-0.2378 4.4839  -0.2749 1.0490  -0.6557
-2.5407 4.4203  2.1264  2.5906  -4.7691
5.7630  -10.8356        -1.6785 -4.2055 7.0107
5.9709  -7.4768 -1.7070 -2.8526 3.9154
4.6566  -5.9707 -1.2094 -1.2433 1.3762
0.3939  1.4879  0.8006  -0.1293 -0.2203
-2.2509 2.4802  0.6666  0.3937  -1.0578
-0.2754 1.1946  -0.8792 -0.1433 -0.5816
-1.2381 0.9701  0.5409  1.9915  -4.1601
1.4658  -1.9142 -0.7618 -2.2399 1.2469
-4.2268 3.8835  1.5184  2.5285  -4.0761
1.4157  -4.5604 0.3803  -0.8587 0.4959
1.5448  1.2323  -0.9192 -1.0926 2.0569
3.8077  -4.0098 0.3172  -0.8057 0.4548
-0.3963 -2.2664 -0.1964 -1.0420 1.3979
2.0541  -0.1740 -0.0403 0.7643  -0.4396
2.6312  -1.9144 -1.2494 -1.9162 2.2302
-2.9437 3.8213  -0.0565 0.6835  -2.7778
3.4678  -3.9416 -1.5048 -1.6361 2.7386
-0.0539 -3.1000 -0.8091 -1.2315 1.9487
-3.5170 1.4112  1.4736  1.7282  -4.9444
-9.0146 14.3964 2.0839  5.2696  -7.3661
0.5072  0.3190  -0.0441 0.7680  -1.4737
0.8972  -7.1556 0.5221  -1.0747 2.5709
0.8011  0.7317  0.8769  1.8932  -1.2861
0.3937  0.7923  -0.5214 0.0724  -1.4930
-3.0487 1.9425  2.6020  1.7613  0.0320
-1.5053 3.1937  -0.0792 -0.5111 0.4972
2.0507  -2.6723 0.0163  -0.7559 -0.5110
4.5216  -6.6360 -1.6465 -3.9484 4.6856
-2.4031 4.7908  0.1255  0.7607  -2.9856
2.9910  -8.0360 -1.0897 -2.4757 3.4930
-7.0830 10.4588 3.2023  4.5412  -5.9284
0.6560  -2.9996 -1.2589 -3.1435 4.5602
-1.5153 1.3200  0.5281  0.2446  0.0365
5.4255  -7.4043 -2.2059 -4.2299 5.7056
4.5128  -6.9445 -1.9480 -4.2377 5.7559
1.1136  1.3224  -0.7601 -0.9377 -0.3951
-4.2344 4.0333  1.5041  1.4493  -1.2218
0.7940  4.2672  -0.1554 1.3052  -0.4709
-1.4686 3.2139  0.0394  0.1327  0.0811
0.9493  -3.8048 -0.2005 -1.2514 2.6245
2.5734  -0.3121 -0.9718 -1.7511 1.6905
-3.2990 3.0144  0.3571  0.3254  -0.7613
-0.2080 -1.9028 -0.9613 -1.5301 3.2681
-2.6669 6.6258  -0.5025 -0.8962 0.8036
3.0630  -3.5218 -0.4742 -1.5363 1.1947
1.7929  -3.1717 -0.7309 -0.6957 0.0946
4.8251  -10.6575        -2.4324 -5.1605 5.7833
2.3167  -1.4522 -1.7630 -3.1995 5.1155
5.6053  -3.8088 -0.6453 -0.3898 1.4982
3.7842  -5.8421 -1.5741 -2.0880 1.5920
-0.2261 -2.9565 -1.0372 -1.0685 1.5393
-0.7327 1.0013  -1.1731 -1.0208 -0.1063
-1.3878 3.0745  1.1354  1.4970  -1.6942
3.8072  -7.1766 -1.2740 -2.2984 1.9618
-0.2232 0.2870  1.2066  1.1675  -2.6136
-6.8420 9.5966  1.3530  2.8383  -4.5655
2.1836  -6.7182 1.9217  0.5927  -0.0226
-5.9038 6.3549  1.5284  2.0922  -2.7028
2.0107  -2.3873 -0.1091 -0.5561 0.8299
-2.8463 4.5380  0.0158  0.8478  -1.1618
-2.7166 5.2981  0.0488  0.4685  -0.4260
3.2711  -6.9768 -1.6203 -4.2629 6.5245
6.6259  -12.9042        -2.0041 -4.7507 7.8660
2.1149  -1.5422 0.3103  -1.0221 1.0749
-4.6092 2.8995  1.8690  3.1838  -3.8306
2.4278  -2.9152 -0.7684 -1.6125 2.8359
3.0111  -10.2852        -0.0343 -2.9178 3.4327
3.1877  -1.5248 -1.8753 -1.4099 0.9658
3.7312  -0.5776 1.1200  0.0276  -2.9906
-4.1369 1.1929  1.9728  2.7076  -2.9553
0.2059  -4.7571 1.3315  0.6214
3 attachments � Download all attachments
causal5.R	causal5.R
20K   Open as a Google document   View   Download
shawcov.txt	shawcov.txt
1K   Open as a Google document   View   Download
data3.txt	data3.txt
1833K   Open as a Google document   View   Download
Reply

Reply to all

Forward



Reply

|
Jonathan Livengood
 to Peter, me

show details 4:01 PM (3 hours ago)

Fantastic!  Thanks.

Jonathan

- Show quoted text -
On Wed, Feb 3, 2010 at 1:26 PM, Peter Spirtes <ps7z@andrew.cmu.edu> wrote:

    - Show quoted text -
    Joseph Ramsey wrote:


        Could you send it to me as well, just to try it out? I promise not to distribute it! :)

        Joe

            On Feb 3, 2010 9:06 AM, "Peter Spirtes" <ps7z@andrew.cmu.edu <mailto:ps7z@andrew.cmu.edu>> wrote:

            Joseph Ramsey wrote:
            >
            > Hi Peter,
            >
            > Jonathan Livengood (Jonathan Livengood <jlive2003@gmail.com <mailto:jlive2003@gmail.com>>)...

            Joe,

            People can and have certainly used it. It is not thoroughly debugged. I can send it to him.

            Peter

    Jonathan and Joe,

    I have attached code for PC and FCI in R, which is correct as far as I know. I have tested it on a bunch of cases, but it needs more as well. The grammar of using it is shown in comments at the end. I have attached example files that can be read in with import_tetrad_files. I think it is very finicky about the exact form of the first line (i.e. capitals matter, etc.) It is only for the linear case so far.

    Peter


    require("combinat")
    require("ggm")

    DEBUG = FALSE

    NO_EDGE = 0
    EMP = 1
    ARR = 2
    CIR = 3

    setClass("dataset", representation(size = "numeric", variable_names =
                                      "character"))
    setClass("continuousdata", contains = "dataset", representation =
            representation(coltData = "coltData.frame"))
    setClass("covariancedata", contains = "dataset", representation =
            representation(cov_matrix = "coltData.frame"))

    setGeneric("isIndependent", function(d, x, y, given = NULL, prgt = .05) {
    #  if (DEBUG) cat("x:", x, "y:", y, "given:", given, "\n")
     standardGeneric("isIndependent")
    })


    setMethod("isIndependent", "continuousdata",
             function(d, x, y, given = NULL, prgt = .05) {
               model = lm(d@coltData[,y]~., coltData =  coltData.frame(d@coltData[,c(x,given)]))
               summary(model)$coefficients[2, "Pr(>|t|)"] > prgt
             })

    setMethod("isIndependent", "covariancedata",
             function(d, x, y, given = NULL, prgt = .05) {
               p = pcor(c(x,y,given), d@cov_matrix)
               pcor.test(p, length(given), d@size)$pvalue > prgt
             })


    make_continuousdata = function(d) {
     new("continuousdata", size = nrow(d), variable_names = dimnames(d)[[2]],
         coltData = d)
    }

    make_covariancedata = function(d, size) {
     new("covariancedata", size = size, variable_names = dimnames(d)[[2]],
         cov_matrix = d)
    }

    import_tetrad_file = function(filename) {
     f = file(filename, open = "r")
     firstline = readLines(f, 1)
     if (length(grep("/continuousdata", firstline)) == 1) {
       d = read.table(f, header = T)
       #return(make_continuousdata(d))
       return(make_covariancedata(coltData.frame(covariances(d)),nrow(d)))
     } else if (length(grep("/Covariance", firstline)) == 1) {
       size = as.numeric(readLines(f, 1))
       d = read.table(f, header = T, fill = T)
       for (j in 2:ncol(d)) {
         for (i in 1:(j-1)) {
           d[i,j] = d[j,i]
         }}
       return(make_covariancedata(d, size))
     } else {
       stop("First line of file was ", firstline,
            "This format of file is unknown.")
     }
    }

    read_tetrad_output = function(filename,rout) {
     f = file(filename, open = "r")
     repeat {
         firstline = readLines(f, 1)
         if (length(grep("Graph Edges:", firstline)) == 1) break }
     tab = read.table(f,stringsAsFactors=FALSE)
     nm = dimnames(rout)[[1]]
     adj = matrix(nrow=length(nm),ncol=length(nm),coltData=0)
     attr(adj,'headnames') <- nm
     for (i in 1:dim(tab1)[1]){
            first = which(nm == tab[i,2])
            second = which(nm == tab[i,4])
            if (substr(tab[i,3],3,3) == "-") {end2 = CIR} else {if (substr(tab[i,3],3,3) == ">") {end2 = ARR}}
            if (end2 == ARR) end1 = EMP else end1 = CIR
            adj[first,second] = end2
            adj[second,first] = end1
     }
     return(adj)
    }

    printlist = function(ambiguous,res){
     n = dim(res)[[2]]
     nn = 1:n
     nm = dimnames(res)[[1]]
     if (length(ambiguous) != 0){
       cat("Ambiguous triples","\n")
       for (i in 1:dim(ambiguous)[[2]]){
           cat(nm[ambiguous[1,i]]," ",nm[ambiguous[2,i]]," ",nm[ambiguous[3,i]],"\n")}}}

    printadj = function(res){
     n = dim(res)[[2]]
     nn = 1:n
     nm = dimnames(res)[[1]]
     for (i in 1:(n-1)){
        for (j in nn[res[i,] != 0]){
          if (j > i){
           if ((res[j,i] == ARR) && (res[i,j] != ARR)){
             first = j
             second = i} else {
               first = i
               second = j}
           cat(nm[first])
           if (res[second,first] == CIR) cat("o-") else
           if (res[second,first] == ARR) cat ("<-") else
           if (res[second,first] == EMP) cat(" -")
           if (res[first,second] == CIR) cat("o") else
           if (res[first,second] == ARR) cat(">") else
           if (res[first,second] == EMP) cat("-")
           cat(nm[second],"\n")}}}}


    inambiguous = function(x,ambiguous){
     foundit = FALSE
     if (length(ambiguous) != 0){
       for (i in 1:dim(ambiguous)[[2]]){
         if (((x[1] == ambiguous[1,i]) && (x[2] == ambiguous[2,i]) && (x[3] == ambiguous[3,i])) ||
             ((x[1] == ambiguous[3,i]) && (x[2] == ambiguous[2,i]) && (x[3] == ambiguous[1,i]))){
           foundit = TRUE
         break}}}
     return(foundit)}

    skeleton = function(coltData, prgt = .05) {
     n = length(coltData@variable_names)
     skel = matrix(1, nrow=n, ncol=n)
     dimnames(skel) <- list(coltData@variable_names, coltData@variable_names)
     diag(skel) <- 0
     sepset = vector(length = n, mode = "list")
     for (i in 1:n) {
       sepset[[i]] = vector(length = n, mode = "list")
     }

     nn = 1:n

     for (x in 1:(n-1)) {
       for (y in (x+1):n) {
         if (isIndependent(coltData, x, y, prgt = prgt)) {
             skel[x,y] = skel[y,x] = 0
             sepset[[x]][[y]] = sepset[[y]][[x]] = numeric(0)
     }}}

     i=1
     while (max(skel %*% rep(1,n)) >= i) {
       for (x in 1:n) {
         if (sum(skel[x,]) <= i) next
         for (y in nn[skel[x,] == 1]) {
           if (sum(skel[x,]) <= i) break
           ## The combn function is obnoxiously inconsistent.  It behaves
           ## differently when the first argument has length one and
           ## produces a non-matrix output when there is only one combination
           ## in the output.
           tf = setdiff(nn[skel[x,] == 1], y)
           sepsets = if (length(tf) == i) matrix(tf) else combn(tf, i)

           for (idx in 1:ncol(sepsets)) {
             if (isIndependent(coltData, x, y, sepsets[,idx], prgt = prgt)) {
                 skel[x,y] = skel[y,x] = 0
                 sepset[[x]][[y]] = sepset[[y]][[x]] = sepsets[,idx]
                 break
             }}}}

       i = i + 1
     }

     list(skel, sepset)
    }

     reach = function(a,b,c,adjacency){
           #reachable      set of vertices;
           #edgeslist      array[1..maxvertex] of list of edges
           #more           Boolean
           #reachable      list of vertices
           #numvertex      integer
           #labeled        array (by maxDegree) of list of edges that have been labeled

     makeedge = function(x,y)(list(list(x,y)))

     legal <- function(t,...) {UseMethod("legal")}

     legal.possibledsep = function(t,u,v,r,s) {
      if (((adjacency[r[[1]],r[[2]]] == ARR) &&
           (adjacency[s,r[[2]]] == ARR) &&
           (r[[1]] != s)) ||
          ((adjacency[r[[1]],s] != 0) &&
           (r[[1]] != s))){
              edgeslist[[r[[2]]]]  <<- setdiff(edgeslist[[r[[2]]]],s)
              makeedge(r[[2]],s)}}

     legal.discriminating = function(t,u,v,r,s) {
        if ((length(intersect(s,c(t,u,v))) == 0) &&    # s not in the triangle t,u,v
            (adjacency[s,r[[2]]] == ARR) &&            # s collides with r edge at r[[2]]
            (r[[1]] != s) &&                           # s is not on the r edge
            (adjacency[u,r[[2]]] == EMP) &&
            (adjacency[r[[2]],u] == ARR)){
              edgeslist[[r[[2]]]]  <<- setdiff(edgeslist[[r[[2]]]],s)
              makeedge(r[[2]],s)}}

     initialize <- function(x,...) UseMethod("initialize")

     initialize.possibledsep <- function(x,y,z) {mapply(makeedge,x=a,y=edgeslist[[a]])}

     initialize.discriminating <- function(x,y,z) {mapply(makeedge,x=a,y=setdiff(which(adjacency[,a] == ARR),c(b,c)))}

     labeled = list()
     numvertex = dim(adjacency)[1]
     edgeslist = list()
     for (i in 1:numvertex) edgeslist = c(edgeslist,list(which(adjacency[,i] != 0)))
     labeled[[1]] = initialize(a,b,c)
     edgeslist[[a]] = list()
     maxDegree = 2
     repeat
          {more = FALSE
           labeled[[maxDegree]] = list()
           for (i in 1:length(labeled[[maxDegree-1]])) {
              edgestemp = edgeslist[[labeled[[maxDegree-1]][[i]][[2]]]]
              if (length(edgestemp) == 0) break
              for (j in 1:length(edgestemp))
               {labeled[[maxDegree]] =
                 union(legal(a,b,c,labeled[[maxDegree-1]][[i]],edgestemp[[j]]),labeled[[maxDegree]])}}
           if (length(labeled[[maxDegree]]) != 0){
                 more = TRUE
                 maxDegree = maxDegree  + 1} else break}
     return(unique(unlist(labeled)))
    }

    cpc_colliders = function(coltData,res,prgt,ambiguous) {
     n = nrow(res)
     nn = 1:n
     nm = dimnames(res)[[1]]
     all = FALSE
     none = FALSE
     for (x in 1:n) {
       for (y in nn[res[x,] != 0]) {
         for (z in nn[res[y,] != 0]) {
           if (x < z && res[x,z] == 0) {
              if (isIndependent(coltData, x, z, prgt = prgt)) {
                all = FALSE
                none = TRUE} else {
                  all = TRUE
                  none = TRUE}
              tf1 = nn[res[x,] != 0]                                                # adjacent to x
              tf2 = nn[res[z,] != 0]                                                # adjacent to z
              maxlength = max(length(tf1),length(tf2))
              for (i in 1:maxlength){
                condsets1 = list()                                                  # combinations of adjacent to x of length i
                if (length(tf1) >= i)
                  condsets1 = if (i == length(tf1)) {matrix(tf1)} else {combn(tf1,i)}
                if (length(condsets1) == 0) xlength = 0 else xlength = dim(condsets1)[[2]]
                condsets2 = list()                                                  # combinations of adjacent to z of length i
                if (length(tf2) >= i)
                  condsets2 = if (i == length(tf2)) {matrix(tf2)} else {combn(tf2,i)}
                if (length(condsets1) != 0){                                         # combinations of adjacent to x or
                  if (length(condsets2 != 0)) condsets1 = cbind(condsets1,condsets2)} else
                if (length(condsets2) != 0) condsets1 = condsets2
                for (idx in 1:dim(condsets1)[[2]]) {
                                                                                    # skip if subset already looked at
                  if ((idx > xlength) && (length(setdiff(condsets1[,idx],tf1)) == 0)) next
                  if (isIndependent(coltData, x, z, condsets1[,idx], prgt = prgt)) {
                    if (length(which(condsets1[,idx] == y)) == 0){                  # y is not in independence set
                        all = FALSE
                        if (!(all || none)) {
                          ambiguous = cbind(ambiguous,c(x,y,z))
                          if (DEBUG) {cat(nm[x], " ",nm[y]," ", nm[z],"ambiguous", "\n")}
                          break}
                      } else {                                                      # y is in independence set
                             none = FALSE
                             if (!(all || none)) {
                             ambiguous = cbind(ambiguous,c(x,y,z))
                             if (DEBUG) {cat(nm[x], " ",nm[y]," ", nm[z],"ambiguous", "\n")}
                             break}}}
                  if (!(all || none)) break}
                if (!(all || none)) break}
              if (all && none) {
                 ambiguous = cbind(ambiguous,c(x,y,z))
                 if (DEBUG) {cat(nm[x], " ",nm[y]," ", nm[z],"ambiguous", "\n")}}  # there is no edge, but not independent conditional on adjacent
              if (none && (!all)){
                if ((res[x,y] != EMP) && (res[z,y] != EMP)){
                  res[x,y] = res[z,y] = ARR
                  res[y,z] = res[y,x] = EMP
                  if (DEBUG) {cat(nm[x], "*->", nm[y], "<-*", nm[z],"by Colliders","\n")}} else {
                    cat(nm[x], "*->", nm[y], "<-*", nm[z],"already oriented","\n")}

              }}}}}
    return(list(res,ambiguous))}

    orient_colliders = function(res, sepset, latents) {
     n = nrow(res)
     nn = 1:n
     nm = dimnames(res)[[1]]
     for (x in 1:n) {
       for (y in nn[res[x,] != 0]) {
         for (z in nn[res[y,] != 0]) {
           if (x != z && res[x,z] == 0) {
             if (!is.element(y, sepset[[x]][[z]])) {
               if ((res[x,y] != EMP) && (res[z,y] != EMP)){
                 res[z,y] = res[x,y] = ARR
                 if (! latents) {res[y,x] = EMP
                               res[y,z] = EMP}
               if (DEBUG) cat(nm[x], "*->", nm[y], "<-*", nm[z],"by Colliders with sepset = {",nm[sepset[[x]][[z]]], "}\n")} else {
                   if (DEBUG) cat(nm[x]," ", nm[y], " ", nm[z], "already oriented with sepset = {", nm[sepset[[x]][[z]]], "}\n")}}
             }}}}
     res
    }

    pcinternal = function(coltData, prgt = .05, noambiguous) {
     latents = FALSE
     l = skeleton(coltData, prgt = prgt)
     adjacencies = l[[1]]
     nm = dimnames(adjacencies)[[1]]
     sepset = l[[2]]
     n = length(coltData@variable_names)
     nn = 1:n

     res = adjacencies
    ## res[res == 0] = NO_EDGE
     res[res == 1] = CIR
     ambiguous = NULL

     if (noambiguous) res = orient_colliders(res,sepset,latents) else {
       results = cpc_colliders(coltData=coltData,res=res,prgt=prgt,ambiguous)
       res = results[[1]]
       ambiguous = results[[2]]}
     res[t(res) == ARR] = EMP
     if (DEBUG) printadj(res)

     MAKING_PROGRESS = T
     while(MAKING_PROGRESS) {
       MAKING_PROGRESS = F
       for (a in 1:n) {
         for (b in nn[res[a,] == ARR]) {
           for (c in nn[res[,b] == CIR]) {
             if (a != c && adjacencies[a,c] == 0 && !(inambiguous(c(a,b,c),ambiguous))) {
                 res[b,c] = ARR
                 res[c,b] = EMP
                 MAKING_PROGRESS = T
                 if (DEBUG) cat(nm[b], "->", nm[c], "by Away From Collider since ",
                              nm[a], "->", nm[b], "o-o", nm[c], "\n")
               }}}}}

       for (a in 1:n) {
         for (c in nn[res[a,] == ARR]) {
           for (b in nn[res[c,] == ARR]) {
             if (res[a,b] == CIR) {
               res[a,b] = ARR
               res[b,a] = EMP
               MAKING_PROGRESS = T
               if (DEBUG) cat(nm[a], "->", nm[b], "by Away From Cycle since ", nm[a], "->", nm[c], "->", nm[b], "\n")
             }}}}

       for (a in 1:n) {
         for (b in nn[res[a,] == ARR]) {
           for (c in nn[res[b,] == EMP]) {
             for (d in nn[res[,b] == CIR]) {
               if ((a != c) && (res[c,d] != 0) && (res[a,d] != 0)) {
                 if ((adjacencies[a,c] == 0) && !(inambiguous(c(a,d,c),ambiguous)) || (res[a,d] == EMP) || (res[c,d] == EMP)){
                   res[d,b] = ARR
                   res[b,d] = EMP
                   MAKING_PROGRESS = T
                   if (DEBUG) cat(nm[d], "->", nm[b], "by Double Triangle ",
                              nm[a], "->", nm[b], "<-", nm[c], "  ",nm[a], "o-o",nm[c], "*-*",nm[d], "o-o", nm[b], "\n")}}
               }}}}
    i = 1
    #  while (i <= length(ambiguous)){
    #    if ((res[ambiguous[[i]][[1]],ambiguous[[i]][[2]]] == EMP) ||
    #        (res[ambiguous[[i]][[3]],ambiguous[[i]][[2]]] == EMP) ||
    #        ((res[ambiguous[[i]][[1]],ambiguous[[i]][[2]]] == ARR) && (res[ambiguous[[i]][[3]],ambiguous[[i]][[2]]] == ARR))){
    #          browser()
    #          ambiguous[[i]] = NULL} else i = i + 1}
      printadj(res)
     if (DEBUG) {
       printlist(ambiguous,res)}
     if (noambiguous) return(invisible(res)) else return(invisible(list(res,ambiguous)))
    }

    fci = function(coltData, prgt = .05) {

     l = skeleton(coltData, prgt = prgt)
     adjacencies = l[[1]]
     sepset = l[[2]]
     n = length(coltData@variable_names)
     nn = 1:n
     nm = dimnames(adjacencies)[[1]]
     latents = TRUE

     if (DEBUG) {
       cat("Naive adjacencies are:\n")
       print(adjacencies)
     }

     res = adjacencies

     ## res[res == 0] = NO_EDGE
     res[res == 1] = CIR

     res = orient_colliders(res,sepset,latents)

     ## So far this function is cut and pasted from pc;
     ## now we do something different.

     for (x in 1:n) {
       attr(x,'class') <- 'possibledsep'
       if (! all(res[x,] == 0)) tf1 = setdiff(reach(x,-1,-1,res),x)
       for (y in nn[res[x,] != 0]) {
    #     tf = possible_d_sep(res,x,y)
         tf = setdiff(tf1,y)
         if (DEBUG) {
           cat("Possible-D-Sep of", nm[x], "and", nm[y], "is", nm[tf], "\n")
         }

         if (length(tf) > 0) {
           for (i in 1:(length(tf))) {
             if (res[x,y] == 0) break
             sepsets = if (i == length(tf)) matrix(tf) else combn(tf, i)
             for (idx in 1:ncol(sepsets)) {
               if (isIndependent(coltData, x, y, sepsets[,idx], prgt = prgt)) {
                   if (DEBUG) cat("removing edge between", nm[x], "and", nm[y],
                                  "based on {", nm[sepsets[,idx]], "}\n")
                   res[x,y] = res[y,x] = 0
                   sepset[[x]][[y]] = sepset[[y]][[x]] = sepsets[,idx]
                   break
                 }}}}}}

     res[res != 0] = CIR
     if (DEBUG) {
       cat("Final adjacencies are:\n")
       temp = res
       temp[temp != 0] = 1
       print(temp)
     }

     res = orient_colliders(res,sepset,latents)

     MAKING_PROGRESS = T
     while(MAKING_PROGRESS) {
       MAKING_PROGRESS = F

       ## Away from ancestor
       for (a in 1:n) {
         for (b in nn[(res[a,] == ARR) & (res[,a] == EMP)]) {
           for (c in nn[(res[b,] == ARR)]) {
             if (res[a,c] == CIR) {
               if (DEBUG) cat(nm[a], "*->", nm[c], "by Away From Ancestor since",
                              nm[a], "->", nm[b], "*->", nm[c], "\n")
               res[a,c] = ARR
               MAKING_PROGRESS = T
             }}}}

       ## Orienting ancestors
       for (a in 1:n) {
         for (b in nn[res[a,] == ARR]) {
           for (c in nn[(res[b,] == ARR) & (res[,b] == EMP)]) {
             if (res[a,c] == CIR) {
               if (DEBUG) cat(nm[a], "*->", nm[c], "by Orienting Ancestors since",
                              nm[a], "*->", nm[b], "->", nm[c], "\n")
               res[a,c] = ARR
               MAKING_PROGRESS = T
             }}}}

       ## Unnamed rule (transitivity)
       for (a in 1:n) {
         for (b in nn[(res[a,] == ARR) & (res[,a] == EMP)]) {
           for (c in nn[(res[b,] == ARR) & (res[,b] == EMP)]) {
             if (a != c && res[a,c] == CIR || res[c,a] == CIR) {
               if (DEBUG) cat(nm[a], "->", nm[c], "by Transitivity since",
                              nm[a], "->", nm[b], "->", nm[c], "\n")
               res[a,c] = ARR
               res[c,a] = EMP
               MAKING_PROGRESS = T
             }}}}

       ## Double triangle rule
       for (a in 1:n) {
         for (b in nn[res[a,] == ARR]) {
           for (c in nn[res[,b] == ARR]) {
             if (a != c) {
               for (d in nn[res[,b] == CIR]) {
                 if ((res[a,d] == EMP) || (res[c,d] == EMP) ||
                    ((res[a,d] == CIR) && (res[c,d] == CIR) && (res[a,c] == 0))){
                   if (DEBUG) cat(nm[d], "*->", nm[b],
                                  "by Double Triangle with top collider",
                                  nm[a], "*->", nm[b], "<-*", nm[c], "\n")
                   res[d,b] = ARR
                   MAKING_PROGRESS = T
                 }}}}}}

       ## Non-collider rule
       for (a in 1:n) {
         for (b in nn[res[a,] == ARR]) {
           for (c in nn[res[,b] == CIR]) {
             if (is.element(b, sepset[[a]][[c]])) {
               if (DEBUG) cat(nm[b], "->", nm[c], "by Non-Collider since",
                              nm[a], "*->", nm[b], "o-*", nm[c],
                              "is a non-collider\n")
               res[b,c] = ARR
               res[c,b] = EMP
               MAKING_PROGRESS = T
             }}}}

       ## Discriminating paths
       for (c in 1:n) {
         for (a in nn[res[,c] == EMP]) {
           for (b in nn[res[,c] == ARR]) {
             if ((res[b,a] == ARR) && ((res[c,b] == CIR) || (res[a,b] == CIR))){
                attr(c,'class') <- 'discriminating'
                check = setdiff(reach(c,a,b,res),c)
                if (length(which(res[check,a] == 0) != 0)){
                   z = check[which(res[check,a] == 0)[[1]]]
                   if (is.element(b, sepset[[z]][[a]])) {
                     if (res[a,b] == CIR){
                       res[a,b] = EMP
                       if (DEBUG) cat(nm[b], "->", nm[a],
                                      "by Def. Disc. Path with Z =", nm[z],
                                      "and C =", nm[c], "\n")
                       MAKING_PROGRESS = T}
                   } else if (res[c,b] == CIR || res[a,b] == CIR) {
                     if (DEBUG)
                       cat(nm[c], "*->", nm[b], "<-*", nm[a],
                           "by Def. Disc. Path with Z =", nm[z], "\n")
                     res[c,b] = res[a,b] = ARR
                     MAKING_PROGRESS = T
                   }}}}}}}

     printadj(res)
     invisible(list(res,sepset))
    }

    pc = function(coltData, prgt = 0.05) {pcinternal(coltData,prgt,noambiguous = TRUE)}

    cpc = function(coltData, prgt = 0.05) {pcinternal(coltData,prgt,noambiguous = FALSE)}

    # a = rnorm(1000)
    # b = rnorm(1000)
    # c = a + b + rnorm(1000, sd=.01)
    # coltData = make_continuousdata(coltData.frame(cbind(a,b,c)))
    # pc(coltData)

    #


    #pc(coltData)

    #coltData = import_tetrad_file("~/Desktop/Tetrad Examples/bollen.txt")
    #fci(coltData)

    #coltData = import_tetrad_file("~/Desktop/New R Examples/test1.txt")


    /Covariance
    50000
    SES     SEX     IQ      PE      CP
    7.2959
    0.0032  2.5083
    4.4124  0.0302  9.5027
    -1.3183 -2.5487 -2.1043 5.7740
    -3.6037 -3.6407 -5.7214 8.2566  16.0474

    /continuousdata
    SES     SEX     IQ      PE      CP
    2.4365  -1.1487 -0.5323 -1.8987 2.7326
    1.9115  -1.2580 1.5983  1.6134  -0.7748
    4.3008  -7.6842 -1.2128 -2.6426 3.9657
    1.1536  -0.0110 -1.4033 -1.8226 2.4480
    -3.1063 2.3362  0.6666  0.3387  0.6367
    1.4511  0.7059  0.1689  0.0441  -0.2885
    1.3603  0.7155  0.2648  1.2803  0.6583
    0.7550  -3.7126 -1.8337 -2.5981 4.4749
    -1.0916 2.9007  0.8863  1.7798  -2.8179
    -1.6067 3.7520  0.1315  -0.6071 0.0339
    -1.4900 -0.4335 0.4718  0.6965  0.1439
    -3.1231 6.1930  0.7982  2.6267  -3.9320
    3.4020  -1.9847 -2.7001 -2.6343 1.9232
    3.0165  -5.0218 -0.4148 -1.9563 2.8274
    0.6999  -1.2504 -0.4322 -1.0934 0.6585
    1.7852  -2.7371 0.9346  1.4913  -3.6232
    2.4186  -3.0238 -1.2673 -0.8263 0.5977
    -0.7354 2.3455  -0.6382 0.8815  -2.3539
    1.2985  -4.0396 -0.3792 -2.4777 0.9943
    -0.2872 -0.0263 0.1223  -2.1074 3.4066
    -1.4026 1.3452  0.0382  0.8264  -0.9463
    0.1719  1.8164  0.9323  1.4740  -0.9957
    5.1772  -9.8676 -3.2587 -4.6401 5.2978
    -1.8599 0.4499  0.0100  -1.0192 1.7784
    -0.6363 2.1685  -0.3901 -0.2292 0.3140
    -0.4745 3.8357  1.0232  0.6018  -2.4565
    -0.3697 -2.5339 1.3677  1.0662  0.6618
    -1.0983 1.4230  0.6179  1.3083  -3.3632
    1.8195  -1.6892 -1.5144 -1.5856 2.7591
    0.5332  -1.5078 -0.1488 -0.0938 1.3435
    -0.9178 3.0220  1.1373  1.8793  -3.2527
    -1.9558 -0.1441 1.4461  2.2526  -3.0962
    0.2540  1.8503  0.9317  1.4676  -2.1457
    2.1257  1.6750  0.0219  1.3280  -2.5590
    -0.7436 0.9350  0.2893  -1.1238 2.4065
    8.3019  -9.5130 -3.9634 -6.8850 9.9900
    -1.3779 4.7938  -1.3834 -1.0778 2.1465
    0.8839  0.4062  -2.1205 -3.7902 5.1159
    -4.4351 4.2449  0.3876  0.3381  -0.2431
    -2.7620 2.9602  -0.5396 -0.2716 -1.1723
    -2.4462 3.3976  1.4466  2.7868  -5.4791
    1.0068  -0.9755 -1.4101 -1.6847 2.5707
    -3.7532 6.3327  1.5680  2.2773  -3.1777
    1.8539  -3.0910 -1.6899 -3.2541 3.8789
    0.1909  2.7521  0.9014  2.5621  -3.3300
    4.5183  -4.6311 1.0748  1.2249  -0.1723
    0.2777  0.7720  0.7744  1.0089  -1.4324
    -1.3060 0.6533  0.8934  0.0527  -1.6508
    -3.4532 2.9831  1.7322  2.2722  -3.7161
    1.2835  -3.4167 -0.7782 -2.7243 5.8347
    -2.2432 3.6220  2.2306  2.3946  -3.2576
    -2.0442 0.3993  0.5792  -0.8692 0.3866
    -3.5966 4.5339  1.7474  1.6708  -0.6015
    -2.0673 4.4129  -0.8700 -0.9345 0.9924
    -1.5156 1.8829  0.6597  1.0789  -1.5994
    1.5063  0.2852  -0.4273 -0.4526 -0.0603
    -1.5556 0.2009  0.3609  0.8581  0.1349
    -5.4120 4.6720  2.4633  3.4265  -4.6956
    -1.1098 -1.7097 0.0574  -0.4611 1.9610
    -3.0259 5.8784  -1.8679 -0.0917 -0.4456
    -2.2497 6.0936  1.1753  2.6068  -2.1126
    4.3895  -8.3032 -1.7571 -3.4841 5.2637
    -5.7622 10.1716 2.2049  3.6244  -4.2715
    -0.9634 -0.6657 1.2952  2.2901  -3.8516
    -1.3677 1.0489  -0.3401 -0.4213 0.2371
    0.1775  2.4761  -0.6149 -0.6032 0.1969
    -1.1355 1.6826  -0.3069 -0.7674 0.9350
    -5.5269 10.1670 1.1084  1.8343  -3.4497
    -1.5065 0.0673  1.0297  1.1805  -1.9277
    -0.3972 2.8142  0.2726  0.1944  -0.8372
    -5.8081 7.2563  1.8763  2.8514  -3.2666
    2.9966  -2.9104 -1.6203 -1.5380 0.7073
    4.8509  -5.9770 -0.9174 -1.5157 0.0358
    -1.2526 2.3685  0.1357  1.4265  -2.2687
    -1.4717 5.4868  1.5902  3.2137  -6.5028
    0.4390  -1.0437 0.0034  -0.7113 0.0259
    -0.7909 2.4275  0.8854  2.4968  -3.3785
    -0.0035 2.2019  2.4107  3.3819  -5.0207
    3.6641  -2.1121 -1.8366 -1.6087 4.4000
    -2.2528 0.3927  2.5818  3.5369  -6.1054
    0.7695  -0.2005 -1.2059 -1.8936 3.9457
    4.6462  -5.1139 -1.2747 -2.9215 3.1314
    1.9887  -3.5515 -0.8587 -0.9389 -0.5383
    -0.4862 -3.9556 1.1604  0.6498  1.4703
    2.3528  -2.3891 -0.6494 -1.5606 2.7170
    -4.4891 3.0126  1.8325  1.6260  -2.2302
    0.1725  -3.2441 -0.0179 0.0015  -0.1541
    0.5830  -2.0063 -0.3984 0.2605  1.6222
    4.1082  -6.2463 -0.3454 -1.5261 0.4215
    -0.4404 0.1123  -0.9852 -1.1911 2.6345
    -5.0358 9.7242  0.3776  3.0085  -3.7782
    4.1578  -5.7175 -0.9095 -2.2623 2.1558
    8.5859  -11.0742        -2.3819 -5.0652 8.6163
    1.7947  -0.6362 -1.2937 -1.4859 2.6168
    -2.1241 4.1150  0.3716  0.9066  -2.4267
    1.6084  -2.5852 -0.1338 -0.6774 1.6038
    -1.6537 -0.3848 0.3207  0.7180  0.7471
    -0.3375 0.6914  -0.9418 0.4941  0.5796
    -2.2987 6.3099  -0.0696 -0.0541 -0.4695
    3.2582  -4.4074 -0.7047 -0.2624 0.6055
    4.3941  -3.4077 -0.0341 -0.3023 -0.2993
    -0.7516 0.4324  0.2884  0.3939  0.1153
    6.3320  -10.9138        -2.4533 -4.0224 5.5143
    1.2413  -4.9274 -0.1502 0.0806  0.0216
    -3.1972 1.7127  -0.1074 -0.5576 1.1966
    0.7346  -0.2368 0.1174  -0.2912 -0.0721
    -1.9931 3.5115  0.2863  1.8238  -3.0194
    -5.2408 9.3211  1.4756  4.0399  -5.7129
    -2.7001 1.6266  1.5189  0.0507  -1.6413
    -0.5538 0.0904  -0.5701 -1.5556 1.8591
    1.1088  -1.7876 -0.7282 -1.7166 3.4587
    5.9250  -7.4596 -1.5769 -2.2526 2.9811
    0.6695  2.1713  0.2420  1.3342  -3.7617
    -0.8147 2.1897  0.1313  1.5558  -0.3815
    -2.5371 4.3552  0.8333  0.9140  0.1168
    5.1052  -6.6201 -0.7111 -2.4059 2.7542
    -0.3664 1.1996  0.2628  0.6075  -2.2709
    -1.6913 4.8647  0.2902  1.7308  -1.7678
    -0.0478 -0.6516 -1.4353 -0.2734 0.0313
    -0.0969 -0.1817 0.2798  0.1209  0.3070
    4.0451  -8.1083 -1.0246 -4.1955 4.4239
    -2.2225 5.5601  0.5653  1.1398  -1.3928
    -3.5205 3.3297  0.9015  0.8216  -1.2761
    4.1391  -5.0700 -1.6123 -2.6211 4.3655
    -2.0917 1.5292  -0.1075 -0.5118 1.8158
    -1.0717 1.5719  -1.1226 -0.3141 -0.5810
    -1.0155 1.9000  1.1340  1.5124  -1.9178
    -2.9887 5.5372  -0.0504 1.8345  -2.8790
    1.8005  -2.1795 -1.1542 -0.2533 -0.2408
    2.2383  -4.2302 -0.9664 -0.8012 -0.0368
    -1.0986 1.9790  0.8034  1.8244  -2.3671
    -1.7667 0.2189  1.3146  1.4713  -2.6831
    5.2686  -4.5894 -1.8410 -2.5809 3.0180
    -3.0088 5.5065  1.9285  2.7434  -4.1645
    -0.6586 -3.7382 0.4280  0.1698  -3.0455
    2.2728  -2.7085 -0.8864 -0.4570 0.9927
    -0.0726 -0.6453 1.5005  3.5065  -6.7752
    0.6943  -2.7257 -0.4371 -2.0038 2.0142
    -0.7226 1.8157  0.2667  0.1944  -0.0721
    1.2201  -1.6430 0.9620  0.5503  -0.4624
    -6.0922 9.3652  2.5676  3.3226  -3.2178
    -2.3731 5.4554  0.8162  1.9064  -0.0360
    1.7050  -1.3076 0.8343  0.0573  -0.9777
    7.0662  -12.5221        -2.1288 -5.8960 6.4781
    1.1711  1.8262  -1.6478 -0.4948 0.6599
    0.2709  -2.3817 0.2300  -0.3251 2.9565
    1.0703  -0.6140 0.2082  -0.0789 -2.5066
    -0.8369 7.4878  0.6986  1.7842  -1.7707
    -4.5114 3.3037  -0.2040 -0.6112 -0.3401
    -0.0352 -1.7981 0.0679  0.1736  -1.0910
    3.3429  -5.5991 -1.2792 -2.8777 4.9085
    -5.4488 5.8843  -0.3997 1.5691  -2.9118
    -1.6081 1.1711  1.6224  0.5595  -0.5161
    0.8857  0.0728  1.8491  0.7237  0.1030
    4.2881  -5.6531 0.0267  -0.2108 1.6530
    -0.7663 2.3099  -0.4936 -1.1652 1.4614
    0.9925  -1.4846 -1.4620 -2.7519 2.8356
    2.8735  -4.7304 1.3540  1.1743  -0.7296
    -1.7489 0.9203  -1.0219 0.2228  0.4550
    0.9384  0.0391  -1.0380 -2.2344 3.7754
    3.5084  -3.9700 -1.2528 -0.7161 2.4331
    -0.8154 0.1740  1.8152  2.5360  -1.6881
    2.3936  -5.6599 -1.7138 -2.1761 3.2465
    -0.4492 5.1599  -1.0911 1.4699  -0.2239
    -4.5363 4.1809  1.7266  2.8004  -3.4421
    1.3636  -0.1059 -0.5688 -1.4289 0.6168
    0.4861  0.3917  0.3548  -0.2277 0.2551
    -1.5353 2.1008  1.1333  1.4628  -1.8323
    1.1656  1.1881  0.8048  1.8138  -4.9149
    8.1875  -9.9523 -1.5830 -3.4545 4.8638
    1.0465  1.6348  -0.7714 -1.2837 2.1963
    -2.7543 -0.4896 1.2085  1.1515  -1.9239
    0.5909  0.3248  -0.8469 0.3287  -1.7050
    -4.0776 4.5335  1.1976  2.1649  -3.7939
    4.6632  -5.4506 -2.1032 -2.5882 5.2695
    -3.8518 6.1993  2.0379  3.1399  -2.6352
    0.3138  -0.1009 -0.6453 -0.6500 -0.4067
    2.3614  -4.1799 -0.8820 -0.4608 -0.9073
    0.3992  1.0043  -1.9897 -2.5060 3.4074
    1.4001  -3.1355 -0.0905 0.0787  -0.4227
    -3.7838 3.8757  0.9662  2.7365  -4.4974
    -3.7006 4.9322  1.3132  2.4828  -2.4094
    -0.9609 3.7663  0.4768  -0.0137 0.3050
    -4.0229 5.2508  1.3195  2.7820  -3.9337
    5.2285  -9.5033 -1.4146 -5.4181 6.6088
    -5.6174 6.9988  1.2138  2.8624  -2.9479
    -1.9124 -0.1141 2.6350  2.4439  -4.6028
    -5.7282 8.7616  1.6782  3.0448  -3.3316
    1.4406  -0.0083 0.4653  0.8146  -0.6677
    -3.9794 7.1089  0.6681  2.2598  -2.7223
    -7.0876 6.7655  2.6952  3.9198  -4.2026
    0.4274  -0.0172 -0.2366 -0.4169 -0.2251
    -1.0265 4.2963  -1.3423 -1.6236 3.1279
    -4.1317 9.9747  0.0318  3.0498  -5.5471
    -0.6240 1.8724  1.9431  0.9063  -1.5897
    0.1437  -1.2920 -1.5956 -1.7887 1.8261
    2.1447  -4.9846 -2.4291 -3.4487 3.3228
    2.1740  -5.3957 -1.8040 -1.9819 1.4136
    -3.0477 -2.3369 0.9677  -0.5965 2.5532
    2.3173  -2.5793 -0.4348 -1.5113 0.5993
    -3.4460 3.0542  1.9097  3.2083  -2.5269
    3.0720  -5.8037 -1.9327 -2.1730 3.5228
    -1.2027 7.2356  1.0914  2.1316  -1.8098
    1.4005  -1.0626 0.0810  -2.0618 1.5079
    -3.6752 3.5568  0.2566  1.4536  -0.4445
    -3.3616 6.4059  0.9225  3.0599  -3.8134
    -1.6131 -0.9074 1.3713  0.8404  -0.5462
    1.0172  0.0961  0.6102  0.9895  -0.9163
    1.7307  -2.2312 -0.5762 -0.9325 -0.0688
    0.8881  -3.6379 -0.0115 -0.4069 -1.2563
    -4.5048 5.4202  0.5052  1.1986  -2.6443
    5.2472  -8.4738 -1.2763 -3.9413 8.0929
    0.5644  1.2829  0.5980  1.1972  -1.8215
    3.9435  -4.8854 -0.2232 -1.2609 1.3745
    3.5847  -5.0938 -2.8038 -4.4825 5.1883
    -3.2355 4.7423  0.9798  2.6768  -3.3473
    0.6565  -0.2712 -0.3231 -0.0988 -1.9633
    -0.8256 0.3944  1.6272  1.7872  -1.8286
    0.9120  -0.5704 -1.5016 -2.1589 2.8960
    -1.2488 0.8183  -0.2232 1.5644  -2.4179
    -6.8247 10.8544 0.1144  2.0923  -3.9414
    1.2917  -2.3926 0.2298  -1.6085 -0.1640
    -1.7006 2.4126  1.5157  1.8182  -2.8721
    -4.4662 4.7474  1.4424  2.2964  -3.8801
    -2.3688 3.1677  0.4520  1.1399  -1.6460
    2.1402  -1.2691 -0.0928 -1.0838 1.5934
    3.7331  -4.3964 -0.6459 -1.1631 1.8581
    -1.8380 0.6351  -0.4415 -0.4434 1.4463
    -3.6677 6.9963  1.2500  2.8607  -4.5114
    3.7101  -7.5828 -0.0717 -0.4714 2.2129
    4.1738  -7.2193 -1.5023 -3.7360 3.2803
    -2.7633 1.2292  1.5481  1.6914  -2.4265
    -2.0430 5.7917  0.5919  2.2795  -3.0714
    1.4794  0.3611  0.2857  0.5358  0.3264
    -1.7299 3.9698  1.3932  2.8925  -4.6545
    6.2783  -8.9121 -0.7441 -2.4681 3.6226
    1.2015  -1.8885 -0.9031 -1.8537 4.2020
    1.0967  -0.6264 0.3164  0.2266  0.3170
    -2.5694 5.5342  0.1790  2.0864  -2.4356
    1.7320  -2.5274 -0.6598 -2.4668 4.7558
    -7.0255 8.8493  2.5570  4.3844  -5.1041
    -4.4829 4.1697  0.4572  1.7662  -4.2463
    -5.9809 10.6059 1.7293  3.6635  -5.8000
    2.1114  -5.9436 -0.0249 -0.9239 0.3548
    3.1703  -3.9066 -0.3978 -0.0052 -0.3796
    3.6428  -3.7530 -0.7777 -2.0866 3.6376
    -3.1061 3.7469  -0.0434 0.9960  -1.0646
    -1.4541 0.5478  -1.2610 -1.8437 1.6535
    -0.1184 -2.5207 0.3217  -0.9726 -0.6650
    -1.1800 5.8762  0.3976  1.9203  -1.3152
    -1.5966 0.1283  -0.7207 -0.8167 1.2376
    0.2977  1.1295  -1.0764 -0.6848 0.7931
    -0.9074 0.9202  0.4966  0.3257  1.4185
    -0.2003 -1.0302 0.7020  0.5376  -0.6362
    1.8928  -3.0859 -1.0566 -0.8828 1.2108
    0.9630  -3.2922 -1.4686 -2.5790 4.1721
    -1.9500 2.2947  -0.6549 -1.2318 1.5151
    -0.7520 4.1535  -0.0393 0.6856  -0.3852
    -1.2936 2.6088  -0.3511 0.1148  0.1844
    -0.9214 -2.3767 0.2841  -1.4801 2.8482
    2.4618  -3.9252 0.8357  -0.1907 -1.3974
    0.9743  -1.5465 0.8127  0.2877  -1.2227
    -3.4958 8.5439  0.0505  1.0503  -4.7391
    2.4976  -5.9903 0.1687  -0.8530 2.4335
    3.0554  -4.3838 0.3328  -1.2464 2.8572
    -1.1878 -0.3270 -0.0519 1.4715  -1.0065
    3.3955  -7.3527 -1.5294 -1.3396 3.1113
    -2.1996 0.9361  -0.0133 0.6215  -2.6563
    -5.1299 8.6400  1.4737  2.5258  -2.7278
    -3.3962 1.5044  -0.0144 -0.0978 1.6050
    1.6771  -1.5576 -0.9658 -1.9954 4.0681
    2.6996  -4.8556 -0.1549 -2.0026 3.8274
    -1.3963 3.2857  0.0322  0.9434  -0.7957
    1.0323  -0.1192 -0.4238 -0.6400 1.0000
    -0.4119 0.5615  -0.3962 0.4255  -2.1318
    2.3103  -6.7230 -0.7369 -2.4863 3.5155
    5.2944  -0.9010 -2.6056 -3.1356 3.5926
    -0.5920 -2.1853 -0.2694 -0.8135 0.9377
    0.6588  1.8972  -1.1032 -1.2158 0.1148
    2.7350  -2.4287 -0.9767 -1.0668 0.7351
    2.3853  -3.0645 -0.8289 -1.1928 1.9230
    -4.5954 10.5571 2.4893  4.0398  -7.8541
    0.4151  -1.4835 1.5128  0.4183  -0.8774
    -4.1711 7.8402  0.9844  2.1821  -3.0273
    -2.0470 2.8747  1.3144  2.2970  -1.9086
    -0.4526 2.5345  1.0607  1.6185  -1.7426
    -2.2511 3.9544  -0.0500 0.1594  -1.4501
    1.2730  2.4897  1.2650  2.2316  -3.2014
    -0.7641 -0.0187 0.6133  0.5233  -1.0786
    -0.8293 1.6344  0.0271  0.6077  -1.0892
    3.5293  -9.3925 -1.4891 -3.6508 3.1847
    -2.5906 6.7749  -0.1350 3.0682  -3.7780
    0.3224  -0.9390 1.4207  1.0807  -2.1133
    0.5680  1.2733  -1.4476 -1.4572 2.7797
    5.6758  -6.4371 1.6615  -0.7323 1.4133
    -2.5217 4.5874  0.4595  0.7579  -0.9643
    1.3102  -5.1195 -1.5247 -4.3685 5.3282
    -1.0650 -2.0888 0.5290  0.5192  -0.2216
    -5.0893 9.3237  2.9173  5.6835  -6.8250
    -2.2492 -0.9403 -0.0647 0.0536  -0.7514
    -2.5176 2.6577  2.0372  3.0491  -4.5928
    0.2929  2.1504  -0.6897 -0.2798 0.0387
    -1.4030 2.6318  0.6156  0.8674  -1.7451
    -0.3697 1.4799  -1.5757 0.2314  -0.0419
    3.0077  -3.6734 -1.0529 -1.6965 3.0406
    0.3198  1.2545  0.3956  0.1978  0.1097
    -2.5801 4.0523  1.4884  2.5612  -5.5668
    3.2467  -6.4823 -0.8664 -2.7634 2.5031
    3.2612  -5.5835 0.0532  -0.1275 0.2869
    3.2021  -6.8711 -2.3424 -2.9140 2.3686
    3.7945  -4.0457 -0.8533 -1.4917 2.4224
    5.8231  -9.1403 -2.3428 -4.5124 5.4486
    1.7770  -1.5893 -1.4691 -0.4844 1.0060
    -6.3103 10.3506 1.3931  4.0878  -5.6441
    0.1450  -1.2872 0.6761  -0.6702 -1.4670
    -1.7979 4.9155  0.1687  0.8919  -0.3845
    -4.0647 10.2174 1.1554  3.1247  -2.9633
    -0.0434 -3.1834 0.9817  0.0600  -2.0407
    1.7041  -4.1068 -0.8597 -1.9999 3.0717
    2.6073  -1.6351 -0.4356 -0.0511 1.6753
    0.3461  1.1851  -0.6036 0.1382  -1.3591
    2.0181  -4.9256 -0.8460 -1.1662 3.6774
    4.1818  -5.1589 -1.8156 -2.8680 5.1751
    -2.7852 4.4584  1.8998  2.7377  -3.6626
    2.8111  0.0426  -0.8813 -1.0753 3.2323
    -0.4778 3.8454  -0.0850 0.5238  0.6062
    -5.2827 6.5965  1.6090  3.0039  -3.3042
    0.0583  -1.7961 1.0084  0.8856  -1.0310
    -0.3821 0.9248  -1.3392 0.4609  -4.0150
    3.5863  -3.5441 -0.3916 -1.2937 1.4524
    -2.8091 1.1491  0.6788  -0.2538 2.2269
    1.9588  -3.5219 -0.7643 -1.5073 2.1401
    5.5330  -7.1550 -0.9650 -2.4141 3.3515
    -0.7159 1.8160  0.5911  2.2568  -3.4917
    -4.0973 4.7698  1.8730  1.7401  -0.9402
    1.5314  -1.9394 0.6205  0.0340  -0.1639
    -2.4315 2.9252  -0.2704 0.3343  0.2699
    -0.3416 2.7892  0.6419  0.8834  -2.0972
    0.2594  1.5031  0.1509  1.0642  -0.8088
    1.8438  -2.9531 -0.7349 -1.7083 -0.2722
    0.5425  -2.2263 0.2906  0.3623  -2.5281
    1.9688  -5.1766 -0.6671 -1.6083 2.2332
    -1.2326 -1.0412 -0.2999 -0.8761 0.0852
    2.9131  -3.5354 -0.7636 -1.7537 5.3384
    -0.7534 -1.2898 0.5689  0.3986  -0.2295
    0.7910  -4.3963 1.9105  1.1801  -1.1648
    -3.1347 2.8109  0.7467  1.2942  -2.3893
    -3.2836 3.4671  0.3969  0.4681  -2.6948
    1.0435  0.9731  0.8619  1.3623  0.4232
    1.3646  2.0761  -1.6327 -2.1008 3.4833
    -1.6500 3.1926  1.4449  2.3663  -4.3701
    5.8841  -9.4497 -2.6125 -3.4699 7.0372
    -3.0908 0.8304  0.0431  0.9238  0.1182
    3.4146  -10.2131        -0.0709 -0.6910 0.0597
    -0.6943 -0.7494 0.1427  -1.0142 1.1561
    -6.2149 9.3289  3.0469  5.1218  -5.3156
    0.6626  -0.7762 0.7944  0.6556  -1.8561
    -7.1892 12.9513 4.0379  7.1288  -8.6904
    -2.0646 4.0228  -0.4108 1.7457  -4.1350
    -1.7353 -0.5899 0.4973  0.5963  -0.3761
    -4.1184 7.0149  0.6135  2.0063  -2.3478
    1.2852  -4.5309 0.0514  -0.6711 0.4269
    -2.2249 6.4210  -0.5129 1.3253  -1.5093
    -1.8611 0.4621  1.8558  1.3394  -2.3021
    -3.2732 9.8602  -0.3409 1.1619  -0.9604
    0.9002  -1.5536 -1.0331 -0.3243 -1.5943
    -1.0236 3.9244  -0.0023 -0.0574 0.9129
    1.8980  -1.0037 -0.4935 -0.4184 1.7316
    2.3150  -2.7153 -0.7935 -1.2818 1.8212
    3.0432  -3.7792 -0.2268 -1.3763 -0.3414
    -1.4284 5.4073  -0.6757 1.4617  -3.7232
    2.6532  -3.7247 -1.5331 -2.8651 4.5747
    0.1255  0.9195  -0.3043 0.3186  -0.6525
    1.7246  -2.8046 -2.1753 -1.8942 4.9594
    -2.8441 1.0645  1.9744  3.1910  -5.2004
    2.1438  -3.6411 -0.5917 0.1008  -1.2184
    -0.2736 -2.2368 -0.5932 -0.3501 0.3319
    0.4261  -2.9876 -0.0277 -0.8829 0.6380
    3.5667  -6.2148 0.2534  -1.1977 1.2066
    -3.3162 5.0199  0.4548  2.1186  -3.2817
    -3.5076 5.1720  2.0897  3.3058  -2.1850
    -2.5206 2.2565  2.6214  3.1288  -5.3855
    2.7510  -2.9596 0.9749  0.7350  -0.1584
    3.6582  -6.8386 -1.3309 -3.4406 4.0357
    -0.5793 2.0339  0.7928  1.0234  -1.1475
    2.3648  0.2663  -2.9665 -1.3024 0.8890
    2.1301  0.0247  0.0675  -0.6483 0.0821
    3.7278  -4.4886 -0.7008 -0.8144 1.5566
    -2.3639 5.2291  1.3058  2.0289  -4.5994
    -0.7520 -0.8894 0.3461  -0.7017 -1.0495
    0.9982  0.7549  -0.8042 -1.4493 1.2533
    3.5511  -5.0249 -1.6973 -2.3709 2.8173
    3.0158  -4.8228 -2.9570 -4.2060 7.2516
    -0.2655 0.5234  0.7379  1.8272  -0.0970
    3.0221  -7.1325 0.2651  -2.2635 2.6739
    -0.3740 -2.3899 1.3804  -0.8558 0.3763
    0.8155  0.0535  0.0079  0.6491  -3.2793
    -0.2520 -0.1403 1.8217  3.6800  -2.8319
    0.3386  -1.3202 -0.1682 0.0779  1.2059
    1.0665  1.5843  0.5403  1.0423  -0.9551
    2.9877  -3.6682 -1.1716 -2.1153 3.3872
    -1.3405 4.5778  0.2608  1.6201  -2.6910
    3.9532  -2.3756 -0.9060 -1.8189 3.2228
    1.4543  -3.9539 -1.3064 -0.5762 0.7892
    -3.1022 4.4081  0.6087  1.5306  0.0384
    0.5815  -0.2766 -0.8410 -0.9976 -1.8905
    -3.2282 2.8802  1.1941  1.5146  -0.2580
    -0.5917 -0.8125 -0.2396 -0.5856 0.3261
    -4.8789 8.7074  0.7121  2.9438  -3.7656
    4.4667  -6.9510 -1.4669 -2.8574 2.4717
    -2.6209 5.6695  0.3442  1.0711  -1.8372
    2.6413  -3.9332 1.2161  0.9029  -2.4192
    0.9381  0.9739  -0.6855 -0.1148 -0.5375
    -4.6102 4.8102  1.4988  3.8719  -6.1806
    -2.2547 7.9975  -0.4826 -0.0626 0.4862
    3.0811  -3.9294 1.1633  1.8358  -0.9923
    -6.1076 9.1367  1.3247  3.1823  -3.6578
    -1.8524 5.0047  1.4707  3.2315  -1.9702
    -1.2550 3.2767  0.7324  0.4690  0.3466
    -3.9550 4.8033  2.0828  2.6867  -5.2692
    -2.3500 1.6458  1.0582  0.5052  -1.3594
    1.3436  -3.0723 0.3984  0.5547  -2.6371
    0.2047  1.5735  2.4582  3.7764  -5.2775
    4.1855  -8.6239 -0.3518 -2.6523 2.2153
    -2.8264 4.3710  0.8573  2.1624  -1.8880
    -3.3217 3.0460  1.0688  1.0979  -2.1270
    4.6767  -5.8127 -1.9695 -3.4879 5.1695
    1.9955  -6.4736 -1.9714 -2.3150 3.7075
    -0.5221 1.0050  0.5921  0.8086  -1.5538
    0.1538  1.6918  -0.6247 -0.5367 1.3246
    -1.8889 2.3776  0.6653  0.3649  -1.2277
    -2.8979 0.4355  -0.1605 -0.5882 -0.2712
    0.6760  -2.8898 -2.1901 -2.1913 1.6417
    -5.9018 8.3212  1.0967  2.5179  -3.3499
    -3.9962 6.2250  0.3452  1.8056  0.1026
    -2.2617 3.4671  1.5094  0.9386  -0.5775
    1.8335  -2.1298 -0.8851 -0.7581 2.8739
    4.9792  -8.2518 -1.9313 -3.1013 3.7771
    -2.3021 2.9278  -0.3492 0.6739  -0.0555
    -0.7778 3.7597  0.4328  1.0496  -2.4366
    0.5720  0.2225  -0.1388 0.1395  -2.0333
    -5.1977 8.0334  1.3473  2.6064  -4.1936
    0.4739  -2.2095 -0.6401 -0.5542 1.9981
    2.4604  -6.8930 0.1274  -2.0978 1.8880
    -0.9572 1.9072  0.3442  1.3317  -1.2599
    2.3242  -3.4436 -1.9373 -2.0079 2.4716
    -0.7200 -1.7892 0.4666  0.3189  0.3747
    0.0104  -1.6366 0.7342  0.0059  1.9560
    0.7718  2.8029  -0.9933 0.6427  -1.6151
    -1.1983 2.2355  2.8105  3.2562  -5.0767
    -1.4955 0.0599  1.6322  1.4703  -3.8465
    3.0120  -1.1120 -1.8436 -3.6090 6.1746
    0.8846  -3.0763 0.8855  0.2506  0.9457
    2.7055  -1.7203 -1.5600 -1.6261 1.1278
    -2.0080 2.9066  0.5858  0.7540  0.4766
    -0.8019 1.7620  1.6227  2.6253  -3.0621
    3.4721  -5.9545 -1.2235 -3.4624 5.8014
    1.5731  -3.7577 -1.9722 -2.5120 1.9042
    1.8879  -4.2051 0.0550  -0.7771 1.1689
    0.2861  0.7562  0.4580  0.6735  -0.2453
    5.5177  -6.1262 -1.8358 -2.7568 1.7640
    4.3010  -10.1126        -1.5279 -4.0171 5.1763
    6.4611  -8.1689 -1.9877 -3.0331 4.5398
    -0.2745 0.8707  0.2509  0.9218  -0.3845
    -4.8092 4.1561  0.7753  0.6731  -0.3283
    0.8865  -0.3376 -1.9206 -2.0667 1.6955
    2.4636  -2.9195 -0.5378 -0.9467 2.1060
    6.4861  -7.3501 -2.3937 -3.8070 5.3694
    0.6881  -0.8930 -0.7662 -1.0062 0.5154
    -5.7493 8.8091  2.6796  4.2031  -6.7880
    -0.1577 -4.9278 1.4639  -1.0324 1.1591
    -3.5369 6.3083  1.8388  4.1775  -7.1030
    4.7391  -5.3237 -2.7064 -4.2821 4.4746
    -0.2036 0.6337  -0.1098 -0.0055 2.0586
    -3.3084 6.4379  1.2573  2.7881  -3.8474
    0.5622  0.1167  0.8727  1.2093  -0.7322
    2.7406  -5.6741 0.6077  -0.8887 1.8269
    0.0337  4.4149  0.7035  1.7343  -1.9683
    -0.9440 1.3636  2.8952  2.4481  -3.9557
    -2.4762 4.9712  0.6802  2.0790  -1.6374
    -1.2281 -4.4092 1.9642  1.2237  -3.1301
    3.2230  -8.4959 -0.3404 -3.7415 4.9306
    0.6843  -1.6247 0.2168  0.1798  -0.4365
    -3.4033 1.6968  2.2039  2.1614  -2.5144
    4.0033  -4.1060 0.6944  -1.5684 1.7860
    2.9174  -6.1514 -2.6513 -4.4484 5.2428
    4.8534  -12.9392        0.1417  -3.5461 5.1181
    -1.3682 0.4710  2.0071  2.9267  -3.9864
    3.7303  -6.8493 -0.6139 -1.4672 2.8429
    -0.5742 3.8896  -0.9152 -0.2498 0.4217
    2.2396  -5.9851 -0.7664 -1.0721 0.0657
    -0.6626 -0.2857 1.1391  0.2352  -2.8561
    -3.8509 3.6993  1.6408  1.8415  -3.8900
    1.5329  -7.9010 -0.4390 -2.9480 5.1964
    2.6745  -3.2465 -0.4349 -1.5389 1.8580
    4.0888  -5.1670 0.2728  -1.2123 2.0288
    -3.0017 5.4357  0.7718  1.7243  -2.5350
    -1.1502 1.2673  -0.5424 -0.4160 0.8369
    -0.9273 -0.5162 0.2589  -0.2747 -1.4287
    1.4137  -0.2638 -1.6159 -2.2861 2.2471
    -1.9236 -0.5611 0.0242  -1.2467 2.2641
    2.8872  -5.6074 0.9844  -1.1158 1.1467
    0.4888  -2.0711 0.0539  -0.7157 -0.0564
    -4.4480 7.5563  1.7617  4.6745  -6.9865
    -2.2892 4.3473  1.8418  1.4411  -3.4389
    -3.5230 5.5253  -0.4786 1.7208  -2.3298
    1.4077  1.8654  0.5599  1.0543  -1.4247
    -1.8052 2.7746  -0.5496 -0.0824 0.6125
    -1.0504 2.4070  -1.3950 -0.0146 -0.4956
    -0.1915 -0.6182 0.7635  0.3984  -0.6321
    -4.8781 1.2528  1.9380  1.5284  -1.7796
    -1.3244 3.8497  1.8791  1.8512  -0.8910
    -0.0731 -0.2603 0.8773  0.6288  -1.5692
    3.3048  -7.2711 -1.9114 -3.7722 6.7624
    2.8320  -3.2094 -0.9945 -1.4384 2.3424
    2.9092  -2.4675 -0.8351 -1.4008 3.0895
    2.3384  -2.4705 0.5991  0.5484  -1.3342
    0.7234  -2.0974 -0.4468 -1.5468 2.1159
    -0.4534 2.7432  0.4966  1.4822  -1.3601
    -3.9098 1.5066  0.8047  0.2157  -1.0952
    -1.2739 3.1993  -0.7397 0.3579  -1.9313
    3.9966  -1.4525 -1.7202 -2.2779 3.6641
    3.2663  -1.9555 -1.2785 -1.8152 1.7601
    -1.2367 4.7497  0.1384  0.4181  1.6061
    -3.7734 4.9034  0.7399  1.5063  -1.4565
    -0.2634 0.1713  2.2154  1.9796  -2.0756
    1.8222  -1.9891 0.6709  0.6241  -0.0589
    -0.6192 -0.6482 0.7555  0.4456  -0.4140
    1.8240  0.8161  -0.2842 -1.0310 1.7524
    -3.4110 6.3391  1.2947  3.3628  -2.2062
    -0.5359 1.8587  0.2257  1.9705  -1.8232
    2.1736  -2.4036 1.6550  1.8718  -0.8460
    0.5787  -3.6658 0.1355  -0.2586 -0.0470
    -2.8826 4.4995  1.0436  2.4518  -2.7916
    -0.3678 2.9462  0.3260  0.3983  -0.6333
    -3.5630 5.7243  0.4643  2.8299  -3.4950
    -1.1421 2.2264  0.9604  1.1755  -1.7109
    -1.4296 3.4367  0.1717  0.5622  -1.1002
    -1.6864 2.7826  0.5219  0.9004  0.1293
    -11.0916        20.1829 2.6422  6.4652  -7.8598
    5.1468  -6.1870 -1.4446 -2.9639 2.2828
    1.4653  -4.4361 -0.6881 -0.4013 -1.1100
    -2.5235 2.2573  1.3389  1.8786  -3.6206
    -0.7785 -0.6427 1.9092  1.4801  -2.9214
    -1.7346 2.9380  0.8601  0.7570  -1.5159
    4.3519  -6.2128 -1.1689 -3.7338 4.4942
    1.0089  -4.2931 1.0397  0.3431  -2.6283
    2.4428  -2.8160 -0.1293 -0.6954 1.8958
    -8.1406 11.4154 2.0985  3.2093  -5.2572
    -3.7381 4.3152  1.2144  1.2806  -2.3737
    -3.0932 6.8168  1.4602  3.1392  -4.5122
    -1.5887 0.7896  0.2735  0.8331  -0.1185
    -1.9210 4.1681  1.0508  2.9186  -3.7632
    1.0547  -2.8538 -1.4508 -1.9538 5.2040
    -2.2374 9.0207  0.7182  3.2209  -3.0807
    1.5047  -3.4980 -0.8760 -1.6196 1.8904
    -6.7315 11.4004 1.7998  4.1797  -7.0602
    -4.9045 8.3250  1.9988  3.8233  -4.1637
    0.0517  -0.0505 0.8663  0.8261  -0.9419
    -5.7856 7.8862  2.1350  4.0636  -4.5922
    -1.3448 0.2018  -0.5235 -1.2777 0.9909
    1.0048  1.0503  -1.3447 -0.5679 1.1795
    -0.1395 1.3665  -0.3250 0.5964  -1.5414
    -0.5600 2.8411  -0.2922 -0.7259 1.7186
    -1.6467 4.1253  1.7007  3.1955  -3.3667
    -9.4163 14.3185 3.6842  7.5115  -7.9125
    1.5714  -4.9817 -1.0858 -2.1701 3.1880
    1.1403  -1.7609 -0.2980 -1.6733 1.6248
    -0.1604 -4.1140 -0.1431 -1.8074 2.1692
    2.1326  -7.1212 -2.0988 -2.8009 4.5308
    7.1686  -9.8244 -2.3407 -4.1812 4.0120
    0.6982  0.8016  -0.7666 -0.4827 0.8868
    5.9531  -7.5140 -1.8089 -2.3752 3.4688
    -2.7307 4.6514  1.3128  2.7004  -3.5166
    0.5454  -4.0680 0.3631  -1.9363 2.4404
    -6.7728 9.2743  3.0738  5.1580  -7.0541
    3.1417  -3.2437 -2.5098 -1.5812 1.8020
    1.5839  -0.6714 -0.1419 0.4488  -1.1512
    -0.3087 0.8077  0.6032  1.0462  -2.7652
    1.2033  -7.5024 0.7284  -0.8042 1.6880
    -0.2663 1.9636  -1.1948 -0.5682 1.8370
    1.2218  1.3372  -0.0057 -0.5157 1.1550
    0.7007  -4.0675 -1.5488 -1.2206 0.2381
    1.3234  -4.8247 -0.3991 -1.5855 0.2205
    3.0541  -3.3459 -1.1902 -1.9517 2.6350
    1.0161  -1.2356 -2.6919 -3.6190 4.9058
    1.4134  1.6693  -0.1262 0.2241  -0.4542
    -6.7886 14.6550 2.2991  4.8027  -8.8821
    2.4798  -2.8016 0.4981  -0.1538 0.7230
    0.2882  0.4257  -1.1573 -2.0947 2.6293
    1.7741  -3.3321 -1.8306 -3.8949 5.9896
    0.9861  -0.7829 -1.6987 -1.8974 2.2423
    -3.7863 2.6038  1.9482  0.8579  -1.0094
    -4.5293 3.8299  2.5878  3.3806  -6.2259
    -0.6456 1.9261  1.0963  1.6161  -1.6804
    2.4682  -0.6923 -1.7923 -1.7628 2.1805
    -1.7193 -0.0976 -0.0430 -0.5034 0.5538
    1.8270  -0.7679 -0.6450 -0.2235 0.7633
    -0.5082 2.4944  -0.4835 1.3518  -4.4457
    1.9574  -5.9620 0.9185  0.4278  0.9386
    -2.4095 3.0350  0.6051  2.0401  -2.6404
    -2.3443 4.2821  0.3118  1.0642  -0.8803
    -4.3750 4.4617  1.0817  2.5154  -1.7677
    5.2291  -4.4301 -2.4017 -3.0121 4.4376
    -3.8211 5.1378  -0.4034 -0.1275 0.7899
    2.1151  -7.0204 -0.6367 -2.8865 2.5418
    0.6283  -3.4369 -1.4209 -2.3554 4.9164
    -5.9971 8.4384  -0.1658 2.1792  -2.8169
    2.7232  -1.9071 -0.5048 0.0861  -0.8487
    5.4151  -8.7323 -1.5361 -1.6471 1.4250
    -4.0589 4.7402  1.9166  3.2464  -3.3371
    -0.6548 5.0124  -0.6795 0.6173  -0.6992
    -0.9824 1.5378  -0.7169 -0.3580 0.7190
    -4.3887 7.3156  0.6607  2.2216  -4.0950
    0.3208  -0.1414 -1.4781 -1.7137 2.6444
    -2.0858 5.1123  1.2848  1.2196  -1.8966
    -3.3699 3.9719  0.2451  0.2301  0.4652
    -1.4413 2.3381  -0.1212 0.4813  -2.6506
    -2.3496 0.3841  0.4943  0.0827  -0.5216
    -2.3066 2.5944  0.8126  1.2262  -2.4269
    0.3681  -2.2503 0.9552  0.1144  1.2555
    1.8671  -2.6730 -3.2424 -3.6757 5.2704
    -0.6859 -3.5385 -0.3024 -0.5604 1.4867
    -2.0538 1.5457  1.8833  1.2709  -2.1566
    -5.5218 5.7131  2.2022  3.2564  -4.4750
    -1.1596 -0.0717 0.0004  0.8867  -2.5825
    -3.3933 4.2475  0.4856  1.8984  -2.7349
    -1.3511 1.4162  1.0840  1.7149  -3.4052
    -2.1756 1.8142  1.1183  2.1641  -5.5908
    0.0536  0.3385  -0.7395 1.1626  -0.0551
    -3.5261 6.3136  -0.4962 0.1031  -0.0144
    2.4417  -8.2118 -0.1847 -2.0031 1.8257
    1.8205  -3.1055 0.3637  -0.3133 0.5899
    0.6944  -1.9864 1.5248  1.1395  -2.6648
    0.4560  -2.6494 1.6173  -0.2814 -1.0352
    3.5899  -2.0255 -0.9064 -1.5161 1.9035
    2.9283  -5.3968 -0.3792 -0.9264 2.8115
    -0.4419 2.7647  1.1129  2.2078  -1.1310
    -5.2984 10.9184 0.8051  2.5757  -3.2583
    6.0335  -8.1424 -2.0348 -4.1950 4.7426
    4.7931  -5.7763 0.1280  -0.4106 0.6165
    -4.6273 6.0598  1.4907  3.2361  -2.3087
    -1.9921 1.3864  0.7348  1.2404  -1.4063
    5.9351  -11.3505        -0.8003 -4.5518 5.8173
    -4.0299 3.7589  0.7372  1.2426  -2.4216
    8.1627  -9.3911 -2.1269 -2.5424 3.1807
    -3.5319 1.7017  -0.1882 -0.0809 0.7519
    1.3610  -2.2161 -0.1399 -2.2786 1.6491
    1.9121  -0.8753 -0.4533 -0.0109 -0.8289
    1.7697  -4.1776 -0.1469 -1.7794 3.2913
    3.2916  -5.3125 -0.2972 -1.0727 1.1121
    0.6624  -1.6115 0.5026  1.5091  -1.7608
    -0.8913 -0.9629 -0.5065 0.2171  -0.2144
    -2.5065 6.7842  0.4857  1.6815  -3.1546
    2.2774  -2.8487 -0.1759 -0.4005 0.4355
    -0.0262 -4.6551 1.5365  0.8807  -1.3236
    -0.7303 0.8960  0.3078  1.0323  -0.9331
    8.8657  -12.1028        -4.4338 -6.1690 9.1439
    3.9762  -3.6134 -1.0063 -1.1941 1.2281
    1.2978  1.4244  0.1596  1.0453  -0.5563
    -0.6321 1.6687  -1.0043 -1.6685 2.3727
    -3.9882 6.6234  0.6523  2.8332  -3.2718
    -1.7805 -1.2488 0.6158  0.0675  -0.2437
    0.1321  -1.9746 -0.5640 -1.6886 2.1306
    2.4331  -4.8293 -0.4347 -0.4550 -0.4229
    -0.5452 2.6910  -1.1148 -0.5015 2.0937
    6.8199  -11.4118        -2.8138 -4.9897 7.9727
    -5.0544 9.8524  2.6302  4.4964  -5.6632
    -0.0609 0.9022  -0.0076 0.6508  -0.1820
    3.0659  -5.8549 0.0067  -1.7971 3.1346
    -0.5427 2.5268  -0.8800 -0.0346 0.6274
    1.3850  -0.1277 -0.7177 -0.1322 0.5164
    7.7596  -10.7770        -2.3437 -4.3758 4.4497
    -6.1564 6.9874  1.9194  2.5236  -1.9913
    -0.8679 2.0718  0.9792  1.3479  -2.0227
    -2.1183 2.4703  -0.2180 1.3350  -3.0440
    3.7250  -6.6720 0.7396  -1.1707 2.1180
    1.4094  -3.7211 -0.6826 -0.8578 -0.5769
    -3.2388 5.6595  1.1901  2.5255  -1.3378
    6.0934  -5.9170 -0.5807 -1.2579 4.1531
    2.1995  -4.0461 -1.2513 -0.9067 2.2585
    -3.9263 5.0695  1.2756  2.8706  -1.4160
    -3.2086 7.3705  0.3593  2.2531  -3.8860
    -0.9476 4.8973  0.2607  0.5964  -0.2568
    6.5039  -8.9351 -1.4303 -3.6087 5.3227
    -1.9402 1.5538  1.4499  1.0287  -0.4864
    1.1752  -2.6518 -0.5773 -0.5569 -0.2366
    4.8307  -4.7757 -0.3809 -1.4777 3.9796
    -0.2216 -3.3943 -1.1259 -1.8289 3.6822
    6.2269  -6.2318 -1.3348 -2.9216 2.6572
    -1.4611 2.2876  1.5855  2.3935  -2.4409
    -2.7974 7.5987  1.6147  3.0599  -1.5600
    -2.5201 3.0825  0.3952  2.0165  -2.7273
    -4.8769 5.9483  0.1705  1.9479  -2.5613
    0.7528  -3.5887 -1.1140 -1.3360 0.9842
    1.4180  -5.4790 -0.9103 -1.7829 2.4091
    -3.7836 6.2905  0.8672  2.1641  -4.3104
    -6.4294 6.7993  3.0942  4.4414  -4.9947
    2.7964  -2.3020 -1.0873 -1.7976 1.4053
    2.1305  -5.5995 0.1234  -0.2787 0.9001
    3.2141  -1.9886 -1.9555 -2.0607 4.5694
    0.0417  -1.0749 -0.6171 -0.9406 0.8307
    -3.6155 1.5011  1.6582  2.8512  -3.1365
    0.4411  -5.2403 -0.0497 -0.5934 1.0065
    3.9769  -4.6987 -0.7445 -1.0918 0.3197
    7.3942  -14.0730        -1.8010 -5.2116 6.5826
    -2.8255 7.6052  1.0132  3.2237  -2.3707
    -3.4882 5.6381  0.7687  1.6916  -1.5964
    3.9813  -3.1701 -0.7073 -0.8226 -0.8045
    2.3885  -4.1272 -1.6458 -2.4430 3.8837
    -1.1488 1.3751  0.2901  -0.3651 0.1248
    9.3721  -10.8404        0.0697  -2.2204 1.6148
    -0.0009 -2.9970 1.4775  1.1189  -1.2696
    2.0524  -2.8742 -1.4830 -0.7827 1.6640
    1.6353  -1.0433 -1.9170 -1.9930 1.9826
    -0.1091 0.5435  0.8875  1.1916  -2.0790
    -2.3466 0.2335  1.8175  3.0318  -5.4033
    4.1995  -7.2415 -0.1943 -0.7364 2.4521
    -4.2319 8.0788  2.0023  2.9417  -3.9054
    4.7669  -5.6566 -0.6997 -2.1532 3.5861
    -2.8007 4.8479  1.9148  1.8337  -1.8429
    -3.4958 4.1372  1.6496  3.0764  -1.2053
    10.9554 -16.4655        -3.2520 -5.6337 7.1968
    1.8209  -1.2079 -0.9686 -1.0341 1.0158
    -6.4240 6.5679  0.8303  2.1621  -5.6636
    -3.1217 8.0054  0.7009  1.4635  -1.5161
    -0.6057 -3.1875 1.3305  0.2763  -1.3426
    -1.3452 2.0101  0.2364  1.8456  -2.8798
    -1.0165 1.5443  0.1029  -0.1599 -0.6660
    2.1929  -5.6139 -1.3039 -2.2541 1.6893
    0.5193  0.0184  -0.9745 -2.4646 5.6867
    -2.0093 0.8657  1.3484  1.5876  -1.0184
    -1.1173 4.2948  -0.1689 1.0379  -1.9717
    -5.8679 9.6450  1.8804  3.1404  -5.0765
    -1.6296 2.3821  -0.7967 0.0352  1.3397
    -8.3124 12.5506 1.8018  3.5896  -5.2382
    -0.4047 0.0890  -0.4498 -0.4366 1.1793
    0.8242  -2.2600 0.4212  -0.9317 -0.4261
    -1.0217 2.4818  -1.3076 -0.6776 0.8253
    1.8791  -6.5020 1.1430  0.4540  1.8914
    -2.5549 3.6143  0.5487  1.8382  -2.0216
    3.5083  -8.1159 -2.0798 -3.7204 5.1926
    -1.6316 2.2504  1.5323  1.9569  -1.9991
    2.2540  -2.6403 -1.3871 -1.9311 3.7833
    4.1463  -3.0529 -1.2502 -2.5142 2.0543
    -0.8043 5.0510  -0.2911 0.7375  -0.8880
    -0.0854 0.4986  0.7148  0.2502  -1.1651
    -1.2022 3.2849  0.3322  2.1063  -0.6146
    6.5024  -11.4006        -1.0693 -4.0476 7.5643
    -0.2549 -0.5840 0.9135  2.2661  -3.3519
    4.2980  -3.6877 -0.6806 -1.6452 1.8355
    0.7819  -0.9781 -2.3100 -2.7084 4.6079
    0.6943  -1.3852 -0.1098 -0.7769 0.1423
    -3.3944 7.8273  1.3212  2.8860  -2.7789
    -1.9587 1.8048  1.1916  1.8052  -2.7517
    2.4778  -3.1157 -1.0765 -2.2450 5.1559
    -2.6488 6.4715  0.4248  2.0247  -0.7437
    2.0247  2.0500  1.6620  1.7064  -2.2364
    0.3304  0.9748  -0.2077 -0.0335 -0.5178
    -7.0324 6.2500  2.3331  3.8285  -5.6991
    -1.0962 2.8089  -0.2234 0.5215  0.9124
    1.9296  0.4876  -1.9192 -2.5042 2.8021
    -4.9644 8.8976  1.8530  4.8599  -6.4125
    0.0369  -1.2886 0.0988  -0.4228 0.4528
    -3.1026 2.1496  -0.1989 -0.5353 1.3098
    -0.2506 -1.8437 0.8059  0.6028  -0.1335
    -1.0253 -1.2985 0.1269  0.3247  0.2092
    -2.7754 4.7970  2.0431  2.8591  -4.5912
    -1.2369 0.3633  0.5602  0.4964  0.0701
    -2.6057 3.2070  1.2363  1.0995  -0.4391
    5.5665  -5.5703 -1.9042 -3.2663 6.8192
    1.6541  -2.6446 -0.0534 -0.8017 0.0521
    4.1959  -7.6838 -0.2536 -1.7090 2.1894
    4.4750  -3.3703 -1.0029 -0.3008 -0.3772
    1.9351  -3.2292 0.3428  -0.6790 2.4642
    -2.0245 0.0496  1.0228  0.7713  -0.7112
    0.0891  -2.3556 0.0832  -0.7232 3.6108
    -3.6004 6.4408  -0.2278 1.9931  -2.5449
    -2.5694 1.5184  0.5941  -0.3867 0.2188
    -1.6994 6.1765  -0.0872 0.3289  -0.3948
    -2.4354 7.4260  -0.7629 2.1677  -1.4500
    -3.7817 1.3376  0.3465  2.3289  -3.4352
    2.2283  -9.1554 -0.5789 -3.2789 2.5399
    -0.6381 0.9987  1.0637  0.4461  -2.2920
    1.1318  -3.7426 -1.2012 -2.8097 5.4657
    -0.2520 -0.0678 1.9079  2.2486  -3.0336
    0.9538  0.2189  -0.5210 -0.9839 0.8115
    -2.7527 0.9086  0.5049  0.1429  -0.2926
    -5.8529 10.5901 1.1394  4.3118  -6.2316
    -0.4484 0.5450  -0.3309 0.0480  -0.4421
    0.6801  -0.2229 -0.8007 -0.4997 0.5072
    4.0088  -4.9993 -1.0232 -1.6730 2.1362
    -2.4653 2.6370  1.5793  1.3559  0.7131
    -1.3889 0.8551  1.3226  1.9140  -2.5018
    -4.8371 9.9871  2.1762  5.0301  -5.5712
    -0.8344 -0.8932 -0.1877 -0.6028 0.2122
    -1.4873 3.2809  1.9150  3.0999  -4.3617
    0.9383  -1.9200 -0.8226 -1.0388 1.5804
    -1.2092 1.4926  1.3349  1.0536  -1.4051
    0.9896  0.8891  -0.7783 0.3045  -1.3052
    1.3604  -0.8079 -1.5889 -0.7847 2.7741
    0.7025  -5.8638 0.6466  -0.2337 2.4884
    0.6970  -0.8652 0.0102  -1.6004 -0.5002
    5.7655  -7.4819 -1.0959 -3.2618 2.7242
    -3.4201 1.3707  2.1443  2.3396  -2.3657
    0.7011  1.7600  -0.3424 0.3037  1.6642
    -0.7500 1.0284  0.9179  1.1967  -1.2709
    5.3712  -9.1492 -1.0968 -3.5726 4.7545
    1.5386  -4.8055 -0.1583 -0.7320 0.3804
    -2.4328 2.6767  -0.3213 0.3442  -0.3561
    -0.3901 1.4595  -0.1638 0.9571  -3.1319
    -1.3738 -0.0280 1.8109  1.0209  -1.5689
    0.4683  2.7910  -0.9047 -0.7820 -0.2321
    -0.3070 3.1636  1.5850  2.4787  -4.1757
    4.7064  -7.1976 -2.4871 -4.8361 6.4102
    -0.9306 2.6820  1.9789  3.3401  -4.1570
    1.9972  -0.8097 -1.3831 -1.2292 1.0024
    0.0099  1.9999  0.9978  1.9558  -1.5070
    -1.5888 -0.1469 -1.0275 -1.1981 1.6268
    -1.5325 -0.8621 -0.4837 -0.6594 1.2480
    -5.0213 5.0834  1.2146  3.1429  -4.2601
    2.7634  -0.9365 1.3224  -0.0853 -0.8989
    1.6889  -3.8696 -1.3459 -2.0021 2.1166
    2.2655  -1.8918 0.3722  -0.0066 -2.5652
    -0.0312 -0.4627 1.1405  2.0969  -4.8081
    3.6773  -6.7293 -1.1911 -1.0463 -0.4469
    1.4374  1.4268  -1.0956 -0.1648 1.8844
    -1.2262 -0.5978 1.8358  1.7184  -1.9200
    -0.5865 2.7082  -1.1868 -1.5281 2.2950
    2.8870  -4.3607 -0.5535 -2.0769 1.0762
    -5.3341 6.5338  1.5545  2.7122  -3.9387
    1.6197  -0.3079 -0.0714 -0.4888 -0.5863
    1.8215  -4.5874 -1.9544 -4.4826 5.6419
    -4.4787 8.2032  1.3784  2.5382  -5.1193
    2.3218  -5.5573 1.5551  0.4997  0.8783
    -0.8258 0.2189  0.3514  0.3542  0.6412
    2.9935  -3.8253 -2.1226 -2.8118 3.0196
    -0.6865 -1.7104 -1.1950 -0.4829 0.3560
    1.5775  -1.1186 -2.0540 -1.8648 1.7027
    -2.7031 6.0237  0.6385  1.3672  -3.2090
    1.2631  -6.2663 0.0967  -1.2924 1.4147
    1.3955  -3.0767 1.0874  -0.0280 0.1073
    -3.1128 1.9257  0.1802  0.7565  -0.3585
    -1.9297 1.6520  -0.5594 -0.3853 0.2005
    2.2869  -3.3861 -0.2198 -1.8285 4.2803
    1.9902  -3.0210 0.4910  -0.6755 2.5764
    -7.9993 11.5388 1.4684  3.8573  -4.2517
    1.0284  0.6114  -0.0722 0.1417  0.8738
    -5.3215 5.1147  3.8706  5.9964  -8.8786
    -1.3141 1.9241  -0.9026 -1.5718 2.9738
    -1.1654 1.6490  2.0537  1.6658  -3.0718
    -2.5363 7.1910  -2.0830 -0.6164 -0.6177
    0.0283  -1.4731 -0.0150 -0.1940 1.0935
    -3.1996 4.8306  0.8785  2.5682  -1.2966
    -5.5790 8.2738  1.4081  3.5160  -5.4127
    6.2211  -9.9576 -0.3960 -1.6582 2.9413
    1.7744  -3.8253 0.7164  0.2880  -1.8207
    -0.5211 -0.4820 0.8276  -1.1217 1.1512
    4.4035  -0.8479 -1.3894 -0.7242 -0.9468
    -0.0294 -3.0350 1.3165  0.0143  -1.4745
    3.6216  -6.8822 -1.1207 -2.2548 2.2200
    1.1042  -4.5450 -0.0302 -0.3658 -1.1991
    -5.5356 4.4154  2.3293  4.1668  -5.9136
    0.8741  1.6597  -0.9244 -1.5805 2.5038
    -3.4257 2.1273  0.2655  1.5741  -0.5057
    -0.7349 3.5082  -0.8584 0.6730  -1.4210
    1.0195  -0.4298 -1.4931 -1.5535 2.9865
    -2.1759 2.1547  0.1645  1.3075  -2.6064
    -3.1435 4.4112  1.4607  2.3837  -3.5276
    -0.8096 1.3830  0.5967  1.2382  0.9833
    3.7654  -4.6968 -0.0611 -0.7084 -0.9132
    -3.6117 4.7453  0.9366  2.2614  -3.4493
    1.0851  -1.5696 0.2951  0.0030  1.2161
    -0.6776 2.3124  1.2315  1.1153  0.2607
    -4.3884 4.9587  0.8444  0.5806  -0.1690
    -2.4204 1.9633  0.3592  1.9735  -3.7951
    2.4325  -3.6479 -1.8343 -4.1439 6.0865
    -2.5798 2.7942  2.1202  2.4253  -4.1786
    0.4987  -0.3833 0.1481  1.0044  -1.4376
    2.4188  -1.7320 -1.1028 -1.4884 1.7377
    1.2069  -2.1624 -0.2533 -0.1763 1.4197
    1.0103  -0.5042 -1.2654 -0.6791 1.2971
    -5.3279 6.6307  0.9756  1.8788  -2.9995
    0.0201  -0.4142 1.0463  0.2040  1.0132
    0.5675  -0.8710 -1.2343 -1.5649 2.1397
    -0.0049 0.4434  -0.0226 0.0230  -2.0480
    -1.8611 0.9730  0.6600  0.5799  0.0093
    1.1995  0.6333  -1.0861 -1.3256 2.6343
    -5.0387 6.2856  2.3157  1.9877  -1.6393
    0.5347  0.6598  0.2902  0.0141  -2.0342
    3.1707  -3.8564 -1.3020 -1.0781 2.3866
    4.1320  -4.5163 0.3839  -0.6846 2.4678
    1.2084  -6.9063 -0.6728 -1.5891 1.0905
    1.0456  -1.0739 -2.8251 -2.6672 2.0383
    -1.6818 6.2501  1.5739  2.4068  -3.3156
    2.3977  -2.9538 0.4584  -1.0025 -0.8353
    -1.6291 1.0283  2.1175  2.4215  -3.7742
    0.9254  -0.8004 0.9648  1.2191  -1.4413
    -0.3294 2.2633  0.5500  0.8577  -0.4806
    1.9973  -3.1258 -0.0669 -1.4692 1.0806
    0.1529  -3.5596 -0.2301 -0.9151 2.2623
    1.6658  -0.8589 -0.3709 -0.3768 1.3323
    0.0635  1.2631  0.3665  -0.2541 -1.1426
    -0.2930 -0.3675 -0.4990 -1.4417 2.7214
    0.1149  -1.5856 0.0460  -0.9154 2.0065
    -0.1114 -0.9538 -1.2421 -0.7076 -0.7488
    1.4790  1.9474  -0.2649 -0.5567 1.8457
    -3.5335 2.2938  0.2313  -0.4002 1.2069
    2.4116  -8.1491 0.4523  -1.5133 2.7635
    -1.0877 2.8016  0.1658  0.0247  1.4885
    -4.5574 4.6049  3.8480  5.2207  -9.1368
    -1.4250 1.7232  1.6756  1.6814  -1.2566
    -2.5590 1.3269  2.3713  3.3840  -4.7952
    -2.4845 4.4376  1.5231  1.4631  -1.5999
    -2.3855 3.8283  -0.9494 1.8060  -1.9537
    -3.4006 5.2518  0.8775  2.1126  -0.2316
    -6.4845 6.7788  3.1311  3.0115  -2.3446
    -1.8371 3.3444  -0.1640 0.1142  0.5490
    4.4212  -8.8889 -1.2941 -4.0462 5.1664
    -1.4986 2.5373  1.7402  2.6883  -1.9099
    6.1853  -10.5880        -3.0991 -4.5559 6.3907
    2.7917  -9.6873 -0.3244 -2.9311 5.2448
    -2.5601 3.1308  -0.2362 1.2574  -2.2165
    2.1090  -1.3587 -0.2562 -0.1940 0.3315
    -7.9030 5.9564  2.4413  2.7535  -4.9522
    -1.7680 0.8072  0.8377  0.0124  -0.7823
    -3.8034 4.6495  1.9140  3.3735  -4.5700
    3.1806  -6.9301 -0.6940 -1.4584 0.9618
    5.3085  -6.2355 -2.0561 -3.7699 3.9614
    -2.8050 6.2115  1.8052  1.5156  -1.9649
    2.9622  -2.5537 -2.6018 -2.7109 3.2079
    -3.4164 3.6153  0.7359  2.1147  -1.7449
    2.7544  -2.4580 -2.0946 -3.0619 3.9487
    0.8377  3.2049  -1.5827 -0.8128 1.1449
    -1.6414 4.4034  1.1521  1.6793  -1.1510
    2.6650  -5.7303 -0.0708 -0.3415 -1.1463
    4.5521  -6.2040 -1.2070 -1.7241 2.6764
    -2.7532 4.3948  1.6562  3.5559  -4.5816
    1.5907  0.4730  -1.3195 -1.7760 2.4554
    -5.9458 8.6968  1.5538  1.9234  -2.6941
    -0.2392 1.0914  -0.1339 1.3005  -0.7395
    0.8182  -5.0765 0.2655  0.2176  -1.6327
    1.4279  -0.3715 -1.2476 -0.7752 -0.5333
    1.4221  -2.4230 -0.9836 0.4447  0.6264
    1.3218  0.7515  -0.2064 0.1093  -1.1324
    -4.5121 1.8243  0.9459  0.9744  -3.8292
    2.4328  -6.1374 -1.3506 -3.4509 5.0334
    3.1387  -2.9956 -1.2000 -2.1184 2.5641
    -1.9716 1.2819  2.3125  1.7000  -3.7189
    7.0330  -8.1969 -2.9199 -4.9950 5.6828
    2.8558  -5.5715 -3.2185 -3.8572 4.9658
    4.0579  -8.4582 0.5170  -1.7127 2.4650
    3.6967  -5.4928 -1.0465 -3.0799 4.5874
    -1.8065 3.8847  0.9908  2.8901  -3.8777
    1.8907  -2.5343 0.2485  0.4092  -0.5298
    -1.7082 -0.1467 0.5289  -0.9622 1.4338
    -0.9279 1.4306  0.7449  1.2421  -3.5381
    -2.7380 5.9402  -0.1098 1.5001  0.0467
    -0.8427 -1.8608 -2.6118 -2.6705 3.2844
    -6.2282 6.4841  2.0029  2.8710  -1.4164
    1.7858  -4.3295 -0.3203 -1.9384 2.3125
    2.3520  -4.3172 -0.2004 -1.0887 2.8567
    -1.1218 3.1746  0.9503  0.8095  1.2401
    0.4990  -1.3759 -0.4689 -1.6395 2.5596
    1.3870  -2.2467 -0.5630 -0.5183 3.0087
    -6.9203 12.3204 2.1567  4.4289  -5.5182
    -2.1673 2.7578  1.1920  2.2982  -2.8850
    4.8158  -7.0482 -2.2923 -3.4666 5.0831
    0.9174  -0.5208 0.2257  -0.1480 2.2006
    4.3837  -7.5189 -1.6224 -2.3327 2.6330
    0.0906  1.9474  -0.7691 -0.6307 0.5697
    6.6309  -10.0662        -1.5508 -2.7188 4.5879
    1.9518  -6.1988 2.3182  1.6461  -2.3812
    -4.5852 5.7145  0.9413  2.5996  -4.3838
    1.7302  -7.3070 -0.2016 -3.5814 5.8422
    2.1406  1.5324  -1.2965 -0.7229 -0.0491
    3.1573  -0.2692 -1.0890 -0.4652 -2.1168
    2.9480  0.0255  -0.4988 -0.1578 -1.8239
    -0.1823 -1.5404 1.2577  1.9435  -2.3578
    -0.3582 -2.7821 -0.1261 -0.4077 1.8037
    3.7031  -6.1406 -2.6904 -4.4087 7.0504
    2.7979  -5.4939 -0.2104 -2.1564 2.4001
    0.0274  2.3126  1.3147  1.8148  -3.4421
    -0.1981 2.6265  -0.7726 -1.1996 0.9483
    4.9647  -6.0867 -1.4578 -1.9534 3.3148
    -1.6582 4.3896  0.3169  1.5368  -3.6350
    6.3647  -6.6807 -1.6800 -4.1950 5.0344
    3.7685  -5.7127 -1.6924 -2.4047 2.7555
    -1.4388 0.4349  2.3168  1.6359  -2.3481
    3.8615  -3.7875 -1.5136 -2.1442 4.1163
    3.8858  -3.1549 -1.0421 -2.4348 3.8075
    -4.1436 5.5347  1.0034  1.9780  -4.9429
    2.6943  -5.4354 -0.0471 -2.3428 4.5455
    1.4717  -1.2505 -0.0092 -1.1010 3.4633
    -0.0400 1.7105  -0.0426 0.5201  0.2547
    0.1415  -1.3777 -1.1768 -1.3538 0.0109
    -0.7942 1.3113  0.1707  -0.0988 0.2253
    1.3180  -4.4120 -0.0904 -1.3660 2.7406
    -5.6715 11.3544 1.1730  4.4671  -5.9158
    -1.6872 0.2346  1.0514  1.2857  -1.2139
    3.4171  -5.7811 -0.2038 -2.4315 4.7657
    0.6964  -1.3960 0.7736  1.4795  -1.9736
    2.0506  -4.9063 -1.0462 -2.1583 1.2209
    -0.3223 0.2401  -1.1846 -0.0314 -0.3613
    -0.2583 1.5322  1.6105  1.5633  -0.8991
    4.6436  -4.6670 -1.2515 -0.3451 -0.1194
    1.4725  -2.6864 -1.0455 -1.5077 3.1656
    3.5437  -4.7280 -0.6200 -1.3102 0.6853
    -1.7781 3.0830  0.9472  2.0273  -2.3273
    -0.0357 -0.5888 0.1436  0.5063  0.7888
    -4.1541 8.7237  1.6025  4.2311  -9.0448
    -3.3064 6.3172  1.3901  3.3470  -4.8279
    7.0372  -10.8244        -2.6716 -4.7988 5.6709
    -2.1793 6.3053  0.2809  1.2591  -1.3597
    3.2274  -2.1910 0.2758  -0.6608 -1.0758
    -1.7615 5.8289  0.7361  2.2759  -6.4284
    5.9726  -8.7943 -0.2959 -1.7675 3.3453
    0.7957  -1.5319 0.2574  0.2346  -0.5475
    -0.1487 1.5999  -0.4139 -0.9419 -0.3873
    -3.9510 5.5050  1.9306  2.0551  -1.9425
    -2.6899 0.9789  0.7670  1.0304  -0.8338
    0.2675  2.6956  0.4764  0.9488  -0.6613
    -1.6820 1.8711  -2.4514 -1.5292 -0.3872
    -2.1183 4.3532  -0.5350 1.0098  -1.8902
    -1.7936 -1.4572 0.8003  1.0583  -3.1406
    -2.9398 2.6929  1.4212  2.9018  -4.4707
    -5.0948 2.9695  2.8669  3.4284  -5.2065
    0.9897  0.0744  0.7246  0.9649  -1.8923
    -6.5541 10.7304 1.7980  3.9884  -3.3862
    2.7403  -1.8488 -1.9877 -2.8153 3.2261
    2.2193  -3.5746 0.6020  -0.4752 2.4574
    0.1754  -2.8670 0.3430  -0.8787 0.4560
    2.3154  -2.5510 -1.4482 -1.2981 0.0493
    3.2318  -5.2344 -1.3983 -2.7933 2.6369
    0.9560  -0.5120 1.0164  0.3452  -0.2854
    -3.1592 6.6218  -0.5975 1.1765  -0.5255
    -0.6152 -0.2588 -1.7691 -1.7328 1.6596
    0.7520  -4.3216 -1.8464 -3.5913 3.0951
    3.6395  -3.2115 -2.0896 -2.2456 2.2591
    1.9777  -4.8271 -1.9796 -2.2893 2.6421
    -1.6100 2.3296  0.4164  1.7523  -1.4871
    4.3222  -6.7567 -0.9513 -3.0943 2.6991
    0.1439  -1.3563 -0.7663 0.3937  0.6731
    -2.5672 0.1510  2.9442  2.6318  -3.6479
    2.6097  -4.9928 -0.6820 -0.9372 -0.1383
    1.2253  -1.1527 -0.3576 -0.8005 -1.6136
    0.0311  0.4687  -0.7612 -0.0090 -1.3867
    -4.6172 11.5288 1.3413  4.5076  -5.6898
    0.2222  0.4392  0.4615  1.2932  -3.3910
    -0.7927 -0.8739 -0.0354 -0.2892 2.1994
    2.3018  -5.1864 -0.0870 -1.4751 1.5757
    3.7639  -3.3039 -1.8915 -3.2006 4.4067
    4.5222  -7.4829 -0.8098 -3.2297 4.3803
    -4.5555 6.8274  2.0024  3.2904  -3.6406
    4.0680  -6.2022 -1.8204 -3.0427 4.2407
    -3.2241 2.3327  1.5852  2.6966  -4.2215
    0.6638  -0.2983 0.6415  -0.2151 0.0573
    3.7566  -6.8756 1.0693  -1.8250 -1.2442
    -2.1576 1.8917  1.0894  1.7118  -1.8717
    1.2823  -2.9428 0.5334  0.5125  -0.7212
    -3.8572 3.1019  0.9445  2.1476  -2.4861
    -2.3984 3.5951  -0.2116 0.1359  -0.8244
    -0.5136 0.6802  -0.8074 -0.6181 1.2086
    -2.0863 0.8885  0.1794  1.0922  -1.4521
    -4.7461 6.5157  1.2823  2.5149  -6.2689
    0.8956  -2.0987 0.1467  1.1658  -1.2664
    -3.9440 9.9478  0.3258  3.0959  -4.2235
    -0.8341 -1.4246 0.1023  1.2871  -1.6048
    -1.4441 3.5443  -0.2409 0.4931  0.8404
    -1.3084 6.1448  -0.4484 0.6216  -0.3138
    1.3265  -2.7630 0.5565  0.3672  1.1403
    4.1893  -6.1166 0.4811  -1.3374 2.0520
    -0.0601 -2.8461 -1.9807 -2.1342 2.4511
    3.3924  -6.3489 -0.1915 -1.6935 0.8942
    -0.0858 -0.8313 -2.5416 -2.2609 2.2138
    -5.9214 11.8718 1.9948  4.5610  -5.1581
    2.6340  -3.1082 -0.1013 -0.8315 3.6681
    1.3892  -1.8009 -2.3055 -2.0105 1.1073
    -0.7210 0.5836  -0.7383 -0.0455 -1.6185
    -2.1856 6.2562  0.1701  0.7860  0.0613
    -0.7118 0.6192  2.5533  1.7826  -1.7038
    2.7175  -4.0163 -1.2237 -1.7420 1.2366
    -0.8133 -1.5187 0.1551  -0.8130 0.1070
    2.4604  -5.9376 -1.5481 -3.7544 6.0123
    -3.3392 5.7726  0.7276  3.7387  -3.9142
    -3.2152 2.3742  1.6726  0.8694  -2.0561
    3.1510  -6.9719 0.5539  -0.8020 0.3466
    -0.5456 -0.4719 1.7703  1.8541  -1.9634
    0.5275  0.2730  -1.0278 -2.0746 3.0779
    -2.8457 2.7710  -0.4251 -0.3596 0.8975
    1.3111  -3.6278 -0.5127 -1.2198 0.5517
    1.4213  -0.6704 -1.0621 -1.9984 2.5886
    -5.4722 7.4295  1.9197  2.4542  -4.5572
    1.2953  0.8532  -0.7045 0.6307  -1.7902
    0.0297  -0.9493 1.4910  2.0898  -2.7303
    2.0140  -2.2594 -1.2979 -1.7084 1.8942
    -4.6269 9.8057  1.4195  4.2244  -8.4216
    -4.1781 4.0296  1.4570  1.7492  -3.2083
    2.5728  -4.6295 -2.1099 -2.3168 1.8933
    -2.7968 0.7235  0.9058  -0.1550 -2.5164
    6.5238  -8.0735 -1.9470 -3.3395 3.0841
    2.1213  -5.6364 0.4784  -1.6707 2.6024
    -1.3433 4.0275  -1.2054 -0.0011 0.5250
    -8.0828 12.0178 3.2507  6.4886  -5.9435
    3.0338  -3.4058 -1.6172 -1.2993 2.1169
    3.4049  -9.2905 -0.9938 -1.8175 1.3236
    -2.4063 1.6628  0.8156  2.2971  -4.1419
    -0.6025 0.4010  0.4911  -0.2548 0.7187
    -1.1477 1.0454  -0.9580 -1.5657 3.4344
    5.2249  -9.6603 -1.5874 -3.9957 4.0745
    2.8807  0.2658  -1.0546 -1.7321 1.8452
    -8.4578 12.6606 2.6701  4.9700  -7.6637
    4.9783  -9.5739 -0.7791 -2.3461 3.8439
    6.4683  -10.4894        -1.4213 -3.4043 2.8261
    2.3256  -3.3257 -1.1503 -1.4770 -1.0420
    3.6607  -8.0992 -0.0550 -0.4182 0.5453
    4.3021  -6.2243 -1.3940 -4.0720 5.2664
    -7.9782 10.2074 1.1883  3.5844  -5.5564
    -0.1653 4.7697  1.6523  3.2431  -4.9343
    0.1665  -1.8012 0.6659  0.4448  0.2692
    1.4726  -3.3347 -0.3219 -0.1499 -0.2108
    -1.2748 5.3154  -0.0979 0.3254  -1.6394
    -2.4452 1.1219  2.9136  3.2240  -2.0735
    -1.1050 -0.1119 -0.2033 -0.7446 2.4250
    4.8794  -7.7917 -1.0240 -3.8370 4.9727
    -6.1075 3.1999  1.5886  2.4181  -1.6461
    -3.1626 4.4883  0.5509  0.6955  2.0684
    1.6167  -0.2019 1.4005  1.4915  -2.5323
    2.1923  -2.5992 -0.7342 -0.9454 1.0031
    -1.1264 1.9477  -0.4922 -0.0597 2.0356
    -0.2284 3.0262  -0.2028 0.7030  -2.3450
    -1.7288 1.6960  1.3881  1.9647  -3.5489
    2.0314  1.3860  -1.7129 -1.9066 0.0628
    -0.9257 0.2739  0.8162  -0.7747 2.9730
    -1.0745 3.5989  -0.8686 0.1256  1.7887
    -6.3301 11.4820 2.4206  3.7607  -5.6078
    -0.4986 0.2132  -0.3963 -1.0557 -0.6274
    -0.9334 3.0877  0.0220  1.6523  -3.8115
    -2.6068 1.0575  1.7059  1.8910  -2.4829
    1.2264  -0.9327 1.0663  1.0346  -2.2655
    2.5350  -2.1747 -1.4759 -1.3672 1.1052
    1.6009  -3.2114 0.8882  -0.1452 1.8597
    -2.1875 2.7633  0.4488  0.2062  -1.4065
    -0.8651 -2.6487 -0.3010 -1.4400 3.9000
    -0.4244 -0.1807 -0.1834 -0.0365 1.6608
    1.3186  -1.0602 0.5003  0.5114  -1.2434
    -0.3500 1.1176  -0.3811 -0.6738 0.6358
    -1.2716 0.4286  -0.0361 -1.2806 -0.2259
    6.9060  -7.8254 -0.8824 -2.2066 4.7658
    -0.6584 1.9852  -0.6443 -0.2338 0.5299
    0.0077  -0.6128 1.4734  0.5084  -0.6492
    -0.4387 0.6822  0.3960  0.1954  -2.2630
    -0.9780 5.0339  -0.3259 0.2075  -0.2346
    -0.2206 -1.3239 0.3311  -0.5148 -0.1482
    -3.6361 2.9959  0.3973  0.4368  -0.7203
    -4.2345 5.9233  2.2327  3.6857  -6.1307
    -1.7188 2.1042  0.7430  0.4950  -0.3405
    -1.0372 0.8348  0.5796  0.3472  1.2077
    2.5179  -1.3440 -0.6371 -1.9856 1.8597
    0.3421  -1.5694 -0.1779 -1.4040 2.0237
    3.8683  -4.3063 -0.1544 -1.6941 1.2262
    -1.0773 0.4963  -0.5461 -0.1514 1.3194
    -2.2152 1.5285  1.9824  2.3946  0.0882
    0.9276  -1.6392 -0.5665 0.0482  -0.9769
    -3.6864 5.2658  0.9066  1.9960  -4.0445
    2.7512  -2.6692 -0.9813 -1.1758 2.0193
    -1.0182 4.3827  0.2170  1.1488  -1.2422
    1.2819  -1.5210 0.7952  0.4454  -0.6690
    5.0768  -7.0079 -1.9211 -2.4781 1.9684
    0.8055  3.6161  -0.0011 0.3031  -0.4246
    2.6447  -3.8767 -1.8247 -3.4797 5.6033
    -2.3736 0.7837  -0.2883 2.0323  -2.0036
    1.1632  0.0035  -1.1182 -1.0698 1.0181
    0.7440  2.0702  -2.0378 -0.8696 1.6790
    -1.4991 6.6820  -0.1417 0.7281  0.9622
    -1.2057 0.2931  1.0159  0.6814  -2.2092
    -6.4827 8.3793  1.7120  2.5032  -2.9053
    -0.3037 1.7844  0.8558  1.9045  -4.5921
    0.5505  -0.7215 1.1582  1.8447  -1.8448
    2.5816  -2.5582 0.5305  -1.0118 -0.1969
    1.8865  -0.4933 -1.5884 -1.5218 0.8291
    1.9447  -3.0666 -1.0665 -3.0092 5.1489
    4.3891  -8.2299 -0.9145 -1.9143 4.1592
    0.7655  -1.2592 0.5735  -0.1522 0.5505
    -0.1125 -2.1050 -0.0845 -1.9271 3.8274
    -0.9022 -0.4324 1.3981  1.6884  -2.8938
    2.5330  -1.4581 -2.0449 -2.7699 1.7318
    5.2067  -7.2575 -0.1966 -1.4960 2.1520
    -0.4195 2.6017  0.7763  2.3711  -4.5569
    0.1049  -0.8710 -0.2552 -1.0042 0.6138
    -4.5644 10.0531 2.4562  3.8200  -5.0136
    -0.0232 -3.1613 0.7403  1.5620  -3.5788
    0.4379  -1.3106 -0.4387 -2.2995 4.3128
    4.7101  -4.0917 -0.0213 -0.8746 -0.8381
    2.4048  -2.3507 0.2445  -1.5709 4.5679
    -1.8983 1.1304  1.0434  0.5309  -0.6236
    -2.5006 2.8805  -0.1168 0.3277  -0.2247
    2.3297  -4.6569 0.1195  -1.8350 0.8904
    -4.8134 4.3428  1.0215  2.0616  -2.8326
    0.6595  -0.6996 0.9112  0.4613  1.8440
    1.5065  -2.2374 -0.0299 -1.6402 1.2688
    -3.6816 2.9509  1.2882  2.6380  -4.8715
    -0.2237 0.1941  -1.2094 -1.9915 1.5591
    6.9916  -9.6077 -1.5070 -4.3342 4.7089
    1.0783  -1.8820 -0.0151 0.3277  0.5070
    3.4410  -4.3181 -1.6668 -2.3315 1.5119
    -0.9219 -0.7669 0.1773  -0.4572 -0.9994
    6.0007  -6.9698 -0.2044 -1.6957 3.1683
    1.0407  -0.9041 0.3694  0.3697  -0.1981
    -3.9329 3.5304  0.8971  1.8953  -2.6508
    -0.4359 -2.8098 -0.0018 -1.4095 2.7896
    0.3916  3.2710  0.2545  1.4640  -1.6594
    -3.8198 5.1281  1.2289  2.3240  -3.4763
    0.8325  -3.4606 0.3288  0.0546  1.3886
    -0.1564 -0.9234 1.0912  0.3676  -0.4684
    0.8372  -1.6519 -0.7641 -0.2267 0.3154
    2.2642  -1.7930 -0.1664 0.2842  -1.1432
    3.8134  -9.4177 -0.8157 -3.0487 4.9866
    5.4519  -4.1491 -3.3928 -4.7594 4.9865
    -2.9751 5.3609  1.9602  3.0164  -4.9825
    -1.1798 0.1499  -1.5471 -1.3415 0.0001
    -3.5019 5.2306  2.4043  3.1887  -2.8178
    -0.9813 4.2813  -0.2932 0.4670  -2.1904
    3.5703  -4.7776 -0.7091 -1.5936 2.0008
    -3.1412 5.1110  2.3215  2.1657  -2.9137
    -1.1143 1.9752  1.0319  1.2745  -1.1791
    1.7676  -2.7194 -0.5389 -1.4066 1.7592
    -4.5118 5.8754  2.5293  4.7082  -8.1098
    -6.2134 5.0020  2.4552  1.6599  -0.1272
    0.3130  0.1272  2.3570  2.9427  -3.7370
    -0.0349 -1.5411 -0.1373 1.3618  -2.1665
    -1.5827 1.4848  0.4282  1.2521  -0.5215
    -1.0051 2.3318  1.4136  1.9315  -1.9870
    0.4812  -0.3744 0.0141  -0.7802 0.2146
    8.2769  -8.1284 -2.6704 -4.5749 7.3837
    -2.5291 4.4316  -0.0864 1.1593  -1.3398
    -4.0542 -0.6460 2.8662  2.6540  -4.5292
    -4.1846 8.0843  -0.0841 1.3395  -1.0855
    1.6114  -1.7554 -2.2015 -1.8913 2.3076
    0.7500  6.4473  -0.1970 0.2015  -1.8559
    2.9075  -0.4143 -0.1557 -1.1782 0.9255
    -0.1162 1.6909  0.7385  1.4724  -0.9181
    -4.0836 8.1884  1.8959  3.7037  -5.3338
    -4.8360 4.5661  0.8066  1.5413  -2.4692
    -4.1306 2.5032  1.5889  2.9566  -3.5835
    8.1133  -12.7792        -0.9032 -3.4984 4.6505
    -1.3875 3.5428  1.0832  1.0368  0.0955
    3.0509  -0.8213 0.3035  -0.1875 0.2255
    1.7073  0.2526  -0.3606 0.5395  -1.2317
    -3.1835 2.7194  0.0355  0.0910  -0.0062
    -0.3708 -0.9810 -0.5642 -2.1434 4.0630
    2.9654  -2.1586 -0.4810 -0.4497 1.0269
    -0.4879 -1.4838 1.7429  1.6105  -1.4077
    -3.3535 5.5265  -0.6616 0.3119  -1.0363
    -1.5250 1.9402  0.6854  1.0516  -2.2613
    0.4142  0.8524  0.6221  0.0462  0.1560
    -2.8436 4.3885  1.6044  2.9975  -4.0997
    1.1529  0.2494  -0.0046 -0.3854 -0.6404
    1.7649  -5.4294 -0.4163 -2.0155 3.3946
    4.0789  -8.3463 -2.1387 -2.5826 4.0544
    -2.0499 4.6380  0.0304  0.5644  -0.9536
    1.4089  -3.2540 -0.5697 -1.0379 2.7083
    -5.0563 6.1823  2.0588  2.2840  -5.2122
    4.7855  -5.4512 -2.4178 -2.3625 1.4070
    -0.6616 3.9320  -0.1301 1.3092  -2.8866
    -2.9291 0.7375  0.0285  2.2714  -1.8921
    4.3647  -7.9656 -1.3436 -2.8267 4.6908
    0.8558  2.4956  0.4022  0.9877  -1.0832
    3.1508  -6.8345 -2.1913 -3.7679 4.1451
    -4.1366 8.4985  0.3657  1.1420  -2.6886
    2.5286  -4.8863 -0.5889 -2.8657 3.7337
    -0.4493 0.6592  0.6429  1.4538  -2.8742
    4.8455  -4.4094 -1.4178 -3.7221 4.9565
    0.0966  -0.8536 -0.6653 -0.9771 2.1661
    3.5363  0.7172  -1.3609 -1.2501 2.6133
    -0.4718 1.4523  -1.4994 -1.1497 1.1040
    -0.7564 2.6395  -1.7832 0.4857  -0.4488
    2.1252  -4.1168 -1.0497 -2.1445 0.5425
    2.2860  -4.2249 -0.0247 0.0856  -1.8549
    0.7800  -2.3649 0.8635  0.3060  -0.2979
    -0.8543 1.5722  1.5120  0.6441  0.4425
    -0.8504 -0.2652 -0.4507 0.3112  0.0996
    2.1497  -2.1535 -0.8794 -1.8805 3.7583
    8.0212  -11.8125        -3.0712 -5.1939 6.9882
    -3.4407 6.5674  0.2504  1.2554  0.5328
    -1.0867 3.7113  0.9452  0.1984  0.4439
    0.4987  -1.7316 1.0791  1.3530  -1.2632
    3.2090  -5.1357 0.1448  -1.6430 3.4061
    -3.2454 1.4346  0.1627  0.7122  -1.3070
    0.4362  -0.1811 -0.1523 -0.7217 0.1190
    1.4120  -0.9067 -0.7292 -1.7098 2.3084
    0.4957  -0.6907 -0.5399 -0.4158 0.7852
    -2.0281 1.4057  0.2679  -0.7705 -0.3647
    1.7280  -6.8546 -0.1632 -1.4443 1.9908
    -1.2513 1.1656  1.6383  1.5250  -2.6078
    -0.6653 -2.7031 2.0970  -0.0638 0.0673
    -1.9312 3.0174  1.8645  1.1209  -2.8798
    -2.8324 4.3564  -0.0993 -0.9690 0.7127
    3.9067  -2.1350 -1.0377 -0.2247 1.6479
    1.1912  0.9120  -1.3171 -1.3969 2.6317
    3.6925  -4.8497 -1.6524 -3.8231 4.7923
    -0.0435 0.5294  -0.3786 -0.6046 1.8427
    0.7823  -1.7107 -1.4248 -3.5740 4.1303
    -2.5526 4.6991  0.7101  2.2850  -3.4423
    2.8685  -1.1042 -0.5764 -0.2897 0.9526
    3.9270  -0.8077 -0.7865 -2.2324 1.2410
    0.2483  -1.2365 -2.1163 -2.0341 1.2247
    -2.4351 1.5126  0.2747  0.8518  -0.0586
    -1.1336 0.1098  1.7401  1.2342  -1.1653
    -0.5390 0.3690  -0.5347 0.2807  -0.0332
    1.0920  -2.4216 -1.5787 -2.5556 3.1019
    -1.2918 4.2209  -0.1070 1.7269  -1.5617
    1.3327  2.0090  -0.8680 1.9648  -1.9448
    -3.4443 6.2616  0.6130  1.8521  -2.9056
    -1.3843 -0.5164 0.0370  -0.1509 0.4819
    -0.7592 -0.5234 -2.3701 -1.5803 1.2783
    3.9396  -6.4083 -2.0666 -3.2980 3.6274
    -1.2246 5.0960  -0.5467 0.6168  -0.8260
    2.2896  -3.8518 -0.1512 -0.3078 -0.7384
    -0.0831 0.8031  -0.7781 -1.6870 1.3216
    -2.0883 3.1215  1.0017  1.8514  -2.0392
    -4.8994 6.7954  1.0158  2.3668  -3.5812
    -4.4993 3.6469  1.2854  3.4464  -5.9517
    4.3024  -3.4719 -0.7177 -1.9406 2.6607
    -1.2480 2.7789  1.4896  2.7025  -2.9768
    -0.9320 -1.0580 -0.8658 -1.0669 0.8660
    5.8385  -7.9059 -0.9537 -1.7127 3.2798
    4.0587  -6.1891 -2.8155 -3.4818 2.2780
    0.9687  -0.8483 -1.1078 -0.3328 -0.6960
    6.5031  -7.6789 -2.5722 -3.7650 4.3303
    6.3138  -8.7044 -1.7675 -2.5127 2.5024
    1.8289  -1.7638 -1.4238 -1.7681 1.1774
    -3.0534 2.7616  0.6709  1.3916  -2.0347
    -7.5850 10.8458 3.2218  5.1745  -7.4476
    1.0261  -2.1299 -1.4475 -2.1233 3.2156
    -1.3944 2.5718  0.0223  0.0494  -0.2188
    5.1541  -6.9569 -2.2854 -2.9737 6.6376
    -1.1577 1.5190  2.3269  0.9214  -1.3229
    -1.3410 3.1637  2.2299  3.0369  -3.1420
    5.4953  -7.9842 -1.3238 -3.1348 3.1328
    -2.2605 5.8023  -1.0548 0.5384  -2.0893
    1.7353  -4.7737 -0.5759 -2.5550 1.9189
    3.0113  -3.5486 -1.3825 -3.2572 5.9398
    2.5200  -0.4647 -3.5612 -4.6624 6.8388
    -2.7964 3.8201  0.0549  0.9761  0.1069
    3.8733  -6.5222 -2.3731 -3.8089 3.7410
    -0.8881 -1.3091 0.0595  -0.7869 3.0013
    2.2404  -1.9227 -1.0193 -0.6838 1.7027
    2.7854  0.4223  -1.9631 -2.5038 4.3282
    -0.8210 -0.1301 -0.3166 -0.6521 1.7253
    -5.7259 9.1344  1.2498  3.5640  -5.7613
    -2.8908 5.8725  1.5823  2.3444  -3.9172
    0.9484  -1.5613 -2.0701 -2.2075 3.7867
    -2.3363 3.6600  0.1062  0.8222  -1.5401
    -0.7801 3.0506  -0.8437 -0.5998 1.3247
    1.1956  0.9001  -2.0911 -2.2805 3.5145
    -1.8265 3.0710  -0.2533 -0.5836 1.3100
    3.4695  -3.9840 -1.3818 -2.4135 4.0693
    -1.0885 5.6686  2.2618  3.1784  -6.2382
    -1.5756 1.8651  0.2484  0.2217  1.4454
    -3.3225 3.7921  -0.5640 0.0901  1.3800
    6.6629  -12.5665        -2.6896 -4.8347 7.7194
    -2.6891 1.6162  1.1137  0.9694  -1.5153
    6.4484  -5.2160 -2.3923 -3.1897 6.4000
    1.1980  0.4212  -0.5586 0.3450  0.5480
    -3.0491 7.7619  1.0699  2.7884  -3.7349
    4.5196  -6.8708 -0.6398 -2.2937 1.8042
    1.3592  1.3916  -1.9780 -1.3895 0.2975
    0.3525  -0.0033 0.5097  0.5342  -1.3790
    -4.0306 8.4174  2.1865  3.7116  -4.6942
    1.5873  -1.1314 1.6961  1.6820  -3.5563
    -1.6222 3.9658  -0.1847 0.8946  -1.5294
    1.5232  0.9330  -1.6101 -0.5830 0.1702
    -0.4493 -0.4453 -0.1797 -0.4009 2.5695
    1.6938  -6.0378 -0.2428 -1.1826 0.2965
    -0.7186 1.9945  -0.4488 -0.7603 3.0064
    1.7586  -3.9176 -0.7220 -0.9575 -0.0910
    -6.7373 7.8387  3.4743  5.0118  -5.8414
    -3.8899 6.1227  -0.6429 0.7860  -2.0175
    1.5948  -1.5066 -0.3428 -0.5522 -0.0622
    3.2624  -0.0527 -0.7807 -0.3491 2.3042
    4.0557  -4.6678 -1.1782 -3.4090 4.0970
    5.0160  -7.2383 -0.3779 -2.2113 2.2132
    2.1253  -2.9187 -0.4466 -0.0244 0.5850
    -0.8242 -1.0194 2.9764  2.6427  -2.7408
    -1.8412 4.1628  1.3872  3.4560  -5.7774
    -0.5154 -1.4690 -0.4839 -2.5813 3.0262
    -3.0791 4.4465  -0.1302 0.0925  1.6326
    1.2311  -3.4652 -0.9853 -2.0132 3.9732
    0.2359  0.3210  0.2092  1.1477  -0.9474
    5.8383  -10.4825        -1.5390 -4.6900 4.6703
    -1.1770 0.2093  0.2863  0.0516  1.5498
    -4.2696 5.6606  1.7455  3.4344  -3.0959
    -1.4982 5.4589  0.7906  2.7091  -2.2196
    3.1346  -5.2267 0.3001  -1.0814 2.0003
    0.5324  -3.0715 -1.3582 -1.6567 0.1099
    4.7582  -5.8090 -0.9587 -1.2612 3.0096
    4.5752  -4.3319 -0.8840 -1.2507 1.8111
    -3.9104 2.3295  2.5747  1.3732  -1.9197
    3.6692  -6.8667 -1.6918 -3.8910 5.2819
    6.0907  -12.4487        -0.8505 -3.2938 6.4125
    2.8864  -5.4070 -0.1076 -1.3316 -0.1059
    -0.4297 0.0876  -0.1839 0.1271  0.1550
    6.3286  -9.5269 -0.6533 -3.7679 5.1588
    1.1547  -0.0179 1.6281  1.5176  -0.9576
    -0.9284 0.6473  -0.1934 0.3985  -2.6228
    -0.0603 -0.7403 0.4793  0.5058  0.0996
    -1.9250 2.3546  0.8754  2.1528  -1.3846
    1.9641  -4.0196 -0.0715 -0.8245 0.6193
    -0.2455 0.3512  -1.5331 -1.3989 2.7658
    0.9651  -2.0136 -1.1840 -1.6304 1.4376
    4.3906  -6.1174 -2.6775 -3.7487 6.1351
    -1.1235 3.4028  -0.8771 0.0153  -0.3152
    1.6069  -0.1284 0.1853  -0.1488 -1.3430
    0.6702  0.6877  0.1881  0.4001  -1.0288
    1.6264  -0.5903 0.5977  -0.3464 -1.8525
    0.7766  -1.6391 -0.1169 0.4276  -1.3806
    -2.0160 3.4779  -0.8848 -0.4100 -1.2444
    1.5573  -0.0536 -0.2868 0.1410  -1.9332
    -3.3803 5.4981  0.4306  1.5924  -1.7484
    5.1280  -8.6795 -1.4651 -3.0457 4.7956
    7.2857  -10.4209        -2.2357 -5.0746 7.0289
    -3.2168 3.1959  1.1988  0.6056  -2.1550
    -1.4198 1.9052  0.4085  1.8156  -2.6302
    1.0403  -3.9491 -1.0085 -0.5362 1.1063
    2.9930  -2.7410 -0.6522 -2.9949 4.8483
    0.3585  -1.3695 0.7384  0.4000  -1.4356
    -5.4854 6.2554  0.9127  1.8602  -2.8906
    3.0343  -4.4214 -1.8482 -3.3859 4.2633
    -3.7367 3.3447  1.4358  2.0836  -2.9068
    -0.3844 -1.9222 0.1544  0.2690  -0.2981
    -0.5645 4.1167  0.6127  1.4195  -1.1947
    -2.3730 1.8389  0.2882  1.5337  -0.8833
    1.2065  -2.8872 -0.0685 -0.0411 0.0110
    -4.7900 10.0393 1.1984  2.9446  -3.4512
    -5.8973 9.7316  1.6041  3.6361  -6.6810
    2.5273  -1.5841 -0.2057 -0.7003 1.0025
    -3.0037 2.2612  2.4029  3.5438  -5.0845
    7.6693  -9.6048 -2.6655 -3.7913 5.4391
    -0.1311 0.5147  0.3828  0.5011  -3.2243
    -0.3756 2.8371  0.3102  1.1357  -2.2165
    -5.3439 8.8689  1.4161  2.8520  -4.4500
    1.5232  -2.3346 -1.1622 -0.8076 0.7155
    3.8552  -5.1659 -0.1371 -1.1378 0.7828
    -2.1767 3.0858  1.0785  3.2986  -2.8150
    1.9085  -5.7807 -1.6831 -4.2489 3.9320
    -1.6681 0.7553  0.2028  0.6259  -1.1061
    0.9712  0.6304  -1.4879 -0.6180 0.6385
    -2.5532 1.9800  -0.2451 -0.5146 -0.7714
    -2.1982 5.8232  0.4275  -0.5614 2.7068
    -4.6288 8.0165  0.7559  2.3472  -2.1529
    -3.6030 5.9845  2.2275  2.4361  -3.5999
    -2.6167 5.4688  0.8768  1.0111  1.1342
    4.5817  -7.5402 -1.9242 -3.2642 1.7025
    3.3747  -1.7804 -2.4685 -0.3345 0.0961
    -5.6138 6.3720  1.8152  2.5833  -3.4290
    2.7319  -2.6461 -2.1469 -2.3622 3.2780
    3.4591  -4.1452 -0.9528 -3.2140 4.9791
    -0.1154 -0.9025 0.0238  0.3041  -0.3016
    -0.4270 3.5071  0.2090  1.0470  -0.8474
    -2.2519 4.4358  -0.1653 0.3940  0.8197
    3.8015  -5.0902 -1.1216 -2.9052 5.8963
    1.4806  -3.8401 -0.5698 -1.3445 0.4605
    -3.8034 3.2229  1.4881  1.9803  -2.2915
    3.9091  -4.9917 -0.6396 -2.2662 0.6458
    -4.9032 7.2655  3.3224  4.8573  -6.1075
    5.9021  -8.4511 -2.9961 -4.9076 6.1152
    6.8295  -7.4660 -2.2773 -3.9901 7.1175
    -3.3541 7.0033  -0.0620 2.6964  -4.6125
    -0.5718 0.8657  1.3152  1.8488  -3.3521
    3.9682  -3.5320 0.1656  -1.9925 2.1004
    -6.9353 7.7933  0.9523  1.6867  -1.9477
    2.9824  -2.1454 0.1067  -1.6251 -0.8757
    -0.6897 1.4509  0.5481  0.6692  -0.8704
    -0.0473 1.0064  -0.0766 0.5964  -2.2624
    -0.0620 -1.8901 0.3001  -0.3565 0.8634
    -0.0078 1.6626  -0.5081 -0.8363 -1.1631
    1.7686  -3.0753 -0.0678 -1.8210 1.3913
    -5.0807 10.2742 1.3029  2.8925  -3.6827
    -0.2579 -4.0452 0.2371  -0.8025 -0.2924
    0.1222  -2.7139 -0.1231 0.0758  -1.1929
    2.1324  -3.3567 -0.7203 -2.0962 2.0534
    -7.2288 7.6689  1.8612  2.9587  -3.1966
    -1.4061 3.4926  0.1911  1.3831  -3.5465
    2.2720  -2.6428 -1.0101 -1.6181 3.2229
    -3.8114 5.3972  2.0112  3.3489  -5.7740
    -3.2361 7.2144  0.7991  2.6352  -2.7115
    -0.5396 0.5905  -1.3195 -1.2001 0.2198
    1.8517  -1.2943 -0.5379 -0.0312 1.0221
    4.2470  -5.7203 -0.8818 -2.0748 3.6420
    -5.2028 9.4135  2.0782  2.9373  -5.7290
    3.8004  -3.0958 -1.5051 -1.5812 1.7339
    -2.1981 2.8323  1.6624  2.3770  -2.2025
    -0.4935 0.2231  0.3601  0.7640  1.2306
    -3.4718 8.0231  1.2703  1.7725  -2.2764
    -2.5868 3.9798  0.6760  2.6916  -3.7697
    -0.4642 -0.6693 0.9942  1.0561  -1.9917
    0.0557  -2.0324 -1.0530 -1.6460 1.3120
    -5.9498 10.4849 1.9606  5.1281  -7.4647
    -1.9479 3.0117  -0.3471 1.3456  -4.1191
    1.4644  -3.5766 -2.4824 -3.0356 2.7584
    0.3436  -0.7195 -0.6204 0.7877  -0.1625
    5.4508  -7.3110 -2.9566 -4.3717 4.6183
    0.7309  -2.4924 0.1839  -0.7807 0.8101
    -0.2456 -0.1325 -1.4328 -1.0032 3.3402
    3.0735  -8.9631 0.8381  -1.5020 1.3850
    -0.5069 -1.5893 0.5829  -0.5032 0.9809
    2.1700  -4.6004 -1.5105 -2.6081 3.4417
    -2.1800 6.2806  -0.0969 1.8707  -4.6252
    2.8663  -6.7823 -0.4923 -0.7713 0.5108
    -2.4086 4.1719  0.7495  1.9887  -2.3066
    2.1678  -2.6584 0.4172  0.5744  -0.1767
    -4.0023 6.4730  2.5707  4.6216  -4.9604
    -3.4123 1.0411  0.0773  0.0521  -0.5841
    -1.8620 1.9859  -1.1333 0.6732  1.9114
    -1.1279 1.0371  0.0116  -0.4865 1.0730
    -1.1203 2.6433  0.1443  0.3358  -2.0456
    -2.4867 4.1169  1.4281  1.7433  -2.6745
    2.7556  -0.7774 -1.0169 -0.5015 -0.7773
    0.4646  -1.6737 0.2930  0.0287  0.5528
    -0.5959 0.3374  -0.1342 -1.4407 -0.4139
    4.0550  -3.7095 -2.2767 -1.7679 3.7488
    -1.3699 1.9663  -0.2541 0.2665  -0.9583
    4.1923  -5.9802 -2.1801 -2.4693 3.2915
    -3.6358 4.0519  0.7364  1.8117  -2.9893
    -0.1185 1.6212  0.3922  0.0524  -0.1149
    -0.4100 0.7856  0.5135  0.6885  -1.5829
    3.5653  -6.6930 -1.1300 -2.8302 5.0967
    4.8946  -7.6957 -0.9105 -3.3702 2.8493
    2.1410  -2.9608 -0.8852 -2.1515 5.0609
    3.4369  -5.6083 -0.2739 -1.6793 3.0594
    -2.9575 3.5701  0.5278  1.6363  -0.4157
    -0.6258 6.0230  -0.1994 0.8826  -2.4193
    2.5588  -2.1704 -2.2896 -1.0140 0.6710
    -0.6856 -3.4420 0.1053  -0.3688 0.1928
    0.6769  1.4586  -0.3950 1.0442  -0.9996
    0.5719  -2.5310 0.6024  -0.2502 -0.4944
    -2.0636 1.6289  1.9738  2.2616  -3.3736
    -3.0901 4.4991  0.6160  0.5870  0.0781
    2.8171  -5.3709 -1.6748 -2.2351 2.6366
    -0.7227 -1.0949 -0.1896 -0.4143 2.5154
    0.5574  -0.7565 -1.7450 -1.4647 1.0764
    1.2554  -0.8065 -1.8030 -2.3942 3.0452
    -0.6288 2.2282  -0.7212 -0.1533 -1.4095
    5.2021  -10.1209        -0.9389 -3.4675 4.1263
    2.6952  -4.6352 -1.3518 -1.6097 0.3574
    5.2016  -8.8829 -2.1360 -2.7134 3.0859
    -0.2233 3.1036  -0.2018 0.5693  -1.7199
    -1.4831 4.3637  0.3221  0.6114  -0.2729
    0.4846  -2.8683 -1.1549 -1.8557 3.8498
    -4.3361 8.3816  2.6858  3.6935  -5.2246
    0.0786  -0.1125 -0.3771 0.2459  0.1329
    1.3383  -0.7509 0.5966  0.3402  -0.6952
    0.7590  -3.3829 1.2038  0.6412  -1.0373
    2.6746  -3.2160 -1.8292 -2.2763 2.2885
    0.4094  0.8521  1.1080  2.1905  -3.1399
    3.7204  -7.5379 -1.7370 -4.8863 7.8436
    -3.7295 3.6701  2.5291  2.4229  -2.4469
    0.0802  -0.0669 1.4612  1.0124  -0.5309
    1.6747  -4.4852 -0.3749 -1.2849 -0.7281
    1.2501  -3.0803 -0.9975 -2.2269 2.9544
    -3.8076 4.7102  1.3380  2.2727  -5.7197
    1.6467  -0.4854 0.4172  0.1591  -1.1064
    1.7591  -0.6582 0.9218  -0.0864 -2.5800
    7.9008  -11.2576        -2.9675 -5.6377 8.6095
    -0.2505 0.3591  0.1079  0.8613  1.0668
    0.7503  -1.4956 -0.0267 -0.2402 1.4536
    5.3289  -6.1185 -1.5094 -1.5571 1.9906
    -1.7740 4.5815  0.8209  2.2150  -0.9953
    -0.8645 0.0441  1.6518  0.6533  -0.5968
    3.7851  -2.5209 -0.5057 1.2771  -2.3525
    -1.7427 4.8200  0.6033  1.1277  -2.7890
    -1.7045 1.2075  1.5021  1.3689  -0.8238
    -1.5765 -2.2758 0.3780  -0.4540 -0.5103
    3.8637  -5.3122 -0.1265 -2.1424 2.3338
    1.5041  -1.5608 -2.6981 -1.9003 1.1406
    -2.3034 0.4323  -0.4728 -0.2387 -0.1468
    -0.0047 -1.3586 -0.4959 -1.6182 1.3785
    3.3527  -5.5143 0.9781  0.8868  -3.1418
    -0.5500 0.1729  1.2817  1.2226  -0.9500
    -7.2777 9.8531  1.2622  3.8692  -5.9370
    1.6235  -1.8946 -2.2543 -1.4862 2.2583
    0.2705  -3.2970 -0.5602 -1.1194 -0.0616
    4.8574  -5.1275 -0.5010 -1.9963 2.8762
    0.9677  -3.2438 0.9460  -0.4771 -1.5614
    -3.5822 5.6570  1.3587  3.3892  -3.9231
    -0.1930 2.9146  -0.3320 1.1754  -2.4638
    -3.9223 3.1305  1.3053  1.5071  -3.8080
    -0.3953 -0.9592 -1.2717 -2.5974 4.0198
    0.5465  1.4460  -0.7129 0.0283  0.5493
    1.0612  0.9905  0.1918  0.4929  1.0614
    -3.0092 6.9681  -0.5695 0.5217  -1.2704
    -0.8839 -2.7294 0.0259  -1.6899 3.3731
    -4.4146 7.7165  1.0396  2.4611  -1.1799
    -1.4709 7.0594  0.4044  1.7971  -2.7397
    -1.6247 2.4025  -1.0088 -0.5339 0.5840
    -3.5559 2.5645  2.0810  2.9712  -2.7913
    -1.8194 1.3776  -0.4900 -0.7461 -0.0578
    3.1229  -5.4646 -1.1276 -0.8078 1.6183
    4.3390  -4.4741 -1.5631 -3.2634 5.6309
    4.9660  -6.4532 -0.0830 -2.1104 2.0690
    -0.0348 0.7155  -0.8019 -1.2905 0.1683
    -3.2467 3.5574  2.6456  3.6968  -8.8577
    2.7103  -2.9651 -0.4393 -2.0534 2.0599
    0.0903  -4.0928 -0.7604 -0.9970 1.6688
    -0.8327 0.9186  -0.5795 -1.0388 -0.3036
    0.0133  -0.6702 0.9252  -0.6840 -0.0650
    0.8722  -1.4179 -1.3340 -0.8367 -0.0262
    1.5180  -4.3409 -0.3514 -2.3755 3.3681
    0.4221  0.4593  0.5917  0.3432  -2.7183
    -0.0887 2.8949  -0.0495 0.7291  -0.7554
    2.1167  -2.5729 1.5003  0.2658  1.4526
    1.5415  -1.2676 -0.3017 -0.5372 -0.7139
    -4.9671 10.9704 1.6233  5.3588  -6.0347
    1.6608  -2.4385 -1.1291 -1.8890 2.7341
    3.4931  -3.7502 -0.7202 0.2034  1.5841
    1.5921  -1.3173 -1.0269 -1.3072 0.4690
    1.0283  -4.5823 -0.6029 -1.5166 1.4863
    2.6370  -3.4052 -0.4944 -0.1567 -1.4519
    -2.5279 3.0226  1.6063  1.3736  -1.5513
    0.7888  -0.1261 2.3653  3.0435  -4.6913
    -1.7786 0.4356  -0.3538 -0.3758 1.2652
    -1.0828 0.0797  -0.6087 -0.8586 0.8949
    -0.9424 1.8485  -0.2050 0.6582  -1.3535
    -3.8115 6.8035  1.3707  2.6819  -2.6916
    0.1164  -2.0797 -0.6461 -1.2668 2.2351
    0.5374  0.7357  -0.1385 -0.0630 1.2605
    1.1920  -0.2458 -1.7548 -1.8394 2.6297
    2.2516  -5.4698 1.4902  0.0160  -0.1597
    1.5301  -4.0994 0.1500  -0.1502 -0.6559
    1.9364  -2.2511 0.0416  -0.2847 0.4355
    1.8584  -3.7230 -1.2060 -2.5532 4.1307
    2.3142  -6.5575 -0.4150 -2.1816 3.1576
    -0.0700 0.8540  0.0281  0.7366  -1.6568
    -1.4853 2.3316  0.2036  1.3061  -1.7547
    -0.1354 -1.2502 -0.7535 -1.0563 1.1186
    -1.6657 0.8584  1.1430  1.1907  -2.0410
    0.4031  -4.6320 -0.3420 -0.5611 -0.9567
    0.4331  1.3517  0.4656  1.5486  -1.7296
    -1.8057 3.6612  0.6464  1.3393  -1.3320
    -0.8021 -2.3895 -0.5989 -1.5490 1.9142
    -0.2031 0.7710  1.5435  1.8512  -1.5749
    1.1979  -0.4167 -0.7848 -1.2347 0.4743
    0.1571  -0.2733 1.1871  1.0185  -1.7692
    -0.6408 1.9974  -0.9219 -0.6104 1.8344
    2.0397  -2.0403 0.2125  -1.1059 2.0670
    -3.4611 4.7735  0.6304  1.0703  -1.3506
    -6.0643 8.4115  2.5897  4.2091  -5.1766
    2.1846  -3.1242 -0.8093 -1.8125 0.3641
    0.9654  -3.4801 -1.0331 -2.3767 2.2963
    -1.0520 2.8289  0.9928  1.6814  -3.1137
    -8.5946 10.0647 2.1153  3.7475  -2.8204
    -1.4385 0.7267  1.0811  0.8493  -1.8201
    -2.7175 -0.8414 1.8049  1.9329  -2.7452
    -7.9439 10.1650 2.0529  3.6705  -5.3906
    3.3160  -4.5018 -1.8564 -2.7729 5.1708
    -2.0741 4.6996  -0.4922 0.5771  -1.8047
    1.5204  -3.4120 -1.6619 -2.5613 3.5183
    0.7307  0.2991  -1.7238 -1.8011 3.4985
    1.1497  -0.8129 0.6835  -0.1655 -0.1079
    -1.9942 3.6173  1.4680  0.5525  -1.0096
    -4.4038 5.9876  2.1005  3.2887  -4.9171
    1.5841  -1.7243 -0.1638 -1.0218 2.3186
    -0.9056 2.2137  0.8471  0.3561  1.8957
    2.6274  -5.6761 0.3196  -0.5510 1.5066
    -0.3119 0.3984  -0.2916 -0.3838 -0.7565
    0.4767  0.7673  -1.2478 -1.2214 2.1389
    -0.8533 6.0425  -1.9801 -1.3635 0.3596
    -2.1631 1.7225  0.8496  1.6358  -0.0784
    0.4090  -0.2800 -1.9040 -1.2896 1.4046
    2.4464  -3.9463 -1.0364 -1.3369 1.3030
    -5.3882 4.4113  0.8725  1.5669  -2.1240
    2.4864  -7.4048 -1.2776 -2.0553 2.4928
    2.4787  -4.0136 -0.8223 -1.7083 1.0732
    -5.9314 9.6589  1.2448  4.5426  -8.0159
    -2.4842 0.9918  0.3994  -0.5056 -1.4490
    -4.3875 4.7577  0.1380  0.4208  -2.4302
    -0.0076 -1.8961 1.1356  0.2332  -0.5330
    -0.9121 0.0696  -1.6151 -1.5760 4.4351
    0.9609  -3.3045 -0.4387 -1.8382 2.3275
    2.1007  -0.0210 -1.2964 -1.0912 2.6844
    -0.5436 2.4144  0.2105  1.2146  -2.4363
    1.8259  1.7694  -0.5963 0.1105  0.6112
    -1.1593 2.0722  0.9176  2.1509  -3.1371
    2.0367  -6.6877 -0.5700 -2.0632 0.8664
    -3.1166 5.4924  2.3667  4.0310  -5.2816
    2.4395  -2.1003 -0.9407 -1.7072 3.4265
    1.0248  -2.4074 -0.5449 -0.7266 -0.2841
    4.6971  -8.0379 -1.2885 -2.2694 5.1105
    -4.6387 9.4827  1.8026  3.5558  -5.4823
    2.7667  1.5280  -0.6511 0.1465  2.1974
    0.2565  -0.9524 0.9117  1.4469  -2.4592
    -4.6055 3.4642  1.0459  2.0708  -2.0977
    -2.6781 2.5107  -0.3941 0.8685  -1.2466
    1.7996  -2.5567 -0.5500 -2.2802 1.6863
    -0.8324 -4.2306 0.5490  -0.6838 2.8491
    -3.2456 3.3650  1.7990  2.8993  -4.9672
    -1.7712 -0.0503 0.9968  0.5527  -0.8619
    0.4206  -4.0311 0.0154  -1.2011 1.3371
    1.5412  -2.8451 -0.4316 -1.2950 -0.2534
    2.4600  -4.3091 -2.0483 -2.7290 5.1678
    -1.5675 4.7410  -0.3525 1.1592  0.8593
    -1.6946 3.1440  1.1112  1.6165  -1.5204
    -2.8756 5.6329  0.6193  1.9340  -1.3438
    2.4840  -10.1867        0.2812  -2.4313 3.2290
    0.6589  -4.6085 -0.7828 -3.3621 5.5107
    0.3514  -2.7924 -0.0084 -1.4447 3.4834
    5.7964  -8.9359 -1.2308 -3.2417 3.3932
    2.6746  -1.8842 -0.5609 -0.2880 1.5403
    0.3007  -0.8504 0.8353  -0.6742 1.1317
    -4.2792 7.2538  0.3604  2.6916  -3.9556
    3.1317  -5.1059 0.4464  0.5472  -0.5794
    -1.4121 0.9795  0.2771  -0.4041 -0.3833
    -0.8923 1.4287  0.5642  0.5941  -1.6865
    -4.7416 6.1196  1.7041  2.6321  -2.7774
    0.6630  -3.1316 0.4529  0.1641  0.3944
    -3.0170 3.0252  3.2357  3.2153  -3.0449
    3.8911  -3.8608 -2.1617 -1.7106 2