internal/ollama: add support for ollama embeddings
The current support uses the largest embedding available. Also updates
documentation.
Change-Id: I4b7bb3e913b9d680ac97a475605e11f61c336e7b
Reviewed-on: https://go-review.googlesource.com/c/oscar/+/601476
Reviewed-by: Russ Cox <rsc@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
diff --git a/README.md b/README.md
index f6fcbd7..9c8ea70 100644
--- a/README.md
+++ b/README.md
@@ -291,8 +291,7 @@
and an in-memory vector database.
We plan to add support for a variety of other options, including
-[Ollama](https://ollama.com/) for local LLMs
-and [Google Cloud Firestore](https://firebase.google.com/docs/firestore)
+[Google Cloud Firestore](https://firebase.google.com/docs/firestore)
for key-value storage and vector database.
Firestore in particular will make it easy to run Gaby on hosted platforms
like [Cloud Run](https://cloud.google.com/run).
diff --git a/internal/gaby/main.go b/internal/gaby/main.go
index 221b264..45e5da4 100644
--- a/internal/gaby/main.go
+++ b/internal/gaby/main.go
@@ -112,8 +112,8 @@
//
// The [llm.Embedder] interface abstracts an LLM that can take a collection
// of documents and return their vector embeddings, each of type [llm.Vector].
-// The only real implementation to date is [golang.org/x/oscar/internal/gemini].
-// It would be good to add an offline implementation using Ollama as well.
+// The two implementations to date are [golang.org/x/oscar/internal/gemini]
+// and [golang.org/x/oscar/internal/ollama].
//
// For tests that need an embedder but don't care about the quality of
// the embeddings, [llm.QuoteEmbedder] copies a prefix of the text
diff --git a/internal/ollama/ollama.go b/internal/ollama/ollama.go
new file mode 100644
index 0000000..738a37a
--- /dev/null
+++ b/internal/ollama/ollama.go
@@ -0,0 +1,140 @@
+// Copyright 2024 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// Package ollama implements access to offline Ollama model.
+//
+// [Client] implements [llm.Embedder]. Use [NewClient] to connect.
+package ollama
+
+import (
+ "bytes"
+ "context"
+ "encoding/json"
+ "fmt"
+ "io"
+ "log/slog"
+ "net/http"
+ "net/url"
+ "os"
+ "slices"
+
+ "golang.org/x/oscar/internal/llm"
+)
+
+// NOTE: This package does not use third party packages for
+// querying ollama models to avoid bringing in their many dependencies.
+
+// A Client represents a connection to Ollama.
+type Client struct {
+ slog *slog.Logger
+ hc *http.Client
+ url *url.URL // url of the ollama server
+}
+
+// NewClient returns a connection to Ollama server. If empty, the
+// server is assumed to be hosted at http://127.0.0.1:11434.
+func NewClient(lg *slog.Logger, hc *http.Client, server string) (*Client, error) {
+ if server == "" {
+ host := os.Getenv("OLLAMA_HOST")
+ if host == "" {
+ host = "127.0.0.1"
+ }
+ server = "http://" + host + ":11434"
+ }
+ u, err := url.Parse(server)
+ if err != nil {
+ return nil, err
+ }
+ return &Client{slog: lg, hc: hc, url: u}, nil
+}
+
+const maxBatch = 512 // default physical batch size in ollama
+
+// EmbedDocs returns the vector embeddings for the docs,
+// implementing [llm.Embedder].
+func (c *Client) EmbedDocs(ctx context.Context, docs []llm.EmbedDoc) ([]llm.Vector, error) {
+ embedURL := c.url.JoinPath("/api/embed") // ollama embed endpoint
+ var vecs []llm.Vector
+ for docs := range slices.Chunk(docs, maxBatch) {
+ var inputs []string
+ for _, doc := range docs {
+ // ollama does not support adding content with title
+ input := doc.Title + "\n\n" + doc.Text
+ inputs = append(inputs, input)
+ }
+ vs, err := embed(ctx, c.hc, embedURL, inputs)
+ if err != nil {
+ return nil, err
+ }
+ vecs = append(vecs, vs...)
+ }
+ return vecs, nil
+}
+
+func embed(ctx context.Context, hc *http.Client, embedURL *url.URL, inputs []string) ([]llm.Vector, error) {
+ embReq := struct {
+ Model string `json:"model"`
+ Input []string `json:"input"`
+ }{
+ Model: "mxbai-embed-large", // use largest ollama embedding model
+ Input: inputs,
+ }
+ erj, err := json.Marshal(embReq)
+ if err != nil {
+ return nil, err
+ }
+
+ request, err := http.NewRequestWithContext(ctx, http.MethodPost, embedURL.String(), bytes.NewReader(erj))
+ if err != nil {
+ return nil, err
+ }
+ request.Header.Set("Content-Type", "application/json")
+ request.Header.Set("Accept", "application/json")
+
+ response, err := hc.Do(request)
+ if err != nil {
+ return nil, err
+ }
+ defer response.Body.Close()
+
+ embResp, err := io.ReadAll(response.Body)
+ if err != nil {
+ return nil, err
+ }
+
+ if err := embedError(response, embResp); err != nil {
+ return nil, err
+ }
+ return embeddings(embResp)
+}
+
+// embedError extracts error from ollama's response, if any.
+func embedError(resp *http.Response, embResp []byte) error {
+ if resp.StatusCode == 200 {
+ return nil
+ }
+ if resp.StatusCode == 400 {
+ var e struct {
+ Error string `json:"error"`
+ }
+ // ollama returns JSON with error field set for bad requests.
+ if err := json.Unmarshal(embResp, &e); err != nil {
+ return err
+ }
+ return fmt.Errorf("ollama response error: %s", e.Error)
+ }
+ return fmt.Errorf("ollama response error: %s", resp.Status)
+}
+
+func embeddings(embResp []byte) ([]llm.Vector, error) {
+ // In case there are no errors, ollama returns
+ // a JSON with Embeddings field set.
+ var e struct {
+ Embeddings []llm.Vector `json:"embeddings"`
+ }
+ if err := json.Unmarshal(embResp, &e); err != nil {
+ return nil, err
+ }
+ return e.Embeddings, nil
+}
diff --git a/internal/ollama/ollama_test.go b/internal/ollama/ollama_test.go
new file mode 100644
index 0000000..b6ba8d1
--- /dev/null
+++ b/internal/ollama/ollama_test.go
@@ -0,0 +1,104 @@
+// Copyright 2024 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package ollama
+
+import (
+ "bytes"
+ "context"
+ "fmt"
+ "net/http"
+ "testing"
+
+ "golang.org/x/oscar/internal/httprr"
+ "golang.org/x/oscar/internal/llm"
+ "golang.org/x/oscar/internal/testutil"
+)
+
+var docs = []llm.EmbedDoc{
+ {Text: "for loops"},
+ {Text: "for all time, always"},
+ {Text: "break statements"},
+ {Text: "breakdancing"},
+ {Text: "forever could never be long enough for me"},
+ {Text: "the macarena"},
+}
+
+var matches = map[string]string{
+ "for loops": "break statements",
+ "for all time, always": "forever could never be long enough for me",
+ "breakdancing": "the macarena",
+}
+
+func init() {
+ for k, v := range matches {
+ matches[v] = k
+ }
+}
+
+func newTestClient(t *testing.T, rrfile string) *Client {
+ check := testutil.Checker(t)
+ lg := testutil.Slogger(t)
+
+ rr, err := httprr.Open(rrfile, http.DefaultTransport)
+ check(err)
+
+ c, err := NewClient(lg, rr.Client(), "")
+ check(err)
+
+ return c
+}
+
+func TestEmbedBatch(t *testing.T) {
+ ctx := context.Background()
+ check := testutil.Checker(t)
+ c := newTestClient(t, "testdata/embedbatch.httprr")
+ vecs, err := c.EmbedDocs(ctx, docs)
+ check(err)
+ if len(vecs) != len(docs) {
+ t.Fatalf("len(vecs) = %d, but len(docs) = %d", len(vecs), len(docs))
+ }
+
+ var buf bytes.Buffer
+ for i := range docs {
+ for j := range docs {
+ fmt.Fprintf(&buf, " %.4f", vecs[i].Dot(vecs[j]))
+ }
+ fmt.Fprintf(&buf, "\n")
+ }
+
+ for i, d := range docs {
+ best := ""
+ bestDot := 0.0
+ for j := range docs {
+ if dot := vecs[i].Dot(vecs[j]); i != j && dot > bestDot {
+ best, bestDot = docs[j].Text, dot
+ }
+ }
+ if best != matches[d.Text] {
+ if buf.Len() > 0 {
+ t.Errorf("dot matrix:\n%s", buf.String())
+ buf.Reset()
+ }
+ t.Errorf("%q: best=%q, want %q", d.Text, best, matches[d.Text])
+ }
+ }
+}
+
+func TestBigBatch(t *testing.T) {
+ ctx := context.Background()
+ check := testutil.Checker(t)
+ c := newTestClient(t, "testdata/bigbatch.httprr")
+ var docs []llm.EmbedDoc
+
+ for i := range 1025 {
+ docs = append(docs, llm.EmbedDoc{Text: fmt.Sprintf("word%d", i)})
+ }
+ docs = docs[:1025]
+ vecs, err := c.EmbedDocs(ctx, docs)
+ check(err)
+ if len(vecs) != len(docs) {
+ t.Fatalf("len(vecs) = %d, but len(docs) = %d", len(vecs), len(docs))
+ }
+}
diff --git a/internal/ollama/testdata/bigbatch.httprr b/internal/ollama/testdata/bigbatch.httprr
new file mode 100644
index 0000000..971e2ea
--- /dev/null
+++ b/internal/ollama/testdata/bigbatch.httprr
@@ -0,0 +1,848 @@
+httprr trace v1
+7282 6523818
+POST http://127.0.0.1:11434/api/embed HTTP/1.1
+Host: 127.0.0.1:11434
+User-Agent: Go-http-client/1.1
+Content-Length: 7097
+Accept: application/json
+Content-Type: application/json
+
+{"model":"mxbai-embed-large","input":["\n\nword0","\n\nword1","\n\nword2","\n\nword3","\n\nword4","\n\nword5","\n\nword6","\n\nword7","\n\nword8","\n\nword9","\n\nword10","\n\nword11","\n\nword12","\n\nword13","\n\nword14","\n\nword15","\n\nword16","\n\nword17","\n\nword18","\n\nword19","\n\nword20","\n\nword21","\n\nword22","\n\nword23","\n\nword24","\n\nword25","\n\nword26","\n\nword27","\n\nword28","\n\nword29","\n\nword30","\n\nword31","\n\nword32","\n\nword33","\n\nword34","\n\nword35","\n\nword36","\n\nword37","\n\nword38","\n\nword39","\n\nword40","\n\nword41","\n\nword42","\n\nword43","\n\nword44","\n\nword45","\n\nword46","\n\nword47","\n\nword48","\n\nword49","\n\nword50","\n\nword51","\n\nword52","\n\nword53","\n\nword54","\n\nword55","\n\nword56","\n\nword57","\n\nword58","\n\nword59","\n\nword60","\n\nword61","\n\nword62","\n\nword63","\n\nword64","\n\nword65","\n\nword66","\n\nword67","\n\nword68","\n\nword69","\n\nword70","\n\nword71","\n\nword72","\n\nword73","\n\nword74","\n\nword75","\n\nword76","\n\nword77","\n\nword78","\n\nword79","\n\nword80","\n\nword81","\n\nword82","\n\nword83","\n\nword84","\n\nword85","\n\nword86","\n\nword87","\n\nword88","\n\nword89","\n\nword90","\n\nword91","\n\nword92","\n\nword93","\n\nword94","\n\nword95","\n\nword96","\n\nword97","\n\nword98","\n\nword99","\n\nword100","\n\nword101","\n\nword102","\n\nword103","\n\nword104","\n\nword105","\n\nword106","\n\nword107","\n\nword108","\n\nword109","\n\nword110","\n\nword111","\n\nword112","\n\nword113","\n\nword114","\n\nword115","\n\nword116","\n\nword117","\n\nword118","\n\nword119","\n\nword120","\n\nword121","\n\nword122","\n\nword123","\n\nword124","\n\nword125","\n\nword126","\n\nword127","\n\nword128","\n\nword129","\n\nword130","\n\nword131","\n\nword132","\n\nword133","\n\nword134","\n\nword135","\n\nword136","\n\nword137","\n\nword138","\n\nword139","\n\nword140","\n\nword141","\n\nword142","\n\nword143","\n\nword144","\n\nword145","\n\nword146","\n\nword147","\n\nword148","\n\nword149","\n\nword150","\n\nword151","\n\nword152","\n\nword153","\n\nword154","\n\nword155","\n\nword156","\n\nword157","\n\nword158","\n\nword159","\n\nword160","\n\nword161","\n\nword162","\n\nword163","\n\nword164","\n\nword165","\n\nword166","\n\nword167","\n\nword168","\n\nword169","\n\nword170","\n\nword171","\n\nword172","\n\nword173","\n\nword174","\n\nword175","\n\nword176","\n\nword177","\n\nword178","\n\nword179","\n\nword180","\n\nword181","\n\nword182","\n\nword183","\n\nword184","\n\nword185","\n\nword186","\n\nword187","\n\nword188","\n\nword189","\n\nword190","\n\nword191","\n\nword192","\n\nword193","\n\nword194","\n\nword195","\n\nword196","\n\nword197","\n\nword198","\n\nword199","\n\nword200","\n\nword201","\n\nword202","\n\nword203","\n\nword204","\n\nword205","\n\nword206","\n\nword207","\n\nword208","\n\nword209","\n\nword210","\n\nword211","\n\nword212","\n\nword213","\n\nword214","\n\nword215","\n\nword216","\n\nword217","\n\nword218","\n\nword219","\n\nword220","\n\nword221","\n\nword222","\n\nword223","\n\nword224","\n\nword225","\n\nword226","\n\nword227","\n\nword228","\n\nword229","\n\nword230","\n\nword231","\n\nword232","\n\nword233","\n\nword234","\n\nword235","\n\nword236","\n\nword237","\n\nword238","\n\nword239","\n\nword240","\n\nword241","\n\nword242","\n\nword243","\n\nword244","\n\nword245","\n\nword246","\n\nword247","\n\nword248","\n\nword249","\n\nword250","\n\nword251","\n\nword252","\n\nword253","\n\nword254","\n\nword255","\n\nword256","\n\nword257","\n\nword258","\n\nword259","\n\nword260","\n\nword261","\n\nword262","\n\nword263","\n\nword264","\n\nword265","\n\nword266","\n\nword267","\n\nword268","\n\nword269","\n\nword270","\n\nword271","\n\nword272","\n\nword273","\n\nword274","\n\nword275","\n\nword276","\n\nword277","\n\nword278","\n\nword279","\n\nword280","\n\nword281","\n\nword282","\n\nword283","\n\nword284","\n\nword285","\n\nword286","\n\nword287","\n\nword288","\n\nword289","\n\nword290","\n\nword291","\n\nword292","\n\nword293","\n\nword294","\n\nword295","\n\nword296","\n\nword297","\n\nword298","\n\nword299","\n\nword300","\n\nword301","\n\nword302","\n\nword303","\n\nword304","\n\nword305","\n\nword306","\n\nword307","\n\nword308","\n\nword309","\n\nword310","\n\nword311","\n\nword312","\n\nword313","\n\nword314","\n\nword315","\n\nword316","\n\nword317","\n\nword318","\n\nword319","\n\nword320","\n\nword321","\n\nword322","\n\nword323","\n\nword324","\n\nword325","\n\nword326","\n\nword327","\n\nword328","\n\nword329","\n\nword330","\n\nword331","\n\nword332","\n\nword333","\n\nword334","\n\nword335","\n\nword336","\n\nword337","\n\nword338","\n\nword339","\n\nword340","\n\nword341","\n\nword342","\n\nword343","\n\nword344","\n\nword345","\n\nword346","\n\nword347","\n\nword348","\n\nword349","\n\nword350","\n\nword351","\n\nword352","\n\nword353","\n\nword354","\n\nword355","\n\nword356","\n\nword357","\n\nword358","\n\nword359","\n\nword360","\n\nword361","\n\nword362","\n\nword363","\n\nword364","\n\nword365","\n\nword366","\n\nword367","\n\nword368","\n\nword369","\n\nword370","\n\nword371","\n\nword372","\n\nword373","\n\nword374","\n\nword375","\n\nword376","\n\nword377","\n\nword378","\n\nword379","\n\nword380","\n\nword381","\n\nword382","\n\nword383","\n\nword384","\n\nword385","\n\nword386","\n\nword387","\n\nword388","\n\nword389","\n\nword390","\n\nword391","\n\nword392","\n\nword393","\n\nword394","\n\nword395","\n\nword396","\n\nword397","\n\nword398","\n\nword399","\n\nword400","\n\nword401","\n\nword402","\n\nword403","\n\nword404","\n\nword405","\n\nword406","\n\nword407","\n\nword408","\n\nword409","\n\nword410","\n\nword411","\n\nword412","\n\nword413","\n\nword414","\n\nword415","\n\nword416","\n\nword417","\n\nword418","\n\nword419","\n\nword420","\n\nword421","\n\nword422","\n\nword423","\n\nword424","\n\nword425","\n\nword426","\n\nword427","\n\nword428","\n\nword429","\n\nword430","\n\nword431","\n\nword432","\n\nword433","\n\nword434","\n\nword435","\n\nword436","\n\nword437","\n\nword438","\n\nword439","\n\nword440","\n\nword441","\n\nword442","\n\nword443","\n\nword444","\n\nword445","\n\nword446","\n\nword447","\n\nword448","\n\nword449","\n\nword450","\n\nword451","\n\nword452","\n\nword453","\n\nword454","\n\nword455","\n\nword456","\n\nword457","\n\nword458","\n\nword459","\n\nword460","\n\nword461","\n\nword462","\n\nword463","\n\nword464","\n\nword465","\n\nword466","\n\nword467","\n\nword468","\n\nword469","\n\nword470","\n\nword471","\n\nword472","\n\nword473","\n\nword474","\n\nword475","\n\nword476","\n\nword477","\n\nword478","\n\nword479","\n\nword480","\n\nword481","\n\nword482","\n\nword483","\n\nword484","\n\nword485","\n\nword486","\n\nword487","\n\nword488","\n\nword489","\n\nword490","\n\nword491","\n\nword492","\n\nword493","\n\nword494","\n\nword495","\n\nword496","\n\nword497","\n\nword498","\n\nword499","\n\nword500","\n\nword501","\n\nword502","\n\nword503","\n\nword504","\n\nword505","\n\nword506","\n\nword507","\n\nword508","\n\nword509","\n\nword510","\n\nword511"]}HTTP/1.1 200 OK
+Transfer-Encoding: chunked
+Content-Type: application/json; charset=utf-8
+Date: Thu, 01 Aug 2024 20:45:16 GMT
+
+8000
+{"model":"mxbai-embed-large","embeddings":[[0.027109459,-0.030857366,0.0050509977,0.027758773,-0.018896885,-0.045405146,0.033958334,-0.0045119114,0.0075918143,0.022110654,0.0293258,-0.017472178,0.0026812467,-0.0059720273,-0.016143141,0.013333628,-0.006667888,-0.014261343,-0.039078027,0.009518874,0.016383901,0.028919239,-0.097695924,-0.008837742,-0.039227735,0.055419814,-0.021240681,0.0030428164,0.05304091,0.058457892,-0.0037903278,0.0005809656,0.05200083,-0.053234026,-0.045723613,-0.036326166,0.066210955,-0.023598393,-0.020344822,-0.03589408,0.038033325,-0.028457318,0.017528838,-0.03682538,-0.048300598,0.009832016,-0.015938766,0.0002854255,0.0056694783,-0.050091423,0.009101845,-0.02667969,0.041203383,0.014747504,0.057250302,-0.012804326,-0.028479692,0.0015230114,-0.008630536,0.028502613,0.035907526,0.037918802,0.029701427,-0.08057054,-0.020493206,0.024045367,0.0054841214,0.007174326,-0.00033612532,0.01683894,-0.001000629,-0.006257746,0.0005720115,-0.014640625,-0.020107083,0.026867483,0.024146816,0.031326503,-0.03957186,0.036297753,-0.035348147,-0.010010744,0.035674937,0.03578881,-0.021257175,-0.013279057,-0.018092422,-0.0021388025,0.0117709385,0.00040744038,0.009493933,0.026273737,0.0066173105,0.010574953,0.04438513,-0.006703681,-0.0133895185,-0.009819926,-0.03341319,0.0047256257,0.009934348,0.022296237,0.011289896,0.050492413,-0.032483343,-0.00325194,0.0027890115,0.015545324,0.003908832,-0.019133689,-0.013749568,0.018211136,0.024951156,0.02239138,0.0121805435,0.03330732,-0.017424282,0.021771252,-0.038262572,0.0059255236,0.0077056484,0.01969282,-0.007194134,-0.004094258,-0.022972511,-0.034486923,-0.042640094,0.021946155,-0.013696024,0.017680718,-0.009875593,-0.01877443,0.011470669,0.0303062,0.06558156,-0.00021168678,0.016320983,0.0086786505,0.017165707,-0.014336012,0.070509225,0.015737262,-0.03553575,0.089252695,-0.000598693,0.040049855,0.021472415,0.035636958,-0.03655377,0.052804552,-0.02237999,0.011001963,-0.017868115,0.031618513,-0.027894923,0.012875518,0.03252654,-0.0034580673,0.007867565,0.011556077,0.0117416745,0.018078621,-0.004801269,0.022301491,-0.04717255,0.03322414,-0.03472466,-0.00698209,-0.013754692,0.0037525028,0.028747212,-0.00935313,-0.02520194,0.0036192425,-0.02215696,0.06694353,0.0043056137,-0.024522942,0.030194193,-0.007647893,-0.0074777924,0.025920173,0.033807486,0.05018,-0.017183086,0.015903803,0.0066968207,-0.0026867937,-0.041227005,-0.054497078,0.0024852613,0.051934537,-0.056586727,-0.006066298,-0.0046234583,-0.011556813,-0.047604874,-0.023437798,-0.023392212,-0.08087138,-0.016395807,0.0333719,0.0064393547,0.02712061,0.009545362,-0.015070103,-0.0043313764,0.042498205,0.0038926797,0.006868972,0.027524984,0.044749655,-0.026159385,-0.0016498523,0.03695486,-0.005674342,-0.04555905,0.050600424,-0.052648015,0.020364579,0.027269064,0.047812764,0.03274094,0.03192702,0.025833277,-0.030590503,-0.00043453128,0.044571526,-0.011095429,0.022429394,-0.025743488,0.043821193,0.007952505,0.028125463,0.018264886,0.01862032,0.058338124,0.019346628,-0.0011740206,-0.0010926989,-0.024113283,-0.0014473965,0.03928034,0.04063729,0.007959986,0.01973076,0.013058622,0.011641033,-0.014733513,0.011468585,-0.017248135,-0.006541875,0.017685212,0.00297706,-0.06603172,-0.011321759,0.046466228,0.053983547,-0.052246496,-0.034318842,0.017489387,0.033520374,0.00364367,0.03729262,0.00843984,0.0041559837,-0.007825479,0.002858524,0.0031411191,-0.029265445,-0.0075080777,-0.042836927,-0.049059104,-0.023460425,-0.032980755,-0.010553225,-0.017281173,-0.007185189,0.0042371964,0.033818,-0.0018264599,-0.057786256,-0.010820266,0.0181309,0.005114893,0.037241347,-0.009060792,0.043169644,0.020926567,0.02543918,-0.04248931,-0.011227171,-0.016951079,-0.05161733,-0.0052154297,0.025771523,-0.027513515,0.020955663,-0.029326499,-0.03229403,-0.014583225,-0.012741369,-0.017931068,0.006522859,-0.0045738453,-0.0047402745,-0.009083568,-0.025639405,0.03342935,0.042260103,-0.066366926,0.029729772,0.02802028,0.0020062341,-0.036913157,0.004462699,0.0050453763,0.04985686,-0.046117935,0.0043982514,-0.008363859,0.023878966,-0.011106193,-0.04617464,0.009310979,-0.009286307,0.028555566,-0.10289185,0.022507949,-0.021420984,-0.049452487,-0.035220463,-0.018036887,0.02790018,0.013921003,-0.008844869,-0.0031214745,-0.05103401,-0.017307399,-0.025392998,0.055991437,-0.048100665,0.009575048,0.068124376,-0.0036297422,-0.012290108,0.02581507,0.020313054,-0.021555278,0.019277493,0.019342262,0.0347532,0.006371181,0.0054824185,-0.0036399006,-0.013918151,-0.038556933,-0.00016629114,0.06511733,-0.028974077,0.0051381085,0.022051442,-0.0016622912,-0.052113973,0.026812313,-0.05206793,0.02051923,0.01911288,0.020856597,-0.05949097,0.05952145,-0.011118887,-0.044907123,0.016637092,0.0037913944,0.026804062,0.029933328,0.0043301554,0.046231244,-0.031056255,0.0031757222,-0.022738175,0.028403608,0.037557628,0.050699826,0.012484617,-0.02284418,-0.00016259881,-0.016018867,-0.043280043,-0.046788357,-0.023206985,0.017947858,0.005822036,0.003994864,-0.049402013,0.049201097,0.0012219764,0.010080014,0.0043574716,0.06825267,-0.010312239,-0.0066664736,0.014096222,0.009752325,0.021854583,-0.03132595,0.029884387,-0.027750356,-0.018439224,-0.04678029,-0.021194233,-0.017435322,0.029333275,0.017642925,0.021472432,-0.008068696,-0.0076307566,0.062837176,0.0046291235,-0.03842425,0.017175013,-0.012046803,0.009897845,-0.010193953,-0.037911233,0.011596913,-0.04632263,0.024867103,0.0013608325,-0.012760999,-0.049654987,-0.0034214368,-0.016587637,-0.033771895,0.010717681,0.027008278,-0.04111519,0.05816371,-0.024170613,0.022429977,0.019001488,0.0069892057,-0.017641442,-0.0013895888,0.0031468973,0.042729348,0.03325684,-0.053582523,-0.03370555,-0.015509548,-0.05360968,-0.0059227524,-0.013886694,0.009311033,0.003608977,-0.011077445,0.016957968,0.026643215,-0.042154767,0.00800785,-0.03788643,0.070302375,-0.016641265,-0.007899213,0.05635437,-0.026334655,-0.023503026,0.025767209,0.027982404,0.029456545,0.003439326,0.0039849197,0.012694058,0.007842519,-0.04402908,0.017743535,0.015396106,-0.036980975,-0.015564235,-0.0024109182,0.017870674,-0.010979853,-0.04191101,-0.00029305654,-0.048352987,-0.01643386,0.02682671,0.028993996,0.0022634051,0.008076776,-0.00068343413,0.023593215,-0.05121039,-0.0009863504,-0.008451281,-0.03396725,0.014145811,-0.004146077,0.04714134,0.026570821,-0.00964695,-0.0074245017,0.008842232,0.00251976,-0.03260834,-0.029263727,-0.023179218,-0.0041021365,-0.023368478,0.03328292,0.047970854,-0.00028182263,-0.032444585,0.046558615,0.016071985,-0.02202136,0.05549399,-0.011701761,0.06688501,0.005441046,-0.05395603,-0.006719712,0.033568427,-0.017326728,0.02710641,-0.0038730523,-0.013384389,-0.06448316,-0.018562386,-0.020084752,-0.055516794,-0.059030578,-0.023288086,-0.072614685,-0.008976047,0.011114105,-0.012462077,-0.026017101,0.015091789,-0.06306595,-0.007865234,-0.0046685054,-0.0028391096,-0.025614925,-0.011692186,0.029527927,0.059965912,-0.031177029,0.04014522,-0.037394322,0.0063191773,-0.0031641452,0.014658696,-0.036444794,0.0012503713,0.06049095,-0.035606347,0.014047355,0.037104186,-0.0017327227,0.04291391,-0.031541884,-0.035478514,-0.029964063,-0.05492694,-0.045885015,-0.028387988,0.027040143,-0.011466472,-0.0014635607,-0.0082616415,0.06182295,0.019065965,-0.00227783,-0.055129718,-0.03668527,-0.055878486,-0.04163212,0.021437546,-0.017878832,0.023937343,-0.032574892,-0.0013805028,0.032467715,-0.017315904,0.004739632,0.06359821,0.0059749763,-0.00024634576,-0.03462179,0.02503703,0.03344688,-0.047581267,-0.0072233453,0.002100896,-0.053439274,0.013626236,-0.04940225,-0.04363638,-0.03659989,0.007586289,0.06514989,-0.024685007,0.015390944,-0.009296085,0.012443063,-0.057213027,0.035174306,0.033183657,-0.038227104,0.047419567,0.005191282,0.010257718,0.035437286,0.015199282,-0.001967535,0.008589399,0.031176286,0.013809022,-0.05650459,0.039948255,0.06530844,-0.043531843,-0.03128605,0.013990836,0.0046824287,-0.054061975,-0.05890213,0.016462138,-0.031425778,-0.030180272,-0.011181698,-0.031056022,0.0038464412,0.036932345,-0.029734539,0.03158667,-0.009059886,0.031965066,0.05829874,-0.044703256,0.012101342,-0.04720584,0.0028468529,0.019211514,0.017297285,0.014236702,-0.028920693,0.02046618,0.03591202,0.0024338302,0.06968917,-0.02802394,-0.056478642,0.050963875,-0.006906402,-0.025397904,-0.0030431342,-0.004098083,-0.0024477039,0.022547655,-0.058410298,-0.025571125,-0.007905012,-0.010199524,-0.009339914,-0.013509711,-0.010139267,-0.023273291,-0.033290245,-0.034604877,-0.023926206,-0.011699692,0.023567649,0.009247423,0.0037123773,-0.026639394,0.0531861,-0.041165058,0.05447205,-0.009142681,0.07191132,-0.05822831,-0.036058746,-0.041065242,0.039851375,-0.041888874,-0.014919453,0.0027099089,0.004428476,-0.0025726457,0.021213358,0.000267311,0.006311189,-0.057761736,0.0012787416,0.06291032,0.008385954,0.0047205696,0.050739195,0.028436193,-0.003535562,-0.022612883,0.013115416,-0.033123147,-0.05926225,0.0017261792,-0.004262828,-0.03331191,-0.007848243,-0.043925982,-0.010296372,-0.020542277,0.015373908,-0.030150842,0.012759494,-0.010089247,-0.016810784,0.022776667,0.03574981,0.0018625788,0.0060708346,0.01617681,0.0264277,-0.0039967345,-0.03509047,-0.0091553945,0.01818293,0.02464662,-0.019348666,-0.011853012,0.041324116,0.018383596,0.025902357,-0.017210133,-0.040028922,-0.011029661,0.02096228,-0.0014593664,0.030726036,0.011142843,-0.031028697,0.03060706,-0.02020398,-0.021083178,0.020768005,-0.0929538,-0.033367667,0.00022896513,0.014251963,0.029011182,0.00665524,-0.080438085,-0.016856108,0.0071956594,0.0004958981,0.018168164,-0.00064244703,-0.0037718243,0.036052804,-0.041027006,0.014044761,-0.0042212973,0.008344122,-0.0075873756,-0.059326474,0.035749767,-0.0013693722,-0.00017465014,0.009779899,-0.045376576,0.023420274,-0.02920638,-0.025990196,0.036609124,0.021248914,-0.018740883,0.025940213,-0.02996669,0.040657785,0.013859872,0.00041227366,0.003869915,-0.02198753,-0.014797498,0.04340867,0.047596656,0.004336026,0.003882706,0.028249338,0.006747902,-0.002293286,-0.034187447,-0.01883189,0.029254794,0.026684165,0.028967563,-0.006020997,0.020114252,0.0020140253,0.012605062,-0.010101238,0.00049566507,0.013780842,-0.023551572,0.007889006,-0.01750898,-0.022296315,-0.018011512,-0.027855206,-0.00084042625,-0.04155648,-0.02202146,-0.020020418,0.0011523442,0.02160527,-0.0121040605,-0.007899764,0.011156838,0.0048506544,-0.003014693,0.02480453,-0.0005861807,0.009652822,0.012635483,0.025750177,0.022689294,0.017806789,0.0038529288,0.025503205,-0.054608226,-0.032495745,0.018806359,0.019966869,-0.03425123,-0.03828397,-0.07238592,0.048964463,-0.015523282,-0.00757009,0.01765345,-0.0409428,0.01614239,-0.057364844,0.0341406,-0.022935607,-0.010959264,0.039696496,-0.03143369,0.05313063,-0.0014317163,0.023835877,0.0039661755,0.010518115,0.014687108,-0.007623315,0.04723267,0.03239966,-0.030945562,0.005468929,0.006029936,0.00683674,-0.0060907747,-0.012429128,-0.031869475,0.0013002537,-0.007173902,-0.0015418311,-0.010669382,0.023029374,0.011945036,-0.04248128,-0.029955126,0.02194099,-0.014631879,0.032680623,-0.0028010737,0.00095656706,0.014084665,0.00870237,-0.004642854,-0.019511817,0.051023617,-0.07302007,0.016392961,-0.018986253,-0.066960715,-0.016560376,-0.04642632,-0.0027871276,-0.012640979,-0.020985229,-0.0445746,0.029277474,0.04320435,-0.0038558205,0.010448204,-0.011010546,0.017346062,0.06958013,0.05106195,-0.035628524,0.067231126,0.0030782658,-0.005127233,0.028477458,-0.043050986,0.060597148,-0.015527238,-0.03119014,-0.052782264,0.017867437,-0.031049669,-0.06143657,-0.000014241839,0.03820159,0.039682943,-0.043537904,-0.06826359,-0.0019159804,-0.033557832,-0.03585577,-0.00106978,0.0970198,-0.00988519,-0.002466308,-0.009173922,-0.09303909,0.2567341,0.04784524,0.004794872,0.016447248,0.011054144,0.027446069,0.00028467376,0.002001947,-0.032238144,-0.05425434,0.020534815,-0.007680334,-0.0035987115,0.06060297,0.03323311,0.036677305,-0.025075106,-0.007243837,-0.014246224,-0.01568947,-0.0058507496,0.033145245,0.027122432,0.031156678,-0.020771096,-0.002346207,0.027539711,-0.004883912,-0.011886835,-0.00038669672,0.018226834,-0.028636413,0.015681846,-0.012343829,-0.06321331,-0.00065467035,-0.008206372,-0.01067404,-0.0017260361,0.026048884,-0.05600393,0.02562569,0.014562629,0.01737157,0.010092966,0.025037978,-0.016875403,0.0030997456,0.0075226384,-0.032242425,0.060998827,0.00014721761,0.058320295,-0.045010824,-0.029835982,-0.008912395,0.017850377,-0.020111425,-0.008091097,0.032311164,0.01188937,0.0068022935,0.0047282693,-0.018350756,-0.029564304,0.033819553,0.056417357,0.047511917,-0.018516399,0.00588534,0.008995474,-0.017391723,-0.029524628,0.0017385872,0.00072724104,-0.0121061355,0.0033828036,-0.007992813,0.016553927,-0.053504404,0.002593408,-0.037359186,0.010705394,-0.0038847937,-0.019036641,0.054997187,-0.0053432817,0.0120191,-0.025574705,0.05083903,0.0040811305,0.036679294,-0.021333914,-0.039878167,0.023326632],[0.03829225,-0.022471447,-0.0040943213,0.025301147,-0.017315783,-0.04473895,0.014400811,-0.03516667,0.031403434,0.029973654,0.034085866,-0.011998998,0.0036928197,0.000986188,-0.024191517,0.0083480105,-0.032698568,-0.006066244,-0.059866905,-0.00047940196,0.0021838453,-0.0055452506,-0.09952217,-0.014906136,-0.030663354,0.041896556,-0.0012227149,0.015127831,0.042687237,0.04939861,-0.008672708,0.008292682,0.06542571,-0.036991592,-0.044907186,-0.034560483,0.06738014,-0.041605234,-0.00079971645,-0.0371873,0.016536307,-0.016152734,0.028404804,-0.022190208,-0.04855081,-0.009853417,-0.0039658155,-0.026654005,0.018194534,-0.03908635,-0.0038869448,-0.017290838,0.034228496,-0.0148773,0.022271728,-0.013914961,-0.019222047,-0.009689383,-0.007827165,0.03610916,0.03314897,0.05054987,0.020835742,-0.067597024,-0.028463347,0.022890944,-0.003772744,-0.0056459405,0.018224878,-0.009161116,-0.011124722,0.024555892,0.00041581906,-0.0057262476,-0.007182602,0.014780508,0.011835499,0.020885495,-0.048308782,0.052337524,-0.01080339,0.020846808,0.040461224,-0.010847127,-0.038431615,0.00072892173,-0.03249276,0.028352605,0.008448697,-0.0060736258,0.0176004,0.02275404,-0.0017594448,0.016948288,0.049457192,0.016675264,-0.011960356,-0.012641618,-0.0448359,-0.010744367,0.019710552,0.040906753,-0.015709437,0.050095562,-0.052224487,-0.01028957,-0.030200696,0.03353235,-0.005457634,0.022390554,-0.025064738,0.013939095,0.012505783,0.02987273,-0.0075266757,0.049819194,-0.020646073,0.0063768406,-0.024716184,0.014511972,0.013057219,0.0006179447,0.015493753,-0.011181439,-0.0077304197,-0.03677139,-0.028648268,0.041582737,-0.025441006,-0.018336525,0.011796454,0.0049840957,0.007638751,0.04133408,0.040945604,0.002125183,-0.020492256,0.021615388,0.039890774,-0.061358158,0.056712896,0.029742736,-0.04322766,0.069516525,-0.0019245882,0.04111407,0.011207018,0.03427082,-0.0432379,0.060546942,-0.014557127,0.009273808,0.012479178,0.04332536,-0.01002772,0.011490155,0.0031742144,-0.008139798,0.0014751311,-0.0017331237,-0.012046096,-0.0015968035,-0.035216384,0.013879055,-0.04963092,0.037541837,-0.034102812,-0.00848849,-0.019469664,-0.002412908,0.00013487296,-0.005885922,-0.0216058,0.0014711795,-0.038555104,0.057311766,0.008986804,0.01136178,0.047646854,-0.024069462,-0.029116986,-0.0032009275,0.011787122,0.040509347,-0.008230546,-0.00086631195,0.019621117,-0.0020073666,-0.0013556416,-0.04622212,-0.0024652947,0.050255716,-0.06034313,-0.007937938,0.02262975,0.0020393522,-0.026501428,-0.012375847,-0.046953086,-0.05208814,-0.013489444,0.012152116,-0.037277363,0.04190634,0.004601509,-0.02686834,-0.0072385613,0.02982326,-0.022868155,-0.017108718,0.027938686,0.04834506,-0.017246988,-0.026785512,0.008298121,-0.0392091,-0.03905839,0.04022573,-0.04983051,-0.011359095,0.044525504,0.018109368,0.034914974,0.025435237,-0.009430427,-0.009639862,0.0032616758,0.052197963,-0.012820263,0.027970856,-0.017311815,0.038813386,-0.0006579216,0.042741638,0.016658872,0.024626192,-0.002742556,0.03567871,0.0003671124,0.004812361,-0.020883694,-0.0017124821,0.05816998,0.04353387,0.006158084,0.013351821,0.0046059354,0.016275087,0.004299251,0.005471374,-0.023665864,0.0053383745,0.03515093,0.01196889,-0.048211947,-0.038311392,0.04828963,0.015246326,-0.041834097,-0.050207727,0.029864877,0.04712331,0.00049445743,0.05212603,0.031251285,-0.0087258,0.013600177,0.031689223,-0.02282626,-0.036843132,-0.019214436,-0.035957377,-0.059149243,-0.031919237,-0.018641185,0.018471988,-0.019239873,-0.03724031,0.02764144,0.02054134,-0.014789268,-0.042186312,-0.023713283,0.040969025,-0.011030154,0.03671747,-0.0048652566,0.017185174,-0.02478971,0.050857477,-0.013356831,-0.033271335,-0.019204492,-0.04341394,0.0057106623,0.028570076,0.0040730876,0.034657687,-0.029557219,-0.04295173,0.0038877185,-0.032137964,-0.008774648,0.027416755,-0.018309807,-0.00201957,-0.013317318,-0.029828455,0.026736954,0.03982517,-0.07189503,0.016994374,-0.0027248608,0.03333684,-0.048035346,0.027261116,-0.014889427,0.049162414,-0.0479584,-0.029049164,-0.008178765,0.01280269,-0.039305076,-0.047409695,0.04828823,0.032963566,0.04110047,-0.08865597,0.0055134213,-0.037814096,-0.07761554,-0.036808763,-0.028586086,0.027064042,-0.0045226836,0.00908347,-0.008418694,-0.03327406,-0.03076844,-0.014725367,0.04638695,-0.077055395,0.03283368,0.056154653,-0.0068432055,0.02129375,0.0311428,0.008985914,0.009097531,0.0047479565,0.01657437,0.020876184,0.004015987,0.028206345,-0.014846961,-0.024716392,-0.034212682,0.021976722,0.03793247,-0.005211118,0.012700274,0.005144245,-0.019459382,-0.043036614,0.011397323,-0.030993583,0.011531134,0.0077205566,0.018724756,-0.048386414,0.054974563,0.00061356445,-0.06611833,0.026489738,0.0062989006,0.014383786,0.05202089,-0.03196626,0.015938194,-0.052667405,0.030899722,-0.014830402,0.01611575,0.025259677,0.07846235,0.044597894,-0.008340053,0.0012806212,0.0011452632,-0.020343965,-0.035381716,-0.02814553,0.032359492,-0.008958771,0.0042217798,-0.025697397,0.04842271,0.0051442944,0.013070363,0.02503219,0.029658847,-0.01742694,0.016177194,0.013453948,0.021088853,-0.0013317433,-0.017342808,0.06830127,-0.050497394,-0.037923526,-0.044121627,0.003642448,-0.034827754,0.0020526778,0.037878968,-0.019227238,-0.0034332213,0.021082029,0.06677018,0.0069425753,-0.06542401,0.014596553,-0.026020149,0.02107157,-0.0031851528,-0.028255016,0.04149092,-0.041784305,0.04850689,0.0075334725,-0.030832764,-0.034607623,0.036101453,0.011672521,-0.021099938,0.006424705,-0.002308478,-0.04416771,0.038043696,-0.024200143,0.0088275075,0.0012554396,-0.014222901,-0.043191556,-0.02543007,-0.0117346225,0.028114581,0.03839017,-0.036157083,-0.025808472,-0.024900561,-0.053605746,0.0044043,-0.06644453,0.007017417,0.008693301,0.017798102,0.021566773,0.002214026,-0.0027438065,0.0066151554,-0.014867694,0.037544698,-0.012357557,-0.027182138,0.040439643,-0.010230322,-0.06807816,0.053436656,0.021593947,0.007234448,0.0056729745,0.025745263,0.006729048,-0.011218507,-0.036241625,0.006286532,0.00014087747,-0.008011568,-0.012281548,-0.017472638,-0.036441453,-0.015482199,0.0147695625,-0.00977078,-0.040478166,0.0010520552,-0.017269317,0.017326156,-0.03195659,0.017466336,0.015617945,0.013172967,-0.03649079,-0.0072526233,-0.04164282,-0.050549172,-0.0049515855,-0.043408744,-0.0033085993,0.05136701,-0.021158472,0.0034770372,0.009239047,-0.0025407735,0.025398707,-0.022945547,-0.04118314,0.0043939706,-0.015609784,-0.021320887,0.037580337,0.0042464505,-0.0010662938,0.019781351,0.009073852,-0.03540641,0.032897033,-0.0015624675,0.039449163,0.0026733736,-0.04497982,-0.011325689,0.039726384,0.0035601424,0.04583882,0.005779464,-0.0018731807,-0.028352873,0.004467981,-0.004633305,-0.036261223,-0.04209046,-0.034289908,-0.020695044,0.00044672217,0.0009453972,0.019956835,0.01109074,0.037974626,-0.0711769,-0.004271987,-0.01894518,-0.011143045,-0.003729282,-0.009633498,-0.008115795,0.05988104,-0.015146095,0.055690244,-0.0021963585,0.0062053506,0.004896749,0.023181453,-0.049274474,0.0077226018,0.0027520366,-0.006755816,0.03067852,0.006491655,0.022229949,0.044784624,-0.039348386,-0.03092221,-0.035450395,-0.04516202,-0.035827056,0.0013468921,0.021801645,-0.0077001173,-0.024080344,-0.016107623,0.06848583,0.035546727,-0.006980421,-0.04537419,-0.03881259,-0.03689453,-0.053119622,0.040224563,-0.015200527,0.021299686,-0.03693273,0.02571007,0.029265247,-0.023211256,-0.02990703,0.06583432,0.020462371,-0.030390529,-0.045433,0.034294255,0.044616256,-0.047606282,-0.03193635,-0.006560907,-0.025280127,0.02283694,-0.031037452,-0.072269596,-0.05050472,0.00748352,0.045599487,0.0171336,0.045355137,-0.014809242,0.0066043,-0.056122545,0.032369897,0.059104986,-0.015051429,0.0015697631,0.00903073,-0.014814557,0.03542901,0.0046716575,0.0106009655,-0.008959657,0.035203613,0.005610801,-0.03829159,0.055843882,0.05647869,-0.036282487,-0.036390174,0.001449701,0.006984819,-0.030651877,-0.0688996,0.018681895,-0.027236829,-0.0010509009,-0.015687566,-0.021610066,-0.005138107,0.030202914,0.018534495,0.039986428,0.0008672388,0.029291196,0.04480179,-0.030645676,0.027578162,-0.010407525,0.030504923,0.036325056,-0.006445324,-0.0109373825,0.008303757,0.001539549,0.037893564,-0.013229769,0.028214723,-0.033327356,-0.051000442,0.04880794,-0.0018038994,-0.023467304,0.025783509,-0.0010866132,-0.0049130977,0.015619965,-0.033959854,-0.014268445,-0.007404243,-0.019032804,-0.033543564,-0.02436027,-0.022183862,-0.045765996,-0.027145728,-0.04288368,-0.030059963,-0.00907974,0.023713222,0.021465527,0.00020166786,-0.0039748694,0.057718247,-0.035868697,0.02452359,0.008848733,0.0773329,-0.002644262,-0.060036942,-0.011206239,0.035470005,-0.05622607,-0.006321098,-0.01380261,0.001016385,-0.0013338428,0.014869857,0.024422385,0.036935326,-0.052824847,-0.0024546206,0.009370134,0.010491451,-0.007876371,0.03238222,0.0479651,-0.024151186,0.014415042,-0.013727992,-0.04031011,-0.048466668,-0.0037818595,0.018484494,-0.020826519,0.001029177,-0.051435784,-0.0228783,-0.036347818,-0.008814822,0.0061102393,0.012127082,-0.009894483,-0.009224032,0.006894487,0.016234212,0.012268573,0.0321195,0.022153633,0.024892133,0.0074896673,-0.0036269068,0.017362017,0.05250125,0.037703317,-0.025939308,-0.046498563,0.02092225,0.021837365,0.01784908,-0.028492903,-0.029525943,-0.023049107,0.018245598,-0.0072519337,0.031131648,-0.0006209372,-0.031064127,0.01963981,-0.054306556,-0.040929362,-0.017827677,-0.06810313,-0.04847504,0.014055557,0.004832125,0.009295396,-0.015062928,-0.055922348,-0.022172097,0.025981499,-0.004135659,-0.002845566,0.01197633,-0.01138763,0.0176209,-0.057422515,0.028037252,0.009082364,-0.017586011,-0.02827391,-0.046594925,0.05489323,-0.016700437,0.022931417,-0.0046496154,-0.041244257,0.011399923,-0.0060788025,-0.019332577,0.0020777127,0.023721391,-0.0065973164,-0.0029750576,-0.01636981,0.03820992,0.007342462,0.028226754,0.013531849,0.010684321,-0.01545189,0.054844603,0.024625855,-0.011612769,0.043486297,-0.00023825011,0.023122776,-0.020643167,-0.013981119,-0.03478503,0.041576922,0.0124262525,0.0069567473,-0.014849782,0.032222632,0.010333829,0.061961796,0.008135592,-0.002982497,-0.00066810666,-0.01686945,-0.013147135,-0.011847602,-0.034265902,-0.023450797,-0.02184428,0.0133021725,-0.012389071,-0.026421623,-0.020259378,-0.02697481,0.043346778,0.00036891442,0.005381291,-0.024270058,-0.0015042552,-0.011918373,0.026601622,0.0031779024,0.011720943,0.024312848,0.027663128,0.017573075,0.009610988,0.024459774,0.015162045,-0.042424325,-0.0030702157,0.012265156,0.023679767,-0.04907022,-0.021248119,-0.060139857,0.07081489,-0.029025862,-0.043155067,0.0146743,-0.042806204,0.008505889,-0.06709346,0.012619027,-0.02638277,0.023624456,0.043432143,-0.01725828,0.009766902,0.02909734,0.015877977,0.021857625,0.006915633,0.05470945,0.025425931,0.036209513,0.029312257,-0.030997345,-0.006800382,0.016260685,0.011407926,-0.022342151,0.003070648,-0.056042712,-0.027886383,-0.028966604,0.004780457,-0.020554513,0.06318927,-0.008368703,-0.04292821,-0.0053499746,0.014816567,-0.025611656,-0.00021874506,-0.020352762,0.0029456366,0.012450699,0.007848115,-0.026558846,-0.016406093,0.059839543,-0.050327897,0.05693302,-0.039024703,-0.050595004,-0.028211094,-0.07054718,0.03439595,-0.03934848,-0.01202203,-0.028953146,-0.012519153,0.030798323,0.011036968,-0.017308278,-0.03200866,-0.021218505,0.046953816,0.023409322,-0.016210262,0.08446121,0.002269906,-0.029870639,0.037671693,-0.010056846,0.065222315,-0.030493839,-0.013388194,-0.055648338,0.022175662,-0.006181813,-0.033286836,0.02927159,0.053439092,0.015906703,-0.031005017,-0.050542317,0.009513675,-0.01270124,-0.01529487,0.014567879,0.051113524,0.014169083,-0.013320756,-0.010077006,-0.07101644,0.2687393,0.07301641,0.0020283884,0.01812636,-0.0014954726,0.008549017,-0.0047575957,-0.013049646,-0.014745669,-0.035149995,0.033927634,0.005649908,-0.017496167,0.036659278,0.0136992065,0.043197043,-0.015499122,-0.011247533,-0.017034713,-0.018003747,-0.024256757,0.029681815,0.015138707,0.0021921806,-0.025437934,0.036093537,0.05179924,-0.025684858,-0.004339229,-0.027949603,0.015861852,-0.022836747,0.026632156,-0.042820934,-0.0293699,0.03145804,0.011949705,-0.018577255,0.0076754945,0.006149777,-0.045077976,0.03802885,0.0313545,0.016135063,0.02389999,0.044179026,-0.030675635,0.015419332,0.006666502,-0.015683742,0.08238012,0.020171205,0.0463462,-0.03297508,-0.028414017,-0.025421241,0.009269377,-0.02278654,-0.01833008,0.035147674,0.0032093571,-0.011223117,0.014118659,0.00069529464,-0.02421236,0.015668992,0.062354654,0.045152538,-0.0098679485,0.006358758,0.005560827,-0.03209172,-0.0118574,-0.021253122,0.049773954,-0.0036930845,-0.017990895,0.037095733,0.018609744,-0.015867377,-0.011842494,-0.022246502,0.025098227,0.0066220653,-0.015263106,0.06672679,0.0027039873,-0.019264508,-0.008232117,0.02480425,0.03340314,0.055218995,-0.009667614,-0.034532916,-0.011071613],[0.021964341,0.0034698416,0.037751846,0.013493145,-0.023495467,-0.03719357,0.012321319,-0.01210529,0.008977384,0.036305957,0.025663942,-0.024412526,-0.0024526191,-0.010588822,-0.013990561,0.02268433,-0.02654252,-0.014540521,-0.033352707,-0.002676845,0.021724502,0.02736068,-0.09637282,0.0014002672,-0.0014380423,0.034954283,-0.023676407,-0.0055358945,0.056614213,0.067639805,-0.020918896,0.013657483,0.035325464,-0.019566692,-0.033378877,-0.0408341,0.04855165,-0.009931235,-0.0052583,-0.03126768,0.031500377,-0.034281693,0.0037318873,-0.048773017,-0.02787855,-0.016201323,-0.0030247755,-0.032341987,-0.009376442,-0.045054235,0.010625968,-0.020538364,0.025051137,-0.030486256,0.021939227,-0.0070769507,-0.019578397,0.01560976,-0.0068565602,0.034022518,0.030098565,0.07135256,0.017631544,-0.056976583,-0.015286552,0.0039725383,0.010982464,-0.0015929688,0.00059503596,0.019178707,-0.013957963,0.01811563,0.0039673173,-0.02813486,-0.009915427,0.0057863863,0.025160333,0.011016541,-0.01503423,0.057687532,-0.03560705,0.024295123,0.02053806,0.017824547,-0.045432318,-0.023118291,0.028027587,0.024382927,0.044376828,-0.015966045,0.019543039,0.032061413,-0.015999045,-0.003795247,0.05797411,0.012005767,-0.009867649,-0.033466686,-0.03317559,0.028884424,0.037935603,0.037756905,0.0024491304,0.082058154,-0.06323149,-0.01669221,0.022435015,-0.0012582017,-0.029691866,-0.0286573,-0.016209764,0.041852314,0.029956127,-0.0059826905,0.005005479,0.045529846,0.013924428,0.03794594,-0.04162271,-0.006361331,0.012411413,-0.000004457113,-0.030462608,0.025753008,0.0321076,-0.037870824,-0.02911503,0.059976134,-0.017637234,-0.012278577,-0.019802999,-0.0032574227,0.010783321,0.03342536,0.04375405,-0.0046910117,-0.0028152394,0.036151823,0.020756697,-0.01330647,0.07897678,0.006544431,-0.03014747,0.06744207,-0.0059182676,0.038554236,0.02338075,0.056513652,-0.06782573,0.04882676,-0.03204872,0.002389723,0.0010141787,0.032781266,-0.036215186,0.015029876,0.055484593,-0.019349094,0.019123388,-0.0033884135,0.02325836,0.014640578,-0.015013344,0.039447814,-0.052564133,0.039539088,-0.039523583,-0.026891902,0.0025309678,-0.014052364,-0.014285718,0.0025020705,-0.018493861,0.011189907,-0.0070657516,0.07022714,-0.00070867373,0.0010076291,0.033014722,0.019204458,-0.021098256,-0.017148143,0.008784918,0.026878744,-0.015167469,0.027058974,0.020256089,-0.0041890168,-0.006761572,-0.05173222,-0.004231815,0.042337228,-0.045898724,-0.0030754074,-0.01909179,0.01626133,-0.061485965,-0.0010143664,-0.028308537,-0.053106125,-0.016973076,0.041660372,-0.021811629,0.030575313,-0.006221437,-0.013252213,0.030111548,0.03384579,-0.033899326,-0.0073318887,0.036406215,0.028597346,0.0059619537,0.012614508,0.048383754,-0.016917232,-0.06492533,0.028466862,-0.06393568,-0.0039980933,0.019358758,0.013401315,0.029577887,0.03353369,-0.012637726,-0.008338654,0.018374046,0.059449583,-0.02428352,0.0519198,-0.035821848,0.058629777,-0.038539696,0.029759523,0.033121847,0.012654718,0.025222145,0.051504046,0.0029427498,0.0063201305,-0.001201555,0.01692925,0.066173784,0.05288897,0.0058765262,0.020546943,-0.018591112,-0.023365099,-0.00084410474,0.026780512,-0.005834247,0.010442138,0.0257379,0.025565378,-0.058703277,-0.026504524,0.034927946,0.04296777,-0.039721105,-0.036793016,-0.006437248,0.033571497,0.012939996,0.02040147,0.03568097,-0.0001581985,-0.015016616,0.01834556,-0.01742559,-0.016587758,-0.027818173,-0.032575242,-0.07276922,-0.026659055,-0.0441501,-0.02018387,-0.0005455567,-0.02127754,0.0008488423,0.033548586,-0.017973438,-0.047215063,-0.031085582,0.01430197,0.016649988,0.040940948,-0.009766748,0.03479311,0.01810208,0.018457675,-0.029302469,-0.018653987,-0.020915817,-0.024780381,-0.010875874,-0.014245231,-0.027529584,0.0024780312,-0.08444364,-0.039524414,-0.030578272,-0.050353136,-0.029592087,-0.011763782,-0.011136825,0.037218522,-0.0039832247,-0.04227202,0.05963772,0.035718296,-0.063736714,0.02932226,0.025077868,0.0049302042,-0.052783344,0.048460614,0.018675169,0.042248625,-0.048306204,0.016316995,-0.0016488251,0.020382334,0.005562822,-0.035985567,0.0028141008,0.033667155,0.029603016,-0.102796756,0.013401096,0.02903013,-0.065883465,-0.03303562,-0.025897415,-0.0000829298,0.0137204435,0.008063888,-0.003436449,-0.018173987,-0.03498017,0.017155616,0.029119762,-0.05029177,0.013574726,0.044743404,-0.010784662,-0.001333401,0.021019598,-0.0005875784,-0.005234606,0.018365316,0.019634092,0.039106254,0.017234113,0.043487437,-0.015162698,0.019095886,-0.01258351,0.016936325,0.04599599,0.0010953612,-0.002220418,0.0560437,0.0009982255,-0.05068123,0.006708161,-0.044470362,0.041647185,0.017013885,0.039383173,-0.052996464,0.013154427,0.014699467,-0.0569288,0.030726457,0.007551019,-0.0006995338,0.045839526,0.00046494987,0.022883259,-0.023925828,0.024215378,-0.023988586,0.0046015005,0.03560465,0.049433604,0.032619577,-0.04000713,0.018960087,-0.010842106,-0.0062546884,-0.048245754,-0.04311288,0.007915423,-0.0031432281,0.031102546,-0.021480743,0.03152154,-0.01691607,0.0085016005,0.035688695,0.03832741,0.0034588256,-0.0042464416,0.040111322,0.00029163566,0.013608467,-0.016715486,0.0322117,-0.014350684,-0.013907879,-0.057699654,0.003976206,-0.03559937,0.028228087,-0.0012791957,-0.012431777,-0.035461575,-0.016652815,0.044540416,-0.0016720943,-0.039293095,0.017927887,-0.031660054,0.02512161,0.039724257,-0.031583767,0.015576269,-0.061059017,0.03749799,-0.010365018,0.005829436,-0.019481689,0.005930449,0.006864476,-0.044092957,0.015180124,-0.008029977,-0.033858582,0.034313776,-0.01868623,0.032482542,0.006043835,-0.024696402,-0.0049841953,-0.024378505,0.0060495026,0.033790722,0.011949747,-0.04492262,-0.0049996446,0.020176254,-0.040974595,-0.015647022,0.009477612,-0.0067687035,-0.007079983,-0.00770491,0.008592175,0.0010578965,-0.04196566,0.02348058,-0.005133458,0.043334957,0.0055961213,-0.017531643,0.059376698,0.0028115152,-0.04238989,0.025742866,-0.006848748,0.046070542,0.00490692,-0.0007160778,-0.0059451926,0.018072674,-0.027756138,-0.010888097,-0.00020254304,-0.025214385,-0.016265709,0.012111792,0.009473907,-0.008632321,-0.0034535863,-0.0081570605,-0.037743095,-0.012217228,-0.0077605257,0.0064381775,0.00047547425,0.015607117,0.005181741,0.021429991,-0.052003518,-0.014376935,-0.011571806,-0.048553314,-0.0071975053,-0.01122066,0.015916288,0.032060828,-0.0028120752,-0.0026119184,-0.011877406,-0.017029978,-0.011339701,-0.037903253,-0.025400171,0.010096071,-0.006446993,-0.008626526,0.04684159,-0.023192748,-0.047450446,0.025124323,0.012353922,-0.011623051,0.014407638,-0.008229345,0.046844702,0.022923218,-0.049718045,0.0050483723,0.04630261,-0.013112149,0.015046451,0.026657289,-0.014874267,-0.059644345,-0.012865977,-0.008276942,-0.06742071,-0.008322914,-0.03508998,-0.03816677,0.0065879244,-0.0041066906,-0.023996783,-0.043136906,0.013830327,-0.042001843,0.011276208,-0.0052783014,-0.02359029,-0.028797204,-0.026075874,0.021342753,0.07192637,-0.016132219,0.030443283,-0.02829903,-0.003654531,-0.011465169,0.021733608,-0.0052265287,-0.019369205,0.048640337,0.012944813,0.045383196,0.038605183,-0.010898366,0.023583584,-0.0469679,-0.036536064,-0.032774735,-0.039598346,-0.033362888,-0.042119958,0.03308814,-0.02696595,-0.013734903,-0.037319873,0.034540102,0.0043684635,0.008306258,-0.047483318,-0.051483247,-0.06982428,-0.04475384,0.
+8000
+05051958,-0.0039147832,0.010491914,-0.024886668,0.018780611,0.051744174,-0.0028538248,0.036390755,0.052458446,0.022448713,0.016734974,-0.050780274,0.039948653,0.015245936,-0.05659938,-0.020473726,-0.008675934,-0.039438568,0.020583827,-0.046628956,-0.056073878,-0.043440945,0.004116794,0.030931598,-0.03610481,-0.0037366396,-0.015999645,0.005500479,-0.044937566,0.030607348,0.025864962,-0.019935638,0.03684301,0.020380141,0.0011508607,0.015211194,0.021104693,-0.023748461,-0.0029208967,0.036194168,0.00013262716,-0.036210194,0.043867026,0.03545366,-0.017795367,-0.04948805,0.023673706,0.00066778256,-0.0118760485,-0.04011033,0.024221994,-0.0055034785,-0.019282045,-0.02347999,-0.012814639,-0.0076633543,0.03954832,0.0028210748,0.018022256,0.0031788636,0.013453385,0.032792017,-0.009239549,0.024200127,-0.025935002,0.0020109888,0.016192855,0.023262491,0.005764062,0.0111504365,-0.027846368,0.045209657,-0.0021786012,0.04686918,-0.0124079,-0.039085016,0.039489187,-0.024495978,-0.020129284,0.00799191,0.027878646,0.017281419,0.0036223093,-0.033110127,0.017203616,-0.017420318,-0.008331773,-0.0024803504,-0.02834553,0.012132306,-0.037336204,-0.06702669,-0.04123982,-0.022171615,0.027159657,0.03301826,-0.013411129,0.034281872,-0.024736421,0.067446135,-0.028960178,0.021192279,-0.008376546,0.07102032,-0.032065555,-0.031022562,-0.028238734,0.04897132,-0.04187541,-0.024100937,-0.038901906,0.0026215983,0.008297573,0.03862117,0.034143858,0.015242582,-0.019951979,-0.018538853,0.03297104,0.007917055,-0.0003818056,0.04190874,0.0063770353,0.00019635362,0.003048975,0.018464673,-0.009433592,-0.064114854,0.013354062,-0.023202984,-0.033087224,0.005844086,-0.038805075,-0.034858752,-0.018280579,-0.040845975,0.017922582,0.051356655,-0.017757721,-0.0041330024,-0.0019271249,0.062103882,0.024687922,-0.0010437827,0.012911929,0.01870092,0.010564263,0.012186275,-0.004608594,0.036233738,0.029446537,-0.017190661,-0.012445331,0.017352276,-0.022309262,0.02348354,-0.015277904,-0.047451816,-0.032826193,0.022315647,0.010065124,0.015075053,0.008365881,0.0032844183,0.011090383,-0.02019774,-0.030589953,-0.0045007365,-0.07268628,-0.032087088,0.017395558,-0.016117955,0.031487152,0.012548989,-0.07266461,-0.049185995,0.011071904,-0.017967982,-0.011706568,0.007448094,0.009778346,0.015524625,-0.032401204,0.0061253286,0.0031472915,-0.008811316,-0.03916914,-0.038309123,0.006440435,0.03268647,-0.034921184,0.002073194,-0.05438853,0.005298905,-0.033204265,0.0026387866,-0.0049306443,0.027731767,-0.016659975,0.013413294,-0.059278958,0.01111105,-0.00040846824,0.024253061,0.014538193,0.012429998,-0.01750439,0.059075873,0.016101986,-0.000041859457,-0.0029999325,0.0013289171,0.027467854,-0.00982876,-0.0064371065,-0.03623576,0.04115071,-0.012254385,0.038617864,-0.009656435,0.031490386,0.009582915,-0.0035509325,-0.003290712,0.0118294135,-0.002109939,0.015627118,0.006545708,-0.01651845,-0.007253044,-0.03432294,-0.0064478153,0.005195068,-0.030708084,-0.0018411669,-0.013762612,-0.0013604838,0.038435157,0.0003230763,-0.02894926,-0.005469464,-0.0016177268,-0.04423616,0.023751047,0.014013334,0.039434023,0.04331104,0.020376671,0.009059591,0.025476499,-0.034481607,-0.0035474268,0.005195967,-0.021288678,-0.03071339,-0.016711041,-0.037754424,-0.043614324,-0.065626904,0.065153144,-0.010497398,-0.02034743,0.026176885,-0.011528664,-0.017795641,-0.045529716,0.011880924,-0.027284196,0.029936813,0.05820859,-0.03200538,0.015935196,-0.0043833028,-0.013018966,0.030213576,-0.007417514,0.03861578,0.01616936,0.035492346,0.018345514,-0.013149921,0.02024327,0.009327292,-0.004602252,-0.024256783,0.018021416,-0.024642294,-0.0090805,-0.019253016,-0.019720549,-0.005014616,0.040209793,-0.016428683,-0.0644006,-0.03282395,0.036548495,-0.025422014,0.02840932,0.018919833,-0.027160289,-0.009471963,-0.031226287,-0.0029548162,-0.015973894,0.048195384,-0.06989196,0.02960459,-0.030010764,-0.051701874,-0.023944113,-0.03763907,-0.011667308,-0.0027669515,0.0046070484,-0.06491819,0.027302232,0.0097820535,0.025143018,0.012220225,-0.013097772,0.008818039,0.062032886,0.03819189,-0.03290431,0.08638389,0.015349201,-0.003132583,0.025231503,-0.055794965,0.06689212,0.0036481505,-0.0053509204,-0.02490425,0.006108582,-0.034041654,-0.046861738,0.0200258,0.02856857,0.040886786,-0.04321013,-0.077620886,0.031542107,-0.04112791,-0.036579873,-0.0065690666,0.04088003,0.01300622,0.00061401137,0.0055469316,-0.054716524,0.26974282,0.057318743,0.03393928,0.019813417,-0.044087823,0.019128693,0.009005674,-0.017827917,0.0076043224,-0.060272805,0.026799895,-0.02421193,-0.016628357,0.04344503,0.009663444,0.023649266,-0.03161171,0.004082848,-0.018656895,-0.029038485,-0.0040727193,0.046600375,0.0071493983,-0.013990381,-0.0042970665,0.0062131067,0.047670923,-0.030435747,-0.0009101136,-0.000034787714,0.011226829,-0.015760774,0.01941252,-0.03949661,-0.03180654,0.05016622,-0.004834698,-0.06327831,0.009814052,0.014238838,-0.055637073,0.022804955,0.015605634,0.01546208,0.025874248,0.054245323,0.015797563,0.016939616,-0.0045120954,-0.031944547,0.05801177,-0.0068342458,0.061629407,-0.06751669,-0.031785578,-0.03272908,0.003092912,-0.049070783,-0.0064595393,0.020262953,0.013000008,0.012017297,0.009197668,-0.04074084,0.0018285668,0.02114283,0.058230698,0.039613947,-0.05544784,-0.011462706,0.0042360616,-0.019183192,-0.018334432,0.02230341,0.00048620245,0.012371455,-0.013465819,0.022620808,0.004244955,-0.031368643,-0.01546976,-0.030930331,0.016910693,-0.009324634,-0.023016354,0.05979442,0.0039232792,0.02404091,-0.069598176,0.030759972,0.016860869,0.026398921,-0.038117882,-0.036846142,-0.0062781065],[0.051210538,-0.0031310876,0.031384565,-0.0047226376,-0.009072982,-0.019037392,0.009244822,-0.0027823057,0.004753301,0.0020950441,0.019561779,-0.019052856,-0.0029335837,-0.03523125,-0.017092582,-0.017348388,-0.029634966,0.0023171902,-0.02532897,-0.018317701,0.01725536,0.0017579908,-0.11611732,0.0050289426,-0.0067135054,0.036263093,-0.018658655,0.010509511,0.036489252,0.053764496,-0.027571574,-0.018651683,0.06816928,-0.013971755,-0.037776295,-0.034476843,0.024803625,-0.008699349,0.0013599099,-0.023929335,0.021416208,-0.02694031,0.0009621174,-0.023485666,-0.070869826,-0.00044029186,0.0070003597,-0.005864642,0.019654343,-0.02489944,0.0029673225,-0.008013945,0.019162448,-0.05454656,0.040738173,-0.0065874467,-0.03140479,-0.0017662721,-0.017565457,0.035597567,0.030670268,0.07017712,0.051684562,-0.015176113,-0.026978534,0.026372485,0.0043954034,0.015021533,0.008440964,-0.006307511,-0.020287298,0.012760266,0.004255712,-0.009946547,-0.025027568,-0.0037427186,0.031290296,0.03858047,-0.055271808,0.03635376,-0.019689754,0.03540678,0.007809166,0.06438761,-0.014575627,-0.045383498,0.008720531,0.04481512,0.023572799,-0.021124156,0.0019648029,0.011093157,-0.013561821,-0.00723587,0.05797569,-0.010829323,-0.021133998,-0.032867562,-0.024017481,0.003453533,0.040153697,0.03352342,-0.021358766,0.052220564,-0.039723452,-0.0045045502,-0.016389525,-0.009520297,-0.011425975,-0.019164728,-0.022047658,0.016839575,0.026897697,0.037362117,-0.0037042105,0.03702735,-0.017968291,0.029352518,-0.018648138,0.026216405,0.015126881,0.0072832615,-0.02846409,0.044352923,0.017805288,-0.02068935,-0.040486958,0.053817954,0.011599828,0.0066075525,0.0008958041,-0.024801716,0.007913892,0.018648092,0.010455734,0.012622184,0.0023750935,0.036059704,0.012295868,-0.022008054,0.04409637,0.011146566,-0.02060696,0.07398334,-0.025413238,0.019883925,0.023058372,0.03675327,-0.044106584,0.057220053,-0.065195136,0.017415876,0.01781708,0.048283264,-0.014116093,0.0054114843,0.027210567,-0.0017190136,0.0045785843,0.0024327133,0.027689502,0.027747558,-0.011279397,0.027898513,-0.0665449,0.017501272,-0.03810437,-0.034242444,-0.03203921,0.015743924,-0.0035403224,0.024414951,-0.008107887,0.02011469,-0.012493673,0.07616835,0.009203504,0.0018227259,0.01435249,0.016465144,-0.0148622645,-0.014301712,-0.0005654323,0.05100491,0.010126774,0.02187942,0.015899418,0.014406993,-0.033826895,-0.032731824,0.009578061,0.04433662,-0.05290423,-0.0034116025,0.004398634,0.004318303,-0.03024999,-0.02097805,-0.0065430435,-0.03494648,-0.028460374,0.022555556,-0.031575497,-0.02147951,-0.0119271865,0.009595392,0.042120304,0.028044634,-0.018869752,-0.007077554,0.06623837,0.040618043,-0.018492613,-0.020659832,0.025339795,-0.021816248,-0.06384101,0.06300753,-0.04502241,-0.043152686,0.025319686,0.015759349,0.021391632,0.012516516,-0.0186295,-0.010985335,-0.008803319,0.07443912,-0.025662225,0.054326013,0.0030158183,0.03984059,-0.0007889221,0.055647515,0.008645985,0.007241367,0.04116544,0.03633374,0.024657654,-0.0040022843,-0.013647609,0.024910957,0.04108853,0.055004694,0.009321219,0.048025556,-0.0026141559,0.00049039454,0.025943277,0.0053585023,-0.027249,-0.022357501,-0.009510824,0.024254872,-0.06826914,-0.07093321,0.01480385,0.062431823,-0.022049643,-0.015086933,-0.024354987,0.034873612,0.009118878,0.052061047,0.052620072,0.017476251,-0.011436798,0.03660431,-0.024654733,-0.009754767,-0.044988457,-0.013727703,-0.04715191,0.030110812,-0.05444689,0.012341912,-0.030309638,-0.03894634,0.00303241,0.01206705,0.003788856,-0.073062934,-0.009541381,0.035591386,0.01941734,0.038447477,-0.013719481,0.0056776768,0.035378724,0.021580053,-0.048396833,0.020965021,-0.022852378,-0.008252541,0.018627832,0.029655263,-0.057885744,0.018209215,-0.052478086,-0.040944617,-0.039416973,-0.025249768,-0.01569797,0.009577304,-0.0031233018,0.018561438,-0.025642108,-0.011972589,0.050356653,0.016009599,-0.06636467,0.041780986,0.022372713,0.0056328923,-0.060936697,0.03344591,-0.014456422,0.028754143,-0.021927219,-0.014729054,-0.00831647,-0.007634197,-0.02383791,-0.049979858,0.011638738,0.018602107,0.040958703,-0.10163123,0.0052856156,-0.017699314,-0.050047062,-0.05655188,-0.0490755,0.012028799,0.01752247,0.0035952546,-0.003927798,-0.027122602,-0.020032488,-0.007285593,0.020405281,-0.041575126,0.025752904,0.08238566,0.001970901,-0.0018172704,0.0035487614,0.0006416799,-0.01711196,0.007168927,0.02814966,0.031303357,-0.0067948704,0.01951639,-0.022519954,-0.007890239,-0.016246635,0.027612219,0.023662267,-0.0023472894,0.01741841,0.015061211,0.0014365825,-0.042105444,-0.024095152,-0.039097216,0.04016947,0.0055448827,0.05829174,-0.033191618,0.04203752,0.01622475,-0.039580096,0.033984046,-0.013119753,0.01406814,0.04737194,0.012873245,0.054416027,-0.03556353,0.030458564,-0.020073343,0.01901414,0.055135004,0.043523036,0.022813689,-0.04148428,-0.0017935733,0.0031544226,0.0036778173,-0.06721072,-0.021854166,-0.002379204,-0.0012162918,0.0107912375,-0.02931364,0.039190926,0.015740523,0.031104907,0.044785626,0.034800068,0.016911775,0.016097384,0.04204657,0.03098839,0.011091097,-0.0126163615,0.034454457,-0.003296206,0.018748434,-0.05492373,-0.0053819544,-0.026827766,0.03939806,0.015993293,-0.015871614,-0.042768914,-0.017810835,0.0369094,0.0012220728,-0.060368873,0.013223638,-0.019500542,0.005714627,0.0059966045,-0.009280284,0.014747188,-0.06481284,0.037294257,0.011028095,0.005916508,-0.029901622,0.0142019205,-0.034119904,-0.020767502,0.018010477,-0.007563608,-0.0055531696,0.043441392,-0.054766856,-0.00073834317,-0.000097838616,0.0012707809,-0.008782993,-0.0063864514,0.03973477,0.03038046,0.009996294,-0.02623586,-0.053969488,0.0098023815,-0.060257092,0.013933526,-0.033530682,0.01747577,-0.056702778,-0.024098998,0.013877588,0.008095597,-0.0426538,0.005328167,-0.025302442,0.05696622,-0.024396658,0.006232078,0.07005145,-0.023772562,-0.0064974925,0.044522602,-0.02082034,-0.012719934,0.013218562,0.006931299,0.01903401,-0.013593295,-0.031141985,-0.012668321,0.010311067,-0.014341299,-0.010294145,-0.013621906,0.036999226,-0.016224286,0.0043053785,-0.005356598,-0.028449696,-0.007320716,0.005831324,-0.014542523,-0.0035052805,0.02889779,0.0023325088,0.016425008,-0.050612528,-0.017407278,-0.033972178,-0.023086779,0.009889213,-0.012454782,0.036063883,0.040460546,-0.008876294,-0.027557088,0.010059715,-0.0037063428,0.008418354,-0.023436898,0.009565916,-0.004873351,0.013526249,0.023429072,0.01300679,-0.00061011006,-0.026275521,0.06369294,0.01026805,-0.026687294,-0.012805283,-0.03516712,0.04170455,0.026541967,-0.02614727,-0.026460707,0.04767565,-0.017230554,0.017647857,-0.020014081,-0.016361075,-0.05618032,-0.023155905,0.009601799,-0.031314984,-0.04363794,-0.03026375,-0.033377342,0.022119831,0.003940783,0.011939959,-0.032518122,-0.012390192,-0.07941797,0.032800354,-0.008083255,-0.01944333,-0.055729624,-0.01836165,0.008618289,0.067715704,0.023462182,0.014952133,-0.04576123,0.0036003094,0.0047209593,-0.012453355,-0.0446078,-0.009906243,0.02033162,-0.033083618,0.00673498,0.039250333,-0.019589733,0.017515812,-0.059935708,-0.023641706,-0.043007,-0.0142451795,-0.04173148,-0.021417672,0.026710382,0.0054728813,-0.038475726,-0.022944385,0.045302007,0.030500246,0.0040891,-0.050626885,-0.03892644,-0.03361728,-0.03119284,0.012614359,-0.030214844,0.0062849354,-0.026364835,0.014936598,0.050237313,0.0051226127,0.03296962,0.05753917,0.011026753,-0.008965848,-0.059192263,0.033509947,0.014664309,-0.027680377,-0.013771016,-0.017974488,-0.013680865,0.01650372,-0.02946012,-0.077063136,-0.035672054,0.027495971,0.07831346,-0.027366232,0.030347487,0.005011866,-0.013411601,-0.043448925,0.024092255,0.01546668,0.002463326,0.028911103,-0.0027782356,-0.0054996302,0.040518742,0.030559968,-0.003268103,-0.0026816821,0.027023872,0.020341182,-0.04061507,0.015083168,0.05753389,-0.03113708,-0.036993466,0.018382024,0.012978474,-0.0030717482,-0.025903108,0.030896692,-0.03890863,0.018951211,-0.04019045,-0.024164382,-0.0067720874,0.011950902,-0.0040673167,0.015715862,-0.009017565,0.02252227,0.050202727,-0.028112246,0.016572008,-0.018248161,0.01949818,0.022188488,0.01001688,-0.012540323,0.0125201745,-0.029636947,0.0012205367,-0.023333276,0.04450905,-0.03546581,-0.039040092,0.019652713,-0.0075762295,-0.02271586,0.014372748,0.038523722,-0.008401062,-0.005504217,-0.03770874,-0.0091399,0.00829781,-0.013361821,0.017126188,-0.03516551,-0.03433497,-0.04668226,-0.049480047,-0.031874306,-0.022579053,-0.012377793,0.0049633854,0.02277775,-0.012772847,-0.0051577818,0.04732377,-0.051731188,0.044642426,0.0058848104,0.050924122,-0.016717711,-0.060817685,-0.024895042,0.04068272,-0.05424608,0.0113736065,-0.031473067,0.0049152304,0.0066869017,0.0396359,-0.012433055,0.034836505,-0.039750814,0.027003963,0.025590427,0.014816225,0.0036330607,0.06936762,0.023736276,-0.009758142,-0.052210495,0.0050672893,-0.0077960156,-0.05706022,0.019372748,0.008661304,-0.022152929,0.0011468373,-0.020736128,-0.00588927,-0.04799976,0.0110285245,-0.02067499,0.025446355,-0.032408264,0.0011609431,0.010445459,0.048205562,0.011670661,0.0065871873,-0.013963395,0.01818997,0.03755221,-0.0018485931,0.026075976,0.015721506,0.031416994,-0.018619215,-0.018444996,0.014098852,0.010436382,-0.021958165,-0.039449934,-0.029211262,-0.057856016,0.013068919,0.03337084,0.02989024,0.016093781,-0.020174723,0.045803305,-0.02085784,-0.025659157,0.010852798,-0.08431364,-0.035925552,0.013503705,-0.027209533,0.0092967395,0.018893348,-0.05407483,-0.054572422,0.0012283762,0.0073017366,-0.0002107821,0.008996173,0.0036456792,0.0105046285,-0.02344204,0.0062410715,0.003953276,-0.008055788,-0.023271916,-0.036953107,0.006169014,0.014692073,-0.022675881,0.0012099838,-0.04758813,0.028615508,-0.019727366,-0.031748474,-0.032215286,0.004811643,0.000022176951,0.033153236,-0.03521907,0.024608904,-0.004723742,0.036348518,0.0011809908,0.01686822,-0.007901113,0.02738933,-0.0027522205,0.008679623,-0.00034090946,0.012815473,0.032197997,0.0067083417,-0.024900423,-0.0102363825,0.057430826,0.0091966465,0.027638575,-0.035384994,0.029238418,-0.0010275475,0.012505748,0.015371706,0.032791536,-0.025820429,-0.013803682,0.0010878531,-0.0061744144,-0.011091158,-0.017373787,-0.034697738,0.0032534187,-0.028654356,-0.01884716,-0.012432202,-0.004799228,0.05066671,0.005081374,-0.05682663,-0.009490134,0.00072714855,-0.03074533,0.00808631,0.010512624,0.038671535,0.040132806,0.030039769,-0.006238722,0.049452208,-0.00036841148,0.008563423,-0.010711834,-0.02761232,-0.058156136,-0.00027600164,-0.010420386,-0.027747048,-0.07185235,0.028827956,-0.026129993,-0.0075516244,0.009806187,-0.04057668,-0.005775526,-0.03492097,0.003252354,-0.022902329,-0.0071925246,0.029895397,-0.027235266,0.009621491,0.0031933628,0.02214436,0.028936656,0.012617643,0.023542637,-0.03728338,0.034039147,0.025002796,-0.018365227,-0.0045703105,0.01871276,-0.0045327647,-0.0060130516,0.0038254273,-0.049010843,-0.0019080109,-0.014237954,-0.03793548,0.009566713,0.031055493,0.0149898715,-0.06430658,-0.029230757,0.034256913,-0.0010428536,0.06338591,0.039985288,0.011456345,0.025092963,0.044524726,0.0025557443,-0.018613856,0.021203605,-0.028745264,0.03568173,-0.061461024,-0.025291674,-0.012218459,-0.030671982,-0.035131376,-0.01808373,0.00033656342,-0.046456914,0.027077178,0.04740748,0.030782342,-0.00017017289,-0.014230902,-0.0050275084,0.04586987,0.042289477,0.002303892,0.10985274,0.024045985,-0.030027462,0.048743866,-0.03576161,0.042190205,-0.02754901,-0.021948798,-0.021197112,0.006875451,-0.044688124,-0.0532353,0.003794088,0.035795048,0.036005344,-0.049474426,-0.035183787,0.0041179294,-0.049164783,-0.0003931381,-0.017465843,0.05118165,-0.024457846,-0.002205635,0.0076715024,-0.06565621,0.24893585,0.07330759,0.010239863,0.031740576,-0.011622907,0.02326753,0.021970157,0.008757701,-0.024372986,-0.05292596,0.026559431,-0.01973315,0.021620998,0.044678565,-0.00900726,0.04268537,-0.041930676,0.0036219347,-0.044295967,-0.045856804,-0.036724593,0.028645268,0.0042028124,0.018067174,-0.006446686,-0.009709105,0.046680536,0.0161207,-0.024426432,-0.013510907,0.017689954,-0.020277664,0.04681479,-0.03274742,-0.06416241,0.018126141,0.0014191687,-0.040079802,0.021722032,0.02363597,-0.046662707,0.0013091242,0.009885395,0.009108799,0.026318777,0.02332795,-0.05551229,0.01574074,-0.007990314,-0.030364048,0.056913495,-0.0041722027,0.05223048,-0.04739351,-0.02326257,-0.039734647,0.016675794,-0.0028928786,0.0023627044,0.04208262,-0.027441263,-0.004004616,0.03288429,0.009057592,-0.04090416,0.05568,0.03955311,0.03647053,-0.045334574,-0.01628759,-0.0013516626,-0.023214202,-0.04096734,0.0052975933,-0.016533718,-0.03234104,-0.008132498,0.02969975,0.024788924,-0.028151317,0.0059378995,-0.014596052,0.00040288438,0.0003493708,0.015221208,0.0559197,0.0028293566,0.022790208,-0.0352241,0.057257187,0.02228566,0.034493063,-0.018962635,-0.047014132,0.018694414],[0.046977185,-0.039295107,0.0026799452,0.043221943,0.0030826181,-0.021882944,0.005763917,-0.019737322,0.0078806905,0.012488882,0.053849466,-0.018062828,0.006176152,0.0035482084,-0.033506073,0.009033654,-0.011290265,-0.008461643,-0.04012225,0.028045,0.0116792945,0.02135909,-0.10323775,-0.004701316,-0.0065017133,0.04860428,-0.011109641,0.0147315115,0.054638173,0.04818982,-0.032880783,-0.021928145,0.05725247,-0.024830295,-0.070459016,-0.024353499,0.0542682,-0.010372888,-0.0065068617,-0.03450942,0.033390224,-0.045391746,0.017566055,-0.04904641,-0.055420566,0.009786811,-0.015854886,-0.044066112,0.022960208,-0.03318099,-0.0035335508,-0.010941234,0.0069363248,-0.028588798,0.036200006,-0.025083885,-0.007972185,0.019908441,-0.019692376,0.03373461,0.029245796,0.072411045,0.042068,-0.042818673,-0.024860745,0.023198752,0.00943932,-0.00035522928,0.020180007,-0.009945352,-0.028402513,0.0032948782,0.0066720964,-0.036003623,-0.01770534,-0.003824427,0.085791826,0.024712192,-0.023614518,0.03893521,-0.020319026,-0.008849971,0.00031776837,0.038010083,-0.023389114,-0.030644167,-0.0046014716,0.046610314,0.04307923,-0.019511446,0.0027117878,0.02560527,-0.019962473,-0.037956286,0.015930358,0.004284622,-0.0059851394,-0.033616614,-0.033107057,0.00012843375,-0.004056814,0.026440896,-0.016367046,0.039163087,-0.025880963,-0.008854675,0.005512262,0.021144362,-0.00092719204,-0.023906132,-0.02380874,0.03550327,-0.0017761997,-0.00049111835,-0.0025539207,0.04101515,0.009736113,0.034897827,-0.0059623364,0.03180074,0.01408313,0.012417168,-0.004640471,0.0064706975,-0.0030863918,-0.039224952,-0.052460108,0.039642558,-0.024827065,-0.00973601,-0.021823786,-0.006164819,-0.0014618427,0.026010064,0.0358874,-0.0041428832,0.02277551,0.04676851,0.021189176,-0.009605449,0.050943382,0.001734389,-0.04869667,0.0676679,-0.024113832,0.044107202,0.0015323124,0.037960332,-0.057413127,0.04281976,-0.04232023,-0.0057368306,0.017018259,0.04348341,0.0031421457,0.027449278,0.0034685542,0.0033940389,-0.013376903,-0.000029966708,0.007102872,0.00064802525,-0.011197635,0.021540526,-0.03238576,0.02177367,-0.050987214,-0.009512185,0.0047727516,-0.0049114525,0.029143885,-0.00809448,-0.02900677,0.031486306,0.0030199634,0.06438846,0.0053197797,0.023117539,0.03017999,0.026942013,-0.004447383,0.022350673,0.019929036,0.05904239,-0.013028301,0.0031203006,0.0027754721,-0.0088540325,-0.037657596,-0.051832523,0.015682338,0.050178315,-0.06020876,-0.005512107,-0.009491958,-0.0045838,-0.06484006,-0.009981052,-0.031236444,-0.053019684,-0.016886052,0.03639099,-0.019569779,0.028222214,-0.032105345,0.0050032153,-0.008873308,0.043459125,0.0118978545,-0.00015271065,0.03316451,0.0644993,-0.034337383,0.008672248,0.03476287,0.010781356,-0.03553731,0.035082377,-0.054014347,0.0011626615,0.012408446,0.03328917,0.011480251,0.004380515,-0.014723555,0.0114830425,0.014908101,0.030289978,-0.020922774,0.050807126,-0.018873699,0.02615168,-0.021849588,0.018531818,0.02980095,0.043890834,0.011865985,0.031036893,-0.00702074,-0.0045769447,0.0017684728,0.013987,0.046381127,0.03380345,-0.010206236,0.03922545,0.0026447095,0.023703553,-0.020070415,0.02037054,-0.01635791,0.00271982,0.010145985,0.014010084,-0.039572343,-0.008990603,0.06641683,0.05349805,-0.04403615,-0.03676337,-0.020407327,0.058588423,0.028272385,0.033780992,0.029244175,0.020683002,0.024948258,0.012362317,0.0049761445,-0.03144954,-0.029149875,-0.04864357,-0.07372694,0.006489156,-0.034036253,0.016381709,-0.0168705,-0.033435073,0.007918409,0.02217361,0.013073652,-0.06511899,-0.0052039768,0.020810176,0.013585558,0.04505252,-0.042484056,0.022849822,0.014493336,0.00917172,-0.026215693,0.0020964546,-0.033462577,-0.0498412,0.018738348,0.014740588,-0.067331634,0.01683839,-0.054514244,-0.04636666,-0.005713553,-0.018881043,-0.022081314,-0.00029921148,-0.024047453,0.010967411,0.0021534506,0.0037631372,0.058614686,0.01643156,-0.06851817,0.06470925,0.01036635,0.018454172,-0.048618603,0.033362806,-0.004901474,0.047279198,-0.026098793,0.0019116821,0.004215948,0.016687822,0.018846866,-0.04011297,0.0044885064,0.028910741,0.014818693,-0.111319296,0.014564591,-0.00034874436,-0.06317206,-0.040053174,-0.060480878,0.0045902515,-0.019718928,0.002206659,-0.014711513,-0.025322253,-0.01104655,0.0013329661,0.053038277,-0.018590007,0.0107464,0.04137773,0.0032585158,-0.0021666212,0.020901555,0.019318998,-0.028018085,0.029299986,0.026249928,0.018806953,0.011802737,0.0014660187,-0.018636279,-0.038649175,-0.0006940329,0.01740279,0.026373154,0.018550608,-0.01442962,0.03437421,-0.02282447,-0.03598698,0.0022384496,-0.04209594,0.014617887,0.025539488,0.028790515,-0.01813297,0.02636213,0.0029768653,-0.056065414,0.024538396,-0.02209975,0.00834392,0.05617546,-0.0051115314,0.05176764,-0.016397087,0.014245931,-0.023728777,0.0053052423,0.020137522,0.067135066,0.019595487,-0.0009074685,0.013954006,0.006579727,-0.023695562,-0.044952776,-0.01803546,-0.012401137,0.01035906,0.007620827,-0.04005706,0.035973832,0.0041983407,0.038460173,0.02668973,0.03776841,0.0009352685,0.016546432,0.04872356,-0.0007090875,0.01408706,-0.030488007,0.040331908,-0.0034487827,0.01883955,-0.03458882,-0.0070155384,-0.020618076,0.032207493,0.00051014486,0.011185995,-0.027343828,-0.026972406,0.035655018,-0.00019594675,-0.050077125,-0.014893907,-0.011085477,-0.0024694942,0.0075706537,-0.007970559,0.00170878,-0.06781559,0.044845827,0.0078813145,-0.0062950556,-0.03806326,0.036744937,-0.053369686,-0.049908955,0.019434186,-0.0054642158,-0.004953836,0.014605136,-0.020889757,0.047228154,-0.004133139,-0.017287184,-0.014305154,0.007576493,-0.011071189,0.06608642,0.0062860674,-0.029331367,-0.023974165,0.02271792,-0.03420628,0.0062049087,-0.019324685,-0.0066309995,-0.03044457,-0.01484388,0.01809279,0.022927478,-0.023013158,-0.02838539,-0.038043264,0.04346798,-0.016416155,0.0018289116,0.045568023,-0.0054162126,-0.044391416,0.040454365,0.020373,0.028595163,0.027164567,0.00592035,0.008261178,-0.0069538853,-0.04900956,0.012426972,-0.017339263,-0.04717421,-0.010004634,-0.023522357,0.026242696,-0.012814969,-0.029333055,0.007621081,-0.033507276,-0.007791808,0.016462905,0.017685642,-0.017728647,0.017229866,0.023343548,-0.0024102412,-0.039557815,0.004571365,-0.0021522397,-0.0442734,0.041301105,0.0063915653,0.035114095,0.019311642,0.019068396,-0.0400386,0.009449912,-0.0053939177,0.008681257,-0.02806217,0.000584559,0.0060723494,0.015281763,0.024864158,0.029405667,-0.039037827,-0.013977169,0.027364938,0.028968114,-0.023100523,0.027189536,-0.013210699,0.034044012,0.0003471538,-0.04052713,-0.012039055,0.058358833,-0.029782215,0.0006274649,-0.008125027,-0.03580214,-0.066326596,-0.03227559,-0.0434377,-0.056407873,-0.044172302,-0.0022458767,-0.03951133,-0.0051396727,0.022931295,0.0077872532,-0.03758681,0.0062685013,-0.06929729,0.0004754205,-0.015817137,-0.033516873,-0.04154775,-0.025316954,0.0066404003,0.06113669,-0.019010449,0.033833638,-0.01518663,-0.025811668,-0.0028239049,0.0487577,-0.032566074,-0.00020633725,0.011853684,-0.003281123,0.043171696,0.0007521843,-0.0067698364,0.033822794,-0.052255806,-0.033997923,-0.02628713,-0.042317938,-0.04736219,-0.021596493,0.042244773,-0.0050554997,-0.051702935,-0.055062577,0.082357615,0.018263359,0.010788053,-0.073604584,-0.058431387,-0.025797712,-0.019474057,0.004699366,-0.04337176,-0.013418181,-0.034184515,0.0010627591,0.03769861,-0.0034172696,-0.005875078,0.06056709,0.016251583,-0.0018314673,-0.04556151,0.04202339,0.015976885,-0.052560296,0.010638307,-0.021032397,-0.0004082885,0.032647908,-0.042154547,-0.060684193,-0.039136324,-0.0061623943,0.07470421,-0.03220859,0.022712888,0.008769515,0.0051927245,-0.033423286,0.014611406,0.024902117,-0.0108655775,0.04124,0.02056376,-0.011204056,0.056954075,0.00540408,-0.0067449315,0.0037066673,0.038169935,0.0017715591,-0.030243723,0.024440471,0.031295314,-0.045817196,-0.020475684,0.0055399244,-0.014702786,-0.0022090531,-0.03288619,0.01573303,-0.033482123,-0.012469443,-0.017228879,0.010467292,0.0049723904,0.034963068,-0.006687063,0.02075993,-0.019854391,0.028208595,0.03560785,-0.046250973,0.003179672,-0.012677121,0.013445397,0.016449966,-0.00320675,0.009759926,0.0034555288,-0.0073961937,0.026761113,-0.011607577,0.03749385,-0.04399561,-0.038423773,0.03618272,-0.030016076,0.0021207104,-0.005466104,0.026525222,-0.011221424,0.039297186,-0.027870847,-0.021077527,-0.001818249,-0.003604726,0.016750626,-0.04091679,-0.021696256,-0.055605333,-0.059391517,-0.024312107,-0.031183256,0.0012440883,0.016499767,0.008040522,0.047828123,-0.016459757,0.049889248,-0.009121848,0.059007082,-0.009260553,0.08924687,-0.017902741,-0.052450396,-0.036031976,0.020347131,-0.0649703,0.026603684,-0.051482268,0.0013737006,0.013200695,0.059287734,0.021552412,0.033174787,-0.043054968,0.020468125,0.051414534,0.031951535,0.0017875895,0.03760758,0.0135029,0.01528535,-0.013375892,-0.024170905,0.010803815,-0.07502169,0.001782676,0.011030476,-0.029397445,-0.012850572,-0.051308244,-0.0074752527,-0.033369012,0.0017612772,0.007044548,0.030764105,-0.044409797,-0.019385397,-0.00086385047,0.06268885,-0.009902768,0.016675204,0.02669153,0.019571474,-0.0047782236,0.01247128,0.017046804,0.025051836,0.035457052,0.0010504657,-0.02218009,0.02900169,-0.016239041,-0.0044603013,-0.025512142,-0.022216558,-0.023416588,0.02123764,0.02778286,0.019985644,0.007423797,-0.0069154953,0.045262985,-0.020561645,-0.016153263,0.0067393295,-0.06907218,-0.04357301,0.019374628,-0.011970381,0.013453309,0.008949111,-0.06342585,-0.042534854,0.015001451,-0.012820986,0.024326514,0.026889812,-0.0066588055,-0.00082252873,-0.036355402,-0.026223645,0.0140274195,0.002954083,-0.036303107,-0.041494492,0.013825953,0.024171093,-0.003415271,-0.028256655,-0.045850605,0.01166632,-0.044570334,0.011093251,-0.0120266965,0.030783057,-0.037926268,0.02275287,-0.056216527,0.051207885,-0.011672274,0.007450684,0.0050186724,0.014020242,0.010181556,0.0369838,0.03283535,-0.0049523413,0.036904484,0.023926495,0.036358267,-0.004135651,-0.024469793,-0.009729645,0.05598035,-0.003897128,0.018797563,-0.02335499,0.0360118,-0.010950422,-0.01718816,-0.0073335473,0.026228206,0.008855081,0.010608197,-0.007198788,0.0058922376,0.0048818956,-0.024495468,-0.03653082,-0.012075311,-0.04363656,-0.02004087,-0.011242176,0.0014456575,0.042629503,0.016471801,-0.03146617,-0.022708127,0.009075076,-0.0041301046,0.029571958,0.009649212,0.0070705996,0.027190914,0.024620917,0.018967038,0.00003462383,0.008163293,-0.008420284,-0.03211272,-0.02789119,0.014709239,0.0101511935,-0.02296064,-0.010194895,-0.07045014,0.067865424,-0.029853271,-0.007810327,0.01697142,-0.020249259,-0.031961232,-0.047163446,0.008477847,-0.029130505,0.014232553,0.021211151,-0.027781127,0.04294585,0.00096727326,-0.017064292,0.007711544,0.02337219,0.04653755,-0.013721031,0.035184827,0.03326924,-0.035616476,-0.012967793,0.011362533,-0.008929681,-0.020859262,-0.033929743,-0.016962482,-0.013051682,-0.021807587,-0.0002904914,-0.0011613421,0.019609775,-0.01947827,-0.053739447,-0.013789625,0.018656988,-0.00515484,0.0122922035,0.037603937,-0.0068097576,0.0015347588,0.008112966,-0.008562745,-0.017220737,0.02586674,-0.051895846,0.035525687,-0.0042461525,-0.042712223,-0.030357188,-0.05158248,-0.02354125,-0.0067594806,0.0040812586,-0.05466575,0.03049039,0.0006966388,-0.016399067,0.024446692,-0.029481603,0.0033962834,0.06884185,0.017716799,0.010932868,0.0800385,-0.0051208595,-0.00981009,0.029838204,-0.024138357,0.06375447,-0.037657317,-0.0275648,-0.018129824,0.05393494,-0.03496007,-0.05965545,0.028874345,0.029788775,0.04312671,-0.043531757,-0.070210755,0.021833206,-0.055961214,0.0037830083,0.0003484323,0.065044306,-0.0069305324,0.029177675,0.011132637,-0.09389831,0.24972439,0.07114399,0.007294989,-0.013642793,-0.010941013,0.003351964,0.0192598,0.0010480486,0.009629913,-0.047389407,0.041091252,-0.022505512,0.00065782334,0.025599448,0.008100403,0.052910674,-0.00993386,-0.017239219,-0.030245395,-0.016807219,-0.024423903,0.016513921,0.016800975,0.04596816,-0.009071443,0.03088974,0.035668425,0.020460857,-0.01682839,0.015301467,0.02967898,-0.04085187,0.02938056,-0.05717413,-0.0573725,0.008283606,-0.015110008,-0.05354707,-0.015772076,0.01201682,-0.038693458,0.020261526,-0.0059640463,-0.001924408,0.017846,0.032592077,-0.030422773,0.013316486,0.035710502,-0.03008981,0.07572206,-0.011054547,0.040112376,-0.055169627,-0.055272363,-0.023499072,0.01658047,-0.006927921,-0.012324792,0.043239087,-0.009103551,-0.016888976,0.0049801725,-0.009364935,-0.021015685,0.041636642,0.04806056,-0.0003889355,-0.019695463,-0.03758895,0.0041888407,0.010916728,-0.012454582,0.0025858276,-0.0014527515,0.034772106,-0.0019568421,0.023695512,-0.0031431194,-0.040498212,-0.02391336,-0.011292918,-0.0040028696,-0.006707154,0.010611887,0.05381091,0.008647221,0.023317985,-0.038671773,0.041124344,0.011653723,0.023135288,-0.023033896,-0.005866637,0.027354024],[0.030051451,-0.012113301,0.016769659,0.05785926,0.00042270645,-0.032675155,0.016437246,-0.0057128645,-0.0047278167,0.03371044,0.033880483,-0.024297437,-0.01068996,0.009705375,-0.023227112,-0.023957536,-0.04662283,-0.023455707,-0.029549781,0.0139679015,0.016469916,-0.018748038,-0.11669137,0.0037960764,0.021632586,0.04062543,0.01737726,0.018000958,0.05789122,0.041788507,-0.015257023,0.0077234134,0.015800167,-0.041859522,-0.05670529,-0.049982276,0.023869036,-0.009551918,-0.0021521165,-0.0075130034,-0.0014980697,-0.012895827,0.036660675,-0.029688366,-0.05812284,-0.01104176,0.0032286171,-0.0027601887,0.0054493607,-0.032078844,0.02523626,-0.017002579,0.040895972,-0.03362968,0.023319598,-0.0248491,-0.022707362,0.008214811,0.0019655698,0.0250482,0.03474717,0.06469404,0.023620369,-0.059506834,-0.0050242646,0.023042075,-0.01992835,-0.021536024,0.025170306,-0.022482224,-0.029024497,0.014222535,-0.020450609,-0.016922878,-0.014245616,-0.015247202,0.034701865,-0.004629584,-0.04720342,0.030142061,-0.030489793,-0.0031554096,-0.010909768,0.006302897,-0.024663037,-0.016635455,0.0051888786,0.032176483,0.019216808,-0.019687558,-0.00349016,0.041934446,-0.031872753,-0.041389417,0.045470953,0.004411916,0.01039455,-0.016342076,-0.023516597,0.015471627,0.041299935,0.004146313,-0.02097545,0.067639984,-0.051439032,0.008599303,0.004250075,0.0014788354,-0.00408292,-0.04798059,-0.030710964,0.008822108,0.0038117701,-0.014995933,0.009489798,0.028471433,0.034305885,0.057060547,-0.023236595,0.002651339,0.018287914,0.0014088069,-0.015839428,-0.009946844,-0.012702587,-0.06186495,-0.04958479,0.054771606,-0.03384209,-0.0045808614,-0.037609167,-0.004615217,0.0044740066,0.005399266,0.054728564,0.033606004,-0.016152818,0.03763671,0.03265332,-0.0071982676,0.06095896,-0.010573468,-0.04261153,
+8000
+0.079915196,-0.038015645,0.008945868,0.0067994404,0.02844768,-0.032122556,0.056559127,-0.037358727,0.028343355,0.027314182,0.023834521,-0.011070321,0.028254058,0.0031640204,0.01700407,0.021401435,0.03761986,0.0059315567,0.015770588,-0.026688239,-0.0071948697,-0.020061743,0.009351031,-0.060666006,-0.03755644,0.011846985,-0.008055569,-0.0061231162,-0.01101063,-0.02465755,0.0018001837,0.036234573,0.052772015,0.01394601,0.01873023,0.021043096,0.013282836,-0.011660913,0.019748637,0.016527498,0.036815967,-0.004871622,0.0029210194,0.0015625245,0.0041432483,-0.016775925,-0.041908905,0.0038814167,0.079006895,-0.051387038,-0.020953042,0.02499744,-0.0023286869,-0.04337493,-0.021360693,0.014609305,-0.034796547,-0.03072223,0.034954537,-0.022972807,0.002907223,-0.02183564,-0.006449965,-0.00042803897,0.06750283,-0.011662561,-0.01136898,0.03697598,0.02326234,-0.009831654,-0.012530701,0.04812499,0.005952282,-0.06304995,0.06498766,-0.06381301,-0.0041491822,0.044567075,0.024148999,0.021585386,0.02637862,0.011829527,-0.0028850688,0.0023244463,0.025215423,-0.00894412,0.02643856,-0.024317697,0.032758277,-0.011635286,0.014049635,0.018618288,0.040484272,0.05243719,0.015385014,0.011996076,-0.0025672708,-0.010394704,0.016037267,0.05478762,0.046182554,-0.0056238924,0.03140976,0.0076062838,-0.020223835,0.00663796,0.027964443,-0.020567823,0.020317435,0.019292403,0.017675105,-0.06240979,-0.008321246,0.049332973,0.05866202,-0.024628157,-0.02550612,-0.020370567,0.0354177,0.0054505523,0.04513301,0.03962565,0.0018618756,0.009376157,0.02016061,0.0004806135,-0.033351697,0.0023664641,-0.048128963,-0.037312943,-0.023514302,-0.044006683,0.0429103,-0.023073938,-0.023866367,0.01734122,0.015676118,-0.0025666915,-0.05207045,0.000050817453,0.019251047,-0.007851584,0.04991328,-0.014429919,0.021488577,0.0028803963,0.025750043,-0.032255065,0.012351991,-0.014029814,-0.033904556,-0.005681373,0.010127074,-0.0021813258,0.0030817897,-0.06448893,-0.05662137,-0.0112089375,-0.03180516,0.019809369,-0.03439279,0.001562132,0.004437664,-0.016962573,-0.007886013,0.053143177,0.04411175,-0.06519365,0.033998244,0.019413827,0.011933676,-0.04106913,0.026920041,0.017273422,0.014046824,-0.052715566,-0.014626617,-0.04626828,0.007618021,0.012871223,-0.040558357,0.045648795,0.012495936,0.044401776,-0.1020339,0.048107915,-0.019327553,-0.0760341,-0.04470567,0.006873067,0.03374409,-0.0035685704,0.0039457264,0.0069794613,-0.015051003,-0.0042085634,-0.0009906688,0.068031736,-0.0481048,0.034339067,0.030382313,-0.02909075,-0.010900518,0.021170199,0.006101871,-0.033277035,0.0077505475,0.023243355,0.039639276,0.005072571,0.013241324,0.007122181,-0.0011838013,-0.030280015,0.04053075,0.026649646,0.022569822,0.010855515,0.04651346,-0.025753606,-0.022982894,-0.012016201,-0.040910687,0.039805382,0.005225548,0.021679187,-0.06725981,0.055050716,0.0059544244,-0.037568808,0.0006561215,-0.00874058,0.012183257,0.042975638,-0.010805417,0.029037321,-0.03081599,0.012946458,-0.03421301,-0.016687876,0.03354622,0.033284236,0.00494791,0.008725235,0.0161964,-0.013041907,-0.03651557,-0.06764117,0.0011563421,0.011848673,-0.0068601067,0.0047591077,-0.03545074,0.028332273,-0.0033343905,0.02417361,0.029614918,0.043383814,0.0044831377,0.015148019,0.025199698,0.029711248,0.014662759,-0.036258128,0.032014787,-0.021601405,0.008353345,-0.021564718,-0.0062220152,-0.01856197,0.030688586,0.01248195,-0.0054759677,-0.033794142,-0.03412726,0.03939372,0.025185386,-0.055394027,0.011969749,-0.008961836,0.023518892,-0.00939269,-0.01063771,-0.00084750925,-0.040305346,0.048419274,0.016944649,0.0018873335,-0.03753387,0.020455223,-0.03309759,-0.028810682,0.042687695,0.010606487,-0.0260746,0.018384831,-0.022778044,0.033898935,0.008968481,-0.0104164835,-0.009133961,-0.0076780766,0.021889413,0.037441872,0.007760654,-0.039799463,-0.035131633,0.021379167,-0.048571214,-0.045078896,-0.025490267,0.0055772625,-0.005609678,0.0048816707,0.041753504,0.036276966,-0.031471528,-0.0008625335,-0.0115825925,0.041168652,-0.01126786,0.0045053437,0.041502796,-0.009955682,-0.05787821,0.042086594,-0.010806335,0.020566395,-0.029287787,0.001845004,-0.015998274,-0.01761844,-0.046470087,0.0040942533,0.007647094,-0.014280516,-0.033306018,-0.002275234,0.0028899661,-0.0070980624,0.006005767,-0.005614915,-0.04077276,-0.00074523943,0.024394333,-0.015333618,-0.015781548,0.027032213,0.014065654,0.020520208,-0.054891355,0.0012306205,-0.02677023,-0.061088838,0.008973821,0.009256234,0.028027887,0.014870952,0.013637339,-0.021290103,0.019907659,0.0047035357,0.017449014,-0.03615228,-0.03608617,0.0045690457,-0.00754694,0.0042351284,0.011319848,-0.004671219,-0.035357073,0.044683266,0.017485479,-0.05344092,0.0473643,-0.023098746,0.027019333,0.039094973,-0.041038994,-0.03361563,0.050812982,-0.009989733,0.007320855,-0.015073892,-0.013851631,-0.06702211,-0.018599764,0.008251657,-0.056485966,-0.027338574,-0.02037282,-0.009704041,-0.027076913,-0.003332222,-0.00054935407,-0.021428106,0.024999613,-0.054221906,0.016364807,-0.012729534,-0.022476522,-0.013170284,-0.04110323,-0.012838889,0.06375059,0.006721029,0.042277645,-0.044005293,-0.0038844845,0.01435551,0.033799805,-0.026319472,0.015979303,0.040359154,-0.0043352284,0.019183546,0.03423805,-0.020051511,0.041763384,-0.0359557,-0.055198595,-0.039484095,-0.026635673,-0.045478467,-0.01708343,0.035898987,-0.005026209,-0.029429132,-0.040100183,0.044200756,0.040271174,0.008046144,-0.038216487,-0.04215774,-0.03520544,-0.055344965,0.011999136,-0.026751887,0.009275709,-0.03322566,0.014705583,0.010706951,0.021025646,0.017747786,0.058461268,0.016123196,-0.007160189,-0.031033954,0.021233767,0.030640135,-0.06556475,-0.013861966,-0.023821682,-0.017008265,0.03474003,-0.017193535,-0.04178793,-0.07422371,-0.0040329727,0.034094278,-0.029346649,0.007878096,0.009604874,-0.015866654,-0.058217287,0.027867174,0.009810106,-0.032703128,0.015737057,0.0027706593,0.018981699,0.039514374,0.028666338,-0.008413263,0.0054770824,0.06761572,0.02083041,-0.035592757,0.032726135,0.041980915,-0.027214319,-0.043518517,0.023913555,0.0046048863,-0.023674488,-0.035605572,0.021557376,-0.024596076,-0.011437395,0.0069410885,-0.023983,-0.01598198,0.031316716,-0.0006219937,0.029146938,0.0022567795,0.015698552,0.03315248,-0.04541888,0.010084142,-0.015492788,0.000048083402,-0.002282266,0.021015227,0.016139813,0.0065554655,-0.027151674,0.021209924,0.017494386,0.030893529,-0.04026792,-0.020016056,0.03876428,0.005289378,-0.036872573,-0.003845859,0.022585481,0.016653355,0.024358448,-0.042700734,-0.011807257,0.0039969967,-0.011124958,0.018490523,-0.030743787,-0.011592771,-0.06153463,-0.052982543,-0.050731942,-0.033160016,0.00705762,0.0042117974,0.017555585,0.030851375,0.0033011772,0.025154011,-0.020327678,0.06542574,-0.0097959535,0.052593645,-0.03135671,-0.02632339,0.016373424,0.040848717,-0.07015903,0.010517198,-0.040453073,0.02393257,-0.007065298,0.030323725,0.0021935573,0.0059680776,-0.04251857,0.0035524045,0.037721075,0.014136587,-0.007906372,0.037676796,0.03310665,-0.01788715,-0.015536192,-0.017457487,0.0039990316,-0.029962353,0.004015297,-0.017320225,-0.0017702951,-0.0161283,-0.033171576,-0.01689473,-0.03839798,-0.004543821,-0.022452287,0.022375882,-0.045829337,-0.037648205,0.014939886,0.045643266,0.02015195,-0.006389732,0.00012231889,0.032676093,0.003310468,0.005249961,0.019786127,0.009750148,0.047678385,-0.00035001003,-0.03411447,0.023517843,0.003954781,-0.003983257,-0.013944076,-0.031889956,-0.030777518,0.02132716,0.03368721,0.033287447,0.0044221305,-0.029695613,0.030366085,-0.035900675,-0.022920558,0.0011162132,-0.085094675,-0.0052867197,0.02015993,-0.017083189,0.016059134,0.0079567125,-0.028101964,-0.04294696,-0.00013692325,0.0015817757,0.025981281,0.03184155,-0.008982983,0.016264107,-0.044911023,0.048924595,-0.0052216756,-0.0044461857,-0.02615686,-0.042191487,0.032301877,-0.0003399247,0.025709288,-0.0020074456,-0.056538943,0.021889094,-0.008411462,-0.02345258,0.012727599,0.049016897,-0.0070224465,0.0038278643,-0.035317454,0.019743465,0.002697766,0.019153733,0.007881167,0.012267698,-0.011375721,0.04833067,0.034535762,-0.0062065627,0.03927606,0.0052264193,-0.0034923735,0.021376355,-0.028633941,-0.025647724,0.04035627,0.0059916917,0.02977149,-0.028796026,0.042932,-0.014872824,0.007297966,0.006608573,0.06392277,0.010924463,-0.023329668,-0.0012723391,0.016565323,0.010361468,-0.0031614332,-0.064560436,0.00026728018,-0.05569335,-0.019659908,-0.036924917,-0.024491202,0.041810863,0.00030979124,-0.012528896,-0.016283521,0.018579677,-0.028085828,0.01804327,0.021574814,0.0034676155,0.0464947,0.011558451,0.013714539,0.0075014755,-0.009757228,-0.0022691712,0.008265049,-0.039256327,-0.022795955,-0.0045076525,-0.0026998343,-0.016065065,-0.05422946,0.06772933,-0.024296107,-0.031205181,0.0037722066,-0.0431393,0.0033091244,-0.037155032,0.01955922,-0.032807004,0.0034461871,0.026393896,-0.008838642,0.016282015,0.0203843,0.022154897,0.016527297,-0.016267782,0.035624545,-0.019998102,0.055094104,0.03117826,-0.008411395,-0.0027621414,0.01300251,0.011110995,-0.035315912,-0.0062830583,-0.02181437,-0.0391355,-0.0112667205,-0.013880844,-0.0076791276,0.047757063,-0.0027397287,-0.078498356,-0.0023513502,0.061495304,0.002908052,0.014635426,0.0057517774,-0.026689995,0.0064954213,0.023519857,-0.0034900268,-0.049431175,0.020212008,-0.042519037,0.027127562,-0.05376112,-0.025115956,-0.013388569,-0.03891136,-0.023044074,-0.0027455133,-0.0021546914,-0.05552871,0.024125852,0.028419068,0.016473351,0.00694548,-0.018149035,-0.017067673,0.050084643,0.048570216,-0.023982365,0.11829517,0.0134833595,0.009206901,0.014959348,-0.027097564,0.053086683,-0.035243377,-0.010781747,-0.04097711,0.013999553,-0.04300431,-0.037754886,0.037447028,0.046448514,0.021982653,-0.05386556,-0.061138324,-0.012717548,-0.035423532,-0.024835076,-0.02156719,0.059688438,-0.0043448904,-0.009265132,0.00033164636,-0.08601774,0.28248537,0.047650106,0.015636923,0.02364559,-0.01597782,0.026277423,0.0063219103,-0.02342475,-0.043295555,-0.05115449,0.04637888,-0.017154843,-0.011019445,0.038406532,0.01261844,0.042994246,-0.007229509,0.0040484276,-0.011792739,-0.021171698,-0.040297206,0.024539588,0.013133479,0.049232665,-0.017268486,0.020658018,0.05316386,-0.010240093,0.013583892,0.0055882833,0.010734549,-0.03752805,-0.017938584,-0.035520744,-0.060704354,0.03264288,0.030414062,-0.046554722,0.019923631,-0.0047428384,-0.048700817,0.007859454,0.020766616,0.027665487,0.019678712,0.0074787647,-0.037733596,0.007197388,0.0039558453,-0.0022975365,0.060876973,-0.021377895,0.052761298,-0.035105526,-0.048361562,-0.046733,0.048590582,-0.016400667,0.0071405172,0.02536381,0.004949578,-0.014946059,-0.010937124,-0.00641724,-0.051311884,0.029761106,0.030137144,0.03777952,-0.0023370788,-0.04152974,-0.02240872,-0.036567602,-0.04717432,0.0018037185,-0.0059029288,-0.0038619367,-0.018237641,0.034317072,0.013445097,-0.021047011,-0.005588511,-0.013764998,0.017133774,-0.013411304,-0.007010511,0.03825218,-0.00072194857,0.020626348,-0.02864141,0.057776656,0.03523773,0.016277755,-0.012322859,-0.032527637,0.029100059],[0.025740374,-0.027991347,0.009272368,0.018489596,0.0056682,-0.022537377,0.0025376221,0.0194241,0.027998243,0.036145452,0.03166777,-0.018116374,-0.019783104,-0.013865914,-0.025372555,-0.012588527,-0.03374254,0.008612629,-0.04041509,-0.00087645015,0.022946758,-0.021441102,-0.10543567,-0.020469246,0.027072985,0.05312793,-0.00068154617,0.017322237,0.06055383,0.03958177,-0.011067408,0.030123614,0.03752843,-0.022537224,-0.06715013,-0.04383876,0.035285197,-0.023647638,-0.007375664,-0.017301498,0.007015152,-0.03647012,0.037915356,-0.032307103,-0.056488425,-0.01667817,-0.013266345,-0.02970397,0.02621748,-0.03176873,0.022789057,-0.007139695,0.01502435,-0.046976373,0.02035539,-0.0058058384,-0.042111635,-0.005785052,-0.01353833,0.049851995,0.07197762,0.03971792,0.011010672,-0.04486542,-0.028554441,0.02837432,-0.028512208,-0.021409795,0.014669626,-0.01503864,-0.011983035,-0.046429276,0.005555204,-0.017576825,-0.02596973,-0.0066742054,0.033305634,0.022956863,-0.057941806,0.03785568,-0.007510802,-0.008124732,0.023361124,0.019048216,-0.04020034,-0.021010328,0.0136123,0.027974062,0.014663803,-0.027480893,0.0050609806,0.026842328,-0.026319414,-0.0096135745,0.035941917,-0.014451189,-0.019914065,-0.0140418215,-0.029106397,0.00920236,0.014339771,0.012140235,-0.024230614,0.03591126,-0.017777411,-0.0024923214,0.025443116,0.018342458,-0.002732134,-0.023469383,-0.00585083,0.0054202494,0.03542438,-0.0037166742,0.014520108,0.016627418,0.00853782,0.06397016,-0.03874019,0.011398005,0.047052704,-0.002153885,-0.04502032,0.004670817,0.033653747,-0.027421353,-0.038169824,0.05809601,-0.020332493,-0.029536352,-0.024971506,-0.0027172824,0.015996113,-0.010725999,0.038212355,-0.009152109,0.0051969355,0.032617006,-0.023718193,-0.038264524,0.032010417,0.0023545844,-0.02942994,0.08255035,-0.014599027,0.0036679788,0.006837297,0.024915898,-0.05498526,0.03273559,-0.026769944,-0.008829445,0.017102778,0.047540788,-0.0027734363,0.021839349,0.02549892,0.012052144,0.012931281,0.005763342,0.00019890789,0.004353496,-0.016218236,0.004197977,-0.052711118,0.021207914,-0.048403844,-0.012558541,0.008874541,-0.015573399,0.002906311,-0.008379973,-0.028821569,0.00498255,-0.02147958,0.06251174,0.0033083027,0.000683014,0.032742303,0.02546014,-0.0024077732,-0.0057577635,0.00019371997,0.05328563,-0.008834086,-0.00058541266,0.009346564,0.017379256,-0.0024842948,-0.031961523,-0.0043989634,0.03290542,-0.04284642,-0.016842509,0.015374557,-0.0076598986,-0.041752122,-0.015454302,0.002180236,-0.03414039,-0.030408703,0.049196824,-0.016672835,0.028466035,-0.0064275516,-0.010822351,0.024537658,0.0385916,-0.035954528,0.034361873,0.03627044,0.04164061,-0.016887106,0.0134053165,0.036635686,-0.010814915,-0.045856036,0.04754309,-0.04348697,-0.0018173802,0.040492088,0.01647128,0.025118472,0.020515284,0.0056029586,0.015858412,0.015631005,0.037707806,-0.016650755,0.028357524,-0.014876439,0.035239294,-0.03696852,0.046556097,0.0065426417,0.026647829,0.06488839,0.015570893,0.017515495,0.009888751,0.0057382225,0.02478973,0.047034163,0.030627044,-0.0005251491,0.061652742,-0.008036169,-0.083537936,-0.006721469,0.023147322,-0.0051437784,-0.0049689705,0.019456366,0.039184008,-0.068219736,-0.035528,0.05224966,0.02970126,-0.03704855,-0.01120696,-0.00867509,0.06577945,-0.018060114,0.029775087,0.029769875,0.011965928,-0.004156096,0.023224855,-0.002975684,0.013891635,-0.038940273,-0.04836422,-0.06130141,-0.013858089,-0.030385703,0.033836897,-0.012322651,-0.03538947,0.027547149,-0.000107199994,-0.011327991,-0.05608834,0.020212475,0.027910614,0.014353465,0.043310676,-0.023317242,0.013645779,0.0076975045,0.041632824,-0.005620417,-0.012844506,-0.015324813,-0.018030247,0.0145001635,-0.0007941087,0.007146769,0.009163586,-0.03242846,-0.052091848,-0.024014283,-0.029314328,0.0048663225,-0.0005659737,-0.022253787,0.016001062,-0.00882017,-0.005466009,0.064000025,0.02514921,-0.07978319,0.022823522,-0.010772387,0.0008673539,-0.052822612,0.020753818,-0.0041192654,0.03811126,-0.04844408,0.0048784534,0.020556727,0.020582605,-0.007027889,-0.03398481,0.014438787,0.042156935,0.06402495,-0.09591251,0.036062095,0.007249467,-0.0665697,-0.042809125,0.0012852979,0.02483105,0.014615647,-0.0073205973,-0.01526957,-0.027523044,0.012878372,0.006057608,0.042555638,-0.035163857,0.011682034,0.057867173,-0.024934197,-0.007907839,0.023614593,-0.014701807,-0.008742255,0.019442735,0.02123663,0.052444477,-0.022094306,0.005180956,-0.002761733,-0.0016833906,-0.0112732425,0.020265331,0.031089308,-0.0037919956,0.008193511,0.037165716,0.00065007055,-0.026242223,-0.0289494,-0.050361406,0.03905102,-0.0063025476,0.03369824,-0.06220165,0.030905472,-0.0031051897,-0.03420951,0.014030178,-0.014318711,-0.008421249,0.05917864,-0.007541234,0.035388008,-0.014343299,0.01621357,0.0018540751,0.019681197,0.044075042,0.031034708,0.0051042372,-0.05240228,0.005998667,0.0008985683,0.0075897616,-0.044133943,-0.036613468,-0.0049723512,-0.0065349876,-0.0032298905,-0.011335253,0.044578496,0.010868191,0.035834484,0.0338746,0.03517723,-0.007254897,0.034372035,0.048268426,-0.0053815814,-0.014298521,-0.03525426,0.035798185,-0.003998489,0.005014788,-0.02644426,0.013142311,0.015876064,0.016124135,0.007877208,0.004484857,-0.03236296,0.017211178,0.05253562,0.030706057,-0.061037056,-0.0133542875,-0.0047351355,0.02033174,0.0034551844,-0.030878434,-0.023024721,-0.05152433,0.044721454,0.022505619,0.0184257,-0.039305758,0.015036378,-0.0331907,-0.01025953,0.009513984,0.0068041217,-0.030342804,0.0109708775,-0.019423122,0.047410473,0.011318645,-0.009017348,-0.013759104,-0.00440959,0.017306246,0.020346839,0.013217531,-0.043642793,-0.011103689,0.00972184,-0.048166662,-0.010959716,-0.032907713,0.004625825,-0.010877988,-0.008905649,0.022435544,0.010047986,-0.024548681,-0.014726967,-0.017268121,0.015501238,-0.0022981758,0.013729637,0.046852626,-0.024223045,-0.05507645,0.008078032,0.022264661,0.03337037,-0.02689658,0.011190155,0.0029786674,-0.007567249,-0.038659863,-0.0055167065,0.001371401,-0.04030296,-0.035733104,-0.019734861,0.00982817,-0.014704044,-0.0123339,-0.025885163,-0.030682366,-0.005449654,0.031433843,-0.00837084,0.007640195,-0.008715549,0.015655242,-0.006470312,-0.045931946,0.023281518,-0.03449845,-0.01647769,0.012661532,0.022385709,0.032648295,0.015283492,0.0046886867,0.008012774,0.024636561,-0.007858046,0.014527467,-0.041449632,-0.022993812,0.024761258,0.02120213,0.042673156,0.002085367,-0.033096995,-0.03179649,0.04857351,0.0030747517,-0.043277316,0.040222708,-0.018024186,0.025739787,0.005511066,-0.05005995,-0.012039114,0.096930206,0.015760476,0.041308016,-0.0016392198,-0.022856653,-0.06580897,-0.039201416,0.0020845875,-0.04713996,-0.039291505,-0.0048775827,-0.027822055,-0.017483665,-0.019449605,0.007983461,-0.024498558,0.04448315,-0.08200417,0.0036110124,-0.007652126,-0.040930327,-0.010929772,-0.026475044,-0.019825654,0.07005671,0.010337298,0.025350342,-0.021535607,-0.030527739,0.015776664,0.01516986,-0.049611334,0.018442318,0.012047747,-0.008908297,0.045630608,0.0073175,0.020034352,0.05104709,-0.040551707,-0.034590922,-0.038492043,-0.010863647,-0.027880298,-0.009523312,0.045290567,-0.019449325,-0.011531293,-0.018099397,0.06923786,0.052212324,0.012186043,-0.048618864,-0.04054868,-0.030169124,-0.051180735,0.0033623546,-0.014483566,0.024610043,-0.008159732,0.017535366,0.018088633,-0.0039985008,0.035165768,0.05518819,0.0082681095,-0.03374014,-0.05740397,0.03033845,0.020604469,-0.0569959,-0.021886854,-0.040086463,0.0014965986,0.057566904,-0.027052738,-0.06899403,-0.04511763,-0.0057629463,0.07058503,-0.008149003,0.040484387,-0.0012721991,0.0045073046,-0.06970575,0.009391465,0.0152509315,-0.025482072,0.042425655,-0.009024815,-0.011814101,0.050422877,0.031004239,-0.030908948,-0.004700374,0.040676195,0.010816744,-0.042838894,0.038631793,0.05108327,-0.023308516,-0.049216203,0.032961473,0.0029547354,-0.02762819,-0.033544347,0.0018127345,-0.01603134,0.0050615314,-0.04367802,-0.016691431,0.010032109,0.02820849,0.0035151967,0.043634705,0.005708799,0.01540394,0.027500479,-0.03963479,0.013238861,-0.0555318,0.009948161,0.003991493,-0.0053527197,-0.001978523,0.014922409,-0.015770463,0.047674228,-0.014341123,0.031771146,-0.04424267,-0.013898136,0.0364111,-0.019962164,-0.025376579,0.025783269,0.026542079,-0.021732861,0.022818485,-0.038642418,-0.01640136,-0.010803371,-0.013935794,0.01989214,-0.016037297,-0.030346256,-0.066751584,-0.033771288,-0.04548099,-0.034885097,-0.012015605,-0.009098402,-0.012208444,0.0322185,0.012020655,0.036065802,-0.0631246,0.059360333,0.0062031844,0.077793814,-0.003394366,-0.06367797,-0.03290577,0.020782365,-0.049274907,-0.0070287525,-0.06466794,0.033383414,0.007910279,0.024105169,0.024070844,0.018589575,-0.039365806,-0.0112912515,0.048570056,0.0089100115,0.000894092,0.07117173,0.02951269,-0.01061393,-0.025564454,0.0013980191,-0.012300081,-0.011246939,0.024059955,0.0015317028,-0.019216089,-0.003469834,-0.052876007,-0.05120212,-0.030118162,0.008164586,0.01324131,0.019162338,-0.022244563,-0.033410195,-0.014295482,0.048923567,0.024680682,0.008460362,-0.02951016,0.020667816,0.01192636,-0.00020791679,0.040279787,-0.011359311,0.04137416,-0.0028595545,-0.03716048,0.015294714,-0.00150675,0.0152551085,-0.028728688,-0.06709389,-0.023476657,0.0033160986,-0.03143587,0.024621675,-0.0058805775,-0.04812063,0.033175465,-0.06041395,-0.043682594,0.023419052,-0.051684298,0.0057386393,0.023639113,-0.011531139,0.019878522,0.020664893,-0.051610645,-0.048210993,0.012493707,0.0074250433,-0.010735603,0.03222765,-0.01254691,-0.00012576523,-0.031904787,0.0045812023,-0.0027118104,0.0004491804,-0.027588608,-0.02901361,0.03441019,0.008588531,0.005044091,0.005578126,-0.036261883,0.026826749,-0.0141289495,-0.026079178,0.04014521,0.041404847,-0.007053045,0.0057757664,-0.03811573,0.037414968,-0.0040814825,0.024848543,0.0062737316,0.010008936,-0.023631364,0.035558075,0.040968027,0.015597683,0.0118231885,-0.0046340413,0.00711748,-0.00025266095,-0.013330017,-0.011091436,0.045372445,0.0060101114,0.015140147,0.0083774,0.057168085,-0.013427239,0.019750172,-0.0029231317,0.016609289,0.0070979837,-0.0076083913,0.0062848004,-0.0035138163,-0.002038186,-0.019226551,-0.06742971,-0.013642286,-0.03938831,-0.01765527,-0.01994452,0.000102798054,0.015683388,-0.018515034,-0.017138552,0.0010009954,0.01859679,-0.012936529,0.011137313,0.0025659828,0.043013714,0.034053795,0.008260089,-0.020728482,0.027357709,0.010899475,-0.02354055,-0.018559607,-0.030469159,0.0042153667,-0.025792165,-0.024198124,-0.01489743,-0.044350337,0.07337289,-0.030866504,-0.035272837,0.033103794,-0.033322316,-0.0010464742,-0.06586049,0.005327187,-0.046587102,-0.0035170799,0.015456747,-0.00241174,0.0033570356,-0.0061736596,0.015573729,0.021759693,0.00858147,0.021938976,-0.031913675,0.036351737,0.022289746,-0.0063879257,-0.004559677,0.019635072,0.022167059,-0.05248299,-0.02002064,-0.028101917,-0.0036145535,0.001630066,-0.017467255,0.04074814,0.026780637,-0.012641299,-0.06378471,-0.0017126168,0.01903473,0.008740863,0.013022787,0.031328257,-0.011324402,0.030337851,0.0065042544,0.0120327845,-0.041338682,0.035122942,-0.054683536,0.046356503,-0.030132852,-0.042299826,-0.008228902,-0.0441017,-0.009454708,-0.013502896,0.0045200344,-0.053373218,0.002625862,0.026574152,0.0054514227,0.010022314,-0.037565455,-0.0021052838,0.058710434,0.057913695,-0.02493132,0.073850766,-0.009348015,-0.019840663,0.031689808,-0.01592678,0.072051466,-0.024117112,-0.010223959,-0.043964468,0.035888292,-0.030816963,-0.04418526,0.016134607,0.037210558,0.03953607,-0.053031873,-0.053241465,-0.015188457,-0.019892639,-0.013230484,-0.029006612,0.055839382,-0.009328198,0.012993942,-0.010025802,-0.06888049,0.25868553,0.058256645,0.03145744,-0.0077140685,-0.0063057602,0.02931594,-0.023970483,-0.029327568,-0.037270147,-0.025663681,0.03432094,-0.0030535515,0.004309267,0.055568412,0.018870248,0.0756376,-0.019016735,-0.0043620043,-0.03244863,-0.022108337,-0.037690204,0.01369989,-0.0023715296,0.052118115,-0.01050591,0.022424892,0.042989254,-0.04281271,0.021394556,-0.01280262,0.01847183,-0.028815364,0.031765804,-0.01763982,-0.04306035,0.031636424,0.0095262695,-0.038068134,0.012867058,-0.008331228,-0.03750012,0.01942323,0.018262908,0.006016157,0.026483921,0.012630205,-0.06259841,0.016493507,-0.0062288246,0.0031966476,0.10503191,-0.0046876348,0.060562883,-0.059624817,-0.03745129,-0.005038178,0.023891838,-0.006979288,0.0034264894,0.017402235,0.008295828,-0.02899612,0.011332766,-0.007161858,-0.060864635,0.007969408,0.05698482,0.01961455,-0.0319811,-0.012187995,-0.0071561006,-0.014966827,-0.013681126,0.009692011,0.0055645774,-0.0046361038,-0.0015569554,0.027327372,0.0154688945,-0.0036571955,-0.015523526,-0.020900559,-0.001462848,0.021279112,-0.013109586,0.058825135,-0.0059838095,-0.009277029,-0.04706511,0.0445684,0.016443308,0.010700227,-0.019536182,-0.047297563,0.0046129967],[0.025025528,-0.015728869,0.008016864,0.024554882,-0.014725988,-0.02198533,0.00033982613,-0.00089253666,0.018121772,0.031114804,0.051989693,-0.022162182,-0.013811135,0.007561231,-0.0044253054,-0.0054417355,-0.048730932,-0.012526844,-0.068638794,-0.01368624,0.0027069259,-0.012141518,-0.08173933,-0.0038329782,-0.015486804,0.043244213,-0.0006717098,0.016801044,0.06263974,0.041559517,-0.01916847,0.022332333,0.06702692,-0.017603353,-0.04611497,-0.031773176,0.03986606,-0.019676084,0.010635838,-0.047704,0.041051406,-0.042385202,0.052026067,-0.029540343,-0.07943928,-0.0092667155,-0.0059233205,-0.04328165,-0.0010658127,-0.05058787,0.015008786,0.013049928,0.029570503,-0.009506272,0.04604675,-0.028837942,-0.020846639,0.009360654,-0.01506985,0.042834558,0.027990771,0.042770013,0.007221724,-0.040322732,-0.022454962,0.011321394,-0.027759247,-0.021328513,0.02091169,-0.026903016,-0.0027186081,0.026986286,-0.020865083,-0.018754201,-0.02846439,-0.0009006529,0.042665288,0.021695582,-0.04386167,0.043750994,-0.0200638,-0.0025436925,0.025678799,0.028203512,-0.046956584,-0.0013844888,-0.00768819,0.02366458,-0.0014839513,-0.0042591253,0.039145198,0.04165915,-0.027895406,0.007541256,0.057089426,0.029639415,0.0010852607,-0.03480396,-0.035520364,0.006146175,0.031572193,0.00702911,-0.030715244,0.0749289,-0.034773525,-0.018860804,0.01119784,0.0062888027,0.0116137555,-0.01658783,0.012262608,0.0058540343,0.019669892,0.031287283,-0.025934763,0.048687905,-0.0031607891,0.020045398,-0.038038556,-0.0075376937,0.0010256992,0.014591565,-0.019372383,0.0023759378,-0.007913947,-0.04368407,-0.049214,0.028634153,-0.048537217,-0.0077533117,-0.029051235,-0.032070246,-0.0076684337,0.015753524,0.030375967,0.023215394,0.0070600645,0.009623753,0.04747215,-0.0148636885,0.05754053,0.012923263,-0.030608147,0.06863781,-0.0015932267,0.015525397,-0.0021624027,0.016695954,-0.07255043,0.032699686,-0.034193873,0.019828528,0.0011822078,0.055873048,-0.023704275,-0.0068330616,0.033762436,-0.004229877,0.024308644,0.01672362,-0.029933102,0.016106756,-0.005697706,-0.011671631,-0.03909249,0.02395209,-0.04286628,-0.018877381,-0.022077996,-0.00150073,0.008584872,0.0070541403,-0.034578346,-0.008034558,0.011364265,0.08196015,-0.019801052,-0.009969428,0.0061743436,0.014551725,-0.009571355,-0.011364926,-0.009327539,0.0466781,-0.030314367,-0.009143744,0.001481225,-0.012903126,-0.017588843,-0.06118414,-0.017971728,0.035574216,-0.019835413,-0.0051268316,0.024125826,0.0060350085,-0.03838672,0.00060270453,-0.003876309,-0.03805187,0.004073583,0.029962441,-0.014084298,0.034091644,-0.011797218,-0.024499303,0.011041271,0.04292948,-0.01873271,0.0070349085,0.03668225,0.048821174,0.009852729,-0.020630082,0.062230792,-0.008403044,-0.01574747,0.03669812,-0.049859002,-0.018080527,0.04963554,0.030671258,0.056053642,0.023074642,-0.00081289903,-0.00010858507,-0.030445734,0.04074602,-0.029587103,0.025389357,-0.010165998,0.02780681,-0.0048198435,0.013474961,0.027958635,0.01811427,0.025732717,0.030501194,0.020882886,0.0032101949,0.017994434,0.0044606347,0.031355806,0.041780323,0.018250974,0.035530828,-0.019558193,0.019248225,0.017682748,-0.0068438016,-0.017238539,-0.016333142,0.024321718,0.018668074,-0.023098746,-0.0006772267,0.026137948,0.05970672,-0.022758309,-0.005750142,-0.017101662,0.042041495,0.022362025,0.023560693,0.029908651,0.0041138846,0.021813212,0.019530876,-0.022662435,-0.025327541,-0.0204755,-0.0445248,-0.048803333,-0.013330047,-0.020730818,0.009701172,0.018483452,-0.036287535,0.015768498,0.048410926,-0.01602755,-0.04768614,-0.016240044,0.016515978,0.020199673,0.066656455,-0.022660034,0.003929133,0.008724557,-0.00023533925,-0.03429005,-0.0046429774,-0.023004621,-0.025030306,0.009488551,-0.009414142,-0.040868577,0.03186686,-0.07616493,-0.042928033,0.011345907,-0.04185733,-0.008592108,-0.0057776985,-0.025877066,-0.013115674,-0.019519417,-0.032288957,0.03333438,0.03400593,-0.06740647,0.04743847,0.030390656,0.0013565705,-0.06153827,0.044624463,-0.004141458,0.012975013,-0.0057641095,-0.014085194,-0.017558793,0.02122356,-0.0027398483,-0.0671458,0.015053846,0.025395619,0.03762325,-0.13858277,-0.00047176352,-0.041418098,-0.06394131,-0.01525352,-0.019935234,0.045330413,-0.015596456,0.005587953,-0.014791915,-0.040647697,-0.035393205,0.0030948427,0.05450943,-0.03168638,0.01359374,0.05900351,0.009058333,0.026159449,0.024294462,0.0036514895,-0.042192243,0.025101215,0.017463923,0.0476,0.0030012378,0.042798333,0.0023956904,-0.03818176,-0.008525902,0.017969223,0.023554672,-0.018806595,-0.00081171625,0.037357725,-0.001935425,-0.034737397,0.018945703,-0.044032466,0.013908504,-0.019389495,0.035894632,-0.048993427,0.028812712,0.008842056,-0.05833957,0.04198145,-0.021272173,-0.009681008,0.029332535,0.018268306,0.031015176,-0.03300662,0.03550833,-0.02852423,0.025200106,0.059951108,0.046369556,0.00013802291,-0.019744562,-0.005236094,-0.008882044,-0.000110012246,-0.036376614,-0.027247205,0.042292587,0.014839162,-0.0279307,-0.03168865,0.021634815,0.019856485,0.030549968,0.02514372,0.0500228,-0.015868705,-0.02151079,0.045552943,0.0037597846,0.009064209,-0.029382361,0.036365096,0.01672089,-0.015514745,-0.062349893,0.029716413,-0.0138206575,0.007883218,0.011686214,0.012724724,-0.03501013,0.026692528,0.03884079,0.0055707335,-0.05459836,0.00061337685,0.004478505,0.00953707,0.008559058,-0.0200365,0.005725288,-0.060724787,0.015399896,0.019563485,0.0079634795,-0.036933705,0.015459966,-0.026229993,-0.05249431,0.02423611,0.00052399654,-0.059898287,0.029430307,-0.03249518,0.042627927,0.019345222,-0.012254187,-0.037948005,0.008040151,0.025781062,0.013697626,0.034172527,-0.051957678,-0.041540224,0.011792293,-0.08288377,-0.019696282,-0.014884107,0.023091713,-0.033580303,-0.038018834,0.013742162,0.022194628,-0.018317536,-0.0044943257,-0.0038011577,0.046306744,-0.023595069,0.008887848,0.06129671,-0.019994615,-0.03866443,0.021670591,0.005782866,0.034678962,0.015827484,0.008707106,0.0019717256,0.005157018,-0.0097887255,0.029143227,0.005906287,-0.014838056,-0.031163327,-0.002174874,0.016828347,-0.0056963125,-0.011351697,0.0021913087,-0.049985886,-0.0040985434,0.029286994,0.012982754,0.0030581725,0.02111352,0.04598388,0.013578,-0.049338687,0.0022015905,-0.0004966163,-0.030116795,0.022714445,-0.0037398085,0.020342045,0.021182075,-0.027549056,-0.0015854399,0.0054604225,-0.0062728184,0.009202056,-0.043846723,-0.0052353176,-0.03163716,0.00796119,0.049910277,0.0222351,-0.0141779445,-0.030129403,0.04738595,-0.0020049093,-0.022419013,0.010031643,-0.0039464873,0.058114998,0.0063149254,-0.042593773,-0.023309456,0.06968052,-0.02611465,0.006669494,-0.03634185,-0.013129337,-0.053594705,-0.04217731,-0.009667404,-0.031982735,-0.059023313,-0.018815272,-0.0027575246,-0.022017518,-0.0035629733,0.0051585305,0.004586057,0.048187185,-0.057504267,-0.002165098,0.012231468,0.0020889465,-0.021506,-0.023672095,0.02918,0.07258612,0.00016515661,0.022510404,-0.009338236,-0.0007903785,0.009827191,0.040834732,-0.029808586,-0.0041087284,0.016097533,-0.016421808,0.036229976,0.033839267,-0.010224371,0.058608957,-0.029731408,-0.033588562,-0.028153194,-0.034403022,-0.026061103,-0.032523263,0.028916152,0.0026405465,-0.02845037,-0.014399135,0.08916543,0.0339731,-0.012293038,-0.07586499,-0.038461752,-0.04568278,-0.04708238,0.003526001,-0.011344353,0.0036104165,-0.02102288,0.022018824,0.028953351,-0.009557996,-0.025808983,0.060008273,0.007969194,-0.0034876044,-0.038486395,0.031818755,0.025790337,-0.059619743,-0.007651438,-0.008879579,-0.016784938,0.016885659,-0.039500877,-0.050599124,-0.04326411,0.0064283838,0.05470862,-0.011693192,0.034076322,0.0011421128,-0.012724681,-0.058743596,0.02130137,0.02582237,-0.017910346,0.0009684326,-0.018820172,-0.033788405,0.013079455,0.018138433,-0.022212185,0.024805019,0.044853855,0.0055932575,-0.05700771,0.012257964,0.051477984,-0.067410015,-0.05423171,0.01047069,0.0024078866,-0.025563639,-0.047967684,0.020352274,-0.039215717,0.024773853,-0.02269854,-0.0003122437,-0.022367738,0.042503342,0.003062827,0.03910166,-0.012312576,0.038736816,0.0354564,-0.024759015,0.02540624,-0.013055102,0.017433785,0.020109737,0.010280749,-0.016094442,0.029499264,-0.0038139508,0.035261203,0.0027408642,0.03471703,-0.028000562,-0.03824511,0.021854874,-0.021767555,-0.03673941,-0.0049075726,-0.006723109,-0.010255642,0.023443267,-0.06809255,-0.008713318,0.0009826472,-0.00225738,-0.018873109,-0.00929697,-0.011172129,-0.028846612,-0.033600986,-0.05214624,-0.035896998,-0.010924463,0.04614337,-0.016925843,0.024647774,-0.014060862,0.037042417,-0.03767462,0.029968638,0.0056633907,0.09132757,-0.023105975,-0.07688378,-0.033957597,0.025915125,-0.04905269,-0.010240346,-0.034253996,0.021251371,0.013100658,0.022158446,0.038219735,0.0060051302,-0.043415666,0.013544091,0.01738988,-0.0009507919,0.025328716,0.032859266,0.035615504,-0.041400652,-0.030739402,0.016991585,0.0036855687,-0.0630043,0.0021831472,-0.0083488915,-0.04681307,0.0014425461,-0.032322824,-0.046545926,-0.019721173,-0.010252919,-0.01943283,0.019558657,0.00090820424,-0.02164481,0.0050567905,0.04126887,0.0005359119,0.007858768,0.013762026,0.011654523,-0.0006852675,0.001575431,0.030001853,-0.00969591,0.039262857,-0.0
+8000
+27136168,-0.02187287,0.039743993,0.0017657909,0.021420905,-0.018216146,-0.053678293,-0.0044755577,0.03532832,0.009388584,0.022911089,0.002861322,-0.03421734,0.026729938,-0.00925755,-0.0077084885,-0.0028172291,-0.062269405,-0.016882079,0.009357672,-0.014572586,-0.019278457,-0.021383666,-0.03430705,-0.04728061,0.02220021,-0.018328685,0.012178002,0.039423387,-0.0032924262,0.015262661,-0.054959755,0.03808096,0.01224003,0.043844998,-0.030183265,-0.035585135,0.03338457,0.018506728,-0.00035919587,0.012320179,-0.014162791,0.00026729816,-0.03543265,-0.011167095,-0.007510118,0.013204221,-0.008817244,-0.010964721,-0.013451148,0.05050663,0.0039112587,-0.006245045,0.012707249,-0.017548714,-0.015067127,0.040157728,0.045773577,-0.011545741,0.010215112,0.03446158,0.010730003,-0.012489851,-0.006265975,-0.037071496,0.04655612,0.022786729,0.00004461542,-0.018897956,0.018996174,0.015078416,0.033738814,0.0031434451,0.030166032,-0.021954328,-0.038443986,-0.0037346412,-0.0050973934,0.018100915,0.0015968977,-0.02878652,-0.017339498,-0.016142564,-0.033314012,-0.025865445,-0.008988803,0.04729191,-0.0046607237,-0.033681266,0.017794313,-0.009983978,-0.021854522,0.042565543,0.020170635,0.0587912,0.00590677,0.0066451714,0.034237705,0.010034548,-0.0055542267,-0.0032568783,-0.004224214,0.011205139,0.016502284,-0.02076328,-0.052019764,-0.017310925,-0.06333267,0.051416844,-0.028399844,-0.027501294,0.01417586,-0.026741674,0.0052196546,-0.050601456,0.016477758,-0.013718559,-0.004041807,0.030979464,-0.021021385,-0.011759701,-0.0058581885,0.0051940554,0.00824988,0.020534582,0.021033257,-0.0027728928,0.036590975,0.044020317,-0.026430793,0.002526879,-0.0038377764,-0.01176372,-0.002088963,0.003924003,-0.040398095,0.014506872,0.001241759,-0.0008788646,0.008398824,0.062342472,-0.0063168146,-0.062561005,0.017986787,0.0055067283,-0.0030320054,0.03311081,0.0142823635,0.008177605,0.021384327,0.01868252,0.013961389,-0.007068666,0.046006337,-0.04270607,0.03219501,-0.02401373,-0.068735674,-0.024358846,-0.028228378,-0.013576286,-0.014010032,0.0064453897,-0.055190872,0.028311195,0.029974263,-0.02163723,0.029871594,-0.037388336,-0.018851867,0.05095836,0.025568135,-0.0017982371,0.07700282,0.015889933,-0.0093578445,0.043192424,-0.038479008,0.078458324,0.0062922942,-0.020760832,-0.031132856,0.023468798,-0.05605764,-0.039866604,0.048429687,0.06176462,0.01506319,-0.028054435,-0.048855778,0.0050937994,-0.0642601,-0.005966911,-0.0039670817,0.061850056,-0.016524969,-0.011472013,0.011446824,-0.07130023,0.26316485,0.051135696,0.01455049,0.017716669,-0.0314268,0.010665542,-0.02541289,0.008401026,0.006995849,-0.03519007,0.02197836,-0.027527539,0.031244177,0.043681327,0.0039577004,0.058823448,-0.013500033,-0.0024833293,-0.05002593,-0.057736397,-0.019758314,0.013301605,0.022118516,0.015663689,-0.013284788,0.036644325,0.05322084,-0.013282278,-0.036155738,0.006336565,0.03830264,-0.022892684,0.025132304,-0.02334374,-0.05240264,0.030695893,-0.003981199,-0.053228524,0.023158489,-0.015497835,-0.033701006,0.008197706,0.008464296,0.022118231,0.009576491,0.041449852,-0.03132077,0.030165723,-0.0062133987,-0.02487367,0.074226245,0.005088792,0.051915646,-0.039028406,-0.037511952,-0.024604686,0.008813823,-0.0050532036,0.0046759187,0.048929557,-0.00025983405,-0.0075151473,0.024074173,-0.015925342,-0.021715522,0.032256704,0.032449085,0.011487852,-0.03772456,-0.045404423,0.013004641,-0.01283348,-0.04900354,0.0075669787,-0.021054128,-0.012419359,-0.025378272,0.016744332,0.030849097,-0.0048750252,-0.002172344,-0.00075693027,-0.007258777,-0.017219076,-0.0027287905,0.05077104,0.00956555,-0.0107597085,-0.013131009,0.039851323,0.008745172,0.010429292,-0.026696768,-0.025543021,0.00851345],[0.026038254,-0.025230644,0.011378028,0.008020887,-0.0021617797,-0.031333137,0.009304703,-0.023811847,0.014569539,0.04107464,0.024155019,-0.016098399,-0.016171511,0.009284487,-0.016985517,-0.024982138,-0.027639445,-0.0023405121,-0.015317951,-0.01139669,0.020847315,0.0019726055,-0.10060353,-0.026412422,-0.022763224,0.058925968,0.0065030535,0.0147803975,0.021731209,0.049634,-0.022492763,0.0208683,0.06293627,-0.053628266,-0.056454033,-0.038244586,0.054750755,0.014739251,-0.0020062001,-0.021707999,0.0033108986,-0.028655566,0.023070192,-0.032458447,-0.07302549,-0.0020548468,-0.00070770853,-0.009495238,0.034014337,-0.066768385,-0.00009583238,-0.051461507,0.016621243,0.007653495,0.030908763,-0.023418883,-0.008534873,0.016661491,-0.033566806,0.04186174,0.026336022,0.038070653,0.025896186,-0.06733616,0.0025706452,0.023693616,-0.010028957,-0.0039396603,-0.008301248,0.01675436,-0.050368696,0.0125291655,-0.018178845,-0.012492836,-0.034143876,-0.0050101164,0.03765301,0.0121727055,-0.039776955,0.041279726,-0.016266879,0.010200676,0.00504345,0.027211871,-0.027822476,-0.010910966,-0.0027649107,0.0746964,0.011268263,-0.0027088562,-0.0071342736,0.016498748,-0.010681536,-0.01777371,0.022691635,0.0055722944,0.005743775,-0.008857066,-0.037757825,0.03186782,0.04568654,0.033045948,0.006865123,0.07700069,-0.02978268,0.009064,0.025569696,0.004585624,-0.009503244,-0.031698216,-0.017453328,-0.0031905505,0.009252976,0.011425918,-0.008190052,0.042108163,-0.0060606506,0.024211338,-0.011628855,0.0061876024,0.026926758,0.007900292,0.002146198,0.02528935,0.0021935797,-0.0463428,-0.01185968,0.046256073,-0.034687907,0.023093311,-0.023787037,-0.015139174,0.026414154,0.010481219,0.050798766,-0.0060594464,0.0013805396,0.03204058,0.027061973,-0.0047565326,0.065333255,0.017622871,-0.015267323,0.08109228,-0.0011422213,0.0353111,-0.009495196,0.025840614,-0.026131403,0.013938451,-0.018041726,0.0004431622,0.026965529,0.022183439,-0.030441029,0.027489748,0.03370115,-0.0011761766,0.024646841,0.021634642,0.01297848,0.008699085,-0.017892295,0.021187352,-0.039094478,0.024468068,-0.020036794,-0.02748477,-0.027024848,0.029271549,-0.006632577,-0.013295401,-0.018168615,0.0074680066,0.017495802,0.06954537,0.020609135,-0.026918903,0.02729983,0.00072492415,-0.000039782622,0.010913587,0.0063756807,0.036542885,0.023034634,0.030177368,-0.016203575,-0.0033635343,-0.026161512,-0.034812283,-0.0047593405,0.054992396,-0.045262326,-0.0041119894,0.020057898,0.00034797983,-0.04572084,-0.034631364,-0.0190296,-0.06511811,-0.016118852,0.03508222,-0.011408834,0.030370116,-0.01325292,-0.014879542,0.005420815,0.036989402,-0.0016170918,0.009208474,0.025031386,0.055782422,-0.011647335,-0.008010506,0.055053063,-0.015722258,-0.02630942,0.017999442,-0.053223096,0.022785366,0.038044885,0.026550747,0.042435415,0.013426854,-0.0039345385,0.009124362,0.000539238,0.021446595,-0.011159135,0.025992803,0.008185201,0.057053693,-0.00046812813,0.03540374,0.013406764,0.007261609,0.04949015,0.032016996,0.005589548,-0.0120003885,0.0017928099,-0.0033328063,0.054010563,0.016233725,-0.022716628,0.028626021,-0.0005457348,-0.010376665,0.0031968553,0.028403666,-0.025248533,0.0084526315,0.014294395,0.012740756,-0.03991665,-0.013649263,0.057691995,0.029761296,-0.04843869,-0.020005742,-0.026813054,0.044015754,0.011728732,0.039732385,0.043356605,0.014341324,-0.020340908,0.0012650472,0.0011695813,-0.018594934,-0.012876259,-0.027400684,-0.04813927,0.0018684783,-0.054807965,0.03597564,-0.025449593,-0.024020877,0.015425126,0.03475567,0.011876843,-0.05863218,0.0063761864,0.018286321,0.0073976717,0.062135153,-0.0041585364,0.037016775,0.007464941,0.03041508,-0.027274415,-0.009662362,-0.011351452,-0.033444937,-0.015752425,0.0046341484,-0.027679991,-0.007457318,-0.05101731,-0.047404896,0.005696804,-0.0211995,-0.0062693143,-0.001751443,-0.012830424,-0.015595146,-0.014090521,-0.006984469,0.05506635,0.03036201,-0.07232231,0.006555701,0.0035539204,0.03761389,-0.03311864,0.024233114,0.012397669,0.00897674,-0.050861355,-0.024090674,0.0010918728,0.023107708,-0.0065959184,-0.032467153,0.002231111,0.020767992,0.019921439,-0.12554242,0.019733794,-0.03261503,-0.06529285,-0.02531899,-0.038187787,0.007506348,0.012442039,0.014276392,-0.019685617,-0.044037174,0.0029570858,-0.019850349,0.07510555,-0.058121957,0.00713547,0.054170605,-0.017234411,-0.0076145907,0.04516593,0.030203732,-0.03206794,0.016548833,0.023014959,0.004526309,0.0044057593,0.02806619,-0.011235525,-0.011884299,-0.034491383,0.013556722,0.053288084,0.008036961,0.031223074,0.023728924,0.02304883,-0.04558455,-0.0064211413,-0.042451564,0.026499245,0.0518291,0.024583532,-0.07335721,0.05419382,0.0146702025,-0.059822924,0.022682833,0.01223835,0.0050937324,0.0449751,0.012404341,0.030722905,-0.042743467,0.018205764,-0.04775349,0.00012847362,0.044219017,0.03931707,-0.005530308,-0.01328515,-0.008887881,-0.006878477,-0.011130862,-0.05583236,-0.022878755,0.0085168015,0.0073752315,0.02140585,-0.039487254,0.035498098,0.009090875,0.024648845,0.025262665,0.023450447,-0.006086796,0.0077532087,0.029009564,0.0047974354,0.0062140194,-0.02092798,0.03144793,-0.010487051,-0.005980639,-0.040629707,-0.021194583,-0.004905236,0.010940011,0.011923833,0.008879935,-0.04633457,-0.012785139,0.061399803,0.01816558,-0.053686388,0.0005414665,-0.010536021,0.025952252,-0.021014871,-0.0048436234,-0.00027560923,-0.043987993,0.019191984,0.007349406,-0.017665045,-0.030411439,0.021168461,-0.028264914,-0.029651966,0.009145008,0.006506452,-0.03266841,0.01012237,-0.008074245,0.031153841,0.016685229,0.007785332,-0.03193099,-0.035455137,0.017767677,0.0399707,0.0311747,-0.03167435,-0.041510556,-0.01574682,-0.061091777,-0.02157931,-0.031605806,0.0036148254,-0.010240957,-0.014113302,0.030335167,0.019914793,-0.0022053423,0.008542582,-0.018899554,0.054297846,0.001518393,-0.022765862,0.052745707,-0.017944545,-0.0040025124,0.021590628,0.022979697,0.04920629,0.010288956,0.013596252,-0.0041952203,-0.0030404632,-0.03312593,0.017901717,0.0013381889,-0.005418565,-0.02854327,-0.012385779,0.0057100444,-0.032437287,0.00024565193,-0.016874984,-0.04321483,-0.0108800605,0.043902982,0.0116686,-0.008785774,0.005556248,0.021908928,0.0054027033,-0.06157062,0.017364172,-0.016458897,-0.030811012,-0.008923335,-0.005730978,0.015616565,0.053552147,-0.022618985,-0.007135276,0.010015645,0.0036916812,-0.003649084,-0.038451806,-0.028094752,0.012292475,-0.011455486,0.01323909,0.034595676,0.0000038626417,-0.016425688,0.066869214,0.01434647,-0.03850919,0.043952696,-0.03684386,0.014007718,0.020908417,-0.036198627,0.015766231,0.041993216,-0.00003738374,0.027387895,-0.01847367,-0.016343564,-0.07096339,-0.03151066,-0.008643229,-0.043227844,-0.057166774,-0.017156823,-0.0676909,-0.005951076,0.0030544666,0.00011937149,-0.023520313,0.033413786,-0.060431313,-0.010486969,0.001244018,-0.014700036,-0.015084278,-0.053294014,0.014349155,0.0563337,0.01297297,0.04984917,-0.014521629,-0.013375682,-0.0098309945,0.002709506,-0.029752286,-0.027452774,0.02143158,-0.021693336,0.031655278,0.040769465,-0.008728019,0.050011992,-0.046499882,-0.030608503,-0.0498659,-0.026845371,-0.04870749,-0.0234773,0.008864026,-0.02814149,-0.025095109,-0.02709856,0.04576143,0.06916198,-0.0014402099,-0.058088917,-0.010111572,-0.042434156,-0.00902397,0.015679825,-0.025049124,0.018779213,-0.04228137,-0.0006655145,0.03943679,-0.022939287,0.017960016,0.06239325,0.0011529749,-0.028709518,-0.02573839,0.01168211,0.013597727,-0.051164486,-0.008873175,-0.042476203,-0.02882478,0.008046306,-0.04572818,-0.057324782,-0.04692687,0.011098484,0.053575337,-0.0027024378,0.04496234,-0.0010539804,0.011578503,-0.06025766,0.030065943,0.031834118,-0.012881232,0.025302853,0.0012622657,-0.025276795,0.029283902,0.02505753,-0.00008393824,0.00322624,0.03653845,-0.004437656,-0.046728253,0.025718538,0.040962357,-0.03370638,-0.041031316,0.028752334,0.020577166,-0.036352266,-0.039853707,0.04282568,-0.0362303,-0.015409396,-0.02982698,-0.016935702,0.014234003,0.048534527,0.009072025,0.0053223637,-0.013868894,0.018401459,0.045012645,-0.032721482,0.0060189017,-0.049996734,0.030451316,0.0065121893,0.006447139,-0.013594687,-0.006700459,-0.008030373,0.035918962,-0.0031553858,0.06378128,-0.038909372,-0.045408677,0.061209988,-0.015170285,-0.016469654,0.0043445374,0.00972359,-0.0247734,0.03408749,-0.0428445,-0.031284355,0.0036905014,-0.028619863,0.023517631,-0.018473133,-0.014185687,-0.0550429,-0.032303546,-0.037959103,-0.029760282,-0.015139441,0.03456419,0.017170142,-0.0033445666,-0.0067830784,0.049542435,-0.05355491,0.054410476,0.0036408906,0.07610274,-0.035684872,-0.073795974,-0.028735593,0.028506564,-0.04741426,-0.020791152,0.009662977,0.023190303,0.0038541881,0.04713579,0.026701232,0.009327562,-0.047520347,0.007836997,0.04825738,0.01952717,-0.009780976,0.042338733,0.0314977,-0.012436327,-0.041955907,0.02236897,-0.020507904,-0.056998562,-0.00062557944,-0.028101794,-0.0097510405,-0.03625529,-0.01939707,-0.021283342,-0.023743747,0.014214853,-0.010931337,0.00035361235,-0.010517403,-0.04480199,0.0075116525,0.030264419,-0.006704538,-0.00045100308,-0.027763402,0.04074998,0.008502813,-0.003949097,0.02473737,-0.002500149,0.06820292,0.009932128,-0.023393933,0.066593364,-0.01005918,0.007123691,-0.0054857624,-0.06498279,-0.022805596,0.020394918,0.007083658,0.015308759,0.004607997,-0.019637827,0.016519004,-0.04097921,-0.008126441,0.00041389,-0.09182065,-0.036918502,-0.00976416,0.00775783,0.028579643,0.024075625,-0.0623049,-0.018724125,0.012134159,-0.0136369355,0.023413828,0.031994205,-0.036735434,0.015522002,-0.036106046,0.024106778,-0.009266953,-0.009191121,0.0035051685,-0.072817996,0.045161482,-0.0024955242,0.0004058452,0.00061717175,-0.040092442,0.041061405,-0.039750528,-0.0038738912,0.0022847196,0.023722505,-0.0015369166,0.0233937,-0.022105271,0.035441272,-0.0007963456,0.0152677735,0.018166525,0.020703843,-0.013499054,0.028496305,0.051758733,0.0077914377,0.0041336725,0.015076396,0.030611327,0.010802502,-0.02933952,-0.012033019,0.036736835,0.010546451,0.0053802487,-0.025194615,0.01303118,0.0030242421,-0.007187498,0.010979526,0.012865299,0.01614338,-0.013266308,-0.019264363,-0.0033372203,-0.005255457,-0.009903771,-0.033194873,-0.017424973,-0.04061123,-0.01587458,-0.01117862,-0.023623979,0.015662963,-0.0007047908,0.0011756616,-0.005029008,-0.0038504088,-0.01330463,0.024661465,0.018564226,0.029763075,0.01566788,0.013966968,0.012413333,0.021066984,0.0037637944,0.0019995286,-0.010828304,-0.042940553,-0.009034336,0.017704368,-0.037193917,-0.043678757,-0.043300793,0.04683604,-0.041092034,-0.038878605,0.012809722,-0.046822984,-0.010013078,-0.052726608,0.029850952,-0.015520955,0.00580103,0.03368045,-0.0076923817,0.009568862,0.016493816,0.040518392,0.040114857,-0.013102722,0.05487415,-0.023245826,0.044648383,0.037967943,-0.009529811,0.0102214785,0.0070600146,0.022326475,-0.011055197,0.0052036718,-0.024956211,0.0035445068,0.009262876,-0.034650378,0.022260996,0.023829263,0.008802843,-0.053081833,-0.008549129,0.032752134,-0.019017894,0.015125543,-0.013755674,-0.024413371,0.016562993,0.0060163075,0.0050095352,-0.027414924,0.048554596,-0.03760402,0.041026827,-0.021477096,-0.03221997,-0.0017667074,-0.039657507,-0.04517609,-0.022736805,-0.02477869,-0.048444692,0.018107122,0.028514791,0.02096137,0.0074558184,-0.021543283,-0.008653629,0.060682636,0.028931618,-0.009700973,0.07095757,0.011671346,-0.037401933,0.025958756,-0.058342196,0.061804127,-0.017073954,-0.03203638,-0.019678596,0.044973377,-0.038958915,-0.049410973,0.020712525,0.034501854,0.009359995,-0.03330646,-0.078875504,-0.00012198054,-0.03135387,-0.041158363,-0.018780606,0.064869955,0.0073149744,0.00057227357,0.00093366514,-0.09437925,0.25563255,0.049885344,0.024597175,0.002260839,0.0049129394,0.012315854,0.015539076,-0.034038704,-0.021965034,-0.0124485465,0.020821165,0.016932622,0.021176225,0.052663617,0.02391253,0.06471918,-0.031998392,-0.011711906,-0.030126601,-0.038969316,-0.020418707,0.014761205,0.004631825,-0.0025326328,-0.015365187,0.02136646,0.026551574,-0.027182195,-0.015794758,-0.024822552,0.028484829,-0.041336376,-0.0068421634,-0.024533521,-0.04498249,0.04908481,0.0069900528,-0.04146995,0.010947481,0.009486826,-0.063897364,0.038405336,0.013455659,0.011399383,0.013483374,0.029759629,-0.03671156,0.046964277,0.010493336,-0.025437161,0.097304165,-0.01315876,0.060685113,-0.035089888,-0.031352866,-0.020553216,0.022936653,-0.038548313,0.031720467,0.009970403,0.0048775054,-0.033433925,-0.015490471,-0.017974082,-0.007989091,0.047885545,0.058152642,0.02834641,-0.03354518,-0.025802309,-0.004260975,-0.018644158,-0.030623373,0.0036025734,-0.014850039,-0.0051979152,0.020003568,0.005780257,0.013079952,-0.050945632,-0.039070778,-0.022516318,0.026329855,-0.000081988204,-0.013802057,0.053694267,0.010037875,0.021950731,-0.0479393,0.051596843,0.013533119,0.04289475,-0.0011643067,-0.037220664,0.009588831],[0.033023957,0.022842115,0.007955645,0.03167267,0.007143798,0.007972678,0.033152778,-0.015447274,0.0133826705,0.030411841,0.01730816,-0.02423507,-0.007920901,-0.0021881948,-0.046445724,-0.0031573395,0.010444969,0.009634689,-0.04386344,-0.013918435,0.010698538,0.02263989,-0.08144502,-0.017293839,-0.03249421,0.07081064,-0.016376976,0.006181793,0.07719116,0.056745317,-0.02472656,-0.0025578206,0.07772157,-0.02723603,-0.05723676,-0.053926278,0.022355655,-0.008831938,-0.008479955,-0.012902974,-0.02185071,-0.017963065,0.033180647,-0.030307157,-0.037435196,-0.020860149,-0.017772622,-0.035502546,0.022454908,-0.05002654,0.022010244,0.0032397266,0.014289519,0.003272397,0.057027776,-0.017357247,-0.03028702,-0.008738768,-0.014667757,0.02177732,0.018000629,0.053118892,0.033590488,-0.0689603,-0.029607613,0.011905072,-0.0071967198,-0.008473833,0.017081067,-0.015530643,-0.027212724,0.01824719,-0.00583798,-0.030177787,-0.01650515,0.022247659,0.018507486,0.019438587,-0.0358024,0.028817723,-0.029138474,-0.008135247,0.019497754,0.030505026,-0.036781363,-0.020481758,0.018816924,0.046419945,0.014162308,-0.010081776,-0.00025444687,0.015513612,-0.016031763,-0.007538948,0.041806724,0.013601103,-0.022781843,-0.02001759,-0.031893026,0.0082565835,0.011138471,-0.005446939,-0.029217076,0.05369641,-0.06732701,-0.0006851341,-0.015543228,0.009901584,0.022736404,-0.027560009,-0.0022220328,0.03668452,-0.00027815337,-0.007779786,0.0021780615,0.011388766,-0.02078337,0.04699621,-0.021463819,-0.006860959,0.003994323,0.005350542,-0.0025049404,-0.012519053,0.031286024,-0.022958092,-0.030842079,0.072180204,-0.02581115,-0.024084048,0.005782755,-0.0050043524,0.02305647,0.031078206,0.051322535,-0.003725548,0.018844971,0.029342908,0.00701261,-0.0141514195,0.044480454,-0.0013835838,-0.028977705,0.07962847,-0.01190135,0.048733,0.022133952,0.045001246,-0.05405343,0.030225746,-0.053073917,0.0059212213,0.0044837673,0.044158474,-0.029853687,0.0076069497,0.044229273,0.00478153,0.0043979716,-0.029647248,-0.016715016,0.033863112,0.011975721,0.008422459,-0.057781927,0.039249573,-0.028742678,-0.027811198,-0.0076205484,0.0055035916,0.013321918,0.008597277,-0.008330537,0.0061531547,-0.010509905,0.076413885,0.009199634,0.0057866815,0.03907093,-0.007889915,0.002336323,-0.02746636,-0.008892662,0.016637882,0.018825095,-0.010964448,-0.010256614,0.029715788,-0.03679995,-0.033822294,-0.029532883,0.04238603,-0.033909492,0.000077987075,-0.0038654583,-0.034144763,-0.016460506,-0.02094031,-0.034188516,-0.057069097,-0.025377234,0.032403536,-0.035534885,0.027815532,0.0036524907,0.010456117,0.026723206,0.056008138,-0.033649456,-0.0046387156,0.029981226,0.032634724,-0.043602724,-0.0018950674,0.03468689,-0.0025459528,-0.031967565,0.025974018,-0.057145894,0.00040896898,0.02465418,0.03284063,0.01721167,0.014235075,-0.0022333292,0.02234398,0.0420402,0.037599005,-0.034793034,0.035570838,-0.007233381,0.037652288,-0.014024633,0.008200783,0.014921811,0.011812547,0.021701045,0.027988344,0.030920915,0.020546848,-0.010931591,0.00016735733,0.020589229,0.03924466,0.018543566,0.030927062,0.008241568,-0.0023779226,-0.010068002,0.0049884846,0.0059927967,-0.004111499,0.014045943,0.050826356,-0.064280346,0.013931542,0.03189994,0.03987704,-0.033898935,-0.026817424,-0.017912006,0.04340515,0.00043150902,0.016562222,0.04489446,0.0058693266,0.011171183,0.0051803747,-0.014127716,-0.012785727,-0.010357939,-0.031917542,-0.031066589,-0.03646396,-0.056557775,0.022894377,0.003128086,-0.025589969,0.02550481,0.030681144,-0.0100497175,-0.026147438,0.017171586,0.03619522,-0.011613643,0.04850265,-0.017030027,0.016972164,0.008080451,0.03861457,-0.05419423,-0.01855698,-0.03785438,-0.029523443,0.027300965,0.008622284,-0.037067477,0.03586866,-0.04710887,-0.044428445,0.0052587204,-0.051782522,0.0014759336,0.010962163,-0.014719141,-0.0037787023,-0.0027674595,-0.030791353,0.051537942,0.042426642,-0.06532766,0.03820144,0.00085749704,0.020631032,-0.07168945,0.019630684,0.03671032,0.036081426,-0.056873623,0.0082682595,-0.019028436,-0.0026192586,-0.00623092,-0.029635206,0.034602333,-0.0021302986,0.032013495,-0.09467339,0.015439861,0.0007838023,-0.06299182,-0.021822302,-0.0040889787,-0.0025564036,0.019400805,0.037545536,0.010045383,-0.043649085,-0.013701641,-0.0022582829,0.023999909,-0.035332933,0.018887501,0.053290613,0.0027043358,0.00019703599,0.0007232146,0.01706219,-0.054502014,-0.013408909,0.039471515,0.03419496,0.0010707204,0.035046954,-0.009985102,-0.013276621,-0.02513592,0.001265483,0.037132826,-0.0017809679,0.046223562,0.026666852,-0.006977608,-0.045396328,-0.0035820208,-0.0620282,0.057300538,-0.0037273217,-0.00051548006,-0.06288254,0.0657537,-0.0018552608,-0.041697368,0.015328355,0.010645073,0.006086048,0.04784183,0.012053618,0.03378426,-0.035115834,0.029809287,0.014847638,0.014577007,0.05749023,0.04666459,0.019177152,-0.035521466,-0.025665421,-0.016633675,-0.023351735,-0.016786518,-0.041811742,0.01627698,0.012799217,-0.009782553,-0.03632885,0.03062947,0.038426418,0.01579452,0.03821102,0.047185797,0.025538841,0.02262537,0.033094626,-0.004210974,0.0093359165,-0.011970336,0.04756053,-0.009244974,-0.00045612827,-0.025094816,-0.0031783227,-0.048481412,0.041160345,0.010901212,0.017660307,-0.025032537,-0.022612736,0.031492658,0.02762244,-0.048772484,0.027528308,-0.010356573,0.008194772,-0.008386552,0.0036075448,-0.027839085,-0.046657793,0.035479378,0.023561822,-0.004648126,-0.020310972,0.014038556,0.0076282346,-0.033054106,0.016491702,-0.018121278,-0.022795912,0.0045760632,-0.009678231,0.014987595,-0.0023709335,0.005817163,0.0015879236,0.026040854,0.02204584,0.029530402,0.041033704,-0.05986494,-0.018568043,0.009792469,-0.0680825,-0.0007461416,0.01790428,-0.022513837,-0.016713394,-0.0006043513,0.0115690455,0.012726442,-0.032571398,-0.0021442482,-0.02336618,0.065108,-0.016147956,0.000023407349,0.045254957,0.013297444,-0.026725892,0.021395953,0.01075575,0.015479883,0.015719647,-0.0007685756,0.007936796,0.009439991,-0.03902079,0.033728644,0.02757884,0.0017210279,0.004544873,-0.021934606,0.011658493,-0.0321722,-0.04583154,-0.020090586,-0.05530525,-0.011785335,-0.009606673,0.010965782,-0.0058506504,0.0013418561,0.03478175,0.0058953105,-0.04923352,0.009544142,-0.0369432,-0.012727874,0.016479641,0.01783901,0.014253163,0.016128536,0.0117844585,-0.015746627,-0.004217069,0.026721353,-0.018372823,-0.047971092,-0.053679537,-0.0051101767,0.02651083,0.014779956,0.031976335,-0.003665485,-0.02035644,0.073684536,0.04147025,-0.017901428,0.025071686,-0.038006622,0.0097386055,-0.019213444,-0.034707114,-0.033792507,0.078854755,0.007362606,0.036814887,0.008712079,-0.005934168,-0.07024106,-0.02841881,-0.022655142,-0.08549173,-0.054817125,-0.0016436352,-0.03300536,0.0031762295,0.005166085,-0.0011115548,-0.021764161,0.032764543,-0.0421142,-0.0053010755,0.0041469773,0.0027343023,-0.008320579,-0.024049936,0.0017842292,0.061540943,-0.02585835,0.034112323,-0.019593503,-0.0134886075,0.0013718486,-0.0017146161,-0.035565015,0.009282379,0.016492961,-0.018452162,0.015760332,0.032555807,-0.0034712951,0.025330529,-0.048298273,-0.04938626,-0.002690044,-0.0016088452,-0.025506405,-0.03590916,0.017568577,-0.017618038,-0.021253075,-0.012672602,0.06145242,0.023823254,0.014252263,0.012184541,-0.032065827,-0.04311516,-0.0382397,0.019477347,-0.010344373,0.022856606,-0.035895247,0.04053923,0.05662413,-0.027668612,0.02314725,0.05396533,-0.013191632,0.009393381,-0.044369143,0.028590064,0.0049477164,-0.04072333,-0.05332389,-0.052758932,-0.020064846,0.023542676,-0.045514815,-0.053592943,-0.039679043,-0.00054551923,0.04692307,-0.00361253,0.023321971,-0.012679011,-0.01768678,-0.08374364,0.010428259,0.02476023,-0.005597821,0.02974145,-0.0011872299,-0.018592792,0.04266182,0.0065789893,0.010648187,0.03194921,0.062532574,-0.0012987051,-0.020059774,0.07510478,0.07205594,-0.04212681,-0.047433514,0.028514983,-0.0015613907,-0.043265305,-0.027598377,0.014908703,-0.017849449,0.025970222,-0.06536902,-0.019454952,0.021303967,0.03502435,-0.0009955644,0.015803311,-0.015897105,0.020743933,0.035356157,-0.04111458,0.029684206,-0.040473968,0.007840848,0.016792342,-0.0032949669,0.0130293565,-0.012990164,-0.0043691094,0.03557183,0.01575666,0.026462203,-0.031873155,-0.020816352,0.04135811,0.0010297906,-0.038932867,0.008840865,0.024742933,0.0023053114,-0.0037524193,-0.06968147,-0.017893761,0.0019242892,0.0076638977,0.015973553,-0.02620187,-0.012792147,-0.05196183,-0.059857063,-0.045851838,0.0041708588,-0.015893199,0.019709416,-0.0018469413,-0.00087078445,-0.019018931,0.057597607,-0.038822494,0.058378976,-0.03236211,0.050945956,-0.030975236,-0.052149575,-0.0066978415,0.035939552,-0.071815245,0.007067719,-0.016603382,0.032407224,-0.005953756,0.020236142,0.028254861,0.019071084,-0.012862883,-0.018037114,0.02174381,0.025085598,-0.006810121,0.06629693,0.05691001,0.005567705,-0.021944175,-0.01139889,-0.033007946,-0.05810172,0.009353501,0.020088723,-0.049030825,0.0073045394,-0.055507936,-0.05693102,-0.048580356,-0.0036299888,-0.029582836,0.033829838,-0.01963653,-0.020230152,0.019299172,0.042455047,0.026754862,0.008086671,0.023338731,0.0077976943,0.009273113,-0.02718825,0.029968664,0.036612943,0.04599026,-0.027841503,-0.011893429,0.007565853,-0.022013273,0.006288206,-0.0065955813,-0.029528541,-0.018013474,0.012388229,-0.01172177,0.021059772,0.024231523,-0.046364605,0.014909167,-0.03535915,-0.022938875,-0.0022424248,-0.0680056,-0.020621505,0.0051952293,0.0020811812,0.019637534,-0.024531707,-0.083390966,-0.012419055,0.020486804,-0.0027361845,-0.005439363,0.043095846,0.0012356548,0.011596381,-0.027960885,-0.0029483044,-0.033161707,-0.0056211757,-0.0034489753,-0.059256207,0.046806414,0.0010626817,-0.007618729,0.010964518,-0.0640279,0.021799266,-0.03200329,-0.002508941,-0.003026534,0.04407881,0.017512843,0.012352373,-0.035983045,0.036870137,-0.007197837,-0.007370672,-0.012939421,-0.004818219,-0.034680627,0.06394728,0.06233484,0.008696085,-0.0038360963,0.02775051,0.028028687,-0.028937126,-0.005994493,-0.027695686,0.024226129,0.029148908,-0.0088343145,-0.028209606,0.0076027676,0.02248422,0.0074739275,0.019055944,0.009327137,0.0056344797,-0.009809875,0.014245009,-0.033188265,-0.005240172,-0.024732841,-0.025980856,0.0026277173,-0.024502441,-0.014879517,-0.01571667,-0.024665073,0.0055307504,-0.019844117,0.0067115026,-0.023342673,-0.012983769,-0.010716425,-0.0045838826,0.009107089,0.027591258,0.026833987,0.025385825,0.0083442135,0.007410229,0.00013742861,-0.031117592,-0.026437381,-0.04764198,-0.03368869,-0.007905318,-0.029784966,-0.025109679,-0.07297631,0.037375353,-0.0060041556,-0.020216996,0.0013677182,-0.028709894,0.002819155,-0.04076662,0.025157567,-0.017783321,-0.0054230047,0.011780525,-0.00625719,0.034514274,-0.0004030857,0.025676752,0.0144548835,-0.009557714,0.036659822,-0.0329394,0.036186222,0.029823627,-0.031607546,-0.019344103,-0.013010343,0.015012846,-0.043057315,0.003043095,-0.044566944,-0.010124184,-0.015521326,0.009570043,-0.0118832085,0.036005802,0.0036556302,-0.04030142,-0.022992346,0.025093772,-0.0037909076,0.03562273,0.041184373,0.013313512,0.004623793,0.02394499,0.010056507,-0.004616691,0.020208433,-0.057324063,0.04735867,-0.04596624,-0.07006828,-0.002279295,-0.055859115,0.0077586332,-0.022436665,-0.016017815,-0.049229946,0.028401213,0.0121019585,0.017246049,0.008347521,-0.0070635164,0.025094777,0.05144445,0.044519227,-0.0027886936,0.05595656,0.0017714809,-0.011689485,-0.0027819225,0.011620652,0.051028535,-0.007199496,-0.016176224,-0.041840408,0.010263762,-0.022186201,-0.05582835,0.01856198,0.04088202,0.031451277,-0.038275007,-0.07744062,0.018908288,-0.03366168,-0.000014846387,-0.014818745,0.048486285,0.021215478,-0.010828782,0.007998405,-0.07166098,0.25355592,0.025384597,0.02424531,0.01580261,0.010091005,0.023507876,0.029934233,-0.0192049,-0.019114781,-0.057255406,0.034474477,0.012842562,0.013144659,0.054288413,0.025720498,0.030298224,-0.011233844,0.0067582563,-0.028546987,-0.046071902,-0.04511341,0.027723463,0.033074833,0.016758075,-0.015695395,0.011541472,0.018074498,-0.03973916,-0.023059698,-0.046531703,0.015864113,-0.044834502,0.0025578777,-0.06120404,-0.051137533,0.010168115,-0.015067756,-0.047267675,-0.010883354,0.02772931,-0.037531935,0.043940432,0.029927988,0.004376502,0.007814332,0.05972779,-0.026969858,-0.0028383362,-0.0043485127,0.0009669174,0.0647782,-0.005723521,0.06321593,-0.047616456,-0.027462693,-0.017114324,-0.0011762305,-0.02544335,-0.012436999,0.014675504,-0.0078036,-0.054989103,0.033334386,0.016160348,0.0029598107,0.039217386,0.07650182,0.040811818,0.0027176202,-0.0120859295,-0.0035006541,-0.0065200566,-0.016504066,0.019867297,0.018852126,-0.015126668,-0.019451652,0.033873264,0.019552452,-0.02773578,-0.008574576,-0.01287285,0.00819327,0.0026057123,0.005733275,0.031484548,-0.011613015,0.01552308,-0.07614302,0.0513062,0.039605614,0.0013911838,-0.012032038,-0.055395953,0.00966533],[0.04118442,0.0067024366,-0.004208735,0.01258204,0.015358598,-0.042504888,0.031204918,0.010019196,-0.0006184217,0.00824857,0.030588139,0.011334614,0.0009313144,0.006958401,-0.028294072,-0.00864025,-0.036899503,-0.0014963966,-0.056173112,0.02194002,0.02292535,0.024200013,-0.069148965,0.016178804,-0.025550956,0.048574347,0.005153944,-0.004575891,0.050271183,0.05801637,-0.027681269,-0.011732582,0.066883445,-0.04600789,-0.050011624,-0.044952128,0.043120783,-0.024748819,-0.018600121,-0.037245184,0.02450091,-0.05267475,0.035041884,-0.020268034,-0.04262645,-0.010744633,-0.02533819,0.015073265,0.008942263,-0.014565552,0.020547789,-0.028368792,0.040139034,0.02280506,0.013781955,0.014725961,-0.037548125,0.0058996915,-0.011407424,0.026454497,0.04252756,0.0401669,0.033389095,-0.06733755,-0.023506772,0.013076951,0.03029551,0.00016760603,0.0127847595,-0.028114071,0.0004766432,-0.0013933292,0.009768167,-0.0017774688,-0.022358948,0.0113134775,-0.004288311,0.024315003,-0.03878161,0.03562315,-0.03784002,0.0025090212,0.0029408603,0.04128374,-0.03414052,-0.011516512,-0.006568932,0.008674461,0.014962162,-0.02657212,0.011667985,0.031599045,0.0084672095,-0.011949493,0.08650971,0.0072370665,-0.027117664,-0.017271833,-0.015876167,0.007926319,0.04174818,0.02325856,0.012052574,0.04713182,-0.04855369,0.017524792,-0.016486686,0.038301203,0.0009846548,-0.020242644,-0.011744515,0.029465096,0.009101714,0.0024419571,0.0155473575,0.0030836929,0.0007383521,0.07723606,-0.01970635,0.021360524,0.03526765,0.0091780415,-0.01976597,0.022941748,-0.003716273,-0.039041977,-0.023800345,0.06080744,-0.018215694,-0.0053934455,-0.011025246,-0.054143235,0.030847656,0.02409991,0.051030092,-0.022296365,0.009212336,0.009436726,-0.0070005525,-0.02224146,0.060749847,0.018905649,-0.035804138,0.08742264,0.0057662036,0.05095984,0.010687334,0.047380146,-0.037235253,0.060448118,-0.045069862,0.015160513,-0.02282742,0.03168917,-0.046613846,-0.0014483514,-0.0016881843,-0.006423609,0.011023784,0.015262123,-0.000049114307,0.011996164,-0.0023625016,0.005175375,-0.05604135,0.03115396,-0.02388606,-0.028355274,0.0035853253,-0.0034815627,0.02169635,-0.006991258,-0.016349912,-0.026832849,-0.0032567722,0.07743744,-0.008928019,-0.0038762677,0.027337382,-0.008305112,-0.0006533821,0.008227658,0.011190558,0.044434525,-0.015049613,0.028502803,-0.010566408,-0.0018217431,-0.025258621,-0.03002025,-0.0017576491,0.048146535,-0.071145125,-0.0017288708,-0.022257581,-0.035582762,-0.010833599,-0.016651032,-0.031500198,-0.06370937,-0.052362435,0.028478185,-0.009576991,0.030974975,-0.0030770393,-0.01641183,0.009470972,0.04231373,-0.015441455,0.021179747,0.043841094,0.042626075,-0.0014175584,-0.003027544,0.028928643,-0.0194463,-0.083227046,0.048412126,-0.050385818,-0.017714474,0.04877281,0.029477362,0.015058229,0.029839069,0.007995415,-0.005148311,0.016392717,0.027731245,-0.024508556,0.0054483814,-0.00651173,0.04719484,-0.00056111475,-0.014216469,0.0073409006,0.049304157,0.025867486,0.012978216,-0.0029756501,-0.022637283,-0.006009663,0.016277991,0.042327117,0.043055125,0.011904871,0.039198346,0.0092336545,-0.0055702245,-0.010259263,0.014762103,-0.020955702,0.013513203,0.01658833,0.01288899,-0.0625733,-0.010029748,0.015050603,0.04227228,-0.027487723,-0.022583663,-0.021350836,0.049367502,0.0017247442,0.011846652,0.031088391,0.013076026,-0.0252391,0.027207337,0.00089816586,-0.03286727,-0.008995522,-0.06195944,-0.034693994,-0.0004954444,-0.03761538,-0.016014675,-0.014009986,-0.028900368,0.036568608,0.022419699,-0.01884415,-0.054697234,0.0071579646,0.030251209,0.0038711152,0.042126186,-0.020884685,0.026620662,-0.016122
+8000
+293,0.00996659,-0.050139986,-0.008549941,-0.014757871,-0.036166195,0.007827704,0.0421054,-0.02628655,0.011487606,-0.044942256,-0.038436938,-0.016723108,-0.037110426,0.001876391,0.02209143,0.0010348494,-0.006888817,0.0013451152,-0.003027487,0.045859758,0.03181686,-0.04581538,0.02991726,0.009712738,-0.010037018,-0.037810907,0.00038749923,0.021374354,0.03286253,-0.053221513,0.01046652,0.0007685408,0.0013985639,-0.022130787,-0.04174968,0.009657598,-0.0113810105,0.016998759,-0.085611135,0.017562168,0.0063929665,-0.0653904,-0.057578858,-0.018005328,0.012649264,0.018829858,0.0007650104,0.001296649,-0.051675726,-0.04439017,0.0031220757,0.038402,-0.04374594,-0.012569043,0.02935754,-0.015328763,-0.036982134,0.019593174,0.022774441,-0.05054052,0.002896394,0.014819787,0.043187376,-0.0016243829,0.015232766,-0.010286402,-0.020211512,-0.0525471,0.015120803,0.024024175,-0.01609071,-0.02496331,0.025512017,0.022968248,-0.0470874,0.018415585,-0.042114668,0.021628324,-0.0069258977,0.024758188,-0.03926958,0.05794882,0.0012417899,-0.03313496,0.010618627,-0.025001265,0.029853849,0.019847568,0.017983204,0.05466536,-0.005526806,0.016003635,-0.018365365,0.012926235,0.05011767,0.046285078,0.0148330545,-0.04083993,0.005173596,0.0034760435,-0.03966369,-0.065196246,-0.014809948,0.0062868344,0.018129162,-0.025216164,-0.042313375,0.04243387,0.0139818005,0.020047115,0.015654156,0.05632351,0.0015978818,0.0025783768,0.006755842,-0.00952725,-0.007585288,-0.022292634,0.024267374,-0.0030856912,-0.0134510035,-0.048121948,-0.023021964,-0.025104303,-0.0011354715,0.03427638,0.014083092,-0.015925786,-0.03151928,0.0333822,0.00512066,-0.061717555,0.006122221,0.0123505,-0.007867198,-0.024996923,-0.020440279,-0.0038853432,-0.070906065,0.05836926,-0.0061325263,-0.02080991,-0.048263725,0.012134858,-0.029496718,-0.061011754,0.011851033,0.004341349,-0.03272402,0.037078187,-0.03330893,0.01290468,0.012997122,0.0029857282,-0.01949336,0.016880894,0.011793128,0.013108302,0.029780006,-0.050701514,-0.026493296,-0.0009698791,-0.044646416,0.014230179,-0.010218405,-0.0067434544,-0.020023132,-0.008052973,0.01845776,0.028115649,-0.034649257,0.014077298,0.013120004,0.05659437,-0.0064553106,0.0053811516,0.05370667,0.0053972066,-0.049619604,0.03403206,0.022386096,0.028952073,-0.018659934,0.009075931,0.0013404121,0.006213312,-0.035161067,0.022777442,0.006849005,-0.0063751726,-0.025293415,0.0017257215,0.028244382,-0.0042323135,-0.031061051,-0.020618796,-0.040584557,-0.004376511,0.027291775,0.02316248,0.014199574,-0.010338722,-0.00998605,0.028464591,-0.03732959,-0.0070161377,-0.020534262,-0.032937482,-0.0135643305,-0.0029115658,0.026359282,0.0053271744,0.017195445,0.008689162,-0.00077664613,0.010436508,-0.0042406134,-0.029230462,-0.01778132,0.0007763066,-0.009730381,0.040128116,0.01994229,-0.006532783,-0.02545943,0.065291464,-0.0022375283,-0.00592681,0.04556623,-0.01607759,0.06374764,0.014857903,-0.04390024,-0.042867336,0.042545516,-0.028754028,0.053862236,-0.025636615,-0.027025823,-0.07176393,-0.029036932,-0.00959263,-0.060664505,-0.059503824,-0.05650565,-0.028126841,0.0032717995,0.010015819,0.011022851,-0.01979978,-0.002271988,-0.06732535,-0.001573481,0.021628687,-0.011751103,-0.017619424,-0.021177579,0.02511253,0.068221524,-0.0019531774,0.031983145,-0.032001853,-0.00019427197,0.021821652,-0.0046445816,-0.02664272,-0.0036270388,0.03945995,-0.04244738,0.023015372,0.044991754,0.010927776,0.006306852,-0.043809548,-0.03727284,-0.020601619,-0.023197604,-0.052823056,-0.05421992,0.037120737,-0.009083149,-0.0003685203,-0.014820812,0.071515895,0.0046985373,-0.011860445,-0.049013667,-0.042532917,-0.043700654,-0.052669894,0.03641008,-0.022888487,0.030248515,-0.038311303,0.002620723,0.037702218,-0.012927636,0.0026589364,0.07895542,0.0044153384,-0.0054349406,-0.05185657,0.0141719645,0.028643113,-0.04383276,-0.022592032,-0.013897625,-0.0290694,0.009707748,-0.04117868,-0.04785848,-0.05347221,0.022577843,0.09092981,-0.014627019,0.012968196,-0.014322988,0.005178156,-0.04849668,0.019529175,0.037622035,-0.020700434,0.055362433,0.0009112044,0.013188501,0.03719237,0.009216675,0.02528769,0.03233234,0.032159522,0.035956603,-0.04527094,0.057276838,0.053793393,-0.024991354,-0.04000447,0.055472653,0.00009104193,-0.05831391,-0.032228526,0.014300573,-0.009977048,-0.026521655,0.0042405385,-0.024426183,-0.00684985,0.011865977,-0.017767986,0.030784804,-0.001450457,0.017501976,0.04871863,-0.0462567,0.02258517,-0.015946649,-0.0027696055,0.007439329,0.01427325,0.018962078,-0.03640166,-0.0075890264,0.027168512,0.011552588,0.06607797,-0.023101278,-0.041641522,0.04283604,0.00026824215,-0.041227523,0.009201683,-0.012205167,0.004907369,0.027340598,-0.06513472,-0.0138004795,0.0040819226,0.004757891,0.010500971,-0.04074336,-0.00374003,-0.052508313,-0.04921824,-0.025137877,-0.052030172,0.0044872724,0.011854655,0.009174171,-0.0078020566,0.0107235545,0.039026327,-0.03393203,0.061312135,-0.018394375,0.06008237,-0.02532548,-0.044453688,-0.031029658,0.041222647,-0.07357111,0.0034593677,-0.024812981,0.014061091,-0.015444356,0.029834328,0.0127903,-0.0040181577,-0.07708966,-0.0087647075,0.055875998,0.022426601,-0.00074376015,0.029377472,0.03609002,0.0070554623,-0.019361442,0.027424127,-0.033826623,-0.025557326,0.010576148,0.00525758,-0.027517866,0.0009947212,-0.01887236,0.01198379,-0.02384726,0.020385591,-0.047637172,0.013868127,-0.04220028,-0.007187314,0.018487757,0.050701406,0.017210418,-0.012936568,-0.0008591083,0.04440076,0.004962012,-0.04014045,0.03187359,0.013054414,0.03413586,-0.024642564,-0.02542823,0.0127197895,-0.007641248,0.012848896,-0.0065031764,-0.037371315,-0.0067113675,0.008781928,-0.00551103,0.058998607,0.0036527268,-0.028817626,0.030278033,-0.01197988,-0.022920394,0.008575532,-0.07388034,-0.020366568,0.009874616,-0.019236945,0.01047259,0.039280295,-0.09545386,-0.038230594,-0.0076878434,0.00042929634,-0.00783477,0.016846115,-0.00441739,0.015982844,-0.049982306,0.015804287,0.006315192,0.0006889561,-0.037742607,-0.033381812,0.017434254,-0.007038588,0.011623705,0.009895785,-0.053389527,0.03911253,-0.011552631,-0.0026281746,-0.0041031977,0.023076432,-0.003727928,0.021888113,-0.0654559,0.032068048,-0.0126277525,0.016424308,-0.034522645,-0.009971787,-0.011370565,0.051347494,0.063700125,0.015199108,0.017173922,0.017822374,0.0378663,0.0032295978,-0.03866832,-0.005459926,0.03772177,0.028682036,0.030014211,-0.023471812,0.035442743,0.0028397904,0.025712984,-0.01823456,0.009590895,0.021429218,-0.015392807,0.0032581433,-0.024871364,-0.027409982,-0.023321642,-0.033752188,0.014839218,-0.03597309,0.0041267024,-0.014276171,0.021687606,0.007301104,-0.0117335925,-0.02389466,-0.02524427,-0.008032137,-0.014280894,-0.0058161067,0.00518739,0.028644072,0.029601438,-0.008596066,0.0054412433,0.017408999,0.00702177,0.004905126,-0.007824292,-0.04664243,-0.019449191,0.026258588,-0.015638266,-0.032692514,-0.060289647,0.058946904,-0.006737477,-0.0020049443,0.029284548,-0.04420891,0.032011896,-0.012230878,0.030400682,-0.03571421,-0.019344103,0.01952478,-0.013111997,0.0148798525,-0.010228311,0.014111053,-0.0023200668,-0.00062102993,0.019964823,-0.021180866,0.04204071,0.033192385,-0.053854164,-0.028226372,0.013490388,0.028421637,-0.021094307,-0.022923635,-0.02096171,-0.033199217,-0.00950241,0.013650236,0.005880609,0.011593552,0.005442724,-0.029883469,-0.013056707,0.04913657,0.00096745946,0.010887204,0.033042837,0.0039684763,0.002868781,-0.007918951,0.0040202094,0.0032275422,0.0496537,-0.060822282,0.053655174,-0.032779817,-0.061101973,-0.01105239,-0.036544483,-0.0073964274,-0.02455772,0.011290863,-0.05238282,0.024862258,0.025661156,0.0054539395,-0.011365156,-0.018390134,0.0054380265,0.081152715,0.06804511,-0.01814547,0.057042196,0.013323699,0.01411201,0.006423781,-0.047242235,0.014414705,-0.025538329,-0.020042246,-0.042979885,-0.0002977046,-0.021199137,-0.06274045,0.027856566,0.045672044,0.020166505,-0.053919226,-0.07469163,0.038556367,-0.035115708,-0.0305567,-0.022503499,0.06595734,-0.0005977048,-0.0052907933,-0.0076906052,-0.077346504,0.26562807,0.074847534,0.020779192,0.03845173,0.016784126,0.041348834,0.032692846,-0.012079179,-0.0336121,-0.030712392,0.035820488,0.009346196,0.0023239446,0.024129242,0.014469397,0.019703891,0.0022506223,-0.0015122993,-0.0021224185,-0.026579553,-0.022334613,0.04339681,0.033668306,0.013789776,-0.030436138,0.015845468,0.021813437,-0.032451708,0.0032107288,0.015843177,0.016001182,-0.014816625,0.023823896,-0.047373503,-0.05055043,0.02309199,-0.01822106,-0.029481411,0.0097263185,0.009771235,-0.040465925,0.020842567,0.026874494,0.008195821,-0.0007812107,0.04828332,-0.00335888,0.025198953,0.021460027,-0.020780187,0.047416363,-0.0019692758,0.04008279,-0.020466646,-0.03921205,-0.030319316,-0.0046372176,0.008543893,-0.01941203,0.02001672,0.0067281993,0.0045069,0.021942114,-0.0023842903,-0.011855116,0.029825369,0.034007803,0.023763428,-0.014041015,-0.016417047,0.019798182,0.0031216154,-0.03615367,0.0071135396,0.006154275,-0.0019291128,0.000086899105,0.016587237,0.039969597,-0.033630762,-0.007934778,-0.026151706,0.0053147036,0.022658065,0.014734809,0.047724064,-0.01248819,0.0139040435,-0.04223405,0.05004096,0.00017110036,0.024402888,-0.011977266,-0.01619672,0.028317515],[0.03604551,-0.0014483732,-0.020468675,0.007823298,-0.018267127,-0.025737938,0.011736236,-0.0021840555,0.031055968,0.030214528,0.032111954,-0.024014303,-0.008182089,-0.008084204,-0.01793895,-0.0074304133,0.002646139,-0.012746568,-0.042804185,0.009863084,0.026570404,0.034695864,-0.09341686,-0.018540407,-0.027882654,0.048742205,-0.024340905,0.0070955623,0.05752516,0.06073495,-0.053867687,0.013585741,0.047385294,-0.032273162,-0.033126574,-0.011560608,0.038980734,-0.015691703,0.00394062,-0.042579196,-0.0017463,-0.026792565,0.01921534,-0.029637093,-0.056201182,-0.026786176,-0.022559894,-0.010699917,-0.007889628,-0.03868646,0.015358546,-0.02268299,0.04653306,-0.010955771,0.025413804,-0.026673924,-0.030196432,0.015076639,-0.016007833,0.032152597,0.027347997,0.03821896,0.033497866,-0.06862383,-0.017949685,0.021367397,0.023171645,0.035828274,0.020754064,0.006066474,-0.011712504,0.026499758,-0.028984807,-0.003433328,-0.035840254,-0.010433816,0.014166551,0.005723199,-0.043086227,0.04882241,-0.019377762,0.036425505,-0.0019487333,0.02178295,-0.06325136,0.007214257,-0.010740816,0.028714128,0.018721147,-0.00575306,0.008032887,0.031038502,-0.00057544094,0.0126516195,0.0316189,0.016765539,-0.006455638,-0.005585519,-0.028214943,-0.028249964,0.026727475,0.021943338,-0.0040793163,0.075259335,-0.029191468,-0.016325312,-0.048944823,0.0065315496,-0.009138866,-0.009172705,-0.009760842,0.0051978757,0.018362831,0.018765386,0.0039855465,0.029015025,0.007438086,0.028685538,-0.018919077,-0.0045783874,0.036039557,0.0055369656,-0.0043366877,0.00057954894,-0.029989326,-0.015709866,-0.020925917,0.06892462,-0.055417173,-0.006038938,-0.011801876,-0.032128155,0.013626674,0.010598734,0.047763217,0.004715142,0.015383314,0.05016325,0.006214249,-0.0482431,0.07522235,0.0103132,-0.01651173,0.08477662,-0.023047494,0.043934446,0.010792104,0.026284855,-0.04818834,0.025259731,-0.058609936,0.020209063,-0.0036901315,0.058245417,-0.04652776,0.028296378,-0.00837607,0.008946367,0.008476731,-0.00088803115,0.006983951,0.028168384,-0.028417645,-0.013363468,-0.038682297,0.02273507,-0.036384586,-0.01900724,-0.011579164,-0.024831837,0.014001389,0.015215995,-0.011369927,0.0105665,0.0031243807,0.07840411,0.0010369114,-0.0105670765,-0.010523184,0.004449176,-0.012724879,0.006394475,-0.0030778479,0.027363334,-0.0046887477,-0.020315012,-0.012179101,0.00091110065,-0.014381961,-0.04566886,-0.0062264795,0.050432593,-0.032919236,0.04554252,0.004638536,-0.002359988,-0.0055455505,0.0037364403,-0.024369067,-0.073530115,-0.0034711405,0.047864065,0.005064254,0.05238939,-0.019770755,-0.045893736,0.024443831,0.045257177,-0.028509218,-0.011897627,0.049333416,0.047403373,0.022204366,-0.021857964,0.031050699,-0.010303565,-0.028310068,0.040379517,-0.037829757,-0.015496659,0.04790766,0.034142498,0.02119874,0.044132657,-0.0010544569,0.006782838,0.0077222423,0.024765244,0.0014274911,0.028874904,-0.017110512,0.036752857,-0.00638019,0.02572504,0.0395495,0.007246221,-0.000012300046,0.03142116,-0.0037662298,-0.011324984,-0.026070712,-0.014483469,0.030714493,0.051405225,-0.021932557,-0.0021203076,-0.0052962434,-0.022406474,0.026169976,0.004654082,-0.02591061,0.014491725,0.011031494,0.03827604,-0.050203398,-0.0101799285,0.022851398,0.027725816,-0.009558944,-0.037190326,-0.008921724,0.038285077,0.011473573,0.00893971,0.028238835,0.00093974196,-0.015591257,0.025316996,-0.021171514,-0.054822348,-0.029305562,-0.0339522,-0.08321569,-0.009175994,-0.043516554,0.019096393,0.013915736,-0.027940707,0.0052667866,0.025537511,0.01287347,-0.019316098,0.0052141654,0.04218917,-0.039851014,0.024619896,-0.017959487,0.018408615,0.0067674285,0.006592048,-0.022936203,0.011017903,0.009993151,-0.012519281,-0.0013585201,0.0071652518,-0.00588879,0.038299304,-0.04021155,-0.06330668,0.006846814,-0.036810502,0.0011739205,0.013947304,-0.025131835,0.005387602,0.017382363,-0.0074941544,0.05147179,0.017940072,-0.035372123,0.01656155,0.005216351,0.010271679,-0.055145413,0.010947874,0.012613712,0.041422155,-0.059876602,-0.02995535,0.013881807,0.0029865613,-0.015844844,-0.035755202,0.015566448,0.02953681,0.034426987,-0.09623609,0.041465476,-0.030329218,-0.06521175,-0.0360244,-0.046854027,-0.005058768,-0.014839552,-0.010410986,-0.010694776,-0.042145576,-0.00033328382,0.0320794,0.03898253,-0.09018893,0.027994461,0.03218524,-0.006973329,-0.0012580629,-0.0020888941,0.013550123,-0.0043074964,0.018134795,0.027101675,0.05558163,-0.0041256202,0.05267778,0.0078065586,-0.034061853,-0.011589638,0.025739161,0.028753215,-0.013073557,0.007456253,0.007003839,0.003481646,-0.025946308,-0.011506458,-0.027536102,0.00013109788,0.024364766,0.014410304,-0.031294893,0.034568686,0.009449875,-0.0745507,0.047559682,-0.025410889,-0.016386345,0.060838975,-0.019875996,0.0023730542,-0.035146844,0.0094133215,-0.022012861,0.02188973,0.05243303,0.053852126,-0.0028689115,-0.03130784,-0.02414553,0.020236647,-0.0106856,-0.04594245,-0.02348558,0.022741867,-0.020899411,-0.01041364,-0.01777049,0.02596236,0.005393059,0.037996557,-0.0054561277,0.003958052,0.009202261,0.014150423,0.02693601,0.013967637,0.0054746685,-0.009054011,0.037577707,-0.0025326214,-0.012277951,-0.028897768,0.020073801,-0.022863422,0.0065254434,0.008662667,0.017740319,-0.038702138,-0.009182093,0.053379457,0.022523835,-0.09807226,0.016170967,0.009755918,0.025911408,0.015246946,-0.044092752,0.02659132,-0.060044117,0.054209523,0.026061172,0.0060189622,-0.034610216,0.020660883,-0.041185677,-0.03939923,0.0065790648,-0.013890346,0.0016005861,0.0036246304,0.005984434,-0.0067104734,0.023933262,-0.0066220667,-0.04940833,-0.0046015712,0.011520729,0.03351924,0.041421644,-0.04720608,-0.0407051,0.009796888,-0.083059624,-0.0040401923,-0.017684326,-0.02403542,-0.023923222,-0.00592075,0.03228274,0.045470405,-0.04286808,0.0006548158,0.014014614,0.06542682,0.0006005676,-0.025307741,0.058555085,-0.007457585,-0.03884272,0.034682453,-0.023267882,0.013261991,-0.018633047,0.023926472,0.010404827,0.007230969,-0.013047301,0.030773494,0.010720733,-0.0075667934,0.0033210975,-0.017626584,-0.0021356728,-0.004056164,0.0035781935,-0.045512646,-0.03988674,-0.009377628,-0.002523334,0.00035270615,-0.008115581,0.013081492,-0.009083244,0.009771081,-0.061859764,0.012261606,-0.018687733,-0.02056594,-0.011119039,-0.017479882,0.035203133,0.031232093,-0.024521282,-0.021291725,-0.0011901351,-0.017312754,-0.006430543,-0.03216594,0.0080048535,-0.0039817095,0.008662855,-0.021088827,0.010430726,0.009922514,-0.0078089763,0.079353906,-0.005325639,-0.024723388,0.0380868,-0.023011882,0.027632454,0.053837556,-0.05295226,-0.027534517,0.049655054,0.00012955871,0.016029509,0.012510936,-0.030432284,-0.03030747,-0.040904813,0.014772711,-0.048219334,-0.041890632,-0.043002248,-0.032721844,0.0033157992,-0.006232596,0.006475441,0.030545855,0.0152057335,-0.04520121,0.011646954,-0.012108353,-0.041204266,0.005551594,-0.04601194,0.0060228524,0.09867258,-0.018771905,0.040240485,-0.018708685,-0.03331128,0.006417336,0.0009065298,-0.05627245,-0.010290185,0.0010260164,-0.019293742,0.045663077,0.05107819,-0.00583957,0.031463653,-0.037457615,-0.03811136,-0.026296815,-0.002895389,-0.02703341,-0.0123813255,0.032050323,0.0019102426,-0.021039864,-0.016986696,0.04878019,0.017129036,-0.009906257,-0.06057805,-0.02109764,-0.04831401,-0.033546936,0.012155367,-0.016107583,0.012846641,-0.051920164,0.011911935,0.042445865,-0.010779573,0.009857836,0.038316578,-0.010399246,-0.006852621,-0.008315892,0.04326957,0.02522141,-0.030812861,0.019078951,0.012558602,0.013415942,0.000791781,-0.016529186,-0.034146596,-0.029809894,-0.017168516,0.048408583,-0.039071754,-0.008014772,-0.029248673,-0.0055948435,-0.05190525,0.008392255,0.04190718,-0.013658184,0.023350438,0.0016830802,0.013872644,0.039413903,0.006085723,0.01570684,-0.006587506,0.027533289,0.028607685,-0.029481651,0.042505633,0.05417084,-0.035593603,-0.054348007,0.013040874,0.013572447,-0.04677083,-0.04949989,-0.014090182,-0.0111574745,0.022709107,-0.038323216,0.0031832375,-0.012098029,0.016137496,0.01352975,0.03127501,0.012188519,0.00315472,0.037356593,-0.013766964,0.015813062,0.026082698,0.014585699,-0.011367028,0.008092128,0.029847514,-0.017362705,0.0144496495,-0.00047687744,-0.00583399,0.030295102,-0.038474068,-0.045357503,0.046746146,-0.008440222,-0.013381688,0.014403255,0.033975378,-0.03097056,0.0037701246,-0.053475577,-0.009119877,-0.0016820205,-0.023634365,0.0017199764,-0.050673753,-0.018510005,-0.070645586,-0.03526205,-0.021662762,-0.040153243,-0.0024802855,0.030679902,0.0070162187,-0.007930825,-0.009141186,0.030279351,-0.04865689,0.039919112,0.001035077,0.064173594,-0.035765894,-0.042659122,-0.008592965,0.037657846,-0.053552683,-0.022619912,-0.00057953206,0.027062144,0.02336263,0.018523676,0.035104454,-0.00081919105,-0.050483584,0.008100173,0.012549502,0.03695035,-0.02009957,0.04230868,0.062740184,-0.022431027,-0.019438572,-0.025917105,-0.021782842,-0.037792258,0.010163599,0.019801138,-0.039502714,-0.0043551573,-0.027383482,0.01109414,-0.03842711,-0.0047531608,-0.02036321,-0.007550758,-0.024080684,-0.008712384,-0.0190815,0.02507788,0.02314338,0.003255862,-0.017750977,0.044645898,0.021914477,-0.03042389,-0.008778839,0.009679901,0.06140091,-0.009653933,-0.015146866,0.030610189,0.010892105,0.01777261,-0.0036500895,-0.026378477,-0.020483473,0.019608784,-0.0042446153,0.031003896,0.013277723,-0.024086552,0.025559738,-0.024328593,-0.015767818,-0.009657883,-0.047643997,-0.0072144507,0.029382167,-0.03768299,0.0006858293,0.027978752,-0.087681,-0.02433224,0.006237863,-0.018514814,-0.0051962635,0.026257113,-0.0011574778,-0.016487448,-0.06023004,0.02043249,-0.012548059,-0.008232001,-0.042470388,-0.018944526,0.025163367,0.008481412,0.0141605595,-0.0010116555,-0.048141684,0.029359046,-0.059174094,-0.010083924,-0.011408213,0.00033023252,-0.0073439535,0.036082778,-0.024573606,0.04892543,0.010083486,0.032091845,0.01692441,0.0020323964,-0.031997446,0.035189167,0.06675425,-0.0013676889,0.019985385,0.01565378,0.047798976,-0.010514705,-0.031465307,-0.055427127,0.071062125,0.049490612,0.0077161663,-0.04731965,0.04909693,0.0106725255,0.05094743,0.0074749743,0.017184269,0.0048547937,-0.047981866,0.016623072,-0.008571507,-0.05521819,-0.0006388931,-0.063401386,0.023183698,-0.042222958,0.002161199,-0.030525405,0.020098407,0.03466972,0.01018305,0.012809028,-0.03695578,0.016485654,-0.0042612725,0.05253395,0.019338379,0.011978514,0.0124514075,0.035055675,0.004886096,0.041206192,-0.008547749,0.020071944,-0.0071578124,-0.020235285,-0.036157425,0.008159298,-0.0081896,-0.007092857,-0.04544309,0.036695883,-0.0061559607,-0.04285649,-0.008483053,-0.056954913,0.0046278224,-0.05500014,0.0352233,-0.013855142,0.03440785,0.019320536,-0.008566522,-0.0011188012,0.0009335598,0.01725438,0.03112532,0.027795859,0.06833147,-0.018427767,0.05113598,0.019485272,-0.040437102,-0.029295575,0.018601213,0.013904134,-0.010603221,0.00079569884,-0.058859747,-0.031615406,0.0048125247,0.019156022,0.0034399081,0.0337378,-0.004815768,-0.08888174,-0.025863972,0.033697832,-0.03209377,0.000023189687,0.009405961,0.009164119,-0.005927987,-0.0064655384,0.004504682,-0.015942097,0.02047954,-0.03578702,0.05529303,-0.057261124,-0.033516884,-0.019608816,-0.03827017,-0.00008097428,-0.044448692,-0.0034298815,-0.045699213,0.028300973,0.027607407,-0.018054692,0.004094079,-0.010549484,-0.021150991,0.037522253,0.044320956,-0.00089245767,0.090387866,0.022257991,-0.007848056,0.006525919,-0.020798495,0.063270606,-0.004757521,0.010521234,-0.04616811,0.017650723,-0.038903195,-0.057963174,0.020604374,0.077931665,0.021829838,-0.037162125,-0.045607757,-0.003250199,-0.028873192,-0.019185983,-0.009369335,0.03311811,0.030007383,-0.011293686,-0.0037354864,-0.059877027,0.2522051,0.080370806,0.02875061,0.032878973,0.0029958854,0.009184843,0.005048921,0.0021690505,-0.04029007,-0.048376985,0.010706751,0.014404203,-0.010194044,0.02548741,0.00026618407,0.050658494,0.0072028236,0.003310622,-0.0077518844,-0.044996385,-0.017002165,0.013430297,0.022882542,0.03719504,-0.020414619,0.01778408,0.01654567,-0.020976702,-0.010358132,0.010235828,0.019004764,-0.044503763,0.040536802,-0.058264203,-0.04318342,0.06618992,-0.019637352,-0.05913822,0.032352507,-0.007776264,-0.027048983,-0.00035413718,-0.007856395,-0.0011373842,0.042218238,0.036761332,0.0036781137,0.053433117,-0.002823645,-0.011863395,0.0674596,-0.0191189,0.02363191,-0.02946708,-0.06179861,-0.01827235,0.012355572,-0.0061148205,-0.02107962,0.011481706,0.023278303,-0.016053876,-0.011820635,0.0054189996,0.009694593,0.02946205,0.03424056,0.029460624,-0.025863184,-0.014925099,0.013746663,-0.021864075,-0.035873372,0.03886389,-0.014023217,0.00091753335,-0.027112706,0.03464448,0.0061109536,-0.054541316,0.0016114886,-0.014894698,0.014231139,0.0121989995,-0.026952362,0.06446786,-0.0038214317,0.020023208,-0.0367225,0.052164506,0.0056437063,0.020739,0.024131848,-0.048983287,0.015403404],[0.043812096,-0.014602592,0.026100682,0.036088042,0.0013783069,-0.013486479,0.037615985,-0.048006266,0.0072296057,0.027967168,0.03772079,-0.02085222,0.017647084,-0.010044735,-0.03874175,0.021848839,-0.017408596,-0.0019330431,-0.07944437,0.018181011,-0.002441086,0.017556809,-0.1059755,0.018570684,-0.019994589,0.04899498,-0.012636474,0.0039742817,0.043035217,0.07652637,0.0010092956,-0.022661047,0.053018656,-0.036637932,-0.038397066,-0.026534138,0.046292707,-0.03170991,0.025429055,-0.035317563,0.03673057,-0.04324777,0.028949445,-0.039011765,-0.053886283,-0.02238271,0.0014600166,-0.07368492,0.0050811456,-0.053030092,0.0026638955,-0.0487264,0.011701724,-0.016245572,0.040464655,-0.038894765,-0.014232962,0.008652682,-0.013270585,0.021384196,0.024409795,0.042606104,-0.0022683723,-0.0686444,-0.023711171,0.032804325,-0.002321485,-0.014103459,0.03683799,0.0014278088,-0.034068104,-0.010119658,-0.0034306906,-0.009848403,-0.027838083,0.013041124,0.03718146,0.023937898,-0.050538823,0.029819371,0.016339604,0.012423645,-0.0030729482,0.023028634,-0.047430642,0.0174303,0.015451447,0.05777653,0.032826807,-0.02723963,-0.014151984,0.012235028,-0.030578354,-0.018582644,0.036142964,0.014402788,-0.020426212,-0.03635613,-0.06349959,-0.0030363027,0.012571949,-0.0073638926,-0.005798714,0.059157994,-0.045641802,-0.013570866,-0.022197902,0.031004703,0.015544633,-0.03236537,-0.017913973,0.04132596,-0.01000896,-0.012083312,0.0024927007,0.012934372,-0.015120023,0.029222766,-0.014905022,0.0072006183,0.024945647,0.04009595,0.0049925963,0.018168673,-0.03084722,-0.047974635,-0.0436653,0.068756096,-0.009783062,-0.011278938,0.01938173,0.00027151432,-0.012676261,-0.007917064,0.033521082,-0.0073532257,0.022993036,-0.00829496,0.03689418,-0.020945514,0.06301653,-0.0016394465,-0.04276092,0.063676044,-0.00041364573,0.04774542,0.0068013263,0.04771015,-0.07098818,0.038890574,-0.021006629,0.014633243,0.0391596,0.039088916,-0.024051642,0.055836935,0.008830708,-0.022822747,0.0019427027,-0.0003765352,-0.025980782,0.006102288,-0.019929513,0.032695193,-0.046949197,0.04298616,-0.047115237,-0.020360917,-0.04276001,-0.007019457,0.034539055,0.025303926,-0.013887596,0.028196394,-0.0044400813,0.055874296,0.013878306,-0.024383554,0.048669454,-0.005659891,-0.030327128,0.0043179123,0.011269253,0.0491594,-0.002368503,0.020204308,-0.004240906,-0.00064337376,-0.008640196,-0.06389343,-0.02406498,0.055926837,-0.06551305,-0.002388151,0.010245733,-0.023461333,-0.05638033,-0.062095333,-0.011986273,-0.05286604,-0.011137129,0.03648352,-0.007888952,0.044692792,-0.018640717,-0.02948278,0.022046648,0.047383998,-0.018599905,-0.01152758,0.033939686,0.05638844,-0.034285907,-0.011152845,0.011268139,0.0019737314,-0.03497136,0.050721526,-0.056574807,-0.02914106,0.0075677177,0.0075606615,0.000367066,0.050749402,-0.0006107903,0.0014451089,-0.008542413,0.051752597,-0.02524739,0.0148293,-0.013557485,0.019316427,0.0069041243,0.0210872,0.02067187,0.013416519,0.027311778,-0.00019368535,0.008990036,0.0031359864,0.010067514,0.01485968,0.016161544,0.06222314,-0.019651292,0.065008044,0.004078226,0.020777037,0.008411435,0.027604809,0.03126166,0.01964325,0.00601092,0.036312718,-0.062246427,-0.0035500857,0.011978442,0.054754224,-0.051049087,-0.032610662,-0.023898263,0.054915134,0.012661579,0.028647576,0.029615296,-0.012972034,0.015091156,0.0444867,-0.0022049756,-0.03068133,-0.02970537,-0.04640946,-0.06196861,-0.004849265,-0.043234333,0.0064935423,-0.00028600157,-0.02098556,-0.019958902,0.019125188,-0.01715595,-0.03000894,-0.010105159,0.01890557,-0.010578392,0.030484991,-0.02640904,0.007743327,0.035166845,0.020737497,-0.028785683,0.014497491,-0.018130004,-0.02652169,0.0056688343,0.0023816617,-0.042417713,0.009385187,-0.044229932,-0.049334593,0.015650501,-0.0069267503,-0.022222959,0.0086983135,-0.027873712,0.022758195,-0.009037892,0.016263409,0.06203027,0.033033762,-0.032639567,0.05485021,0.006581786,0.03125219,-0.062964946,0.0091747185,0.027074318,0.024000032,-0.047828518,0.000114280316,-0.025488183,0.013075281,-0.02832108,-0.009324957,0.0036862816,0.026127573,0.013791169,-0.09606217,0.012924627,0.0076033995,-0.05375238,-0.027265774,-0.031752218,0.026747188,0.020601599,0.008843885,-0.0072093676,-0.025099374,-0.049245447,-0.0074766586,0.05143316,-0.046676334,0.05377458,0.010280549,0.0028557656,0.0056397505,0.01229148,0.034957975,-0.026005467,0.007968687,0.012359881,0.049179256,-0.009721228,-0.006103299,-0.0026786833,-0.0070661926,-0.026699185,0.015980978,0.049014613,0.021342244,0.014139155,0.012812548,0.006065151,-0.056431506,0.010211148,-0.0672125,0.028062964,0.012935682,0.015981391,-0.055249475,0.01872352,0.011412232,-0.053338263,0.01867539,-0.005775482,-0.0148534635,0.06310146,-0.009742641,0.03465718,-0.014639887,0.005823781,0.007951843,-0.0071281684,0.037039552,0.054577786,0.018362075,-0.0325879,0.0020256443,0.013674988,-0.023039598,-0.048620816,0.008233933,0.02545933,0.0070213554,0.0038759806,-0.045225874,0.0044504004,0.021507556,0.043863032,0.011310552,0.015947642,0.00822982,-0.0024256401,0.049364787,0.023281805,0.034861486,-0.057579134,0.049745042,0.015664306,-0.008909291,0.004893335,0.012706547,-0.003441149,0.0029591278,0.0022133312,0.012769988,-0.03909891,-0.0006129163,0.0070025353,0.004918953,-0.052441973,-0.0076357736,0.0018202292,0.006775139,0.0027450342,0.0018441334,0.03079164,-0.029509816,0.036613986,0.020340092,-0.006294819,-0.017890058,0.017001402,-0.042189185,-0.03176616,0.034257073,-0.029720923,-0.024608193,0.023897104,-0.024846183,0.019541832,0.018097201,-0.0063177356,-0.0052655484,0.019573895,0.017551893,0.031775296,0.013469506,-0.036387436,-0.001723947,0.03385623,-0.05102082,0.014814992,-0.04017637,-0.0015141643,-0.01791845,-0.0035026742,0.027731026,-0.012070636,-0.013018425,-0.015972655,-0.021847151,0.04600321,-0.032839064,-0.0016845849,0.08265515,0.0124576315,-0.05597311,0.026404392,0.03267647,0.009509985,0.03875409,-0.0013619132,-0.0050954693,0.0046866816,-0.035339933,-0.016892118,0.0033016957,-0.010379016,-0.013734308,-0.021784563,-0.010297172,-0.018276893,-0.014853066,-0.015481036,-0.04095083,0.0076770573,0.0044380054,-0.007116995,-0.041935742,0.003927857,0.023906365,0.011878193,-0.040849593,-0.0017689184,-0.015437628,-0.05234515,0.016616317,-0.009577422,0.0149872815,0.03828025,0.00075754646,-0.0034653952,0.00242215,0.014010768,-0.015363401,-0.038193397,-0.011426348,-0.01702793,0.0012177464,0.024063187,0.036405332,-0.0033898463,-0.023208613,0.030945694,0.039435383,-0.033114824,-0.008059626,-0.030652404,0.022955334,0.021346878,-0.023339018,-0.028119324,0.03670848,0.009214441,0.008364893,-0.0011239736,-0.032877877,-0.05001113,-0.045660656,-0.02970478,-0.039792173,-0.04883103,-0.008769943,-0.01849837,-0.008948963,0.003857039,0.03702751,-0.022380656,0.029555008,-0.060786344,-0.008470926,-0.016594036,-0.015552734,-0.02710304,-0.017713226,-0.029303074,0.05785724,-0.015139493,-0.006598774,-0.017608851,-0.0007526076,0.0064605433,0.028648285,-0.033902153,-0.04601862,0.014315005,0.01223543,0.033349335,0.02508801,-0.0050218226,0.04194726,-0.024871334,-0.05683057,-0.024824914,-0.04391184,-0.0428248,-0.0008759089,0.026597742,0.0015213646,-0.008121677,-0.01410715,0.059419464,0.027811078,0.00038582797,-0.03402438,-0.06994343,-0.051308144,-0.03386069,0.029034758,-0.034252394,0.030384013,-0.005680082,0.00651637,0.051544927,-0.025586957,-0.023130825,0.052855935,-0.024455315,0.017062299,-0.05860069,0.03456001,0.007760541,-0.055744756,-0.014430006,-0.03225657,-0.016469156,0.018755604,-0.02285512,-0.076460734,-0.027964968,0.030397069,0.059604626,-0.043386433,0.027744628,0.005029113,-0.00719052,-0.052759454,0.03150833,0.053391404,-0.020047402,0.04111972,0.01772503,-0.041945096,0.04242266,0.008767822,-0.0040007867,0.020418337,0.031596884,0.028297238,-0.018253734,0.03285779,0.06191316,-0.032370824,-0.05044134,-0.004978042,0.020684516,0.0013595253,-0.027446648,0.055187073,0.02286387,-0.019521842,-0.03761336,-0.0007881486,0.027185693,0.028074719,-0.014692797,0.017607933,-0.0074205417,0.010127625,0.04101781,-0.0236704,0.03573754,-0.037136454,0.009435263,0.034654956,0.011279025,0.01784101,-0.039792642,-0.010569128,0.01302476,-0.028663943,0.037138734,-0.014698167,-0.0174282,0.04047698,0.0032364216,-0.01027034,-0.009402157,0.0312861,0.0019124164,0.019935148,-0.037376,-0.017698124,0.016683215,-0.02767401,0.00023606006,-0.022098642,0.007499415,-0.035150804,-0.05914207,-0.027206024,-0.0045254007,0.009137651,0.043179613,-0.03331666,0.051615056,-0.02446508,0.053843904,-0.044729065,0.050101694,-0.01296244,0.054315623,-0.035525404,-0.05410979,-0.032933746,0.02549058,-0.044575587,0.0069585782,-0.041002695,0.010191189,0.0024399054,0.040803146,0.016005028,0.062990844,-0.022970777,-0.022946563,0.032237083,0.035644054,0.006556502,0.038249437,0.023460913,0.023707762,0.018630117,-0.05868314,0.0097092455,-0.07807864,0.0020283486,0.007595272,-0.049736924,-0.024148151,-0.07108926,-0.02905377,-0.01386431,-0.003304595,0.023788722,0.0048030694,-0.051605064,0.004736151,-0.009684901,0.032642763,0.004193353,0.028507102,0.025878564,0.0023049358,-0.008673964,0.0115178125,0.00918307,0.031405695,0.05958376,-0.0037626277,-0.008236382,0.023366068,0.0022347956,-0.0138583565,-0.01602686,-0.022300323,-0.044176847,0.033831924,0.019533787,0.007816225,-0.008655149,-0.009790465,0.0217736,-0.0070120185,-0.04377979,0.010332526,-0.06799225,-0.05063432,-0.021188304,-0.01704243,-0.042444438,0.0021312342,-0.025560388,-0.021120919,0.013418674,-0.01210374,0.03499731,0.03550991,-0.0006540445,0.03935105,-0.021442546,0.0043598586,-0.010903058,-0.0003643305,-0.031367384,-0.048170093,-0.013106174,0.014760147,0.0007243114,-0.0023096912,-0.03786404,0.0059357574,-0.023692401,0.005763017,0.015323154,0.053939316,-0.0031981848,-0.015177682,-0.03884135,0.053960796,-0.002443133,0.019443206,0.021480134,-0.009148216,-0.0073208166,0.061526522,0.022653142,0.015566911,-0.0028444312,0.026548311,0.021327225,-0.015460541,-0.02361911,-0.035819747,0.020672977,-0.016719379,-0.0038808947,-0.026864469,0.0302115,0.0027808694,-0.0025650675,0.013993799,0.032910343,0.0023086234,0.004623302,0.00198216,-0.017801633,-0.012484631,-0.02656795,-0.034455188,0.010895349,-0.004852882,-0.033487786,-0.039462574,-0.03330244,0.00061162614,0.0065939194,0.000010938059,0.005043193,0.018488862,0.015206641,0.036033064,0.04514915,0.020182436,0.00053205085,0.013303724,0.01658197,-0.009359707,0.0058388603,0.014758651,-0.021939212,-0.03916784,-0.008028013,0.01258146,-0.0068948693,-0.046585295,-0.04556734,0.08811494,-0.033751413,0.006785383,-0.00085350405,-0.013417953,-0.015804349,-0.062821485,0.032722227,-0.025040472,0.00151741,0.0238435,-0.026859391,0.012961225,0.018594341,0.0112589495,0.0034623316,-0.01436288,0.029561237,0.0000017125133,0.050668143,0.033627857,-0.0059638945,-0.023935257,-0.009351489,0.015046701,-0.013709835,0.035993513,-0.012390062,0.00974394,0.014745142,-0.019495705,0.00819848,0.04055434,0.0007802841,-0.06246846,-0.02417642,0.025910333,0.0149152
+8000
+55,0.036658194,0.02912317,0.016426455,-0.032920368,-0.003840178,-0.0065903002,-0.003610422,0.0089629395,-0.067243986,0.024820717,-0.042781968,-0.082615614,-0.0134139145,-0.042533517,-0.010513032,-0.0038666094,-0.03158228,-0.051323164,0.03727177,0.031612456,0.0034546524,0.02420921,-0.037732076,-0.011955842,0.09383662,0.01900403,-0.019942328,0.07531465,-0.036289893,-0.018064314,0.035443775,-0.0014938673,0.040402707,-0.027550988,-0.03126021,-0.029181065,0.007423242,-0.047695268,-0.055854313,0.039024446,0.029942371,0.033165492,-0.029450968,-0.07870615,-0.00010149767,-0.039397996,0.00007851608,-0.0072503258,0.045530304,0.015542179,-0.006952851,0.02687486,-0.07607512,0.24640658,0.059035335,0.03339766,-0.007410758,-0.013980155,0.03797659,0.008565706,-0.008449293,-0.029360326,-0.017316775,0.035972573,-0.024811145,0.0097432025,0.023817437,0.042705696,0.052205473,-0.02132308,-0.014435168,-0.02052223,0.0010049158,-0.025264071,0.011221509,0.018257547,0.039756425,-0.003972038,0.021432156,0.042502463,0.001454413,-0.007890614,-0.012453292,0.006617659,-0.022976749,0.006412345,-0.032256853,-0.022300571,0.059041936,-0.01112441,-0.034660745,0.00091314386,0.022623293,-0.026943982,0.0032516008,0.029671788,0.019979112,-0.009586191,0.067661956,-0.044709317,0.0063966024,0.025514139,-0.026597843,0.03396492,0.008363018,0.019954529,-0.048272032,-0.032826062,0.00858572,0.010974713,-0.02292972,-0.018113546,0.024370331,-0.025703695,-0.03719494,-0.022206558,0.021469321,-0.022792803,0.021465477,0.038157895,0.002431077,-0.016073868,-0.024297565,0.014483027,0.010262114,-0.008354961,0.0067204833,0.029653247,-0.016947431,0.00060655834,0.038330123,0.0035669268,-0.0065636486,-0.018505204,-0.0048875175,-0.017178694,0.009138132,0.018963423,0.06592372,-0.01729916,0.0027923107,-0.052152753,0.050131362,0.008549686,0.026716046,0.010074383,-0.012045935,-0.00016211398],[0.043090805,-0.036618873,0.0104878135,0.02735108,-0.051454697,-0.003732551,0.0137423035,-0.0080202,0.028378695,0.03456865,0.013323931,-0.0138973035,-0.015200764,-0.03723694,-0.017953109,-0.0016478426,-0.01530606,-0.0000650858,-0.071378715,0.008766316,0.020709092,0.0063521536,-0.12227325,-0.00845772,0.011829413,0.0553955,0.0016434739,0.00866458,0.05350442,0.050380383,-0.01914002,0.0091703525,0.0059441905,-0.032077745,-0.012541542,-0.027359935,0.05612249,-0.019174408,-0.0006780703,-0.013307282,0.01571287,-0.013571535,0.016610969,-0.042371973,-0.04583878,-0.031183489,0.003697207,-0.011666979,0.003679824,-0.043395337,0.012080737,-0.03278488,0.052936826,-0.00984509,0.028389677,-0.016391395,-0.04095679,0.016295444,0.012767665,0.00910287,0.03600762,0.04271157,0.029496096,-0.052133217,-0.0119317025,0.023120603,0.013896712,-0.023047106,0.0048690494,0.0030898799,-0.039137036,0.015143344,-0.007076722,-0.013087205,-0.0063785296,0.012939517,0.038810816,-0.03207701,-0.03453323,0.027084487,-0.011378496,0.024737045,-0.010322867,-0.000026758073,-0.03664263,0.0019862214,0.035631537,0.040574823,0.0059436853,-0.0027316674,-0.010971426,0.03422565,-0.0029148606,-0.012214149,0.025195686,0.042576842,-0.024732057,-0.016946672,-0.029424079,0.011373821,0.019190298,-0.0005765963,-0.003419361,0.047260586,-0.06681852,-0.006972771,-0.034620285,-0.0060675433,0.00242,-0.039330993,-0.040886905,0.01155694,0.017350985,0.0013322195,0.035193775,0.024981095,0.010186375,0.05888717,-0.039856687,0.009356416,0.006570644,-0.00023538517,-0.018031077,0.016099818,-0.0029642673,-0.04378575,-0.046668194,0.07769416,-0.03526019,0.0005209335,-0.009298114,-0.0038058914,0.0013378656,-0.005960291,0.04642473,-0.0041360664,0.007290421,0.005240517,0.036629744,-0.008005301,0.044725142,-0.008234807,-0.041299324,0.1014092,0.026224134,0.024302313,-0.009282318,0.016837804,-0.037677545,0.07774159,-0.04996166,0.019472672,-0.0003141562,0.05985276,-0.05104551,0.045455057,0.029076213,-0.0061236746,-0.0009192475,0.008550127,-0.009900826,0.0105802985,-0.004314398,0.030626865,-0.036397804,0.022891013,-0.03654734,-0.031435076,-0.016623806,-0.014576396,0.00039163302,-0.0016766936,-0.03021976,0.0065663005,-0.005804664,0.049249243,0.016848069,-0.014052982,0.034082584,0.017772028,-0.046754066,0.015534437,0.02371077,0.048864335,0.026731867,0.031650994,0.007416289,-0.026423674,-0.016850317,-0.05577454,-0.009261241,0.033065896,-0.049856592,0.0109722195,0.034541488,-0.012137591,-0.044575524,-0.01797444,-0.03753193,-0.038842645,0.019150624,0.04861729,-0.013866328,0.025843354,0.00040181563,-0.020917961,0.004371148,0.046186507,-0.022997456,-0.004771158,0.04092614,0.03074736,-0.0038936213,-0.015487658,0.023413848,-0.012997962,-0.050212204,0.050205857,-0.040575273,-0.020243324,0.003686466,-0.001910495,0.0052469634,0.029995602,0.019549347,-0.02855388,-0.011321897,0.027570205,0.009673688,0.0005036246,-0.03515563,0.048697233,0.017360093,0.01793938,0.017961686,0.040450986,0.047367096,-0.0074913977,0.02199691,-0.0043884204,0.018260261,0.020472778,0.038381144,0.05982948,-0.005954198,0.041170526,0.034030195,-0.035333823,-0.005189638,0.01699414,-0.0077076666,-0.0029164022,0.014534847,0.010780615,-0.080849476,0.01224965,0.039048888,0.055185083,-0.04605342,-0.03830656,0.013416882,0.05044154,0.004631916,0.04600846,0.02914834,-0.029002149,0.006003582,0.03894431,0.0042016297,-0.014049924,-0.0020784836,-0.053055752,-0.06535195,-0.020261088,-0.029861936,-0.016269086,-0.003865026,-0.00941726,0.0017361132,-0.008516931,-0.025476517,-0.023924898,0.019044232,-0.0024546832,0.0052027386,0.02263219,-0.019168133,0.049875993,0.006222962,0.010917393,-0.025870478,0.008216367,-0.011340946,-0.028469268,-0.004745751,0.016489508,-0.018771501,-0.004231521,-0.04252188,-0.050373584,0.0129134795,0.00019117817,-0.0059269117,0.0044612284,-0.016141703,0.011139622,-0.008104885,-0.027742965,0.05556757,0.025048513,-0.0701572,0.01623334,0.02653254,-0.008838664,-0.054680258,0.020105202,0.022620656,0.041198574,-0.07461007,-0.00845886,-0.019138394,0.049440805,0.011712679,-0.027561793,0.051697675,0.0046520517,0.046429224,-0.10071125,0.031046664,-0.01206263,-0.06182092,-0.057462722,0.015452585,0.022784593,0.021902336,0.0023037337,0.006769301,-0.043533854,0.0055532004,-0.022026084,0.06831774,-0.054854974,0.023995679,0.03762072,-0.010761916,0.011421236,0.020124795,0.0062317927,-0.023722066,0.017124487,0.025010573,0.05771946,0.0031937896,0.012283334,0.00000508564,0.0077457717,-0.03732551,0.022464823,0.043172657,0.0008034834,0.039732527,0.04055624,0.004097565,-0.02945586,0.009119762,-0.051356453,0.024682647,-0.012040851,0.0012056418,-0.052261345,0.056134615,0.011552216,-0.039250616,0.01830534,-0.0028236716,-0.009967733,0.054767795,0.0016231989,0.010261152,-0.035964396,-0.008094185,-0.012760071,0.0157215,0.035446327,0.06361578,-0.007824676,-0.020927675,0.01623555,0.013126824,-0.02493904,-0.051081832,-0.0072983257,-0.008125535,-0.0042593484,0.004083652,-0.04328245,0.030400477,0.012391981,0.00567905,0.00065861753,0.024724174,0.008377157,0.0028643245,0.019081663,0.035639357,0.023624698,-0.053795923,0.029602556,0.0044007595,-0.045783002,-0.020976856,0.0046548825,-0.012137658,0.019688537,0.026606267,-0.0018087295,-0.036669098,-0.034905884,0.036215957,0.006130133,-0.058863852,0.014641113,0.012876689,0.013019959,-0.025395095,-0.013379486,0.014805131,-0.06702404,0.016738988,0.0021912255,-0.006367885,-0.039603915,0.023288239,-0.057024203,-0.009912885,0.03972232,0.0011189124,-0.012732189,0.018883396,-0.015413387,-0.000691777,0.016891016,-0.02962138,-0.011184276,-0.015316718,0.0048580267,0.022396559,0.023430308,-0.03248777,-0.015357743,-0.003642015,-0.061363555,0.006141238,-0.03227939,0.010039358,-0.028879391,0.0017036857,0.009052754,-0.0022776288,-0.03807067,-0.0029645679,0.011446643,0.04912064,-0.019240225,0.0099286,0.05866197,0.021831332,-0.034756023,0.014618048,0.0009338147,0.021053653,-0.022350663,-0.008333607,0.0070146336,0.008822669,-0.027613314,0.01052202,0.0466451,-0.033585694,-0.014594757,0.0043651382,0.011771712,-0.021667222,-0.022910353,-0.03672809,-0.044298496,0.019273117,0.022040533,-0.0017159878,-0.023528682,-0.001776903,-0.00825099,-0.0021610782,-0.035205852,0.012036335,-0.027558587,-0.07798174,0.006721098,-0.016802074,0.037156187,0.04483321,0.004743981,0.0057075033,0.0005268392,-0.00052095426,0.011913168,-0.0253973,-0.021195684,0.004790341,-0.025300872,0.009895767,0.004102741,-0.023817077,-0.019832568,0.024322774,0.048807807,-0.041224927,0.02657994,-0.02080371,0.012081973,0.041217074,-0.0341618,-0.023708861,0.016834188,0.01380132,0.0224329,0.01756594,-0.035128098,-0.056692835,-0.025231568,-0.012148664,-0.06669219,-0.051362105,-0.012380167,-0.027644537,-0.0036707846,-0.019553194,0.017007224,-0.004382321,0.045667794,-0.05848967,-0.005084075,-0.0007504841,-0.02880856,0.009139667,-0.035512645,-0.033940412,0.042327713,0.0046014134,0.0031356276,0.002472533,-0.033785257,0.023118474,0.012524083,-0.037284613,-0.0029083218,0.02885646,-0.0148286,0.06415205,0.02890203,0.00039717232,0.046179704,-0.050804656,-0.04434763,-0.025432589,-0.011696188,-0.03205749,-0.035724677,0.05046007,-0.0019452128,-0.0093458565,-0.0028156673,0.04670907,0.03188028,0.030365333,-0.03763379,-0.049030695,-0.046812184,-0.022135498,0.0067557255,-0.0012934095,0.016729672,-0.02983247,0.017921098,0.04237339,-0.012775623,0.004203366,0.07192678,-0.009681726,-0.0068049333,-0.035691574,0.025066493,0.021619014,-0.07536986,-0.0072295438,-0.02221707,-0.0153753385,0.04294413,-0.019987477,-0.054907028,-0.043948535,-0.0088757435,0.028256856,-0.021305019,-0.0009493905,-0.012321461,-0.0004987962,-0.069936745,0.0039147283,0.044860125,-0.0070974897,0.026096638,-0.014910274,-0.0014395012,0.04141316,0.008382827,-0.008682374,0.012419783,0.022884171,0.04726541,-0.020834645,0.059190188,0.06278834,-0.03837739,-0.06276061,-0.0057842783,0.020370219,-0.017925229,-0.01184671,0.030977273,0.0016006401,-0.025459401,-0.026390374,-0.023043137,0.0012707161,0.03295321,0.0021582344,0.0020190252,0.0011537418,0.0056627356,0.01874448,-0.03812358,0.031863373,-0.021396665,-0.016611932,0.032802697,0.018888395,0.017677572,-0.030032687,0.019012634,0.009559822,0.009438644,0.050460223,-0.04989845,-0.015523684,0.026002476,-0.011161226,-0.037212953,0.01688384,0.022428036,-0.001329298,0.008805893,-0.067500435,-0.016277036,0.008196616,-0.013874946,0.003350319,-0.011401538,0.0048634578,-0.032631,-0.058542553,-0.035545018,-0.03342615,0.020001728,0.015114896,-0.008412948,0.041476354,-0.012751081,0.041280653,-0.03033871,0.03211995,0.02397199,0.052367643,-0.048285857,-0.04408315,-0.014526874,0.045281146,-0.09022551,-0.020715242,-0.04753601,0.033571057,0.0066057593,0.036231805,0.010231413,0.021452032,-0.044171512,-0.019633926,0.03266153,0.042255342,-0.00679289,0.04127122,0.043575786,-0.0065140408,-0.015759705,-0.019099949,-0.003373148,-0.051096,-0.01063337,-0.0038965438,-0.019529045,0.016118243,-0.06530004,-0.031595003,-0.0212083,0.024838565,-0.017571593,0.01922721,-0.035068944,-0.04407863,-0.030875554,0.00069988705,-0.0028881172,0.019164843,0.005766261,0.028863905,-0.0054079355,-0.010758847,0.02159429,0.023976255,0.04426982,-0.012966532,-0.012777583,-0.0016078928,-0.0043176957,0.007430939,-0.007956323,-0.022928616,-0.036968585,0.008100687,0.0048621395,0.04336084,0.031378675,-0.032844182,0.02702011,-0.020976543,-0.028292628,0.0016483975,-0.041177463,-0.036471676,0.015462697,0.005015654,0.0046606488,0.026389265,-0.049445845,-0.011054065,0.0152669065,0.00092308497,0.002794394,0.009420723,-0.007838668,0.01794473,-0.03649338,0.043784626,0.000078072255,-0.02798059,-0.020953583,-0.045934886,0.025336161,0.008316912,-0.010934912,0.009202642,-0.055143114,0.025499938,0.0008247014,-0.029186847,-0.0005399646,0.04540574,-0.008548016,0.017130628,-0.033096276,0.051522236,-0.0037285027,0.01994853,-0.0013612411,0.0038975244,-0.004671586,0.05709857,0.034559157,-0.01746534,0.016360397,0.0045975745,0.021295557,-0.006256975,0.0010245446,-0.019111324,0.03446703,0.014276443,0.015606683,-0.03980158,0.041946042,-0.0072580846,0.0048294924,0.00027896886,0.045097075,0.0042047417,-0.006199036,-0.0023089028,-0.017537653,-0.008326097,0.0024692905,-0.06829182,0.0190381,-0.02951217,-0.022612777,-0.045965377,-0.005425255,0.0387326,-0.010021701,0.017444741,-0.011131581,0.03481301,0.00022029798,0.0023250119,0.00951967,0.019355591,0.03343306,0.026266739,0.017678102,0.023384023,0.029002097,-0.00018583845,-0.019318994,-0.04988774,-0.021153051,0.010264246,-0.011244583,-0.016830334,-0.06986263,0.07528857,-0.033649776,0.008093325,0.019055177,-0.028415268,-0.006634398,-0.041551903,0.029656995,-0.03161634,0.01373794,0.015913328,0.0038481704,0.032031067,0.009584717,0.035861652,-0.013566495,-0.0275305,0.015580067,-0.0051061953,0.04795905,0.011049112,-0.02177804,-0.02477806,0.00024801673,0.0237811,-0.03471362,0.0048754686,-0.018955704,-0.007325599,0.008094016,0.0065036556,0.010823754,0.043818228,-0.008546408,-0.059194982,-0.024808206,0.03495274,0.020802336,0.033900037,0.0135823395,-0.004117853,0.02101264,0.012631472,-0.029094331,-0.007916925,-0.001445771,-0.06457349,0.05340754,-0.05647586,-0.054698944,0.0085819615,-0.040224876,0.0056631244,-0.012775638,0.004931979,-0.06368587,0.008428778,0.025184281,0.008264952,-0.012678096,-0.005780423,-0.035340533,0.07099983,0.055475,-0.058815036,0.07049708,-0.019274082,-0.008497979,0.032079123,-0.04044665,0.0596526,-0.009760793,-0.02443445,-0.033162143,0.017491337,-0.057303976,-0.044209693,0.035048317,0.044143196,0.032615837,-0.027674567,-0.06850575,-0.017786575,-0.037555143,-0.0210918,0.0039951,0.037880134,0.0003065526,0.0056281136,-0.00036667922,-0.07231548,0.28716078,0.057285447,0.028536992,0.029397802,0.009970214,-0.00003734792,0.022918718,-0.010813956,-0.047071967,-0.028372377,0.033274718,0.002537671,0.0009996991,0.02063757,0.021624574,0.055690397,-0.012329298,-0.00082269026,-0.054595668,-0.0076075154,-0.031828575,0.007973381,0.015953159,0.04821741,-0.0217976,0.0011954174,0.059995275,-0.026303984,0.0028282835,-0.011187335,0.0057784314,-0.030057453,0.018688738,-0.009067695,-0.045659207,0.028222943,0.014194618,-0.039722126,0.008989615,0.015992688,-0.031136034,-0.025716703,0.013176456,0.040742658,0.027145913,0.029844545,-0.024571812,0.017595,0.010415149,-0.020453893,0.049655274,-0.006232541,0.03232799,-0.06956357,-0.018793412,-0.008635032,0.040831532,-0.02806896,-0.021524033,0.0021117444,0.013792844,-0.018490667,-0.0022773987,-0.00482915,-0.027382534,0.0248536,0.04307347,0.024146851,-0.016097981,-0.034366548,-0.009161229,-0.034462865,-0.038099952,-0.0008848201,0.030195106,-0.0005159541,0.013299714,0.041230764,0.031895183,-0.0127878655,0.005707716,-0.0106126815,0.013587901,0.011115913,-0.014990379,0.04753325,-0.01840812,0.012112327,-0.052700248,0.05220533,0.0072062486,0.016490936,-0.0112540135,-0.042595673,0.013215797],[-0.01125528,-0.030704958,0.020740297,-0.004736547,-0.036381114,-0.025527421,-0.006753416,-0.0026726038,0.019361395,0.038734756,0.05454283,-0.004484494,-0.018596446,-0.021501971,-0.008746396,0.02231505,-0.013267806,-0.036957536,-0.029337581,0.000059536775,0.0069729765,0.028926013,-0.09487584,0.0074879588,-0.023178745,0.043686457,-0.02431826,0.016560726,0.06499161,0.02979724,-0.04881721,0.029541848,0.038399827,-0.023783438,-0.034553602,-0.0090724435,0.058829315,-0.021870013,0.0069113886,-0.03686134,0.032656025,-0.015997266,0.049440272,-0.05647399,-0.044118315,-0.0062068095,0.011768026,-0.03992628,0.027768945,-0.05877342,0.015993154,-0.018205252,0.051590998,-0.022397943,0.050274063,-0.02115663,-0.03347736,-0.018369285,-0.018108757,0.038326055,0.04741902,0.04127482,0.020146526,-0.050500404,-0.039154775,0.018127222,-0.017944552,-0.023755323,0.0006875883,0.0133682275,-0.00038641374,0.008515112,-0.00009655538,-0.0062892656,-0.045168743,-0.007275219,-0.0044426844,0.008787043,-0.03329591,0.06782096,0.0068620737,0.035732694,0.006992254,0.016857635,-0.01047308,-0.0017304274,0.012624352,0.04751444,0.030251613,0.011644454,0.0019971777,0.045746993,-0.04587282,0.01641704,0.038677163,0.013227002,-0.002165241,-0.011993439,-0.025659269,-0.011266604,0.03709954,0.027028143,0.0044512735,0.06840299,-0.04416976,-0.002959618,-0.0053453012,-0.012717723,-0.01816232,-0.0072071394,0.0019960317,0.009068614,0.058265705,0.02129924,0.02162262,0.04978154,-0.010647187,0.03209715,-0.03993901,0.0037914163,0.04739648,0.008309037,-0.03832026,0.0043466347,-0.0025274232,-0.021795304,-0.03134077,0.045185182,-0.054854438,-0.0061112335,-0.026603011,0.0005767523,-0.013502277,-0.002387468,0.042157684,-0.010913962,-0.002746551,0.00370622,0.023984522,-0.029650211,0.06982125,-0.019760253,-0.032737788,0.093809806,0.0068230173,0.054013606,-0.0090347985,0.016809966,-0.054248545,0.023388602,-0.011691083,0.011997214,-0.0091810115,0.05898397,-0.04858005,0.010419983,0.036932595,0.008094144,0.009583425,-0.00018183875,-0.011375219,0.02022693,0.015083004,0.015516882,-0.058480866,0.020071002,-0.023007652,-0.05154401,-0.0048883334,-0.006289691,-0.0020038104,0.014086187,-0.02309009,0.014574165,-0.01765202,0.03799626,0.005057049,-0.02948376,0.052744143,0.002117117,-0.015491376,0.030938907,0.03674674,0.048706815,0.011531583,0.01495731,-0.020411124,-0.021927431,-0.018857334,-0.071759194,0.008479371,0.052198466,-0.04193336,-0.0015413511,0.016274061,0.0018773515,-0.036428604,0.0051767337,-0.0089061465,-0.046836812,0.0017143618,0.028546935,-0.011426138,0.031020502,0.0035838936,-0.018885976,0.0027589037,0.061821613,0.011445611,0.011738371,0.007025794,0.04566635,0.019507613,-0.017161222,0.055803455,0.0034726,-0.053811833,0.02017769,-0.052318513,-0.01325296,0.025123669,0.0080270525,0.03931078,0.016017353,0.013103166,-0.02482953,0.0016865444,0.057408288,0.014670139,0.011492747,-0.04216024,0.026034655,-0.01643444,0.051949915,0.051529944,0.0005677416,0.026185956,0.03737116,-0.007830879,-0.00072399765,-0.020740751,0.01402314,0.044585023,0.035639636,0.011389333,-0.020633755,-0.0062773917,-0.033057515,0.0047109006,0.016321247,-0.027352035,-0.0049666488,0.016800264,0.026634695,-0.02279543,0.0023241779,0.06991774,0.041449495,-0.061609544,-0.040832736,0.0012878178,0.040353984,0.016552256,0.041180946,0.02909175,0.023357628,-0.0006460016,0.01189556,0.00096840714,-0.024831416,-0.00756367,-0.052696325,-0.06897609,-0.021807948,-0.007401552,0.0015604921,0.009637855,-0.034188326,0.023192648,0.012738864,0.0052625705,-0.021470191,-0.031060604,0.018419107,0.0035940276,0.06494166,-0.008560282,0.016689958,-0.0064722383,-0.008416343,-0.008109083,-0.015215915,-0.016490802,-0.0049970807,-0.003061032,0.0065148063,0.029783154,0.021880833,-0.060839985,-0.056334697,-0.00036021194,-0.024473125,-0.0076541267,0.0030988927,-0.020246398,0.007518474,-0.009492641,-0.013439631,0.045487773,-0.002002858,-0.085627496,-0.00037856033,0.025467625,-0.005686962,-0.025393732,0.027464518,0.0062105753,0.021494225,-0.037334256,-0.002704142,-0.00056599657,0.0123892445,-0.017152192,-0.07332969,0.031232847,0.01699621,0.036877874,-0.11039729,0.015366319,-0.014769928,-0.08014338,-0.031628232,-0.030522726,0.023980578,-0.0032170047,-0.005918937,-0.00051642867,-0.029512407,-0.037619617,0.01265184,0.035762597,-0.025352128,0.017501445,0.05121246,-0.021478742,-0.0012569539,0.015462886,0.011502765,0.0010346319,0.015325586,0.001086616,0.034506742,0.019988334,-0.011429087,0.00020736795,-0.0022321893,-0.037239928,-0.00087604765,0.021477545,0.014781238,0.000740333,0.016148113,-0.0014933527,-0.03768097,-0.03649351,-0.038727246,0.033663567,0.007166976,0.025840072,-0.07931338,0.018810382,0.015509546,-0.046905223,0.042368483,0.014336967,-0.03429395,0.06912508,-0.017510809,0.032451607,-0.012861659,0.016504666,-0.00050905306,0.028354745,0.03914949,0.06451695,-0.0071911234,-0.06336986,-0.002971463,0.0156215355,-0.017316611,-0.049161077,-0.054230362,0.009674956,0.015899615,-0.010193303,-0.040993437,0.020309204,-0.0025314547,0.016730744,-0.00616056,0.0059405603,-0.018457256,-0.0011476155,0.02027523,-0.0011086744,0.0081864735,-0.048023965,0.045714308,-0.022003224,0.0023309933,-0.040554795,0.026144823,-0.010191068,0.04157092,0.007388486,0.0044168895,-0.04468755,-0.0005103167,0.051656935,0.020600783,-0.072227664,-0.016187802,0.010041332,0.011111566,-0.013944666,-0.0517993,0.026155934,-0.05850838,0.007400607,0.004202533,-0.0026956254,-0.029341793,0.0061699706,-0.02900181,-0.013132029,0.03504337,0.01955394,-0.036310375,0.0012480664,-0.014412165,0.023293516,0.018875169,-0.020710288,-0.031902708,-0.0044766795,0.01044312,0.024471445,0.033146538,-0.0347308,-0.044471186,0.0055675744,-0.065710574,-0.031912196,-0.031695873,0.008405831,-0.02216112,-0.023065422,0.03514762,0.02498878,-0.028610965,0.014162261,-0.03311839,0.050605923,-0.014684997,-0.027729062,0.061915122,-0.0056681936,-0.059612192,0.030403435,-0.008286534,0.0056974157,0.0014746874,-0.00414145,0.0014716042,0.004794987,-0.0045120344,0.02205764,0.0049879365,-0.026904484,-0.018282725,0.007946479,-0.008539746,0.013338741,0.0026988625,-0.027525011,-0.05382082,-0.007688847,0.0013699548,-0.0010681659,-0.0042724307,0.028508238,-0.004515205,-0.01261824,-0.04596655,0.007885148,-0.010389946,-0.038380347,0.016435388,-0.020604441,0.024362436,0.04868831,0.006169895,0.0030862193,0.0028352265,-0.0133600095,-0.029726794,-0.049896132,0.019050568,-0.0284058,0.004397493,0.036582384,0.021025533,-0.062043384,-0.015324563,0.016849792,-0.008599522,-0.017139852,0.013494449,0.013029335,-0.0015022672,0.04183433,-0.046347838,-0.01820743,0.048460532,-0.006252497,0.034025744,0.0034322212,-0.033196013,-0.08332083,-0.010351472,-0.017350884,-0.06821381,-0.069671005,-0.011129897,-0.03466729,0.011104251,0.010059958,0.0014469337,-0.026751228,0.04082742,-0.06658991,-0.01162048,-0.013714707,-0.033088453,-0.01976793,-0.029141365,0.023401354,0.056057677,0.0006630226,0.030301563,-0.009157838,-0.030939749,0.0053429203,-0.0068011913,-0.025878148,0.010073485,0.03176658,-0.018149331,0.069680326,0.030550826,-0.016097568,0.028372224,-0.025701676,-0.018215407,-0.0134711,-0.019150088,-0.034121044,-0.008660204,0.038367953,-0.017919559,-0.024587775,-0.014223158,0.055476543,0.042736903,0.0033503412,-0.06016014,-0.021751346,-0.037181046,-0.027171364,0.041480407,-0.01034413,0.019870736,-0.02163334,0.017609209,0.022279669,-0.009751122,0.0060113496,0.06130363,0.029979939,0.004823602,-0.040143263,0.04719853,0.037828464,-0.036986366,0.004365518,-0.01932498,-0.010091654,0.03934022,-0.028612677,-0.04624915,-0.04379532,-0.00960101,0.057002008,-0.032189555,0.018160079,0.009692329,-0.004374252,-0.040796038,0.012224047,0.03747538,-0.04055273,0.028923295,0.005001176,0.012077527,0.05112718,0.026764685,-0.029642567,-0.031240348,0.04635655,0.04565829,-0.051965054,0.03480368,0.04436928,-0.031388335,-0.056036707,0.01651814,0.036102332,-0.019821957,-0.048303716,0.0006834364,-0.0032001862,-0.024136387,-0.021385776,-0.027642682,0.013806716,0.02723081,-0.022501972,0.028887682,-0.010389016,0.028630625,0.026051685,-0.019554626,0.014230522,-0.030119948,-0.020933611,0.022324162,0.008318102,0.010524101,0.004968776,-0.007812736,0.038126253,0.0044575133,0.05878141,-0.030246506,-0.026650641,0.07381989,-0.014776287,-0.0283806,-0.016477231,0.029904276,-0.00727106,0.007667036,-0.07105336,0.0026613656,-0.009998414,-0.02339107,0.0006235478,-0.018873425,-0.011853511,-0.055909287,-0.046235204,-0.013979462,-0.027241712,-0.002870116,0.04556473,-0.014100711,0.031859316,-0.01741559,0.049022067,-0.053914886,0.040792767,0.010440058,0.04914515,-0.028741539,-0.083765775,-0.018145256,0.020918967,-0.025705948,-0.002803569,-0.0372228,0.002488661,0.014549861,0.007452753,0.0331406,0.02319147,-0.03630603,-0.0051559643,0.056961544,0.015946865,-0.016454168,0.033923626,0.013131477,-0.017021846,0.0022013306,-0.00051013054,0.024437077,-0.06728469,0.015343716,0.005849019,-0.042046685,-0.0070028203,-0.04602203,-0.012207559,-0.025102885,-0.0040686107,0.0002587766,0.032047696,0.0039683036,-0.041864734,0.031243384,0.052523784,0.013552507,0.030765431,0.024826331,0.034990564,-0.015349603,-0.007475346,0.025215138,-0.010254195,0.06747585,-0.032365654,-0.021478396,0.043428216,-0.006743468,0.02790899,-0.014630659,-0.038027577,-0.025492566,0.023509497,0.001349514,0.040327597,0.027845304,-0.026079372,0.008456511,-0.011509328,-0.019108413,0.0006586386,-0.07510322,0.0022866912,-0.00068031467,-0.0008562695,-0.011724542,0.017944688,-0.033950027,-0.0053145783,-0.00043061623,-0.012227288,-0.0027301402,-0.006470364,-0.01653567,0.011754375,-0.04780417,0.018142438,0.005593985,-0.012329716,-0.02002699,-0.01915252,0.03544832,0.057863835,-0.0023246713,0.0059248116,-0.047778193,0.013543075,-0.044652525,-0.005954724,0.04305672,0.03465629,0.0012656256,-0.019267837,-0.015617154,0.04592365,-0.0007498035,0.014880117,0.008873842,-0.0125968475,-0.019255046,0.03940195,0.04116828,0.005342233,0.020047426,-0.0033223098,0.030739248,-0.0199521,-0.014026773,-0.04877828,0.06505598,0.01422219,0.038487356,-0.014533383,0.047889028,0.003465842,0.031593435,-0.00835128,0.013456254,-0.025423935,-0.010840814,0.0026760907,-0.014977867,-0.020755703,-0.016373921,-0.044220753,-0.008991386,-0.014196637,-0.00022845574,-0.012805376,-0.005179826,0.022288138,0.0023660462,-0.0038850608,-0.0024402586,-0.004806102,-0.02001346,0.044943463,0.0043891105,0.018364523,0.013170988,0.017194917,0.0040052095,0.046091747,-0.018691018,-0.00021722521,0.010005599,-0.007572974,0.013507717,-0.007379782,-0.029422937,-0.02724057,-0.052792113,0.029930962,-0.019945716,-0.03430572,0.014330981,-0.049196687,0.0004313397,-0.06354172,0.037140492,0.0039047317,0.03637935,0.021537358,0.0037703933,0.030408936,-0.008618906,-0.0049948078,0.022230484,-0.0025219077,0.031718068,-0.002160776,0.026750559,0.020501377,-0.022382187,-0.011922544,-0.0064299246,0.020721667,-0.02892005,-0.011969223,-0.022867879,-0.0036150333,0.0032785134,0.0027586613,0.009554201,0.050402097,-0.01663771,-0.07772073,-0.022294872,0.007893312,0.00011934501,0.036700506,0.011971848,-0.008852556,0.032223333,0.004633375,0.006113131,-0.020085195,0.05086527,-0.03669728,0.05283496,-0.017048595,-0.06195155,-0.01661991,-0.040325377,-0.0045235967,-0.03699631,-0.0038198929,-0.055121087,0.02497774,0.031470932,-0.022920027,0.022732459,-0.033376716,-0.0042479243,0.047613796,0.027234944,-0.0050165965,0.07400094,-0.0155204665,0.00038509452,0.03168887,-0.042988803,0.07858217,0.004630148,-0.0143462345,-0.026118714,0.019328337,-0.06775785,-0.04501546,0.05737806,0.035554938,0.02376312,-0.04733669,-0.04594137,-0.008940727,-0.02743255,-0.003543997,-0.021229329,0.057633683,0.031912047,0.010444367,-0.02556783,-0.07041338,0.2600719,0.051191486,0.012098052,0.021294171,-0.0023326476,0.002778953,-0.023918167,-0.00795669,-0.018120194,-0.02471013,0.02057783,-0.023020117,0.005809139,0.049791,-0.0074797603,0.04383738,-0.025564564,0.0002907821,-0.04026799,-0.03562644,-0.010268514,-0.0054377727,0.0060075144,0.030724784,-0.0045933574,0.028524356,0.024623996,-0.021136628,-0.013540131,-0.0024211947,0.004012701,-0.01925967,0.028243156,-0.008874872,-0.019944128,0.030064082,0.005281143,-0.05428304,-0.004611759,0.012059964,-0.015439084,0.003612227,-0.0005433414,0.03400166,0.045259535,0.02845773,-0.02206794,0.02291526,-0.01319601,-0.010408678,0.04341835,0.0038208263,0.07201883,-0.05309289,-0.01985069,-0.00137758,0.007937827,-0.021066094,0.0016867651,0.032457236,-0.01863546,0.004319302,0.021207938,0.00096386456,-0.0045308433,0.021009753,0.045196272,-0.026300149,-0.04567064,-0.02975456,-0.01812313,-0.04998915,-0.040993612,0.007568664,-0.022133289,0.0015346692,-0.008701656,0.018571125,0.013243454,-0.029831586,0.011815381,-0.019579252,0.024445396,-0.010784245,-0.006725089,0.06383198,0.010742088,-0.006571831,-0.06889845,0.054866698,0.025287634,0.03424548,-0.04077885,-0.046534,0.007201788],[0.015438773,-0.011334482,0.025835443,0.0013543117,0.004009762,-0.04073492,0.034337685,-0.012966015,-0.007952112,0.02650493,0.04930585,-0.015481631,0.020279894,0.0000860805,-0.030809421,-0.0063220505,-0.047487296,-0.0070443093,-0.043216158,0.0050136703,0.011414406,0.028227203,-0.08432739,0.03434654,-0.008063536,0.051591318,-0.009619552,0.014052763,0.043239653,0.05476832,-0.04207185,-0.004655925,0.054561168,-0.04105933,-0.04940384,-0.023007164,0.041643143,-0.008693537,0.03364769,-0.034552027,0.035252713,-0.0146145765,0.02159378,-0.037790358,-0.06411973,-0.01413388,-0.0065947124,-0.060261842,0.020867966,-0.026813595,0.011639428,-0.033269364,0.020186802,-0.026175924,0.045179836,-0.03547414,-0.00772536,0.014785319,-0.033422634,0.024523577,0.007894409,0.046843544,0.0007734496,-0.054533888,-0.008683106,0.018950107,0.0024121264,-0.010903669,0.029165363,0.026700767,-0.0073320605,-0.005150343,-0.0074094418,-0.037114322,-0.040107034,0.0005650745,0.02673484,0.023183817,-0.057170324,0.048510507,-0.0022607495,0.023934383,-0.020533463,0.031192297,-0.021739228,-0.011776158,0.020330539,0.05094926,0.048776127,-0.0047412966,-0.0074551883,0.04202727,-0.028988317,-0.00916787,0.07639541,-0.0007919495,-0.009408777,-0.006604554,-0.03479318,0.0045836684,0.02978355,0.031434298,0.014664217,0.07713914,-0.03628513,-0.012489291,0.0030437866,0.003242115,-0.018634833,-0.018487826,0.012647092,0.04079128,0.012986656,0.0056916554,-0.013459744,0.019979434,-0.01584224,0.024142994,-0.025087526,-0.016775386,0.024905132,0.026484089,-0.02244641,0.030206041,0.019437348,-0.04067361,-0.018563066,0.037838615,-0.021846857,0.000034047014,0.011139229,-0.021042781,-0.007284838,-0.0059936773,0.035319254,0.0038357724,0.019348731,0.020591563,0.018225288,-0.002961504,0.065647945,0.009628522,-0.03022452,0.06636051,0.00844524,0.034265447,0.0019471432,0.02779438,-0.04689914,0.059443876,-0.02643796,0.011347158,0.02598231,0.03330859,-0.018008616,0.032545798,0.009606857,-0.0066297045,0.011537953,-0.01044813,-0.021263309,0.017595738,-0.0058656745,0.037364006,-0.051486623,0.01016967,-0.0041393116,-0.02902425,-0.047432885,0.013386455,0.00011662401,0.011982552,-0.007205448,0.016425733,0.003482341,0.05047758,-0.0034810142,-0.000023076487,0.044767387,0.0067447512,0.010774435,0.024888309,0.03999656,0.040832557,-0.0029113842,-0.0029177978,-0.026345504,-0.0048710443,-0.0119503215,-0.05781028,-0.018193083,0.04387399,-0.0354299,-0.010851034,0.020789197,0.014006507,-0.050776985,-0.047306765,-0.009508548,-0.047653142,-0.016534442,0.05120838,-0.021479009,0.003964009,0.003927077,-0.017966198,0.032533195,0.045552827,-0.011844002,-0.02504877,0.0057024634,0.04622947,-0.0069675962,-0.03245231,0.011321038,-0.020584852,-0.038781427,0.035624582,-0.043504536,-0.025473068,0.01314305,0.0061449553,0.022202054,0.0265137,-0.015193578,-0.018740341,-0.008370205,0.05629149,-0.032322373,0.010617264,-0.019333687,0.025935622,-0.0019927386,0.02332673,0.015214991,0.020381227,0.04006856,0.036983196,-0.01658027,0.0069067813,-0.010260374,0.00027656282,0.044586215,0.008868717,-0.00024449924,0.037298456,0.00045692263,0.006416969,0.020100811,0.039746623,0.013288035,0.0349326,0.018437508,0.04822472,-0.03908923,-0.00093539053,0.03260743,0.07220665,-0.04103161,-0.050185375,-0.014018392,0.015042172,0.029604312,0.018302064,0.03385482,0.016394168,-0.0012971456,0.029668063,-0.031620737,-0.03000827,-0.021149354,-0.03002602,-0.0347619,0.0052103344,-0.03943249,0.030754821,0.03985503,-0.02703187,-0.004390689,0.02820999,0.010677539,-0.016598659,-0.008044991,-0.0026382185,-0.005156749,0.062822886,-0.013138906,-0.020434465,0.0035131339,0.038194343,-0.021044755,0.00051532086,-0.017158777,-0.0179908,0.023733864,0.0014083771,-0.028899094,0.007197727,-0.054992035,-0.0558973,0.0001766654,-0.018747045,-0.02213524,-0.014472703,-0.018069932,0.032512482,0.021349397,0.018186942,0.051812183,0.008730715,-0.06369903,0.03232326,-0.01542563,0.012750282,-0.039858308,0.024824781,0.017788863,-0.010754777,-0.029297438,-0.003753806,-0.016231598,-0.0037772486,-0.056616824,-0.03768399,-0.0031229274,0.0010273281,0.021009678,-0.11026161,-0.031846356,0.018537978,-0.04667559,-0.04176742,-0.035291724,0.02128564,0.0005894951,0.018611854,-0.006558376,-0.050104156,-0.044058282,0.022964943,0.029674146,-0.029052846,0.031026207,0.04140683,0.002453446,-0.012561075,0.03357793,0.039019477,-0.042504236,-0.0005084786,0.013071921,0.028121136,-0.035330832,0.025862427,-0.005087847,-0.022568649,-0.035601526,0.006190081,0.03292556,0.013435904,-0.009240819,-0.009684472,0.030510692,-0.057813782,-0.04974803,-0.05266897,0.044641457,-0.0053981664,0.036888093,-0.07114575,0.030788723,-0.008634835,-0.07061206,0.016470205,-0.013411059,0.0029369148,0.03610087,0.021327714,0.03537518,-0.0072847386,0.033167288,0.028059013,0.011615512,0.032595724,0.06696097,0.010629894,-0.062178608,-0.020156082,0.0036896777,-0.014835586,-0.08237318,-0.032926768,0.036038004,0.011079188,-0.015623799,-0.06678566,0.021834325,0.041618165,0.06245951,0.0379341,0.03257972,0.032230467,-0.005417096,0.056731526,0.017405223,0.0101818,-0.036575925,0.019345496,0.03280537,0.010870924,-0.039458152,-0.0052489294,-0.022160072,0.005356856,0.023436423,-0.020604167,-0.037569195,0.009337999,0.036292404,0.015711702,-0.053938016,-0.020707209,-0.008290749,-0.016608045,0.020864198,-0.003123698,0.042085607,-0.06559429,0.052191626,0.0023359796,-0.0030602135,-0.01887679,-0.001953993,-0.018749006,-0.046019785,0.028797654
+8000
+,-0.023424808,-0.006029501,0.024229549,-0.04778102,0.021786852,0.015728723,-0.028601186,-0.016632365,-0.006249199,0.054114826,0.00037934753,0.027417464,-0.044517476,-0.019695036,0.02592674,-0.063709915,0.0063890596,-0.023925358,0.0050929296,-0.002146819,-0.017812526,0.03366876,0.014000761,-0.03423228,-0.008053314,-0.038160745,0.05202991,-0.035026014,-0.017090857,0.06657067,0.03067991,-0.03333509,0.025385927,0.01983989,0.020319724,0.017130187,0.016793178,-0.019642241,-0.013418251,0.0061528073,-0.0022905283,0.0038826433,-0.0015973551,-0.015713226,-0.01193422,0.00607145,0.016018065,-0.01762133,-0.0039609303,-0.06314963,-0.010465555,-0.00010269968,0.00027277478,-0.024223547,0.0156084355,0.010503213,0.003453345,-0.025392964,-0.0011888598,-0.010170535,-0.028933756,-0.00018516788,0.005424636,0.014947469,0.053132914,-0.0056994995,-0.015375758,-0.0041579823,0.024055991,-0.015160812,-0.08312078,-0.033101108,-0.02032728,0.01073203,0.023313327,0.011202864,-0.006253529,-0.024022823,0.022543363,0.02221647,-0.013879856,-0.015856398,-0.0194112,0.03635457,0.03424567,-0.020760162,-0.018804431,0.03752107,0.011675547,0.023840744,-0.031754594,-0.038795866,-0.065200604,-0.035450332,-0.018781591,-0.020877099,-0.044740845,-0.004188746,-0.0077181165,-0.000104110724,-0.025408218,-0.007446293,-0.025185829,0.019749891,-0.039780978,0.0060071694,-0.015478949,-0.01724023,-0.029154316,-0.0094233425,0.011014313,0.11732877,0.0074526323,0.018353695,-0.0041111317,0.011977658,-0.001770378,0.027536081,-0.0076079704,-0.036658242,-0.0007124525,0.0046620644,0.02932134,0.03693395,-0.029061973,0.025087051,-0.061674148,-0.035570793,-0.03616379,-0.0206058,-0.04711995,0.0084245,0.007885326,-0.021939147,-0.011204986,-0.0011779525,0.02512934,0.032516476,-0.034122508,-0.020511338,-0.053953357,-0.048074603,-0.04071429,0.03707319,-0.0062495847,0.012269189,-0.032634012,-0.009791317,0.043926,-0.019497199,0.022623891,0.056434963,-0.02341582,-0.006616679,-0.0472197,0.033824958,0.021358434,-0.025432093,-0.030114062,-0.021273198,-0.012212315,0.0015411327,-0.014904948,-0.06691941,-0.022134263,0.025645647,0.054838292,-0.035263952,0.04562746,-0.0017630932,-0.0059654806,-0.026592994,0.060100358,0.06669212,0.0056719007,0.040678564,0.008029146,-0.015246602,0.01374618,0.009666609,-0.003940154,-0.00008022386,0.049676888,0.02158188,-0.036572237,0.034533396,0.061082255,-0.030591335,-0.05984371,0.024407145,0.0115305865,-0.014792987,-0.034876216,0.03631922,0.0005389009,-0.00078835577,-0.022942467,-0.045503043,0.04354054,0.013049027,-0.022120044,0.024154432,-0.006814905,0.010430417,0.028515713,-0.031141922,0.042610116,-0.039476924,0.01321226,0.015354591,0.016623063,0.018817484,0.02541586,-0.030824434,0.031671412,-0.005543994,0.05000563,0.0018500108,-0.026549306,0.06862541,0.0054675587,-0.0072801406,0.010377675,0.024286736,-0.017931214,0.003345019,-0.042889617,-0.016650986,0.00554318,-0.020082638,-0.02347233,-0.059925023,-0.027186334,-0.055445172,-0.043209832,-0.032894745,0.009780395,0.008818144,0.066479705,0.0032977061,-0.01627454,-0.009613774,0.06230091,-0.056956016,0.04282797,0.0038324334,0.05574633,-0.030027471,-0.06100721,-0.031430073,0.013004406,-0.03566474,0.020907966,-0.062869266,0.0070692925,0.0071364245,0.02984668,0.021126026,0.051115915,-0.035271894,-0.023462681,0.029915828,0.018256035,-0.002293851,0.030628802,0.033790313,0.009973501,0.006892309,-0.03862007,-0.025221566,-0.09358061,-0.012450218,-0.03415521,-0.05520064,-0.048113365,-0.037909035,-0.0020471253,-0.0393512,-0.013902464,0.012712447,0.010227674,-0.021799816,0.026328666,0.013230008,0.056634344,0.029498914,0.007562389,0.0053056953,0.027124615,0.029618423,0.014756083,0.020296633,0.008840167,0.059054833,-0.029491767,-0.039911542,0.047088586,-0.01540562,-0.018952915,-0.013344443,-0.03566072,-0.042072,0.013870161,-0.0012337295,0.025028162,-0.004924674,-0.013361763,0.0146779865,-0.011977282,-0.046279307,0.009889701,-0.07535576,-0.0350061,-0.028973712,-0.00033476824,-0.013129987,0.0078180395,-0.031582307,-0.032938763,-0.003555439,-0.011633593,0.012360111,0.05515421,0.00073047157,0.043926623,-0.015027306,0.0005526176,-0.0012922065,0.0063274466,-0.019803626,-0.057260286,-0.007460201,0.010842279,-0.0052124397,-0.0023913505,-0.038830545,0.042971086,-0.033122208,0.00007208335,-0.043700445,-0.0022349095,0.021281257,0.020224335,-0.046765633,0.05428028,-0.024010153,0.023551468,0.016355485,0.006676754,-0.0074550994,0.06221795,0.028322184,0.004580195,0.0042832773,0.024941746,0.03620857,-0.0012874376,-0.028080113,-0.020177007,0.042709175,0.006994611,0.014136697,-0.010430384,0.03772387,0.009187247,-0.0084903715,0.0047714585,-0.005522474,-0.031748973,0.0033931185,-0.023570275,-0.024560379,-0.0087029375,-0.03821152,0.0007698705,-0.022044882,-0.01726919,-0.007978554,-0.028437855,-0.013952366,0.0007828064,0.026104577,-0.038288653,-0.0052270135,-0.0030082692,-0.021009598,0.030912852,-0.00018323406,0.028291492,0.0055620316,0.019241676,0.00018781789,0.033239096,-0.003946789,0.0068048392,-0.008499289,-0.018914528,-0.032192595,-0.0021302288,0.0037400543,-0.051765487,-0.06928042,0.027540507,-0.026366288,-0.03457306,0.03502946,-0.02684487,0.029175583,-0.032226104,-0.0069840606,-0.027629053,0.022925882,0.0367774,-0.01034926,-0.005139837,0.0046967575,-0.012879212,0.013181161,-0.002097185,0.012500339,-0.00957504,0.034533355,0.014023591,-0.033695143,0.006414688,0.0029176218,0.026955606,-0.019646283,0.028131692,-0.039949983,0.022121273,0.029179012,-0.006117853,-0.020851765,0.030247547,-0.016117053,-0.03191415,0.00006929658,0.02033974,-0.0013644209,0.044144955,0.05517754,0.011478634,0.01318115,0.015681637,0.011900086,-0.022800522,0.035294544,-0.049566407,0.048490673,-0.066554844,-0.052249856,-0.014685979,-0.01599053,-0.0149014825,-0.0046676495,-0.0055858656,-0.065931134,0.030338043,0.015990175,0.00017203,0.01200893,-0.04015832,-0.0023773434,0.09552217,0.0068780337,0.0034385892,0.06325584,-0.012451614,-0.010564035,0.01191138,-0.041308228,0.047799684,0.007557977,-0.017748257,-0.019132448,0.007102784,-0.04182445,-0.06703505,0.05139971,0.04056083,0.044187527,-0.04584863,-0.039260805,0.004538626,-0.03462743,-0.015466204,-0.025483169,0.06484053,0.021509353,0.014542312,-0.013628843,-0.059757207,0.25410908,0.030805387,0.037013654,0.022168342,-0.020013433,0.058850765,0.009224258,0.004440273,-0.0009809636,-0.032370426,0.039767105,-0.042010646,0.023398012,0.030696599,-0.005535348,0.019687766,-0.021261957,-0.008708688,0.0137061635,-0.041902438,-0.017732773,0.003608205,0.035065234,0.009389515,-0.0024286616,0.037313707,0.055384267,-0.028421571,-0.034266803,-0.020863367,-0.016418163,-0.033088077,0.034772985,-0.05318367,-0.024081925,0.05312853,-0.0149780195,-0.04850901,0.015546596,0.004679276,-0.0022139498,0.00521944,0.030339628,-0.018222447,0.018876078,0.043522533,-0.047346383,0.018105121,0.005485914,-0.0177653,0.03630078,0.003677895,0.048669513,-0.027706997,-0.011581198,0.0053715715,-0.031652026,-0.0072032493,-0.028040325,0.0166375,-0.01899135,-0.031201124,0.018217528,0.02762369,-0.031085955,0.005936337,0.04827274,-0.0056536337,-0.04528963,-0.009004894,-0.013896361,-0.009384834,-0.018040149,0.008535442,0.0040622745,-0.01977348,0.014008681,0.028762424,0.0075862827,-0.008603383,-0.024985585,-0.00560484,-0.032516096,-0.00355216,0.012325528,0.052004926,0.008116651,-0.009198425,-0.051251225,0.04555082,0.011363422,0.047217287,-0.0013337205,-0.024624955,0.004832744],[0.022964524,-0.03309315,0.004033036,0.022035524,-0.047737762,-0.007300564,0.012842866,0.017231075,0.019856391,0.025816992,0.021025712,0.00082278193,-0.005299405,-0.03637587,0.008831287,-0.028732281,-0.030441834,-0.011719097,-0.06267631,-0.035967235,0.029757543,-0.0039244103,-0.09930927,-0.0075557344,0.008636185,0.045524023,0.006128117,0.012736121,0.054876667,0.040812872,-0.028001513,0.02327198,0.0214583,-0.016647354,-0.016219506,-0.017370839,0.0664294,0.015358094,0.007104925,-0.015439771,0.0048706597,-0.03523382,0.010927954,-0.05672895,-0.038950983,-0.02080732,0.010427689,-0.017892823,0.0081687085,-0.047298647,0.01871392,-0.022606974,0.06330175,-0.017776424,0.03771415,-0.0038056534,-0.059729118,0.01505187,-0.0062441295,0.022922317,0.016011236,0.032461062,0.02959662,-0.0377845,-0.054925647,0.03271512,0.012380051,-0.0036665823,0.0140519785,0.034627832,-0.036521837,0.013979285,-0.018328449,-0.012609902,0.0031336024,-0.00011556715,0.07406904,-0.027165113,-0.038992826,0.054703914,-0.023135362,0.027041173,-0.0076209474,0.013037876,-0.031610157,-0.035782877,0.034874965,0.04250132,0.027356047,0.017539425,-0.0028458415,0.008487899,-0.0145998625,0.011916336,0.008667299,0.029630486,-0.01729537,-0.022081485,-0.038423676,0.011260544,0.029270299,0.011265298,-0.0005504856,0.041743077,-0.047500152,0.013615183,0.0037154616,-0.01197774,0.015862755,-0.027866187,-0.04149893,0.0012726341,0.020718943,0.028676663,0.00007931047,0.064633206,0.009881922,0.034710776,-0.034068145,-0.00014862117,-0.0021785463,0.00816207,-0.014400816,0.060664777,0.016381724,-0.0215922,-0.041893248,0.057389587,-0.06226984,-0.009035203,-0.028506363,-0.0006176595,0.00026856843,-0.0076788976,0.05375149,-0.0012915465,0.0071363603,0.047102485,0.034555122,0.0041228733,0.05018791,-0.00841356,-0.019073984,0.071724266,0.0063284156,0.017944995,0.029388532,0.021889886,-0.04742969,0.05443694,-0.064135335,0.021016648,0.0069933133,0.054711923,-0.02182032,0.012538906,0.016626704,-0.0020991177,-0.024272468,0.010123308,0.008746636,-0.005330424,0.018827885,0.026142027,-0.04416111,0.042215884,0.0022417556,-0.013984635,-0.04227262,-0.024788242,-0.014732333,-0.011545663,-0.046995763,0.014563009,-0.005616298,0.05622504,0.01658684,0.0005712469,0.013619284,0.038637854,-0.019307347,0.006660323,0.018174343,0.05788293,0.027449924,0.045322336,-0.014674861,-0.032947794,-0.02705605,-0.035338502,-0.0110985795,0.009407847,-0.04688151,-0.0068401927,-0.0053335084,-0.014831182,-0.033808403,-0.0038807543,-0.032552585,-0.04797795,0.0060581523,0.04364955,-0.007980642,0.016575497,0.020654961,-0.016125403,0.023946963,0.026631162,-0.013264641,0.027908096,0.04371006,0.017660206,-0.008935243,-0.011875665,0.0419532,-0.013175351,-0.065903135,0.048214864,-0.037905276,0.002872265,0.004120512,0.04195912,-0.0011126936,0.022816882,-0.02170568,-0.019385247,0.0046074307,0.046408534,-0.0053718304,0.003315942,-0.016628755,0.0458909,0.036073875,0.009565957,0.0018339156,0.027162464,0.04302855,0.035892475,0.006716103,0.008410647,0.027783679,-0.016590478,0.05022006,0.02938378,0.025956793,0.05513338,0.023333237,-0.056852363,0.009692951,0.009054338,-0.0037020713,0.023405159,0.026759934,0.019389454,-0.054964326,-0.028952114,0.05349872,0.03330419,-0.028233849,-0.04052122,0.02307518,0.033571582,0.0043180846,0.033563867,0.024858788,0.032110833,0.002100454,0.039282337,0.0026676063,0.013024618,0.00075965235,-0.028047869,-0.049334954,-0.020725477,-0.034486305,-0.00577012,0.015305833,-0.011350564,0.023863157,-0.010617102,-0.01306682,-0.03024056,0.022084733,0.0065130894,0.015742049,0.029531151,-0.0217789,0.035514954,0.025307829,0.043010626,-0.027974293,-0.0029447891,0.0005570385,-0.012040959,0.00009868645,0.006786461,-0.04472386,-0.014293685,-0.0034740728,-0.051525414,0.004082062,-0.00071317103,-0.002499725,0.010333834,-0.02201552,-0.00633065,-0.00833838,-0.048745412,0.06899079,0.006965012,-0.078719996,0.0071427515,0.011407175,-0.018495776,-0.052271895,0.03130465,-0.0025577024,0.03388009,-0.04630893,-0.0037511073,-0.007494739,0.036731847,0.00622405,-0.012530099,0.05198122,0.018941822,0.039124843,-0.10047265,0.03538287,-0.01731245,-0.0595332,-0.056022037,0.000594036,0.023857208,0.009552246,0.014378077,-0.007821441,-0.027869746,0.004003575,0.006716237,0.02699321,-0.05492727,-0.028356595,0.07733686,-0.0141749745,0.005991287,0.037949502,-0.030891746,-0.0080819,0.0310404,0.02228663,0.041301083,0.0003171371,0.018443566,-0.017393263,-0.01238404,-0.03284345,0.025153631,0.029756727,-0.014384323,0.002554753,0.036442555,0.0115063535,-0.00782033,-0.022382338,-0.024371149,0.021120468,0.0018816646,0.018561618,-0.027016817,0.034713548,-0.025184209,-0.036144335,0.0027974055,-0.027332295,0.008055122,0.04270376,0.01963562,0.029677497,-0.036310848,0.010283313,-0.0022703249,0.010413177,0.034065332,0.046720486,0.031109694,-0.058191936,0.011775163,0.024429165,-0.0030640822,-0.048154034,-0.032564636,0.001220188,-0.002987582,-0.01655355,-0.024734665,0.021531023,0.033787247,0.031702273,0.006937868,0.054544136,0.011878529,0.019831575,0.06097913,0.018212158,0.005259449,-0.024708938,0.028947523,0.0028169213,-0.019848663,-0.046098053,-0.013934263,-0.023910651,0.029257415,0.018974103,-0.019501304,-0.024291715,-0.014265259,0.0642025,-0.01163583,-0.04273404,-0.00972825,0.006983424,0.013929427,-0.025003657,-0.025481643,0.024281953,-0.060092907,0.018604789,0.013013668,-0.0039621447,-0.023034854,0.03828831,-0.029935699,-0.0048380233,0.0001248644,0.00093901396,-0.006001618,0.018309556,-0.0037836318,0.017837634,-0.0020846613,-0.02314346,-0.008231663,0.0042108474,-0.003488183,0.00426218,0.018315278,-0.013458904,-0.04318468,0.0033540642,-0.07373451,0.0046955184,-0.018786762,0.0034982557,-0.00516086,-0.019715304,-0.004006416,-0.013084404,-0.022089252,0.0014214001,-0.0017221861,0.031454388,-0.034355972,-0.001992206,0.0324772,0.0075638755,-0.008190696,0.009336791,0.006176803,-0.0068718647,0.0010805354,0.009547319,-0.002716557,-0.004026933,-0.029332576,-0.00063820713,0.01780713,-0.048931647,-0.0007184257,-0.004017354,0.028976355,-0.025680054,-0.033202913,-0.012645438,-0.07548813,0.024278404,0.05820071,0.0018152859,-0.0050889095,0.012430755,-0.012300412,0.000019341176,-0.032083858,0.0019482584,-0.025322594,-0.06280491,0.0038612685,-0.013025296,0.016249511,0.031054327,-0.0027159315,-0.022954328,0.008248971,-0.014401627,-0.0089384625,-0.041218895,-0.013796304,-0.0057993126,-0.013069666,0.024347188,0.0063237725,-0.048916083,-0.000009024795,0.057775095,0.025397167,-0.025345407,0.037479445,-0.015645768,0.052757047,0.036951832,-0.036548972,-0.0002494739,0.059153415,0.009339345,0.0424926,-0.01725925,-0.028633978,-0.05834559,-0.034842756,-0.011387414,-0.039302364,-0.057587605,0.009409152,-0.029064218,-0.010141889,-0.0070198625,0.012260766,-0.0027267532,0.02219151,-0.075269595,0.028046893,0.0039844657,-0.02972726,-0.017238963,-0.014920072,-0.023521274,0.07246047,0.02193481,0.010233543,0.017406516,-0.024211455,-0.0057966057,-0.02668917,-0.013479255,0.01268381,-0.007463581,-0.012624781,0.018548151,0.019906316,-0.001597413,0.03783593,-0.048383713,-0.020957146,-0.041707084,0.0015474957,-0.03670394,-0.055992704,0.046639994,-0.022957452,0.00042626538,0.005489728,0.013083146,0.04421939,-0.0073421453,-0.047780044,-0.029124342,-0.052998886,-0.015148294,0.0143822385,-0.0018180253,0.010766069,-0.035400223,0.03359988,0.03101896,-0.0031359394,0.012842527,0.07305659,-0.008869178,-0.0019824845,-0.05197068,0.01835318,0.019578999,-0.050549474,-0.009552204,-0.031155799,-0.035649814,0.020040546,-0.040321127,-0.053641204,-0.03090512,0.0053441552,0.04022931,-0.021304363,0.04036917,-0.002096081,0.01908777,-0.040960763,0.011341464,0.04019249,0.02258081,0.043176457,-0.0025102093,0.0005698251,0.040725026,0.0064386893,-0.018904941,0.0058991453,0.011888661,0.011525009,-0.06236273,0.050439153,0.03992577,-0.047463164,-0.05894698,-0.005044839,0.009753864,-0.022476383,-0.0071436553,0.0013609836,-0.0211486,0.008377435,-0.021988487,-0.028926685,0.011040474,0.036654327,-0.0054871053,-0.010805192,-0.000620019,0.046897084,0.006107278,-0.053458933,0.020196946,-0.029589536,0.019187024,0.00091212295,-0.022544812,-0.009453615,-0.015040451,-0.0056812237,0.0058262,0.012400369,0.0598809,-0.046525147,-0.03040887,0.045180216,-0.022892958,-0.03026294,0.0060786027,0.008345151,-0.03020829,0.017756986,-0.04859929,-0.020214882,-0.0043297517,0.005653933,0.0041069565,-0.014977318,-0.025923003,-0.043986537,-0.061635904,-0.04391315,-0.036635417,0.028028676,0.04008854,0.021767305,-0.001595068,0.0077355723,0.07301872,-0.046218865,0.039916977,0.0067670518,0.081867024,-0.038047116,-0.03540812,-0.05452923,0.014791999,-0.08872683,-0.012070102,-0.044139646,0.052653182,0.004305104,0.03527485,0.023095692,0.016515987,-0.06547506,-0.002228563,0.027979717,0.025282811,-0.0057908087,0.046068788,0.05026696,-0.018792884,-0.04127531,-0.017566048,-0.008539491,-0.046718575,-0.010363558,-0.03481655,-0.025726603,-0.020910261,-0.06680603,-0.022719705,-0.049471863,0.042560924,-0.05197841,0.009434273,-0.020118615,-0.017826855,-0.01937639,0.011601657,0.02502411,-0.02182574,-0.014799764,0.027117675,0.0099672135,0.026120862,0.042112503,-0.014268791,0.039659113,-0.006081344,-0.014073862,0.0131610865,-0.017977415,0.022950402,-0.006394669,-0.04208018,-0.033555,-0.01576642,-0.013347348,0.06639327,0.03321363,-0.030666161,0.02867269,-0.032599524,-0.027917715,0.017314482,-0.057363763,-0.055365972,0.019507151,0.014493151,0.020389322,0.01792439,-0.053089306,-0.035356253,0.016294364,0.0018719276,-0.01332007,0.018265927,-0.019267648,0.026755167,-0.050444685,0.020036094,0.014614202,-0.004850162,-0.052125208,-0.059308987,0.0071139336,0.0068093566,-0.017520646,-0.0140889585,-0.028163668,0.03885154,-0.018461004,-0.05278387,-0.05218372,0.019800406,0.001948617,0.021403834,-0.030124126,0.043879323,-0.004632607,0.019269802,-0.017321577,0.021919996,-0.018664882,0.069643825,0.017451063,0.0006659832,0.012243825,0.027199475,0.016308405,-0.013776184,-0.017803654,-0.0033204504,0.042225618,-0.0068571633,0.018133475,-0.05758983,0.031002773,-0.019379886,-0.02148236,0.018717224,0.021193065,-0.015903017,0.0028560301,-0.0007598327,-0.026462505,0.01230503,-0.031877257,-0.03589971,0.022327408,-0.04897161,-0.041473724,-0.04040344,-0.01717112,0.06497287,0.00855295,-0.0035994337,-0.0126794595,0.006636021,-0.017259438,0.0047980747,-0.005974069,0.043437682,0.028539836,0.031124352,0.019464089,0.037998024,0.032577254,-0.034231644,-0.0037565823,-0.007929228,-0.009785949,0.0026824812,-0.054525223,-0.029641593,-0.06706651,0.034685448,-0.036761116,-0.0045649474,0.03563601,-0.030261928,0.02943832,-0.02574504,0.015929481,-0.0242832,0.0042116838,0.0036498122,-0.0050284816,0.032485496,0.00023570302,-0.006114537,0.0072416053,0.0009714338,-0.006469786,-0.02166733,0.015690783,0.004567284,-0.027300648,0.024015788,0.010692098,0.012308852,-0.025897706,-0.018921986,-0.024254777,0.014857489,-0.015467207,-0.00040954267,-0.0040617483,0.029291488,-0.0005804321,-0.05131671,-0.00577472,0.01573364,0.020547505,0.03540275,0.006726335,-0.003475779,0.044788335,0.02840448,-0.0058546183,-0.008170782,0.024767585,-0.055235058,0.054451577,-0.025019884,-0.030996032,0.016317664,-0.03875098,0.0004233717,-0.022966482,0.000855673,-0.064345956,-0.012707039,0.026004706,0.012036977,-0.011897352,-0.014186381,-0.021484802,0.05236033,0.037648093,-0.02964845,0.08453491,0.005974174,0.0021907568,0.04025313,-0.06138321,0.059361055,-0.03385642,-0.011953931,-0.049213357,0.03534366,-0.034542337,-0.040275022,0.03191954,0.045226205,0.008922856,-0.031365097,-0.058043376,-0.01661159,-0.026652565,-0.008501072,0.012273059,0.05670764,-0.008954509,0.002120115,0.0048711025,-0.06942136,0.275414,0.039404172,0.042417772,0.038545158,0.0114306705,0.010528193,0.021223204,-0.00008617024,-0.022833377,-0.03636935,0.012276003,0.004362074,0.028900336,0.045307502,0.0018272642,0.057151437,-0.02900768,0.022599567,-0.030157112,-0.041742865,-0.026888318,0.014646055,-0.0057836324,0.017705126,-0.019214265,0.014363016,0.040688522,-0.014180682,-0.016462946,0.004067236,0.011712781,-0.02678213,0.01483995,-0.0029917283,-0.04528616,0.029345423,-0.02529971,-0.05116658,0.010405909,0.025858752,-0.034868363,-0.00071074016,0.0068550627,-0.018335115,0.041863803,0.011269289,-0.035925653,0.012728841,0.0028393937,-0.026537595,0.05845052,0.0015475957,0.04212407,-0.058108665,-0.0073404266,0.0053613614,0.0012970427,-0.010955987,-0.01417378,0.029277708,0.018808983,-0.006137475,0.007249804,-0.005331877,-0.04200725,0.029209962,0.07215067,0.02466912,-0.04376568,-0.050964948,-0.01902357,-0.03160404,-0.016923765,0.0075776586,0.02104559,0.008738888,0.020824041,0.0261214,0.03779731,0.0016207608,0.008308539,-0.0044552647,0.011177268,-0.0016646958,0.003501301,0.04578351,0.0010283572,0.012036498,-0.057122216,0.05374694,0.010739294,0.01751174,-0.0036700545,-0.05256984,0.013386066],[0.021550309,-0.008338643,0.008893674,0.015492949,-0.012911872,-0.028735884,0.0127559295,-0.006944184,0.015683508,0.024368927,0.014802545,-0.0005671785,-0.011079814,0.017278366,-0.0043259347,-0.0271603,-0.0625299,0.0061427765,-0.045430325,-0.018519854,0.006290937,0.024002785,-0.07045547,-0.008236719,-0.03795822,0.004277052,-0.02142409,0.0021366843,0.049584627,0.061039887,-0.043919932,-0.020967595,0.051303413,-0.038001876,-0.017698398,-0.0124923205,0.035254247,0.0019420427,0.016827874,-0.041569687,-0.00020226491,-0.04513499,0.0029154257,-0.04409014,-0.033919822,-0.014956077,-0.014353612,-0.018157007,0.0000707281,-0.040604815,0.0044563,-0.0118956575,0.05165195,-0.010854793,0.030997213,-0.02657912,-0.024254885,0.008958884,-0.0023983482,0.018048272,-0.007211845,0.020134714,0.0056550326,-0.0318957,-0.041429672,0.012169304,0.014468174,-0.0004069548,0.03304916,0.007526376,-0.029682502,0.025367644,-0.040132962,-0.021640679,-0.028048499,-0.00858495,0.060037408,0.03458818,-0.03276643,0.03911394,-0.0036116769,0.012563957,-0.010301328,0.0022667411,-0.02405887,0.0013918059,0.011612669,0.0535657,0.024334468,-0.003369501,0.033835903,0.025972746,-0.04099719,0.01976066,0.045005813,0.059743572,-0.0130928205,-0.029090922,-0.044693615,-0.016601577,0.024129942,0.0036508676,-0.011772796,0.04789757,-0.04049347,0.01567659,0.0021274702,-0.02652585,0.011522435,-0.012992626,-0.014964408,0.0063628014,0.013912178,0.037343398,-0.031633504,0.052062668,-0.00049385073,0.022657912,-0.03194464,-0.027768165,0.030385133,0.013444134,-0.013793174,0.053190093,0.001935408,-0.03058667,-0.042285822,0.037140165,-0.05654534,-0.0035547428,-0.0077314433,-0.023746515,-0.011961233,0.03312583,0.055033155,0.023427596,0.028816089,0.015863972,0.013525299,-0.020768939,0.06687838,0.027517237,-0.02811905,0.06229734,-0.018822193,0.022320602,0.03659784,0.03535527,-0.04005451,0.043843716,-0.057199292,0.028684342,0.019197525,0.023040969,0.0072318884,-0.005687774,0.0074547012,-0.034007967,-0.009204583,0.022704972,0.0024650537,0.0047914274,-0.009016332,0.0020867602,-0.025428517,0.026354728,0.0034283546,-0.01573525,-0.051478524,-0.01891839,0.001104776,0.009762487,-0.028018732,0.005969537,0.0063795997,0.084198445,0.010918715,0.020357149,0.0007100768,0.0077991476,0.0051676976,-0.0146493055,-0.016455488,0.063582785,-0.021187808,0.027449856,-0.023649782,-0.00012678266,-0.02967731,-0.036195226,-0.01958505,0.017341705,-0.032386556,-0.00012838075,0.018961152,-0.024579734,-0.038171694,0.021076456,-0.021661978,-0.03638162,-0.028990258,0.03349395,-0.0042283246,0.027801681,-0.023073701,-0.02270822,0.01726337,0.025817912,-0.029877914,0.020072939,0.048433978,0.013084896,-0.032880705,0.0008095333,0.037635263,-0.028854135,-0.0681428,0.03402991,-0.044646014,-0.022921229,0.019091269,0.033622127,0.027031302,0.009178678,-0.044551812,0.04002421,-0.0047735195,0.05264377,-0.033295915,0.0129362745,-0.0035665862,0.04430803,0.028408764,0.00016400678,-0.008141965,0.019256284,0.01538982,0.026435118,0.007956034,0.022242863,0.027372632,-0.0039764093,0.027480658,0.07009631,0.02505633,0.049508356,0.00067208544,-0.022846956,0.032234687,0.0030905674,-0.017358245,0.01785751,0.026878433,0.005098939,-0.00901438,0.0064622695,0.0386983,0.05180118,0.007822716,-0.041178487,-0.017489145,0.0047795447,0.031260863,0.032332156,0.032738063,0.010329777,-0.002551154,0.03487447,-0.015615713,-0.014136368,0.016017182,-0.01315041,-0.042075124,-0.00052128965,-0.04672317,0.04312849,0.022166695,-0.037268065,0.03550631,0.02337266,0.0053137555,-0.036908776,0.007932989,0.03749265,-0.0012550756,0.050930213,-0.029051151,-0.00807839,0.03428388,0.03422529,-0.026888592,-0.012912841,-0.019791028,-0.019553812,0.008252292,-0.020219171,-0.04490598,0.010487103,-0.038786527,-0.06264863,0.030690048,-0.030588131,0.010346999,0.015636206,0.0031204799,-0.004870225,0.00042854642,-0.0309841,0.055964522,0.034520682,-0.07392174,0.047473267,0.010404373,-0.008718937,-0.04902206,0.06323617,0.015109183,0.045678034,-0.028015822,-0.019795835,-0.041972227,-0.001749806,-0.018717516,-0.046304222,0.02141674,0.0146413995,0.030441592,-0.11600227,0.019729178,-0.023910616,-0.040949967,-0.023064323,-0.004653258,0.027489085,-0.043117605,0.017061763,-0.05444507,-0.04968697,-0.034248732,0.0313614,0.032424588,-0.06981746,-0.024442941,0.059688143,-0.00917763,0.012086271,0.040268198,-0.020603212,-0.02593129,0.002746477,0.0012763195,0.026383644,-0.0010057114,0.046188083,-0.032478046,-0.03912627,-0.006968113,0.025087321,0.0016188776,-0.015073821,-0.03507958,0.009029128,0.0011770722,-0.009393781,-0.025685541,-0.038639568,0.013857857,0.020186676,0.034967538,-0.030579563,0.007995921,0.021077065,-0.07412723,0.015634986,-0.050118517,0.0026157477,0.03557573,0.005714616,0.0375826,-0.022542594,0.052615777,-0.019183567,0.0152274985,0.04819703,0.05567511,0.038632147,-0.03954005,-0.0060564,0.02704045,0.014799183,-0.043028887,-0.025159067,0.024809586,0.011833993,-0.018756747,-0.043088987,0.008202534,0.010241521,0.04493391,0.012172774,0.078240186,0.019970043,0.026728706,0.08270418,0.0056445496,0.019897865,-0.032178115,0.044258114,0.013391033,-0.032541618,-0.018177256,0.002270884,-0.025765348,-0.033524472,0.023368072,-0.007126647,0.014019436,0.005074718,0.01933828,-0.009457501,-0.06614354,-0.011248924,0.0016225002,0.015441488,0.015342789,-0.019312201,0.039099246,-0.05338753,0.042925004,0.018675907,-0.0045829574,-0.04368509,0.023258185,-0.043289687,-0.042043872,0.0058185165,-0.023838742,-0.019254683,0.023381865,-0.007935411,0.020234575,0.013894898,0.00039739025,-0.018765295,0.020916773,0.008352083,0.011929038,0.03880273,-0.020108335,-0.08068481,0.03879634,-0.08587408,0.010338506,-0.014546787,-0.021229882,-0.008661848,-0.016796092,0.012126272,0.028941466,-0.0085007595,-0.00069528515,-0.027040528,0.04706727,-0.039059494,0.010230264,0.059231434,0.014089984,-0.008943379,0.02278685,-0.030069735,-0.0021541007,0.032216772,0.013607092,0.0039138785,-0.023280058,-0.018252932,0.0055671805,-0.008589031,-0.010303792,0.008632665,-0.00636496,0.016544126,-0.019538963,-0.019108249,0.011449676,-0.07869331,0.0050517577,0.06472798,-0.017171213,-0.009674975,0.0045618936,-0.002533848,0.010087194,-0.058097318,0.0025996168,-0.017914949,-0.024930954,-0.0044108503,-0.01538522,0.004702053,0.0276689,-0.019934852,-0.055957846,0.011211815,0.0067473976,-0.0062604034,-0.06177673,-0.03228751,-0.029936858,0.018092541,0.0008671066,0.027337188,-0.017435186,-0.0032645673,0.05441893,0.008385526,-0.010471021,0.004534187,-0.024041986,0.06256681,0.033294413,-0.030070798,-0.017376607,0.07185916,-0.00466237,0.036984783,-0.03286539,0.0018793049,-0.056532826,-0.021659777,-0.0015884844,-0.018127237,-0.025256023,-0.005157565,0.019856693,-0.011492293,0.018798579,-0.013603455,0.04521005,-0.0031857935,-0.06601047,0.029301794,0.009236561,-0.04076064,-0.01494335,-0.04184707,-0.006493577,0.065833196,0.01288066,0.021953948,-0.017203098,-0.016244397,-0.0059947427,0.0050298786,-0.014009977,-0.009024918,-0.015629862,0.006077125,0.014879314,0.056324627,-0.026646147,0.06491833,-0.04703871,-0.019584836,-0.029066196,0.0068069934,-0.05026026,-0.020303173,0.03265053,-0.018407878,-0.02884632,-0.0069771074,0.044623856,0.019208806,-0.010638803,-0.03709553,-0.030852389,-0.03639498,-0.029056847,0.013995081,-0.028977035,0.017820705,-0.039119955,0.010657853,0.023146717,-0.029402616,0.020877216,0.076611936,-0.009500365,-0.013242209,-0.03609887,0.022024838,0.02719154,-0.029916208,-0.030630764,-0.0146327475,-0.026096039,-0.012522916,-0.040936876,-0.058531415,-0.0066794,0.01682069,0.06406405,-0.03820545,0.072333716,-0.0041646576,-0.018700423,-0.040289048,0.031970315,0.03846119,0.011834604,0.039418645,-0.017833423,-0.0120251635,0.03746626,0.024844518,-0.0052284524,0.031984944,0.024477016,-0.0010711675,-0.07427557,0.012228445,0.024656378,-0.041770436,-0.054090638,0.014923884,0.0041923174,-0.029491179,-0.004844677,0.022729376,-0.01956015,0.016326439,-0.026027445,0.007514433,-0.028174775,0.030607712,0.009617567,-0.023781741,-0.009386596,0.02620499,0.01473963,-0.029285472,0.016705865,-0.015568496,0.035906065,0.0070775654,-0.02117063,-0.0021259782,-0.012258048,-0.013973389,-0.016986486,0.014804511,0.030569365,-0.030857759,-0.050219078,0.043530673,-0.016911456,-0.03447216,-0.020292005,-0.0054393965,-0.03225044,0.0077507547,-0.04046301,-0.04353243,0.023356088,-0.00869731,0.0007986826,-0.024375614,-0.040935468,-0.012750374,-0.029980874,-0.021270543,-0.017689697,0.011623393,0.028739009,0.024042493,-0.016572692,0.0276984,0.05160783,-0.034151714,0.02263152,-0.015221576,0.07688456,-0.029819066,-0.063774645,-0.03297842,0.008386926,-0.07236391,0.012381167,-0.035524793,0.02724951,-0.009422181,0.02641737,0.0008510104,0.02393231,-0.043995515,0.0033682534,-0.018263068,0.021460703,-0.0076734195,0.040318355,0.05938123,-0.008783121,-0.017949479,-0.040826485,-0.027850382,-0.023267088,0.009832162,-0.0042561335,-0.01446073,-0.005209715,-0.030630644,-0.02798375,-0.04569263,0.00005637975,-0.050989162,-0.0027015724,-0.02749595,0.018474806,0.0098304525,0.026095076,0.02612943,0.0050979387,-0.011653818,0.026428415,0.029316384,0.031236757,0.023353282,-0.019054383,0.022119222,-0.0020843106,-0.012911901,0.03703918,-0.01765616,0.037191924,-0.019768057,-0.030953486,-0.031211412,0.020270625,0.0076319096,0.03475327,0.003395455,-0.016271304,0.025608186,-0.024342166,-0.0069034975,-0.0045335307,-0.075311735,-0.047969487,0.01627932,-0.007478475,-0.0037665225,-0.013767976,-0.05470325,-0.010283022,0.021155948,0.0032632563,0.0043043303,0.030035371,-0.003014009,0.025084069,-0.0647923,0.021695638,-0.0069897436,0.028921511,-0.038328256,-0.058528572,0.025574327,0.022646904,-0.00054130366,-0.019663306,-0.018949483,0.0115604205,-0.014361672,-0.03240672,-0.06278756,-0.00007783654,-0.0063757068,-0.0064661517,-0.0022089786,0.03854973,-0.02016053,0.03658195,0.006961206,0.010868993,-0.020600833,0.032530863,0.025386935,-0.012021209,-0.009669054,0.024266498,0.015916442,-0.015759336,-0.03561749,-0.023507362,0.04671921,0.0064418525,0.0013868802,-0.04470595,0.028826749,0.007698373,0.006281957,0.006512922,0.04878474,-0.012765499,-0.016046466,-0.000031027826,-0.025252702,-0.0021078598,-0.028973944,-0.03662939,-0.020251432,-0.03287135,-0.030785564,-0.02944028,-0.0063855136,0.06645557,0.02451357,-0.0100107305,0.022948164,0.012725346,-0.04014448,0.06295589,0.02571258,0.045150205,0.013838078,0.018708937,0.019729964,0.024911586,-0.0074953027,-0.010868077,0.0039127194,0.022813486,0.00052320404,0.016235879,-0.05406118,-0.023782056,-0.057454407,0.030340418,-0.03550494,-0.039370917,0.008919177,-0.03995718,0.018264681,-0.045747932,0.005357877,-0.018242333,0.0038905735,0.023973808,-0.030445915,0.005862085,0.002878755,-0.030372087,0.011784101,0.020551324,0.015500879,-0.009795733,0.03886939,0.015858855,-0.038835634,0.012083876,0.007041732,-0.01064878,-0.001537358,-0.0026169145,-0.03536755,0.0015210825,-0.0073659727,0.0025055828,-0.025792288,0.052309945,-0.0009244414,-0.049776647,0.03718311,0.022146665,-0.014121999,0.044588435,0.0006911896,0.0034939728,0.013072824,0.003831825,0.029368693,-0.025560945,0.046374347,-0.03366093,0.032231677,-0.0422972,-0.059950247,0.007492294,-0.04976293,0.021173505,-0.01960461,0.00019106174,-0.059360128,-0.0071593635,0.03365366,0.004643346,0.01196193,-0.026071211,-0.034781147,0.054292757,0.017422378,0.030820418,0.07842939,0.0074932594,0.0061203255,0.033366393,-0.015376952,0.07140298,-0.010429926,-0.022620928,-0.08125241,0.04369729,-0.054142043,-0.058054585,0.021331681,0.057518918,0.0059790188,-0.04456429,-0.0732987,0.012664811,-0.03837418,-0.0060180845,0.00720449,0.024779143,0.001092945,-0.008893921,0.023657456,-0.04815194,0.24902421,0.028245566,0.0379836,0.041718774,-0.001918557,0.02189338,-0.004068637,0.015629916,-0.017883634,-0.053215224,0.042130783,0.002028294,0.023364224,0.020996017,0.018175207,0.07059802,-0.0025041825,0.029361969,-0.004674918,-0.05370166,-0.024565827,0.043519568,0.0022999053,0.036578186,0.0015691473,0.028013725,0.04530809,0.012022449,-0.03582673,0.010418446,0.003862093,-0.016607312,0.017191647,-0.028343285,-0.03770124,0.058876514,-0.019105159,-0.050859593,0.035930034,-0.0053413347,-0.023765566,0.0060744574,0.021249522,-0.023185428,0.025799762,0.035012078,-0.026866572,0.010181115,0.009178075,-0.039437186,0.046957873,0.002996564,0.016738664,-0.022089818,-0.026472626,-0.010505908,-0.022520356,-0.018318562,0.004778394,0.071921594,-0.0030564503,0.012676648,-0.0013785182,0.010743576,-0.04019746,0.03139842,0.070358954,0.030301383,-0.045002744,-0.027482426,-0.015515362,-0.009020778,-0.0382986,0.014409626,-0.0010813929,0.03205037,-0.0007821567,0.04594006,0.04375695,-0.014133357,-0.009225606,-0.00096708216,0.0073474725,-0.0110867685,0.009156985,0.04267905,0.008898404,-0.015770713,-0.06025282,0.033354454,0.0053180177,0
+8000
+.031835623,0.016250346,-0.026218574,0.020502921],[-0.0019009723,-0.017855346,0.008622943,0.040317375,-0.0088810045,-0.02019124,0.029065615,-0.022799607,0.02942715,0.04288841,0.0006622446,-0.00012618353,-0.01377215,0.011572975,-0.050101742,0.029760668,-0.03923377,-0.00036228346,-0.024261344,0.0124699455,0.018029595,-0.003832763,-0.07270117,-0.0146789085,-0.023708634,0.04139042,-0.009766595,-0.017333165,0.033071924,0.042513076,-0.03842461,0.017547298,0.0001672199,-0.054024465,-0.035613045,-0.036824703,0.05239729,-0.02037096,-0.012723863,-0.05076221,0.0031146423,-0.009189227,0.04824062,-0.032877956,-0.056226373,-0.022040093,0.002835218,-0.0084057925,0.025704578,-0.044797827,-0.0023390066,-0.03340235,0.043308042,0.003370232,0.017209126,-0.031008601,-0.02847436,-0.024409834,-0.02161833,0.017065093,0.037582833,0.017833065,0.029053245,-0.0663057,-0.017898425,0.030342806,-0.008797823,-0.028042138,-0.019055877,0.012040439,0.0060511385,0.024774391,-0.0132984845,-0.025052119,-0.052587762,0.01576415,0.04155808,0.020310827,0.0014307064,0.042882033,-0.010845,0.013668569,0.010860513,-0.0077997404,-0.028998177,0.00028788883,0.017542796,0.06160795,0.029891964,-0.02894729,0.007014786,0.009997902,-0.05528844,0.0045920014,0.0402053,0.026476867,-0.015790466,-0.024175104,-0.02764016,-0.00055888144,0.045126908,0.0010867415,-0.0004934559,0.06890674,-0.042513486,0.0072502885,-0.000113942966,0.005176643,-0.026810095,-0.038662348,-0.014169343,0.015524036,0.0071469783,0.004220483,-0.0059075914,0.022945248,-0.016001891,0.04180424,-0.036891013,-0.004514086,0.033320084,0.020779688,0.034374673,0.03133303,0.018392,-0.017642492,-0.027612902,0.04374995,-0.030982772,-0.0013654343,-0.028967448,-0.014181899,0.037594818,0.021628777,0.06903176,0.014699567,0.024773166,0.02552107,0.039803993,-0.021621717,0.038217444,0.014181832,-0.0044590426,0.07134602,-0.020226834,0.045707118,0.005236901,0.0070129517,-0.014428232,0.021101533,-0.023872511,-0.01841825,0.028347274,0.01753115,-0.044168033,0.012987636,0.0055452706,-0.014377889,0.01537406,0.021335606,-0.017185293,0.0096280305,-0.044237148,-0.01772113,-0.018366119,0.018040514,-0.027618365,-0.046646133,-0.018483842,-0.024988579,-0.0033709637,-0.019306047,-0.019203445,0.001744989,0.0057261754,0.072513975,0.0050305515,0.0004366493,0.06642753,-0.022314936,-0.032022733,0.0139919575,-0.00602791,0.033259165,0.007989587,0.01941971,0.008228137,0.028482264,-0.030285591,-0.02772894,0.013067498,0.034926414,-0.025617182,0.0033326605,0.024774967,0.0001410615,-0.056592647,0.017917119,0.009000733,-0.017336318,-0.01671747,0.027051345,-0.013279954,0.05775291,-0.026040034,-0.022196596,-0.001581395,0.04991058,0.018475905,0.006754886,0.031671125,0.025690313,-0.017942738,-0.0044846116,0.07063722,-0.014889276,-0.05398209,0.016847676,-0.062046688,-0.0063965614,0.033494946,0.012029293,0.03289293,0.033394627,-0.0054285377,0.014790308,0.048482418,0.013706618,-0.005556352,0.048573483,-0.00882458,0.04459676,0.024787543,0.0049576145,0.0018394116,0.024507638,0.023438951,0.03557573,0.0023914375,-0.020686489,-0.027011106,0.0021113495,0.020930773,0.042422615,0.002517943,0.03110688,-0.018283078,-0.02113873,0.00016681678,0.01858491,-0.03813311,-0.0012715642,0.007868379,0.003139076,-0.024352863,0.0073721423,0.053448465,0.03645461,-0.042426027,-0.033526048,-0.024113234,0.027308973,0.065406926,0.057395816,0.031331602,0.016101014,-0.02008379,-0.013295874,-0.0058783847,-0.021351583,0.017713604,-0.02071049,-0.06837715,0.0037321886,-0.05752587,0.019010304,0.016488329,-0.030909287,0.011834262,0.002539179,-0.00394748,-0.013518789,-0.0059342464,0.0073409546,-0.018241933,0.046831746,-0.021356924,0.02891473,0.014334537,0.011352858,-0.024254106,0.009783134,-0.01114684,-0.0031239747,-0.0022670664,-0.014184807,-0.008191358,0.008813171,-0.018515974,-0.065073565,0.030143244,-0.022639753,-0.002329315,0.018605951,-0.0072998595,-0.0052986206,0.005361346,-0.025025452,0.08507994,0.00610694,-0.08763416,-0.013962978,0.008946096,-0.01377728,-0.050526537,0.008378269,0.030634891,0.03366204,-0.029171664,-0.0009449298,-0.01882246,0.006806318,-0.010156552,-0.031326067,0.006896623,0.0250166,0.045667194,-0.10793974,0.026824072,-0.0022623008,-0.076172926,-0.053861573,-0.021368662,0.026076684,-0.019093778,0.016187962,-0.032342676,-0.023941632,-0.017301485,-0.031840406,0.05838424,-0.049486153,0.028175632,0.06593458,-0.04784577,-0.007334189,0.0169767,0.0030198332,-0.039470155,-0.009507923,0.0006667643,0.028906222,-0.005817241,0.0027118302,-0.015441669,0.02637141,-0.037765075,0.011489869,0.041938253,0.04444302,-0.002874453,0.04992099,-0.0009126024,-0.030620977,-0.006229797,-0.057531927,-0.00022677214,0.03407124,0.049267262,-0.052358735,0.044834487,0.015054049,-0.047024135,-0.00022398804,0.004459034,0.004998546,0.05650664,-0.042300273,0.036389127,-0.033506,0.0030999214,-0.018378235,0.0032225016,0.017054155,0.036804147,0.023458496,0.0058205933,0.000018425097,0.0043084584,-0.032601573,-0.07816563,-0.032842904,0.013028243,0.02692025,-0.006375283,-0.037745666,0.038768075,-0.004884781,0.019847533,0.016964251,0.070214026,0.00048187948,0.021521246,0.012035864,-0.003711025,0.023441052,-0.03713847,0.08133975,-0.001403954,-0.007264608,-0.007635813,0.005434452,-0.031548783,0.0009450091,-0.0009145776,-0.031217,-0.035144147,-0.03246449,0.05216361,0.025352392,-0.10053341,-0.012632856,-0.004559006,-0.0069179805,-0.0041825804,-0.0349319,0.021335678,-0.032203827,0.018727202,0.010749414,0.0118928775,-0.035098642,-0.014906586,-0.023617735,-0.029487764,0.019543242,-0.024735427,-0.01688587,0.023236435,-0.007962745,0.044935316,0.0072442805,-0.013186892,-0.02615525,-0.026255138,0.01395601,0.037218843,0.05926431,-0.03686296,-0.06217821,0.036794577,-0.04735745,0.00052298146,-0.04013695,-0.016795639,-0.0007825463,0.0040319026,0.0315569,0.017524775,-0.0085709505,-0.0020216058,-0.023061935,0.058047395,0.0142829,-0.002998116,0.041515436,-0.004223589,-0.023785917,0.012157448,0.0037788986,0.019866105,-0.0063144057,0.0076112384,-0.010457133,0.020011298,-0.027973527,-0.013956484,-0.036734372,-0.02158155,-0.007419875,-0.019139744,-0.0011183007,-0.037905313,0.032438867,-0.035519373,-0.027448116,-0.019538153,0.029949924,-0.013877533,-0.005312564,-0.0086407345,0.018034918,-0.013394365,-0.062125728,-0.025424536,-0.028613169,-0.06636796,0.003864005,0.0038533006,0.0030834472,0.026718916,-0.0026655032,-0.025415221,0.003711303,-0.00057591515,-0.009414726,-0.03404273,-0.026115835,-0.00054734177,0.0014025032,-0.008935528,0.042876337,-0.021178236,-0.03211989,0.05307041,-0.013131764,-0.035913665,0.020667208,-0.027301509,0.0027416847,0.015712578,-0.02522248,-0.016458932,0.06041697,-0.009728631,0.028411185,-0.005032409,-0.013338836,-0.048564564,-0.0094694635,-0.014924098,-0.05801106,-0.03530312,-0.026747543,-0.024863552,0.0019274526,0.029374186,-0.0067015174,-0.0008163059,0.03610615,-0.059738193,-0.0079200845,0.026896942,-0.07011312,-0.024147032,-0.048662912,-0.0079066465,0.06599425,0.007555341,0.0042523355,-0.04447472,-0.008287347,0.004671506,-0.017221697,-0.0073539405,-0.028577605,0.01670171,-0.0021636751,0.014314331,0.021599574,-0.019637795,0.0538771,-0.038852822,-0.049064197,-0.04027745,-0.029753372,-0.050898224,-0.013128545,0.0458633,0.0019780684,-0.0013854124,-0.028226277,0.068489134,0.035506364,0.024772216,-0.01987958,-0.07500367,-0.062409382,-0.033818167,0.030423202,-0.006840334,0.015350249,-0.036034722,-0.0025081786,0.032450978,-0.011358054,0.027768027,0.08349717,0.03870825,0.018322567,-0.04502025,0.04034979,0.012302524,-0.040446967,-0.011120442,-0.020797262,-0.03572341,0.022998553,-0.039328817,-0.07822672,-0.036026824,0.00802697,0.06364666,0.015571055,0.03648513,0.007253328,0.014754724,-0.056541372,0.028614854,0.038025934,-0.017026262,0.03810359,0.005154855,-0.014738333,0.03539715,0.022504421,0.009433057,-0.01012097,0.035432417,0.01574798,-0.025961133,0.015764846,0.045561574,-0.028480876,-0.036522303,0.023730645,0.015635097,-0.0168064,-0.035528686,-0.00036031663,0.0013524587,-0.012601016,-0.021342354,0.008818247,-0.0037842563,0.04540665,-0.0038251576,0.013402292,-0.0059658894,0.035551812,0.030750727,-0.017114114,0.012811654,0.0023548056,0.0025665879,0.011327997,0.018387266,0.028438915,0.0061769467,-0.006952304,0.023285592,-0.00034590455,0.034054052,-0.031210015,-0.029550664,0.03783865,0.02520272,-0.04587893,0.00979232,0.019811062,0.0002713125,0.004201959,-0.06771334,-0.027016405,0.007442937,-0.011729543,0.030995682,-0.032166436,-0.005654155,-0.0368914,-0.038572546,-0.000815913,-0.033116538,-0.023759112,0.04411827,-0.001635126,0.0064269365,0.0010856446,0.04898035,-0.026253372,0.029220803,0.019882714,0.049978312,-0.0066200946,-0.06826751,-0.04358149,0.046078462,-0.055973407,-0.0059726634,0.015825827,0.006733136,0.026886595,0.007985478,0.01049198,0.03498085,-0.010583231,0.0005151192,0.03120444,0.027608793,-0.0064833593,0.026146963,0.055234257,-0.010180842,0.0052601174,-0.006098605,-0.01462146,-0.030513076,0.0002539021,-0.016446881,-0.0033508174,-0.0018514328,-0.04775693,0.0061973887,-0.02318387,-0.0056608333,-0.009227308,0.014290758,-0.0059653213,-0.026418421,-0.00054886716,0.02988071,-0.014130979,0.03557715,-0.009953013,0.06509258,0.022628741,0.0016592831,-0.0045149582,0.0058806506,0.03931606,0.029490082,-0.01982402,0.035989594,-0.02397067,0.02807119,0.016880613,-0.039499618,-0.026599588,0.015413135,0.0047072903,0.023169823,0.011432722,-0.006006146,0.010100262,0.0042836852,-0.030595193,0.012441598,-0.062011354,-0.027760407,0.01289299,-0.015251488,0.008171036,-0.021435594,-0.05175248,-0.009995803,0.0059476574,-0.01069892,0.030532107,0.024112917,-0.004271677,0.016160943,-0.064894006,0.02093851,0.012220302,-0.0061380113,-0.0336868,-0.06400079,0.05263518,0.03471177,-0.012558697,0.012152622,-0.032201104,0.029626746,-0.02744108,-0.034753073,-0.00699417,0.013171843,-0.008611417,0.004275316,-0.021292282,0.038561054,0.008374086,0.023560269,0.0018425481,-0.0017359293,-0.014335731,0.039412387,0.023363972,-0.00704696,0.03301053,0.03007508,0.020765595,0.015042358,-0.019432258,-0.04460978,0.0326214,0.00477009,-0.0068575125,-0.03213,0.03303264,0.012928916,0.04575704,-0.028393079,0.027270729,0.010731412,0.014286129,0.006525585,-0.0045935544,-0.017518505,-0.015991587,-0.0537331,-0.008480808,-0.0332824,-0.013372563,-0.020608064,-0.03998349,0.022736667,-0.008137933,0.03427817,-0.016482022,0.008381936,-0.032891333,0.027296914,0.013239248,0.03394123,0.008235962,0.0014917258,0.023382295,0.049862493,-0.009457097,0.03340288,-0.013167702,-0.03450955,-0.0010036984,0.021336846,0.0020656728,-0.028774824,-0.026035333,0.067901775,-0.009084338,-0.032849297,-0.014154454,-0.067886405,-0.006974023,-0.04379165,0.031045312,-0.013479146,-0.011258914,0.014878258,-0.032090735,0.022147404,0.006380113,0.006370268,0.04137254,-0.002080297,0.02926491,-0.024914814,0.0683102,0.03283532,0.0054789283,-0.008656826,0.013137277,0.0015141717,-0.013527303,0.031916507,-0.009503412,0.0041804113,0.0037693735,-0.025956659,0.00931743,0.021813955,-0.027863944,-0.04570319,-0.03986237,0.015387554,-0.0012008495,0.016317086,-0.010561291,-0.054997128,0.0034122663,0.044984903,-0.014823734,-0.00470185,0.028636113,-0.053433403,0.05610559,-0.049675293,-0.05805519,0.014902254,-0.049572714,-0.016830532,-0.007559217,-0.010549946,-0.04583151,0.011558159,0.040519387,0.03390689,0.0056608506,-0.019327456,-0.008841884,0.042742807,0.059832275,0.0015009884,0.097689055,-0.021038314,-0.0059016217,0.02677241,-0.019571623,0.056423374,-0.043868087,-0.051439643,-0.047638617,0.029116116,-0.04866963,-0.0529219,0.040995054,0.027464548,0.015666256,-0.05952421,-0.08075665,-0.006339896,-0.029797863,-0.036887944,0.0021930232,0.048657324,-0.009083494,0.0019812863,0.008553921,-0.07572039,0.23871216,0.0602905,-0.0015199678,0.009703956,0.021616096,-0.0049616955,0.011542368,-0.029983006,-0.039777108,-0.028135143,0.0018380632,-0.0047787596,0.037819907,0.040914744,0.03730436,0.05570866,0.0021055161,0.009906259,0.002990529,-0.011238552,-0.04418936,0.021573175,0.018910091,0.014251709,-0.017060384,0.03575527,0.024641244,-0.02678441,0.0071618464,-0.036270395,0.020937195,0.0048392895,0.009844979,-0.04720104,-0.030347567,0.026981093,-0.011853918,-0.068040736,0.016802812,0.008440645,-0.029418543,-0.021468706,0.022296876,0.013490772,0.011760275,0.046277396,-0.0352288,0.047621842,0.021341478,0.00024424284,0.075191244,-0.040544476,0.041042916,-0.05196537,-0.03174891,-0.010857166,0.04499195,-0.063636616,0.0031440228,0.020014934,0.013809529,-0.011054731,-0.018875286,-0.017406614,-0.010128132,0.03790118,0.07283168,0.005509402,-0.01619884,-0.017743025,-0.015470442,-0.037547193,-0.0503578,0.0051152427,0.02251381,0.008748462,-0.031913232,0.018615734,0.021401111,-0.048611272,0.010308404,-0.0039019033,0.03103243,-0.015602785,-0.0016685688,0.069703355,0.0028192282,0.006629005,-0.027910898,0.03393448,0.052630685,0.009506883,-0.017910166,-0.059764575,0.01012653],[-0.0027304778,-0.021701347,0.00471809,0.02337871,-0.0391646,0.0041464823,0.025141863,0.014230765,0.009266821,0.02883261,0.013480226,0.006441354,-0.019374369,-0.022226099,-0.050082497,0.028323263,-0.031596724,-0.0010929689,-0.04827412,-0.003808838,0.0012573479,0.00854544,-0.09341654,-0.0061363764,-0.009167616,0.06511755,-0.029454917,0.0060503087,0.06973136,0.03730766,-0.027101459,0.019042384,0.038145695,-0.013853903,-0.038667295,-0.028896222,0.06636231,-0.010338119,-0.039293647,-0.019449946,0.021947432,-0.01032148,0.04850143,-0.03728039,-0.04112728,-0.031256963,0.003449274,-0.026057532,0.017053595,-0.032993935,-0.0047347676,-0.022119733,0.034490146,0.002745507,0.04264565,-0.015392848,-0.036222428,-0.025469977,-0.006926482,0.023510415,0.022856668,0.029146407,0.029321663,-0.06146754,-0.03654111,0.032338526,0.00075349904,-0.012085701,-0.019226687,0.008555112,0.0024932348,0.013605821,-0.010285113,-0.04123257,-0.005404463,0.013580777,0.024508307,-0.004479683,-0.022182653,0.058072552,-0.019871643,0.0021113744,0.042250257,-0.00826552,-0.032494374,-0.007807832,0.024992665,0.018378794,0.021707827,-0.03296299,0.01970138,0.009938102,-0.038840897,0.0069177346,0.03122958,0.0034728777,-0.024125786,-0.016085207,-0.051309533,-0.003971511,0.036557578,-0.01008827,-0.0059060124,0.039866235,-0.05880652,0.01250788,0.004123906,0.009272736,-0.0034403496,-0.021448554,-0.031443466,0.0125116585,0.01859616,0.0054577403,0.012177149,0.024539366,-0.050257415,0.025336916,-0.054926667,-0.015472811,0.013950473,0.016702417,0.011260568,-0.0041890447,0.011186526,-0.015008155,-0.04403077,0.05869793,-0.044823244,-0.04573693,-0.010272757,0.0014760356,0.044733714,0.021516562,0.053965803,-0.0069258087,0.015094958,0.020730099,0.0076393103,-0.019271541,0.03460049,0.020219984,-0.049112488,0.081350565,-0.0045571257,0.050050598,0.005827032,0.021501642,-0.03985629,0.03856721,-0.05004835,0.007581905,0.02842935,0.043243874,-0.059944905,-0.00017449004,0.024991432,-0.009062583,0.012180453,0.0041851583,-0.009277979,0.01069958,0.013523865,-0.010731039,-0.06499841,0.019140966,-0.03342167,-0.01807845,0.016580416,-0.03620426,-0.018075299,0.0043692933,-0.03866378,0.0044240924,-0.01691357,0.06701219,0.019074714,0.003259799,0.04722539,-0.013592253,-0.012652398,0.0016379141,0.006327964,0.028240051,0.004985597,-0.021567544,-0.014460204,0.029424021,-0.03476293,-0.046041347,-0.009977098,0.051933356,-0.0058414876,0.0025015401,0.003207145,-0.016801598,-0.046612144,0.012339423,-0.010400941,-0.033195782,-0.000010908962,0.043619137,-0.018808551,0.018541431,0.0012438031,-0.02500465,0.006074003,0.05435028,0.0022777545,0.031145653,0.0030086325,0.020743266,-0.03234312,0.0036859126,0.061808284,-0.020935355,-0.0442379,0.02673426,-0.04550204,-0.0037002878,0.016013037,0.024500743,0.048177883,0.034479138,0.024788337,-0.0030445848,0.04841117,0.025981747,-0.0021836301,0.03108251,-0.013733984,0.042450994,-0.0057593626,0.02848469,0.013243812,0.013768801,0.052083485,0.044050667,0.020708539,0.018629842,-0.027965834,-0.00009605361,-0.0012983951,0.036422424,0.012357152,0.050036073,-0.019967865,-0.04446735,-0.011883021,0.0022263979,-0.0069914623,-0.012620331,0.018584218,0.0039429134,-0.03542923,-0.002937292,0.04615423,0.055810027,-0.039201606,-0.03234396,-0.01575199,0.032892834,0.021653416,0.048833553,0.043035254,0.02816944,0.004670537,-0.009111622,0.0018098493,-0.0032962777,0.014704975,-0.020184653,-0.068719245,-0.034828924,-0.026471263,0.011961866,0.013816332,-0.026258055,0.014782311,0.010461709,-0.016120246,-0.009192771,0.02470918,0.00310294,-0.0043365154,0.03182986,-0.029289586,0.020873157,0.008188754,0.024357803,-0.055242114,0.019812938,-0.023864426,-0.0041818717,0.03205113,-0.0014000507,0.000733042,0.020686232,-0.022612358,-0.046992242,0.00043671683,-0.03453232,-0.009917846,0.039291274,-0.011924277,0.00065172196,-0.0044480194,-0.032955963,0.072444476,0.009709445,-0.09601488,0.0054171393,0.015645083,-0.017751196,-0.057978384,0.010877041,0.03511075,0.050368864,-0.029491093,0.04503091,-0.02756656,0.017395899,-0.009047895,-0.042994536,0.036066942,0.023820756,0.05801844,-0.09702057,0.030316468,0.0014286989,-0.039467625,-0.05397921,0.00467761,0.039985377,0.01756813,0.01977877,0.01593705,-0.028436722,-0.016316714,0.014868009,0.05044525,-0.062838785,0.0077867936,0.07341136,-0.026040258,-0.0076934663,0.012002398,-0.0063297846,-0.028689917,-0.00029833883,0.01564543,0.06519198,0.000009064773,0.0073047834,-0.015104683,0.017078625,-0.04667799,0.018312773,0.03349778,0.007045324,0.0020321123,0.041829348,0.0030710937,-0.012490015,-0.008734608,-0.0448091,0.024896223,0.00025440461,0.02914731,-0.0777906,0.035945464,-0.0031419545,-0.02334082,0.007556378,0.006958275,0.006294065,0.04490378,-0.024935499,0.025109135,-0.02967921,0.0034570305,-0.0006734195,0.0039544073,0.030588979,0.04574307,0.022618873,-0.025184197,-0.009125648,-0.003357401,-0.021646757,-0.040953986,-0.040182885,-0.013155684,0.035718337,-0.021003148,-0.040332902,0.041374657,0.007732403,0.03741274,0.02901524,0.070487835,0.002354607,0.017277198,0.05154081,-0.011905836,0.009278053,-0.01563388,0.046287265,-0.0061626113,0.005001039,-0.04074421,0.0059641916,-0.022506151,0.010494547,-0.006120539,-0.00948801,-0.033551153,-0.01560624,0.033872537,0.036595587,-0.056596365,-0.0004570554,-0.0004349134,-0.011333758,-0.002529676,-0.017291645,0.006019039,-0.032374226,0.024792023,0.026121672,0.020898929,-0.034686014,0.0005647632,-0.0049580927,-0.02239443,0.0049893367,-0.0048274356,-0.012427462,0.01763081,-0.00291008,0.026193498,-0.0038345475,-0.01742337,-0.00087700674,-0.00741865,-0.00016489382,0.030400883,0.038717553,-0.07741386,-0.026667677,0.014150788,-0.04224688,0.0083310325,-0.026324973,0.014225047,-0.022994138,0.0006464816,0.0367601,0.030679768,-0.039944813,-0.016593175,-0.030639438,0.07840083,-0.0012408899,-0.011874184,0.017340945,-0.016040284,-0.031591773,0.010595939,0.014072523,0.007889502,0.010941378,-0.017192528,-0.008152318,0.008860083,-0.034224864,0.009688035,-0.026721034,-0.043605138,-0.025553918,-0.010875089,0.0101254275,-0.0014343639,-0.014622635,-0.03427598,-0.028808344,-0.01965059,-0.007340703,-0.004264981,-0.012649076,0.0018230396,0.031082453,-0.012418074,-0.060849212,-0.011560928,-0.0124615505,-0.044893686,0.022365293,0.01771669,0.012815416,0.024745062,-0.007939891,-0.0069785663,0.01364447,-0.0077573964,-0.02997787,-0.056120843,-0.0033040468,0.003470889,0.024746628,0.024842726,-0.024587778,-0.027871722,-0.044815864,0.033357374,0.0054229144,-0.03527996,0.017358482,-0.020928146,0.012749489,0.006584543,-0.024808735,-0.035182726,0.096477516,0.015451911,0.041593995,0.0153867435,-0.010911647,-0.059997227,-0.018353155,-0.03312363,-0.070688784,-0.028855985,-0.0047416375,0.003806456,0.011405195,-0.00662815,0.004522383,-0.012076985,0.028235462,-0.047844928,-0.0077360384,0.0029240253,-0.04450256,-0.014303839,-0.03762876,-0.00032616727,0.05160867,-0.021570591,0.028712787,-0.030168606,-0.045430757,-0.00031770635,-0.013764632,-0.032343082,0.016195904,-0.0029118825,-0.015269368,0.012799536,0.022133172,-0.018643599,0.03495083,-0.049653657,-0.026583312,-0.003299939,-0.0045172456,-0.028243238,-0.0059980457,0.051496133,-0.0015747431,0.0046043945,0.008047158,0.07565578,0.024174545,0.013229849,-0.014122031,-0.029656252,-0.07590315,-0.026356246,0.006887325,0.008345175,0.025977366,-0.021330586,0.009547519,0.04931409,-0.024209317,0.051746383,0.062441003,0.010432878,0.013606462,-0.062602565,0.05294364,0.031311944,-0.026792413,-0.02075962,-0.042150404,-0.010516599,0.0533205,-0.079306625,-0.06814223,-0.0415415,-0.006450914,0.043206453,0.0200077,0.03183141,0.0018925525,0.005803654,-0.06051514,0.01651159,0.035877228,-0.021335669,0.05047605,-0.007416916,-0.00043933323,0.040423505,0.015330075,0.009829494,0.005504213,0.050043803,0.020006431,-0.027402908,0.06512529,0.053668037,-0.0448954,-0.06688162,0.0031060101,0.0025926959,-0.027709229,-0.055853646,-0.00019478479,-0.008164148,0.02652809,-0.02847616,-0.014078588,-0.0032925357,0.046904474,-0.025330534,0.025547195,-0.0010454827,0.033484504,0.024772592,-0.022636961,0.01701405,-0.043664202,-0.011421051,0.025278347,-0.0054618926,0.01602645,0.013730176,-0.002258881,0.03735663,0.011190114,0.04514622,-0.02421929,-0.030211743,0.016227819,0.0010340558,-0.017197732,0.01325963,0.029150302,-0.02283811,0.010041316,-0.066284135,-0.027664674,-0.005682501,-0.0009359708,0.019356983,-0.01002308,0.0074802595,-0.044224873,-0.042962387,-0.020991083,-0.0044398652,-0.0205388,0.024102155,-0.013879273,0.026389843,0.00725392,0.066160664,-0.0439316,0.033029165,0.020720845,0.06091681,0.0022195305,-0.06608962,-0.04474044,0.025238741,-0.06327956,0.0010960726,-0.023003457,0.012386197,0.029412696,0.009215679,0.014158837,0.038431596,-0.01776042,0.008405778,0.04745411,0.026437491,0.00045552573,0.053355154,0.05547584,-0.010688588,0.0010320114,-0.011984993,-0.025096014,-0.033916526,-0.00016132584,0.028191164,-0.06511837,0.030027537,-0.06882987,-0.00045761027,-0.035942763,-0.0034506822,-0.010818669,0.022713711,-0.0022737961,-0.034204934,-0.0067256843,0.034334835,0.023257151,0.026118187,0.00084187376,0.017876223,0.012419071,-0.037514247,0.025673144,0.00611568,0.056178667,0.017820401,-0.01001182,0.0052331192,-0.009842116,0.01860542,0.0003141732,-0.05082178,-0.0075427755,-0.004141527,-0.021353828,0.03954026,0.025654444,-0.04293971,0.010746527,-0.016168846,-0.023085572,0.010535544,-0.051859066,-0.0144762155,0.019797096,0.00033437752,0.032035187,-0.0006843198,-0.064118855,-0.012298036,0.041583087,0.009560284,0.0050160056,0.02080112,0.006704181,0.0032643622,-0.032337256,0.010825243,0.0064136577,0.0063912524,-0.03098904,-0.048730504,0.04755653,0.023959482,-0.01916374,0.008545978,-0.050870024,0.017768025,-0.026545638,-0.032204036,0.01006493,0.02771988,0.0049081948,0.015920728,-0.034392737,0.060992368,0.02834376,0.026836656,0.018272944,-0.0003797632,-0.027919233,0.054011825,0.016840408,0.0033374152,0.05109295,0.0012109018,0.015850144,-0.028498955,-0.01601999,-0.041477457,0.038901217,0.013111872,0.0043332847,-0.0062249256,0.029244611,0.030693851,0.037010714,-0.01596517,0.015498673,-0.0016750488,-0.015881695,0.018025123,-0.035846446,-0.0037048424,-0.029668903,-0.07384053,-0.018099668,-0.025905872,-0.0123090055,-0.010925088,-0.028638098,0.018348882,-0.016728925,0.03497625,-0.011437309,-0.0028100552,-0.027708644,0.01929896,-0.020967359,0.029764015,0.02593214,0.0083819125,0.023722619,0.032468762,-0.00082081417,-0.014235028,-0.031081757,-0.023645647,-0.0005069453,-0.0006248349,-0.020309672,-0.0485466,-0.058915883,0.035045296,-0.0013880923,-0.030434428,-0.00014893297,-0.059555974,0.019414937,-0.055679914,0.038153116,-0.01169688,0.0029601252,0.014623541,-0.014707903,0.03875484,-0.004748215,0.0091148475,0.014303057,-0.0021747537,0.037368253,-0.047767118,0.03613099,0.029559394,-0.008963684,0.0019188229,0.02226222,0.0036400976,-0.05446656,0.0024199376,-0.028950065,0.02351446,-0.012307629,-0.010709105,0.0007661982,0.04129267,-0.03197761,-0.040540528,-0.05221615,0.015537562,-0.021981604,0.017030476,0.0043045194,-0.0261097,0.019405242,0.029155701,-0.027512442,-0.0023367177,0.021382367,-0.0742999,0.066799864,-0.04653602,-0.08131537,-0.0018967646,-0.047358356,-0.008058201,-0.0080719525,-0.025382278,-0.05683831,0.007918192,0.014226328,-0.0009606273,0.02846415,-0.041724104,-0.0002609004,0.030756373,0.06355208,-0.036227413,0.06888155,0.0036982726,-0.016112315,0.03715115,-0.019684687,0.0553593,-0.021058204,-0.030604823,-0.0634085,0.017356237,-0.025164623,-0.03274009,0.014377617,0.023367258,0.03386176,-0.043305617,-0.06523539,-0.020133873,-0.04124184,-0.0038217166,0.015091604,0.06664619,0.010222342,-0.009190876,-0.0050009517,-0.06556016,0.24013434,0.050887365,0.02006891,0.013774773,0.013912113,0.015228383,-0.0056933956,-0.006330441,-0.022544911,-0.033843648,0.002191617,-0.014862568,0.024022022,0.052886978,0.020013606,0.04547984,-0.0060559567,0.019981224,-0.010496712,-0.028144771,-0.040018104,0.039333533,0.016028238,0.028797304,-0.03841258,0.016950872,0.016910749,-0.031560097,0.01913276,-0.04210941,0.00522746,-0.029176699,-0.004419882,-0.03939185,-0.04008257,0.02469234,-0.017940365,-0.048441205,0.0026072257,0.02204884,-0.026536714,0.007577098,0.03957418,0.026702378,-0.0036997094,0.04099913,-0.059539925,0.0077604013,0.019626845,-0.00049135013,0.0689532,-0.016335657,0.05786596,-0.0564335,-0.020713508,0.018351413,0.040212333,-0.05892955,-0.019760147,0.0027765809,0.013144533,-0.020484114,0.002261864,-0.0040062093,-0.0141510675,0.028907012,0.07143115,-0.011109186,-0.026128525,-0.017914334,0.014239463,-0.015243163,-0.02214261,0.0049799364,0.011473094,-0.012603524,-0.041562967,0.03269911,0.013972245,-0.0045421417,0.017684406,-0.011770399,0.02077608,-0.014078948,-0.0009874257,0.049512267,0.009143366,-0.007360117,-0.043439973,0.032258045,0.04490531,0.008855494,-0.005191198,-0.052907832,-0.0030180267],[-0.0007311418,-0.046556223,0.018751299,0.010809256,-0.034649078,-0.010207767,0.024035085,0.0060472405,0.0002642576,0.025089977,0.025563158,0.0040467936,0.0010257887,-0.006907557,-0.021634681,0.04432013,-0.03148056,-0.012869338,-0.008828482,0.019494768,-0.005773238,0.019693652,-0.10131634,0.0062791314,-0.00909204,0.051781844,-0.019130498,0.014378761,0.069790065,0.04834175,-0.021475311,0.0027963119,0.020023113,-0.039313406,-0.040842324,-0.03764641,0.058938194,-0.002045808,-0.022234285,-0.022596903,0.07391099,-0.021337459,0.044284534,-0.04355859,-0.041943286,0.0021246027,0.011891858,-0.02229435,0.014215552,-0.0333753,-0.0050180815,-0.012952303,0.027420921,-0.014884096,0.03652725,-0.0033492981,-0.024201617,0.011545875,-0.014920048,0.041003596,0.056244783,0.039660633,0.018073933,-0.059660498,-0.029266002,0.043051295,0.0044913962,-0.010061229,-0.017533226,0.017015615,0.0016650312,0.006247939,0.010125094,-0.053010684,-0.01238784,0.013844075,0.027498787,0.012620792,-0.041394938,0.048758212,-0.024178384,0.00641089,0.003978855,0.014401127,-0.029417716,-0.040254246,0.01834119,0.013051323,0.031481713,-0.006594387,-0.0063006245,0.033194162,-0.022452231,0.017244903,0.033849493,0.018272141,-0.023668185,-0.015199367,-0.038319062,0.0074182283,0.02587507,0.023373118,0.03825275,0.051060557,-0.05839238,0.019114658,-0.010522317,0.019213013,0.0058703646,-0.028841794,-0.04338948,0.011085529,0.018255161,-0.0007041858,0.015907815,0.0060519082,-0.03342443,0.016019734,-0.048979506,0.003782136,0.017024271,0.042538952,-0.005076613,0.03201986,0.0060474775,-0.052512288,-0.0541247,0.03102882,-0.020025153,-0.016573688,-0.018370057,-0.024786824,0.02607501,0.012647209,0.037348986,0.008478472,0.028098593,0.0051575387,0.021049568,-0.0021937785,0.030183379,-0.0032171023,-0.04972894,0.0597885,0.0084553575,0.042444397,0.013562766,0.023035968,-0.051673908,0.078922905,-0.038477737,0.033861943,0.008472388,0.04306563,-0.034361023,0.0059274123,0.039424554,0.0031889582,0.021736559,0.0070674247,-0.0069620726,-0.0029067176,0.019556174,0.02407881,-0.071418695,0.021995103,-0.028679503,0.012777695,0.0020033047,-0.030483909,-0.019945648,0.0062209554,-0.024547566,0.0008688355,-0.008485258,0.050752725,0.00023549236,-0.015870968,0.029355997,0.012622607,0.0015700449,0.02274474,0.019499276,0.04272534,0.022186482,-0.017438455,0.0014784444,0.02728613,-0.03716512,-0.05279616,-0.016371189,0.061085574,-0.029446634,-0.006464365,0.008549418,-0.0061260206,-0.059987675,0.019399544,-0.00554419,-0.060657606,-0.0118334,0.01973037,-0.013070949,-0.0014304284,-0.014834099,0.006105369,0.01707911,0.039076116,-0.0021797726,0.01888033,0.026007721,0.048263717,-0.01448334,-0.009586603,0.061448604,-0.00919539,-0.04809226,0.04014563,-0.056637064,0.0033231673,0.0069296663,0.032429054,0.05440738,0.05356534,-0.00046296566,-0.051868755,0.0069369175,0.038801823,-0.029965233,0.017307337,-0.045993086,0.014649345,0.02548769,0.030894851,0.0025511167,0.047607195,0.07448526,0.03820574,0.0025486134,0.015529024,-0.019297954,-0.004276706,0.028960712,0.033710834,0.014712489,0.045462877,-0.0009405595,-0.023829654,0.009513794,-0.0000892548,-0.011889578,-0.011713596,-0.0027922064,0.012975343,-0.05575858,-0.0035176675,0.05797446,0.058634833,-0.01731706,-0.025797985,-0.019508928,0.036810763,0.024836883,0.058090813,0.030351203,0.018324034,-0.01961118,0.03481146,0.015685506,0.0025295257,-0.014573439,-0.04012468,-0.09062189,-0.028612314,-0.017098866,-0.019006908,-0.0018327226,-0.0075742854,-0.00485588,0.017498204,-0.026792658,-0.026324792,0.01585643,-0.03334453,0.04097037,0.036650114,-0.0076739364,0.01718974,0.0013011154,0.05905898,-0.04531521,0.0068942555,-0.034475394,-0.033986315,0.016351545,-0.0042373445,-0.012662259,0.026825488,-0.03180192,-0.057919357,-0.003798226,-0.03122464,-0.0018275147,0.000022010785,-0.020918556,0.013678631,0.002685808,-0.014098725,0.028294621,0.011127073,-0.063071154,0.02522171,0.032540612,-0.016081981,-0.037851397,0.00095891947,0.021628574,0.03368327,-0.0368921,0.022319395,-0.010299808,0.024004325,0.009121934,-0.057869855,0.009041581,-0.011134426,0.06501127,-0.119379796,0.0028483311,-0.002984794,-0.049897786,-0.053298675,-0.0076825875,0.032816328,0.030785179,0.0060145217,-0.0027150284,-0.020830348,-0.018251944,0.00774958,0.03819038,-0.0393425,-0.017969953,0.07680138,-0.01585628,-0.004294939,0.040557418,0.0036042249,-0.023241455,0.006096188,0.02385973,0.046551663,-0.017043976,0.004091622,0.00014704342,-0.009826754,-0.052163582,0.010966741,0.030058948,-0.011686966,-0.021895802,0.030434225,0.018918062,-0.019194365,-0.0011675042,-0.03495222,0.022462215,0.017204355,0.04689734,-0.038150597,0.02994956,-0.0061103734,-0.024552265,-0.018568853,0.009534029,0.014833985,0.027139736,-0.012786746,0.04753446,-0.060156427,0.013305561,-0.01932476,0.025369981,0.037743486,0.04073195,0.036521725,-0.024879914,0.019299384,0.00061345205,-0.012316285,-0.06334362,-0.023097886,-0.0151349995,0.030526176,-0.030173626,-0.052922074,0.031909756,0.009662104,0.04489337,0.017969994,0.0682775,-0.019070266,-0.0066944677,0.03222246,0.023885343,0.033093564,-0.02073453,0.039141376,0.011963683,-0.014045273,-0.037139945,0.009750181,-0.010629941,0.027591163,0.017585551,-0.006919589,-0.033838723,-0.004528188,0.056161895,0.02582421,-0.048193395,0.0155853145,-0.0094283605,-0.01263252,-0.0108826,-0.00863277,0.004115496,-0.037323534,0.037078787,-0.012947147,0.010851475,-0.04191606,0.0028373708,-0.04124115,-0.025905412,0.043940563,0.016444445,-0.006289673,0.029317502,-0.014740221,0.03350667,-0.0036065823,-0.0086495895,-0.0013936638,-0.009642724,0.016085781,0.029396497,0.008527261,-0.039493285,-0.014841477,0.014780787,-0.03164389,0.03702401,-0.040631022,0.024989432,-0.0066935215,-0.0069000283,0.052598063,-0.012611449,-0.056046292,-0.018028174,-0.023041721,0.08716251,-0.010476105,-0.0027678083,0.01968318,-0.0109672,-0.05239033,0.01706288,0.030770447,0.021884896,0.006032891,-0.013193996,-0.0018141156,-0.011330391,-0.02639633,-0.010666562,-0.003754534,-0.044475928,-0.04535346,-0.006532831,0.027490908,0.004846367,-0.022115054,-0.0033849159,-0.026804777,-0.02101713,0.013816123,-0.010072808,-0.008553758,-0.001782213,0.012738163,-0.0059477873,-0.04665512,-0.014926536,-0.0012182775,-0.045971256,0.0034048404,-0.012836044,0.02814109,0.041726973,-0.02707241,0.003803542,0.009839896,-0.0056558154,-0.0398098,-0.05340277,-0.0049961642,0.016446231,0.0046080644,0.022079187,-0.0043870704,-0.021067824,-0.044715974,0.02325128,0.0024111425,-0.022564908,0.0009298568,-0.018740274,0.030161219,0.011010072,-0.021158354,-0.0382721,0.048391774,-0.010687156,0.02414862,-0.02245281,-0.023103535,-0.050158683,-0.02879114,-0.040762693,-0.041585967,-0.03386998,0.001676866,-0.02152069,-0.0029887226,-0.008692272,0.009414227,-0.031798128,0.046018902,-0.07300091,-0.024922168,-0.011784284,-0.032318823,-0.04175924,-0.01819828,0.01775734,0.06928088,-0.00012460462,-0.0043142852,-0.037600365,-0.013479263,-0.0064632404,0.000019317959,-0.043083534,-0.0033245764,0.021283174,-0.020049293,0.022802753,0.016663145,-0.018759519,0.0496139,-0.040779628,-0.0112550855,-0.03336283,-0.025904905,-0.05067958,0.00015178048,0.041292686,-0.0017874172,0.016976748,0.011322008,0.050915807,0.0055633076,-0.021297343,-0.037484493,-0.041488864,-0.046732172,-0.02916607,0.00481685,-0.
+8000
+010027531,0.024078371,-0.015176436,0.012531592,0.0166695,-0.018359743,0.043647613,0.08488756,0.0029179936,0.0023970557,-0.06480135,0.02645347,0.025840154,-0.04635757,0.0034159638,-0.009246608,-0.034585785,0.019985344,-0.06064938,-0.044711996,-0.04728081,0.024165466,0.04456695,0.0040411456,0.028292196,0.011148614,0.020868491,-0.037879113,0.024600161,0.028536156,-0.022406831,0.04533952,-0.012951629,0.019964991,0.02685602,0.013564107,-0.0059371036,-0.0041013816,0.050048914,0.028619768,-0.052579593,0.05940908,0.076978296,-0.035211343,-0.042130195,-0.006179917,0.021342084,0.011523704,-0.06116663,0.043223035,-0.008732311,-0.012158738,-0.020703947,-0.043063894,-0.004690905,0.034460228,-0.012063833,0.033306934,-0.0116055,0.027164051,0.014385753,-0.025897069,0.0077662226,-0.03799841,-0.004359581,0.026931966,0.010264974,0.017705806,-0.0035170482,-0.01655451,0.03257517,0.008365011,0.038068973,-0.019866083,-0.0535507,0.024994962,-0.026176216,-0.021271687,0.006086581,0.011697756,-0.011135309,0.015884556,-0.052626662,-0.019005334,-0.029435966,-0.0117345685,-0.0007777643,-0.017139414,-0.002552122,-0.039361145,-0.03616119,-0.025920935,-0.017291665,-0.0059795915,0.0435711,-0.0015602779,0.013069128,0.0021377325,0.06879803,-0.036509983,0.042794716,0.021770764,0.06811503,-0.03384798,-0.05372512,-0.05460264,0.030481149,-0.053046573,-0.011506426,-0.022923537,-0.002704532,0.016730346,0.029965885,0.0031840322,0.01135049,-0.046941668,-0.03499982,0.06551779,0.0066315834,0.012445077,0.033043586,0.043662764,-0.0055939127,-0.01164837,-0.010993652,-0.026316607,-0.050779816,-0.0007724579,-0.0043528434,-0.05237852,0.003909765,-0.064324565,0.0044319774,-0.016708523,0.0056243124,-0.023341704,0.020031815,-0.015937803,-0.03953132,0.0018024683,0.07106277,0.0082618045,0.044007037,0.014341061,0.00426481,0.007047427,0.0018808236,-0.007983437,-0.006951824,0.030014845,0.007275588,-0.015590386,0.0141517725,-0.0021264234,0.0029793563,-0.0038352623,-0.039155718,-0.034878958,0.0038710672,-0.009953702,0.038729686,0.019892428,-0.014152086,0.0025946058,-0.02655071,-0.059957374,0.025822228,-0.049353912,-0.042538524,-0.015218681,-0.018276237,0.023359895,0.011580039,-0.050763417,-0.035644293,0.020833442,-0.00035490777,-0.012787097,-0.0064279987,0.0091034975,0.011910079,-0.05328552,0.031984773,0.014207425,0.0062008686,-0.0021185612,-0.051396634,0.021748949,0.008413053,0.0028126468,0.011443702,-0.035788022,0.01749899,-0.026579177,-0.01550128,-0.0000094524175,0.023970747,-0.025094485,0.031108037,-0.021038251,0.039131008,0.021059852,0.019534474,-0.007525604,-0.008009754,-0.020354558,0.045787837,0.0066947574,0.0066285855,0.0151361665,0.012658156,0.016179262,-0.0043296274,-0.02505814,-0.030060941,0.037832268,0.005096543,0.04022559,-0.00096686854,0.026426997,0.011425371,0.009198766,-0.007280997,0.016404524,0.0016534913,-0.01858611,-0.004111706,-0.040933054,-0.011268923,-0.018130474,-0.037258144,-0.00018391255,-0.036114004,-0.006027535,-0.0058861286,-0.012209775,0.020802388,-0.01502674,-0.02343831,-0.020218281,0.01808065,-0.011870442,0.022657374,-0.002845794,0.04689631,0.020220056,0.019068478,0.012177425,0.045383796,-0.005218531,0.009211915,-0.038074333,-0.020963153,-0.019238483,0.0017693706,-0.021333463,-0.04081252,-0.05341836,0.049584683,-0.0015403972,-0.023025423,0.026755309,-0.041881036,0.014632001,-0.06285673,0.021054694,-0.040533792,-0.0059652273,0.02228763,-0.02084779,0.03797046,0.018116254,0.0023904883,0.02109824,0.0072845295,0.034589786,-0.008530035,0.016128443,0.024781622,-0.026342431,0.005214064,0.022575486,0.005451334,-0.014512296,0.0057831192,-0.012901663,0.024490131,-0.011161725,-0.014817264,0.0027422768,0.04934773,-0.009127784,-0.042317368,-0.048976563,0.00811765,-0.00957391,0.013905062,0.011853833,-0.012587736,0.026806658,0.032782055,-0.013276011,-0.013273747,0.0368376,-0.075426176,0.04446318,-0.021695646,-0.061085463,-0.0007778585,-0.034788046,-0.0047458513,-0.0068659238,-0.01795219,-0.0756535,0.021447456,0.025858894,0.0275661,0.016966218,-0.027798278,-0.0073282197,0.06731677,0.045025703,-0.025855264,0.070721865,-0.0097128125,0.008886064,0.05850706,-0.031382415,0.053036697,-0.023777483,-0.05651576,-0.0701112,0.01724199,-0.05192649,-0.05662649,0.00011332822,0.012858407,0.06052126,-0.038100105,-0.0488032,0.008335583,-0.06589718,-0.025805635,-0.002993721,0.07413461,-0.0067542973,0.003695301,-0.019465474,-0.07281866,0.24876189,0.052854143,0.030465819,0.05968138,0.010704527,0.004684747,-0.0102693625,-0.013635658,-0.021853056,-0.05503073,-0.0020786556,-0.030597743,0.004059953,0.06172566,0.024341475,0.042491425,-0.020323029,0.008518971,-0.006995129,-0.023764363,-0.0325845,0.016245522,0.029512512,0.032350793,-0.009132927,0.0042614555,0.032758083,-0.03026833,0.017826099,-0.010941838,0.0029586812,-0.02452613,0.02806084,-0.03335124,-0.06892033,0.031119708,0.0011597153,-0.016750265,-0.0025783184,0.042968754,-0.025329014,0.011002194,0.03908009,0.017915342,-0.0021056444,0.044048723,-0.03858718,0.015528214,0.009390695,-0.009188381,0.0679836,-0.004907663,0.0633173,-0.063368075,-0.019052522,-0.021079864,0.01816509,-0.029562704,-0.020735372,0.03722968,0.014698463,0.014407052,0.01946855,-0.010343,-0.029024633,0.01676443,0.045559276,0.0155291585,-0.047250904,-0.01860773,0.0044830656,-0.0339951,-0.044485483,-0.0062872153,-0.01340066,0.008529396,-0.013785895,0.028790561,0.02372496,-0.009597511,0.027624931,-0.022000432,0.0109980395,-0.013588327,-0.0004127522,0.07396677,-0.010356733,0.0017876817,-0.031486087,0.032665983,0.020915832,0.0123852575,-0.01568269,-0.047942568,0.01022117],[0.0002721806,-0.024711477,0.0069067436,0.017123938,-0.015701285,-0.018533677,0.04117875,0.00094183814,0.0022912545,0.035445888,0.044209663,-0.029834934,0.028356139,0.0055644177,-0.021546857,0.0043968833,-0.025542304,0.014111837,-0.019368693,0.020948764,0.0050774706,0.040137593,-0.08955149,0.02327602,0.0049818433,0.05268992,-0.036239237,0.008750115,0.04846832,0.060459893,-0.027807698,-0.011870262,0.042879794,-0.032999076,-0.07632659,-0.032286443,0.032814268,-0.009004037,0.007258572,-0.03846992,0.0372915,-0.005185269,0.014598676,-0.018586712,-0.053214733,-0.013645504,0.012636071,-0.05545091,0.01635039,-0.04834918,-0.013404263,-0.02791359,0.04195622,-0.009640464,0.06269227,-0.035922885,0.0008332348,0.020499788,-0.03053932,0.03983009,0.028273031,0.038363412,0.00606898,-0.03694664,-0.029845597,0.06000701,0.0028030288,0.010846719,0.026926775,0.019604985,-0.017205954,-0.004226471,-0.014675623,-0.03174943,-0.03386173,0.0016116989,0.022632146,0.056773297,-0.04571511,0.043890733,-0.008335632,0.026861928,-0.011840574,0.006920259,-0.050535996,-0.021353537,0.001757586,0.015145063,0.035418328,-0.01733036,-0.0071212254,0.028242324,-0.03028988,0.016103016,0.041062333,0.009518868,-0.017182477,-0.0044172755,-0.056960043,-0.053808138,0.0086466,0.017819824,0.012998761,0.076036155,-0.035359878,-0.006698615,0.0029833703,0.011882463,-0.011202601,-0.022976378,-0.03294253,0.014998564,0.029948566,0.012135651,-0.012352212,0.033906724,-0.009396819,-0.0020197425,-0.019720597,0.00081126957,0.0039008523,0.06718868,-0.004510705,0.02774937,-0.029331572,-0.041117266,-0.024440695,0.05072205,-0.03575082,-0.006529151,0.00096901256,-0.030635662,0.018611783,0.018042445,0.028369619,0.018307962,0.027949812,0.0275691,0.009383495,-0.022683475,0.053844653,0.04398047,-0.011731502,0.053716637,0.007748121,0.041598365,0.017628605,0.042135507,-0.065358885,0.047016915,-0.025437389,0.025685722,0.028163757,0.05581418,-0.0053170086,0.023940034,-0.0032657248,-0.009486669,0.007491867,0.020433974,-0.03697833,-0.0007498807,0.0050366824,-0.0062186616,-0.06728157,0.044047326,-0.015509426,0.014460927,-0.034755282,-0.052411813,0.005091353,0.030183896,0.0028912104,0.015641667,0.0045605,0.061497305,0.0017749439,-0.028478207,0.010203755,-0.008508931,0.012006882,0.011151639,0.016781302,0.025683211,-0.005257429,-0.015691468,-0.021509144,0.008643014,-0.026630808,-0.04696086,-0.01241756,0.057202596,-0.029781029,0.01639279,0.012664855,0.00040114488,-0.06020648,-0.0021139933,-0.0066417945,-0.067514285,0.003006536,0.01349657,-0.015957156,0.018517643,-0.038806688,-0.014649499,0.041458376,0.023921246,-0.004006502,-0.029911058,0.004839935,0.056692738,-0.01639985,-0.014748171,0.061453465,-0.010863718,-0.031961348,0.026392004,-0.06818757,0.0024720912,0.01256947,0.039116405,0.054867472,0.059131518,-0.021718767,-0.03636006,-0.0009930842,0.044288818,-0.025952492,0.021645123,-0.020601094,-0.00585009,0.007879106,0.023527618,0.031387664,-0.009472106,0.026864622,0.05181607,-0.003857783,0.013924542,-0.0031401424,-0.024230532,0.03699279,0.03099357,0.0030732998,0.034347262,-0.029851032,-0.0045072073,0.03402613,0.01040894,0.017969862,0.02361859,0.007016412,0.04244889,-0.026125414,-0.007007492,0.052649997,0.043878417,-0.01653598,-0.02293587,-0.0065263314,0.0133871,0.03210463,0.023332736,0.04659548,0.030862894,-0.012594027,0.026892764,-0.013768501,-0.011600703,-0.03439563,-0.03099098,-0.089608006,-0.025507784,-0.03810145,0.004706346,0.017838033,-0.0029706056,0.0022566875,0.026100578,-0.032889985,-0.0073206103,0.0004018523,0.0068515185,-0.014307847,0.03158335,-0.0035642143,-0.0021659506,0.010358446,0.043448508,-0.032479726,0.029905962,-0.011336711,-0.01214126,0.03081036,-0.009818815,-0.005865877,0.024388932,-0.03279252,-0.047371667,0.025244387,-0.008538897,0.008520618,-0.011886677,-0.011962663,0.025517385,0.02064674,-0.005471868,0.06894826,0.011366473,-0.04134257,0.038176958,0.034417663,0.0070595983,-0.03948072,0.0065870653,0.0060471995,0.028756501,-0.040508945,-0.010845365,-0.018008834,0.0010985308,-0.04061647,-0.019550722,-0.0089800395,-0.010644648,0.040927093,-0.1086212,0.029301884,-0.010698823,-0.071794316,-0.0340256,-0.031130526,0.02137253,-0.0002524993,0.02577031,-0.0074253296,-0.033227257,-0.046845872,0.008490127,0.032417815,-0.05107209,-0.0031642213,0.03527015,0.00621493,0.004283916,0.018654874,0.007916581,0.009647362,-0.010608783,0.038983896,0.054012068,-0.027946845,0.019013816,-0.013396038,-0.028367953,-0.0039507365,0.011005369,0.029407129,0.0032401509,-0.020619513,0.004053661,0.0076104766,-0.03745686,-0.024723383,-0.033458125,0.02117154,0.034414895,0.027183061,-0.047961686,0.008849081,-0.011156046,-0.05414069,0.024407078,-0.006935653,-0.0069586337,0.025136258,-0.02315892,0.040333547,-0.039117157,0.01844718,-0.0015353337,0.011982146,0.03205988,0.042920336,0.036550842,-0.051841103,-0.03777205,0.009904655,-0.0038367047,-0.06569923,-0.020370062,0.042990316,0.018530045,-0.034566827,-0.032870963,0.008722776,0.029837847,0.060123608,0.0063615437,0.034755323,-0.009065948,-0.0025073942,0.047208387,0.015822858,0.0277216,-0.009743581,0.05128807,0.00057057885,0.0077611236,-0.025429223,0.030541938,-0.00944708,0.016951954,-0.007845937,0.013018082,-0.061822347,0.0019469083,0.03496107,0.011724454,-0.05748484,0.0049395035,-0.012779885,-0.0035254152,0.025588065,-0.027816592,0.04371335,-0.0009458956,0.091103636,0.018673044,0.011812717,-0.017061388,0.02777681,-0.034223072,-0.030573215,0.007907345,-0.0037776113,-0.0070493207,0.029021941,-0.026874652,0.028810026,0.0034753447,-0.015556843,-0.029900115,0.0070800395,0.019870453,0.042644385,0.020943947,-0.019415462,-0.013141577,0.06319971,-0.032559674,0.017799357,-0.04163342,0.0060199164,-0.006287262,-0.0141095845,0.04124591,0.017925456,-0.031296067,-0.011367353,-0.047512364,0.069805436,-0.02994449,-0.022382597,0.023892147,-0.025704904,-0.04493588,0.016801119,0.026146347,0.0028620989,0.033790406,0.0051719733,-0.02106713,-0.032781262,0.005701185,-0.0015338942,-0.019385885,-0.009106729,-0.007164962,-0.03832231,0.0015085705,-0.0053134817,-0.017626364,-0.0076070465,-0.04929317,-0.023089945,-0.00910868,-0.016127365,-0.014720769,-0.0062841126,0.01325976,-0.0018747315,-0.05398701,-0.017559063,0.013785097,-0.02184879,0.008685787,-0.035508446,0.024424084,0.049043655,-0.037709765,-0.023596352,0.019049825,-0.011456767,-0.044301685,-0.060261536,-0.0051059704,-0.020330997,0.019979747,0.001819211,0.013439215,0.015143438,-0.016852744,0.042971507,0.0015025823,-0.016987484,-0.007200081,-0.04524875,0.031709746,0.017022017,-0.0056634163,-0.025842795,0.052966177,-0.0069575654,0.030920485,-0.012597586,-0.02986329,-0.03613969,-0.03364897,-0.020301418,-0.03637472,-0.045617785,-0.0020628148,-0.004655655,0.00569233,0.012673208,-0.017509501,-0.0005982642,0.01891332,-0.051724434,-0.0051715644,-0.031856444,-0.05857128,-0.026473261,-0.02892237,0.026855595,0.10017201,-0.0017713961,0.0070630736,-0.035315935,-0.02128839,-0.002466001,0.012676235,-0.051366203,-0.04287812,0.015334302,0.006717974,0.016421745,0.028915536,0.010893491,0.041226376,-0.029776596,-0.026148211,-0.052151617,-0.04236337,-0.048950244,0.036880936,0.019934786,0.0022752127,-0.008715533,-0.01484643,0.053264115,0.02206598,-0.0073573794,-0.046141252,-0.049693134,-0.035530075,-0.022860449,0.031110438,-0.017395938,0.022661244,-0.002018682,0.011283955,0.031274308,-0.017615084,0.014407199,0.05744844,-0.02876878,0.016508633,-0.061907876,0.034442738,0.03610627,-0.04764537,0.022129042,-0.02938729,-0.011026211,0.012632065,-0.03446966,-0.05158456,-0.039149992,0.050343525,0.0785063,-0.04089272,0.032527205,-0.013504904,0.004453385,-0.015939483,0.028057031,0.03787478,-0.019750005,0.029498128,0.000433712,0.0018287476,0.049332898,0.008713542,-0.0027042767,-0.01995339,0.058150373,0.0014670305,-0.06508287,0.025120614,0.050856963,-0.03698872,-0.040784042,-0.007031722,0.038223263,-0.0019087327,-0.06588483,0.026718816,0.012137293,-0.018585913,-0.032591708,-0.008809636,0.020568714,0.014482311,-0.012889739,0.024930634,-0.008224852,0.018951014,0.0038053445,-0.025113156,0.0122880805,-0.014115405,-0.0031570303,0.015075004,0.018002564,0.023049524,-0.007798027,-0.024875456,0.018673224,-0.0148355495,0.04253545,-0.018977467,-0.04435234,0.038486887,-0.009630364,-0.0034529911,-0.013006666,0.030432029,-0.04092115,0.0066520204,-0.042796645,-0.004125363,-0.0052775033,-0.023340894,-0.006489047,-0.051675785,-0.015799081,-0.047735065,-0.042205855,-0.012216748,-0.0036368144,-0.012949976,0.058511794,0.016337262,0.0051501724,-0.016049262,0.06480612,-0.05177444,0.020264182,-0.0037328135,0.045932956,-0.039318454,-0.04267499,-0.028135622,0.022426713,-0.0117049385,0.010124099,-0.033908088,-0.003321503,0.024129136,0.0127341775,0.014137389,0.028282307,-0.03725377,-0.014558181,0.025334125,0.0014523634,-0.002386184,0.038431693,0.047194447,-0.016145842,0.009072452,-0.056809165,-0.03387891,-0.056923103,0.0294787,-0.0067321896,-0.059829175,-0.047614653,-0.0647645,0.014442115,-0.038098987,-0.036841147,-0.017799458,-0.004642183,-0.035838973,-0.0022144192,-0.0014129423,0.05196652,0.025032774,0.03152504,0.00591777,0.022255845,0.037091985,0.0037804106,0.018766925,0.016689565,0.06333975,-0.0034968397,-0.01874184,0.035278667,-0.014831206,0.01213707,-0.0038134686,-0.0335178,-0.045216374,0.036235545,-0.00824054,0.01869371,-0.011621903,-0.008179018,-0.0038445578,-0.024420852,-0.023525847,-0.0046718097,-0.061390504,-0.04010864,-0.015895238,-0.023251526,-0.022877838,-0.017645739,-0.040920455,-0.040217165,0.009579977,-0.023583021,-0.018983897,0.019899512,0.018488,0.01227073,-0.0267915,0.02669845,0.0185941,0.017979307,-0.0013881718,-0.03837493,0.041077886,-0.0064316625,0.017058954,-0.008467146,-0.007150275,0.016638063,-0.046220735,-0.00024988232,-0.013346259,0.014632657,-0.010192673,0.018922163,-0.00007817839,0.053859025,0.026609303,0.04394344,-0.01689969,0.006771021,-0.027727226,0.025145007,0.019539021,0.023354243,0.0049893665,-0.0055183475,0.022101903,-0.02620128,-0.05070591,-0.04752436,0.05486949,0.015001981,0.015017439,-0.028487138,0.03206218,0.010585305,-0.0013121238,-0.015747722,0.0067182705,-0.0020551523,-0.029315028,-0.014609632,-0.046765808,-0.010480049,-0.02662562,-0.03703584,-0.00076632306,-0.03092934,-0.008983208,-0.039455432,-0.019239595,0.011432723,0.017683318,-0.011293608,-0.0090000285,0.018162193,0.0146876015,0.05795947,0.015363683,0.028187757,-0.011207589,0.02486513,0.024654247,0.03016414,-0.028379906,0.017300159,-0.009261562,-0.028028993,-0.013598528,0.0063607185,-0.028180748,-0.048701324,-0.064642645,0.0402754,0.0046869945,-0.028342122,-0.0014786489,-0.02049855,0.009943644,-0.08693544,-0.0010093979,-0.038029253,0.015814265,0.0006405767,-0.016513115,0.0077749235,0.02957529,-0.01644164,0.0341697,0.026336625,0.03569712,0.008156108,0.022401137,-0.0028176517,-0.03820983,0.011196076,0.024558334,-0.0012667236,-0.026398316,0.018776564,-0.031026743,0.016776305,0.016824808,-0.005700115,-0.007298441,0.061887104,0.0008604452,-0.0640503,-0.030254664,0.0019109531,-0.01641042,0.022170218,0.013199063,0.016569844,-0.020174298,0.011458906,-0.004031943,-0.031022342,0.031443797,-0.049564343,0.024474235,-0.030191293,-0.057468675,-0.014385854,-0.027766472,0.0045263027,-0.0025523365,-0.01805837,-0.084096216,0.034554444,0.03467492,-0.0017950805,0.039889403,-0.050703425,-0.013390924,0.05921343,0.016981443,0.008852178,0.0699397,-0.011679624,0.005526382,0.043963462,-0.0015027714,0.06994376,-0.018005526,-0.02892614,-0.05814089,-0.0012082441,-0.06044594,-0.06255033,0.0050427844,0.029847965,0.046168406,-0.0612113,-0.030324291,0.011290915,-0.048355315,-0.01039,0.011043755,0.06604693,0.045673143,-0.0082404865,0.009260636,-0.061407004,0.24148248,0.06071533,0.031557456,0.04435903,-0.01401218,0.023192886,-0.007035783,-0.0060135387,-0.043797158,-0.06846626,0.006025495,-0.024792975,-0.015886892,0.051266424,0.028863387,0.03644159,-0.003223803,0.028375553,0.038902562,-0.023264846,-0.02061059,0.036028523,0.036918767,0.025092019,0.01253692,0.029499415,0.0044787135,0.010612976,0.003217466,0.023365607,-0.00819304,-0.05654606,0.03118156,-0.064096,-0.03913536,0.056326997,-0.017408261,-0.011625772,-0.0076014153,0.030266987,-0.030058,0.024472745,0.032327034,0.0007846949,0.0034303225,0.03645649,-0.021880066,0.0154318055,0.019252665,0.0069925766,0.022185497,-0.00012871895,0.030401114,-0.050537236,-0.017630523,-0.021571748,-0.0061574243,-0.014405125,-0.03415787,0.050220262,0.0050662966,-0.0055270316,-0.014413719,0.0130569255,0.00062387227,0.010534717,0.041825037,0.014936113,-0.049589463,-0.025552802,-0.00093007326,-0.008113674,-0.025052678,0.012094449,-0.002412795,0.007814198,-0.011332824,0.04533143,-0.007632961,-0.026285175,0.028344972,-0.017033558,-0.015051276,-0.0036996093,0.020098599,0.06932103,-0.015027256,0.0154900225,-0.03356823,0.035258863,0.013854443,0.04111003,0.02050766,-0.04643994,-0.0055809687],[0.024851918,-0.015430325,-0.0054486063,0.004663114,-0.03378334,-0.0020937873,0.0046625095,0.011192959,0.024340214,0.0031467965,0.03753828,-0.033266813,-0.005563885,0.0035649515,-0.011380876,0.025300829,-0.009285278,-0.015680503,-0.017402263,0.0016534101,0.0338646,0.016629042,-0.09237789,-0.008798507,0.01385693,0.029322138,-0.022526458,0.015164686,0.047759548,0.072310224,-0.017939521,0.009580355,0.04569354,-0.008028289,-0.018035797,-0.045710463,0.031061634,-0.0262394,-0.014978677,-0.035003547,0.051530182,-0.013673452,0.013579495,-0.037409905,-0.01358879,-0.00006431068,0.025675578,-0.030394975,0.02626715,-0.040678665,0.025001552,-0.005955247,0.047545727,-0.039817166,0.032408264,-0.020234637,-0.015858967,-0.017758157,-0.03727068,0.031333383,0.041889485,0.032431353,-0.00036677186,-0.052628335,-0.0030308259,0.03139415,0.018372122,-0.0072101178,0.016094731,-0.0063261283,-0.02632656,-0.0042524603,-0.010781847,-0.040621825,-0.022200327,-0.010497023,0.0024233405,0.03433276,-0.055405077,0.017519537,-0.0014121473,0.027963337,0.016781498,-0.0024474785,-0.034836333,-0.015413903,0.014660885,0.03655593,0.006403911,-0.0074361605,0.004954131,0.04108611,-0.025480662,-0.004117748,0.05464613,0.0005876536,-0.016115068,-0.005131713,-0.025127133,0.001829573,0.018439613,0.012619898,-0.0060719238,0.069652975,-0.06803388,0.023300294,-0.019723505,0.024801733,-0.013936206,-0.03679113,-0.00043731235,0.016906824,0.020624872,-0.0016250013,0.015595255,0.035508342,-0.03229668,0.019712187,-0.030585432,-0.0046135774,0.063944586,0.018439434,-0.022589924,-0.0015418269,0.011470382,-0.03460596,-0.064812325,0.043158963,-0.03161288,-0.0073916484,-0.015808385,-0.03158041,0.0064984094,0.0007992374,0.024315847,0.006340704,-0.019774294,0.021796748,-0.021227453,-0.028211605,0.012351448,0.0066121616,-0.048015956,0.050180353,0.008451769,0.0326812,0.03776437,0.034939762,-0.07254276,0.03780444,-0.022776205,0.027405677,0.014862251,0.03576554,-0.020712592,0.01355364,0.04570706,-0.018198885,0.0064572813,0.012792962,-0.019929098,0.038253665,-0.020002576,-0.012140318,-0.048074987,0.019239986,-0.055375196,-0.022871455,0.012256184,-0.018842965,-0.030098796,0.011692442,-0.0054587605,0.0041476307,0.0017193846,0.03582069,0.008621744,-0.045356773,0.031437162,0.018355388,-0.03169991,0.002096001,0.048957314,0.034871962,0.04259792,0.012540304,0.024591833,0.007437002,-0.036177173,-0.05406437,0.0039461073,0.042653542,-0.021859674,0.018160192,0.022488026,-0.021058673,-0.057556536,-0.033791583,0.013570272,-0.049647827,-0.0075331796,-0.0069569047,-0.03515089,0.028848208,-0.015862428,-0.01078451,0.014806941,0.0568258,-0.019982187,0.0009052921,0.043738503,0.053696573,-0.015035761,-0.008301867,0.050212387,0.030218368,0.0036183253,0.025706837,-0.049879216,-0.012565887,0.03983032,0.014340311,0.013642692,0.05972391,0.000067666115,-0.0402293,-0.0016975845,0.041650977,-0.016321206,0.02234602,-0.028001089,0.017057007,0.0223863,0.035263743,0.047443934,0.011325658,0.02035661,0.018802041,0.036121458,0.026314193,-0.0052056746,0.019667633,0.00800406,0.023188492,0.0022339334,0.051697195,0.023280218,0.017649759,-0.0025869692,0.03291711,0.0032207132,0.0016426343,0.017721174,0.041327793,-0.035468478,0.0138884485,0.057790887,0.04943389,-0.046295997,-0.012332605,-0.020373804,0.023977052,0.025128864,0.046523318,0.043882765,-0.023200942,-0.016710818,0.014964808,-0.025617268,-0.0064837253,-0.026291352,-0.042259067,-0.05556077,-0.026441932,-0.03046303,-0.0031356988,0.021884369,-0.014087754,-0.0035582532,-0.006760953,-0.039427422,-0.007936277,-0.009501155,0.031491444,0.04575411,0.056012116,-0.049419686,0.008451841,0.028284175,0.030625211,-0.043209318,-0.014344071,-0.010823436,-0.02984232,0.003947127,-0.003911011,-0.01898961,0.01566235,-0.07061387,-0.07103007,0.0060428227,-0.035083547,-0.013489371,0.009448046,-0.008056789,0.026813567,0.020540362,-0.0007422232,0.073852345,0.019436037,-0.06343033,0.0632698,0.042154092,0.017527279,-0.0437726,0.011742499,0.013482072,0.06931566,-0.037909027,-0.025090761,-0.024871467,0.0069141486,-0.024141636,-0.039384708,0.022281902,0.011686113,0.0621222,-0.08265403,0.0336846,-0.022748228,-0.029480916,-0.037058495,-0.019439328,0.025800375,0.026186625,0.003595962,-0.015523659,-0.03861885,-0.032658488,-0.00036983946,0.026838465,-0.049991094,0.0069990754,0.05079744,0.001945101,-0.002645792,0.010822431,-0.011027031,-0.017690536,0.015552156,0.01764249,0.03858748,0.027170321,-0.018870037,0.0077704713,-0.014779669,-0.0042641307,-0.0075232903,0.010773997,-0.016560815,-0.0013043176,0.006776403,-0.00843558,-0.03996319,-0.006277842,-0.036890663,0.024953915,-0.017676651,0.034860052,-0.06822659,0.019436002,0.023629036,-0.08146703,0.051175714,0.014605032,-0.009141254,0.055917602,-0.011353567,0.027645454,-0.032737378,0.009389286,-0.027876616,0.034004554,0.039284084,0.055085927,0.036567956,-0.03249282,-0.0008096381,0.0118692145,0.001039349,-0.03178182,-0.01104418,0.0018211853,0.04416676,-0.004544538,-0.039545223,0.019328596,0.03028813,0.009600285,0.014368039,0.039467886,-0.019470476,0.013410436,0.032919858,0.0014766819,0.023419207,-0.011977061,0.055209473,-0.005571648,-0.03325484,-0.038567644,0.019176992,-0.022984672,0.0064552464,0.024235778,-0.011144096,-0.059111346,0.019127999,0.054695014,0.0073734075,-0.040254444,0.025782045,0.0072031086,0.009076364,-0.0051481025,-0.014437362,-0.008300354,-0.046321724,0.06366222,-0.009797596,0.0037910594,-0.034908466,0.012898066,-0.031882755,-0.015583177,0.027014285,0.0139740845,0.0073337452,0.043140285,-0.025970927,0.035729714,0.0110128,0.015097067,-0.0047158585,-0.0012715396,-0.0004286324,0.05231941,-0.0077296016,-0.045887757,-0.009261626,0.009377245,-0.06464403,0.007053895,-0.049990345,0.03644692,-0.021413919,0.014018713,0.007924048,0.011549923,-0.02702274,-0.042830337,-0.02444891,0.05278595,-0.009007949,-0.0064538647,0.056761693,-0.032327343,-0.039062817,0.030729733,0.005936675,0.014880702,0.014326216,-0.008149013,0.007691331,0.0053206314,-0.027383152,-0.0052572256,0.01923755,-0.015143938,-0.05291642,-0.0012488773,0.005943843,0.02446363,-0.01790392,-0.021034243,-0.032289248,-0.0238347,0.005181316,-0.018356668,-0.008495093,0.0055582793,0.018287905,0.0038764346,-0.039886687,0.0010921945,-0.026916774,-0.023003478,0.023396686,-0.009820087,0.028612759,0.055349424,-0.017590897,-0.005108573,-0.0025155405,0.0063996213,-0.0026303055,-0.052159853,-0.024146885,0.02230106,0.015969228,0.016493225,0.04995649,-0.017479451,-0.0419916,0.019392522,0.019092582,-0.041751456,0.016863406,-0.004253898,0.035088915,0.024172744,-0.052575056,-0.03162091,0.043078274,0.016549766,0.02959128,-0.0063943597,-0.007663683,-0.042400137,-0.060219303,-0.015118137,-0.049766093,-0.031031925,-0.030648345,-0.013276796,0.013630637,0.0057073073,-0.008760771,-0.00636999,0.022876885,-0.0531319,0.015268103,-0.0071511944,-0.027388284,-0.000010933087,-0.04828105,-0.022671869,0.059167616,0.006705825,0.016957335,-0.022024328,-0.024756566,0.013785447,0.0035211642,-0.051072333,-0.033504907,-0.0022594808,-0.030396545,0.0331611,0.04734681,0.02682737,0.0313882,-0.058337342,-0.046039823,-0.022407716,-0.047806688,-0.021904102,0.0077892644,0.027928483,0.00887589,-0.036166884,-0.032601852,0.04439229,0.034104284,-0.0073640128,-0.040860333,-0.029088423,-0.06245501,-0.023192074,-0.0008884665,0.0026945362,0.013204841,-0.011085589,0.020364782,0.06445345,-0.00035622992,0.013077069,0.06634255,0.0014870097,-0.005377297,-0.05623816,0.047998685,0.012462567,-0.032898337,-0.015683524,-0.032330517,-0.029133596,0.044075016,-0.03993402,-0.05911997,-0.034486838,0.015785145,0.04749078,-0.029101938,0.030337004,-0.01965494,-0.011826577,-0.033815753,0.013042244,0.031508625,-0.025546554,0.036561925,-0.018119715,-0.0015569599,0.026908986,0.0096687665,-0.0069413222,-0.0012123623,0.047791358,0.01313194,-0.04957244,0.03229074,0.07617415,-0.03618165,-0.053633086,-0.013428594,0.01944174,-0.00910592,-0.06224453,0.045368843,-0.014581976,0.0024984574,-0.054365195,-0.013577266,0.017591767,0.04445394,-0.0025438843,0.017932646,-0.0014813588,0.026562097,0.030041136,-0.026070219,0.002439337,-0.03449781,-0.001138478,0.018806577,0.02341713,-0.00735599,-0.012330054,-0.0132437525,0.042208586,-0.010415269,0.0035967552,-0.034775574,-0.02023209,0.05335063,-0.009100214,-0.040616624,0.013689863,0.02227635,-0.040344615,0.0034836468,-0.035055228,-0.0038224743,-0.019697541,-0.012474276,-0.0043365452,-0.016174613,0.001356184,-0.05014544,-0.029930692,0.0011820289,-0.008102429,0.010990432,0.02359201,-0.012392578,0.034933563,0.009642436,0.060657084,-0.01795166,0.016548852,-0.0022373807,0.05006565,-0.029280443,-0.037024993,-0.03439049,0.047784228,-0.043041244,-0.010385802,-0.021813788,-0.0051049925,-0.004831669,-0.00012574655,0.03404597,0.01231387,-0.04705005,-0.032845683,0.041689605,0.018487386,-0.02804351,0.068941146,0.012146252,-0.015906297,-0.013566123,-0.027016234,-0.02138074,-0.06869978,-0.0008039667,-0.024208194,-0.023894168,-0.0035087175,-0.04942807,-0.011955619,-0.034292948,-0.03183275,0.0027472768,0.026126258,-0.021695668,-0.024825132,0.009414187,0.0020788603,0.014757094,0.029716536,0.05187191,0.013678293,-0.0029048843,-0.013415254,0.02083643,0.004595471,0.028653352,-0.0066791293,-0.020424709,0.010651822,0.020817501,0.029800339,-0.006338171,-0.041412096,-0.0085550565,0.03157598,-0.006145254,0.038017716,0.023370285,-0.031207079,0.016527493,-0.031928856,-0.0393838,-0.0047519756,-0.055405177,-0.042820875,0.033029974,-0.020204972,-0.029266685,-0.017882878,-0.053928584,-0.02228065,0.019725095,-0.007020572,-0.034642145,0.00003330569,0.021424722,0.010961367,-0.039303094,0.049606558,-0.0058207526,-0.0031824892,-0.008475317,-0.025699338,0.013285918,-0.008396946,0.0066516483,0.02135675,-0.043364745,0.0129435,-0.029485276,-0.033842683,0.02004643,0.029205123,-0.02295168,0.016988777,-0.010371663,0.034351416,-0.0028707173,0.022933444,-0.012223117,0.00020656236,-0.021129752,0.031777106,0.030760225,-0.0045624934,0.012270539,0.0051614535,0.044426203,-0.02687806,-0.025775457,-0.054942288,0.019194597,0.024427192,0.01581585,-0.0108721005,0.030231768,-0.013151061,0.021755595,-0.0031910362,0.030451084,0.00835374,-0.037815068,-0.0028711886,-0.041835435,-0.036123756,-0.0124941,-0.06094974,0.009181468,-0.031204576,-0.012603609,-0.008689828,-0.0069088126,0.040332653,-0.01834081,0.0039141322,-0.04957725,0.01125497,0.013475298,0.036482792,0.005334522,0.035413187,0.021530502,0.013638484,0.018094148,0.003729077,-0.03166593,0.010362058,-0.030739363,-0.043333746,-0.031617783,0.0037262992,-0.03151636,-0.016091323,-0.059855882,0.068055354,0.0010074279,-0.008104823,0.0057136617,-0.0051299115,0.00715577,-0.063555345,0.025794689,-0.03190139,-0.004876345,0.015262304,-0.023949442,0.016218701,0.027199868,-0.010707388,0.057896785,0.017748628,0.045641497,-0.001956219,0.041604556,0.0026393381,-0.022204373,-0.013631813,0.03255341,0.010333171,-0.025811072,0.008234289,-0.015965912,0.02761596,-0.0107434,-0.011977946,0.0073311017,0.06872083,0.017483408,-0.059576742,-0.03679861,0.01332819,0.00850045,-0.008376251,0.0003560533,0.012657298,-0.0058908844,0.034608204,-0.05563167,-0.0004170497,0.027208932,-0.0660974,0.041708894,-0.0076359087,-0.07337468,-0.017053012,-0.045062862,0.0043998794,-0.020995095,0.001306626,-0.056743678,0.033269905,0.04537656,0.010047082,0.035130233,-0.004469263,0.01898063,0.060773365,0.052627582,-0.035851695,0.08692506,-0.019576749,-0.008361799,0.034125783,-0.015710415,0.067153364,-0.00672956,-0.039680824,-0.050987966,0.0389723,-0.050065003,-0.037253596,0.018188203,0.057298686,0.03557622,-0.034258515,-0.05344818,-0.0040454296,-0.054973777,-0.0037215708,-0.008740472,0.06942848,-0.003306456,-0.014868731,0.006919294,-0.07229353,0.24778393,0.057509463,0.0109915305,0.018922746,-0.025328664,0.02072563,-0.019139888,0.01295223,-0.025034036,-0.033711728,0.012925351,-0.047322653,-0.0047646393,0.03653922,0.036635652,0.07215546,-0.029575411,0.008850444,-0.03387098,-0.029821401,-0.04537806,0.024081461,0.021702878,0.058804456,-0.010327063,-0.00223105,0.03718006,0.011284582,-0.0106001515,-0.0071984082,0.009537052,-0.034996007,0.03221573,-0.029666174,-0.035912722,0.04909646,0.0037055023,-0.034218743,-0.011408675,0.0001655591,-0.04803474,0.010728414,0.033873487,0.028466087,0.0017815052,0.034607947,-0.0039928565,0.013677133,-0.018369801,-0.020007607,0.055342495,0.01797307,0.06169616,-0.06519039,-0.024752054,-0.016388142,0.01614371,-0.017555077,-0.017081684,0.05006747,-0.0041105477,-0.0036578001,-0.01946914,0.0014119028,-0.011537217,0.028712187,0.036940265,0.026954317,-0.036472198,-0.03819596,0.0043442794,-0.061520547,-0.057594247,-0.0032881924,-0.008273501,0.0013688664,-0.010741599,0.04892132,-0.000037283495,-0.02514461,0.016398754,-0.016438328,-0.002993797,-0.006398621,0.015134599,0.05670375,-0.010370615,0.016441032,-0.037604846,0.0597359,0.01576611,0.02436624,-0.021944918,-0.056259908,0.00038960387],[0.022045549,0.012458606,0.010013215,0.054473937,-0.025240127,-0.014202354,0.03343979,-0.000039667342,0.008064131,0.027579678,0.024409836,-0.040551614,-0.01747261,0.012702397,-0.046097342,0.0009514424,-0.017116107,-0.003029032,-0.027839942,0.0014773436,-0.0008048029,0.01673879,-0.07365708,0.012654945,-0.019251274,0.041072056,-0.04232831,0.019515786,0.042869106,0.041868713,-0.015073687,0.0229828,0.046825483,-0.034749556,-0.04602531,-0.04355324,0.012321963,-0.023017736,-0.010890305,-0.02424767,0.031310767,-0.02192094,0.020276345,-0.007920886,-0.015868407,-0.014444686,-0.0050279554,-0.04661953,0.0039882353,-0.018142628,0.019949157,-0.029909305,0.05681438,-0.0050106416,0.055104934,-0.0551414,-0.0034662622,0.014255195,-0.018815605,0.016772123,0.012239986,0.0604231,-0.0011325257,-0.047598273,-0.021879962,-0.006699839,0.0049640834,-0.03867648,0.015068784,0.0029697851,-0.009797883,0.013875785,-0.0085363835,-0.044894084,-0.048446804,-0.009912615,0.021977404,0.058828562,-0.038150884,0.045763116,0.004309322,0.006816276,0.01335036,0.02525538,-0.044005174,-0.018657055,0.029124098,0.04786321,0.020616286,0.0014942938,0.012153856,0.025350804,-0.040148303,-0.013900571,0.070716366,0.0024523335,-0.0014297022,0.010844012,-0.03317332,0.031748865,0.029640976,0.010764782,0.0048497347,0.059144385,-0.07146757,0.013879736,-0.025805254,0.0047482047,-0.005479141,-0.026117707,-0.01290129,0.025601402,0.014653798,0.027130414,-0.014169272,0.0116345,-0.040431604,0.04925022,-0.040851,-0.0077688103,0.03533969,0.035950396,0.013217228,0.028026076,0.038672403,-0.041626524,-0.05193703,0.043572444,-0.035774413,0.013417559,-0.018288221,-0.022964228,0.017217642,0.0142464135,0.06357733,0.018126737,0.0061431783,0.037541237,0.022288045,-0.0053742905,0.028650941,-
+8000
+0.009347799,-0.022167576,0.05407326,-0.019642461,0.038790297,0.024576548,0.034067273,-0.06799016,0.03828552,-0.026002966,0.01152555,0.021763805,0.039540317,-0.022691416,-0.028708477,0.04639626,-0.017738933,0.011246795,0.0077527305,-0.023422243,0.021939773,0.0011592984,0.0017639215,-0.03955917,0.025748499,-0.045459274,-0.0307769,-0.057614718,-0.004126797,-0.0024500364,0.022370907,-0.004170435,0.004025066,0.016888494,0.05792625,-0.01268367,-0.02909731,0.030365992,0.0047323885,-0.02416771,-0.010650329,0.024569595,0.063512854,0.03297585,0.02580516,0.011831976,0.009374583,-0.017398141,-0.031192504,0.0017764177,0.02464852,-0.027598726,-0.017127272,0.009590661,-0.035773408,-0.057845876,-0.006900411,0.012676965,-0.041419473,-0.017343447,0.0057115573,-0.040404756,0.04107549,-0.009626636,-0.022276944,0.034086835,0.041076787,-0.019100029,-0.0032191707,0.049477067,0.035014335,0.0102896625,-0.0010664578,0.06940579,0.03151507,-0.01262083,0.04659971,-0.06845817,-0.022204788,0.04791618,0.007718965,0.003583354,0.035004884,-0.0046043145,-0.03259552,0.025074007,0.045318414,-0.01523421,0.023894276,-0.017012594,0.045502026,0.012703382,0.046142783,0.024113733,0.0083316,0.031750765,0.045343656,0.0074937604,-0.00017790256,-0.028768118,0.00008893337,0.029014016,0.03696988,0.01875982,0.03959816,0.021745153,0.028222084,0.023936577,0.020102782,-0.0008369699,0.02366825,0.024650553,0.0326813,-0.037076835,0.02630953,0.035739437,0.048417,-0.02908169,-0.028864885,-0.027168762,0.00015678778,0.012378946,0.045278627,0.06569315,0.016927911,-0.008291241,0.018626573,-0.05002221,-0.036411993,-0.012311946,-0.022171175,-0.024069404,-0.0014819619,-0.053255685,-0.00024199997,0.016827174,-0.015616028,0.039119124,0.0037904526,-0.018220834,-0.05011032,-0.022596743,0.026647227,0.0148648815,0.062041067,-0.013430665,0.008384427,0.016384015,0.036609214,-0.020571684,-0.020773595,-0.015989626,-0.011100563,0.007582854,-0.02241671,-0.006555661,0.028409177,-0.045622535,-0.04008246,0.0029625136,-0.0547412,-0.01507086,0.015592585,-0.013576545,0.013971527,0.00697129,-0.021175938,0.05088449,0.028358938,-0.092046104,0.05129637,0.012775519,0.027915685,-0.042009205,0.032333896,0.036478814,0.027417736,-0.031325243,0.011249749,-0.0060947584,0.00588717,-0.04487925,-0.04482609,0.02076463,-0.010700888,0.030280298,-0.07828589,0.017316518,-0.0036932558,-0.05047773,-0.040943574,-0.015661994,0.012651973,-0.007596174,0.04541578,-0.0014629473,-0.040667295,-0.051955108,0.0014476498,0.017489526,-0.046060164,0.011069156,0.052651726,-0.0007368593,-0.027598765,0.017497342,0.010052443,-0.04952457,0.0054305326,0.0030589108,0.038653813,0.009519405,-0.002871448,0.012103294,-0.00048973627,-0.007823364,0.004686086,0.04597002,0.00772463,-0.000052607837,0.033957254,0.0077279485,-0.066871814,-0.043479107,-0.056370404,0.010965961,-0.005788052,0.025934113,-0.062041804,0.04304529,0.01822486,-0.04916809,0.014251354,0.019433832,0.010863059,0.051697113,-0.01511196,0.041692745,-0.014671052,0.041902766,-0.010532912,0.02388388,0.020615019,0.0331456,0.051710058,-0.033273842,-0.0036899424,0.0038767722,-0.017590184,-0.053236894,-0.02059523,0.025692973,0.03497994,0.00832508,-0.045358185,0.027812619,0.0058630714,0.002648451,-0.0006029565,0.044452008,-0.0041835993,0.01372404,0.04654022,-0.00584343,0.028584804,-0.0027901933,0.057668637,-0.0015005196,-0.0023289265,-0.036533415,0.023980772,-0.05128576,0.016798262,0.0070620934,-0.02354902,-0.04164596,0.014750112,0.038977385,0.0077401325,-0.045456715,0.011651318,-0.019209607,-0.0037740297,-0.001059602,-0.016310805,0.0029394801,-0.028744867,0.03454738,-0.0024775402,0.015200445,-0.029816337,0.0061574862,-0.0041527213,-0.016036326,0.03908912,-0.0016948472,0.01675956,0.015214894,-0.036910813,0.055038612,0.003827209,-0.005386584,0.005825511,0.0048952494,0.03137549,0.04026773,0.0041698865,-0.050245043,-0.046119083,0.0033891478,-0.065660514,-0.02853761,-0.02360681,0.017303813,-0.004853339,-0.018834408,0.021468658,0.008353826,-0.021904582,-0.027832516,-0.048509464,0.0469223,-0.024291823,0.0018011166,0.079338074,-0.012174693,-0.030404612,0.045645956,-0.007038027,0.0010677468,0.011671293,-0.0031982828,-0.024040734,0.002538638,-0.029265752,0.0031112907,-0.022519423,0.0011583845,-0.03293107,-0.020422239,-0.0032239927,-0.0067045027,-0.017213669,-0.023868786,-0.053736586,-0.026941808,0.024754915,-0.029438207,-0.0077814646,0.011978425,0.029276118,0.007998661,-0.06785589,-0.0069368547,-0.030301861,-0.018881427,0.0010416463,0.0030129214,0.03477986,0.04321225,0.010935319,-0.021708287,0.017422397,0.005975668,-0.020676939,-0.05360493,-0.012004563,-0.013106536,0.015506518,0.012781623,0.03821291,-0.0023703317,-0.061048828,0.06673236,0.012153283,-0.03533933,0.012980353,-0.010637861,0.0033287224,0.007070034,-0.024239196,-0.021562517,0.053008065,0.019122194,-0.013406127,-0.023307271,-0.0062217806,-0.07010844,-0.042071316,0.00830463,-0.040581692,-0.04041643,-0.017404715,-0.025540225,0.010996776,0.006934505,-0.014807945,-0.030608168,-0.009237009,-0.030317524,0.035203703,-0.005182361,-0.027756676,-0.03788216,-0.034319084,0.018567257,0.07618713,0.007208154,0.0305209,-0.03896681,0.009281069,-0.004727094,0.019799175,-0.011696115,-0.036917888,0.000576231,-0.028285217,0.012895853,0.048161443,-0.018784279,0.018396884,-0.043887716,-0.057937615,-0.04061051,-0.02123481,-0.019652424,-0.012718329,0.011361979,-0.010775211,-0.036989216,-0.0150491,0.030404538,0.029039925,0.011141002,-0.017634999,-0.04198063,-0.043731444,-0.036164127,0.030451156,0.0010743289,0.017145101,-0.02108326,0.011615898,0.053644206,-0.01242652,0.046762798,0.057756662,0.024209969,0.0026556011,-0.042121693,0.04320178,0.0077372533,-0.045093603,-0.014754412,-0.007826138,-0.050951675,0.0039564995,-0.022789065,-0.050867587,-0.04224454,0.014332767,0.044522114,-0.018827371,0.049480148,0.00005828794,-0.024703257,-0.01770839,0.037612047,0.026512718,-0.01661274,0.040905204,0.024716102,-0.0033510134,0.021393752,0.016288592,-0.018531913,0.0020985077,0.044767093,0.004845426,-0.07247974,0.020920359,0.06252682,-0.04773131,-0.05963289,-0.0031647799,0.0090196775,-0.012312447,-0.06354743,0.015089006,0.017374903,0.0039472217,-0.020240702,-0.008389744,0.015224387,0.069774255,-0.023182435,0.009666405,-0.024141485,0.044055283,0.028687892,-0.028532954,0.011715573,-0.04805537,-0.0035795593,0.02438547,0.02121698,0.028725697,0.013213598,-0.04398004,0.023208253,-0.028333215,0.040321104,-0.01735804,0.0016574889,0.064845435,-0.0022250486,-0.062386878,0.004082103,0.01698351,-0.019089594,-0.009213935,-0.050579984,0.013821583,-0.01963023,0.0211302,-0.010312981,-0.02588828,-0.02472559,-0.060485367,-0.053568244,0.0024431124,0.008554371,0.019149682,0.038015213,-0.002131226,-0.011233367,-0.0061092963,0.07835609,-0.020433629,0.027096262,-0.010526122,0.053284083,-0.050321028,-0.025528306,-0.038272873,0.050669204,-0.04619529,0.007876989,-0.012062552,-0.010732489,-0.014814902,0.016222475,0.024934905,0.026921785,-0.04044037,-0.0287825,0.037591636,0.021781381,-0.0038798554,0.06049129,0.031136058,0.015385109,-0.010302309,-0.0069310437,-0.016629249,-0.056428757,0.009943667,-0.021593587,-0.013597071,-0.034158148,-0.025617486,-0.03436596,-0.06215447,-0.012295946,0.004864871,0.038656797,-0.0066718897,-0.016135886,0.021208901,0.03416582,0.021599932,0.011342541,0.022174936,0.011837242,0.025475338,-0.0068944194,0.0055902214,0.009958073,0.02464544,-0.018800886,-0.009832436,0.03882627,0.00004193928,0.029867824,0.0041282317,-0.029347276,-0.019119492,0.028100897,0.009318131,0.030693049,0.0030496137,-0.01577511,0.030980995,-0.022739133,-0.032760393,-0.00086737506,-0.07501727,-0.04271003,-0.0064009298,-0.009728887,-0.042448465,-0.033014137,-0.05023,-0.02395722,-0.0050578895,-0.012793744,-0.0149874985,0.010072407,-0.0060964194,0.019039568,-0.052585885,0.019325746,-0.021589614,-0.010860771,-0.012897245,-0.052492097,0.025579114,0.011329936,0.024692366,0.016266793,-0.06212561,0.0015683343,-0.027888535,-0.0053625177,-0.009141628,-0.0077206003,-0.018710926,0.025993109,-0.035024453,0.037020627,-0.02078418,-0.000028123934,-0.012137252,0.013702695,-0.0046512475,0.050818924,0.036590576,0.030608246,-0.0013306385,0.013186878,0.014659679,-0.007365283,-0.017221222,-0.047784977,0.022172635,0.0056900047,0.012219055,-0.03735729,0.023079077,-0.008902717,0.0004683564,0.04507194,0.026329855,-0.022247832,-0.0029323031,-0.008956888,-0.03746596,-0.041583825,-0.029108016,-0.0015026777,-0.0034852407,-0.041274097,-0.024446974,-0.020187978,-0.02761533,0.03311293,0.013726878,-0.018127428,-0.040470082,0.012667159,-0.028831443,0.034923766,0.010618534,0.02291572,0.02479351,0.022439942,-0.0008374911,0.011670449,-0.018240064,0.023159176,-0.033848844,-0.018612793,-0.018093625,0.020556264,0.0038835818,-0.02809603,-0.05526152,0.044348672,-0.01745902,0.019986054,0.0128732715,-0.030476345,0.0071993847,-0.046142336,0.012955336,0.000075069656,0.000012592118,0.01072859,-0.013073486,-0.008536312,0.040587083,0.007193707,0.03641513,0.02958268,0.03973607,0.009452704,0.04860813,-0.005213675,-0.027404193,0.0057611153,0.024922684,-0.016026856,-0.0017069096,0.022672787,-0.021661628,0.016638953,-0.02206137,-0.01959834,-0.0026330089,0.0676737,0.01621026,-0.050890647,-0.04626831,-0.00010995221,0.00084383396,0.01993068,0.015291829,0.017867554,0.025396561,0.019563891,0.000220249,-0.013913983,0.051979207,-0.0499909,0.031315193,-0.04039106,-0.070197105,-0.029429259,-0.05091582,-0.0046800976,-0.025883207,0.002420462,-0.05898155,0.019067364,0.043766294,0.011878178,0.003977598,-0.0015941386,0.0048444183,0.041871358,0.05726469,0.0036948845,0.08792629,0.006633795,0.011632991,-0.0039641536,-0.04761008,0.024675895,-0.028118111,-0.02497902,-0.03341538,0.033512913,-0.03949914,-0.073163085,0.033823002,0.037692185,0.04987861,-0.033888184,-0.077226035,0.002163811,-0.011197062,-0.033025984,-0.00885185,0.063868664,-0.00697273,-0.013193203,0.029934518,-0.07674815,0.25867653,0.03527736,0.012738986,0.037768748,-0.031757195,0.016149405,-0.00435126,0.013361508,-0.014925762,-0.041742377,0.030792328,-0.028478678,-0.013915037,0.033871457,0.009393781,0.03317864,-0.019920956,-0.006580115,-0.0059831915,-0.03192594,-0.036675148,0.011819512,0.024798127,0.026151627,0.0062255426,0.009738324,0.026823726,-0.010255005,-0.010139669,0.008878091,0.013484089,-0.037761368,0.0025159754,-0.026469024,-0.013564483,0.020656873,-0.013517607,-0.035005946,-0.0020435108,0.022559557,-0.025543857,0.000051404193,0.035098437,0.03555223,0.012911325,0.051996525,-0.0029159933,0.008730002,-0.024733024,-0.031012462,0.04338856,0.0020352232,0.07613732,-0.053317364,-0.028448608,-0.005346205,0.0021257545,-0.02092055,-0.016309507,0.036939885,-0.030983077,-0.014308946,0.0068008862,-0.004606666,-0.0060683433,0.018059954,0.05313792,0.009448209,-0.041860566,-0.029076312,-0.00955466,-0.03401529,-0.052978627,0.01671964,-0.018845586,0.0008817196,-0.038837038,0.002447504,0.004374243,-0.033322237,0.001495135,-0.014709048,-0.0025596523,-0.024800496,0.023261601,0.059034865,0.013848114,0.0034911574,-0.04945668,0.03799935,0.05205094,-0.0048278477,-0.048991345,-0.055833414,0.024124824],[0.015234292,-0.035176083,-0.0027713168,0.039806265,-0.045215506,0.0048994455,0.0130020175,-0.0062266667,0.018802376,0.039333865,0.026153106,-0.025955642,-0.013962229,0.01428658,-0.028584687,0.030944431,0.003899212,0.005295841,-0.0411499,0.029333306,0.0008968415,0.034803644,-0.1006767,0.014463578,-0.013674791,0.05322643,-0.038320668,0.0074249874,0.061512418,0.030913025,-0.014722473,0.016448786,0.028995112,-0.048632674,-0.038160022,-0.011424305,0.04588028,-0.030789137,-0.02185851,-0.03334666,0.041855518,-0.030296236,0.0155279515,-0.04559954,-0.011528937,-0.006755117,-0.001996135,-0.045967497,0.018510727,-0.04408884,0.026217477,-0.0017835008,0.028733756,-0.016560122,0.053296875,-0.019019322,-0.01839319,-0.0113585815,-0.011140646,0.016727783,0.031554017,0.068410605,0.029794658,-0.039146386,-0.020204132,0.021064892,-0.0046118023,-0.017240638,0.0039822734,-0.0060692737,-0.006097255,-0.021075457,-0.0024275759,-0.03251904,-0.024117941,0.010506056,0.019929623,0.03700406,-0.021611951,0.054139692,-0.01776265,0.0109472405,0.040602095,0.047851887,-0.05688901,0.0042506834,0.02631939,0.04347239,0.049931653,0.0011648084,-0.0075245737,0.012730666,-0.002359837,-0.030621517,0.036281236,0.030823637,-0.0023784873,-0.0007786445,-0.06539683,0.0085232,-0.0013680075,0.03507232,-0.000093572635,0.047135875,-0.04832256,0.03236411,-0.015115224,0.0065175607,0.005557126,-0.037810653,-0.04102268,0.020048128,0.021252599,0.01866748,0.009424955,0.028110197,-0.037118454,0.026046965,-0.0058949008,0.03789251,0.030743113,0.040580936,-0.007240122,0.015693866,0.0049535637,-0.037344802,-0.07436399,0.06687613,-0.03357787,-0.019936813,-0.02819626,-0.018822547,-0.010387754,0.00009681678,0.054837015,-0.012062108,0.010038223,0.036563437,0.033754654,-0.02654046,0.03194945,-0.01296294,-0.02708865,0.055002313,-0.02044681,0.07291306,0.0118918475,0.01572751,-0.07566784,0.02540481,-0.02994314,0.004861986,0.022928178,0.059499297,-0.031246668,0.019037852,0.04660102,-0.011311646,-0.015146301,-0.030506866,-0.0040359097,0.014892321,-0.022571446,0.017951075,-0.041805845,0.03211418,-0.06543609,-0.007180871,-0.012526099,-0.014742359,0.010803613,0.006138956,-0.028773356,0.004891422,0.006026099,0.03879663,0.0029930733,-0.052165005,0.045394596,0.0009292424,-0.027669938,0.0053366683,0.023216423,0.043138616,0.029075103,-0.00035411716,0.04581716,-0.019849645,-0.025552375,-0.031248616,0.01625191,0.027132938,-0.050106343,0.010355197,0.01755297,-0.017529795,-0.052822895,-0.004644092,-0.0021152378,-0.065590456,0.006172916,0.011017004,-0.0415257,0.046400137,-0.008853636,-0.005106128,-0.0115263555,0.054110046,-0.015915664,0.011033289,0.040104255,0.0684788,-0.002632692,-0.01669187,0.04417796,0.021323048,-0.03420185,0.048280545,-0.046410553,-0.008886253,0.027564647,0.02602688,0.0119147375,0.026913881,-0.020703273,-0.014458977,0.010074803,0.034193166,-0.013658491,0.0067818346,-0.040268704,0.026001468,-0.0069447597,0.034890547,0.037316617,0.009850718,0.022676557,0.03825015,0.0145952795,0.025804233,-0.024471909,-0.013899088,0.018254595,0.026591321,0.02962849,0.036062803,0.02304215,0.007708806,-0.016229736,0.0020589498,-0.015231751,0.007721046,0.016832424,0.01795888,-0.03310606,0.012086059,0.06110685,0.04106216,-0.049308915,-0.021236284,-0.010419243,0.061508294,0.012305748,0.045932755,0.042863525,0.012908806,0.005056143,0.0037921018,-0.008243163,-0.031248467,0.00014382295,-0.04886603,-0.06144936,-0.021470023,-0.024141781,-0.007180747,0.021700397,-0.027770221,0.0140792485,0.009390749,-0.018612696,-0.053691387,0.0034257567,0.026741015,0.023922108,0.049116895,-0.013363235,0.009320193,-0.0045712744,0.025118252,-0.01998202,-0.011009383,-0.0033036554,-0.020529967,-0.00030827176,-0.006326093,-0.015237507,0.029997854,-0.03636553,-0.050954077,-0.0014644174,-0.0399237,-0.014789267,0.01809216,-0.045985702,-0.0008808867,-0.02268257,-0.013503806,0.041158218,0.0047579855,-0.077946246,0.0269913,0.020177701,0.01952464,-0.04827714,0.027324243,0.006706799,0.02869127,-0.04121275,0.002858264,0.005569129,0.019831222,-0.025699494,-0.027774874,0.03387595,0.015999535,0.035490286,-0.08604924,0.040688828,-0.0108330045,-0.07870164,-0.06074522,-0.026661364,-0.0014076525,0.011538699,0.028837437,0.0068190875,-0.002662933,-0.048070922,0.014457203,0.0018529057,-0.0061929263,-0.0006310792,0.06280194,0.0109720025,-0.018080715,0.026766442,-0.0038608697,-0.035217807,0.030793546,0.028050989,0.049615003,-0.0034101785,-0.019628996,0.0035521751,-0.009812789,-0.020625653,0.007191373,0.040403448,-0.009515533,0.030140968,0.032950312,-0.0034094835,-0.046228927,-0.019873003,-0.050878473,0.018487137,0.011124033,0.026728898,-0.04230198,0.043535683,-0.019093506,-0.025466604,0.019964054,0.014283247,-0.010276396,0.064055905,-0.013679049,0.07239071,-0.044462644,0.020014167,-0.03255095,0.025558114,0.037427127,0.03581996,0.038333375,-0.044712733,-0.014798321,0.009896949,-0.009229305,-0.028870428,-0.033994038,0.0021664388,0.029342175,-0.014027915,-0.03790164,0.032654513,0.024380432,0.025313212,0.027773842,0.03289114,-0.019345414,0.011589549,0.030253068,0.00018991712,0.016290376,-0.005750395,0.07398344,0.0086833,-0.0090241935,-0.008561866,0.02054609,-0.026047096,0.042679608,-0.025095172,-0.0030166684,-0.061601307,0.0013298616,0.03453178,0.029903345,-0.041068286,0.005055466,-0.010543041,-0.018057304,-0.02431028,-0.012199149,-0.015582898,-0.046310224,0.03038887,0.01455307,-0.0040259412,-0.029925995,0.01198168,-0.015013873,-0.0150158685,0.03429267,-0.0027647847,0.0010969351,0.02643939,-0.019824687,0.046464335,0.008220736,-0.00050415104,-0.011408744,0.017679766,0.0022319518,0.056765012,0.01952415,-0.049345467,-0.0017923495,0.004045432,-0.05147604,0.009517942,-0.02675957,-0.0050829984,-0.010714167,-0.008789061,0.034449164,0.0023211474,-0.017829603,-0.03551847,-0.02925734,0.048145767,-0.009372312,0.005237063,0.058268838,-0.014652219,-0.05582272,0.033800047,0.015133355,0.010689153,0.00013796413,-0.0052517895,-0.015616059,0.017564517,-0.0532284,-0.00814505,-0.0303485,-0.054845244,-0.012102715,-0.031926867,0.013007832,-0.016857615,-0.0080543,-0.05933266,-0.038942903,-0.00859136,0.023718566,-0.02575895,0.015585991,-0.010749867,0.020207513,-0.002413852,-0.04255731,-0.0036590854,-0.01523865,-0.0311557,0.026545437,0.0069749197,0.0037575562,0.04731665,-0.015301484,-0.00647906,0.009015023,0.00956544,-0.026882261,-0.052057788,0.017623013,-0.0070392024,-0.0119765205,0.045418594,0.048483133,-0.024725853,-0.016627355,0.03848713,0.02741509,-0.024586039,0.025128609,0.00881129,0.040792804,-0.0013728043,-0.04100004,-0.007160319,0.06708311,-0.0027959538,-0.013266693,-0.005040925,-0.03342637,-0.04694821,-0.032713983,-0.024276726,-0.059071112,-0.05548626,-0.00074705225,-0.03937246,-0.012094232,0.021807058,0.027634447,-0.045648154,0.03015014,-0.0679023,0.013575271,-0.0066539785,-0.03598251,-0.02191533,-0.031770777,0.0047438107,0.05763232,-0.0118951285,0.011706466,0.01075846,-0.023830146,0.009302966,0.02993652,-0.052999783,-0.00062042923,0.017505143,-0.013897982,0.031097436,-0.01672591,-0.00055105996,0.027752873,-0.04354499,-0.03365683,-0.016765172,-0.026384648,-0.035093345,-0.02294451,0.013187097,-0.009932032,-0.018572345,-0.011143926,0.048029646,0.0114945145,0.009536958,-0.049878143,-0.038721062,-0.0321383,-0.008189822,0.017639086,-0.031478986,-0.0021205798,-0.02488613,0.02583559,0.030653948,-0.01094386,0.005017595,0.03764405,0.01667691,0.025781386,-0.07611074,0.034099944,0.029496346,-0.040223815,-0.01100276,-0.0142762475,-0.008884234,0.03700991,-0.02227741,-0.05333198,-0.05507502,0.0032468608,0.04774152,-0.048885066,0.009783525,0.030068036,-0.0048775016,-0.04127619,0.03218381,0.03595012,-0.010103517,0.020776996,-0.004442166,-0.008777198,0.032596536,0.0031426104,-0.009662726,-0.022958424,0.04759245,0.0051407376,-0.057725504,0.04151466,0.07093041,-0.040616486,-0.05323257,0.00004891395,0.01807091,0.0030861998,-0.0499394,0.024400529,-0.005810452,0.0029453977,-0.04946197,-0.01348414,0.011734773,0.056547236,-0.005637863,0.03504289,-0.015064476,0.049634174,0.024243435,-0.020204477,-0.0004827998,-0.029082777,0.0025962046,0.02245169,0.007718537,0.0012380256,-0.0108464,-0.00830191,0.035330497,-0.012580349,0.044164415,-0.031773623,-0.002848669,0.059393387,-0.02857755,-0.044725668,0.013145727,0.025505198,-0.031529274,0.031674914,-0.06612621,0.009449363,-0.013261329,0.010521766,0.0006551534,-0.019711653,-0.009439483,-0.06802843,-0.051537283,-0.0029419863,-0.027578289,0.0040683104,0.046348237,-0.025791464,0.0071760644,-0.023834463,0.071412474,-0.020539738,0.045800667,0.010197754,0.0629219,-0.03863435,-0.049715504,-0.048489414,0.02767342,-0.04486423,0.00029816042,-0.036696993,-0.013145658,0.005846708,0.028918473,0.03805495,0.035525233,-0.05268271,-0.0020806696,0.057803642,0.023093263,0.010476507,0.060438316,0.02696166,-0.0040318253,-0.011177133,-0.050969932,-0.009551772,-0.075759314,0.00909909,0.005110792,-0.031752817,-0.021281667,-0.058200132,-0.034848846,-0.047037143,0.020612376,0.013279696,0.053220045,-0.004444727,-0.044722106,-0.006542035,0.044041954,0.007296351,0.025208402,0.035102304,0.02384421,0.00040346629,-0.017231787,0.030441672,0.025222832,0.058507048,-0.0018116069,0.011985424,0.0018376652,0.0006463824,0.01912389,0.0037747808,-0.03542851,-0.01760739,0.0111269485,-0.0035973338,0.015459626,0.021319205,-0.020525424,0.0017404268,-0.026008422,-0.040557344,0.015007942,-0.06394145,-0.016921498,0.025903966,-0.012455508,-0.03122869,-0.016395595,-0.06510257,-0.02613953,0.034511074,-0.03360353,-0.012021015,0.01960662,-0.009106538,0.0130546605,-0.058107607,0.005029446,0.0046881847,-0.0040544113,-0.040066786,-0.036669772,0.0021248288,0.009365558,-0.008223198,-0.007319881,-0.049831346,-0.0014977856,-0.017268417,-0.004536161,0.0370315,0.022853838,-0.021377884,0.0053395005,-0.04065734,0.042206433,0.00022734793,-0.003126727,-0.015935987,0.020492109,-0.008987256,0.04379758,0.0335648,0.01647787,0.01582449,0.014705392,0.012842436,-0.030321548,0.016112741,-0.038852047,0.02460731,0.005754292,0.019436117,-0.04837754,0.051469985,0.0022703318,0.002942869,0.019895887,0.010280791,-0.0003856345,0.0008358379,0.0014782706,-0.048720054,-0.04915509,-0.02986733,-0.014885719,-0.0070563927,-0.02925749,-0.025649728,-0.02120523,-0.014665889,0.024701033,-0.013433241,0.0102873575,-0.034221407,-0.01931374,0.012005108,0.025172237,0.015480601,-0.010985129,0.009387597,0.020722535,0.02775946,0.012491115,0.0040178527,-0.009285597,-0.05227743,0.011828919,-0.0017199854,0.019672068,-0.024852192,-0.017653476,-0.048260894,0.057556782,0.008284478,0.009446271,0.035982482,-0.023779167,0.00505686,-0.047738742,0.04004174,-0.027088704,-0.00015284379,0.011964616,-0.016211938,0.03763378,-0.0065831416,0.012695257,0.02340827,0.017967707,0.045329273,0.010868597,0.024246886,0.024002159,-0.03465046,-0.020943455,0.020749485,0.015828948,-0.003452099,-0.0017604411,-0.006732095,0.0048873997,-0.021601738,-0.026423687,0.0126789035,0.04309421,-0.0073870267,-0.053000234,-0.029920738,-0.009721528,0.0049256035,-0.007150024,0.03575438,0.0020105878,0.018901581,0.03869501,-0.010694834,0.0015339914,0.043021083,-0.054481152,0.05652095,-0.010523068,-0.07270779,-0.002392671,-0.07683736,-0.020305548,-0.021891508,-0.013455468,-0.060623776,0.01786169,0.02400144,0.0054377792,0.025833106,-0.021488322,0.008365472,0.045491368,0.06614369,-0.011854015,0.07075659,-0.013707964,0.004087564,0.023366759,-0.02703951,0.028948959,-0.02965437,-0.032025803,-0.02230671,0.001513084,-0.023571508,-0.056728087,0.037694357,0.0059344913,0.03544321,-0.032718465,-0.058228154,-0.0040972116,-0.027761713,-0.014786704,-0.011760569,0.07825821,0.015158591,0.004529513,0.008642218,-0.06205102,0.22509898,0.054929722,0.010255112,-0.012562147,-0.02604682,0.0046672216,-0.0053282124,0.004014505,0.0057375617,-0.021263976,0.029763471,-0.022423133,0.008966188,0.05651823,0.014843603,0.05500498,-0.019641573,-0.023267305,-0.031353705,-0.039439846,-0.050820407,0.000009970616,0.00861066,0.04114009,-0.0058480855,0.028175173,0.025238376,-0.0026352017,-0.0019403375,0.01666664,0.02827422,-0.031084856,0.011616735,-0.009924775,-0.026486108,0.010310887,-0.02175622,-0.07303676,-0.0035768074,0.04939656,-0.044075333,0.019644791,0.014287284,0.046221383,0.0074138697,0.04559381,-0.029661883,0.010406291,-0.019926105,-0.03419048,0.07381477,0.013790842,0.09167252,-0.07360528,-0.034695625,-0.0062673087,0.014217267,0.013142975,-0.00080823194,0.025732232,-0.0093157,-0.008759328,-0.0059146993,0.0010412207,0.0011244483,0.0015622389,0.044411637,0.005674196,-0.012255971,-0.032057848,0.0022420676,-0.007637076,-0.036880318,0.024865143,0.006763232,-0.0014953661,-0.019834038,0.0039153295,-0.029417789,-0.016316248,0.009315837,-0.037254225,0.012829078,-0.004233595,0.033210643,0.055111762,-0.0029907299,0.018719338,-0.031726602,0.04866133,0.0008571185,0.029174896,-0.054025743,-0.044210773,0.017672177],[0.024742914,-0.02678267,0.009128244,0.042443812,-0.017288541,-0.009449283,0.018981049,-0.0022648263,0.026992224,0.047650002,0.022356711,-0.047330175,-0.009635157,0.010979392,-0.032228235,0.020545466,-0.044806257,-0.005140108,-0.01744514,0.035497967,0.005701951,-0.009523915,-0.08919148,0.025350377,-0.014542899,0.028226024,-0.00589959,0.035389572,0.02498078,0.022349218,0.004331962,0.033764012,0.016750472,-0.06122605,-0.029268648,-0.038652908,0.010105612,-0.03753896,-0.013703882,-0.038575202,0.023344714,-0.022346444,0.029247768,-0.029974453,-0.02497103,0.007272882,0.01303943,-0.017337458,0.018665964,-0.036863893,0.013708263,0.009294371,0.026288804,-0.035738952,0.03999558,-0.023123547,-0.0307135,0.0148079805,0.00053643616,0.034226183,0.020834388,0.05812873,0.0152176,-0.048992135,-0.012073141,0.0052886326,0.00610259,-0.012016798,0.00004886533,-0.013155638,0.0037567865,-0.017951803,-0.011932617,-0.015977964,-0.037837204,-0.0010827953,0.02711004,0.025715051,-0.034436267,0.050506916,-0.016571492,0.0039631105,-0.000594486,0.01683762,-0.039967597,-0.069396965,-0.011031339,0.045949694,0.013350648,-0.00011170859,-0.0054771104,0.03955519,-0.030270377,0.006403521,0.060024887,0.019025443,-0.027563432,0.012334584,-0.018534247,0.03667697,0.025451593,0.015465397,0.022993632,0.061077498,-0.04679639,0.0344444,-0.004729622,0.005595908,0.009885756,-0.027051864,-0.027664892,0.030112026,0.013170617,0.0069246064,0.022228204,0.014465604,0.030180573,0.042068403,-0.033946045,0.019935397,0.020952085,0.024896944,-0.023753932,0.025085675,0.027402887,-0.052012384,-0.040939,0.046752594,-0.012271,0.008458202,-0.04493388,-0.020306462,-0.009087857,0.00879888,0.04831711,0.015926398,0.009013184,0.02805153,0.029068172,-0.0002755983,0.035153195,-0.0025937299,-0.0071335123,0.05541336,-0.024841877,0.028724493,0.0003825289,0.031497803,-0.052276008,0.08002666,-0.05970541,-0.013498144,0.04288368,0.033624467,-0.0058379723,0.01831713,0.025550898,-0.0039638514,0.017869541,0.008961315,-0.025586888,0.018719995,-0.037804693,0.020302659,-0.042702086,0.038908143,-0.047228888,-0.019636147,-0.054676183,-0.018075235,-0.02853413,-0.004068445,0.0055412846,-0.004690612,0.025183521,0.06003818,-0.017915549,0.009084991,0.036098875,0.009519053,-0.004372049,0.010726977,0.013019199,0.037365478,0.014550206,0.017111538,0.02739057,0.0059988154,-0.0060262484,-0.01754083,0.0062342626,0.024189427,-0.048535142,-0.041751392,0.033720955,-0.005732953,-0.044437625,0.006822513,0.0058396887,-0.04546577,-0.0457234,0.023452824,-0.014323324,0.037306823,-0.027983993,-0.016622528,0.017546088,0.05720642,-0.016980119,-0.0017956569,0.03939209,0.04166708,0.005871211,-0.014954539,0.05122842,0.018592045,-0.05446919,0.07598251,-0.073684305,-0.01718831,0.013131652,0.013605911,0.013889224,0.030529741,-0.015850428,-0.02503928,0.0016303916,0.029979592,-0.031670436,0.027054312,-0.042125564,0.012027628,-0.0006754151,0.028776404,0.0179895,0.025985526,0.024016265,0.032956548,0.0015917653,-0.0093327155,-0.056313757,0.0044055595,0.04697033,0.01606279,0.0023960364,0.03735369,0.025360182,-0.0060898736,0.01429352,0.040838897,-0.011569171,0.03263379,0.016608851,0.05268995,-0.051650107,-0.043491922,0.06431616,0.035928257,-0.031589244,-0.026978416,-0.00076418434,0.03363425,-0.0017607709,0.035688262,0.06079065,0.029669223,0.00611691,0.022008326,-0.019390885,-0.020949094,-0.005105694,-0.031271733,-0.033569846,-0.002295445,-0.04867986,0.00035772327,-0.003600002,-0.012845392,0.04098125,0.014239425,0.00030575733,-0.04876262,-0.00008187603,0.0082759345,0.004450565,0.03401349,0.0068237614,0.04151931,-0.00816704,0.049457345,0.016146667,-0.00944482,0.0014778291,-0.0050744223,0.021436675,-0.026740408,-0.012459629,0.05567291,-0.031151952,-0.03978084,-0.012687828,-0.03191023,0.003393752,-0.02417268,-0.029678628,0.01866735,-0.008459574,-0.009262283,0.034634758,0.017042745,-0.075234435,0.009793452,0.004087215,0.013738821,-0.045859657,0.015701018,0.024861125,0.02314803,-0.013759211,0.0011968962,-0.0069450433,0.019182885,-0.0071911565,-0.051495474,0.035762772,0.0050835717,0.0649698,-0.080802575,0.023013128,-0.0016334229,-0.093538426,-0.06477124,-0.0174522,0.026030997,0.004045853,0.026903728,0.012326989,-0.014777186,-0.04916466,0.0013849053,0.008859229,-0.032757856,0.01797182,0.065812714,-0.039376818,-0.02788337,0.05709853,0.009438578,-0.028600838,0.00822041,0.02459254,0.041785654,-0.021952024,0.0040941183,0.0035125404,0.005209337,-0.01594704,0.03844146,0.039808996,0.024755273,0.0063851736,0.04849025,-0.011108353,-0.046587385,-0.02450676,-0.056936033,0.024793759,0.00034887632,0.045673806,-0.051657744,0.063670166,-0.003668397,-0.0076666637,0.012123843,0.019186905,0.006603134,0.051239174,-0.04422776,0.06861642,-0.03959203,-0.0049741673,-0.031867385,0.025132854,0.016215315,0.013619354,0.017923778,-0.022021603,0.016439473,-0.02204263,-0.036098637,-0.05935057,-0.029410988,0.024937814,0.000029760504,-0.024354544,-0.008296681,0.06380447,0.0017642335,0.022150049,0.015394798,0.057350796,-0.012408303,0.021619365,0.01157713,0.021452503,0.023301082,-0.016216528,0.07016422,-0.0028749304,-0.00403992,-0.026694993,0.019915065,-0.026775487,0.04078302,-0.005840285,-0.031862993,-0.0426331,-0.0062017897,0.049575686,0.010617467,-0.06508152,0.0028437702,-0.019181078,-0.00330611,-0.007797901,-0.02897567,0.0019237247,-0.0347243,0.025185598,-0.00919228,0.019892855,-0.037557177,0.028907184,-0.0047131465,-0.02408411,0.041461106,0.013244275,-0.027341897,-0.017047286,-0.017517472,0.04013387,0.017523563,-0.03969314,0.014459906,-0.008180206,0.019766685,0.0067617362,0.012235278,-0.023099639,-0.017113607,0.010043315,-0.053254936,-0.011014705,-0.046736576,0.0009174877,0.014432641,-0.035733394,0.026791276,-0.010748313,-0.036559615,-0.01832234,-0.01524751,0.0444839,-0.01095329,-0.002971955,0.021761063,-0.011545912,-0.065251574,0.033698075,0.012119805,0.017715268,-0.022562223,0.0021997339,-0.02090411,0.0002146201,-0.043645423,-0.0013807475,-0.02567116,-0.019698318,-0.016242983,-0.028141107,-0.0012457034,-0.008056749,0.018641852,-0.025008325,-0.06525467,-0.03454944,0.023051156,-0.02760693,0.01581401,0.017276652,-0.0035466808,-0.00424079,-0.06192476,-0.009255257,-0.019024912,-0.059279665,0.005859492,-0.0015112533,0.043855984,0.03713185,0.030734757,-0.014371935,0.008288365,0.01994196,0.0006498278,-0.020884039,-0.03228963,-0.0038137797,-0.000058189667,0.027106902,0.015509455,-0.018295472,-0.051330812,0.0435279,0.0052900338,-0.015262883,0.01632082,-0.013163066,0.0051282486,0.025824264,-0.04344124,-0.01414569,0.044076905,-0.011436672,0.022147277,-0.018283108,-0.037500486,-0.06696352,-0.0048851855,-0.0056721405,-0.033740055,-0.045246646,-0.0111387065,-0.03196297,-0.041694265,0.015943285,0.008721787,-0.009388484,0.02572938,-0.04129429,0.013861908,-0.006055007,-0.052216485,-0.03182758,-0.02036154,0.016658163,0.10142153,0.0012987873,-0.011385162,-0.01448869,0.0051233983,0.010125102,0.021479722,-0.013458139,-0.008305914,0.02606809,-0.03433174,0.021399384,0.0074013923,-0.009650502,0.056397535,-0.035380445,-0.05716159,-0.054590963,-0.023639943,-0.043851655,-0.016738877,0.045266885,0.0017655883,-0.009418022,-0.013332652,0.037054427,0.027028162,0.0067748968,-0.026167087,-0.041019347,-0.04497296,-0.07240002,0.029882427,0.018431654,-0.001193669,-0.02334622,0.0020164654,0.01946409,0.012941126,0.04395575,0.053785164,0.024310792,0.018922292,-0.056221657,0.016320162,0.027610248,-0.046737015,-0.031103773,-0.010999282,-0.027182283,0.02819899,-0.016735762,-0.042879526,-0.079682715,0.008820852,0.05616107,-0.011759813,0.050357394,0.018416759,0.01240256,-0.036890812,0.047294352,0.01712994,-0.008176253,0.026916694,-0.015883014,0.025029773,0.038248613,0.026428001,-0.011009464,-0.02350859,0.057605516,0.015424255,-0.04801622,-0.0014537108,0.05179969,-0.033418957,-0.05089036,0.015499354,0.0012686953,-0.01949827,-0.04314964,0.007212837,0.0069160527,-0.02235269,-0.0015538642,-0.0008379092,0.007325394,0.037739065,-0.029300423,0.041172713,0.0044872887,0.041519172,0.01313405,-0.019853387,0.018860508,-0.00033707442,-0.0028424186,-0.006916096,0.011707223,0.039229944,0.013976011,-0.030073825,0.046775874,-0.022072248,0.035751127,-0.045302846,-0.01894844,0.04508294,0.009419248,-0.038372885,0.0066587054,0.021673342,0.007968804,0.028225312,-0.062641166,-0.0015906151,-0.006203007,0.024356041,-0.0053332066,-0.038053084,-0.042991176,-0.037439685,-0.05478801,-0.031200662,-0.040525857,-0.008209412,0.03982878,-0.014375628,0.0033550535,-0.012555391,0.057140935,-0.03554683,0.041582204,0.00427773,0.07364841,-0.03666012,-0.021176673,-0.036113635,0.025869144,-0.044856466,0.015339088,-0.030588498,0.0051488928,0.0002636389,0.033084568,0.01661657,0.0062096533,-0.018205468,-0.005241522,0.035554998,0.0037961816,-0.0009440434,0.02872145,0.02551742,0.009068422,-0.026183397,-0.0052794265,-0.0020163332,-0.041255638,0.0075418465,-0.032725357,-0.013492718,-0.027300844,-0.027819334,-0.011878747,-0.04642427,-0.003937031,0.018226808,0.024162166,-0.021565437,-0.04135216,-0.00048417374,0.06686582,0.009512653,0.015961219,0.0049713207,0.039208457,0.018073507,0.023344265,0.0044110147,0.015933895,0.056171
+8000
+846,-0.0048302063,-0.014658976,0.013862657,-0.023316955,-0.0015605082,0.021569842,-0.015531026,-0.045675263,0.02252095,0.018296488,0.03701005,0.013872487,-0.02384645,0.03575362,-0.044212803,-0.056191333,-0.0032648037,-0.06428358,-0.00632025,0.026377536,-0.023608554,-0.011854792,-0.009420409,-0.039879207,-0.041320775,-0.0042080902,-0.030698648,-0.007753663,0.035123177,-0.022054104,0.016120374,-0.037647318,0.017431835,0.03015339,-0.0042429953,-0.025244473,-0.039263856,0.012598792,0.0067311083,0.005564215,0.013764656,-0.031086028,0.025145994,-0.0020970616,-0.0091756135,0.019255301,0.00898156,-0.010907003,0.0130674625,-0.048348922,0.04288324,-0.023908852,-0.013285756,-0.016410995,0.025506768,-0.013692898,0.04454947,0.047816783,0.04164081,0.02388999,0.02603907,0.0032042074,0.023326706,-0.008349585,-0.019104492,0.06228118,0.010455787,0.027082767,-0.01975407,0.06903267,-0.009965638,0.01194251,-0.01768764,0.041616313,0.0058338726,0.017683871,-0.025403105,-0.0098105725,-0.040566783,-0.03001497,-0.021592898,-0.009579033,-0.053789053,-0.02175059,-0.024334468,-0.018331438,0.050705735,-0.0012734572,-0.042166375,-0.027299358,0.012792023,-0.031246416,0.008254593,0.019874567,0.029500391,0.048281647,-0.0037632396,0.013493292,0.03243211,0.000751249,-0.011262248,-0.022316612,-0.011506963,-0.006998873,0.02099931,0.0025405744,-0.028276106,-0.0034725973,0.047617823,-0.004753528,-0.020463426,0.023777423,-0.021030355,-0.007397728,-0.043158934,0.006198026,-0.02508408,-0.0058717504,0.016277472,-0.025497634,0.013319103,0.03652948,0.01116,0.041352436,-0.0016081556,0.017472947,0.0023616313,0.024269197,-0.0013017319,-0.03036543,-0.01411649,0.01413762,0.01968774,-0.04411512,0.0121602835,-0.0129868975,-0.006232303,-0.007554032,-0.023826635,-0.03674503,0.043070845,-0.009029231,-0.06660734,-0.029850364,0.028997593,0.0161296,-0.00017499864,0.013768441,-0.028504806,0.02845716,0.041766755,-0.009018055,-0.042599186,0.056176502,-0.033253524,0.03246286,-0.03839202,-0.045265775,-0.024358826,-0.024308508,-0.01372297,-0.013764092,-0.0009315696,-0.05016764,0.020552693,0.031516917,0.043323725,-0.004015789,-0.008167905,-0.002768272,0.033802327,0.053760372,-0.040993005,0.087929726,0.0067436513,0.0030114166,0.007902598,-0.034024574,0.033554386,-0.043013897,-0.03469954,-0.021041157,0.011717954,-0.02794895,-0.07289024,0.036678452,0.02700107,0.04803698,-0.048674766,-0.05862405,0.0005469693,-0.021491064,-0.02072396,-0.017480157,0.04772372,0.0023679018,0.010282136,-0.0011007095,-0.084330834,0.2628054,0.0784999,0.008440648,0.010980998,-0.044241972,-0.009994452,-0.012339643,-0.034981035,-0.007947576,-0.058041636,0.021950558,-0.018851463,-0.0072317566,0.058567777,0.019438343,0.025131924,-0.027108518,-0.01729413,-0.023332132,-0.027797934,-0.023310805,-0.01497085,0.013023078,0.02792969,-0.009283861,0.004879372,0.037221372,-0.018744549,0.0073621096,0.03101376,0.009398171,-0.020417932,0.0026297239,-0.042458236,-0.05821389,-0.0027330408,-0.027005523,-0.04049033,-0.0007289696,0.009001832,-0.04536226,0.017467981,0.025905283,0.03057298,0.015950432,0.052042443,-0.024920734,0.016287925,-0.027551506,-0.0059728515,0.06232841,-0.009716076,0.053618085,-0.05361985,-0.015898947,-0.047689952,0.03994889,0.0050229374,-0.013517917,0.008196047,-0.006436009,-0.012481066,0.03188331,0.0081621455,-0.01457836,0.0011539579,0.046331808,-0.01523593,-0.03670044,-0.015206645,-0.00915937,-0.017824333,-0.04658447,0.011304077,-0.0033494409,-0.0042199227,-0.03658018,0.0046466007,0.017669804,-0.04191678,-0.019672757,-0.028369691,0.026467651,-0.021659251,-0.0058500264,0.06338999,-0.0061817137,0.0015789102,-0.028619962,0.024609823,0.025148956,0.029511236,-0.034043018,-0.040192954,0.016434835],[0.022347158,-0.01673942,-0.003946322,-0.0043045026,-0.029117268,-0.009789184,0.009518705,0.029503182,0.002252905,0.03909326,0.04817637,-0.028775422,0.000718392,-0.01631633,-0.028024334,0.025222559,-0.023027489,-0.007760834,-0.011722563,0.00740419,0.009504584,0.022670815,-0.09900756,-0.0052413037,0.00260326,0.05526818,-0.0015381813,0.045498624,0.051004007,0.035336588,-0.016612122,0.044835117,0.026384035,-0.04356694,-0.022986593,-0.018858502,0.047353063,-0.018221054,-0.041728165,-0.056810923,0.018203886,-0.034181286,0.024527123,-0.039333377,-0.024045832,-0.007739295,-0.014082623,-0.025956484,0.016931474,-0.039405048,0.015780345,0.011987681,-0.0018226192,-0.042048372,0.046046793,0.0020323007,-0.04829195,-0.001688428,-0.026291555,0.05071211,0.029684553,0.0414691,-0.0042754365,-0.05155021,-0.024206443,0.040751763,0.0046097315,0.024329523,-0.00033954307,0.0053794547,0.012391669,-0.04683303,-0.022587026,-0.024592262,-0.018643767,0.0021472608,0.020545576,0.0013870562,-0.0649324,0.066913895,-0.016270239,0.020816749,0.018287634,0.019177295,-0.030262213,-0.030694928,-0.007751511,0.021171343,-0.005740904,-0.030381558,-0.0016373673,0.027793204,-0.020639185,0.019110866,0.022042295,-0.003567352,-0.03445256,0.0017251306,-0.04034947,0.008210699,0.034865018,0.03365701,-0.009436834,0.06009394,-0.023850936,0.027618812,0.010661712,0.024410687,0.015049865,0.012518894,-0.0074595776,0.017658507,0.014725775,0.028607087,0.023455678,0.038444564,-0.007967933,0.037012022,-0.026644759,0.0007963986,0.029834015,0.01583015,-0.034213774,0.009204695,0.013703845,-0.03167915,-0.038438488,0.04669752,-0.02287155,-0.041079614,-0.0219544,-0.008842636,0.00915153,-0.008077022,0.034734655,-0.017046034,-0.012917208,0.032296475,-0.014673156,-0.04767705,0.03520734,0.025618983,-0.023665685,0.06461409,-0.030865612,0.030109365,-0.006534177,0.017418735,-0.06613199,0.057296574,-0.045207582,0.00462242,0.037002727,0.046951067,-0.027178928,0.015263623,0.012300945,0.005360851,0.016584324,-0.013110521,-0.019852586,0.022334514,-0.047013767,0.027240058,-0.0604188,0.032805566,-0.045152623,-0.0015168673,-0.032928266,-0.0050493237,-0.034632117,-0.022230836,-0.030161854,-0.012800942,-0.009390329,0.06835686,0.004635484,-0.0013972805,0.020879282,-0.0018998065,-0.00018258658,0.0017400364,0.010031042,0.038029887,-0.015006786,0.013104842,0.016840449,-0.0023000867,-0.022440866,-0.023424927,-0.017109713,0.033401802,-0.030096708,-0.0026680853,0.004272758,0.02026499,-0.023367176,-0.004567246,0.012396516,-0.057675384,-0.012048841,0.04082895,0.009107964,0.038713083,-0.015896171,-0.040680043,0.007813455,0.05110905,-0.020742264,0.039356716,0.025856454,0.0665692,-0.017117044,-0.0054169004,0.03183592,0.0017703455,-0.027914941,0.04520861,-0.04595086,-0.0017247646,0.013307648,0.040307797,0.023647398,0.035279807,-0.004458714,-0.012539662,-0.0057896827,0.047930326,-0.013871689,0.02887437,-0.016598117,0.00017731384,-0.0050664223,0.057364434,0.022424152,0.0149122095,0.022065384,0.020387543,0.013379088,0.011083203,-0.052799422,-0.0048795613,0.026387142,0.0064355866,0.017699968,0.04345926,0.0043082605,-0.047710188,-0.02312149,0.007557766,-0.020418983,0.03031748,0.03916052,0.053760096,-0.048116934,-0.039194226,0.05216029,0.016994424,-0.042098593,-0.0082205655,0.014470919,0.049998563,-0.010366952,0.02913383,0.055860203,0.023157835,0.015238141,0.021789404,-0.0143938605,-0.008715612,-0.010309961,-0.042418618,-0.05854991,-0.022599611,-0.022318134,0.029785847,0.015712576,-0.029063988,0.009903501,0.011968784,-0.002076729,-0.034656152,0.008880022,0.035867527,0.00303321,0.039512016,-0.027643591,0.019178145,-0.0009356847,0.043267384,-0.017068349,0.0004918202,0.0032731642,-0.010139426,0.03249668,-0.008780567,-0.00973466,0.033766292,-0.018772962,-0.050097667,-0.03285123,-0.02818931,-0.0064544673,0.021774702,-0.045370206,0.019241909,-0.0067905253,0.0054113953,0.035550766,0.0058318023,-0.050056826,0.011781861,-0.0037389258,-0.008181139,-0.05946476,0.0039842273,0.013361427,0.034046847,-0.031825576,-0.0013403799,0.015921343,0.021113092,-0.020100955,-0.044774067,0.026390126,0.040105,0.054513354,-0.072918,0.044629294,0.009079128,-0.07103532,-0.046042822,-0.022996454,0.027721059,0.016001182,-0.0004345602,0.0021965422,-0.036932115,-0.05621348,0.03411074,0.0018072969,-0.031424966,0.010158697,0.073816516,-0.023768106,0.0021607503,0.038136646,0.006035222,-0.01015021,0.0109138815,0.02558683,0.024404768,-0.02648336,0.02051782,-0.001752845,0.014226791,-0.025814887,0.012710246,0.04167693,0.005549353,-0.00018191253,0.043290503,-0.004244603,-0.026493602,-0.031207599,-0.039313156,0.03564782,0.01768637,0.029660499,-0.046360705,0.043417938,-0.009269696,-0.017460162,0.018131537,0.007732998,-0.005766895,0.0427311,-0.02965854,0.07051501,-0.0048582563,0.002554639,-0.026215682,0.022754904,0.055241104,0.040263418,-0.0012924129,-0.039108206,0.0077328756,-0.0074924156,-0.010602183,-0.023942921,-0.03716283,-0.0032659369,-0.018792618,-0.05106728,0.0008093049,0.051440787,0.013197855,0.051391277,0.020910814,0.04332478,-0.004987121,0.034107175,0.043291148,-0.013918164,-0.01427728,-0.012675656,0.057898857,0.009187878,-0.01641982,-0.034908928,0.027868504,-0.0045021013,0.04328824,-0.0118613625,-0.015602478,-0.029815093,0.00014309661,0.04549103,0.021953711,-0.055192564,-0.027090723,0.0052262596,-0.01551865,-0.0051042866,-0.028864548,0.018497964,-0.062000792,0.053512882,0.027969157,0.013368873,-0.039736252,0.029888958,0.0032813675,-0.023236558,0.016143506,-0.0013393717,-0.02317077,-0.003006867,-0.009010424,0.041295245,0.021409035,-0.016469337,0.0013635156,0.0033480006,-0.007993671,0.005077994,0.021790052,-0.063340686,-0.0038832307,0.008216513,-0.03910757,0.015166921,-0.052290007,-0.0043321857,-0.0069462378,-0.014135043,0.022765087,0.022067169,-0.039028853,-0.027863724,-0.0020618667,0.02663581,-0.0016795563,-0.0063061463,0.02009623,-0.01571905,-0.058625843,0.021079296,0.026108291,0.024007523,-0.05013578,-0.0077035613,-0.008235816,0.015737046,-0.04983456,0.010165934,-0.026491731,-0.031782065,-0.021834863,-0.02861325,0.023674356,0.005152119,0.005882749,-0.036214024,-0.061182667,-0.022732388,0.016243013,-0.030037606,0.021866944,0.010944333,0.0053517213,-0.0059816726,-0.041148983,0.022650318,-0.032734565,-0.03730182,0.02841729,-0.001839802,0.051014915,0.027204748,0.0015706494,0.0023002373,-0.026402095,0.021857584,-0.0013409408,-0.057028063,-0.010804592,0.021248948,0.01660053,0.031184096,-0.007633455,-0.015528974,-0.010874343,0.024299996,0.010423019,-0.0034647894,0.029102247,0.0038212794,0.038159788,0.019674405,-0.057223976,-0.022909006,0.06591857,0.006691683,0.048338383,0.018626152,-0.009371092,-0.06011045,-0.036743708,-0.015193937,-0.057568494,-0.052800342,0.0058525326,-0.0076500243,-0.026272845,-0.007054,0.0055451863,-0.01769233,0.03907506,-0.04904223,0.00021710555,0.0044550784,-0.04167577,-0.0140077695,-0.019627228,0.009127293,0.074029595,-0.024940763,0.025981206,-0.0007722115,-0.037265733,0.0135847,-0.0027029866,-0.04533279,0.005309223,0.028488122,-0.0016118023,0.022354707,-0.0058842273,0.003976906,0.052204903,-0.05222297,-0.035834778,-0.03325305,-0.01704875,-0.024572067,-0.009910786,0.04995969,0.0044236947,-0.0030936045,0.0036240425,0.064683884,0.021369005,-0.015279716,-0.029827205,-0.03535938,-0.074182376,-0.049717043,0.0062059597,0.012946368,0.0023479348,-0.013697332,0.0075058956,0.030427374,-0.002097561,0.018521909,0.052660648,-0.011978465,0.0076076,-0.069091626,0.04344108,0.016348891,-0.028597068,-0.02232094,-0.037883792,0.0022346075,0.049436036,-0.03940864,-0.04073705,-0.054098304,-0.0027405813,0.06588675,-0.01425951,0.05381653,0.003700546,0.016587514,-0.051687997,0.047679294,0.028180452,-0.0059722727,0.044571627,-0.038256027,0.007195932,0.046115234,0.01888262,-0.015696486,-0.019163536,0.06329784,0.0017096298,-0.0361087,0.047779348,0.045744598,-0.030912338,-0.06603775,0.020470025,0.0070457053,-0.02241446,-0.056565423,-0.007386852,-0.031222375,0.011785916,-0.030323239,-0.0068150824,0.0028636176,0.025726285,-0.036431145,0.053716116,0.013556289,0.03073811,0.023620158,-0.036594793,0.012108872,-0.03453252,0.026165301,-0.007128051,-0.008827532,0.008076326,-0.0043633427,-0.002870968,0.053452168,-0.026508655,0.040143047,-0.025299061,-0.028410926,0.03426239,-0.011208554,-0.02314746,0.035357438,0.029813569,-0.039045673,0.03521292,-0.04359306,-0.029066464,-0.015636284,0.011268193,-0.0123301055,-0.016974574,-0.02109884,-0.05137961,-0.021930072,-0.028969364,-0.030067591,-0.023534989,0.04524435,-0.012243049,0.010333786,0.002144242,0.042489477,-0.051644087,0.051811226,-0.00806589,0.10625219,-0.02750064,-0.031234099,-0.054024022,0.0071465326,-0.017756851,0.007474182,-0.045063864,0.033727676,0.0072202254,0.01192857,0.032839414,0.0023456623,-0.02923618,-0.0041594375,0.056204617,0.0274871,-0.0050088954,0.0509405,0.021908196,-0.0015407273,-0.046459734,-0.027075091,-0.019208657,-0.033528633,0.0066665313,-0.018782428,-0.05154161,-0.006147709,-0.04502328,-0.011378289,-0.036343325,-0.01154873,0.012525118,0.016112216,-0.00008555418,-0.023353755,-0.02102342,0.0400704,0.051170193,0.0055907764,-0.024316484,0.018257922,0.020168655,-0.0074214945,0.02092959,0.0063912505,0.052975364,0.019612435,-0.020984508,0.0147101,-0.013581052,0.009916679,-0.014011657,-0.04426523,-0.030861119,-0.00094848964,-0.02145487,0.030065665,0.024715923,-0.038583804,0.023356672,-0.04766629,-0.050002247,0.0044058426,-0.063916765,-0.0020074972,0.04055989,-0.021764677,0.016670229,0.04213575,-0.079380274,-0.038939957,0.024320766,0.009702658,-0.017598202,0.04446459,-0.009021625,-0.006826352,-0.027458275,-0.0069517153,0.03019186,0.015052094,-0.037367046,-0.018430727,0.0058103814,-0.0030440746,0.0039542126,-0.002785309,-0.030033799,0.035593823,-0.009664664,-0.035262495,0.023298047,0.021972118,-0.011501332,0.02120424,-0.0652104,0.059681986,-0.01431693,0.017255656,0.026209945,0.007665024,-0.03694955,0.040790904,0.023819596,0.03923864,0.0279958,-0.009722037,0.001601857,-0.015996294,-0.018096153,-0.02114143,0.053080276,0.008756464,-0.0030494225,-0.011240438,0.05116305,0.004022562,0.008525294,-0.012882899,0.033621404,-0.0023807741,-0.008575647,-0.0024132312,-0.02139738,-0.031867255,-0.0494216,-0.038768057,-0.011480764,-0.031323362,-0.014219195,-0.01725654,0.011147745,0.030040545,-0.0016998182,-0.024508229,-0.024216365,-0.010969319,-0.0040130797,0.025970403,-0.0040179603,0.0575425,0.018586699,0.01990083,0.04428566,0.03761277,0.0213746,-0.045515887,-0.039376102,-0.0053859465,0.0038691151,-0.023199093,-0.019730844,-0.017352633,-0.018790763,0.043947913,-0.00052682566,-0.042855058,0.026615439,-0.03421825,0.013225988,-0.037811726,0.02413171,-0.012769242,0.01859957,0.017047415,-0.021103408,0.009754028,-0.0074747703,-0.0012029595,0.03877621,0.01982243,0.017022934,-0.025801955,0.0028666488,0.013241948,-0.035155814,-0.011766758,0.018685007,0.014090878,-0.051881574,0.000965157,-0.026877325,0.016693916,-0.0101448465,0.0020967086,-0.025329476,0.049035102,-0.018265653,-0.0457909,-0.0041669696,0.0016764483,-0.009636816,0.008205673,0.030009156,-0.020730905,0.026650362,0.034113422,-0.028299106,-0.02215831,0.03350345,-0.047297653,0.064666934,-0.034607474,-0.049853828,-0.009975441,-0.029967211,-0.036642358,-0.005292733,-0.0075212927,-0.03965172,0.011742775,0.023500895,-0.0070944307,-0.011830105,-0.004565389,0.014020748,0.02386909,0.05894497,-0.05734331,0.06323973,0.018625198,-0.032124426,0.022544527,-0.02126432,0.051537294,-0.020637825,-0.018275991,-0.038092393,0.02667907,-0.02373837,-0.035412878,0.011975308,0.022192031,0.029205034,-0.06036021,-0.047859915,-0.01600941,-0.053114206,-0.0018844635,-0.0025464206,0.08059263,0.0095569305,0.02141285,-0.0035007992,-0.06669031,0.2604695,0.09110977,0.04237216,-0.005497415,-0.0037062631,0.027810188,-0.009986153,-0.03458965,-0.0029499151,-0.036555063,0.014977727,-0.018734585,0.01599958,0.056886557,0.0053416477,0.07245072,-0.035860986,-0.003715467,-0.028907841,-0.05083387,-0.01544298,0.0051704217,0.017737057,0.03545805,-0.033096127,0.019069983,0.048315372,-0.023543952,0.011531632,-0.011723908,0.016622426,-0.016350912,0.023969,-0.037814565,-0.034390856,0.016332617,-0.03296804,-0.052940395,0.002119168,0.009957677,-0.031105569,0.043900516,0.0102197165,0.0114261,0.025884943,0.020547207,-0.05541654,0.012640209,-0.008338775,-0.020531198,0.07469114,-0.0028768305,0.04928639,-0.043784257,-0.028710412,-0.007086528,0.00908763,0.013822432,-0.010655911,-0.0038299288,0.016540162,-0.008656386,-0.0009965771,0.004883483,-0.025419788,0.006412045,0.06714705,-0.014498745,-0.030501502,-0.0077480585,0.012689365,-0.02186151,-0.021959191,0.012463297,-0.03477557,-0.016329678,-0.028697846,0.0015645203,0.008371007,-0.015005065,-0.013404619,-0.037525132,0.012095913,0.009051228,-0.011670989,0.04293398,-0.022978777,-0.015584434,-0.04679489,0.02041396,0.02464688,0.027107064,-0.0018703684,-0.05578331,0.008142091],[0.032700844,-0.020446483,0.0008098858,-0.0033295471,-0.023370855,0.012451047,0.0037275478,0.0332977,0.016029494,0.057243526,0.026386907,-0.05373919,-0.0037382138,0.005431736,0.007045054,0.0023534729,-0.010632993,-0.026057422,-0.048930783,0.028977271,-0.010764178,0.038925122,-0.07181095,0.00601529,-0.04202588,0.037852064,-0.031921368,0.03629276,0.028977755,0.044724327,-0.025964009,-0.0047346717,0.05113682,-0.0161762,-0.003274602,-0.023436286,0.01969649,-0.039204393,-0.012313948,-0.05910565,0.040277347,-0.05487811,0.019030329,-0.033866875,-0.011971551,-0.006347835,-0.009729785,-0.0569765,-0.0087969415,-0.07263652,0.020838354,0.0058795945,0.015293191,-0.039519407,0.059653863,-0.0028784391,-0.03125769,0.03041163,0.00072260475,0.045090098,0.029209187,0.035650443,-0.024311006,-0.080152564,-0.014393135,0.013181808,0.026622469,0.00770757,0.02722031,0.019876616,-0.023310509,-0.011987302,-0.019887472,-0.039510123,-0.018265417,0.00043643723,0.03360945,0.004213008,-0.04369832,0.065448,-0.026503421,-0.014628445,-0.017289883,0.0004320102,-0.036957458,-0.03750571,-0.0040427684,0.04384464,-0.011146566,-0.006706023,0.018123562,0.026511896,-0.038264535,0.025469324,0.042387273,0.025680019,-0.021809831,-0.020934828,-0.048989445,0.02095487,0.03540713,0.0013835964,-0.008343759,0.077024,-0.047449883,0.032527752,-0.003793013,0.012925515,0.02369957,0.00060572725,-0.017419223,0.030292863,0.035319768,0.050761294,0.0042999163,0.035387326,-0.005539684,0.036346365,-0.021902705,-0.009286978,0.032195617,0.011306601,-0.017035883,0.019885711,-0.0064965533,-0.031285435,-0.017174361,0.036735352,-0.034272023,-0.019392906,-0.043427397,-0.040212378,0.001891,0.01759799,0.02164364,0.010141731,0.00018332331,0.025144799,0.01262072,-0.044976316,0.049423244,0.023599688,-0.01806461,0.047290362,-0.01686189,0.052239336,0.006576312,0.02398652,-0.06468781,0.07933023,-0.04399538,0.041493505,0.0034796952,0.055861153,0.0066847224,-0.012817106,0.015401703,-0.017982388,-0.0014123853,0.010296397,-0.034418754,0.04841537,-0.022151817,0.019355029,-0.05068381,0.06325076,-0.0207069,0.0065897475,-0.06323904,-0.00015468878,-0.027956735,0.02301978,-0.025202671,-0.010043655,0.012018837,0.052729238,-0.015586047,-0.029739195,0.009513906,0.00004468383,0.006469544,0.011227397,-0.014644836,0.028576909,-0.0048317565,0.014657523,0.008578705,0.0020055298,-0.005022262,-0.03809399,-0.051017724,0.01690257,-0.031991847,0.017127292,0.0090524275,0.020319203,-0.042285867,-0.0071381344,0.0032369788,-0.060793083,-0.019378478,0.026164735,-0.0019622755,0.049002446,-0.023169335,0.002504867,0.017496495,0.049823016,-0.008767713,0.009628658,0.043880016,0.07082651,-0.017554548,0.008862049,0.014932099,0.00091015693,-0.033924893,0.07481276,-0.06892866,-0.014250359,0.019782236,0.03584747,0.04743245,0.053349935,-0.00968073,-0.01732535,-0.051116046,0.05941899,-0.024511376,0.011310526,-0.009147329,0.006106254,-0.017266221,0.037177224,0.020554738,0.0046803285,0.01043059,0.019061325,0.022163182,0.0014594141,-0.032649506,-0.008625102,0.03352828,0.0380903,0.025583131,0.05567795,0.02814193,-0.003013971,0.029730685,0.004848241,-0.014211572,0.053172626,0.028879471,0.050898094,-0.036565546,-0.030951938,0.045648664,0.032535885,-0.018845389,-0.0046815295,-0.019361958,0.023263149,-0.023662867,0.031512365,0.032713655,0.01916088,0.013803375,0.08257518,-0.015443951,-0.035126522,-0.038185578,-0.025293099,-0.037064914,-0.03956713,-0.032983445,0.00970943,-0.0026480693,-0.008787964,0.012254224,0.015237894,-0.020849667,-0.022526491,0.0038561514,0.030856261,-0.0038821544,0.05232604,0.006651998,0.023134017,0.015032664,0.061901677,-0.011369858,-0.011434978,-0.023395583,-0.013567142,-0.003572577,-0.029482834,-0.016804393,0.034058534,-0.038880687,-0.03489486,-0.00322278,-0.037893217,-0.019666396,0.0020505188,-0.016101344,0.024874449,-0.0065612667,-0.019953523,0.028459713,0.03638458,-0.043651406,0.04313971,0.027043,0.028025718,-0.05789182,0.017046351,0.030112306,0.061272506,-0.019370435,-0.03433232,-0.014711699,0.01346577,-0.009744852,-0.05881687,0.038201604,0.023582876,0.05159646,-0.073884524,0.024851032,-0.038062,-0.08321538,-0.007349033,-0.02322734,0.035005756,0.005265471,0.03362073,-0.0111183105,-0.0485384,-0.058962688,0.027866192,0.0065322346,-0.023152256,-0.007372229,0.06966723,0.01451207,0.00037903385,0.024568642,-0.0053510005,-0.019134508,0.034643278,0.0073412126,0.035543635,0.013282267,0.037550543,0.015389643,-0.014885202,-0.019217467,0.011148045,0.031708304,-0.0018512197,-0.009016887,0.03162145,-0.01947143,-0.020944718,-0.022573626,-0.038614355,0.016806003,-0.03322679,0.03425314,-0.04545249,0.041482944,-0.026811896,-0.027831849,0.031258795,-0.014128352,-0.019585883,0.053936508,-0.017105995,0.07268795,-0.011568501,0.029230144,-0.023206295,0.019740075,0.068393975,0.032890692,0.04680993,-0.030879183,0.017520458,-0.0043527666,0.014626458,-0.044046693,-0.027810058,0.027658524,-0.010734887,-0.04180678,-0.034307417,0.04835505,0.01190144,0.034343272,0.00887683,0.01886647,-0.009547465,0.0068745078,0.04715917,0.0009837574,0.020491982,-0.0022596787,0.053997003,0.015750725,-0.03263377,-0.030002085,0.032583285,-0.03648839,0.025916751,-0.0010215135,-0.0161735,-0.019755635,0.005599604,0.020238003,-0.013671478,-0.041096147,0.00047437986,0.008120382,-0.0042405515,0.009644078,-0.021401517,0.007036132,-0.02361307,0.053420585,-0.006891384,-0.006842416,-0.028485049,0.052380823,-0.006491762,-0.049973264,0.0096451,0.0113593,-0.019572547,0.0057853907,-0.0067843315,0.021604598,0.036473896,-0.0066746795,-0.006293614,0.02622364,0.004528349,-0.008759408,0.013602431,-0.0106578255,-0.00031653827,0.00792707,-0.06863884,0.015509385,-0.03244899,0.013759458,-0.012753427,-0.033177648,0.011933273,0.033347182,-0.020435154,-0.020451194,-0.0026003965,0.04559777,-0.0062472695,-0.00046609328,0.04850387,-0.009756726,-0.06765186,0.03707938,0.00581559,0.013538166,-0.015122848,0.0073633413,0.021692324,0.0069765165,-0.046390172,0.028441451,-0.017555747,-0.019591114,-0.010423787,-0.021662,0.018961333,-0.0131864315,-0.006851286,0.003790756,-0.054484937,0.005193835,0.023831053,-0.055292472,0.0032144457,0.010410948,-0.001123265,0.012878311,-0.060002968,-0.0050452948,-0.014170757,-0.040836543,0.018232321,-0.00939869,0.031755026,0.023685385,-0.028653715,-0.015480118,-0.025541496,0.025948392,-0.003579499,-0.06173983,-0.016530406,-0.031246083,-0.0059760264,0.010755594,0.043938328,-0.012257311,-0.00943963,0.045937523,0.023528054,0.018659225,0.0010836016,0.0015645801,0.047691043,0.020384764,-0.040769916,-0.03721415,0.027664123,-0.008399813,0.023173219,-0.0011717121,0.011763792,-0.040540732,-0.021451514,0.02046007,-0.037094872,-0.048469633,-0.003903251,-0.0038692697,0.0023171834,0.016830862,-0.007661972,0.003142269,0.041498832,-0.027739344,0.04240458,-0.011258833,-0.011662342,-0.026916027,-0.03333676,0.01580757,0.0955401,-0.013253989,0.023677837,0.0063627106,-0.02431623,-0.012035743,0.0033998492,-0.03611037,-0.019337004,0.0074203378,-0.0048091384,0.034947265,0.005315471,-0.012361062,0.06011976,-0.024229143,-0.022947917,-0.034931347,-0.023638442,-0.03621458,-0.011682205,0.051488,0.0037966752,-0.020022139,0.005632115,0.03441756,0.010399095,-0.026889175,-0.0561448,-0.034066066,-0.0803625,-0.053964496,-0.008967504,-0.00008686215,-0.00063086575,-0.017297963,-0.002588759,0.026348162,-0.007916126,0.015479699,0.047456905,-0.016044663,0.0072667403,-0.03739321,0.022138247,0.02738787,-0.021338634,-0.009371159,-0.005993739,0.015786793,0.02204485,-0.022648536,-0.038920317,-0.051350635,0.005871936,0.056086484,-0.039100274,0.074376546,-0.0148935355,0.0053032143,-0.03831899,0.04811034,-0.013317927,0.0056208475,0.048202883,-0.030196015,-0.005890108,0.036384333,0.012569302,-0.015034751,0.006553028,0.056824427,0.0068266415,-0.051796056,0.018894993,0.066827424,-0.05544934,-0.05172729,0.000070363916,0.022873104,-0.0213199,-0.053864792,0.0027985345,-0.031468287,-0.0052049127,-0.009616894,-0.0029479214,-0.024933195,0.03567913,-0.01652094,0.019754764,-0.012912155,0.051277325,0.040413503,-0.037804015,-0.007966448,-0.035163507,0.034178484,-0.019554168,0.02298504,0.008526853,-0.022051783,-0.004186196,0.011479675,-0.012087318,0.012316351,-0.027367173,-0.038787775,0.02888872,-0.013109385,-0.03222366,-0.011671622,0.036526818,-0.030687436,0.02375158,-0.051502485,-0.021401556,-0.0031347917,0.0023620503,-0.023458838,-0.023290697,-0.020683749,-0.019402854,-0.032038484,-0.029768463,-0.02353642,-0.0067760013,0.056170918,-0.005416226,0.0022997255,-0.0061474247,0.045265093,-0.030665034,0.031133534,-0.01282198,0.08231992,-0.042607903,-0.035656843,-0.015518315,0.02497689,-0.033136763,-0.004174388,-0.025985258,0.0119741205,0.0022978391,0.035781488,0.022744268,-0.00252599,-0.030594217,0.0037046215,0.020095203,-0.0027991745,-0.026798876,0.060451087,0.033023585,-0.0322378,-0.02712739,-0.030331576,-0.01974761,-0.059610736,0.018106109,-0.013215342,-0.038113497,-0.024737164,-0.03945719,-0.031584542,-0.04706067,-0.008480809,0.0008805619,0.013449403,-0.019738752,-0.018451236,0.0015214343,0.02378233,0.019786004,-0.0031748363,0.017635884,0.0037852866,-0.0053442214,0.0056777867,0.0032106894,0.0019676904,0.059453495,-0.00004605311,-0.002318233,0.01324313,-0.010945122,0.011326082,0.01869264,-0.027334908,-0.06308593,0.01324368,0.010017353,0.024061687,0.035891857,0.009466144,0.004405483,-0.037508566,-0.05756433,-0.00633862,-0.043333594,-0.018858163,0.026037978,-0.022377042,-0.04526769,0.002670747,-0.052821618,-0.0066045984,0.025375713,-0.009772496,-0.022703297,0.04531217,-0.009965971,0.038598217,-0.015694184,0.009196574,-0.0060278447,0.02518647,-0.0182657,-0.024607003,-0.0043338593,0.0030304848,0.024334757,0.0063104783,-0.023279341,0.011728252,-0.038244244,-0.011857887,-0.0034025542,0.012945949,0.0012849877,0.01897275,-0.02679898,0.042203043,-0.037461273,-0.012758012,-0.010168995,-0.0016319318,-0.012194251,0.036999073,0.04021729,0.031895824,-0.020924041,0.0059732767,0.0034743515,-0.037888825,-0.023900332,-0.0011243055,0.05829595,0.01814029,0.009536116,-0.04427594,0.048306193,0.009055224,-0.008879121,-0.0013715063,0.05513872,-0.009307514,-0.016371552,-0.022635628,-0.05498969,-0.019882973,-0.06393413,-0.009334825,-0.011551569,-0.020530565,-0.04363047,-0.009699021,-0.014162142,0.064374596,-0.005501303,-0.023164729,-0.015169967,0.0319324,-0.014819724,0.045088246,0.009894731,0.05585263,0.012583066,0.023389589,0.038971364,0.000060579256,0.0071795126,-0.012814289,-0.022118922,-0.032993715,-0.005593309,-0.010696665,-0.04078745,-0.012186066,-0.037333194,0.02688677,-0.007175549,-0.020788528,0.006585258,-0.0026948492,0.021189248,-0.07305804,0.016513532,-0.025699912,0.019909468,0.015145928,-0.045162134,0.00221521,0.027101586,-0.031938434,0.02151196,0.025924748,0.018931672,0.008950446,0.0069001615,0.012841863,-0.057474818,-0.004039058,0.020387683,-0.00960107,-0.04087641,0.020256238,-0.033438336,-0.0039827987,-0.01016171,-0.014161753,-0.0138076125,0.061089292,-0.006440596,-0.046191365,0.0020944146,-0.0057805358,-0.000057611614,0.029008895,0.015305553,-0.0053091347,-0.0079146335,0.025477808,-0.029373284,-0.014766156,0.045124307,-0.029091213,0.042339973,-0.031174693,-0.049995087,-0.010579951,-0.027021812,-0.00003415203,-0.011402999,-0.011272293,-0.05846667,0.029946038,0.014404779,0.012751577,-0.0070258672,-0.03234429,-0.0020832065,0.01805444,0.014121634,-0.013430888,0.061902262,0.0024685732,-0.023668565,0.018434623,-0.01878231,0.04778497,0.0016518522,-0.011933279,-0.04305426,0.025284773,-0.035122633,-0.060320757,0.028608253,0.03910601,0.042700816,-0.04728141,-0.051597748,0.000857791,-0.07063582,0.0043293475,-0.015342995,0.053219464,0.020736873,-0.0027740188,0.038416132,-0.08554999,0.26557523,0.049546845,0.058045045,0.030430589,-0.014450577,0.0050366772,-0.02237522,0.010800849,-0.007757381,-0.05043097,0.043088146,-0.012643723,0.020978725,0.03267655,0.023941899,0.07445493,-0.03547387,0.0086247325,-0.018426353,-0.082968555,-0.02574367,-0.006951397,0.03434993,0.04980529,-0.009702769,0.016658014,0.028290424,-0.005272363,-0.027312934,0.020635791,0.02343789,-0.03173499,0.00881961,-0.025618263,-0.038383897,0.029485945,-0.0041363975,-0.021773469,-0.0055621993,0.011180939,-0.026025506,0.04750733,0.015013883,0.010035384,0.009128024,0.02636371,-0.037147027,0.004152904,-0.018456355,-0.042055372,0.009775817,0.024472762,0.046458233,-0.024855504,-0.032743122,-0.02776916,-0.005265402,0.044149205,-0.017124252,0.040133562,0.0023424057,0.012170685,0.00033359125,-0.01022799,-0.005610154,0.022058383,0.046260238,0.0111695705,-0.034764573,-0.027284198,-0.0030634233,-0.03017908,-0.058763374,-0.0026947712,-0.052905496,-0.03139878,-0.04316411,0.016353145,0.025254903,0.0018714188,-0.0099534765,-0.02672281,0.008910873,0.003873849,0.023586025,0.03738973,-0.015048158,-0.023519348,-0.0414247,0.031393148,-0.0043236585,0.032041684,0.0124744,-0.017588,0.016261492],[0.008310764,-0.04350156,0.003876834,-0.026849097,-0.021654619,-0.020168183,-0.010155875,-0.014768713,-0.00682822,0.020749206,0.029635437,-0.013371148,-0.015427428,0.0048889867,-0.02974768,-0.012522744,-0.017283084,0.005687045,-0.0047697807,-0.005043323,0.005971764,0.05541013,-0.08941114,-0.03499225,-0.022898823,0.019911451,0.00952499,0.015917951,0.040717296,0.056138303,-0.01900029,0.026202671,0.016689759,-0.05952442,-0.0014118882,-0.021839341,0.033568904,-0.02002428,-0.021972802,-0.054718103,0.011404126,-0.028457321,0.0053420025,-0.04260048,-0.028836131,0.003760033,0.009081138,-0.002591023,0.032885235,-0.050203852,0.003228991,0.00563678,0.037197955,-0.041095197,0.017394396,0.007725522,-0.026346821,-0.006509875,-0.029041799,0.031425275,0.0137317125,0.04435534,-0.005912979,-0.042470053,-0.0106831165,0.0031186268,0.004453472,0.008556168,0.00455509,-0.0054509933,-0.012618699,0.0011027695,-0.041596517,-0.013569391,-0.02288716,-0.02192012,0.03833273,0.02702639,-0.026232503,0.014927884,0.009519907,0.008803875,0.01755827,0.016349258,-0.02078592,0.0042738095,-0.0025991176,0.056852404,-0.032258626,0.0006567695,0.014517812,0.020898536,-0.0154645145,-0.008928722,0.010922878,0.020354118,-0.020969052,-0.018303294,-0.0108301975,-0.010828317,0.031552445,0.046527363,0.0031285498,0.06317795,-0.037563927,0.029205088,-0.0063394113,0.014312009,-0.007411253,0.008841414,-0.016875267,0.023471681,0.007917561,0.012897112,0.03392061,0.065950125,-0.005790729,0.009005574,-0.022830708,0.0065430934,0.063386574,0.043576084,-0.014556819,0.03843951,0.020320212,-0.021715447,-0.060640197,0.071448565,-0.025507296,0.0061166505,-0.035019554,-0.02461988,-0.0119955605,-0.0065552224,0.03066419,0.016729595,-0.0031550317,0.028379524,-0.0017761441,-0.0221836,0.05960129,-0.007968298,-0.008706247,0.05605023,-0.00034176093,0.03856028,0.013267201,0.03302386,-0.052253112,0.031266794,-0.047380455,0.0063672825,0.0028166322,0.02316468,-0.0063588326,-0.005512065,0.02827781,-0.009577481,-0.015579057,0.021431604,0.0058428263,0.023060206,-0.03695783,0.031875566,-0.026527733,0.029810209,-0.041646663,-0.020313174,-0.04963862,0.011628914,0.0036627457,-0.020832555,-0.023562824,-0.010573897,-0.0018837823,0.05605233,0.017268946,-0.0131735075,-0.0032242744,0.017717818,-0.0139039215,0.029421464,0.013026278,0.040051732,-0.0030904438,0.039716415,0.016887052,-0.020951675,-0.037781946,-0.028122159,-0.012192149,0.008564379,-0.030313604,-0.024296109,0.035279695,-0.008630656,-0.038744263,0.009474757,-0.013616308,-0.046375435,-0.008695525,-0.005388744,-0.01323755,0.041450124,-0.026312241,-0.020170689,0.0018894788,0.045658972,-0.028624637,-0.0032581766,0.03215878,0.05923226,-0.01803808,0.028962681,0.031942822,-0.010137776,-0.00888872,0.030978689,-0.042439267,0.014235069,0.029159356,0.045284368,0.007207588,0.013575942,-0.02730006,0.0073507885,-0.010185306,0.071826175,-0.019132935,0.053674,-0.025584966,0.01586301,0.02548366,0.029396694,0.012953003,0.013795901,0.011544152,0.013800993,0.02097213,0.04536669,0.0044903704,-0.004850115,0.015063601,0.04048501,-0.0076754615,0.026621021,0.000060288385,-0.03375115,-0.019425707,0.028585803,-0.010205325,0.013307008,0.010043323,0.004471565,-0.026094375,-0.0003416367,0.044043314,0.018178722,-0.020063622,-0.025360648,-0.032856733,0.043747663,0.029993704,0.0509002,0.032855153,0.015276451,-0.020958962,0.042534225,-0.026462676,-0.015135807,-0.0024562438,-0.0662048,-0.051637307,-0.021568222,-0.046735946,0.014574003,0.02381804,0.0014877988,0.01538757,-0.020211741,-0.008818387,-0.041560885,-0.010742921,0.026147135,0.02900066,0.054446105,-0.04168566,0.011342402,0.02447771,0.04788779,0.0
+8000
+02918278,-0.033596065,-0.023624666,-0.047166802,-0.006266363,0.028160408,-0.044193257,0.006886483,-0.044862684,-0.05037715,0.0012264783,-0.013265826,-0.020453008,0.0110959755,-0.020521687,-0.008401662,0.02148366,-0.0024537104,0.034583088,0.0018564377,-0.06487852,0.020784501,0.008301845,0.0021528194,-0.03087835,0.034095913,-0.0013162723,0.045073308,-0.03349663,-0.041338105,-0.030746022,0.009770053,-0.016026601,-0.041930307,0.01640001,0.011843031,0.023154773,-0.08245238,0.015234322,-0.009196916,-0.0653789,-0.042402107,-0.038121574,-0.01059154,-0.023299519,-0.009169457,-0.041955207,-0.04775732,-0.04759948,0.0045935656,0.021017792,0.01676738,-0.029017337,0.07189683,0.016590403,0.015086757,0.04003618,-0.040999882,-0.0055650775,0.023330413,0.02757824,-0.021926358,-0.007091223,0.01895898,-0.0387637,-0.023427194,-0.026105676,0.017195778,0.010322867,-0.016665844,-0.015189128,0.020374045,-0.014855254,-0.03377492,-0.01842836,-0.051083434,0.03338893,0.03124511,0.025393346,-0.03782229,0.035945117,0.026193254,-0.045070477,0.018299926,-0.0048436765,-0.024878241,0.058457553,-0.01667615,0.03997961,-0.02697469,0.013254778,-0.028774122,0.020970203,0.047630716,0.044345215,0.04706666,-0.016347611,0.004169311,-0.017152099,0.0130069805,-0.0067263306,-0.04320519,0.020146893,-0.013145704,-0.029207125,-0.03681566,0.041993253,0.012797054,0.017829027,0.015500934,0.041006252,-0.018409254,0.02329035,0.06516537,0.025963144,0.0017052512,-0.02254831,0.04552213,0.0037806418,-0.007822281,-0.037773114,0.016239526,-0.0052956697,0.025969826,0.027905822,-0.021954756,-0.021504302,0.01230418,0.05194456,0.0143317785,-0.05825789,-0.009102536,-0.024216454,0.022970093,-0.043313712,-0.051894862,0.025850954,-0.07169807,0.051703278,0.01990737,0.007241805,-0.041747097,0.020954678,-0.052781496,-0.028646117,0.011615641,-0.015709901,-0.03542031,0.022198062,-0.030154487,0.02690188,0.022401268,0.028084151,-0.022135783,0.010833874,-0.01838206,0.036494818,0.030097838,-0.042180743,-0.043572336,0.01240243,-0.07024403,0.008639731,-0.030450596,-0.017370695,0.0049128383,0.011059562,0.022212515,0.013194851,-0.018143332,0.006107669,0.001600221,0.042929456,-0.012490498,-0.00882697,0.054909647,0.023696061,-0.02945919,0.05313265,-0.03143861,0.04351969,-0.014199074,0.005663208,-0.0035114735,-0.014554107,-0.051163364,0.0067412024,-0.025418153,-0.016419621,-0.009613871,-0.001489953,0.0126575045,-0.0136101,-0.0045564994,-0.006726537,-0.0417124,-0.016617235,0.025892718,-0.033211026,0.024438743,0.014917649,-0.033744227,0.008821388,-0.04840856,0.0023939908,-0.031274162,-0.028254213,-0.0044511617,-0.005093892,0.014852315,0.03640133,-0.03334917,-0.011968598,-0.006160535,0.016851153,-0.0009623748,-0.06548501,-0.029148962,0.023514451,0.019850688,0.0097612385,0.034671467,-0.029797051,0.005082242,0.023890072,0.0011981601,0.00019126644,-0.0031713108,-0.0136615215,0.03995734,0.048164926,-0.06158767,0.0005374561,0.045447033,-0.04134647,0.050542988,-0.0333824,-0.0013459326,-0.048682082,-0.024724795,0.00026465973,-0.046461266,-0.038165275,-0.023309648,-0.02344943,-0.018416313,0.018987577,-0.019471712,-0.008921684,0.05293891,-0.07590767,-0.006565861,0.0119730355,-0.047112007,-0.027695512,-0.03990597,-0.024874441,0.04173704,0.0089337705,0.015350741,0.0011512492,-0.009766022,0.001214569,0.019822031,-0.017469307,-0.0090551805,-0.0037440688,-0.009209926,0.03092546,0.049443234,-0.014432929,0.06818195,-0.051289134,-0.02096582,-0.046984274,-0.012853378,-0.04795339,-0.032207664,0.021202745,-0.038420163,-0.027340233,-0.036404807,0.055950534,0.028917568,0.011914506,-0.06973246,-0.023951098,-0.05590159,-0.0043478217,0.01991569,-0.034313295,0.030466681,-0.036267124,0.004923649,0.025976064,-0.0053814407,0.005977994,0.06435289,0.00436915,-0.0057933875,-0.05012279,0.042834744,0.01922764,-0.012850046,-0.017416785,0.000831004,-0.046433672,0.033078767,-0.058953002,-0.05190818,-0.03825969,0.023707876,0.07335824,-0.012367247,0.07584321,-0.02172874,-0.010365714,-0.052041594,0.051692937,0.03793533,0.0145307155,0.020282423,-0.03554021,0.008671989,0.04073066,0.017502429,0.00035083527,0.004252804,0.028417427,0.0031653068,-0.045240067,0.036771778,0.045974053,-0.03601099,-0.024584353,0.016477691,-0.0024529493,-0.008076058,-0.03902845,0.031079913,-0.03988748,-0.003995043,-0.031540208,-0.005513716,0.014265152,0.035151605,0.018267516,0.021868424,-0.039747138,0.019570109,0.028280608,-0.016891345,-0.011225271,-0.023129785,0.054518737,0.01205685,0.022796582,-0.001848595,-0.010686141,-0.017900059,0.024166271,-0.048883688,0.038289506,-0.0074906168,-0.025647344,0.06768911,-0.06038345,-0.024004439,0.008495767,-0.006794866,-0.00665707,0.01607215,-0.019725267,-0.046735276,0.007838811,-0.0042820685,-0.016347775,-0.009984481,-0.016617564,-0.0012971424,-0.008898603,0.0079951575,-0.026034242,0.034816932,0.041979343,0.004508098,-0.009870102,0.022758085,0.043773744,-0.024931708,0.04053157,-0.026901748,0.07280187,-0.043950662,-0.031388182,-0.04025011,-0.002924257,-0.048513245,-0.006308884,-0.005752678,0.019920798,-0.0118327355,0.026186695,0.018634723,0.0209942,-0.021329595,-0.024984915,0.0113975275,0.02810571,-0.0011037855,0.035720922,0.002400738,-0.012649609,-0.06331036,-0.017216792,-0.007383245,-0.0543815,0.0012043593,-0.021835703,-0.02037139,-0.022322219,-0.023107646,-0.032989167,-0.047801208,-0.0103473505,-0.032307576,-0.002780752,-0.006117779,-0.035765313,0.01788102,0.038250696,-0.0007861891,0.021297166,-0.012627088,0.03086909,0.030830119,0.029188586,0.036819894,-0.0048880363,0.026191514,-0.0047077313,-0.019559834,0.04244674,-0.035046242,0.010021792,-0.0213309,-0.059922814,-0.050509688,0.00029755075,0.018363424,0.018842619,0.0035311063,-0.025000466,0.020056823,-0.042316996,-0.015416904,0.026027024,-0.079734385,-0.04136459,0.045446564,-0.002412605,0.025345422,0.013915929,-0.05557313,-0.02368598,0.0075942804,0.0030128201,-0.013103306,0.032989204,-0.00984397,0.008601339,-0.052846532,0.0035991345,0.026109789,0.014798972,-0.020652471,-0.049125265,-0.0061229574,0.009936965,0.00049445167,0.006804275,-0.021272535,0.019039284,-0.031846195,-0.0045024254,-0.0012598828,0.0072994265,-0.020019442,0.010663918,-0.024496233,0.03844165,-0.029922202,-0.01033724,0.023166334,0.007556695,-0.02787609,0.0135072395,0.05552884,0.02667749,-0.016965147,0.014558903,0.033824164,0.00010362078,-0.035009746,-0.03909343,0.027639084,-0.00056678976,0.0073420764,-0.044947147,0.036201246,-0.004012188,0.040029548,0.0023024208,0.026783658,0.02503217,-0.02712099,-0.009325829,-0.018082919,-0.025165735,0.0018773361,-0.052380435,-0.01828582,-0.04125642,-0.011133768,-0.026953887,0.005883958,0.028547145,-0.0055709146,-0.011252398,-0.024302894,0.00965475,-0.020136645,0.04730018,0.038193017,0.05199177,0.0017032396,0.042311747,0.03689661,0.048996147,0.000022341372,0.01194455,0.003973104,0.008040643,0.013263097,0.021606032,-0.03536666,0.0010204911,0.008315124,0.057791483,-0.038786247,-0.009553435,0.044424266,-0.029305954,-0.0018058585,-0.030378494,0.01537126,-0.026284657,-0.002542249,0.052576672,-0.029339146,0.017058779,0.0065931217,0.010354432,0.031247016,0.024310263,0.041509286,0.013082511,0.051128,0.03108301,-0.012443263,-0.04102261,0.019471915,0.028430738,-0.034119677,0.0009599524,-0.007528393,0.00580696,0.014909203,-0.008175608,-0.042222094,0.04993018,0.0101610385,-0.045153342,-0.0009775738,0.0045741564,0.0008669256,-0.0049725696,0.011730542,-0.021115161,0.019367052,0.027863929,-0.003111433,-0.017892728,0.038311213,-0.0356812,0.059844624,-0.016256379,-0.054584052,-0.0047579156,-0.051238995,-0.026395397,-0.020547777,-0.0019614347,-0.058193296,0.007840598,0.026161527,0.009764257,0.007892885,-0.0011431512,0.008836283,0.034205124,0.02559933,-0.011538641,0.078767374,-0.0035792652,-0.0015547903,0.042682894,-0.027570255,0.06606261,-0.010991862,-0.05254294,-0.05649217,0.029517718,-0.037751216,-0.05715996,0.0026621723,0.041203536,0.0104671065,-0.03663263,-0.0666268,0.021762742,-0.059580248,-0.049821,-0.022579925,0.059293162,0.0024627699,0.03276451,0.0019091447,-0.03369827,0.26216468,0.05679112,0.008649807,-0.013198039,-0.008758296,0.015519652,0.018656183,-0.040176157,0.0051792194,-0.027338458,0.0010419394,-0.01205201,0.012012179,0.051584218,0.03767156,0.07904349,-0.02621062,-0.0062637306,-0.033972748,-0.030300431,-0.03470073,0.0154649895,0.023205511,0.013794178,-0.0025228057,0.026829172,0.058188826,0.025440285,-0.01004527,0.003978533,0.01612964,-0.017859748,0.029865103,-0.010054318,-0.019380074,0.044926655,-0.0015399348,-0.04442829,0.037302386,-0.008379047,-0.04040883,0.03163355,-0.011301899,-0.018617025,0.023959355,0.02190269,-0.03534339,0.044429265,-0.01230679,-0.041364864,0.087415196,0.020543834,0.037189845,-0.04245137,-0.042565174,-0.026250098,-0.009261435,0.008640642,0.030957403,0.07234884,-0.010553314,0.008735593,-0.008887552,0.020969965,-0.018904708,0.04285273,0.03590095,0.04346052,-0.014389936,-0.007817254,0.0052173757,-0.046198595,-0.08677818,0.010000233,-0.016350422,0.015437945,-0.0249817,0.026738204,0.027354551,-0.027585274,0.0047804625,-0.027070807,0.026375353,0.003529777,0.004888959,0.042514864,-0.006695167,0.005116188,-0.043855287,0.048592627,0.012510527,0.07934957,-0.020664027,-0.06349631,0.014411064],[0.020895015,0.0035530438,-0.004875903,0.010208088,-0.039773736,-0.0054121376,0.012198704,0.003270702,0.0016978264,0.04887986,0.009020441,-0.045113586,-0.01076012,0.00015260557,-0.054126423,0.012754964,-0.028993096,0.034133032,-0.021868706,0.03753172,-0.026847623,0.041475568,-0.10087175,-0.009292898,-0.0125433495,0.058701295,0.007036407,0.017500287,0.05792076,0.057574566,-0.012823537,0.028329922,0.017759869,-0.03843079,-0.02991858,-0.04274557,0.024991369,-0.03629545,-0.042413075,-0.059780065,0.036853023,-0.039698403,0.034982212,-0.0222023,-0.038280606,-0.04839174,0.0060815457,-0.061705824,0.00716116,-0.050989375,0.00068984093,-0.019141335,0.008160087,-0.04008074,0.04242867,0.000673165,-0.013018969,-0.013037851,-0.029164992,0.035507724,0.029893883,0.04892767,-0.0115508735,-0.061116908,0.017368734,0.023881692,-0.027991775,-0.0247698,0.00915597,0.0076678265,-0.0070664836,-0.021593783,-0.032070614,-0.06072332,-0.053201538,-0.03712388,0.014826362,0.020125184,-0.016970575,0.04178142,0.009352544,-0.041956164,0.004469729,-0.0026682452,-0.028938344,0.0017224519,0.0193391,0.06162831,-0.00960486,-0.03862815,0.014708455,0.00010000181,-0.046578955,-0.013581514,0.021191612,-0.0025414815,-0.021360883,0.0053680926,-0.043130822,-0.010953691,0.03266419,0.0033933965,-0.016148802,0.039729945,-0.04191181,0.0141999405,-0.025050731,0.0009274506,-0.01700644,-0.006462288,-0.010025845,0.044497605,0.045741983,0.023417573,0.018087476,0.042965125,-0.03511681,0.04960965,-0.0053343186,0.009883299,0.0298438,0.02890542,0.008688242,0.018949732,0.014793536,-0.020958766,-0.028403096,0.06334661,-0.025038935,-0.013724948,-0.011351673,-0.010559264,0.0017337375,-0.017433515,0.034218695,0.004211429,-0.01786036,0.01430272,0.011398237,-0.018321468,0.04936711,0.010089141,-0.026153205,0.06783622,-0.008005508,0.053226992,-0.0016100004,0.024357878,-0.06597634,0.04840168,-0.026274774,-0.02082006,0.0058009843,0.025567543,-0.015542649,-0.008900129,0.019757295,-0.019400818,0.0116579225,0.005152079,-0.012413344,0.03967373,-0.025345689,0.0200995,-0.038451463,0.037294418,-0.06634186,-0.010623056,-0.033454712,0.017038256,0.0033680936,-0.008955131,-0.025594488,0.0009939927,0.010270387,0.0611587,0.0233954,-0.04654101,0.03458078,-0.017457513,-0.016617704,0.024088502,-0.00068217836,0.031870224,-0.0074238204,0.023198703,0.0058921995,0.0069160378,-0.0273925,-0.015874255,-0.0048774816,0.01837219,-0.039714273,-0.029971585,0.03571053,0.0071413247,-0.05998646,-0.013683063,0.008663509,-0.04769142,-0.0018924718,-0.017597545,0.0072389184,0.041545473,-0.043284114,-0.021090873,0.03466839,0.060179435,-0.0039260294,0.0015146732,0.025744645,0.052181903,-0.019005386,0.010478855,0.019513182,-0.0060312315,0.0032309797,0.054158296,-0.06794649,-0.017404586,0.019569695,0.014616266,-0.011480398,0.06909027,0.018645521,-0.005351148,0.0035760908,0.055402234,-0.0081239445,0.047012243,-0.020761397,0.044458132,0.011590751,0.04797109,0.01530135,0.022546573,0.013784385,0.011786369,0.038149852,0.01545678,-0.037010256,0.0028243586,0.01486183,0.04223783,-0.011978104,0.056003727,-0.018390322,-0.002451383,-0.0039815665,0.016715862,0.012368192,0.021747336,0.035121806,0.032115318,-0.009568399,0.028578391,0.027851645,0.062857576,-0.048103005,-0.03584237,-0.046993535,0.06442296,0.017566789,0.04161799,0.03726874,0.018429488,0.0057759476,0.04344288,-0.012787964,-0.023903439,-0.0070598745,-0.051896885,-0.06534152,-0.009289884,-0.048691314,0.016722994,0.03280366,0.014112412,0.012762897,0.008540028,-0.024103582,-0.02954707,-0.013679971,0.06126008,0.0059871795,0.021450346,-0.045263454,0.027796866,0.0057262694,0.007032077,0.010819565,0.002589417,-0.0324521,-0.041006032,0.015181273,-0.0021884523,-0.02966536,0.015180465,-0.029153809,-0.012842826,-0.0056473515,-0.03643365,-0.04058456,0.013676345,-0.022115823,0.02328925,0.0019153529,-0.00464854,0.053023253,0.0043604034,-0.041025884,0.033321533,0.005888136,0.014548526,-0.037054263,0.007164841,0.046404384,0.06586565,-0.0050083827,0.011093619,-0.03242417,0.008399688,-0.010925842,-0.06681523,0.028435715,0.025711317,0.048701607,-0.07073906,0.0098389145,0.027417911,-0.070036426,-0.048178926,-0.03451621,0.009984331,-0.016830446,0.045613747,-0.02173143,-0.053061277,-0.053415723,-0.004878756,0.016536381,-0.007121386,0.015310788,0.053195585,-0.004854425,-0.0019944361,0.0086653875,-0.014819094,-0.013444008,-0.0033216323,0.013107111,0.02277547,0.00010477457,-0.011425423,-0.013585576,0.010636037,-0.030680731,0.0039007268,0.020799631,0.016550152,-0.00025992753,0.057726234,0.0058279387,-0.02827651,-0.020212688,-0.08120901,0.04277173,0.010880663,0.02224875,-0.07026239,0.048428148,0.021747824,-0.029451365,0.014252342,0.010150578,-0.0119202025,0.091205634,-0.03213729,0.01623916,-0.0133772325,-0.017608652,-0.010354722,0.013515017,0.058285292,0.04598064,0.019902488,-0.016306916,-0.024107274,-0.02578444,-0.014616619,-0.012770869,-0.032297585,0.015218296,-0.0052184085,-0.006528696,-0.045679137,0.034241606,0.014068862,0.012164081,-0.0041880626,0.016398955,-0.005890419,0.010435674,0.05409641,0.0023972704,0.018531477,0.0031370826,0.059116695,-0.0133099705,-0.0036815775,-0.009357295,0.036208946,-0.02027125,0.018676067,0.012057785,-0.0131720975,-0.01449412,-0.0025903955,0.050691202,-0.016659865,-0.06119004,0.006094421,0.0077274144,0.020280123,-0.016126007,-0.05094421,-0.028840767,-0.040330928,0.024708515,0.02326296,0.01903264,-0.0419825,0.011456908,-0.01956891,-0.04594908,0.02907979,-0.014957815,-0.025793875,0.005255658,-0.01893018,0.015347854,0.056111984,0.00071595574,-0.002799784,-0.009891716,-0.012304081,0.028787382,0.021495145,-0.05295211,-0.016360462,0.01831835,-0.06432255,-0.017568784,-0.026468297,0.0022254859,-0.012638958,-0.007970459,0.043819554,0.038954876,-0.020779002,-0.029097334,-0.005936729,0.06365078,-0.0053525963,-0.0102440175,0.060921002,0.008678638,-0.05718874,0.024763789,0.01645704,0.011478881,0.004376189,0.008343422,-0.027603542,0.015742967,-0.052125983,0.022543613,-0.04603124,-0.029264407,-0.031419337,-0.031215802,-0.010975126,-0.031891845,-0.010359835,-0.0023458095,-0.05469293,-0.018534048,-0.0148859,-0.051611,0.00797262,0.0043453304,0.014202449,-0.002152298,-0.05279516,0.0015060437,-0.02318078,-0.028291203,0.019756848,0.024045851,0.014171952,0.043080963,-0.017255498,0.0073598535,-0.009946918,0.0054894984,-0.015381431,-0.038718864,-0.02125451,-0.0032191635,0.020710474,-0.003730495,0.042834688,0.011076099,-0.024916427,0.020145021,0.009971116,0.0056538805,-0.02150112,-0.04998815,-0.010518441,0.01955611,-0.03247363,-0.026406711,0.055093557,-0.027523968,0.044469956,0.006386501,-0.0007550098,-0.03594847,-0.022029843,0.0005921759,-0.04767315,-0.038512517,-0.017388068,-0.016809827,0.00069238245,0.0138902515,0.0023429336,0.00075984164,0.05278664,-0.03632793,-0.040706363,-0.008769292,-0.024706526,-0.008032514,-0.050298203,0.0073007573,0.05856801,-0.0071626445,0.020546298,-0.009662447,-0.030306626,0.02428319,0.023807278,-0.008444866,-0.024451237,0.0070551536,-0.014167248,0.026653133,0.021060925,-0.0118999835,0.06785096,-0.038779695,-0.034911945,-0.033333104,-0.01789957,-0.015207526,-0.019506905,0.018496236,-0.014456094,-0.039487805,-0.017760498,0.047429,0.019632922,0.01336889,-0.036294762,-0.005824194,-0.04832102,-0.016697224,0.002255869,0.001572468,0.03235982,-0.00036456226,0.0020365138,0.02341453,-0.03699965,0.0201193,0.06509281,-0.0018829971,0.020836232,-0.073377855,0.014567598,0.031741798,-0.034167618,-0.0040658456,-0.029391361,-0.014768522,0.052602116,-0.031282414,-0.088116966,-0.039346695,0.013533575,0.07763596,-0.0035363056,0.045369722,0.006939958,-0.008405137,-0.06118628,0.04088311,0.015712086,0.0035365922,0.048304543,-0.04743767,-0.017026545,0.033327136,0.015366774,-0.007835447,0.0068254145,0.05473734,0.01677524,-0.03664833,0.042907033,0.06468212,-0.038231127,-0.04698894,0.004334781,0.017331576,-0.021454068,-0.072373234,-0.006175557,-0.007196213,-0.003611419,-0.0071465117,0.008318143,0.022514468,0.045791373,-0.005318963,0.023130992,-0.05412198,0.027596097,0.049168583,-0.018069586,0.01815687,-0.064376235,0.036235142,0.028671913,0.039772198,0.014975719,0.0010889792,-0.04502547,0.03467043,-0.023900094,0.030501753,-0.030339204,-0.013085704,0.038371496,-0.0071309097,-0.024341205,0.018071307,0.020328525,-0.018376278,0.014081259,-0.06407544,-0.012633345,0.001740799,0.00089332927,-0.0016689182,0.0014829716,0.0020564285,-0.02320068,-0.0018404633,-0.005513039,0.010500917,-0.0009590224,0.07543094,-0.02372698,0.020598724,0.017922742,0.038178965,-0.036909487,0.024276093,-0.006384773,0.06982423,-0.0124262925,-0.06528115,-0.0037252742,0.026159182,-0.04684671,0.0011988804,-0.008150183,0.02164626,0.027846128,0.013457535,0.033308342,0.02663268,-0.006968188,-0.015958192,0.043949008,0.0225692,0.0099936165,0.04449358,0.002742439,0.0056178467,-0.034015596,-0.017363718,0.004495243,-0.059658084,0.0027297921,-0.003994563,-0.03361407,-0.009386691,-0.044250287,-0.011643567,-0.041466333,-0.021191984,0.01132334,0.01740046,-0.0008429637,-0.033374447,0.002788442,0.029987495,-0.011291687,0.031594478,0.00826214,0.0267496,0.012616048,-0.026832027,0.0072483704,0.014317018,0.028348947,-0.011748544,-0.027681412,0.04377383,-0.024903638,0.004633395,-0.013360897,-0.06005334,-0.04356005,0.0012985119,0.020034958,0.0239856,-0.011486807,-0.01885407,0.015762901,-0.015811797,-0.010007338,0.009273347,-0.06842776,-0.021684555,0.014911898,0.0053092414,-0.021591406,0.003701999,-0.037953526,-0.024189651,0.010176082,-0.0029910284,0.019477462,0.04843606,-0.022983916,0.01715355,-0.022866277,0.0022006994,0.019154137,-0.0022867692,-0.013956805,-0.03400914,0.011318826,0.018981528,0.019710027,0.008603149,-0.04352989,0.021040423,-0.0364124,-0.005293918,0.037902996,0.032257542,-0.0154130785,0.0012562305,-0.04069651,0.0499053,-0.028354384,-0.008804589,0.026312513,-0.014448924,-0.02770918,0.042068124,0.03565152,0.022971315,0.0020766256,-0.008178555,0.027748715,-0.017508822,-0.013420768,-0.01953001,0.029092697,0.010555392,-0.035971615,-0.03781733,0.029521087,0.03256543,0.032535646,-0.0027863153,0.043085344,-0.010656802,-0.0017749812,-0.02001481,-0.03475643,-0.024294246,-0.034038633,-0.037158556,-0.01868406,-0.020324772,-0.013929438,-0.0013975056,-0.004691292,0.013953749,-0.014626624,-0.0025417206,-0.0222435,0.006284567,-0.0152653875,0.030860394,0.023309289,0.055351328,0.0013469934,0.038960222,0.030591117,0.006155599,-0.009716681,0.016201373,-0.012698187,-0.036716923,0.004779826,0.017933086,-0.009914721,-0.008751168,-0.011941773,0.07882549,-0.02347897,-0.012088144,0.010646016,-0.036578085,-0.014682743,-0.031235557,0.012191034,0.0040262514,-0.020075193,0.039048214,-0.046167027,-0.0017639103,0.025086865,0.032138728,0.02787658,0.013417905,0.050782125,-0.00091261097,0.034882687,0.043629628,0.020044338,-0.020904366,0.050358437,0.0023749482,-0.046956692,0.021838194,0.0026995004,0.014989951,-0.0014632029,-0.010519227,-0.011669233,0.050934628,-0.03122462,-0.031978976,-0.054234885,0.00070409174,-0.010816179,0.042482894,0.004183914,-0.011979296,-0.01063599,0.0025514674,-0.015301272,-0.021469569,0.03083785,-0.050456785,0.08289613,-0.053562343,-0.06773526,0.0023658066,-0.037766065,-0.016833775,-0.0074331467,0.0020385447,-0.07169471,0.03078292,0.027563298,-0.013881536,0.021705966,-0.004268065,-0.014135649,0.019972477,0.042754,-0.027187105,0.06693812,-0.0058233007,-0.018760122,0.0034415114,-0.039064158,0.023756333,-0.0116527565,-0.018997118,-0.02593141,0.01394953,-0.044410545,-0.04477278,0.02605238,0.025243944,0.031146733,-0.073704556,-0.059847172,0.019690216,-0.044518236,-0.013471993,0.00034244917,0.055588737,0.044228554,-0.00062455144,0.021186741,-0.061408516,0.24152988,0.045348514,0.017759498,-0.022578308,-0.0069399127,0.014433464,0.0082569625,-0.04271077,-0.00440705,-0.030301312,0.023280248,-0.013789053,0.03457622,0.022642411,0.045418166,0.07522294,-0.01859497,-0.041109882,-0.022722006,-0.00800824,-0.027966317,0.013113618,0.026473857,0.023575291,-0.025223004,0.02245814,0.04423818,-0.010264478,-0.0033563338,-0.0076704174,-0.0046817455,-0.019250702,0.004350624,-0.028654698,0.009201079,0.0375257,-0.006283007,-0.04701922,0.017025761,0.025164941,-0.034698643,0.024061942,0.014248144,0.027309924,0.0072198682,0.041521586,-0.061005216,0.026043473,0.013742846,-0.040273372,0.06388861,-0.0019863963,0.048219975,-0.03254031,-0.04260756,0.017242933,0.023828225,-0.02613264,-0.016487714,0.029071556,0.00948041,-0.035381734,-0.02852996,0.006010638,-0.012151673,0.028711142,0.042031445,-0.008238871,-0.017510414,-0.017702453,0.011525059,-0.031871937,-0.045967996,-0.010271641,-0.01209444,0.0132893,-0.061885554,0.015275577,0.021173077,-0.0123726195,0.019962652,-0.03558401,0.021387383,0.011422819,0.030890467,0.037328783,0.0027149133,-0.03668511,-0.036359802,0.023586346,0.019838745,0.04731959,-0.009572103,-0.050512955,-0.028544374],[0.016159086,-0.024657456,-0.0032662635,0.015394568,-0.026558138,-0.0019609213,0.0032457022,0.0045756637,-0.0063409433,0.032850094,0.023200937,-0.017835632,-0.018668942,-0.008120005,-0.029843237,-0.029803086,-0.030140104,0.017293,-0.018432278,0.00401607,-0.0015371066,0.040467676,-0.08805174,-0.0074735074,0.012369749,0.04705274,0.003386918,0.0060109217,0.04034687,0.05770685,-0.0024545798,0.013460122,-0.002692374,-0.03399169,-0.02529734,-0.042236075,0.026386736,-0.00097244716,-0.013914307,-0.029475499,0.019642167,-0.041791756,0.025421865,-0.035595093,-0.07569453,-0.03195531,0.0022035872,0.0026246414,0.012076331,-0.043296948,-0.00009652155,-0.025204614,0.03131198,-0.036744803,0.026710441,-0.006347106,-0.024925588,0.010805639,-0.028402789,0.02342284,0.042359855,0.07267949,0.042654607,-0.039480846,-0.0075508934,0.022515431,-0.02396362,-0.010861034,-0.010344162,-0.01509587,-0.00845429,0.016769556,0.009902354,-0.018734988,-0.025627343,-0.026198523,0.029648306,0.024252359,-0.031963963,0.0141033195,-0.01558146,-0.010569333,0.010964839,0.028658157,-0.016208038,0.0031714411,0.016660426,0.04435384,-0.024913104,-0.015849644,0.011196036,0.0010720339,-0.013832025,-0.015113723,0.010999791,-0.00065977976,-0.019528233,-0.015143963,-0.027471403,0.009380481,0.043323323,0.019045511,-0.0017599479,0.05157003,-0.032747827,0.0077653164,-0.029355966,-0.011848872,-0.021125786,0.008080445,-0.037889738,0.024128096,0.016438428,0.008139503,0.028071979,0.031432934,-0.028687058,0.024134142,-0.021671724,0.012394251,0.021448309,0.037767142,-0.020688495,0.036418352,0.016913185,-0.02229396,-0.05238325,0.06255936,-0.017409597,0.01425982,-0.039203394,-0.019402407,0.017600186,-0.0024586546,0.048069023,0.02092735,0.0070601334,0.02054484,0.009360879,-0.0053867786,0.04519353,0.0044087595,-0.026935648,0.07527107,0.025301186,0.026050607,-0.0047576423,0.03669274,-0.03843066,0.043110494,-0.059029266,0.01404464,0.0035101657,0.034468215,-0.04325338,0.002723728,0.025631296,-0.0013213941,0.009616896,0.016621372,-0.013902349,0.004550232,-0.0062712734,0.028325643,-0.044644646,0.009538744,-0.031068282,-0.016465187,-0.042009007,0.000009716107,0.004617638,-0.01937865,-0.01275065,0.0035012946,-0.0045986557,0.054916564,0.016107116,-0.029279567,0.024747128,0.0060827616,-0.011597995,0.0127271395,0.0038258787,0.019613774,0.017184902,0.015289051,-0.006836467,0.014093623,-0.03622336,-0.03059222,0.0057750903,0.03556098,-0.030304123,-0.031566154,0.020504862,0.019880813,-0.05596034,0.004924366,-0.022099197,-0.05659202,-0.016274262,-0.01617595,-0.015515941,0.006773155,-0.021768391,-0.008977467,0.012472112,0.027017124,-0.0051325844,-0.0061685494,0.034245208,0.050768003,-0.006637087,0.004416903,0.026792187,-0.03445722,-0.012798387,0.037812024,-0.025570922,-0.007105214,0.03150416,0.020777864,0.025941035,0.01780656,0.009982919,-0.017702838,0.009662358,0.05843503,-0.017535023,0.06839174,-0.013957224,0.06284456,0.012723945,0.03960656,0.017245779,0.01846275,0.056681015,0.019552112,0.025614824,0.016503185,-0.0017278137,0.004142968,0.036513656,0.037724767,-0.01278393,0.0355486,0.013399827,-0.027907616,-0.0038482684,0.020145664,-0.014764305,-0.012147607,-0.015188139,-0.0014609689,-0.057260808,0.028672067,0.03166174,0.059082434,-0.013358084,-0.028088,-0.04229932,0.057897896,0.016087158,0.04694353,0.0347536,0.026294764,-0.020010743,0.049000613,-0.037023786,-0.00081341073,-0.0275318,-0.0342492,-0.07347225,0.0013317184,-0.06931734,-0.01149517,-0.0026546787,-0.008004612,0.009213063,-0.0010319762,0.010598736,-0.040435296,0.0036750676,0.015416966,0.011450916,0.03274719,-0.03292774,0.02491721,0.012232996,0.029890664,-0.0058367816,-0.0022900617,-0.04710007,-0.06409064,0.032149047,0.05143342,-0.03744335,-0.013678723,-0.029313635,-0.015540677,-0.010660268,-0.018037582,-0.008796934,0.0060522216,-0.03550284,0.013386419,0.011355986,0.005846466,0.047416236,0.0028646593,-0.076029554,0.0178854,0.039906107,0.0073950104,-0.029648783,0.015721466,0.021622656,0.042801064,-0.029438915,-0.012806705,-0.038858358,0.022972254,-0.004889725,-0.044367265,0.03338371,-0.0020113692,0.023424562,-0.09241238,-0.0073398645,-0.003870854,-0.07330614,-0.05012802,-0.036573127,-0.0061084405,0.00035381128,0.004748492,-0.023196511,-0.049388364,-0.0014080137,-0.0074687693,0.026838377,-0.008353194,0.011907214,0.07123135,-0.02082376,0.017013416,0.021704629,-0.020286746,-0.024983902,0.003000524,0.030466298,0.03179631,-0.0319499,0.008324616,-0.010627209,-0.012434784,-0.040952902,0.025055736,0.023159854,0.00424969,0.0008958315,0.017529843,0.019847743,-0.059812546,-0.019731151,-0.0740825,0.05747264,0.04025565,0.024632016,-0.04487337,0.05374092,0.038890522,-0.03916912,-0.0032238038,0.017656079,0.0037859615,0.04937087,0.0028904863,0.018955715,-0.05338146,-0.0010073518,0.008890682,0.009717968,0.03384095,0.0496666,0.04450763,-0.022224199,-0.003037708,-0.023741636,-0.028325934,-0.04187043,-0.023002982,0.012803518,-0.002221931,-0.00012855353,-0.05377368,0.042903583,0.016831141,0.033576865,0.0144509105,0.016345661,-0.013647017,0.009452643,0.05169446,0.04487085,0.03291867,0.005207316,0.030208867,-0.018086385,0.01191709,-0.025680434,0.0089637665,-0.016689241,0.030187603,0.044426113,-0.015191409,-0.005418087,-0.013007026,0.058722224,0.016212437,-0.060349446,0.020237057,-0.022670647,0.021637514,-0.048448075,-0.024556473,-0.0024286583,-0.04798513,0.057162248,0.015939133,0.0148713505,-0.044399634,0.0049239737,-0.055569317,-0.018377833,0.032089755,0.008536909,-0.025384242,0.042142697,-0.04709054,-0.0041684965,0.024169592,0.017887805,-0.012828887,-0.023379186,0.022480227,0.03074493,0.019342199,-0.047488976,-0.055926155,-0.011971049,-0.06475301,-0.0022695293,-0.032246202,0.008754274,-0.03318293,-0.008660291,0.044315096,0.00965258,-0.037559707,0.012214922,-0.0064643854,0.074120715,-0.021400496,-0.024073107,0.033469185,0.017235162,-0.03092432,0.06867837,-0.0033841955,0.012186441,0.001122415,0.014244159,-0.0119858105,-0.012443872,-0.048889473,0.023477307,-0.0035998079,-0.017899929,-0.018926665,-0.012286541,0.01820844,-0.012789366,-0.02083701,0.011633168,-0.027842537,-0.020827953,-0.007672253,-0.029100433,0.008862542,0.02462011,-0.025671456,0.0007350393,-0.03258237,0.011490536,-0.0064069075,-0.02182198,0.007930433,-0.011368337,0.01854844,0.045894176,-0.036351424,-0.014789881,0.013486113,-0.008811694,-0.019851176,-0.058234707,-0.019731894,0.020085875,0.03498513,0.008943399,0.0006836636,-0.023403728,-0.020824917,0.032562483,0.010799996,-0.010413924,-0.009881059,-0.04123961,-0.009292801,0.022147238,-0.02602105,-0.021781147,0.059240907,-0.03479501,0.034979034,-0.01879128,-0.021138052,-0.06081466,-0.041333295,-0.009355242,-0.047418725,-0.05459631,-0.04273141,-0.017068172,0.014238762,0.00609812,-0.00063040183,-0.03708573,0.04291721,-0.08383202,-0.016749,-0.021045119,-0.019635372,-0.034194607,-0.043710187,-0.0010645939,0.058002755,0.015550415,0.029841924,-0.02957099,0.013372657,0.010333162,0.009537178,-0.018995637,-0.029630676,-0.004521123,-0.041410953,0.030300984,0.050124068,-0.027826669,0.050938644,-0.050131444,-0.0022777645,-0.036262643,0.0037146898,-0.05224046,-0.02551657,0.019900363,-0.024151852,-0.037941746,0.0015808415,0.04122927,0.0238337,0.0071103126,-0.057097808,-0.009853593,-0.028962966,-0.004072257,0.0050066793,-0.010644213,0.035945322,-0.01935638,-0.0014812471,0.033642344,-0.0137495,0.040195193,0.06873803,-0.0057835323,-0.0062263445,-0.050821863,0.013779255,0.020583265,-0.044011083,-0.0048793987,-0.0041367933,-0.03828133,0.02232864,-0.07212478,-0.044505,-0.028725628,0.033380978,0.070667766,0.0013931573,0.023750545,-0.01636156,-0.019385299,-0.07045675,0.045243442,0.020381587,-0.0022120383,0.050536208,-0.028875206,0.020374468,0.022237256,0.01076915,0.012635484,0.0020113091,0.033690114,0.021433689,-0.041815963,0.058621604,0.06634427,-0.022461604,-0.036011208,0.041903827,0.024374198,-0.029426921,-0.037323955,0.03598217,-0.019201491,-0.015031429,0.007233001,-0.007724694,0.022801189,0.030110402,0.0070248144,0.024728278,-0.050867062,0.017435122,0.025672305,-0.03675455,0.024669584,-0.043981075,0.03013418,0.035324432,0.04955746,0.036782525,0.025121719,-0.036803417,0.019021977,-0.028716147,0.041195646,-0.01597807,-0.026780803,0.059553187,-0.021738777,-0.020292243,0.024247192,0.020197602,-0.002400822,-0.021673193,-0.04421572,-0.024427386,0.013675106,-0.019641627,-0.013213631,-0.0065775975,-0.01721402,-0.03975546,-0.013238103,-0.025674198,0.0012853248,-0.0040934277,0.038384877,0.02296757,-0.024047397,0.01675712,0.046435162,-0.044596538,0.037503667,-0.008220763,0.05239055,-0.048818696,-0.037293836,-0.034331508,0.026872054,-0.05459127,-0.024922164,-0.0070640496,0.0173421,0.014977908,0.017765492,0.012669025,0.019628799,-0.031051729,0.0047962293,0.043044858,0.011273142,0.024247495,0.02327954,-0.0037317553,-0.0005476019,-0.048663463,0.010886776,-0.00503387,-0.06606142,-0.0053595765,-0.004408189,-0.03888251,-0.029902816,-0.02691408,-0.012954381,-0.029413706,-0.01870276,-0.041531075,0.0004738914,-0.014760902,-0.046458244,0.016761735,0.06249618,-0.012346335,0.021155361,-0.009984064,0.008453292,0.023485335,-0.000053682234,0.031828396,-0.006816916,0.046839,-0.02648112,-0.0136175975,0.018622957,-0.032423988,-0.015319709,-0.042899992,-0.039523702,-0.04993117,-0.012395692,0.020284161,0.039976504,0.010172977,-0.0333103,0.017667424,-0.03620101,0.0028335536,0.056505904,-0.06354734,-0.04858912,0.018705651,0.0045071067,0.027408494,0.019436987,-0.05756575,-0.0440055,0.0041058273,0.0035345752,-0.013199082,0.014063964,-0.01932841,0.014932016,-0.023980346,0.0131847,0.0240151,0.0077561745,0.013416681,-0.059983775,0.024970291,0.023723472,0.015986325,0.013047816,-0.03563557,0.03185716,-0.029992854,-0.0017481496,-0.0037870728,0.0079622185,-0.0171564,0.043297775,-0.031085698,0.057511292,0.0060638622,0.021698616,0.010094415,-0.009275032,-0.016309617,0.038906783,0.014605979,0.029821781,0.008956225,-0.00860261,0.041698817,0.00048084508,-0.035871435,-0.014244496,0.044890113,0.01035323,-0.021432726,-0.035188682,0.05156047,0.030061206,0.028321235,0.029192487,0.017604293,-0.0075997617,-0.009461939,-0.027851695,0.006124778,-0.005769022,0.0066070245,-0.043137103,0.0028050526,-0.03651206,-0.0053903996,-0.018408542,-0.0013708964,0.01484387,-0.011901671,-0.024965713,-0.019859275,0.023476286,-0.034557562,0.018188344,-0.0030951537,0.044303376,0.025296686,0.038431164,0.014894615,0.03163676,0.015196592,0.02807254,-0.0022888815,-0.027849438,-0.015979163,0.019479644,-0.018582638,-0.008170364,-0.020080402,0.052335806,-0.044017494,-0.011455076,0.0321247,-0.06254911,-0.012665583,-0.02078182,0.0053933966,-0.021145556,-0.022992492,0.055181734,-0.0028454256,0.008342147,0.013413346,0.05757475,0.011779932,0.010751266,0.060597323,-0.0025644759,0.027377898,0.044171844,-0.00022592917,-0.030969782,0.032653082,0.015067836,-0.039733957,0.012846224,-0.02981444,0.011228049,0.011453867,-0.01076987,-0.015944138,0.053303003,-0.0028289019,-0.051214803,-0.041095223,0.023216095,-0.00020969026,0.041420095,0.02520036,0.0049530054,0.008104811,0.023
+8000
+57329,0.005603157,-0.022171857,0.028217064,-0.062189404,0.058144785,-0.048212346,-0.015955247,-0.030463148,-0.041100916,-0.031834837,-0.009933559,0.008042221,-0.072056,0.01661323,0.028655369,0.0047093295,0.0021441118,-0.00034617845,0.0005641806,0.046287965,0.04912026,-0.039653767,0.09431579,0.0124992635,0.0050031673,0.045110356,-0.059682384,0.027973732,-0.01844549,-0.057786908,-0.035493195,-0.007467043,-0.03344961,-0.052788306,-0.0033941763,0.03875387,0.045027856,-0.034911986,-0.048163667,0.016523097,-0.04989081,-0.03062593,-0.025349416,0.082568415,0.019843528,0.002172296,-0.0056829657,-0.057663195,0.243672,0.051341068,-0.003475546,-0.0007742368,-0.0029808478,0.018186966,0.033365205,-0.052065443,0.0073418566,-0.0011072203,-0.0048206816,-0.0044154716,0.013016215,0.041343607,0.044210773,0.044072155,-0.006435408,-0.01798728,-0.022294648,-0.034704734,-0.027735675,0.0076126275,0.02777599,0.012265801,-0.024719637,-0.002693732,0.067343235,-0.007323157,-0.0062180907,-0.008090216,-0.00035064947,-0.049103133,0.028602257,-0.021187477,-0.046415146,0.0482211,0.022618588,-0.015356403,0.022431182,0.0011820833,-0.033164583,0.014517712,0.035840645,-0.0072382735,0.045030095,0.033728875,-0.05237696,0.0021487332,-0.014311713,-0.018672422,0.07373475,0.002723599,0.0542228,-0.03750869,-0.036317974,-0.007356325,0.009844861,-0.018846588,-0.012088538,0.024186453,0.002030429,-0.03219555,0.0028616036,-0.0042028893,-0.04277802,0.034246847,0.0033369972,0.036737073,-0.019591913,-0.011570663,0.015713964,-0.031819507,-0.05621931,-0.00611817,-0.013000665,0.0011517612,-0.027583942,0.0218663,0.030349368,-0.024299463,0.009734291,-0.019631002,0.010930761,-0.009806819,0.0035728542,0.05864686,0.01249755,0.01279337,-0.061944664,0.050332915,0.018902427,0.05907918,-0.021144263,-0.047578506,-0.017626887],[-0.0037553317,-0.024787217,-0.0139952265,0.021310912,-0.038759764,0.006520314,0.0014916526,0.031725876,0.028231826,0.052709945,0.03133112,-0.030944915,-0.0056508905,-0.022327956,-0.0077944137,-0.008543973,-0.017781867,0.005633581,-0.060975403,-0.0038284038,0.0012924362,0.036791798,-0.0910945,-0.009953194,0.016083797,0.06576205,-0.025801154,0.012761478,0.055236094,0.059571378,0.002724693,-0.0022915406,0.012696765,-0.009379382,-0.032798886,-0.023475174,0.02934124,-0.020670112,-0.014735248,-0.049053926,0.017012453,-0.04030977,0.028636891,-0.0329316,-0.07378706,-0.054494046,-0.009613989,-0.036581717,-0.0032675306,-0.06789173,-0.0010990686,-0.046824176,0.02734673,-0.0082369475,0.049913723,-0.018710354,-0.02082288,0.0028516469,-0.0035047308,0.052889384,0.03931285,0.057083175,0.053242467,-0.052727964,-0.046438944,0.045268174,-0.00062261475,0.014080827,0.011443782,0.0070962314,-0.0028914534,-0.012791584,-0.011247552,-0.024589272,-0.033361755,-0.024573792,0.021868017,0.023553561,-0.037482962,0.061252214,-0.026985899,0.025451396,0.059868574,0.033964008,-0.015667329,0.011313503,0.0137287425,0.051081754,-0.007033497,-0.032050263,0.014973384,-0.0076428843,-0.021244466,0.0062895766,0.020818992,0.0025701663,-0.015135768,-0.022841468,-0.06029204,-0.015213113,0.03891511,0.0027286327,-0.029073875,0.035757717,-0.041233532,-0.02775479,-0.01825832,-0.03671338,-0.012977067,0.0051238732,-0.017713912,0.010302208,0.029478125,0.049760155,0.00036087408,0.0497653,-0.020104423,0.023797095,-0.011341381,0.0123023875,0.0003721375,0.014685794,-0.0058323545,0.017796261,-0.021441957,0.0071844966,-0.035736322,0.060812768,-0.029549027,-0.010091808,-0.037032295,-0.016109662,0.003708717,0.0023455366,0.058319706,-0.0007609829,0.011572658,0.04404496,0.011070189,-0.04026717,0.06317935,0.038033355,-0.0329932,0.07443294,0.00677127,0.063443065,0.008721643,0.053408675,-0.04636944,0.028371911,-0.055998135,0.02899131,0.011186662,0.076352745,-0.038917407,0.011054598,0.0071094153,-0.0003743012,-0.013978582,-0.011766536,-0.019018004,0.026929455,0.0021540332,-0.0037859497,-0.059785675,0.028166363,-0.039540984,-0.017450904,-0.025885975,-0.025003016,0.028487798,-0.012548591,-0.035016067,-0.0014874296,0.0016835396,0.06205522,0.009538545,-0.030996205,0.03316404,-0.021018943,-0.021213705,-0.000031425487,-0.007289118,0.01574202,0.015363829,0.01348067,-0.0014484256,0.0050608604,-0.031975254,-0.024275552,0.012478988,0.03209567,-0.030948387,0.017659431,0.0057824673,0.008709486,-0.044222217,0.0033801184,-0.037414145,-0.04491439,0.011036869,0.004667895,-0.01989077,0.03186452,0.009901349,-0.01473569,0.014447754,0.009792367,-0.0071996865,-0.0017953464,0.014350795,0.06447281,-0.0113801,0.009991416,0.024036948,-0.019030625,-0.029999211,0.04423264,-0.053474408,-0.008226198,0.037111994,0.027599465,0.039316583,0.028724847,-0.010210409,-0.01144677,0.015746111,0.06597952,0.007318942,0.056928705,0.0015904424,0.058521308,-0.02192071,0.040705487,0.032185845,-0.004252874,0.02231859,0.0400583,0.024339976,-0.0025257089,-0.025369767,-0.0025575066,0.03227505,0.02756465,0.022914438,0.043509148,-0.01024536,-0.016671514,-0.007563912,0.008460085,-0.004307807,0.012436167,0.03511814,-0.0022402955,-0.041685898,0.008319239,0.029836431,0.042414557,-0.04637739,-0.039243374,-0.013555881,0.031662043,0.008297655,0.030082505,0.04802828,0.027269276,0.0021476918,0.028505327,-0.021719402,-0.024633093,-0.02528045,-0.00717591,-0.06970961,-0.0024362546,-0.050163243,-0.025598897,0.019810481,-0.029164596,0.011841838,0.015388092,-0.012573945,-0.020178204,-0.01975748,0.037135027,-0.028973013,0.0030080325,-0.0023083696,0.0009971522,0.015782002,-0.009069979,-0.028686311,0.024530992,-0.027052801,-0.02020864,0.03842147,0.008993332,-0.012401086,-0.0013840481,0.0034294866,-0.013463645,-0.019419985,-0.019783877,0.0041124374,0.006432014,-0.014536202,-0.0019710353,-0.010578772,-0.027238032,0.0858692,-0.002206374,-0.06765641,0.016628617,0.05727389,0.028046247,-0.05290707,0.041633792,0.014475065,0.061601665,-0.040014006,-0.011212792,-0.040385462,0.032710027,-0.026775459,-0.03780591,0.042008664,0.016841628,0.012388389,-0.0705727,0.026425652,-0.025599482,-0.08149453,-0.031102672,-0.035343695,0.027346643,0.011382811,0.032985926,-0.009985339,-0.061478198,-0.027990313,-0.012220538,0.028712265,-0.033386618,0.025100473,0.057786863,-0.0027838645,0.010696703,0.011427382,-0.014235318,-0.007777604,0.020010633,0.015787581,0.05949958,-0.0048897346,0.01119967,-0.01098183,0.00000933098,-0.026330268,0.027192947,0.016796773,0.009088686,-0.00033920477,0.019760193,-0.000017123151,-0.04306215,-0.012280496,-0.08257347,0.029226273,0.019337308,0.028735274,-0.052613523,0.028196145,0.017335737,-0.046693027,0.03242222,0.0056948457,-0.020107726,0.06027741,-0.0062879203,0.04081957,-0.026602216,-0.008145894,0.0030990941,0.0015948599,0.039639518,0.07521139,0.049037125,-0.04554742,-0.032003343,0.016450122,-0.02749046,-0.027014641,-0.020423956,0.026895477,0.011750157,-0.015612938,-0.033981543,0.03627316,0.013851183,0.05319137,-0.0127771655,0.015221569,-0.0047649317,0.030343251,0.04687816,-0.007966296,0.032662235,0.021104237,0.03961374,-0.035967022,-0.008703869,-0.045346893,0.036961198,-0.015296377,0.02553833,-0.017386524,0.006982739,-0.010453534,0.00047954012,0.052285727,-0.005856272,-0.085561395,0.00045641026,0.0171385,0.017572476,-0.0070216455,-0.036681164,0.004867361,-0.03097932,0.050028536,0.03223443,0.0036501996,-0.036401287,0.038664866,-0.005078328,-0.010120354,0.0069825044,0.0032755835,-0.023640353,0.037255857,-0.017848449,-0.017931651,0.01413302,-0.012962241,-0.013646096,-0.008297751,0.0058129043,0.044150643,0.031744678,-0.048495337,-0.040178973,0.002937435,-0.062072027,-0.023024345,-0.030406998,0.0124944,-0.045852184,-0.022844307,0.010097212,0.019900816,-0.000107335654,0.010800979,-0.0071406285,0.051179726,-0.02370002,-0.010486849,0.027136588,-0.033049926,-0.050116573,0.060116246,0.0048832656,-0.0011373516,0.028459953,0.015149975,-0.009449033,-0.0020322334,-0.03687293,0.03363063,-0.0026256668,-0.0337558,0.01748524,-0.02236367,0.0115732495,-0.016266555,-0.013199581,-0.0030164164,-0.04667051,-0.0068897544,-0.008650661,0.0025803123,0.008051696,0.013972303,0.00513224,-0.010831522,-0.04296894,-0.013776334,0.005756547,-0.0096018985,0.026293213,-0.02459092,0.018089257,0.017596433,-0.012101476,-0.045994367,0.008145101,-0.019993298,-0.027835654,-0.039557565,0.018792925,-0.014595948,0.002805736,0.005569346,0.0074333637,-0.012643879,-0.002754764,0.024530424,0.022218183,0.004588294,-0.0033875383,-0.04905288,0.032410134,0.02002748,-0.03650613,-0.022510272,0.062737055,-0.0215341,0.03682086,0.041202206,-0.0071281414,-0.07345131,-0.018710691,-0.0030293728,-0.053211313,-0.045114107,-0.024100618,-0.0175782,0.03538916,0.025551805,-0.007977926,0.00036426136,0.015889075,-0.05967329,0.0067706024,-0.022138935,-0.04244063,-0.022943066,-0.030035157,0.0031612413,0.07777177,-0.009339296,0.025050959,-0.036894392,-0.026239986,0.027675286,-0.0022990922,-0.023343764,-0.033200156,0.0048762853,-0.021471959,0.019348528,0.029965559,0.007857926,0.033068337,-0.036158122,-0.021271938,-0.031058075,-0.005757127,-0.034830097,-0.013651761,0.04162093,-0.01347445,-0.051490754,0.006604514,0.05028971,0.015380613,0.030386731,-0.04520507,-0.025499618,-0.04700488,-0.024792127,0.004481861,0.0017730559,0.032220803,-0.010959638,0.027831098,0.044706464,-0.027959768,0.011603286,0.07074552,-0.02578453,0.019799894,-0.060630802,0.028510332,0.03320338,-0.030080067,0.01534611,-0.0267502,0.0041966517,0.045016762,-0.05555053,-0.055957526,-0.032503523,0.014539968,0.07248341,-0.03289072,0.016612181,-0.008490867,-0.015407064,-0.05697226,0.026236698,0.030293563,-0.021064177,0.06592665,-0.018623568,-0.024709223,0.045893043,-0.0013580982,-0.0067677223,-0.001233336,0.042954292,0.01261773,-0.053184766,0.05426706,0.051895447,-0.044723354,-0.03601177,0.0003316057,0.035438612,-0.06109717,-0.048545014,-0.009055288,-0.0077746958,0.0025690908,-0.00004448094,0.01579732,-0.03155155,0.038379878,-0.0118641965,0.020861154,-0.014362055,0.031069508,0.037861973,-0.040267907,0.02910345,-0.020236839,0.013791958,0.027714971,0.02521694,0.020120649,0.017044473,-0.022635365,-0.0008864725,-0.018339464,0.036807638,-0.029121729,-0.03167056,0.06145389,-0.0053261938,-0.03239109,-0.008479119,0.0520389,-0.018542355,0.001174091,-0.058538783,-0.0058296113,0.013307589,-0.011168264,0.0061660376,-0.009153816,-0.010961068,-0.05204497,-0.028488217,-0.030611837,-0.0041240808,-0.030746514,0.025030047,-0.0050365473,0.0065065706,-0.0029652196,0.04753309,-0.07335828,0.03449985,0.016630778,0.04727909,-0.031972256,-0.04489232,-0.0009158252,0.024832994,-0.0350397,-0.012064369,-0.03992997,0.010413119,0.036310505,0.0041628103,0.0029026412,0.02708535,-0.035178587,0.03602482,0.034126434,0.009903822,0.015560546,0.037861574,0.008347247,-0.03128753,-0.0049049337,-0.021124588,-0.0038934054,-0.05688697,0.031568218,0.018321075,-0.047120802,-0.009881263,-0.04293098,-0.004440044,-0.036965616,-0.020376364,-0.02616313,0.012810744,-0.019719152,-0.01713568,0.005922134,0.016641062,-0.006977393,-0.0036967737,-0.0073124124,0.004974181,0.0036699516,-0.024846556,0.046584994,0.0008122435,0.06419185,-0.01947524,-0.0069783456,-0.00930263,-0.013139472,0.0012083914,-0.03859638,-0.04148452,-0.020158585,-0.0039847842,0.0070727267,0.029606123,0.008427738,-0.033584222,0.012615758,-0.041597582,0.013664191,0.012710568,-0.05319032,-0.023584705,0.037562173,0.01334542,-0.012837583,0.0057420866,-0.06885003,-0.040012565,0.0059439368,-0.023015896,-0.015817825,-0.0006311801,-0.015399437,0.011730075,-0.033616904,-0.0014402559,0.014971327,0.005559505,-0.015203378,-0.043258388,0.052587416,0.027130201,0.011119085,-0.012564843,-0.0252233,-0.006472921,-0.04626224,-0.028992537,0.003165134,0.02518166,-0.006861123,0.013546242,-0.015957158,0.064829946,-0.0033921793,0.028082397,-0.00039982336,-0.0028102514,-0.014707654,0.048765633,0.0047723427,0.033933364,0.031160653,-0.010326873,0.026317803,-0.045755867,-0.01788053,-0.01519804,0.052880876,-0.0017483407,-0.022130376,-0.041810885,0.042483475,0.022287767,-0.0023591,0.01562826,0.03363005,-0.03691142,-0.005404031,-0.017604217,-0.0414504,-0.021061048,-0.028440928,-0.04019926,0.02153737,0.00596292,-0.029990198,-0.028829955,-0.018355297,0.04551443,-0.0019181693,0.0061613396,-0.016080441,0.008548584,-0.0050392696,0.0380004,-0.0019652438,0.01569413,0.03951945,0.033573985,0.040284,0.006580116,0.02503782,-0.005335069,-0.022595689,-0.012025488,0.008340611,0.013637406,-0.039705154,-0.024164455,-0.06276176,0.031980142,-0.017970221,-0.01303278,0.0046628155,-0.05510614,0.0028789141,-0.041529004,0.018031664,-0.008217221,0.0071656653,0.013026965,-0.024376726,0.012589756,0.008518453,0.021819094,0.008430042,0.01977232,0.055824116,-0.0048794327,0.009876927,0.026956532,-0.0168989,0.008887474,0.021300694,-0.0022860167,-0.07041945,0.0071507706,-0.05564918,-0.006237234,-0.006853556,-0.0007853117,-0.011176529,0.04048345,-0.016754875,-0.055139445,-0.025731955,-0.003032631,-0.029616382,0.038687058,0.024851223,0.03706589,-0.0045150877,0.01249177,-0.010969048,-0.011137992,0.034665417,-0.044366542,0.047661413,-0.047118668,-0.043118253,-0.0042400258,-0.03933661,-0.0024706824,-0.029727707,0.014014552,-0.057946287,0.024943965,0.010448709,-0.033177994,0.013321626,-0.019443823,0.01020445,0.022981191,0.0753344,-0.0056351107,0.080524944,0.009301931,0.007815282,0.031183047,-0.05112846,0.045593847,-0.026126226,-0.019066738,-0.03545154,-0.025047122,-0.02662293,-0.036295187,0.025088899,0.036488358,0.032543663,-0.06169873,-0.0338867,-0.0010696982,-0.044774562,0.007368746,0.007256347,0.073085755,0.06065023,-0.0034106125,0.015745101,-0.06082356,0.25537512,0.048475623,0.0044406056,-0.0047157444,-0.008784646,0.0008586509,0.007830485,-0.018290501,-0.032351516,-0.018900115,0.016271465,0.012308194,0.0019323748,0.04301722,0.0297242,0.04507452,-0.0009129619,-0.010385982,0.0076069236,-0.049421325,-0.03152602,0.0051138033,0.020781992,0.050338544,-0.03267553,-0.0042781904,0.035799716,0.004912769,-0.020933092,0.0043382724,-0.022954274,-0.060473654,0.027792307,-0.030451773,-0.014199645,0.04098021,-0.0016441484,-0.022499083,0.004595371,0.01828424,-0.04952453,0.0048051653,0.010772589,0.009287904,0.0351994,0.04198312,-0.04305819,-0.024388077,0.016723733,-0.021703314,0.042691857,-0.0042689806,0.039934225,-0.038598448,-0.02663716,0.008239045,0.010854813,0.000431238,-0.028826665,0.007678682,0.023439517,-0.018041292,-0.015547106,-0.014691261,-0.0048993803,0.039577197,0.025603255,0.02980039,-0.016268868,-0.025316002,0.031124074,-0.0039748475,-0.016363738,-0.007087435,0.0063785203,-0.013739021,-0.024579052,0.018434461,0.04195858,0.00012893658,0.031212239,-0.020949796,0.002170745,0.002234726,0.014940803,0.06132559,0.0027416586,0.0058640563,-0.0403045,0.034839597,0.007718096,0.043868337,-0.0045902734,-0.033227865,-0.028535001],[0.016949385,-0.008615424,0.020622017,0.018291568,0.025659107,-0.03129818,0.02245413,-0.006368509,-0.017259564,0.045676272,0.06480046,-0.026031865,0.02232816,-0.008684765,-0.030287841,-0.0020947387,-0.011458392,-0.013731597,-0.05318383,0.0067025954,0.004193604,0.039585322,-0.104994,0.038256094,-0.0037104804,0.06436434,-0.03414776,-0.002103338,0.035646137,0.043872584,-0.008416903,-0.012064522,0.043290846,-0.03620959,-0.048690274,-0.02635703,0.052213557,-0.01510816,-0.0019763235,-0.041277643,0.046338137,-0.01790057,0.035353653,-0.038190577,-0.057889022,-0.022074273,-0.010826746,-0.067712046,0.013529939,-0.065534085,0.03230197,-0.026885606,0.013611894,-0.009895314,0.039145328,-0.017543443,-0.0028295538,0.008934332,-0.049683847,0.028458899,0.01967522,0.0491055,-0.0010848225,-0.0442892,-0.04139664,0.039355125,-0.004610181,-0.005388765,-0.003582056,0.0022825287,-0.0106531335,-0.0157532,-0.0058715316,-0.036795016,-0.03050672,-0.00014398659,0.028704153,0.032848764,-0.024321003,0.044279665,0.014026165,0.03483655,0.012672674,0.033933457,-0.021115355,0.009832767,0.02390843,0.051852383,0.008447714,-0.023987388,0.011681729,-0.00013508149,-0.0160701,-0.014119042,0.03306952,-0.002207621,-0.006390432,0.0047415704,-0.05318269,-0.019093508,0.03265276,0.029826783,-0.0040124673,0.058233555,-0.03871713,-0.013474378,0.01694308,0.007417249,-0.008476787,-0.011986104,0.00486401,0.04141678,0.01911419,0.018706797,-0.0274786,0.018591668,-0.0055727786,0.030704759,-0.025428591,0.020167202,0.008086518,0.0466477,-0.007464165,0.0229763,0.010778291,-0.0418547,-0.036506515,0.056801368,-0.0049911886,-0.021885864,-0.013156865,-0.011660282,0.026098074,-0.019034483,0.04566843,-0.036301695,0.011399064,0.00355288,0.026981248,-0.02713411,0.054613665,0.011354293,-0.031079995,0.05911556,-0.017189758,0.048321504,-0.009209438,0.032038506,-0.080216214,0.04851062,-0.03062112,-0.010414408,0.017237684,0.023388127,-0.03571962,0.054865643,-0.0031609868,-0.0077867643,0.03189889,0.007887579,-0.026892817,0.023711478,0.01945066,0.03767463,-0.06704085,0.022929858,-0.037356425,-0.0050968006,-0.049294017,-0.019212887,0.01713197,0.0019557232,-0.00070889265,0.016270768,0.0068671554,0.04888625,0.020654991,-0.034224544,0.027970003,0.0016109328,0.010848893,0.014105751,0.023174567,0.048109565,-0.021657173,0.0054442384,-0.0040142327,-0.026349977,-0.021031938,-0.061157048,-0.0106239,0.032967128,-0.037422303,-0.008169839,0.002352551,0.0234314,-0.058199108,-0.03717954,-0.009678879,-0.040250853,0.003059601,0.024034237,-0.015330024,0.050721668,-0.014911346,-0.033583056,0.0035166238,0.038631525,-0.005408185,-0.015192815,-0.012368119,0.053381514,-0.0276184,-0.009997596,0.020115295,-0.016921818,-0.022009514,0.04730579,-0.052265797,0.0052184598,0.020062264,0.030698443,0.032183856,0.03870005,-0.0053131324,-0.01236608,-0.0016550698,0.063787505,-0.019894347,0.01461997,-0.0035644309,0.034735855,0.0015450978,0.043537546,0.035039645,-0.004652478,0.046153232,0.057916224,0.007926813,0.0114124855,0.02042395,-0.020488642,0.020684486,0.009152204,-0.0056202644,0.06394775,0.013734217,-0.0044154017,-0.0014276024,0.02328573,0.014175806,0.03593831,0.0119596245,0.016538834,-0.03989769,0.013961812,0.030992065,0.06324754,-0.035032626,-0.044170734,-0.023894483,0.03554073,0.049002115,0.0378663,0.031059384,0.03384244,0.002768665,0.054845106,-0.028252484,-0.013356301,-0.031799085,-0.05307505,-0.06486109,0.0044342745,-0.02878283,0.015994046,0.0016064974,0.0047350083,-0.0042446465,0.019513763,-0.019839684,-0.032273915,0.0043040984,0.010576657,-0.0240332,0.037596326,-0.017761469,-0.006358688,0.00606809,0.0062097986,-0.023819387,0.013278337,-0.011612097,-0.016387882,0.036152054,0.013716605,-0.04082929,-0.0014050158,-0.03309688,-0.04965279,-0.015524136,-0.0027934404,-0.03065621,0.010008684,-0.01613202,0.028592508,0.017420037,-0.0019382427,0.061451916,0.01572555,-0.05424334,0.039062973,0.014917568,0.019357385,-0.04322625,-0.0059415437,0.018752197,0.020819625,-0.051799558,0.003194293,-0.011874527,0.012806854,-0.047495887,-0.0322599,0.001629204,0.016539577,0.039270073,-0.08364312,0.0068949685,0.010762879,-0.051111635,-0.03928481,-0.053688888,0.039465807,0.007524005,0.013202222,-0.014349664,-0.0410711,-0.05140547,-0.0089409575,0.051560853,-0.014329025,0.01716972,0.03521309,0.0042222575,0.02419006,0.003188988,0.0188242,-0.0123644285,-0.0037715998,0.009930869,0.048467234,-0.01917854,0.0050180894,-0.012156806,-0.01633767,-0.018146964,-0.0136350775,0.040899582,0.0078425035,0.0071727517,0.002938624,0.02548314,-0.07325043,-0.037525214,-0.0583229,0.024430325,0.038866825,0.039596293,-0.07021568,0.021428533,0.007222097,-0.06652516,0.019847037,0.01243777,0.0021210653,0.051004738,0.0036878984,0.051359043,0.00024543528,0.047281638,0.0025543254,0.001565911,0.030839331,0.05395339,0.034486238,-0.05482592,-0.03325659,-0.008929864,-0.021574004,-0.04457908,-0.0132092945,0.03229748,-0.011511046,-0.032044224,-0.043486405,0.03204979,-0.016512033,0.038592238,0.014227168,0.04133652,-0.0024993743,-0.000094227245,0.051309347,-0.011376828,-0.00793344,-0.038069587,0.03324891,-0.0082915565,0.0056111393,-0.03975126,0.00016919569,-0.012062451,0.03369306,-0.00051260635,-0.00031779526,-0.030518418,0.015746802,0.019502068,0.023826672,-0.04276791,-0.011032022,-0.0077606444,-0.014675299,0.022244163,-0.012015825,0.03970699,-0.03375945,0.07051018,0.025333492,0.018226128,-0.0022280293,0.019995043,-0.029118268,-0.04684228,0.008888393,0.001958319,-0.032421883,0.041241772,-0.031956997,0.03205897,0.016300557,-0.009264977,0.00075464766,-0.013150707,0.020653931,0.03817442,0.029352525,-0.050374508,-0.003264505,0.03610987,-0.04593548,0.009708151,-0.031540595,0.0025729365,-0.015536189,-0.022178687,0.02317357,0.00016394976,-0.022986425,0.002813673,-0.031375702,0.03355422,-0.035907283,-0.027657049,0.04210046,-0.0039612106,-0.049940426,0.032901507,0.0388926,0.016593713,0.02821656,0.026127174,-0.028576737,0.013885541,-0.009129479,0.00445428,-0.024511922,-0.027163489,0.004293096,-0.0221992,-0.00068418344,-0.0024736184,-0.027191157,-0.015479101,-0.059540957,-0.022161612,0.019113412,-0.013346519,-0.032655645,0.012793696,0.02016742,-0.0118893115,-0.039537244,0.00073089893,0.00832259,-0.021377118,0.023008432,-0.0027222228,0.025447626,0.041353896,-0.017913299,-0.007836839,-0.0070349225,0.02276876,-0.02162984,-0.072840415,-0.011795553,-0.019637344,0.022087336,0.05602618,0.009264085,-0.01797824,-0.013954931,0.027415073,0.034027245,-0.0066728457,-0.013618378,-0.03253396,0.03416687,0.019696318,-0.0059653395,-0.0053958558,0.066759035,0.01825941,0.0062324977,0.0005538633,-0.020757908,-0.05763442,-0.04118095,-0.019474326,-0.03669263,-0.043122943,0.011822548,-0.024009096,0.026925452,-0.00024066598,-0.0008714941,-0.045767665,0.016445708,-0.045171544,-0.022596503,-0.025718648,-0.0391245,-0.0479577,-0.03162933,-0.022117537,0.094145186,-0.002120554,0.02041506,-0.03812636,0.007944449,-0.0007757865,0.03424621,-0.023246022,-0.049825914,0.000009782469,-0.004390088,0.039138507,0.011805262,-0.008659681,0.02961016,-0.028240036,-0.025291963,-0.041185323,-0.03477699,-0.035334047,-0.0071823234,0.028718365,-0.044758804,-0.033387236,-0.003407527,0.040716216,0.041643634,-0.006199313,-0.043866236,-0.061329797,-0.044912945,-0.0048695216,0.044475332,-0.03130495,0.025667598,-0.018697757,-0.026781058,0.07226027,-0.033887085,-0.003766881,0.060166944,-0.026881658,0.017352052,-0.05764815,0.046839092,0.025084265,-0.032232083,0.0051011946,-0.028945792,-0.021997975,0.012120847,-0.036783084,-0.057461232,-0.0049296585,0.017850049,0.051047362,-0.036641248,0.056350138,-0.017753381,-0.009089323,-0.034582827,0.047331695,0.056224685,0.0080469595,0.042302907,0.009212913,-0.025484407,0.048230443,0.014465897,0.023689063,-0.0004129113,0.050242238,-0.012452537,-0.049032137,0.05502177,0.055404115,-0.042775016,-0.06726625,0.013828988,0.014162875,-0.010347983,-0.032241218,0.018082866,0.001331983,-0.0120071545,-0.024927158,-0.0011773912,0.03903426,0.029200226,-0.013090084,0.04252422,-0.015598189,0.030554239,0.03411485,-0.039434113,0.04129468,-0.05276893,0.0174788,0.006585706,0.007936694,0.017088657,-0.0014494815,-0.031316347,0.02911296,-0.031884976,0.064759895,-0.012544144,-0.022460587,0.05932857,-0.01843225,-0.012039464,-0.000908527,0.017378815,-0.04039502,0.010175471,-0.025130766,-0.03239286,0.006949776,-0.012383732,-0.025097737,-0.035558306,-0.011389861,-0.052922223,-0.050479967,-0.020944605,0.0042359633,-0.00072400115,0.056691214,-0.0024748219,0.0044428115,-0.011990813,0.056062207,-0.05728907,0.03293543,-0.018071406,0.07565012,-0.03278122,-0.047288556,-0.037827265,0.0015634786,-0.022682143,0.004463662,-0.0423733,0.01061523,0.0020094698,0.037326552,0.011893261,0.053184394,-0.023158355,-0.015679128,0.04604015,0.04094422,0.00062156434,0.025489919,0.011982723,0.011446152,0.0030147166,-0.04809924,-0.03263731,-0.08884063,-0.00294833,-0.037469134,-0.037723042,-0.056149118,-0.06334388,-0.014791776,-0.029100152,-0.0008248598,0.017037231,0.010807645,-0.033418216,-0.0017433362,0.0050823404,0.03793552,0.0048884708,0.011995089,0.013782508,-0.015695946,0.012802986,0.006082804,0.026344633,0.03535944,0.06937601,-0.0019186904,0.00072859495,0.040038995,-0.03232784,-0.021346636,0.00029632554,-0.033388793,-0.049705446,0.020468084,0.014433229,0.021167126,-0.010606427,-0.013970857,0.021824652,-0.019845743,-0.034138463,0.037262008,-0.08991389,-0.05642978,-0.0016354312,0.0058587934,-0.018616129,-0.011767606,-0.029168181,-0.057893943,-0.005433793,-0.007609026,0.022998763,0.026931973,0.002541389,0.025123417,0.0008619464,-0.01517231,0.011283814,0.023036197,-0.034785446,-0.05054141,-0.023683567,0.018436164,-0.022270288,-0.0075343503,-0.03598634,0.008762776,-0.03792788,-0.001780287,-0.011640358,0.019194983,0.0059509655,0.027633531,-0.05050816,0.074667186,-0.004086263,0.016559247,-0.0011740668,-0.0044774157,-0.017222859,0.037946757,0.013283591,0.028560458,0.019550579,0.0065350854,0.018673696,-0.020766841,-0.020506982,-0.009630708,0.008357324,-0.008408058,-0.0057970127,-0.038814273,0.0394049,-0.007535497,-0.007847305,0.011140552,0.0010600111,-0.021710731,-0.00037922483,-0.002514847,-0.018488556,-0.0039863507,-0.020820094,0.0057762642,-0.0092012845,-0.008235365,-0.027038487,-0.030687515,-0.009605876,-0.0057544345,0.019922981,-0.035039745,-0.003017025,0.005333569,0.002075908,0.043279395,-0.0077093905,0.02718155,0.022648262,0.015424425,0.026772458,0.020348718,0.0017642374,0.00060793705,-0.015062358,-0.0084785605,-0.020705348,0.015867582,-0.035910323,-0.04033652,-0.037282456,0.058718078,-0.0241075,0.0012501633,0.010966081,-0.026841125,0.009869103,-0.064520255,0.021277701,-0.023694608,0.012550278,0.016150173,-0.0043831277,0.0074212593,-0.006775573,0.013356973,0.008582959,0.006373211,0.010301525,0.016716406,0.031529512,0.013169822,-0.012712721,-0.034996785,0.017384533,0.02601657,-0.022048052,0.020018369,-0.02660491,0.011986583,0.03795927,-0.0008673467,-0.023379017,0.01531604,-0.020239968,-0.039750926,-0.0059154937,0.008137079,0.004001622,0.04692613,0.042743303,0.020508662,-0.008172744,0.011575354,-0.008246225,0.0023307393,0.034250252,-0.0776116,0.032272693,-0.0578969,-0.054811478,-0.0024809928,-0.020464685,-0.019826716,0.008413137,0.008345403,-0.06513155,0.02129223,0.028770726,-0.019561991,0.029544642,-0.023724755,-0.0020614665,0.06240363,0.01615203,-0.037460003,0.06734667,-0.025184857,-0.012690078,0.037296068,-0.033415537,0.04814551,-0.024158707,-0.03287674,-0.034530282,0.003667713,-0.04589289,-0.041987095,0.027528241,0.036793556,0.032369573,-0.042177357,-0.0364684,-0.022534579,-0.030948747,0.0073743225,0.0025468413,0.076409675,0.037678435,0.019089766,0.005497761,-0.054823443,0.2426234,0.05339719,0.025401458,-0.019283017,-0.013712794,0.030016514,-0.017690992,-0.0133625865,-0.004426586,-0.0034220675,0.038862593,-0.039020088,0.009261974,0.035573047,0.02254921,0.069168024,-0.033585925,-0.016761856,0.018132959,-0.039213344,-0.025331892,0.01229333,0.02458856,0.013416272,0.009330087,0.030461866,0.04620936,-0.005775446,-0.016270231,-0.019641215,-0.008904651,-0.028479112,0.050140437,-0.0462892,0.0046472363,0.054025892,-0.011931268,-0.041388504,-0.0002915484,0.005555037,-0.02687816,0.02886621,0.032395072,-0.0076859226,0.0133686485,0.036102675,-0.036595915,0.014932183,0.00006369712,-0.034140088,0.036340486,0.016557952,0.04164808,-0.023941366,-0.009617473,0.017436203,-0.024207434,-0.0019397725,-0.030330732,0.03000232,-0.0013882982,-0.017317384,-0.0028086996,0.014960198,-0.036927547,0.0049303425,0.040603966,-0.0069339783,-0.029436877,-0.019762926,0.004990695,-0.023909012,-0.016571704,0.025640791,0.019768007,-0.008095136,-0.0012722767,0.0024959655,0.033961378,-0.03599475,-0.011930581,-0.0013697799,-0.029195689,-0.011151099,0.016450306,0.03001004,-0.0037966953,-0.004610601,-0.04905505,0.050470375,-0.0019180137,0.049650334,0.0031193884,-0.024548708,-0.01770767],[0.055061273,-0.022124276,0.015000049,0.04129551,0.0110675,-0.0168577,-0.0009005038,-0.004703892,0.02795421,0.033456128,0.030908167,-0.04166909,0.00014619956,-0.003112686,-0.011874788,-0.017379222,-0.03465184,0.014938786,-0.051123515,0.00020640857,0.035041083,-0.0025266916,-0.09865699,0.023317927,0.017021192,0.033450004,-0.024520434,0.0049982187,0.016059034,0.052062888,0.003228636,-0.00033194877,0.034399956,-0.023319913,-0.013669836,-0.06710183,0.016138086,-0.041966323,0.0149910925,-0.015638309,0.03787924,-0.02132235,0.04839444,-0.03416431,-0.056514844,-0.011889459,0.0015834215,-0.034545533,0.015598935,-0.04972438,0.025937067,-0.029465929,0.035207734,-0.0397841,0.0132854795,-0.026228387,-0.012422128,0.01253841,-0.028232386,0.025082149,0.032606438,0.04611449,0.017833468,-0.048364244,-0.0017072345,0.01817532,-0.0060223355,-0.03450787,0.01716445,-0.03335116,-0.030847086,0.0049241683,0.007605823,-0.022180002,-0.040862735,-0.010981971,0.004285859,0.020528737,-0.04678695,0.010529511,0.006582676,0.0031095808,0.012538328,0.010592496,-0.018248966,0.0015480061,-0.000049272865,0.050197802,-0.006133588,-0.012884591,-0.00069173326,0.025342653,-0.033145636,-0.015495214,0.04655863,0.0061210888,-0.010215816,-0.013413532,-0.028512036,0.03325924,0.016531559,-0.016722776,-0.0220253,0.05517858,-0.062147688,0.010681415,-0.022088116,0.012508015,-0.0022983165,-0.027953014,0.001950277,0.024650877,-0.0060426267,-0.003833426,0.021356542,-0.009771694,-0.0018375753,0.041844904,-0.031181278,-0.0015600859,0.029786969,0.0148781855,-0.018542161,0.021823687,0.018087557,-0.03234279,-0.0358409,0.030938832,0.0013133485,0.026243174,-0.024067897,-0.018649425,0.011910403,-0.01996253,0.04627886,0.00923377,0.008060088,0.016963175,0.005619335,-0.01767521,0.031782843,-0.005163527,-0.037156466,0.062305123,-0.0015244222,0.014731105,0.011944442,0.039567042,-0.05198854,0.05465727,-0.055310853,0.01884881,0.04337432,0.033559732,-0.03206654,0.040273007,0.019663388,-0.003082437,0.027812993,0.017498067,-0.025080545,0.018131383,-0.027299542,0.019713156,-0.040530268,0.03170153,-0.058395676,-0.019646836,-0.03694498,-0.014692788,-0.0015264829,0.016002798,0.0027752332,0.017237725,-0.0021959958,0.03763842,0.021138903,-0.0387354,0.029059809,0.01128879,-0.022443183,-0.0037333341,0.02069092,0.027797783,0.03333311,0.0123289125,0.030359792,0.01657234,-0.017957589,-0.041301392,-0.00026932306,0.051559236,-0.032935455,-0.021560853,0.013272223,0.009124644,-0.05483925,-0.058261905,-0.0013753898,-0.0488528,-0.02779634,0.007700215,-0.031958796,0.016562063,-0.013248894,-0.023900904,0.022287989,0.04244123,-0.008675539,-0.009515599,0.061227143,0.03612045,-0.011451756,-0.00774193,0.013608988,0.0069920714,-0.015417313,0.071690775,-0.03402844,-0.026386091,0.03769361,0.011019422,0.00755886,0.0352678,0.008534851,-0.01793043,0.0026076166,0.043162864,-0.017592994,0.025945926,-0.01047206,0.036704034,0.005012737,0.03586658,0.032339096,0.013837644,0.057815388,0.021009339,0.022959044,-0.0004468023,-0.004547309,0.029419076,0.022845134,0.030518496,-0.026875662,0.07674131,0.049785018,0.007382154,0.011166592,0.03909076,0.017751774,0.027901588,0.0033213475,0.035889205,-0.08684888,0.011185253,0.03157888,0.06822495,-0.029459914,-0.024890771,-0.026830161,0.03931606,0.012943117,0.05519487,0.047995947,-0.0086756535,0.002181798,0.031043472,-0.039940856,-0.007620212,-0.045503628,-0.041285712,-0.037709333,0.019125639,-0.06479503,0.0052157817,-0.025286846,-0.013392908,0.009390933,0.013996209,-0.015761252,-0.02540777,0.0082732625,0.009934109,0.010265389,0.03817676,-0.029417321,0.0058362717,0.033795528,0.029119128,-0.011321518,-0.00552148,-0.029759666,-0.045457654,0.03719952,0.017307442,-0.041555725,0.004205841,-0.05134938,-0.033940274,-0.005415285,-0.007837302,-0.012448927,-0.013677749,-0.0060159443,0.031034274,0.0042122463,0.017229257,0.061360195,0.04377363,-0.055974696,0.038134366,0.040078428,0.04393899,-0.043077633,0.019340694,0.036982223,0.028006371,-0.041540984,-0.025988894,-0.028528446,0.0076126424,-0.028492557,-0.03020801,0.026976787,0.011649145,0.05126075,-0.09012977,0.0022287078,-0.018297736,-0.034601822,-0.035455447,-0.03198649,0.026002374,0.02280461,0.014492843,-0.0069355117,-0.03315844,-0.016539931,-0.014811478,0.046128035,-0.045348283,0.05258353,0.05723508,-0.011459658,0.008190831,-0.0038844412,0.007586185,-0.04638331,0.01628705,0.01032324,0.06537321,-0.020171924,-0.00987603,0.0066409963,-0.013293227,-0.02085652,0.021811163,0.037813134,0.005249232,0.011313525,0.0030289881,0.014954931,-0.07183583,-0.01192672,-0.06654749,0.036718037,-0.023604142,0.046141036,-0.06727815,0.03897466,0.03364149,-0.06233436,0.02742547,0.01929373,0.007391012,0.05085181,0.003988999,0.0305988,-0.040678956,0.025074665,0.012699676,0.018179622,0.023714053,0.03977624,0.030753149,-0.040130503,0.026529845,-0.007547735,-0.042319067,-0.051408052,0.016689532,0.033156466,0.007918675,0.0031550638,-0.045934435,0.042903177,0.01991421,0.02402541,0.009160695,0.0242725,-0.005074014,0.013355572,0.034958202,0.026576372,0.041569088,-0.034513,0.04564865,-0.018185608,-0.010825745,-0.01192304,0.009573034,-0.02928237,0.014761308,0.020446526,-0.006913333,-0.035290096,0.0005733013,0.014232608,0.028858757,-0.047889546,0.024832698,-0.01542901,0.009973318,-0.006251299,-0.004937981,0.015484921,-0.038247623,0.03645978,-0.009846246,0.023379894,-0.022897264,0.014263865,-0.030630214,-0.017534586,0.015986307,0.016409552,-0.018904675,0.036603905,-0.043288324,0.024241388,0.0173098,-0.0069390563,0.011712071,
+8000
+-0.0062268665,0.041568015,0.03732204,0.0041225418,-0.032055292,-0.025662204,-0.0032974253,-0.072300315,-0.0056935437,-0.039235927,0.021399807,-0.030463893,-0.012652922,0.025002226,-0.018707605,-0.033854842,-0.021208178,-0.026897648,0.051803466,-0.03530958,-0.013704052,0.04040814,-0.0018507309,-0.04484451,0.06283213,0.023450414,-0.004697828,0.02050004,0.026880343,-0.0066489493,0.00797226,-0.042435803,-0.00013910941,0.036216855,-0.0088291,-0.024735494,-0.019377818,0.0015681221,0.009097829,-0.025773866,-0.010036946,-0.046480484,-0.028077174,0.01043866,-0.022778703,-0.011151576,0.03685403,0.001649072,-0.0138251055,-0.031440478,0.021387234,-0.01047705,-0.024934268,0.021263534,0.009134893,0.027215013,0.05079339,0.0061730086,-0.010604131,0.00613211,0.023211405,0.006629395,-0.057001773,-0.043073945,0.00014226668,0.028944142,0.03701439,0.005647737,-0.011043945,-0.04606685,0.048647862,0.035882477,-0.035634823,-0.0040634857,-0.030743934,0.0069990633,0.019983925,-0.024934418,-0.024542011,0.04084544,0.012712483,0.0102007,-0.017029263,-0.024095101,-0.050669074,-0.056883007,-0.008109513,-0.027772734,-0.042996984,-0.03732133,-0.022024002,0.012918535,-0.00520572,0.011473019,-0.026046379,0.012261439,-0.068455055,0.01974992,-0.034519255,-0.013594539,-0.048627857,-0.045711633,-0.039925724,0.08226423,0.023592966,-0.007946102,-0.028623361,0.023278452,0.012277208,0.013319482,-0.022809032,-0.06962665,-0.014432544,-0.04213369,0.028957544,0.037586227,-0.015353828,0.025981393,-0.051128615,-0.050041877,-0.034879982,-0.027713493,-0.020451121,-0.0058727805,0.029297186,-0.014765271,-0.04196929,0.004766298,0.032951884,0.04213808,0.0024240594,-0.036664214,-0.048966993,-0.035528533,-0.040041532,0.002923718,-0.0060140607,0.010713696,-0.0036151528,-0.010735481,0.06590561,-0.008720737,0.011517891,0.0670645,-0.021092355,-0.0067509343,-0.04884064,0.028978134,0.014440062,-0.050326213,-0.031647854,-0.0131462645,-0.03156119,0.033122767,-0.03378251,-0.04519941,-0.00810991,0.028208945,0.045184627,-0.03273008,0.039802663,-0.025343303,-0.030552292,-0.05389722,0.035635002,0.030140853,-0.006331864,0.04220429,-0.0035153038,-0.009997679,0.03767304,0.029297449,0.022986239,0.00868495,0.05249559,0.023996051,-0.038454454,0.013062694,0.08699518,-0.030290864,-0.06890058,0.025794122,0.016894083,-0.04056352,-0.032515932,0.046021592,0.0055102017,-0.007542267,-0.011736785,-0.006012683,0.029501157,0.026237851,-0.031659584,0.032093305,0.0018348844,0.025577638,0.05180435,-0.037536506,0.039391927,-0.041973542,-0.002378293,0.008539375,0.034287576,0.03190233,0.013356399,-0.031025976,0.026636358,-0.039932687,0.015634978,-0.03278481,-0.0065097054,0.04309618,-0.0025584786,-0.044078812,0.020604074,0.036013573,-0.017623473,-0.015914889,-0.030331632,-0.025648428,0.016013077,-0.020810433,-0.01433651,-0.022779616,-0.027403902,-0.038348697,-0.04593679,-0.05163594,0.004687387,-0.0039503174,0.02643351,0.003535279,0.00080585526,0.004876008,0.053106494,-0.035841405,0.016074946,-0.002299761,0.047086146,-0.039006595,-0.02503759,-0.034306176,0.033306874,-0.043096606,-0.0023232296,-0.027748434,0.0038717703,-0.003524608,0.013756356,0.022839429,0.02612699,-0.016073342,-0.020803122,0.028883353,0.020463632,0.0021214955,0.04719608,0.002100036,0.010690436,-0.011849624,-0.0051224064,-0.00009598832,-0.07874525,-0.006531507,-0.020034978,-0.015281396,-0.037863646,-0.04196059,-0.020782199,-0.034111075,-0.012106385,0.006156386,0.008907148,-0.04994772,-0.010730032,0.010192319,0.026375633,-0.011795686,0.009501469,0.04510857,0.0044277837,0.005741023,0.0024980253,0.018904388,0.020059993,0.06064583,-0.0041182805,-0.0040277974,0.0146650905,-0.0022727258,-0.01105879,-0.005984548,-0.031194374,-0.036944658,0.024813525,0.012782768,0.03338873,0.023419945,-0.037647624,0.02442674,-0.009240632,-0.038801692,0.03052242,-0.060683887,-0.043963768,0.016448092,-0.014753783,-0.040667523,-0.00719585,-0.029908603,-0.04842428,-0.021334475,0.0039541377,-0.0017214138,0.006197225,0.0051666023,0.033684272,-0.0062766094,0.02742798,-0.013293978,0.02610013,0.00016815946,-0.05435105,-0.009655216,-0.00025302861,0.006857432,0.028635386,-0.04240557,0.024096942,-0.017808149,-0.01716514,-0.012242236,0.009863156,-0.023881655,0.033639587,-0.020465665,0.06637228,-0.008405232,0.013505375,-0.014109069,-0.005525361,0.005025142,0.052651156,0.0123659605,0.010110832,0.008196736,0.009690176,0.016244922,-0.0021833396,-0.028874455,-0.012683045,0.017886167,0.018189512,-0.008264978,-0.013476106,0.0405107,0.0034503,0.003801573,0.027130147,0.032234147,-0.0011512532,0.00017945845,-0.019939654,-0.009186419,-0.008911537,-0.0134188235,-0.026138678,0.0115036545,-0.04159485,-0.030917961,-0.03550761,-0.015660144,0.02541753,-0.023853872,-0.03533702,-0.02089035,0.020128308,-0.004298334,0.023164533,0.006941002,0.023443269,0.04455372,-0.013524672,0.00595211,0.008375932,0.0077623166,0.03061907,-0.038518246,-0.03695581,-0.041081943,0.02681799,-0.004706285,-0.0043121725,-0.0150194755,0.06608762,-0.032333843,0.017456235,0.0027489953,-0.024574712,-0.013395784,-0.047957085,0.0048851706,-0.03101099,-0.016437491,0.019439785,-0.014694827,-0.0055610854,0.028617853,0.033050865,0.020148054,-0.015033628,0.031726826,-0.00333424,0.060775936,0.021428656,0.0072653564,-0.040302914,0.020141702,0.025587963,-0.022156991,0.023166273,-0.02837324,0.0049694115,0.01274801,-0.022930931,-0.01462938,0.047459632,0.0078472,-0.060681213,-0.016666839,0.027189393,0.020435868,0.019209087,0.018026918,0.031462096,-0.0053287405,0.043645345,-0.02766867,-0.010873941,0.01535366,-0.0725947,0.018071309,-0.055219695,-0.034931943,-0.025893394,-0.014612185,-0.022579702,-0.01473338,0.001554422,-0.039568517,0.013976766,0.047151912,0.0244803,0.01980007,0.00089572265,-0.016457655,0.07085668,0.039889682,-0.06272319,0.093279235,-0.0072429143,-0.012689021,0.026206488,-0.028547412,0.027577288,-0.025580328,-0.052030716,-0.0277149,-0.0085210055,-0.039856087,-0.062111445,0.040418454,0.06490983,0.042581916,-0.0017405343,-0.056940157,-0.037538867,-0.021462549,-0.0035578222,-0.028151806,0.054707572,-0.008357968,-0.006587779,0.007882884,-0.09100093,0.25410613,0.061140224,0.01164077,0.00024878897,-0.01568304,0.018723132,-0.0039803213,-0.020188827,-0.0011195475,-0.015383824,0.027988942,-0.03363939,0.012619072,0.030959068,0.05223337,0.046258416,-0.031257357,-0.0037837178,-0.0402646,-0.0330485,-0.038638268,-0.011056931,0.014983525,0.052705135,-0.020922791,-0.012614039,0.07480034,0.005097636,-0.01639658,-0.026513902,-0.0017697447,-0.04094613,0.032318857,-0.028386548,-0.035778776,0.044253003,0.00890107,-0.018900078,-0.014066719,-0.0024649133,-0.03672369,0.012590353,0.04469354,0.0046092686,0.015877306,0.047420654,-0.038433153,-0.009548334,-0.028285975,-0.030852301,0.054598466,0.003643706,0.060559068,-0.025282795,-0.011347157,-0.005065835,0.032374762,-0.022444407,-0.020200301,0.0051957825,-0.0060655405,-0.022204675,-0.0045233364,0.00974907,-0.05484087,0.018290129,0.0068737934,0.025575884,-0.022383397,-0.041974828,0.011381788,-0.0360753,-0.049152482,-0.009483176,0.015207172,-0.009706524,-0.00902782,0.026339548,0.022107067,-0.029020943,-0.025355287,-0.0025389232,-0.009173293,-0.019388191,0.024146602,0.056552414,0.014900501,0.012760343,-0.042146243,0.06464926,0.002605701,0.038595933,-0.011798165,-0.032073196,-0.00089201785],[-0.011107951,-0.042309616,0.034218237,0.01449276,-0.017065722,-0.011750095,-0.0082441205,-0.0058932835,0.003285398,0.0396487,0.038738143,0.0075481553,-0.019491922,-0.032131746,-0.033517458,0.01803893,-0.009793494,-0.015112785,-0.053537864,0.0010831647,0.024691705,0.021795688,-0.10965373,-0.0090625305,-0.013445157,0.030432835,-0.012214488,-0.015110696,0.047697388,0.0374743,-0.006003127,0.020511739,0.0004931939,-0.03467805,-0.03208276,-0.0056730565,0.043678004,-0.0115451375,0.005245058,-0.025801033,0.019421514,-0.029850444,0.02216903,-0.07117679,-0.064541645,-0.013051488,0.00059359666,-0.0007964804,0.008235138,-0.042377986,0.009723697,0.0018972046,0.04263507,-0.034743484,-0.0029812097,-0.010315943,-0.027238566,0.01606875,-0.007935803,0.031582925,0.037468135,0.07187814,0.052357677,-0.03536856,-0.04405986,0.0041497545,0.005397542,0.008271832,-0.0060529425,0.011612162,0.0043373336,0.02026731,-0.009899462,0.004523338,-0.019611444,0.012286746,0.032337315,0.021957478,-0.022356667,0.07377154,-0.018509386,0.039095666,0.049450234,0.036260575,-0.020101313,-0.010176208,0.01551844,0.06092187,0.002363336,0.0062826294,0.015064053,-0.004121981,-0.025978291,0.0061906995,0.018158276,0.014824725,0.010280016,-0.011709781,-0.0394111,0.014738507,0.044703007,0.043075245,-0.0016616145,0.057049498,-0.0426216,0.005276574,-0.004749095,-0.017111517,-0.025430374,-0.0028286318,-0.018617935,0.015839478,0.015937503,0.026109204,0.023567453,0.04385382,0.009596907,0.015786547,-0.0019156082,0.019012067,0.043596156,0.024412999,-0.033439457,0.02892602,0.0032076468,-0.015593472,-0.06687394,0.069386266,-0.039325602,-0.011763196,-0.03302086,-0.005683299,0.008713087,-0.011588112,0.055894386,-0.009917741,-0.0007513254,0.020670801,0.03692382,-0.030536762,0.05871148,-0.008371746,-0.028873106,0.085426316,0.005249192,0.052042186,0.01019128,0.039681822,-0.038681455,0.038152136,-0.06810168,0.02191353,0.0032690004,0.05335065,-0.04350391,0.01018915,0.03184861,0.006627453,-0.024367334,-0.000264654,-0.007445662,0.0068571,-0.00020939276,0.021858444,-0.06591105,0.0279179,-0.04823825,-0.023373425,-0.0280365,-0.013656376,0.018849028,-0.025745729,-0.023091376,0.013679836,-0.022803381,0.042811017,0.005992225,-0.01456895,0.044307284,0.009667935,-0.017357325,0.015235723,0.0127078565,0.03731092,0.013680493,0.01039251,0.008665601,-0.0015995783,-0.039003003,-0.032944757,0.031588987,0.03517838,-0.034018967,-0.00560143,0.0167359,0.0019769343,-0.033678778,0.019850075,-0.0372208,-0.041662708,0.006197167,0.001009093,-0.008261431,0.029156225,0.015443343,-0.0084155835,-0.00014687615,0.026463056,0.006376098,-0.011495014,0.037373982,0.05097636,-0.006398755,0.0036156205,0.051750727,-0.02077993,-0.051526174,0.0242918,-0.02942007,0.013294811,0.036568772,0.05053876,0.05692478,-0.0024749762,-0.022056732,0.0075334245,0.030055728,0.06244116,-0.01257898,0.06278212,-0.034036655,0.031735815,-0.01802486,0.038572222,0.017650213,0.000103941085,0.03173797,0.035335362,0.011133767,0.019042043,-0.008267342,0.008857589,0.025351567,0.04268399,0.02895448,0.021572355,-0.004283574,-0.02226068,-0.01095195,0.013220692,-0.039390877,0.02168547,-0.024457144,-0.009480545,-0.04402894,-0.019978227,0.069187105,0.042105608,-0.040337093,-0.023310399,-0.0055552865,0.03293532,0.0041201627,0.054519836,0.031152591,0.027021386,0.0008273666,0.0075959763,0.0048046797,-0.036572494,-0.0160018,-0.020421885,-0.058177102,-0.006188677,-0.03970716,-0.006236975,0.011184162,-0.016727548,0.0027174144,-0.0034842163,-0.0028618805,-0.04836103,-0.0064219437,0.0013878656,0.007554701,0.021088082,-0.016125979,0.006843419,0.006140459,0.025390573,-0.016758801,-0.006852856,-0.01702802,-0.015985217,0.0040341388,0.022657048,-0.025985006,0.0007233136,-0.014973299,-0.039742123,-0.028752292,-0.011562111,-0.0005341683,-0.016820233,-0.04077362,-0.009101693,-0.0024466692,-0.0276275,0.043942593,0.0050400933,-0.088088624,0.001731505,0.03907556,0.0072540557,-0.041610204,0.031492725,0.010846508,0.024613993,-0.05690957,-0.019758089,-0.010207787,0.03393235,-0.03102506,-0.016850132,0.036838844,0.01472416,0.0014928485,-0.098884985,0.02674759,-0.01336986,-0.06330215,-0.040490847,-0.038895003,0.019082649,-0.009891902,0.0032351406,-0.0076940386,-0.026486197,-0.021374578,0.0011129257,0.025265245,-0.016487623,-0.0027122498,0.08104347,-0.013260978,0.01692671,0.02630172,-0.03606576,0.0026769093,0.016739791,0.01136244,0.038477283,0.014734191,-0.0007462065,-0.016673483,0.007303858,-0.034811884,0.03847865,0.039133936,-0.0054880567,-0.0008698957,0.05217813,-0.015493784,-0.041267414,-0.0035852257,-0.0659366,0.029550506,0.040760435,0.039449967,-0.045587696,0.04606052,0.0020742102,-0.028015787,0.013511196,0.0033269906,-0.009978874,0.0517972,-0.012353974,0.06826428,-0.04528815,0.027376032,-0.009195175,-0.0058444347,0.03714024,0.040096182,0.04062432,-0.015514363,-0.005368018,-0.018660584,-0.030757401,-0.06366313,-0.04277717,0.0035470226,-0.005965396,-0.0358441,-0.03455301,0.06259059,-0.02062922,0.043194078,0.024913225,0.03914786,-0.037971042,0.028745743,0.036279257,0.011159699,0.023517793,-0.025589217,0.054536533,-0.030526217,0.015063196,-0.05134353,0.0007019318,-0.017690653,0.06405013,-0.0077081244,-0.011729283,-0.027588675,-0.0027341712,0.047351286,0.023847003,-0.06733627,-0.009505397,-0.015614905,-0.0023999847,-0.0064193634,-0.037758164,0.010796477,-0.03743818,0.033835933,-0.004842111,0.011066196,-0.003148183,0.0032500692,-0.020055076,-0.025430538,0.027985075,0.0043465802,-0.037645716,0.03575421,-0.035815675,0.012669216,-0.007780478,-0.0024874613,-0.006369642,0.0005451559,0.015015893,0.043234363,0.03794807,-0.036235295,-0.037470568,0.030249545,-0.047510024,-0.01487734,-0.04482458,0.006878966,-0.031190723,-0.02915683,0.015336503,-0.0001041184,-0.005207991,0.04028169,-0.019247336,0.03260759,-0.028561855,-0.01730434,0.038805034,-0.007956005,-0.03713304,0.056152124,-0.0020590648,-0.0044053784,0.0076501626,0.010663586,0.00030399513,-0.0020596795,-0.046471518,0.014850416,-0.009049909,-0.030299967,-0.005751279,-0.03584272,0.014316206,-0.0025209058,-0.003404032,-0.020752419,-0.03881342,-0.012524972,0.019706974,-0.0066527734,0.009062864,0.025932616,-0.01632817,-0.019582802,-0.046853688,-0.012608316,0.006772363,-0.0380284,-0.01775415,-0.006154197,0.010255924,0.019030772,-0.015609116,-0.03175359,0.013419447,0.007369711,-0.0004970728,-0.050866053,0.024372935,-0.00561064,0.012941562,0.017248703,-0.015810931,-0.045339074,-0.014535298,0.01801085,0.01234706,-0.015704934,0.0077710613,0.010219452,0.039750647,0.0330252,-0.045107897,-0.0065379543,0.070797235,-0.031115046,0.024246875,-0.0038736442,-0.03881737,-0.054256532,-0.004974122,-0.004207762,-0.053782076,-0.04675272,-0.0001300599,-0.05302465,-0.013795472,0.023639152,0.0048411516,-0.066037074,0.040258903,-0.06750517,0.008178054,-0.031334095,-0.02300462,-0.04345,-0.03050689,0.0049857907,0.068290375,0.01103912,0.006714728,-0.02002693,-0.014887597,-0.0006685931,0.004460393,-0.039428722,-0.0031429064,0.015843641,-0.032793943,0.027062258,-0.0014980612,-0.014554239,0.025851475,-0.03543646,-0.024118507,-0.02811171,-0.013547382,-0.07280984,-0.017028453,0.036354482,-0.0032886735,-0.030578736,-0.012313416,0.041145906,0.026138466,0.03641613,-0.045124397,-0.042832673,-0.047871083,-0.0039520203,0.019113574,-0.030557163,0.008826582,-0.0038868985,0.03293233,0.038497455,-0.030392375,0.0018573971,0.059108943,0.0074570933,0.022394024,-0.07151886,0.03133947,0.02025599,-0.046700094,0.011538664,0.006615396,-0.042218003,0.03190665,-0.053297073,-0.041590903,-0.048802953,0.007519518,0.06013942,-0.02784185,0.035709295,0.011018456,-0.031594012,-0.041642968,0.026727578,0.034643248,-0.021660699,0.013550306,-0.01129795,0.0134984655,0.04020076,-0.0023877067,0.0017177091,0.0012738825,0.031839218,-0.003807664,-0.03953896,0.05575362,0.03763595,-0.040762845,-0.046234448,0.037344866,0.0067276256,-0.006460556,-0.034800634,0.026332995,-0.028290804,-0.00806075,-0.028770331,0.009988113,-0.009998395,0.051617473,-0.017096482,0.03352944,-0.018291332,0.04092564,0.019591868,-0.0045067617,0.021682126,-0.020288175,0.0030377142,0.030956155,0.01883769,0.01707983,0.035972793,0.014587782,0.015009138,0.00040239174,0.051661544,-0.01195935,-0.024449782,0.05689621,-0.034638405,-0.03445888,-0.012097674,0.026805462,-0.006927295,-0.0018273036,-0.02470847,-0.010750115,0.0063783587,-0.003217966,0.008826173,-0.043916266,-0.016235147,-0.045194436,-0.044357445,-0.004460132,-0.046884388,-0.01186632,0.02663617,0.0015590036,0.004977828,-0.009194133,0.057541218,-0.07880834,0.036666162,-0.000010731487,0.06471246,-0.04619728,-0.028403126,-0.044038564,0.02630509,-0.028993372,-0.007682972,-0.039026693,0.0025299063,0.011491129,0.025134562,-0.007065213,0.02679711,-0.027766908,0.020574324,0.036295444,0.0077803256,0.00073691306,0.04161056,0.041087247,-0.028154042,-0.025231527,-0.018054778,0.013025823,-0.05822441,0.019799957,0.00028927097,-0.04277962,0.004312212,-0.03306536,-0.03585508,-0.022642992,0.0023034918,-0.012114323,0.028573515,-0.0103318095,-0.050171867,0.003727106,0.05251385,-0.005185392,0.0036035976,-0.005650518,0.0055422173,0.005038482,0.0013354811,0.022069631,0.0023177324,0.057551887,-0.005158869,0.008079284,0.01806325,0.011422856,-0.0046655834,-0.026405513,-0.03909644,-0.023855217,0.0061706244,0.013619054,0.033508796,0.03699373,-0.048263792,0.0070262756,-0.04729655,-0.033084553,0.05756638,-0.05851124,-0.03755143,0.0144836325,-0.012017968,0.016757077,-0.010361139,-0.055062167,-0.02736349,0.012699652,-0.037017092,-0.030121263,-0.0045828405,-0.009591006,0.009284694,-0.042745393,-0.009693651,0.029537588,-0.0068295766,-0.021233413,-0.04164637,0.033445884,0.04359835,-0.010186502,0.011741169,-0.037186112,0.0006167842,-0.03927634,-0.017335525,0.0011359885,0.021662315,-0.008310147,0.0073986435,-0.03438917,0.07283503,-0.009354294,0.01948671,-0.014379913,0.021140186,-0.017054455,0.024067765,0.025100898,0.02776109,0.022182405,0.0033591655,0.004802903,-0.012460143,-0.010895064,-0.0177337,0.06432957,0.02065428,0.022739714,-0.03557875,0.05914836,-0.0035000886,0.019637967,0.016222298,0.01518105,-0.028362816,-0.002115205,-0.0123132,0.004506048,-0.03860088,-0.005286516,-0.049024355,0.015069667,-0.029720038,-0.025483968,-0.03259741,-0.029409656,0.051639847,0.0131423045,-0.010959573,-0.015953695,-0.0058115306,-0.034633208,0.031348176,0.0062881643,0.006921991,0.0346035,0.019332409,0.032122653,0.026892534,0.028299613,0.0135146165,-0.018616512,0.0046931044,-0.005418135,0.027849497,-0.039485343,-0.0029665416,-0.033843607,0.014481931,-0.022320185,-0.0045470903,0.0061980337,-0.04700474,-0.006655079,-0.044283446,0.020272074,-0.006017384,0.0135311065,0.04378473,-0.0026725188,0.024034675,-0.03408032,0.03835789,-0.003366562,0.0022049996,0.04770939,0.019462151,0.033146158,0.01558403,-0.004575846,-0.006241615,-0.009333323,0.014826466,-0.03791496,0.009033885,-0.03460549,-0.009789736,-0.0069015287,-0.012168334,-0.003324642,0.043342907,-0.010466743,-0.044978216,-0.017648518,0.028182695,0.008014135,0.017174061,0.03928542,-0.026642675,0.032822497,0.025310365,-0.008252337,0.0037828512,0.04243215,-0.043089766,0.036012895,-0.03817712,-0.01585971,-0.005333289,-0.05305429,-0.029476376,-0.020107755,-0.009533812,-0.05102102,-0.008479766,0.028054493,-0.0058862264,0.0135019375,-0.020340368,0.01562453,0.017359737,0.049527194,-0.0047582905,0.0999184,-0.00038506812,0.009554557,0.07252126,-0.04568338,0.058456626,-0.022335654,-0.06594774,-0.006821018,0.0022145326,-0.050397735,-0.03464921,0.017980242,0.038436655,0.02315598,-0.04883171,-0.04740362,-0.01185058,-0.050733924,-0.034439027,-0.01782874,0.07328055,0.002460977,0.036577545,-0.023688456,-0.055626255,0.25344756,0.054965638,0.011826752,0.010549676,-0.0002953879,-0.0041830293,-0.0029168718,-0.024960782,-0.025094379,-0.011902816,0.023108557,-0.028534787,0.014867793,0.076902576,0.004430973,0.038326614,-0.03694482,-0.013089166,-0.013048107,-0.05337732,-0.044313636,0.017745063,0.006382029,0.029890776,-0.022668095,0.0052759517,0.062120035,-0.026779098,0.0014993282,0.0042517344,0.03951359,-0.022104427,0.034850195,-0.034738306,-0.04561979,0.009518793,-0.01565922,-0.015149559,-0.018578144,0.011463219,-0.041558467,0.014949283,-0.0057193297,0.011039009,0.035133034,0.04229329,-0.014460076,0.011846593,0.0027317673,-0.014069213,0.05147666,0.019673217,0.064195335,-0.050257184,-0.042287238,-0.01191363,0.003968803,0.01287864,-0.002458725,0.02161597,-0.012749422,0.012257451,0.012931751,-0.008901541,-0.040381443,0.051327668,0.025732128,0.047582936,-0.026858578,-0.02688804,0.00046172828,-0.037958607,-0.039363056,0.001975158,-0.011501683,-0.0036651262,-0.022385491,0.011020056,0.042203546,-0.035783347,0.005967304,0.00810166,0.002659785,-0.023054583,-0.027752439,0.06188953,0.009206705,0.023574641,-0.053266298,0.056262035,0.011852942,0.045225274,-0.028329164,-0.057254583,0.010002416],[0.021934567,-0.0049273297,0.012918888,0.012429312,0.0115059335,-0.025886673,0.009195803,0.02668122,0.006739818,0.041111104,0.0635865,-0.025949247,0.0013075767,-0.007636161,-0.03822739,-0.007940133,-0.023944099,-0.020814043,-0.034955963,-0.015498583,0.029842146,0.020985346,-0.0869428,0.0037573643,0.0066606435,0.04314204,-0.0146482065,0.030368896,0.022974288,0.019070497,-0.0028152657,0.034711923,0.023247551,-0.041064903,-0.029239185,-0.04744118,0.026012946,-0.010202426,-0.0072022825,-0.0592382,-0.0042758896,-0.023763096,0.029982416,-0.024242599,-0.049321275,-0.0072130687,-0.010205146,-0.02592569,0.0052320603,-0.03743296,0.014479649,-0.0056160665,0.005045687,-0.023725247,0.026349636,-0.030605236,-0.025022686,0.015422676,-0.022130992,0.04440568,0.005500238,0.052533064,0.0031256913,-0.044608343,-0.038081747,0.020109367,-0.024892684,0.016750026,-0.015581577,-0.0120183155,-0.0006680723,-0.006528031,-0.022640364,-0.017454615,-0.03249092,-0.022056695,0.021140981,0.017936002,-0.04365016,0.06008959,0.012187817,0.038296305,0.03352826,-0.0010650599,0.0021999918,-0.022198614,-0.022597883,0.020438872,-0.039521575,-0.024440968,0.02415897,0.023032106,-0.02920406,0.011627136,0.04189202,-0.012360194,-0.0058299527,0.012570748,-0.03974502,0.024339553,0.048609637,0.01240974,-0.027280504,0.048257243,-0.062469587,0.004183427,0.015253017,-0.0074029346,-0.0017855858,0.020427288,-0.00016915474,0.0072498033,0.010238917,0.03956358,0.008933458,0.050274722,-0.01963134,0.021807589,-0.043829612,0.0016427462,0.013467281,0.030040108,-0.017212799,0.0063280575,0.008323469,-0.02204801,-0.009917655,0.008024508,-0.018718151,-0.015063222,-0.004479348,0.0077696224,0.020319114,0.023117498,0.059875704,0.0011561521,-0.00944281,0.0035556897,-0.005601482,-0.03451311,0.04526995,0.037668902,-0.02124045,0.07708284,-0.006618737,0.033231154,-0.013096856,0.025709528,-0.030048043,0.048333373,-0.075821035,0.01739727,0.0460554,0.027531631,-0.031049088,0.008340765,0.0066846334,0.012420352,0.029223122,0.01420498,-0.025053073,0.029235022,-0.015384044,0.018636359,-0.061535075,0.021287125,-0.052035414,-0.028975744,-0.043536317,-0.0070069577,-0.014344377,-0.008671786,-0.016428959,0.002520323,-0.019419424,0.069711626,0.017922703,-0.0025301273,0.018112727,-0.00089641067,0.008155717,-0.016325226,-0.0042528333,0.040673845,-0.024543826,0.018325351,-0.009640791,0.006234208,-0.02886685,-0.035511136,-0.003336176,0.039669093,-0.01569867,-0.024299936,0.0018076175,0.011574205,-0.015744366,-0.033735715,-0.0073669706,-0.042913426,-0.01392832,0.02310546,-0.016302502,0.048115317,0.020696957,-0.05630843,0.012930512,0.0237839,-0.016124772,0.0120431315,0.0130213015,0.038911738,-0.0025185707,-0.008991309,0.021833543,-0.028677613,-0.013678084,0.03677592,-0.04579549,-0.007474069,0.023274027,0.028480472,0.05118889,-0.00068553525,0.0071838843,-0.007757165,0.016726347,0.05325891,-0.017619275,0.05702743,-0.007832706,0.030629162,-0.0064520417,0.055860244,0.022999926,-0.008681422,0.04843189,0.034040567,0.020970916,-0.00039247674,-0.025679793,0.0015760558,0.027685812,0.028669605,0.008780558,0.064088285,0.022191351,-0.0402862,-0.008429986,0.027622702,-0.0056228475,0.024989778,0.04140558,0.027767997,-0.047263604,-0.01947281,0.03112322,0.036874056,-0.026840685,-0.031002572,-0.0072888574,0.015768155,0.015175764,0.05949627,0.06727491,0.040196482,0.0046578045,0.02128537,-0.05024383,-0.012881522,-0.026949197,-0.013420716,-0.04782294,-0.0021557582,-0.045178797,0.01803577,-0.0005967534,-0.04369051,0.021371296,0.017077064,0.0017620014,-0.032969065,-0.02100725,0.03376642,-0.03005055,0.034862053,-0.005399846,0.018094633,0.0007847763,0.036907356,-0.030556193,0.00040146205,-0.0025034982,-0.016668594,0.055615585,0.0022973807,-0.0296821,0.019388158,-0.028424524,-0.045098066,-0.020916995,-0.018195678,-0.0025974582,0.003145071,-0.012057175,0.021307573,0.011572977,0.007303711,0.057143517,0.020273078,-0.06366372,0.02482312,0.018461378,0.0147698475,-0.058793727,0.021575302,0.019100431,0.022368755,-0.024080953,-0.0065391934,-0.027227132,0.00694975,-0.033886824,-0.042510882,0.036892086,0.016230108,0.045539323,-0.07640356,0.018308597,-0.007731817,-0.06813132,-0.016517058,-0.036537122,0.042736758,-0.013208031,0.016229363,0.0018708821,-0.06299391,-0.040198635,0.0015679329,0.04008,-0.05666725,0.04517583,0.06634905,-0.02307506,0.021548271,0.046925314,0.00818014,-0.021778561,-0.022103619,0.011047887,0.03847533,-0.0144946985,0.021764673,-0.022519743,0.0042309514,-0.016661499,0.023904275,0.024747241,0.01392637,-0.012512707,0.026185868,0.010910791,-0.05555332,-0.021895615,-0.062116556,0.031602826,0.0017208164,0.034566328,-0.070652045,0.0485123,0.022457318,-0.03562446,0.026459426,0.026310058,0.010699887,0.029196443,-0.0012981266,0.059713114,-0.003404426,0.02050769,-0.016098373,0.016721776,0.04180889,0.056175854,0.017151663,-0.041068804,0.0014787193,0.00043778628,-0.028580645,-0.035078626,-0.011447629,0.024991626,-0.029312972,-0.032406595,-0.03634967,0.051396094,-0.013220293,0.057088193,-0.003510097,0.041667473,0.0016719085,0.040055778,0.03945326,-0.015320713,-0.0070881452,-0.01651029,0.0477479,-0.024061162,0.0017200337,-0.058225174,0.023903593,-0.016494136,0.03335877,-0.008962652,-0.00848914,-0.020415753,0.020090498,0.024417784,0.027708426,-0.05130908,-0.0267237,-0.002215784,0.0040158657,0.023153618,-0.03023937,0.03834888,-0.056256987,0.05669558,0.019906072,0.02497029,-0.03118256,0.022191893,0.0010502184,-0.0033113512,-0.0062207826,0.0046099043,-0.043102838,0.010768587,-0.037388396,0.03204356,0.0171565,-0.010801541,0.015540666,-0.03677964,0.030679021,0.025581287,0.02017403,-0.076446995,-0.04302605,0.016211828,-0.042944647,0.00039177254,-0.045034517,0.008018698,-0.031083783,-0.011677155,0.0011038859,0.012828,-0.009434,0.0034985486,-0.012679838,0.036506582,-0.020279314,-0.022064133,0.019302912,-0.027548328,-0.017869921,0.06137902,0.0070948405,0.0055982447,0.0012499951,-0.0061381045,-0.007187183,0.0018519182,-0.00851929,0.007971191,0.005196055,-0.005574191,-0.0027853078,-0.016919874,0.0065617333,0.040517602,-0.01584978,-0.007023781,-0.06824297,-0.04956347,-0.014716026,-0.0032423704,-0.0045154556,0.024982292,-0.0047677997,-0.0027775932,-0.051654637,-0.009249858,-0.011408246,-0.023389513,-0.0013325646,-0.02166694,0.060039114,0.014608519,0.02261973,-0.03374053,-0.015100232,-0.0084953755,0.001224591,-0.06560429,-0.020274084,0.007362131,0.033581212,0.031158576,-0.03956916,-0.0052563744,-0.025325453,0.03968894,0.011844586,0.0053062323,0.008576886,-0.022522477,0.026996303,0.036182206,-0.03482589,-0.032707196,0.077321336,0.022362575,0.045373745,0.010421665,-0.004927188,-0.07885591,-0.035482842,0.00072586926,-0.037773307,-0.02197647,-0.025572885,-0.0048022694,-0.00078251056,0.007871024,-0.016718583,0.0014053866,0.005437395,-0.04862305,0.017174363,-0.009287531,-0.038401306,-0.039951917,-0.019229833,-0.0050136647,0.08140673,-0.012278494,0.029613363,-0.046824932,0.014883236,0.013251665,0.0011470444,-0.01263105,-0.03603719,0.00858351,-0.024501994,0.005895198,0.02942347,-0.015570082,0.030915543,-0.04634795,-0.029495213,-0.04195864,-0.018517977,-0.011605273,0.0051256604,0.028178727,-0.0062864916,-0.0539109,0.008960579,0.07158435,0.0444793,0.03299151,-0.009533034,-0.026972596,-0.076863855,-0.047215186,0.0063271592,0.027255407,0.015448941,-0.019140031,-0.0033324556,0.06390017,-0.017409086,0.041458044,0.077379644,-0.013937726,-0.000271143,-0.049450126,0.058426585,0.009766756,-0.033352982,-0.015166073,-0.031708796,-0.02875315,0.015498135,-0.08150245,-0.043903537,-0.040989187,0.019586805,0.05497494,-0.014213786,0.057155415,-0.015825825,-0.017112523,-0.057969954,0.04793291,0.04532845,-0.015760643,0.044995908,-0.029380547,0.009252419,0.033005934,0.022170221,-0.0026673262,0.0042164265,0.0577781,-0.013072816,-0.04836967,0.04824942,0.046760045,-0.027565062,-0.06628923,0.021882636,0.014017202,-0.0461933,-0.042856578,0.010280729,-0.022897277,0.012007892,-0.0010276821,-0.00071182934,-0.010830687,0.026134035,-0.040667187,0.048521675,0.0063426304,0.016125223,0.04360893,-0.029419065,0.025267905,-0.040142644,0.012193462,0.008336549,0.0074622487,0.036810327,0.04555649,-0.024675533,0.020359144,-0.029939424,0.045508802,-0.01463426,-0.030192439,0.05289102,-0.011414614,-0.031925514,0.0118969185,0.024762455,-0.022358963,-0.024069363,-0.029228443,-0.031257946,0.015338979,-0.0084833475,-0.016457772,-0.013344716,-0.024886465,-0.0403872,-0.032302614,-0.034119323,0.00733263,-0.037990373,0.02700704,0.004631574,-0.015788494,0.013299569,0.039284676,-0.055153485,0.030109912,-0.0237616,0.09457658,-0.023938656,-0.021211747,-0.05771336,0.00034150516,-0.012657135,0.012125356,-0.038123503,0.032059506,0.0016924378,0.006062997,0.01104859,0.019131746,-0.019645264,0.0038996523,0.029783815,0.033456795,0.0066705337,0.03399221,0.020203605,0.020479329,-0.025920935,0.0131938625,-0.034303818,-0.03298391,0.004357131,-0.007440278,-0.038764406,-0.020663718,-0.036971293,-0.018236369,-0.032150492,-0.014608478,-0.004442365,-0.011672216,-0.020621054,0.0025737723,0.013727655,0.03738701,0.030397698,-0.013481537,-0.01329517,-0.0008348685,0.034865055,0.0074392282,0.03137936,-0.0172818,0.027604392,-0.010998806,-0.0074904496,0.039355475,-0.023608105,-0.018632403,-0.02802998,-0.038582608,-0.021776028,0.0031475166,0.009710218,0.04576433,0.022536293,-0.030304829,0.057498638,-0.034675032,-0.015409596,0.00095939403,-0.0773155,-0.02792145,0.029667236,-0.00032745532,0.016807886,0.012987545,-0.078900054,-0.04526041,-0.008614687,0.0024682402,0.0034506987,0.0037717153,-0.008237115,-0.007938203,-0.013266736,-0.007852252,0.01441463,0.03772665,-0.010736595,-0.02827527,0.024988223,-0.0029878342,-0.006213371,-0.015132512,-0.03729749,0.031736687,-0.018117774,-0.038513202,-0.019397825,-0.006277157,0.0009738838,0.059789054,-0.03391402,0.064028844,-0.017589128,0.03538987,0.014947864,0.00003396401,-0.01893073,0.039316893,0.016172063,0.058073353,0.03677215,-0.002753405,0.0030434516,-0.02814872,-0.025555428,0.0021247424,0.040047742,0.01035251,-0.014127808,0.009283492,0.034121294,0.008329669,0.0114685185,0.016581522,0.040599063,-0.05423303,-0.006101501,-0.016564427,0.011374917,-0.0072309827,-0.021871101,-0.04058369,-0.007975338,-0.03730685,-0.035632312,-0.041520484,-0.0039550327,0.03219067,0.020090472,-0.037984062,-0.018225146,0.009183551,-0.03468358,0.043907646,-0.008651005,0.03856172,0.04822577,-0.003820077,0.037754692,0.039154604,0.027230026,-0.001679603,-0.03634915,-0.0083707385,0.005018979,-0.017506048,-0.043160994,-0.008282408,-0.02635598,0.032216318,-0.01646262,-0.014808691,-0.010922226,-0.051192205,0.010324214,-0.03473907,-0.0033349243,-0.0051662363,0.009103276,0.023818191,-0.011462615,0.005479835,0.006927281,0.017449489,0.0385974,0.01658801,0.021315105,-0.018361013,0.026734034,0.027268847,-0.025153376,-0.022899153,0.017733896,0.0048876475,-0.0707743,-0.006148492,-0.061493475,0.0127254985,0.021822948,0.00016699592,-0.048237193,0.05102123,-0.005625113,-0.03422327,0.009991081,0.034564596,-0.00809278,0.025259456,0.03317899,0.01830717,0.025502533,0.03222891,-0.030739306,-0.024870494,0.025961785,-0.06680543,0.03312797,-0.057557207,-0.03158383,-0.028336084,-0.011388299,-0.023092112,-0.013296766,0.014151592,-0.03590151,0.012829338,0.029947402,-0.020066043,0.0028758182,-0.0025163824,0.010647174,0.036993377,0.055749614,-0.054402575,0.08389491,0.018926928,-0.028489217,0.031121394,-0.029667502,0.051506486,-0.019968087,-0.04319279,-0.044062417,0.02520925,-0.034761358,-0.034213834,0.0089272065,0.042330567,0.051686376,-0.060023457,-0.04315387,-0.030441638,-0.025843346,-0.002167804,0.0024756896,0.057841737,0.0070908475,0.0074266656,0.0003571878,-0.06764456,0.2537944,0.06729311,0.025552755,0.0038764835,-0.02176648,0.027964799,-0.004065045,-0.026975749,-0.0015091095,-0.002661419,0.018510038,-0.010026731,0.0044205906,0.05752415,0.0060536256,0.06212501,-0.035762686,-0.0042587672,-0.0050770617,-0.05997942,-0.012715746,0.015547889,0.019006258,0.03393939,-0.02796466,-0.0023839865,0.058212068,-0.024065481,-0.01766848,-0.019530158,0.013305832,-0.029235402,0.036172796,-0.05692584,-0.04407749,0.03346147,-0.029230922,-0.017161174,-0.01184687,-0.013563195,-0.010767857,0.02781446,0.03717684,0.0049485127,0.036541197,0.045033045,-0.034282427,-0.00980222,-0.025450256,-0.020256486,0.06139845,-0.0016304452,0.018119635,-0.020505764,-0.026462369,0.0019676627,-0.0034635093,-0.008600282,-0.008621299,0.0007926374,-0.012571566,-0.01797852,0.013574728,0.0038894054,-0.049722284,0.027438348,0.0309266,0.029133689,-0.027376048,0.0061942767,0.030031329,-0.042603202,-0.020478446,0.006933467,-0.020534657,-0.022596786,-0.02834323,0.011005751,0.033761963,-0.043771368,-0.008618207,-0.00070796313,-0.00041957904,-0.017645352,-0.0039766934,0.030802764,-0.015157665,-0.01755305,-0.053127907,0.023232328,0.01639711,0.031366978,0.005804166,-0.05425862,-0.014200421],[0.021439217,-0.033860303,-0.015538934,0.010778632,-0.018943984,-0.
+8000
+0067284466,0.0055146315,-0.009059291,0.0069949655,0.013764174,0.028513102,-0.01686704,-0.005375172,-0.010814119,-0.009996788,-0.022929464,0.014642813,-0.012080896,-0.043716107,-0.020578494,0.006064204,0.010856079,-0.07631432,-0.015137703,0.020203307,0.044519015,-0.008854933,-0.0049181706,0.06079467,0.050402712,-0.0021497349,0.024971463,0.008035373,-0.035605393,-0.005001228,-0.020857304,0.034895908,-0.007019081,-0.0062043844,-0.013913655,-0.0027829374,-0.031175291,0.03724139,-0.041237127,-0.037990853,-0.013617073,-0.036491577,-0.012650293,0.022607958,-0.041266885,0.033297915,-0.025540562,0.034618795,-0.023606976,0.03214703,-0.009618002,-0.0412277,0.004164484,-0.03898228,0.021770611,0.046396926,0.06007366,0.026712697,-0.05650337,-0.020548064,0.0022302545,0.0035416817,-0.009696014,0.016092451,-0.018917192,-0.0018752741,0.013939616,0.015890583,-0.0022262146,-0.020270206,0.004512448,0.027457586,0.023877883,-0.05578423,0.035261005,-0.0041713812,0.0116276555,0.06469663,0.06228417,-0.0356886,0.019123998,0.034737542,0.05580845,0.009340224,-0.0061406284,0.010368784,0.009319177,0.0043927096,-0.0068234135,0.003580561,0.013439976,0.004089173,-0.013235367,-0.033402525,0.025550008,0.035108984,0.03505788,-0.019889126,0.05937269,-0.07366837,0.02126798,-0.010845534,0.0066453093,-0.0009792802,-0.022537539,-0.025272058,0.0008743112,-0.016222086,-0.002077945,0.02073622,0.023997562,-0.045419306,0.014165736,-0.014395889,0.039376583,0.022403656,0.028216323,-0.005470436,0.031305958,0.020885685,-0.02242928,-0.07081283,0.059705462,-0.055584326,-0.014427555,-0.033305462,-0.017742217,0.035803694,-0.0014362044,0.07889015,0.025392428,0.0259605,0.05073061,0.022654504,-0.020010985,0.04948123,-0.016812854,-0.031178435,0.06957758,-0.0058326717,0.034713794,-0.0015668091,0.026938269,-0.06924969,0.009000555,-0.03851934,0.012028248,0.01399812,0.050148625,-0.040118072,0.0018244544,0.0418197,0.0042204577,-0.0020570601,-0.014659976,0.003281413,0.0042323493,-0.0027025111,0.019221565,-0.0476848,0.013107222,-0.03336514,-0.009378338,-0.028833002,-0.006912852,0.02675842,-0.007628065,-0.031659838,0.01277115,-0.013068626,0.035813686,0.011978705,-0.033754323,0.038349137,0.013028949,-0.017318664,-0.004797405,0.022410795,0.05900853,0.026853506,-0.0004609417,0.021750858,-0.009508126,-0.050943352,-0.034911912,0.0068944814,0.020941049,-0.01773847,-0.015163733,-0.004368697,-0.018107252,-0.025829729,-0.018511334,-0.00939336,-0.05178764,0.0116355885,0.024946569,-0.03003546,0.04934845,0.015602021,0.0030939516,-0.0005521888,0.029128678,-0.006749832,0.02836631,0.041513037,0.04416224,-0.004038449,0.0019880135,0.041425407,0.0011772226,-0.024055984,0.025213959,-0.0076788277,0.0017300302,0.045974854,0.04866597,0.00031359965,-0.011648997,-0.025596842,0.0027952953,0.027029872,0.05884067,-0.01639319,0.031760693,-0.025493259,0.041692644,-0.0085042035,0.042693693,0.024218714,0.0050911494,0.038785536,0.011733859,0.038836878,0.010083437,0.008654036,-0.032471478,0.023899049,0.037677784,0.03453989,0.041074283,0.042082,-0.0316539,-0.01647524,0.015153324,-0.019500308,0.02360326,-0.008351829,-0.0029026014,-0.0722928,0.025131928,0.035750203,0.043670133,-0.03464484,-0.034289215,-0.016496347,0.059992965,0.010614458,0.03314337,0.040382333,0.005720529,-0.009548941,0.0074661155,-0.028220745,-0.01226215,-0.008994444,-0.042163722,-0.04778923,-0.0050455104,-0.050539114,0.00965367,0.0036230271,-0.017591475,0.0059128553,-0.0064975894,-0.020126177,-0.042148843,0.02365997,0.012032212,0.031553946,0.060991265,-0.041450575,0.01797839,0.02020756,0.034300998,-0.026656825,-0.020236863,-0.021305235,-0.052509714,-0.0024987494,0.034079198,-0.022536546,-0.023395497,-0.03245997,-0.037363414,-0.021232164,-0.04440279,-0.0037010896,0.01579268,-0.045450937,0.0068325973,-0.011255071,-0.010627706,0.05162791,0.027831404,-0.08526025,0.025774635,0.010233534,0.014514218,-0.04359157,0.040708918,0.012895621,0.022683544,-0.045786437,-0.017564489,0.007957698,-0.0046298965,-0.03394857,0.0053407736,0.01857653,0.0013657487,0.012651979,-0.07737652,0.018376488,-0.017406946,-0.059155904,-0.03379734,-0.010107011,-0.0021311687,0.00066574436,0.007967289,-0.008392366,-0.031166734,-0.032128967,0.009165642,0.036359537,-0.0063650347,0.009186339,0.06880503,-0.0022870193,0.016608704,-0.016274083,-0.04466199,-0.028157096,0.020137895,0.043136623,0.050807286,-0.0058938963,-0.007894715,0.002817196,-0.015415814,-0.025097035,0.02527246,0.035923585,-0.022304978,0.010683685,0.027509557,0.009128558,-0.06885388,-0.037077762,-0.050496273,0.02540164,0.023805412,0.008166272,-0.033814415,0.042829137,0.0221935,-0.066742264,0.010720221,0.0021647662,0.0009304085,0.0378985,0.02069567,0.050389633,-0.042866826,0.041508757,0.004200995,0.011146786,0.01605882,0.044376284,0.03348589,-0.0173373,0.013599826,-0.0028894471,0.008581684,-0.02949591,-0.048052326,-0.004803373,0.018895324,-0.006406765,-0.035623934,0.025372175,0.01383816,-0.0035607454,0.03452525,0.03370423,-0.013243834,0.033462062,0.050487805,0.012489909,0.0023173534,-0.00365334,0.039530784,-0.0018776245,-0.003654582,-0.029315587,0.006068443,-0.0065630847,0.041710354,0.008471651,-0.0013443552,-0.011600062,-0.013578464,0.043273687,0.05746123,-0.022945326,0.014835554,-0.008366867,0.00017445054,-0.030818254,-0.018376213,0.0072536487,-0.058650672,0.049534872,0.010004773,-0.006741854,-0.024011157,-0.008857897,-0.01604433,0.0034722302,0.01917404,-0.0073898165,-0.009928698,0.05295437,-0.029177895,0.020382699,0.0013208048,0.007961301,-0.018871713,0.02029266,0.016549176,0.053089894,0.040968925,-0.05451602,-0.027347617,-0.0042952877,-0.048269592,-0.0071163783,-0.011644908,0.00077475206,-0.026266873,0.013467874,0.030351432,0.00443632,-0.025148008,-0.010165542,-0.019416386,0.028089805,-0.014731872,-0.023242507,0.0499543,0.008209096,-0.025123859,0.06373895,-0.005395622,0.013741792,-0.02463377,0.016825862,-0.011991971,0.0048200106,-0.0530415,0.0017293628,-0.012009737,-0.040933616,-0.025179064,-0.0036383865,0.0444295,-0.015671697,-0.022757677,-0.05276681,-0.020262614,-0.00012380032,0.038347434,-0.011806153,0.012727215,0.0012221498,0.015287146,-0.0056687887,-0.020268442,0.008518267,-0.035263296,-0.014596807,0.00031347928,0.0089259,0.0021748045,0.027128952,-0.013038716,-0.014266144,-0.0051180227,0.0017992569,-0.011340701,-0.052630454,-0.0023734833,0.014304454,0.010499587,0.04511338,0.03234911,-0.03227508,-0.01347626,0.058083676,0.018687103,-0.026422845,0.038351454,0.014524503,0.047000088,0.00019441814,-0.059952,-0.016093457,0.06596502,0.014038164,0.014312278,-0.021186654,-0.013875064,-0.05613965,-0.047739137,-0.03669154,-0.06030465,-0.07157773,-0.023215288,-0.025423937,0.0077413274,0.0045129415,0.006096203,-0.07312776,0.027501997,-0.08880753,0.047663413,0.005226608,-0.014089332,-0.036046352,-0.05388192,-0.026899315,0.04736553,0.0073943078,0.049376883,-0.013009905,-0.010336312,-0.009807005,-0.011627805,-0.031849958,-0.0113851745,-0.018849019,-0.012837008,0.04471853,0.016701344,-0.023303965,0.044553023,-0.05937814,-0.027119858,-0.028389242,-0.02238715,-0.05657163,-0.041946035,0.020736642,-0.041602626,-0.015971316,-0.010698184,0.037774716,0.044671077,0.009492878,-0.04017863,-0.048546847,-0.040137246,-0.0031512596,0.0054495004,-0.036523785,0.01673893,-0.02949558,0.02510611,0.05798592,-0.01207627,0.01826575,0.040237393,-0.018110925,-0.0022626205,-0.058652226,0.047982033,-0.0061339266,-0.027593885,-0.015230591,-0.008015895,-0.037405122,-0.0022372901,-0.054622114,-0.03443619,-0.030848771,0.007126482,0.027763871,-0.03716615,0.016896013,0.00088588067,-0.013285554,-0.076452695,0.023175651,0.047566243,-0.0021557119,0.029451985,0.008113949,-0.027712971,0.0145136705,0.0037846263,0.013393235,0.009680649,0.010964469,-0.0031907854,-0.052843343,0.047364853,0.059729666,-0.052983206,-0.06492036,0.03327781,0.00043892887,-0.034817923,-0.022217778,0.0073111295,-0.01914638,0.002415855,-0.03430492,-0.00397732,0.025238369,0.043740198,0.0016875851,0.023892865,-0.027541729,0.030732568,0.032430273,-0.023930345,0.0019000887,-0.030281534,0.03835871,0.018643828,0.02624261,-0.0046952018,0.017180424,-0.002664006,0.016245993,-0.03672148,0.03444664,-0.01342051,-0.019212613,0.07759181,-0.04152235,-0.0523792,0.016285587,0.015362486,-0.020770218,0.0050588762,-0.00024451513,-0.028161898,-0.0051369816,-0.024589084,-0.0003532576,-0.009816818,-0.01398122,-0.069059275,-0.047050916,-0.021126742,-0.027857168,0.014154606,0.025524484,0.0054944153,-0.031631164,-0.0041710287,0.072033845,-0.024085207,0.030775147,0.0029972643,0.061917026,-0.062043693,-0.025224583,-0.06255904,0.032398567,-0.030252513,-0.0114290565,-0.021688592,0.0057669687,-0.013612002,0.013733776,0.028760541,0.002801237,-0.051186718,0.0026153997,0.050493784,0.024266789,-0.0014018492,0.0679087,0.027676033,-0.016572557,-0.03921978,-0.014696393,-0.030060831,-0.0751007,0.017811147,0.0034546275,-0.042342562,-0.015137168,-0.035834834,-0.06015243,-0.048327044,0.02133428,-0.029622754,0.022468267,-0.012067221,-0.03239342,0.009727648,0.04430597,0.005417365,0.004892871,0.015158534,0.00043969735,0.026642466,-0.0007032686,0.028879184,0.0015357425,0.03678473,-0.015003753,0.002164228,-0.0036346503,-0.0070952997,0.0046603214,-0.016552571,-0.048928972,-0.01233976,0.0028788515,-0.01671888,0.022208791,0.04102035,-0.051879916,0.0053579626,-0.034616046,-0.024116242,0.043588717,-0.068272606,-0.0473282,0.032884676,-0.0100230565,0.004500875,0.0017360947,-0.07283162,-0.034065403,0.0215943,-0.0016097054,-0.014598525,0.013639239,0.0009481474,0.0035422975,-0.033994608,-0.009327385,-0.02088216,0.01235099,-0.0476037,-0.05955975,0.00875828,0.013035739,-0.0012016026,0.021601975,-0.04203346,0.009799216,-0.03888414,-0.0157117,-0.0046513528,0.020325627,-0.01605025,0.02841669,-0.04775256,0.03341017,0.0060592014,-0.004529497,-0.018253207,0.0127358455,-0.016570034,0.043673195,0.014818943,0.0053839805,0.016797598,0.01569245,0.007379186,-0.023401467,-0.006080894,-0.012520918,-0.0006134807,0.017469568,0.008811724,-0.054660082,0.026951766,-0.010631225,0.023500353,0.0418138,0.008804836,-0.0017401844,-0.011757944,0.0054993164,-0.013452061,-0.015138957,-0.025869317,-0.022693127,0.013491767,-0.048356675,-0.007607128,-0.020129865,-0.031663794,0.038044628,-0.01875279,0.0036578127,-0.06449898,-0.008056412,-0.007140388,0.022334037,0.0036124878,0.034169365,0.02502294,0.023298485,0.039687343,0.037803784,0.018908922,0.0005824133,-0.025480663,0.007420429,-0.0151657825,0.0034031863,-0.024745526,0.002026305,-0.04858756,0.042648617,-0.031155566,0.011905893,0.023387842,-0.038655907,0.012208045,-0.036092617,0.018596832,-0.021185083,-0.0055170753,0.026553452,0.004231479,0.021260994,-0.00878033,0.029129012,0.016392048,0.010184634,0.04078798,-0.007051886,0.061400265,0.029096307,0.0051375027,-0.019556997,-0.0028502077,0.02586045,0.020049717,0.00014944834,-0.016654536,0.011513345,-0.018052602,-0.027479425,0.0033960617,0.03569892,0.02469789,-0.038696393,-0.00010157465,0.000040763145,0.010617322,-0.0075700576,0.049672905,-0.0045264927,0.030851113,0.03023775,-0.0010430919,0.007059373,0.027898902,-0.077222556,0.04216271,-0.025639763,-0.029111614,-0.011026082,-0.08352485,-0.028663816,-0.03167494,-0.012129655,-0.066282086,0.0023546235,0.039990105,0.009793263,0.007850658,-0.024598744,0.010787451,0.053853165,0.058320433,-0.022629432,0.08409555,0.019693878,0.010722006,0.037561305,-0.046531256,0.029454982,-0.026205424,-0.052092705,-0.045776308,0.008655772,-0.009615271,-0.02273601,0.022354562,0.026467856,0.034765236,-0.017726867,-0.079941116,-0.0022445545,-0.022153659,-0.02995532,-0.022871424,0.07442934,-0.023249114,0.006715089,0.0144215785,-0.057436608,0.23430867,0.051369432,0.022595253,-0.00469603,0.0057752016,0.028066564,0.00079111994,0.012915941,0.021363147,0.019971227,0.017704492,-0.03363465,0.036951274,0.04446747,0.016347503,0.06519321,-0.0021234488,-0.0033397174,-0.03332356,-0.056498237,-0.042734854,0.017498532,0.0076723853,0.0037954568,-0.030745665,0.016621916,0.0750677,-0.0158792,0.0074089593,-0.0007794367,0.027645055,-0.03794767,0.015454752,0.0019529985,-0.0132432375,0.0347618,-0.016661452,-0.034399264,0.026833085,0.016640874,-0.028749365,0.015636327,-0.0057183844,0.0133511415,0.033848736,0.026130598,-0.012991534,-0.005527582,-0.016078608,-0.025791403,0.08873205,0.023586642,0.08047559,-0.066417396,-0.031982686,0.00073095725,0.01396485,-0.016443476,-0.014888319,0.03680172,-0.015338428,-0.004503258,0.0026510363,0.010469521,-0.03586411,0.03692142,0.05085201,0.037674695,-0.008906368,-0.03877637,0.0003609497,-0.013034275,-0.03312568,0.013111848,0.0046702847,-0.0109153725,-0.004557251,0.0072462526,0.0060818316,-0.010473614,-0.019340979,-0.006990787,0.0003923099,-0.011907414,0.021416828,0.05123136,0.020077845,0.024938859,-0.06121031,0.062228084,0.034551453,0.04123532,-0.043770168,-0.048051644,0.017187929],[0.04302923,0.006405378,0.0031324637,0.03999336,-0.007426021,-0.022732923,0.034441378,0.0065431627,0.022806874,0.046012152,0.021491561,-0.037994813,0.009615687,-0.0018461061,-0.026967183,-0.03519018,-0.010283011,0.0034238994,-0.0688989,-0.023988996,-0.014493938,0.02585648,-0.08238251,-0.004277875,-0.015970455,0.058937877,-0.040132124,0.003978805,0.053060044,0.056547653,-0.018601129,0.00856364,0.026752044,-0.032687996,-0.036177948,-0.046834804,0.03035474,-0.012685809,0.004168727,-0.029847145,-0.0000020401224,-0.035040922,0.027023284,-0.015696447,-0.05542255,-0.037186164,-0.05345372,-0.042236373,0.004551668,-0.0326332,0.036058366,-0.052719567,0.022652047,0.017604744,0.05216808,-0.019370653,-0.013347419,0.027302532,-0.015070437,0.0152755,0.011493764,0.054901917,0.026097149,-0.055414606,-0.028361343,0.013466578,-0.009392573,-0.018373793,0.020839257,-0.006042811,0.010725332,0.003541224,-0.008504763,-0.02331176,-0.042310823,-0.0013111698,0.032809656,0.034500662,-0.028361414,0.059393637,0.003642706,-0.000795171,0.03519088,0.034648784,-0.016695114,0.01189803,0.03347299,0.084212266,0.004681291,-0.03125406,0.01746457,-0.0062651364,-0.011597413,-0.004624785,0.034789998,0.00043646307,-0.012795042,-0.007122597,-0.044779804,0.018320408,0.040306944,0.0035501018,-0.013221171,0.03598035,-0.049081117,-0.025054647,-0.0075333198,-0.021702763,-0.0063372385,0.0010004084,-0.016487295,0.02020621,-0.007811573,0.04529174,-0.026465096,0.0035210105,-0.02456656,0.04208714,-0.026870206,0.012678413,-0.0104304105,0.023567284,0.021147028,0.03056887,0.009743809,-0.032414187,-0.02822146,0.051143005,-0.029931307,-0.00852095,-0.009018873,-0.011279533,0.01843854,0.010907289,0.08080061,0.0050093937,0.033146985,0.035157874,0.035851702,-0.0073723216,0.06415599,0.0062315124,-0.03712942,0.081883885,-0.027047634,0.041559525,0.0013712184,0.039181285,-0.06244618,0.029693196,-0.04703105,0.0012654393,0.009616855,0.047974437,-0.024419395,-0.0043229247,0.009342916,-0.0052623916,0.008130815,-0.0010782991,-0.015444159,0.028119473,0.0067706024,0.02037563,-0.033372268,0.026490852,-0.038667377,-0.022817446,-0.06460769,-0.002451372,0.031408627,0.012042906,-0.021306306,0.011841598,0.007116067,0.061771158,-0.002594368,-0.012048586,0.030991988,-0.006679983,0.0067934217,-0.003673672,0.0012362365,0.057315364,0.0048212977,0.019026704,-0.004552068,0.004517641,-0.033086255,-0.025240902,0.0027653147,0.02498803,-0.036310833,-0.013314424,-0.0046136905,-0.016228123,-0.041510213,-0.03645128,-0.020451995,-0.042082824,-0.009900506,0.021816587,-0.020905862,0.05628383,0.0078081633,-0.013436449,0.020833192,0.027367527,-0.014456891,-0.007508959,0.02676987,0.036522094,-0.0037074427,0.0016726771,0.01547984,-0.00647639,-0.029332075,0.043254044,-0.0478922,-0.029552909,0.0347751,0.02011627,0.007307122,0.014417943,0.002294723,-0.0032024097,0.04527818,0.05047148,-0.02206234,0.037808105,0.0051429803,0.07890462,-0.0010462662,0.04057735,0.01642759,0.011170781,0.0316586,0.03493449,0.009629975,-0.017592639,-0.014631408,-0.002131901,0.027848989,0.04048478,0.021683283,0.05604813,0.019726109,0.006106925,0.011067559,0.014709458,0.005554768,0.028676547,0.024794463,0.014452428,-0.04924528,0.026304336,0.017431641,0.06212085,-0.036812108,-0.05821351,-0.033352196,0.034384754,0.027362358,0.028248176,0.053924795,0.01918907,-0.00009887536,0.03709097,-0.051212575,-0.021537995,-0.0101997405,-0.022134291,-0.04195436,0.011443257,-0.06849878,0.00055449264,0.011023998,-0.035474967,0.019634861,0.025532126,-0.010527191,-0.053346917,-0.015298138,0.02168783,-0.024020525,0.039347783,-0.009871191,0.0053655235,0.0052769976,0.0075216643,-0.030768273,0.016292462,-0.04261699,-0.0218099,0.020400409,0.0142152235,-0.02572062,0.0043912875,-0.011319928,-0.019964488,-0.018657215,-0.042003628,-0.033687435,0.018461717,-0.013480172,0.0051724385,-0.0013952598,-0.012192272,0.064589664,0.02297512,-0.07578469,0.04139591,0.010589424,0.026534872,-0.057530373,0.044316217,0.037162475,0.030810675,-0.020954346,0.018776353,-0.010450888,0.015388914,-0.03155685,-0.028481489,0.034247488,0.0043815733,0.01673666,-0.069952205,0.0060649193,0.005483283,-0.07415754,-0.033444908,-0.03536491,0.015581824,-0.015393473,0.038915463,-0.019492501,-0.07042274,-0.04499127,-0.017406825,0.027284794,-0.02671943,0.02864552,0.044297427,-0.00992582,0.0056062276,-0.00153355,0.008924562,-0.032726213,-0.0036779854,0.014325876,0.051142443,-0.011940963,0.022213893,-0.0019818123,-0.0040228297,-0.01615719,0.005959092,0.03056308,0.008961131,-0.0079999305,0.030318394,0.021793239,-0.07068439,-0.034679327,-0.09744407,0.02927877,0.009152757,0.009029348,-0.063826405,0.04166877,0.045388322,-0.06909645,0.021143615,-0.0015075875,0.018027516,0.058351908,0.024763236,0.039118018,0.009577998,0.037092485,0.015832046,-0.0046210894,0.01143504,0.05968528,0.034716997,-0.0454288,-0.026948586,0.011405772,-0.021730062,-0.039813206,-0.032519903,0.020086428,0.0027102828,0.019529467,-0.05651421,0.032541,-0.0095628435,0.023617594,0.0009775228,0.025146438,0.01805656,0.03362765,0.06391776,-0.012817354,0.025928663,-0.0066963756,0.0479049,-0.008301532,0.0028792429,-0.036342934,0.019061295,-0.019282985,0.014984445,-0.010689562,-0.004136784,0.0012872398,-0.009736199,0.026620014,0.0017746468,-0.051721044,-0.002628354,0.008309606,0.0032405916,-0.0015883417,-0.009025931,0.0019327829,-0.044006355,0.04360977,0.030251775,0.008680193,-0.023689149,0.009198758,-0.0069558863,-0.024169285,0.025849065,-0.023818778,-0.010687702,0.029076507,-0.03764272,0.009155798,0.007113194,-0.034998197,0.008443229,-0.0071625635,0.023949988,0.040703684,0.020473802,-0.048800923,-0.054621194,0.011362784,-0.07231359,-0.032361355,0.0075610033,-0.005671961,-0.02228831,-0.016703788,0.022922756,0.011230851,-0.012441005,0.008726025,-0.018702602,0.0500613,-0.041080553,-0.0034195646,0.06454574,0.018023362,-0.03387571,0.056732558,0.010285544,-0.003040242,0.011634416,0.020935396,-0.028749285,0.0056536905,-0.04009025,0.0062279543,-0.015152705,-0.012274222,0.010101272,-0.029141594,0.010783506,-0.022177937,-0.037649997,-0.021429652,-0.06702784,-0.011875745,0.017883299,-0.006703495,-0.008346622,0.014605504,0.041521322,-0.0033226819,-0.06252186,0.006955963,-0.016210375,-0.01738775,0.018916206,0.0032449774,0.025361255,-0.009056738,0.017001096,-0.032104485,-0.004223698,-0.0026488255,-0.028196175,-0.050390575,-0.0038725282,-0.023445569,0.0077575664,0.023788678,0.018225892,-0.021149462,-0.024919942,0.075658105,0.024615973,0.00076314795,0.009987023,-0.0584829,0.017546304,0.0016127096,-0.021198595,-0.017781261,0.0701624,0.02857992,0.0077099167,0.018786177,-0.0026373852,-0.0877909,-0.04071153,-0.0070008873,-0.042811356,-0.052373234,-0.014681162,-0.019797826,0.033436198,0.012581242,0.011510845,-0.010642949,0.0001459469,-0.04871663,0.021894315,-0.021209309,-0.019969419,-0.048588645,-0.019817607,-0.0032405015,0.07600865,0.009997478,0.041094054,-0.054198384,-0.0012682308,0.010028078,-0.011330705,0.009299723,-0.033761468,-0.02538483,-0.010453196,0.016640363,0.027894659,-0.01864356,0.023446053,-0.037188016,-0.038396984,-0.032926533,0.009826742,-0.031728294,-0.04390403,0.027595509,-0.03619063,-0.035201028,0.0054889885,0.04090067,0.027851794,0.025147036,-0.00888422,-0.03909041,-0.029439563,-0.015512043,0.033297636,-0.004318385,0.02367471,-0.03298949,-0.014263312,0.05490813,-0.03541524,0.036280937,0.06433376,-0.02006638,-0.00056808395,-0.033311278,0.037581313,0.013588581,-0.037821367,-0.013682048,-0.029968375,-0.026901055,-0.013541112,-0.036972713,-0.0769205,-0.015818724,-0.0017829456,0.056116596,-0.014036462,0.040009197,-0.0063958643,-0.015333587,-0.05255664,0.04603066,0.04121239,0.015202775,0.055817153,0.01609408,-0.031285163,0.021467842,0.009834322,0.0038403121,0.016983641,0.025750695,0.005644822,-0.05073185,0.04843528,0.055702467,-0.061143868,-0.058169305,0.019557342,0.010958711,-0.05234068,-0.038914215,-0.0076615773,0.0003082139,-0.008011848,0.0068304804,0.0052413065,0.010654734,0.045737382,-0.0034010138,0.013016661,-0.023359312,0.028189933,0.047218878,-0.04032642,0.052113086,-0.049761266,0.014746875,0.016200596,0.009824261,0.036652815,0.023571465,-0.04266355,0.0104971,-0.03904965,0.050906092,-0.0082830135,-0.014165353,0.058604654,0.004024523,-0.03609832,-0.0028279033,0.030647727,-0.003429832,-0.015255453,-0.027505713,-0.01196425,0.005397405,-0.0015165792,-0.004119227,-0.010529599,-0.018074518,-0.05774039,-0.042276938,-0.027726037,0.018493405,0.0036235303,0.034199342,-0.00041821922,-0.009014492,-0.0018409361,0.068133414,-0.057538565,0.028225305,-0.013521166,0.05374973,-0.0424734,-0.04012113,-0.028068207,0.03206812,-0.04510909,0.0007578582,-0.042423833,0.0064090323,0.012618404,0.022550143,-0.0012632717,0.04137681,-0.013243739,0.0020458472,0.026661994,0.03447628,0.003292416,0.047911555,0.027687827,0.018206533,-0.0054248343,-0.019980596,-0.032331575,-0.06891379,0.024018629,-0.002168409,-0.02477555,-0.02766149,-0.019972896,-0.029746585,-0.04971268,0.009205311,-0.004385166,0.021090837,-0.027543286,0.012305414,0.0002785483,0.012952189,-0.009533423,0.0048964648,-0.012165015,-0.010487496,0.013550405,-0.018176928,0.023446728,0.008451782,0.041636676,-0.019935323,0.0017056568,0.025153637,-0.024393473,-0.0059209247,-0.020048218,-0.03212989,-0.025947984,0.0040788073,-0.00027858143,0.029943718,-0.004088908,-0.023401728,0.03573241,-0.012730138,-0.013255624,0.01155935,-0.07317304,-0.05071974,0.008622341,0.01394847,-0.02252886,-0.020773018,-0.06947892,-0.039147194,-0.006739388,-0.015958717,0.025938338,0.008628315,-0.030162593,0.022030909,-0.039451424,-0.023801072,-0.010344944,0.02292378,-0.025072478,-0.05986634,0.03256194,0.039144997,-0.0011056311,-0.013547688,-0.041593254,0.0012943692,-0.027401773,0.0013066214,-0.027568178,-0.0011170106,0.010901384,0.024596807,-0.05498233,0.051310595,-0.013124954,0.0079536,-0.016200745,0.00021847834,-0.0066882228,0.06262115,0.0031008115,0.041163478,0.022989694,0.0072039417,0.024008084,-0.016614331,-0.0077729076,-0.0038128407,0.016819239,-0.0025062403,-0.025285834,-0.048049785,0.02802329,0.01189034,-0.01824228,0.04762334,0.03150663,-0.041261293,0.011531016,-0.0014008614,-0.032135807,-0.009352216,-0.023890879,0.0041136313,-0.000063835905,-0.013192702,-0.024839299,-0.029765485,-0.034228414,0.02203435,0.007926477,-0.011947538,-0.011569462,0.013340328,-0.020659698,0.024195412,-0.0018620589,0.03416238,0.01954332,0.033772264,0.016986495,0.02194007,0.021149166,0.009803393,-0.026531065,-0.016112179,-0.0102813225,0.017957142,-0.019236723,-0.022769438,-0.05175794,0.027382037,-0.047669232,0.00042982266,-0.003154812,-0.037767813,-0.00829532,-0.020409489,0.02216639,0.002968396,-0.00019752851,0.010570886,-0.016112095,0.0093816705,0.004220321,0.019280538,-0.00852224,0.008083269,0.04676309,0.0008927786,0.04758006,0.038590863,-0.020227034,0.0076365247,0.019268483,-0.0006225128,-0.02417889,0.011907616,-0.052997183,-0.011577792,-0.014569002,-0.0043847556,-0.003866078,0.026714416,-0.007853233,-0.031990036,-0.0073954933,0.002337858,-0.018431962,0.06107434,0.039593905,0.023750275,-0.00037506863,0.0024239402,0.025118819,-0.018974079,0.03276354,-0.06487595,0.04709794,-0.07041799,-0.05914249,-0.011809567,-0.059049785,-0.0067954753,-0.011352116,0.008150078,-0.05501072,0.01552609,0.031019637,-0.0032163695,0.00745938,0.010465924,0.006172096,0.046623245,0.053295776,0.011361718,0.07045603,0.007782912,-0.017865658,0.023087915,-0.056105357,0.00010883885,-0.043161146,-0.037080724,-0.04026962,0.011577144,-0.034452606,-0.061278984,0.04910267,0.03369466,0.038945228,-0.047014087,-0.07382497,0.001553467,-0.0013783273,-0.0036979986,-0.007861844,0.06726181,0.025319915,-0.004052336,0.0363541,-0.06812616,0.2634154,0.021923708,0.026866324,-0.004822027,-0.0008582483,0.010631165,0.016917717,0.0011536648,-0.010155691,0.000278932,0.04840688,0.010473639,0.006650307,0.031794384,0.014981422,0.04722268,0.0036231498,-0.02139682,0.005047813,-0.05861888,-0.03300807,0.019148272,0.013015625,0.008737463,-0.0090599945,0.01092598,0.053514533,-0.010372638,-0.016324898,0.0005622295,-0.007897622,-0.03739076,0.019083846,-0.0341413,0.011574935,0.03128999,-0.014621588,-0.04946455,0.020503305,0.010878305,-0.020721523,-0.0060332236,0.020411717,-0.0019701554,0.024852408,0.052390095,-0.022056287,-0.023882488,-0.0003478082,-0.042147998,0.053709462,-0.010283514,0.045672834,-0.039556164,-0.030777698,0.017613295,-0.007834187,-0.02172102,-0.040869355,0.0074110487,-0.0021272835,-0.020263983,-0.002336301,0.0017544285,-0.031238755,0.02762992,0.052238844,0.0058542136,-0.019699275,-0.015224338,0.008682298,-0.005374673,-0.0026039304,0.0051607406,0.016906375,0.009795242,-0.031551275,-0.01678653,0.029875638,-0.027457446,-0.019724892,-0.0038940369,-0.008079071,-0.003408351,0.035912875,0.039929926,0.019183366,-0.00097074226,-0.06605967,0.036651764,0.040467016,0.025222987,-0.02137329,-0.016122585,0.001425597],[0.025799941,-0.030281331,0.01425214,0.043064468,0.006967636,-0.032098137,0.031197365,0.0026887413,0.036838602,0.053904694,0.028879218,-0.013447511,0.017735068,-0.016259808,-0.03496867,-0.023718629,-0.002158782,-0.030808691,-0.048166104,-0.016886985,0.0005218781,0.009085557,-0.07913585,-0.0019442814,0.02449576,0.052171152,-0.023531958,0.001477638,0.041342407,0.04697732,-0.032506768,0.002054618,-0.012856458,-0.034413293,-0.0369313,-0.04497895,0.015799219,-0.014593665,0.004243393,-0.04411349,-0.01629309,-0.024098573,0.039604586,-0.016368238,-0.07013973,-0.017775945,-0.022098467,-0.0037397146,0.008823295,-0.042097468,0.0071906033,-0.03983984,0.029179705,0.004306114,0.017420696,-0.013609934,-0.015260325,0.032547552,-0.0120772235,0.04960545,0.031872064,0.035482638,0.04158142,-0.06980362,-0.041455444,0.0137647055,-0.0007507159,0.003169188,0.020451812,-0.022849219,-0.00046832184,0.025336927,0.0039531374,0.003327377,-0.031000292,0.006240282,0.01914083,0.04283384,-0.037860498,0.038059868,-0.016418997,0.0120204035,0.055587467,0.037304297,-0.028647318,0.015383751,-0.0012638667,0.054459717,0.0020479348,-0.02934119,0.024191998,0.021965684,-0.010049017,0.014855269,0.026944067,0.009027832,-0.015028123,-0.013049176,-0.021163104,0.005168564,0.024536004,0.01815151,-0.004109465,0.057190645,-0.06394759,-0.011723639,-0.0014478257,-0.0097838845,0.00008250171,-0.009323197,-0.013090215,0.005808832,-0.015215899,0.01471531,0.004468556,-0.0028421972,0.006466681,0.0052301893,-0.04016647,0.010515849,0.02416032,0.017366193,0.007017433,0.010392893,-0.00453818,-0.017002802,-0.035213433,0.034804083,-0.015008275,0.0059914584,-0.034772586,0.017378287,0.025647704,0.018635724,0.07980958,-0.0059083654,0.028094461,0.038587026,0.009187754,-0.029437464,0.08091632,0.010906203,-0.027615663,0.082295395,-0.01703746,0.039166268,-0.006779332,0.04985564,-0.03145744,0.038954712,-0.062339384,0.0017616886,0.037203565,0.0288399,-0.030336183,0.032957137,-0.012559881,0.030686332,0.008286562,0.022570401,-0.020735327,0.0012102183,-0.006353696,0.0019460235,-0.046331238,0.023542183,-0.03953871,-0.022269126,-0.027040835,-0.030033639,0.0114849815,-0.016314354,-0.0038528156,-0.004732525,-0.010865623,0.059699614,-0.013589547,0.017900445,0.020122856,-0.0027953102,-0.00423686,-0.00045702676,0.0062330607,0.046314348,0.034131065,0.012614111,0.01254349,0.00975057,-0.033256598,-0.03571652,-0.010239096,0.047655854,-0.028054329,-0.006614714,-0.008040554,0.0005213472,-0.029971808,0.0051431754,-0.029254047,-0.05364905,-0.00484852,0.05670118,-0.0335302,0.03967689,0.008749736,-0.034766544,0.01893098,0.021825159,-0.013963175,-0.0021065716,0.016504524,0.039370414,0.0018028637,-0.020613695,0.024582062,-0.019468382,-0.06227381,0.045469467,-0.0480485,-0.01599416,0.014966473,0.01129866,0.030399391,0.008924437,-0.008443831,0.0024472189,0.035239104,0.039132707,-0.014454206,0.064116806,-0.009248734,0.041262258,-0.0008527304,0.038308322,0.026162969,0.0419336,0.028373621,0.020363877,0.00334426,-0.031894863,-0.03359933,0.01470321,0.054093704,0.039983038,0.028535798,0.041915223,0.02053734,-0.040728014,-0.011171521,0.01708922,-0.005487277,0.045585778,0.002628088,0.011494361,-0.08026168,-0.0061860066,0.037680916,0.024926595,-0.028263498,-0.040285267,-0.026142713,0.04159836,0.01442388,0.02248421,0.055372957,0.015494792,-0.01603268,0.0043841377,-0.03620119,-0.03845662,-0.028623754,-0.036341917,-0.06519344,0.003189236,-0.064549044,-0.0029428573,-0.009562258,-0.02857088,0.014839637,0.0043877745,0.003317808,-0.035226326,0.0042968392,0.00037355337,-0.009672965,0.03271121,-0.0034928361,0.040938966,0.013860569,0.012033434,-0.019017927,0.0015427499,-0.009334144,-0.02823237,0.030408269,0.030102275,0.0037597679,-0.0027304257,-0.023949647,-0.04465586,-0.0024380453,-0.027441498,-0.017006954,0.009629019,-0.008010791,0.009148558,0.004185959,-0.009363277,0.07404652,0.033480823,-0.07698504,0.0050655524,0.019688714,0.021720871,-0.039727345,0.032787964,0.014549271,0.023029294,-0.038400665,0.012307293,-0.018209228,0.017378043,-0.013377289,-0.021462409,0.022899585,0.0117188,0.036288455,-0.08510461,0.0231152,-0.0011358843,-0.07748594,-0.04142004,-0.029484866,0.006272604,0.0038356392,0.0051031983,-0.010826593,-0.035336506,-0.012352055,-0.025703702,0.054007135,-0.05415932,0.035477325,0.049029924,-0.024813727,0.012986642,0.025506923,0.0071762605,-0.03509771,0.0054322686,0.021407748,0.05361521,-0.018725311,0.039603658,-0.01114951,-0.023357451,-0.019752339,0.03463306,0.029513396,-0.008465588,0.010731698,0.009638158,0.00095773285,-0.068271,-0.023776166,-0.08317872,0.016449431,0.033509128,0.017546356,-0.034909654,0.05051654,0.035453767,-0.06965939,0.0073313424,-0.017596625,0.028155096,0.029442249,-0.007958452,0.04239167,-0.040043015,0.035997625,-0.012604734,0.008711203,0.017755259,0.045884296,0.04228896,-0.011813458,0.008348779,0.042863518,-0.031727094,-0.036555637,-0.021504637,0.022934927,0.011722457,0.0010303762,-0.03713662,0.044023257,-0.01411502,0.04454452,0.014944887,0.04971461,-0.017596325,0.05255391,0.028787062,0.0095011,0.008332324,-0.020589678,0.0656937,-0.011098604,0.027207863,-0.051057037,0.0300404,0.014684422,0.023317153,-0.0020368085,0.015520784,-0.024438951,-0.011186311,0.05336668,0.029581456,-0.08467377,-0.0043165786,-0.005985417,0.015916143,0.004063751,-0.011107903,0.03340321,-0.068316065,0.061713006,0.0029301657,0.020794302,-0.020817703,-0.013951753,-0.027597178,-0.0332539,0.0034220049,0.005801622,-0.021909723,0.046967074,-0.02198541,0.028482955,-0.008801188,-0.02782221,-0.004669563,-0.019180944,0.02331367,0.0400157,0.028213225,-0.03643737,-0.044105157,-0.013855672,-0.031412955,-0.0068544876,-0.013615686,-0.007195115,-0.03097076,0.0025747528,0.016789293,-0.00094595744,-0.0155000985,0.006848287,-0.011001599,0.025273439,-0.02088529,-0.025337523,0.014971117,0.008335465,-0.046027966,0.075751424,0.008683366,0.010451299,-0.014710318,0.026586358,0.0054639457,0.009005199,-0.02082946,-0.00016601518,0.0034293262,-0.0033409558,0.005154706,-0.020497566,0.020974759,-0.014102522,-0.0144574,-0.02966491,-0.052163742,-0.020634431,0.022421604,0.01375871,0.021464203,0.018979995,0.020976214,-0.0053196405,-0.042112436,-0.0065860283,-0.020798434,-0.027949281,0.008951865,-0.016867455,0.044489052,-0.007358604,0.03074985,-0.03766021,-0.017997522,-0.00706031,0.0022713782,-0.027320936,-0.010922165,0.010445928,0.0036619026,0.01192806,0.0077222004,-0.025385777,-0.0329891,0.066481635,0.006827707,-0.012131895,0.04005539,-0.040924694,0.027407726,0.047707736,-0.037963014,-0.026403284,0.06185065,0.015330231,0.038981892,-0.0018776837,-0.03075897,-0.06706774,-0.035631023,-0.0011069415,-0.05228814,-0.040819876,-0.025638556,-0.019943388,0.009780708,0.00034459808,-0.004869756,-0.01602436,-0.0057532587,-0.083389506,0.022446198,-0.0014507929,-0.032306112,-0.039230067,-0.022667583,-0.032951314,0.075102985,0.016301367,0.017742064,-0.071532056,-0.0074953404,0.011164612,0.009428867,-0.010717397,-0.02071292,-0.0031322879,-0.020186506,0.025841752,0.031199636,-0.010220154,0.022788066,-0.054794684,-0.044654388,-0.03931535,-0.0026092941,-0.047805633,-0.013729621,0.03994983,-0.020075787,-0.033961516,-0.014015747,0.03719501,0.027310494,0.033883125,-0.033820543,-0.08812314,-0.044935513,-0.05434987,0.018041503,-0.0056032855,0.015779309,-0.024318544,0.011912241,0.03014873,-0.002071636,0.022159984,0.059718635,-0.016017746,0.0030465727,-0.032424062,0.07092754,0
+8000
+.028415835,-0.038253084,-0.00568318,-0.0014958801,-0.035984594,-0.0018138313,-0.056670133,-0.03263728,-0.05290313,0.003114821,0.037379354,-0.0005315277,0.033840965,-0.024360368,-0.010648262,-0.07006617,0.04875584,0.062231235,-0.0031814321,0.044574242,0.010641138,-0.005644509,0.028991027,0.013219228,-0.007028809,0.0138308965,0.018152611,0.0008777177,-0.027229087,0.039354626,0.06072889,-0.025891358,-0.03182199,0.014951675,0.001910261,-0.058762968,-0.03576416,0.002834729,-0.009098644,-0.01158487,0.011932968,0.001340626,-0.0056718383,0.01223967,-0.0010503973,0.03196818,-0.010250773,0.018987905,0.041437622,-0.03768219,0.0437875,-0.012821003,0.010421837,-0.0037088864,0.0019447084,0.03444299,0.027225848,-0.012918807,0.023550125,-0.055598695,0.0148938205,0.0031331414,-0.034629583,0.047856074,0.0063720504,-0.017676927,-0.00081171043,0.020231854,-0.0068009533,-0.003259606,-0.018034063,-0.017457806,-0.010607462,-0.015287422,0.012948049,-0.011682483,-0.010602026,-0.05682273,-0.05081674,-0.045451503,-0.024531627,-0.010775164,0.008815521,0.019214598,-0.021235626,-0.013634282,0.0364759,-0.04500436,0.041331645,0.004768683,0.06411012,-0.058774572,-0.023200084,-0.04871412,0.033982698,-0.0451758,-0.0029639471,-0.04086864,0.006411179,0.014271355,0.013292163,0.000609176,0.00045879494,-0.022012657,0.025960734,0.03472624,0.040093765,0.028837966,0.035934582,0.02048628,-0.0008042208,-0.0068205646,-0.012915068,-0.025970558,-0.04533261,0.047617894,0.0044866805,-0.018245092,-0.025262054,-0.032675546,-0.007880096,-0.0027745182,0.0001273583,-0.008459652,0.009866892,-0.043063153,-0.0060647903,0.005161635,0.050337337,0.004766056,0.006167426,-0.035632413,0.030719686,0.020631721,-0.0046836585,0.0018138096,0.01409498,0.052468326,-0.005511284,-0.0019382967,-0.0030159533,-0.010824241,-0.025863761,-0.0023456146,-0.016968707,-0.025656298,0.018140165,0.007140345,0.038877208,0.02208975,-0.044749808,0.026848901,-0.022434777,-0.013713943,0.018571595,-0.07604659,-0.029397357,0.032855436,-0.0043660337,0.002585386,0.008496242,-0.07551091,-0.033696555,-0.019959187,-0.009990112,0.012080275,-0.007279397,-0.002459344,-0.005041143,-0.042711366,-0.01296351,0.007391351,0.03815207,-0.028872192,-0.0695567,0.04019536,0.029074425,-0.0007735808,-0.00033306947,-0.02087993,0.0029710566,-0.0296552,-0.022962492,-0.014770005,0.012248214,-0.020730143,0.023108417,-0.041693233,0.06870093,-0.0071065603,0.02424212,-0.028190413,-0.0035028856,-0.00036705984,0.05353521,0.0064597414,0.019830732,0.045298617,0.005497521,0.017012905,0.0046591647,-0.013483231,-0.025590848,0.03465988,-0.0041268906,-0.0006977939,-0.02774381,0.04257754,-0.016615735,0.014122341,0.008028421,0.031049505,-0.009997297,0.0046439944,-0.0031094565,-0.0038310636,-0.018453151,-0.00647678,-0.038934294,0.033345215,-0.026692085,-0.020585356,-0.04211414,-0.025607083,0.033766065,-0.00095410936,-0.009289228,-0.032576896,0.01984204,-0.028914247,0.014140467,0.011841913,0.007446776,0.04759264,0.010456539,0.020767506,0.016394738,0.03149432,0.01722475,-0.02045143,-0.037159633,0.02057082,0.013876012,-0.02226208,-0.012215722,-0.04460974,0.04249524,-0.030204358,0.006807871,-0.014207316,-0.042339988,-0.009097138,-0.04892173,0.02235762,-0.023001142,-0.0027397815,0.011735682,-0.024192514,0.0061074966,-0.0055304808,0.027559271,0.010253543,-0.006986725,0.04467202,-0.0066944254,0.06173438,0.03106651,-0.020395577,-0.016879054,-0.013346151,0.01385992,-0.038694315,-0.0051426194,-0.04762926,-0.015787918,0.0014741104,-0.0018537124,-0.032915395,0.017731348,0.013303727,-0.069587275,-0.012410598,0.025672212,-0.0097492775,0.02173755,0.027705973,0.0023160214,0.010396036,0.015458935,-0.007933372,-0.010482814,0.019347228,-0.091234766,0.027897933,-0.038509816,-0.04015914,-0.038317308,-0.03850729,-0.020441921,-0.011858506,-0.0063231494,-0.045201838,0.019485902,0.0593781,0.013101839,0.011311709,0.0008234621,0.008435271,0.05481633,0.06629589,-0.01820672,0.10606002,0.0025500548,-0.004105466,0.028977064,-0.038325034,0.0345599,-0.03661387,-0.039899636,-0.049756084,-0.018020626,-0.029667357,-0.04883261,0.04817206,0.0286053,0.02111643,-0.055183295,-0.06878048,-0.010771144,-0.0065676747,-0.026902491,-0.021628996,0.05502369,-0.009421211,0.012534022,0.015714804,-0.07155519,0.2688887,0.062945515,0.010771809,-0.007228055,0.00309373,0.013434652,0.009140883,-0.0056718886,-0.023236359,-0.0104406085,0.03397666,-0.00369079,-0.005305733,0.052172765,0.017125657,0.024783868,-0.012159833,-0.0015169145,-0.01660498,-0.043833703,-0.018962625,0.01730669,0.019987335,0.017464304,-0.035474014,0.008737893,0.06813409,-0.017300515,-0.0030932378,-0.0017641304,-0.0030423729,-0.027952334,0.02125759,-0.03866588,-0.053398512,0.031197766,-0.030259127,-0.031661686,0.022837235,-0.021834215,-0.028006498,0.00027781923,0.018064784,-0.012974394,0.040548388,0.03281225,-0.003397778,-0.0040052654,0.0019013368,-0.026651649,0.06695567,-0.021519737,0.039311655,-0.04484758,-0.023409028,-0.011485604,0.026034571,-0.018552087,-0.039007224,0.0036921757,0.007438663,-0.010653871,0.019295685,-0.011283206,-0.024688113,0.014852878,0.031625036,0.026173297,-0.013938958,0.0010371531,0.0031307144,-0.02476434,-0.020439027,0.004225215,0.03307334,0.00002548389,-0.014434169,0.013497631,0.028832883,-0.03243401,-0.023080861,-0.021550061,0.0040924614,-0.007666032,0.006087459,0.06685568,0.023140905,0.010282265,-0.037925202,0.038578518,0.044032197,0.029166162,-0.021330712,-0.06002395,0.015120982],[0.045988977,-0.01028201,0.00841218,0.04250043,-0.024860578,0.004525737,0.015620924,0.014707948,0.018267112,0.03898407,0.020424973,-0.029999614,-0.0015163333,-0.017976498,-0.041590683,-0.005086589,-0.011914192,0.00044361516,-0.045698192,0.003539678,-0.018433843,0.0034713969,-0.10010737,0.0056570047,-0.0016242315,0.065841824,-0.00678662,0.022837548,0.03401776,0.043517936,-0.014861659,0.007768464,0.006537217,-0.037261747,-0.03953975,-0.04764585,0.027515221,-0.011002206,-0.024737073,-0.01835133,-0.0072504897,-0.04082445,0.058419973,-0.021159496,-0.056379996,-0.031880837,-0.051925648,-0.027546441,0.005531304,-0.029167341,0.017186753,-0.048045438,0.026724923,-0.022645123,0.05243103,-0.0048872964,-0.042193137,0.033514004,-0.025378998,0.02832809,0.042693187,0.044007182,0.028582497,-0.061028436,-0.028661795,0.018319564,0.01685054,-0.0024404773,0.013061939,-0.0030176367,0.007885876,0.011207085,0.011186313,-0.015323482,-0.03156309,0.009137467,0.027977604,0.015959412,-0.057603907,0.060200706,-0.018535728,-0.0049296124,0.038098812,0.040431116,-0.037472196,0.00026477646,0.034239095,0.060858414,0.021121236,-0.017494513,0.006664657,0.0018849217,-0.022386694,0.0035596273,0.050147124,0.0061121234,-0.009960529,-0.004378733,-0.028715858,0.019849654,0.044362932,0.01555168,-0.011272608,0.056904424,-0.04595536,0.0021035864,-0.027717603,-0.0013356546,-0.0071973023,-0.0020921847,-0.0077576865,0.018534897,-0.008632734,0.010999671,-0.003245727,0.013195129,-0.035399605,0.04440472,-0.026139827,0.0072906273,-0.0039256667,0.010061784,-0.0039471877,0.025516573,0.021239616,-0.030209754,-0.042993832,0.056849577,-0.031884067,-0.018638311,-0.016824506,0.008788659,0.01714294,-0.006015963,0.08229989,-0.014164049,0.011528935,0.026522039,0.029575916,-0.017911587,0.045621194,0.004434285,-0.046127837,0.094649926,-0.03171314,0.046199884,0.0013137588,0.024059065,-0.050785895,0.04285264,-0.04415316,-0.006269914,0.02002971,0.039390683,-0.04898986,-0.002133103,0.01704648,0.022325393,-0.0019121761,-0.007985555,-0.016077982,0.0046035056,-0.002367295,0.03401239,-0.04333504,0.013564255,-0.043767042,-0.007962612,-0.028995289,-0.0075291893,0.002073815,-0.014322764,-0.0344655,0.0028806506,-0.03716314,0.04833716,0.0025825812,-0.019036556,0.048119817,0.0040295245,-0.0058984216,-0.018053232,0.0022124813,0.06805334,0.023501819,0.017487423,0.022212371,0.008231975,-0.0391104,-0.02186136,0.00533711,0.04534588,-0.03949217,-0.014612019,-0.015893422,0.0038429245,-0.026673468,-0.013049524,-0.0031674907,-0.055307023,-0.00475411,0.038891733,-0.02628978,0.03458108,0.0043374305,-0.02377307,0.0072005144,0.033691928,0.00404814,0.013794602,0.03789089,0.04921065,-0.0042085573,-0.0066294624,0.03652822,0.007778919,-0.04367796,0.052867223,-0.040955126,-0.0048991702,0.0215008,0.02664533,0.009151527,0.028508496,0.000647188,-0.021972256,0.033511866,0.054015018,-0.0068599596,0.034200862,-0.013113891,0.03889156,-0.010415797,0.035048127,0.022071823,0.022117894,0.054337014,0.029489433,0.027247146,-0.0059436327,-0.047946144,-0.002162828,0.041978147,0.03478602,0.027542202,0.038987767,0.026381949,-0.015294625,-0.011459665,0.008014831,-0.021168677,0.0122388005,0.017451204,0.011711266,-0.08169137,0.008860381,0.03569745,0.05796762,-0.05204348,-0.033030692,-0.00041809276,0.05112542,0.014003778,0.037970398,0.04990104,0.019574948,0.011298184,0.02373678,-0.018149344,-0.026275445,-0.012171469,-0.04346311,-0.045278218,-0.0031890091,-0.036627386,0.013477749,-0.01723582,0.00024831496,0.030247346,0.01176997,-0.0053934366,-0.05763575,0.021686302,0.02305828,-0.007997154,0.02544106,-0.021570541,0.028298615,-0.0039133187,0.0061833262,-0.031592786,0.005898153,-0.013143179,-0.031404633,0.0039148508,0.026421767,0.0051367483,0.01019958,-0.012258487,-0.001334535,-0.031034956,-0.040738408,-0.00071620906,0.0070512705,-0.05025835,0.018587127,-0.02137206,-0.02048531,0.044668596,0.018385,-0.07189759,0.015637223,0.00006109331,0.028298384,-0.052481268,0.013851983,0.025618235,0.037293535,-0.04056363,0.022884335,0.011299979,0.03071301,-0.017708804,-0.027129695,0.042837724,0.005943273,0.026827874,-0.07662523,0.0064357887,0.012519037,-0.07611714,-0.039989855,-0.0027281647,0.013064403,0.0040716394,0.029898375,0.0145050315,-0.040077172,-0.032160655,-0.0062971283,0.026413316,-0.015499549,0.03455303,0.05032225,-0.02145115,-0.00586626,-0.0024459339,0.0110352,-0.045434188,0.007355597,-0.0003471206,0.059972547,-0.012276114,0.015795693,0.028851813,0.010405997,-0.04784682,0.026238723,0.052849483,0.008363139,0.015331371,0.046039782,0.0068520503,-0.06435613,-0.0220626,-0.079075925,0.027882718,0.02709808,0.014888645,-0.05519922,0.0637049,0.025804343,-0.040739752,-0.0024631557,0.013613485,0.03234111,0.043520458,-0.010967189,0.060017392,-0.026539458,0.021041881,-0.002235862,0.013229212,0.013811081,0.036196273,0.021268096,-0.019353596,0.027532957,-0.005557677,-0.033825066,-0.0179234,-0.037827432,-0.0009177521,0.010176192,-0.005201797,-0.026676789,0.029668795,0.007945124,0.017298872,0.020370018,0.03543412,0.0080937315,0.03340493,0.046491586,-0.0060234074,0.012034333,-0.002690437,0.06303818,0.0033681162,-0.008293125,-0.017393028,0.021853585,-0.011078192,0.043618303,-0.0063225264,-0.0077450788,-0.0056038243,-0.003772371,0.042039186,0.026820786,-0.05400642,-0.0029233103,0.0044510295,0.007230613,-0.023333328,-0.0036899643,-0.00965783,-0.050448935,0.03891859,0.0034906594,0.00050058076,-0.038979154,-0.010964686,0.014994312,-0.02876683,0.021957446,-0.0074581765,-0.0010369786,0.045133974,-0.01773304,0.017585147,-0.0009362754,-0.018859718,0.0052887285,-0.007185083,0.008546121,0.034239694,0.031173764,-0.05248615,-0.02164626,-0.01669527,-0.0458424,-0.01399284,-0.021463685,0.006922141,-0.02887018,-0.002259058,0.022754394,0.014287354,-0.036494266,-0.00065911387,-0.014342892,0.020474557,-0.029749354,-0.0065248213,0.04645072,0.009723836,-0.05064545,0.047491223,0.03193686,0.007042041,-0.03357742,0.009328885,-0.0049904864,0.018365135,-0.034166183,0.016821846,0.0006565798,-0.032547474,-0.018027421,-0.036646932,0.026003709,-0.025580363,-0.03779934,-0.04805462,-0.03859317,0.011190796,0.03293002,-0.02462989,0.016629329,-0.0049905917,0.02501232,-0.018194545,-0.018181544,0.009352977,-0.043810226,-0.04175022,0.0056887507,-0.002654129,0.025087157,0.009311528,0.03392975,-0.003115053,-0.018950146,0.012361515,-0.010365843,-0.0526626,-0.006003277,0.017404875,0.010254361,0.021004096,0.0020690856,-0.029374342,-0.02933392,0.042487502,0.008292114,-0.024738992,0.049451053,-0.012745695,0.0041289413,0.0012710751,-0.035679437,-0.027397877,0.071787395,0.008081641,0.028008124,0.021291403,-0.018758858,-0.07972491,-0.04107714,-0.018099638,-0.07824381,-0.06925384,-0.009077691,-0.026356028,0.007042664,-0.0014713036,0.012532288,-0.050050326,0.012462927,-0.068359114,0.027313445,-0.020471282,-0.013345446,-0.04160469,-0.012791113,-0.002541748,0.04871297,-0.0025277052,0.046476208,-0.031963296,-0.007909456,-0.0040290994,-0.025250683,-0.01363709,-0.030640766,0.013347701,-0.0255563,0.012584428,-0.0039163316,-0.02531117,0.030004455,-0.05705459,-0.041287243,-0.020530125,-0.007898583,-0.039953966,-0.03370229,0.041143965,-0.012653176,-0.013816178,0.01100362,0.043579277,0.024526328,0.007783274,-0.016786981,-0.053107545,-0.032267395,-0.034746103,0.013948072,0.000072938354,0.004019624,-0.010475981,0.022290017,0.044334866,-0.015588312,0.015008648,0.042208977,-0.017263258,0.0017769708,-0.04412546,0.050825104,0.0039461064,-0.060770858,-0.013592436,-0.010220138,-0.02103776,0.011238986,-0.023778265,-0.04619909,-0.04394482,-0.017197598,0.044638325,0.001221911,0.019531257,0.012985147,-0.0051628593,-0.06204204,0.031181913,0.036487583,-0.0066446057,0.05128629,0.018440628,-0.011106834,0.031039996,0.010605639,0.014665468,-0.0047814255,0.023477647,0.022342877,-0.034505773,0.06902534,0.058656774,-0.033910803,-0.059912518,0.022194294,0.0067091803,-0.04307334,-0.05202683,-0.016502935,-0.021828957,-0.0054278495,0.0027975868,-0.025653217,0.002827167,0.032742523,-0.024095077,0.011311575,-0.014226749,0.045380425,0.039246544,-0.046134017,0.035101432,-0.04191259,0.01448971,0.022846458,0.02486264,0.027498545,0.029996755,-0.014318562,0.02870542,-0.021870373,0.05911239,-0.01896461,-0.021849906,0.05682331,0.0044317287,-0.045982573,0.019183375,0.032717377,-0.008204898,-0.0031786782,-0.040196408,-0.0017186054,-0.011927724,-0.0008932562,0.008243873,-0.013427833,-0.01001437,-0.07438107,-0.049639486,-0.054080702,-0.015859516,-0.024975915,0.038910642,0.008494917,-0.0046793893,-0.009600828,0.06552863,-0.051872622,0.043887734,0.004840861,0.056362003,-0.054134935,-0.025014503,-0.0329614,0.044262275,-0.0136386445,-0.012864634,-0.03265603,0.021710563,-0.0016999826,0.017422853,0.02576951,0.017980866,-0.038630072,0.005211982,0.058426864,0.037151385,0.0076541863,0.047412697,0.026347635,0.023251383,-0.019315988,0.000315798,-0.018626159,-0.045127336,0.020046093,0.0016713365,-0.034362018,-0.01922237,-0.03843783,-0.03567895,-0.03717991,0.03167839,-0.0046893414,0.045321867,-0.0076143555,-0.025585482,-0.0051477645,0.05852175,0.012387972,-0.0025063131,0.0027926639,0.008386627,0.020881273,-0.023742743,0.0082598515,-0.00461134,0.051615305,-0.015019095,-0.011615687,-0.0047579436,-0.016991958,-0.0016900611,-0.0058548655,-0.03845423,-0.020429851,0.0015071242,-0.022753043,0.030842287,0.02392154,-0.038616013,0.026302489,-0.036907542,-0.034228757,0.025819095,-0.062179398,-0.042425837,0.028682576,-0.0037680794,-0.0047107805,0.012842801,-0.07376776,-0.041648928,0.012447975,0.0076368693,0.0076628253,0.01194989,-0.029218033,0.02296692,-0.028353378,-0.0286255,0.0075575598,0.008263147,-0.02602202,-0.062502675,0.04079934,0.013082671,-0.0038434328,0.00634105,-0.042862535,0.02913946,-0.019608447,-0.020921215,0.0005282274,0.032823704,-0.02798695,0.024145134,-0.066445485,0.05195186,-0.017356874,0.014661383,-0.017602116,-0.01435766,-0.022629505,0.052404474,0.004161925,0.019367885,0.018943751,0.008113744,-0.00073057116,-0.011316134,-0.0017811914,0.002152349,0.040817127,0.014864245,-0.0035073648,-0.032620486,0.02470522,0.007170389,-0.0024213807,0.04253901,0.039201405,-0.0077010095,0.014436363,0.0037540824,-0.0023645165,-0.017768916,-0.024418723,-0.0051397844,0.023487214,-0.0313676,-0.015835604,-0.014540687,-0.026316706,0.022854302,0.0020415587,-0.008738807,-0.05060918,-0.00012379802,-0.026556222,-0.015445163,-0.008505816,0.03073009,0.033497788,0.03568053,0.027071387,0.027307454,0.035795376,0.014186693,-0.042720225,-0.035950974,-0.014942715,0.0045235883,-0.0075163385,-0.023618547,-0.050089758,0.041504703,-0.031503394,-0.0009884349,0.0042873817,-0.0666503,0.0059529124,-0.03395013,0.025947247,0.00071119494,-0.01422111,0.0081961565,-0.011429595,0.010183357,-0.005926962,0.040562358,-0.0028540695,0.0005521524,0.03405582,-0.015334122,0.030856382,0.031591836,0.00169343,-0.01006572,0.0003387631,0.012594455,-0.01013637,0.011328345,-0.03298548,-0.0038903386,-0.030037802,-0.004900046,-0.0022207922,0.029766189,0.0030460127,-0.04077721,-0.026738076,0.0038276713,0.0051602554,0.03339979,0.036326814,0.006970807,0.032770593,0.020959137,-0.012689532,-0.009516048,0.021259142,-0.07776171,0.045214325,-0.053892076,-0.034892965,-0.0047127623,-0.05052289,-0.031649344,-0.03194526,-0.00713468,-0.052401513,0.0016813385,0.029501434,-0.0045814323,-0.010383412,0.0003377657,0.0069242488,0.041314207,0.083549246,-0.020407028,0.0719964,0.0054660626,-0.0013866363,0.013340817,-0.05064254,0.011801376,-0.034433186,-0.024913916,-0.031772718,0.0019813238,-0.01405149,-0.03957779,0.04703828,0.012742005,0.041747734,-0.057753827,-0.07985247,-0.012971991,-0.013789474,-0.021839099,0.0035739595,0.07744422,-0.01437362,0.005121156,0.019198038,-0.08312953,0.2626443,0.059358817,0.022639949,0.010011355,0.011564277,0.02046603,0.019667208,-0.008558416,0.0023617423,-0.007899281,0.026560677,-0.008418083,0.032871477,0.0375759,0.005951833,0.036012977,0.00232568,-0.017716298,-0.011659996,-0.051923174,-0.021497602,0.015645081,0.005469691,0.01777109,-0.055211768,0.010987438,0.061716463,-0.03385059,0.011548499,-0.00879818,0.0051358375,-0.03264024,0.012570321,-0.05555814,-0.027153237,0.0047482047,-0.02537449,-0.042128578,-0.008845301,0.024875429,-0.01767075,0.007005094,0.014590882,0.014482925,0.031501938,0.035001226,-0.03665228,-0.028291773,0.005400765,-0.036018267,0.07387145,-0.018251091,0.06450473,-0.04787538,-0.027297275,0.016217845,0.023967987,-0.02175487,-0.039172243,-0.025711356,0.0041471426,-0.026616786,0.011338634,-0.00030134778,-0.040574018,0.019236576,0.06274555,0.022643246,-0.00658676,-0.025617223,0.0058374335,-0.0123019,-0.011888654,-0.013968923,-0.0025742934,-0.019586382,-0.025550313,-0.005447999,0.028211951,-0.017617175,-0.022688396,-0.010710225,0.0060746605,-0.008083299,0.017241467,0.050920032,0.013508651,-0.012337028,-0.058659125,0.042790774,0.04741525,0.027421046,-0.030981557,-0.0548071,0.024806626],[0.041190367,-0.043447923,0.009607092,0.027805218,-0.03195194,-0.0306683,0.019911813,0.01171556,0.008050179,0.015098902,0.052834958,-0.0033520453,0.016614044,-0.02199344,0.012507109,0.005369487,-0.025315149,-0.032392994,-0.05303216,-0.0020021675,-0.029250091,0.022208879,-0.098018736,0.0017423342,-0.015460441,0.045024134,-0.014018875,0.02953755,0.036864348,0.04040385,-0.011532046,-0.017058935,0.01324426,-0.033897985,-0.03218959,-0.04966253,0.05153654,-0.008128522,-0.025653759,-0.030927675,0.025998045,-0.05560521,0.05790905,-0.036308415,-0.055699386,-0.02494428,-0.057845887,-0.003753218,0.008031512,-0.02491733,0.01585619,-0.024572155,0.013283462,0.0010660922,0.025723105,0.015281364,-0.053022623,0.026734218,-0.014849522,0.03115104,0.03988319,0.044068623,0.01739723,-0.052552998,-0.05380613,0.029424462,0.022073727,0.009417371,-0.005405641,-0.016876224,0.03028395,-0.0015970005,0.023837555,0.0023960145,0.00030031244,0.0015228688,0.05230991,0.008853753,-0.031110104,0.046737984,-0.023664579,-0.005848426,0.012200383,0.037933417,-0.06049771,-0.0015096584,0.029258104,0.034150604,0.014726389,-0.008478093,-0.0011264398,0.020393003,0.017988797,0.008734116,0.033318125,0.046724636,-0.008205931,-0.0074043237,-0.02887848,-0.0052662767,0.028248705,0.017894592,0.018077375,0.040113974,-0.033500634,0.015230959,0.019963179,0.013365345,0.0127920685,-0.01765449,-0.049323514,0.033907622,-0.0053877058,0.012827291,-0.01471918,0.0086709885,-0.0039700563,0.032010287,-0.04007343,0.036982615,-0.01046882,0.038087856,-0.014103278,0.02786105,-0.008000225,-0.082081825,-0.05780205,0.04326818,-0.021657862,-0.027552206,-0.026162365,-0.0036831435,0.023818908,0.009825425,0.052012544,-0.00334267,0.03249927,0.0031916464,0.027982723,0.010253918,0.025347384,0.026899558,-0.06893285,0.07394861,-0.013176561,0.037026446,-0.00026410207,0.019448264,-0.064764254,0.061807185,-0.0535731,0.003724984,-0.015381787,0.02315791,-0.048076957,0.036815763,0.009411259,0.013045838,0.012820758,0.0018871245,-0.0038258433,-0.013293316,0.002239846,0.027713321,-0.053314436,0.020806165,-0.014774455,0.03431623,-0.013467421,-0.007956357,0.012022422,-0.026658362,-0.035885103,-0.00057004654,-0.017030913,0.034649357,0.0028500473,-0.0046359864,0.042782556,0.022699276,0.01736157,0.01350822,0.0140040275,0.05126766,-0.013595228,0.011557188,0.00019973276,-0.0252989,-0.025407199,-0.045798242,0.0070834383,0.046132356,-0.047207844,-0.0001612222,0.0018044515,0.028812386,-0.0156317,0.015291821,-0.007044362,-0.07450084,-0.011716858,0.06678205,-0.0310654,0.026190963,-0.018387463,-0.012353422,-0.0138571495,0.030020948,-0.017722221,0.022197414,0.018628627,0.048954148,-0.0090272,-0.024305537,0.014287794,-0.02747179,-0.07270573,0.05028883,-0.039830346,-0.0017023346,0.006343554,0.035230402,0.057064302,0.01335606,-0.014973831,-0.019131415,-0.006768576,0.045972627,-0.02705472,0.005226887,-0.027587054,0.038265124,0.0033002894,0.037475582,0.033140365,0.014605436,0.04476165,0.029601172,0.013224642,0.007752857,-0.032308508,-0.010590311,0.06253004,0.045822345,0.008488573,0.04061172,0.020143865,-0.02217063,-0.011606046,-0.012430631,-0.025247222,0.016221803,0.023114411,-0.00319136,-0.06386162,-0.013590426,0.041431088,0.05154621,-0.04848689,-0.017358229,-0.011917873,0.07095142,0.007964741,0.02827084,0.025711272,0.023735074,0.00041965145,0.049914587,-0.005235418,-0.017157322,0.003487121,-0.047806855,-0.07055638,-0.012891656,-0.013686987,0.006422571,-0.014768396,-0.008390893,-0.0035946288,0.017010452,0.008129844,-0.055075414,0.013062669,0.0058191363,0.011991234,0.03619272,-0.012568424,0.034773696,-0.0037020424,0.005851173,-0.019593008,0.0018450184,-0.012831214,-0.05394476,-0.008397927,0.029348219,-0.039796285,0.009482245,-0.0057303146,-0.016390532,-0.02178501,-0.033059582,-0.009852615,0.014823183,-0.04578906,0.013834091,0.0074313227,-0.022433221,0.0243564,0.03667096,-0.05228458,0.03890473,-0.0011416893,0.00013941024,-0.039619096,0.0019691424,0.009195013,0.024185944,-0.047044978,0.0107274335,0.013080912,0.03343368,0.0087023955,-0.040030062,0.037276212,-0.0021381688,0.04865219,-0.09596521,0.017430983,-0.0010317032,-0.07832517,-0.05783869,-0.0226069,0.024337174,0.015060331,-0.029674124,-0.0044169277,-0.018553404,-0.036705513,0.021756168,0.049374517,-0.012779516,0.012693197,0.036001068,-0.018861776,0.009484317,0.025105996,0.022003382,-0.036541678,0.038888257,-0.0030692192,0.03440711,-0.02296518,0.045253184,0.008095775,-0.009649511,-0.036101468,0.035903007,0.04344571,-0.009564777,-0.0045565283,0.03934607,0.026384868,-0.031208923,-0.021428267,-0.043134347,0.0050816447,0.037493043,0.022416249,-0.019813014,0.045131724,0.011534598,-0.029155253,-0.00876912,-0.02697797,0.014186629,0.035284203,-0.0014874141,0.056428522,-0.026584521,0.026386037,-0.025760945,0.0063925516,0.04342665,0.02415014,0.016220776,-0.016073849,0.009533803,-0.001256272,-0.030624846,-0.029605474,-0.018466402,-0.010347507,-0.0071748416,-0.034937046,-0.040699262,0.043348122,-0.0023928033,0.026077429,0.055712976,0.04586863,-0.0046798727,0.0022657951,0.033502806,0.018503085,-0.006042732,-0.0408648,0.043245353,0.042183597,-0.027070943,-0.044275805,-0.013939705,0.020332286,0.037058786,0.014379569,-0.00043322533,0.002115673,-0.028940454,0.045201402,0.05475268,-0.049948175,-0.017561939,0.005150458,-0.011808496,-0.024928713,-0.014645987,0.012303369,-0.0663683,0.06648698,-0.0025516842,-0.018038565,-0.035532326,0.0092784045,-0.023868969,-0.04896211,0.036476113,0.01641807,-0.026453802,0.041589014,-0.033945955,0.028702172,0.0069908365,-0.01371559,-0.004027627,-0.01667368,-0.0027101892,0.0037885343,0.02820294,-0.029049816,-0.0075154053,-0.004319913,-0.056346044,0.02729564,-0.030395973,-0.02029174,-0.026782606,-0.012902535,0.04974284,0.010806653,-0.032463945,0.008511657,-0.005453231,0.039575495,-0.027991282,-0.008134364,0.030063462,0.006463234,-0.06209811,0.04520297,0.029684164,0.0011182147,-0.00516468,0.0003264861,-0.019576006,0.007758222,-0.027719747,-0.0013470205,0.0078903865,-0.057316154,-0.02655683,-0.012022332,0.034450762,-0.01877354,-0.031583037,-0.033479642,-0.04797645,0.029028792,0.05727988,-0.0029207715,0.030001028,-0.0094168,0.014103703,0.017605878,-0.010633092,0.009201094,-0.0076976605,-0.048753403,0.023076326,-0.017195063,0.020641396,-0.007818938,-0.014727168,0.012603729,-0.024110725,-0.029339524,-0.002688785,-0.03856553,0.01676605,-0.0060637807,-0.010138245,0.04636381,0.00026967836,-0.04771822,0.012111119,0.03570357,0.016221726,-0.0006046192,0.025548618,-0.0067779315,0.047057543,0.016522741,-0.052804776,-0.04059748,0.057254173,0.016535044,0.0147605,0.010879014,-0.038118232,-0.052521493,-0.031030392,-0.028384246,-0.06483373,-0.064739294,-0.0004580914,-0.0135015985,-0.008157889,-0.0064459923,0.026052697,-0.055975366,0.031033207,-0.07939917,0.018087467,0.007340813,-0.028743565,-0.037947852,-0.007945505,-0.014982308,0.06816655,-0.007430453,0.032698937,-0.03243925,-0.008795805,0.0011334884,-0.0050775507,-0.026995467,0.012800999,0.009564293,-0.015913675,0.041588567,-0.008892108,-0.022536831,0.034787845,-0.045059476,-0.0147580225,-0.042237286,-0.02171407,-0.057995416,-0.046213318,0.05052081,-0.0035243426,0.0034957223,0.017238304,0.06413709,-0.0018912274,-0.0029079518,-0.054421775,-0.049703784,-0.028302964,-0.040487893,0.019674381,-0.034093544,0.0107835755,-0.029538097,0.0090106875,0.030292837,-0.0039800266,0.0034042888,0.05104402,-0.019704085,-0.007503343,-0.04504037,0.03263781,0.018205024,-0.062250562,0.008639214,0.010312102,-0.010419332,0.024245989,-0.034141764,-0.03601047,-0.04738029,-0.025441641,0.043709517,-0.025678756,0.008896102,0.0045318413,0.0030728872,-0.050455924,0.027121516,0.0519314,-0.00420446,0.042014945,0.020499613,-0.0077225044,0.016241822,0.011455759,0.005528207,0.009014227,0.017061371,0.036110707,-0.035621163,0.07377214,0.05517424,-0.034294844,-0.046931937,0.0047221654,-0.0013420198,-0.026666364,-0.037960526,0.008501664,-0.030317888,-0.017655604,-0.0030262272,-0.013749041,-0.011868246,0.022498395,-0.006272413,0.015752709,-0.018794272,0.047319695,0.009165784,-0.04263897,0.025809593,-0.027903555,0.0053200554,0.003491593,0.0034280298,0.033082545,0.0084413625,0.017724445,0.028425777,-0.03490035,0.063560314,0.0060783895,-0.04819434,0.027938886,-0.020881128,-0.015357026,0.012019086,-0.0106500685,-0.034506943,0.029119518,-0.060267467,-0.0065174466,-0.013780336,-0.019410923,-0.019972336,-0.019685727,-0.008941459,-0.073058344,-0.048578046,-0.042285435,-0.03688421,-0.0031442894,0.043279804,0.001977303,0.017592253,-0.010163044,0.048698016,-0.026258832,0.051351093,0.0018522181,0.07867851,-0.04140737,-0.021638416,-0.03729564,0.009939427,-0.035284653,-0.033104442,-0.017708115,0.012300317,-0.006308492,0.040281624,-0.013256769,0.0051699146,-0.065150075,0.009750923,0.04328852,0.04602164,0.008792009,0.010459148,0.027273756,-0.00076730235,-0.026026357,-0.011183418,-0.029471762,-0.057802554,0.025374966,0.0025580968,-0.034313563,-0.031339705,-0.054104887,-0.014368409,-0.009815107,0.04356313,-0.0030349812,0.023312619,-0.021110212,-0.02417697,-0.0053330055,0.092139564,0.011305664,0.01349161,0.015271866,-0.011773799,0.025495721,-0.010492967,0.022356926,0.007569796,0.046141226,0.006959729,-0.014893627,-0.0071025547,-0.022986863,-0.009193418,0.004754981,-0.01512918,-0.038246635,0.002098099,0.010863442,0.025012612,0.004941288,-0.030546889,0.03095175,-0.04227349,-0.030315802,0.04941648,-0.053165168,-0.060235307,0.014368823,-0.010810066,0.007518079,0.03756483,-0.056599878,-0.038443245,-0.0041506956,0.0060601565,0.0019393854,0.0186302,-0.013167713,0.004624974,-0.037598196,0.007949178,0.01330216,0.021131353,-0.039647438,-0.05415584,0.00007162418,0.036184274,0.018172687,-0.0072504818,-0.025347587,0.022155527,-0.009173115,-0.020404924,0.009239409,0.039103787,-0.021648848,0.01003465,-0.062021796,0.04886678,-0.015793286,0.010269031,-0.010489867,-0.03320879,-0.0050030057,0.052945644,0.01561758,0.0108635,0.02318213,0.020288223,0.0025290982,0.01160333,0.0033741696,-0.004202949,0.05307139,-0.0063951304,0.0041754027,-0.03604053,0.04102245,0.005795747,0.001265374,-0.00638435,0.036487814,0.019163571,-0.020739198,0.0073527875,-0.009775144,-0.0028553864,-0.016020233,-0.016801901,0.032903098,-0.030405061,-0.0035286993,-0.0070773875,-0.015698085,0.020728767,0.016584832,-0.030947259,-0.023299696,0.008076987,-0.0104675265,0.001657841,-0.0014979099,0.035396166,0.022558834,0.024452785,0.037947454,0.029946798,0.024992004,0.0049209245,-0.046344254,0.0012953761,0.007819255,-0.012317088,-0.019334199,-0.018227708,-0.023860991,0.051124763,-0.02063057,-0.016382597,0.01633675,-0.060911607,0.018585293,-0.037290905,0.027073089,-0.043462064,-0.012907288,0.035669126,-0.010046753,0.03144721,-0.020514918,0.021987911,0.0037611783,-0.005775183,0.015623306,-0.023875346,0.00043061114,0.045470543,-0.050262667,-0.011641691,-0.02360911,0.011210096,-0.014678596,-0.0069927867,-0.015157104,-0.015356251,-0.026392229,-0.0007367197,-0.00019808441,0.023919707,-0.004372691,-0.06586979,-0.013465265,0.00062711874,0.003251478,0.017912721,0.03406786,-0.020006903,0.019672485,0.022072425,-0.027420813,-0.0033304286,0.002709683,-0.06966149,0.04360181,-0.02877191,-0.05132784,-0.013045682,-0.049634326,-0.029540064,-0.0050251842,-0.009281282,-0.053451475,0.02872061,0.024582999,0.011028568,-0.00084648497,-0.018561022,0.012001464,0.06388287,0.050183278,-0.035174225,0.066036135,-0.024431085,-0.02177453,0.050478738,-0.046594806,0.027914932,-0.022507735,-0.02894238,-0.037169892,-0.010777573,-0.04946876,-0.031631988,0.032967664,0.015629651,0.025106195,-0.02986889,-0.058269557,-0.017743781,-0.02899477,-0.0014011887,-0.005910886,0.074584365,0.0008107835,0.01208968,0.024280546,-0.05519245,0.25605148,0.08145212,0.021366892,0.035895996,0.004313967,0.021708006,0.026557673,-0.010510128,-0.001606176,0.0033131088,0.038155682,-0.013044098,0.023707855,0.0034170395,0.0070902007,0.07056366,0.012976337,-0.008276393,-0.023423005,-0.042061977,-0.014822453,0.017514052,0.010695012,0.017895315,-0.035325207,0.024967914,0.052487954,-0.017133053,0.019051267,0.010604563,0.02574443,-0.026277982,0.050419778,-0.051072072,-0.06396785,0.020792594,-0.008146142,-0.033766642,0.028616117,0.020511074,-0.0068725357,0.01678977,0.011131785,0.008035287,0.020440554,0.029346434,-0.014035521,-0.0021261266,0.023131158,-0.022636978,0.05876383,-0.017397784,0.039392725,-0.037893467,-0.007721513,-0.029265946,0.0038494437,-0.0012389724,-0.04547084,0.018647386,0.008670331,0.005576966,0.034659717,0.011808195,-0.036798537,0.0036373367,0.06209631,0.020456865,-0.013953993,-0.022630133,0.013878411,0.0061387722,-0.02178553,0.002670111,-0.019823594,0.0031902604,0.0041921665,0.0072850045,0.028644577,-0.024409188,-0.027146243,-0.013905045,0.0019117515,-0.00012445665,-0.012586324,0.055377003,-0.00631104,0.004607098,-0.050404564,0.05727878,0.004663826,0.012335018,-0.0054015694,-0.021743989,0.017635724],[0.030932188,-0.026567455,0.013164057,0.052385334,-0.0035729287,-0.024132123,0.028830817,-0.008930307,0.02856471,0.03762531,0.050462835,-0.019734375,0.027585592,0.0042654024,-0.0072519006,0.012458451,-0.017087946,0.0016054966,-0.07192583,0.0012634802,-0.033726614,0.012889171,-0.09617813,-0.0008183716,-0.033782605,0.061383698,-0.040028412,0.0014306493,0.025642736,0.038176868,-0.0134999445,-0.02874288,0.04640918,-0.037278213,-0.06828095,-0.052933265,0.033026915,-0.017110027,-0.008672208,-0.043870345,0.023886181,-0.040973786,0.033417113,-0.02270739,-0.047066044,-0.0372375,-0.04796391,-0.024837157,0.00026784444,-0.046527397,0.015715396,-0.0405138,0.011603163,0.013987284,0.050450176,-0.029861916,-0.038404435,0.03280636,-0.016127022,0.02962449,0.010569412,0.04384198,0.006924907,-0.068687156,-0.066487424,0.037568107,0.008182098,0.012790773,0.0227704,-0.0045236787,0.016781282,0.0052822954,0.007612892,-0.015088035,-0.036651164,0.011743846,0.05662542,0.03777887,-0.030245276,0.04900733,-0.013695606,-0.0012872142,0.027088242,0.04709149,-0.045564547,0.0028594101,0.012730413,0.055126064,0.039275087,-0.0440596,0.006563382,0.016186545,0.0011120463,0.0021407066,0.053923994,0.0422336,-0.006817005,-0.02198725,-0.06691787,-0.016422173,0.021028738,0.019384433,-0.0006576259,0.050595105,-0.014967655,-0.0119731445,0.015629066,0.015305793,0.026083332,-0.021127006,-0.03530708,0.037215162,-0.009582892,0.02119196,-0.03499504,0.00684612,-0.0017414874,0.008711869,-0.017174374,0.021695018,-0.001506181,0.057694975,0.014772923,0.018410577,-0.03726581,-0.04751477,-0.054371253,0.057249244,-0.0063951286,-0.021007512,-0.011676332,0.000051592237,0.010816033,0.006984829,0.05893936,-0.009399776,0.030969065,0.016352333,0.02466325,-0.00461138,0.05953714,0.035279114,-0.04487684,0.07126094,-0.020381255,0.053200416,-0.0003472683,0.04984177,-0.064916655,0.04525139,-0.033394456,0.00634
+8000
+2609,0.011996817,0.04100416,-0.0043524425,0.013968873,-0.0075506563,0.010447543,-0.0129852025,-0.0030246915,-0.021813508,0.013656138,-0.010198028,0.0038830026,-0.05347021,0.043101154,-0.046129085,0.030625287,-0.03630702,-0.014812371,0.048030965,0.00021184488,-0.022781275,0.0012876497,0.00018177026,0.04800558,-0.013412239,-0.0013529162,0.020958113,-0.015021073,0.026075656,0.0011104423,-0.0141771315,0.060186345,-0.03517549,-0.0005311951,-0.007130103,-0.0032725427,-0.011926555,-0.03809413,0.004103225,0.03351283,-0.04741199,0.009024165,0.0012661084,0.015857173,-0.023878109,0.0017698957,-0.008228402,-0.055601247,-0.00929244,0.05805373,-0.012972711,0.053599853,-0.0110267345,-0.028261129,0.013512439,0.030166477,-0.02134085,-0.024330217,0.0063710567,0.051657703,-0.031793464,-0.019903071,0.010399525,-0.020956522,-0.05848121,0.058543246,-0.06862816,0.0008072158,0.0094631845,0.031202218,0.040258866,0.03208368,-0.022236018,-0.00041782772,0.019544385,0.03341783,-0.03879813,0.028725266,-0.011251001,0.037950248,0.0101758,0.027051045,0.03243633,0.009341102,0.014277116,0.026155699,0.008373254,-0.0040391134,-0.027885154,-0.0007422468,0.042110723,0.05095083,0.0134672,0.04366787,0.004676096,0.012460143,0.0014901785,-0.011404942,-0.002355898,0.032272257,0.026843993,0.01695989,-0.045484,-0.018335233,0.02100787,0.0386722,-0.03749786,-0.027867287,-0.026999556,0.063066974,0.03535856,0.0020245875,0.03440489,0.014238906,0.0141598,0.026038272,-0.011492782,-0.04592715,-0.009660699,-0.04333612,-0.06726208,-0.0065464373,-0.027906945,0.031565525,-0.00038962314,-0.017337881,-0.01764735,0.028534528,-0.012113729,-0.04741439,0.0052405717,0.033197105,-0.014054701,0.030866534,0.003366097,0.008257084,0.014280003,0.012069797,-0.034080636,0.016971514,-0.010246722,-0.026498826,-0.013185693,0.0054063005,-0.030047426,0.02416652,0.013761203,-0.03168855,-0.009661851,-0.04173917,-0.011127027,0.025480764,-0.03856357,0.011056524,-0.0009243301,-0.017526938,0.04488068,0.026220737,-0.04512366,0.04730748,-0.012664609,0.02676061,-0.04585966,0.023314457,0.02054154,0.016191684,-0.059226327,0.012657314,0.0081146555,0.01109831,-0.029448109,-0.029107895,0.012422951,0.020603392,0.030119693,-0.07514243,0.027301723,0.0050982833,-0.09267252,-0.038201615,-0.03594382,0.038514707,0.00031937077,0.017301133,-0.006086043,-0.027613543,-0.06022133,0.018370409,0.024475837,-0.015478717,0.0244266,0.016909389,-0.0062300772,-0.018714825,0.019050153,0.021964537,-0.026771326,0.014390982,0.015263084,0.052160848,-0.016064275,0.046499424,-0.011402582,-0.015684057,-0.022852888,0.021818146,0.05012626,0.0051392396,-0.010155303,0.024287704,0.019040663,-0.04596094,-0.023325678,-0.06529614,-0.013066438,0.041278303,0.014083098,-0.039717134,0.03360897,0.009910114,-0.055317935,0.010760217,-0.03450564,0.010144615,0.03854635,-0.021265928,0.055106357,-0.00709869,0.029676765,-0.020719156,-0.011843977,0.040242285,0.034766812,0.03623987,-0.020517351,-0.027123094,0.026731098,-0.01712664,-0.03714369,-0.006191811,0.032289952,0.0059323553,-0.019435056,-0.044252332,0.04316811,0.00048417124,0.04784792,0.04565532,0.042629525,-0.002781743,0.0327885,0.04385005,0.0005381401,0.017631222,-0.018235309,0.059413817,0.036803823,0.0037390324,-0.025612697,0.010751253,0.02049713,0.0225206,-0.014336229,0.014711803,-0.030186126,-0.013690571,0.023067327,0.029077379,-0.06362901,-0.020925308,0.0036313054,-0.025245924,0.010687519,-0.0075258054,0.014598293,-0.038426466,0.060202558,0.016492335,-0.003921914,-0.024382692,0.012969414,-0.0065722237,-0.0605092,0.013252473,-0.019395752,-0.020293904,0.041076083,-0.033609282,0.020527981,-0.0012817467,-0.024014799,-0.0042182673,0.0019787515,0.0034391424,0.02462241,0.016232148,-0.021575894,-0.017143222,0.035566986,-0.04914374,-0.00092044217,-0.0106618395,-0.03136288,-0.025707865,-0.013562522,0.025968079,0.016500732,-0.022941574,0.0020571603,-0.02404642,0.03382099,-0.024667481,-0.0001448467,0.046186622,0.0075824736,-0.065463014,0.039567243,0.020863561,0.0011603493,0.03133643,0.01035265,-0.02863176,0.0012906983,-0.034578774,-0.0035003244,-0.013385425,-0.029835338,0.021533465,-0.039923765,0.011116774,-0.038066544,-0.026206067,-0.04016449,-0.053948026,0.017762218,0.038117986,-0.0037823308,0.012245796,-0.005342203,0.0443772,0.010054817,-0.04473966,0.0020384716,-0.0045726676,-0.021671383,0.021215705,-0.0062607755,0.027210433,-0.009194893,0.0031413424,-0.021184975,0.0004663551,0.0033178325,-0.022615995,-0.043587066,0.012399611,-0.034841742,0.0014406474,0.041838385,0.020409903,-0.0011867335,0.0024939035,0.075602464,0.014235231,-0.0077986703,0.016217979,-0.039611004,0.0436209,0.0069095204,-0.027894258,-0.0093797445,0.078564145,0.014435979,0.016711636,0.015361228,-0.019447979,-0.07308125,-0.0243131,-0.022571055,-0.040823642,-0.061164044,0.003239923,-0.01913926,-0.0031863854,0.0034429992,0.024136886,-0.035490185,0.009024277,-0.056481257,0.015558309,-0.012649364,-0.036258552,-0.036983933,-0.012867458,-0.012979203,0.08895384,-0.011043485,0.013385405,-0.048285294,-0.014122738,0.011316224,0.020624347,-0.029247291,-0.025684228,0.013664352,0.010871445,0.005419417,-0.010683059,-0.0187937,0.01484102,-0.031643726,-0.029659254,-0.038001988,-0.036452033,-0.061409794,-0.012065188,0.038192593,0.0063650534,-0.008706216,0.0034978443,0.074338496,-0.0014263215,0.0018009626,-0.053867534,-0.07802271,-0.044643078,-0.05268045,0.034342416,-0.03248325,0.026162205,-0.02298466,-0.0043122447,0.011592661,-0.023124423,-0.020953713,0.04189596,-0.02850005,0.0111922845,-0.05164248,0.062222525,0.019018931,-0.054887325,0.015867732,0.0024780983,-0.004705207,0.009082169,-0.021535583,-0.06621845,-0.049250767,-0.0020736675,0.07414835,-0.03734128,0.025672546,0.012771507,0.0022473042,-0.030672865,0.02675673,0.033469353,-0.02034334,0.03260794,0.0387102,-0.03472868,0.046884336,-0.0059267627,0.0052219094,0.009172831,0.027115846,0.012895193,-0.033634875,0.033839453,0.039323956,-0.05617492,-0.044315256,-0.0027577244,0.0067354064,-0.030539395,-0.056993213,0.0025649562,0.0032756478,-0.010669502,-0.018149594,0.018091166,-0.0023216277,0.017444106,-0.018138707,0.02775301,-0.0114681,0.050143,0.028102335,-0.035667237,0.03085391,-0.028283212,0.0010122953,0.0008550447,0.014884409,0.03044606,0.0033190888,-0.009613976,0.019020552,-0.033272862,0.06526093,-0.0037757636,-0.030928839,0.032943454,-0.0041849166,-0.0017813027,-0.018531574,0.018070105,-0.020984001,0.017318094,-0.0536316,-0.0053865802,-0.006170906,-0.0019497939,-0.007282032,-0.028398382,-0.007639956,-0.050848752,-0.044036366,-0.021332001,-0.01843668,-0.015572187,0.03564853,-0.015180258,0.031786226,-0.03779735,0.049566012,-0.030717341,0.03539454,-0.011026015,0.058096133,-0.04130932,-0.02266424,-0.0439755,0.015106428,-0.017117556,-0.0075089443,-0.038589794,-0.002266777,0.009127573,0.02035762,-0.0026798942,0.028443081,-0.03582945,-0.0035662195,0.040220473,0.03679949,0.017440287,0.040664982,0.04141287,0.0048166034,-0.0015631578,-0.049983013,-0.029512629,-0.049521923,0.05140709,0.016882474,-0.025340738,-0.036608227,-0.04484789,-0.013716247,-0.026890617,0.008043921,-0.0019726022,0.017190456,-0.029332377,0.016045159,-0.012684306,0.0676707,0.013403658,0.019180931,-0.0040777447,-0.0033721712,0.021110743,-0.027742686,0.016948203,0.03772151,0.06036991,0.004505081,0.0035467057,0.019035544,-0.009592031,-0.0070001483,0.007814706,-0.012362164,-0.036142096,0.025994785,0.014710626,0.017123053,-0.017760659,-0.013210459,0.028356694,-0.030734008,-0.022822287,0.017744986,-0.062975965,-0.05424542,0.00928438,-0.00096262404,-0.039216094,-0.0050018704,-0.0511108,-0.042145483,-0.00066893426,-0.013311316,0.01900393,0.030592317,-0.013159914,0.0011638257,-0.037082046,-0.01688658,0.011716386,0.03507024,-0.037186626,-0.06743512,0.019116828,0.031409588,0.026968395,-0.014046538,-0.013951035,-0.01448064,-0.021376621,0.0067155645,0.005540361,0.044530272,-0.008496042,-0.008140791,-0.061842337,0.053602327,-0.013273478,0.03313039,-0.0017628825,-0.015537806,0.0060869334,0.06645396,0.0038507907,0.029109944,0.020907968,0.015087256,-0.009595276,0.000748348,-0.016120395,-0.00997997,0.035124473,-0.010519329,0.012894701,-0.05788438,0.03269784,0.005461558,-0.013079989,0.009339003,0.029667947,0.007293934,-0.015739847,0.019260816,-0.016141722,-0.01945232,-0.025906304,0.0035498857,0.014027241,-0.0013460031,-0.033820316,-0.02408282,-0.04894935,0.008232676,0.019431632,-0.005712484,-0.0012710699,0.021644637,0.008621725,0.011916612,0.018479194,0.020272251,0.002139165,0.027250318,0.0387909,0.008025307,0.0060903807,0.01982416,-0.038650103,-0.019049635,0.015823605,0.021193217,-0.020128096,-0.041487675,-0.0372944,0.066658914,-0.02921245,-0.030968618,-0.0022362573,-0.043600384,0.0142814685,-0.04842536,0.02592846,-0.042702477,0.0010782249,0.0069580222,-0.031482637,0.010673205,-0.000017119322,-0.0009858089,0.011533115,0.013070591,0.033639126,-0.009741192,0.012612324,0.032954235,-0.043556888,-0.013267073,-0.0011812025,-0.006401217,-0.00829515,0.012099784,-0.035937235,-0.022266505,-0.011090556,-0.010551739,-0.00397159,0.023015693,0.0052250484,-0.06802794,-0.014978243,-0.016297728,-0.0049078083,0.026167495,0.044598103,-0.0035118053,-0.019799847,-0.021139102,-0.0105922865,-0.014440151,0.021707157,-0.061476786,0.01664516,-0.047242556,-0.07555068,-0.02729797,-0.042290848,-0.023464793,-0.014846072,-0.012159422,-0.05189039,0.03963686,0.018442249,-0.006757255,0.02337675,-0.041755665,0.008428312,0.047942784,0.04777917,0.012786797,0.08337006,-0.012960012,-0.012064512,0.039357837,0.0023286652,0.024059845,-0.023625916,-0.012950661,-0.042223673,-0.017808719,-0.03453096,-0.06379355,0.054585055,0.012249261,0.007756829,-0.058648814,-0.06841799,-0.015990574,-0.0074710376,0.00733348,-0.01189067,0.07957843,0.021178663,0.006181222,0.044360638,-0.044388384,0.25620812,0.057818655,0.032003965,0.022043345,-0.008605142,0.030813212,0.021873033,-0.010652446,-0.029339429,-0.01710816,0.049808137,-0.002492338,-0.0018925583,0.03241762,0.035712566,0.0385515,0.00009060033,0.0014792159,0.015616504,-0.049822263,-0.021352317,0.028054692,0.018691089,0.011330803,0.002774142,0.019952113,0.019601068,0.007824497,0.017267583,0.027892971,0.0072576604,-0.037193622,0.02873485,-0.04229236,-0.028228167,0.030218817,-0.037960533,-0.053481042,0.02397178,0.02386898,-0.02837415,0.010129265,0.0017774232,0.011236032,0.0016278941,0.046351124,-0.012058861,-0.021471797,0.033758983,-0.040299963,0.040643718,-0.002253549,0.024009682,-0.02843624,-0.021478267,-0.0131568555,0.0066883094,0.0005472898,-0.04264655,0.027650984,-0.0032192762,-0.010875247,-0.013833322,0.003353577,-0.034249518,0.015028934,0.053502288,0.018608188,-0.016357344,-0.026329968,0.0128334975,0.03373537,-0.013195275,0.01211285,0.010053423,0.0021507714,-0.011449003,0.0033419142,0.0084800245,-0.034226686,-0.022641854,-0.020106426,-0.018697217,0.007987438,0.017008701,0.06422178,0.0008626635,0.010388702,-0.034629557,0.045731626,0.0054053967,0.02141929,0.018642815,-0.0036203542,-0.007351648],[0.050514065,-0.03889591,0.0059847855,0.013694826,-0.017093988,-0.00415545,0.00017577277,0.002893085,0.035980653,0.03070567,0.04875682,-0.027945,0.018521218,-0.022689192,0.016122239,0.0034776179,-0.01899944,-0.018340599,-0.051570054,0.0034853893,0.011405575,0.018556723,-0.11885828,0.004065848,0.0116184745,0.057352304,-0.00799036,0.027384339,0.032771837,0.060088154,-0.013394833,-0.014074822,0.044021152,-0.029099695,-0.016528407,-0.047501773,0.038065486,-0.012489686,-0.01157918,-0.05444585,0.03918971,-0.038883477,0.034766484,-0.031019839,-0.05589276,-0.038239107,-0.017664172,-0.028186532,0.014192575,-0.06959977,0.018321563,-0.030704113,0.0059576295,-0.047294907,0.03576379,0.011115572,-0.04670769,0.0189247,-0.020653147,0.057025943,0.031581853,0.028719274,0.017195981,-0.064491086,-0.025762834,0.037396964,0.018576521,0.01999916,0.027171718,-0.011444065,-0.018145572,0.00094429817,-0.009590907,-0.01682844,-0.010005822,-0.013571985,0.025119044,0.0066908677,-0.062642895,0.04865348,-0.0036916898,0.0039246855,0.028396426,0.030510727,-0.04406762,0.0051438347,0.0015599355,0.055746347,-0.0024235754,-0.01809355,-0.0016888299,0.015459144,-0.009968422,0.012781723,0.028881453,0.021201612,-0.016170897,-0.009700544,-0.049226582,-0.018206328,0.019396558,0.024742845,-0.009853167,0.059765417,-0.043060362,-0.0027014674,0.00063986785,0.027131049,0.014880781,-0.017399488,-0.0031255234,0.037461422,0.0019085032,0.017155336,0.003888733,0.021978183,0.0011124972,0.020615235,-0.019872058,0.014743432,0.0101071615,0.025616387,-0.027764574,0.012724236,-0.014215253,-0.04270879,-0.03574924,0.049915478,-0.0024473334,-0.027239157,-0.008054084,0.0011138661,-0.010359607,-0.009768776,0.030236248,-0.015908374,0.0077315145,0.016246224,0.0008080603,-0.021376958,0.056694284,0.027737746,-0.049549732,0.07625847,-0.013521687,0.03564478,0.010220419,0.042726263,-0.06399324,0.06315179,-0.057218194,0.008475601,0.017176433,0.034710664,-0.03703369,0.06382321,0.0035851724,0.0026023318,-0.004423625,0.0024475802,-0.020888334,0.02968671,-0.027811153,0.013293098,-0.05254338,0.03459435,-0.052007657,0.029508423,-0.0026205326,-0.012484217,-0.0011839747,-0.004637261,-0.012215573,0.0070912424,-0.010445478,0.035882063,0.0074301623,-0.03281398,0.032993868,0.011653076,-0.0023207967,0.012318742,0.024292136,0.03779252,-0.0068985596,0.028868973,0.013674423,-0.015251343,0.00045766265,-0.0466493,-0.0033425465,0.05096367,-0.042470533,0.018276405,0.012459715,0.031955626,-0.040193956,-0.023508575,0.0014211731,-0.0640556,0.021868633,0.04362044,-0.019330153,0.03200398,-0.0060754223,-0.034070026,0.0061936784,0.040900465,-0.028832125,0.007515377,0.011353099,0.06525394,-0.02261438,-0.004592426,0.008424542,-0.01171454,-0.03099222,0.07052257,-0.035541628,-0.003471597,-0.0023373873,0.021673605,0.030310653,0.055570286,-0.008972561,-0.015255014,-0.04026628,0.054550946,-0.013910327,0.034163125,-0.0018348792,0.018126342,-0.014724629,0.028693704,0.030830648,-0.0018681807,0.015872959,-0.0008916142,0.035812393,0.021017067,-0.03740069,-0.0023890403,0.039393365,0.0332563,0.0017166705,0.041754432,0.019099412,-0.0025144857,-0.01714111,0.008793904,-0.006081849,0.031234026,0.038932063,0.02451864,-0.06930574,-0.01946489,0.034698863,0.045925837,-0.07600121,-0.012835558,-0.013989517,0.06263241,-0.0017052479,0.03170511,0.018863248,-0.009999501,0.020279342,0.025268225,-0.0048675067,-0.024690038,-0.031894773,-0.05616825,-0.08517979,-0.010256271,-0.020516407,0.03207823,0.0034373715,0.0043576546,-0.014246705,0.009365964,-0.012677411,-0.015161734,0.0068173674,0.03871756,0.0026881956,0.023827858,-0.028099304,0.028914265,0.023794143,0.006229759,-0.018973606,0.0073092296,-0.014608356,-0.0347045,-0.009064811,0.016289692,-0.04756848,0.018739782,-0.033914812,-0.025129095,-0.0116508575,-0.026367655,-0.010673625,0.0013782822,-0.033041164,0.017881405,0.02860366,-0.021835856,0.050023887,0.044080652,-0.034583475,0.033726726,0.013827725,0.014295594,-0.055757996,0.0021223756,0.01097661,0.053401195,-0.05032083,-0.029518407,-0.019539507,0.016952991,-0.01176941,-0.014058916,0.017843612,0.03593756,0.037040167,-0.07798293,0.026195858,-0.01928957,-0.054369733,-0.03222147,-0.04255258,0.02135043,0.044113744,-0.0026953414,-0.013486656,-0.03451929,-0.03544327,0.020547995,0.049480803,-0.027674472,0.051805943,0.037655976,0.018913008,0.0034406062,0.015311227,0.019788017,-0.030465761,0.043458793,0.0028772564,0.045723874,-0.008791967,0.03137867,0.00481053,-0.013233709,-0.041774493,0.022408018,0.038786877,-0.005238652,0.027989509,0.017897349,0.007901306,-0.04424083,-0.014734527,-0.052029792,0.023052502,0.009066488,0.010720734,-0.05785129,0.025267491,-0.0065744645,-0.068152405,0.031316586,-0.022360478,-0.0049002427,0.039793964,-0.010140949,0.031904586,-0.029262833,0.004491089,-0.019505419,0.009260967,0.073303,0.047021434,0.011834773,-0.02559117,-0.0037027285,0.015102751,-0.019138448,-0.0110080475,-0.00079167046,0.031138215,-0.0010903317,-0.020244168,-0.039917044,0.028165882,0.028253267,0.043298226,0.04444261,0.009197208,-0.009355435,0.010184924,0.04372611,0.029195959,0.01076124,-0.035642467,0.056852173,0.013537762,-0.031839363,-0.047109686,0.02752637,0.0019895795,0.03909311,-0.013088328,0.02462393,-0.019413194,-0.0102123385,0.037267826,0.022574393,-0.047350805,0.0048802923,0.016831735,0.010291525,-0.017288065,-0.015567151,0.0026966815,-0.05440058,0.05813269,0.015322314,-0.008814473,-0.031743657,0.030535588,-0.035788804,-0.04948897,0.019585473,0.0062167747,-0.039942864,0.050174266,-0.024909928,0.008157946,0.029172856,-0.009000314,0.0008002065,-0.0064111403,-0.004454089,0.014671935,0.0023374846,-0.031948734,0.012020608,-0.020342981,-0.07493358,0.02415504,-0.039334062,-0.012987858,-0.02705945,0.0019862482,0.022466287,0.025303362,-0.020236637,-0.009803954,0.0048736874,0.03200088,-0.024592074,-0.015061071,0.038054917,-0.01664135,-0.0618957,0.048567142,0.025572078,0.0030413396,0.005000951,0.014597192,0.005748479,0.01690563,-0.035678595,0.012731883,0.030205658,-0.02190392,-0.010358441,-0.022545826,0.011678165,-0.021514846,-0.029669136,-0.0068880767,-0.051447533,0.02313932,0.005953566,-0.022155277,0.0062428927,0.0068443087,0.02336531,0.01002249,-0.01883281,0.024000483,-0.015124539,-0.05035813,0.03944381,-0.0059256232,0.037725937,0.03301761,-0.006163792,0.006905075,-0.02693935,0.004582464,0.008095161,-0.05742011,-0.01820274,0.006269905,-0.01226674,0.038691387,0.047524992,-0.024747748,0.0074968613,0.012062603,0.033957187,-0.0011746573,0.0054539978,-0.013849252,0.046281256,0.037764054,-0.05540164,-0.021067783,0.04540951,0.0135993175,0.03617606,0.022097304,-0.013517078,-0.046129752,-0.050422788,-0.025119247,-0.057172805,-0.05658999,-0.011624841,-0.018277802,-0.0071260403,-0.020985082,0.02466464,-0.024643539,0.028943071,-0.071518354,0.0048200833,-0.012581411,-0.025315775,-0.0068255337,-0.03410265,-0.039696306,0.08291758,-0.024302129,0.009060754,-0.014562411,-0.020359324,0.023559626,0.012571249,-0.04459997,-0.03530181,0.016423611,-0.010608888,0.042068593,0.017507378,0.006245537,0.053182274,-0.04762979,-0.029065654,-0.03181786,-0.045916498,-0.037278157,-0.02157815,0.036002006,-0.008432122,-0.038360126,0.0011187467,0.042559,0.015214912,-0.0010962461,-0.06057591,-0.051033463,-0.06707898,-0.049498387,-0.0042689745,-0.024846997,0.02407009,-0.021902012,0.017295983,0.027775709,0.0008334487,-0.021819448,0.041674294,-0.04204304,0.004401404,-0.059027433,0.04411341,0.03293029,-0.04285065,-0.00011918463,-0.02952305,-0.00080713874,0.057709705,-0.016378388,-0.046579834,-0.0389036,-0.008146163,0.047845624,-0.05405335,0.03048204,-0.028981358,-0.0020532422,-0.07351302,0.03588523,0.048958488,0.0009045258,0.04014088,-0.033373266,-0.01795498,0.044894405,0.020748017,0.008913793,0.0023106611,0.03372821,0.011547854,-0.017446777,0.053513955,0.055595435,-0.039274994,-0.04123938,-0.0093414765,0.013426323,-0.03748339,-0.059026845,0.008396533,-0.026115935,-0.014255656,-0.029677905,-0.010133856,0.009818313,0.0098522045,-0.03693085,0.03157916,-0.0080905035,0.02453183,0.033833675,-0.049382273,0.027684063,-0.04224617,0.009755894,0.0023699962,0.023741715,0.0147830555,-0.0067392164,-0.0003327555,0.022807442,-0.036592968,0.024611436,-0.009397828,-0.033627998,0.032446988,-0.0076201945,-0.0053020134,0.0036060112,0.017801382,-0.037451908,0.028807754,-0.051069133,-0.028377406,0.00010983115,-0.022093365,-0.016722841,-0.023282439,-0.004192352,-0.043077327,-0.037162017,-0.030312128,-0.032142926,-0.007069512,0.048782416,-0.024346462,0.03715026,-0.017583394,0.036735963,-0.039370928,0.02259433,-0.003941475,0.0725428,-0.049139686,-0.0254707,0.0012339049,0.018851608,-0.02964965,-0.018389564,-0.024136417,0.025789538,-0.0018885834,0.027665962,0.014409944,-0.0037480562,-0.04053781,-0.021842727,0.044171385,0.036290117,0.014774422,0.052447528,0.0019769364,-0.0156385,-0.019165767,-0.041164577,-0.0071857427,-0.07071549,0.019052884,-0.015611439,-0.031136895,-0.03395498,-0.061345275,-0.019092117,-0.023777701,-0.0043232334,0.01243298,0.010416487,-0.041979775,0.0024907875,-0.006867169,0.023819173,0.010942311,0.003996198,0.022892311,-0.009429313,-0.0036527943,-0.03153312,0.019327167,0.025763547,0.067982785,-0.002410024,-0.01712929,0.008860608,0.0036943047,0.00031080688,0.011227741,-0.015827106,-0.019709324,0.018836526,0.013643061,0.023190964,0.014174495,-0.03894992,0.023129867,-0.028780041,-0.03168145,0.0045375493,-0.06648957,-0.040156152,0.034300417,-0.02022693,-0.03271919,0.023184454,-0.057689887,-0.04294063,0.016914604,0.009029616,-0.006374599,0.030351032,-0.0053600166,0.021152724,-0.0004909648,0.016074449,0.014402344,0.035804123,-0.015067294,-0.042301808,-0.0065931543,0.008123593,0.007921983,0.0075005144,-0.027139459,0.010561586,-0.017211474,-0.035976157,0.038338695,0.058475364,-0.028770437,0.005118205,-0.04481085,0.058294658,-0.037200376,0.009113589,0.012428715,-0.018666249,-0.008814098,0.053914893,0.022245077,0.0016952449,0.0024442237,0.0025530248,0.023877176,-0.015291014,-0.010267341,-0.02550346,0.040476456,0.009285323,-0.006302942,-0.04273001,0.022817247,0.0057148584,-0.008335459,0.0012037995,0.046806503,0.020211017,-0.025081635,-0.00077213044,-0.03224491,-0.017660486,-0.032136504,-0.032800578,0.025310693,-0.007956092,-0.024106838,-0.021475723,-0.005831657,0.020314451,0.003453029,-0.016382847,-0.025501402,0.01609309,0.018261839,-0.003504692,0.01897339,0.02573012,0.0061783567,0.021439131,0.055310518,0.007684171,0.011953928,0.008542918,-0.02889744,-0.031583916,0.0035011277,-0.0052983044,-0.019842569,-0.016660726,-0.041345865,0.06606115,-0.025435276,-0.009413205,0.010634191,-0.011990626,0.019688653,-0.062077545,0.033194438,-0.030622685,-0.0036298775,0.028201843,-0.03560772,0.0044057234,-0.0062351166,0.001912393,0.026502147,0.0002506015,0.022116605,-0.003328803,0.011499376,0.03318055,-0.04052081,-0.031776417,-0.00708576,0.029627036,-0.035209607,0.015574547,-0.010610723,-0.0061081345,-0.009328347,-0.004485493,-0.011205205,0.03426795,-0.0056431694,-0.072130434,-0.013731435,0.004887392,0.0084944405,0.03178066,0.021744817,-0.0030142239,-0.002537986,0.015038001,-0.052598458,0.006553181,-0.0108701475,-0.06475406,0.03420003,-0.039685037,-0.05955764,-0.010828801,-0.014638866,-0.01674058,-0.01231978,-0.025744101,-0.04331302,0.04037095,0.03497967,-0.013135363,0.022072984,-0.023994993,0.005451732,0.057777375,0.035212297,-0.0429281,0.074334554,-0.029295448,-0.024845945,0.046776056,-0.022670737,0.046616334,0.0072772806,-0.02650877,-0.035230406,-0.0015345276,-0.04398882,-0.016412752,0.04662038,0.03570745,0.018620038,-0.04108998,-0.055858847,-0.017906832,-0.04572075,0.007595532,-0.0015627185,0.07253266,0.03566192,0.0012080908,0.027125062,-0.070223205,0.25242332,0.08364294,0.041703995,0.00016119397,-0.008301811,0.039658543,0.0030855061,-0.007146119,-0.017246485,-0.0075828037,0.030261517,-0.031906173,0.025423734,0.023230374,0.043202452,0.07033328,-0.022266248,-0.0058588577,-0.03423399,-0.032519225,-0.026650624,0.0068462584,0.026365956,0.037711065,-0.03441316,0.008306076,0.04270825,0.018683925,0.0026125666,0.0021245766,0.0048265234,-0.030493235,0.038413167,-0.027345115,-0.033922028,0.057165958,-0.010702791,-0.027299548,0.012944274,0.0058916933,-0.038088325,0.024267638,-0.008374721,0.010947983,0.014556204,0.03161232,-0.0324997,-0.011469452,0.0062328884,-0.040026657,0.042707995,0.010239887,0.038115222,-0.038461063,-0.00041659348,-0.0055250875,0.017035581,0.003935423,-0.041919857,0.016904216,0.018057685,-0.01859676,-0.024595378,0.014334926,-0.037806194,0.024900801,0.05399366,0.026133426,-0.015652305,-0.027411312,0.021181332,-0.006072144,-0.01651769,-0.003868718,-0.010411782,-0.014827924,-0.009219211,0.029009493,0.021578034,-0.000021491998,-0.012149347,-0.031043138,-0.0038231243,0.0074076345,0.008330713,0.051248547,-0.019896971,-0.0037818246,-0.033502147,0.049698114,-0.010024262,0.040482614,0.016974669,-0.03163524,-0.014018709],[0.04356585,-0.019362675,0.020075878,0.020250136,-0.025113638,-0.013756103,0.017247926,0.020213565,0.03612482,0.03776951,0.059503768,-0.02703547,0.007160499,-0.016153362,0.024158442,-0.016939875,-0.017112678,-0.061465945,-0.06992831,-0.0058263317,0.012187099,0.031505883,-0.09107453,0.013142211,-0.010094657,0.03942669,-0.014818198,0.03571626,0.039160557,0.052558105,0.0070329336,-0.00025933454,0.025283623,-0.0065065874,-0.020962449,-0.020613786,0.054613262,-0.015257958,-0.019164134,-0.05792619,-0.0057436796,-0.052843615,0.03297912,-0.0442363,-0.058132924,-0.032268655,-0.035704937,-0.024100348,-0.0018275649,-0.04795117,0.023602182,-0.04162211,0.039708134,-0.04030395,0.019450497,-0.00167883,-0.04333902,0.0415256,0.008090052,0.031825237,0.023480846,0.047880657,0.020567268,-0.047250994,-0.035078496,0.008226574,0.040320255,0.039670493,0.0031223015,-0.0003254754,0.010723956,0.0027074818,0.001167045,-0.020760192,-0.012324179,-0.010187618,0.05450164,-0.013917481,-0.028677111,0.060473036,-0.004319831,0.014354622,0.03153055,-0.0008740618,-0.02435078,-0.021413188,0.018810213,0.046802916,-0.0029538905,-0.020896098,0.014716676,0.018749444,-0.017271055,0.0154735595,0.035056993,0.014535925,0.00408919,-0.007159733,-0.033601906,0.0029278053,0.040190756,0.008260793,-0.016773961,0.06428554,-0.04802072,0.0039388807,0.005088908,-0.008401839,0.011781706,-0.0015624563,-0.005678559,0.006359681,0.022801178,0.04867712,-0.012659465,0.033610724,0.016982991,0.043793026,-0.01703507,-0.0014963906,0.011625773,0.0030154802,-0.039012764,-0.0032756706,-0.0015525398,-0.063328885,-0.048099484,0.037442096,-0.034824256,-0.015836718,-0.02609197,-0.018349506,-0.0036622407,0.0099191405,0.06300941,0.0042863395,0.010819818,0.038017284,0.031685304,-0.026796041,0.07106726,0.04350305,-0.044613242,0.06452491,-0.014561543,0.049069386,0.007717808,0.020437893,-0.065232046,0.050183553,-0.060948797,0.024610251,-0.00087661145,0.057957962,-0.008095372,0.024496082,-0.004080543,-0.0084215375,-0.020649502,-0.011225273,-0.0034065347,0.01771707,-0.010113187,0.016649868,-0.04048434,0.0315087,-0.023734935,0.0026528633,-0.02491039,-0.009551514,-0.006295327,-0.01780641,-0.038765885,0.0069919196,-0.019403115,0.048486434,0.007938536,-0.0017776645,0.02673246,0.01716678,-0.0077862605,-0.0081671225,0.019240899,0.050848972,0.026117245,0.04571603,0.002069658,-0.00306894,-0.019511295,-0.03511431,0.0037900994,0.044036604,-0.035121266,0.033929802,-0.013466129,0.009221341,-0.009552966,-0.009542232,-0.0024852594,-0.053593032,-0.0059912843,0.04690991,-0.010341226,0.04823631,0.0044884975,-0.020731179,0.007188539,0.056544356,-0.020357406,0.011286355,0.041752174,0.056497272,-0.011297955,-0.007885637,0.022407908,-0.015603141,-0.033283837,0.07376968,-0.05333372,0.0042278646,0.001733777,0.034554765,0.032752078,0.010727511,-0.031358603,-0.015635727,-0.014556246,0.06969694,0.0067848642,0.02612592,0.009608435,0.042061202,-0.013618693,0.039659027,0.022358522,0.007155274,0.012722633,0.013007103,0.0069898134,-0.016260782,-0.02580352,0.003052415,0.02923143,0.03771984,0.027694222,0.057692405,0.019668512,-0.023309628,-0.0064786803,0.018525414,-0.0014497095,0.034838803,0.04873,0.018956127,-0.04548172,-0.028078424,0.048285477,0.052095506,-0.06326741,-0.020648228,0.0014865744,0.01730628,-0.001969175,0.031014372,0.039687928,-0.007957827,0.040219143,0.047425706,-0.02245723,-0.020874592,-0.02040555,-0.027789496,-0.052931488,0.0063332105,-0.029398404,0.024709422,0.0019769205,-0.02423341,-0.0006523359,-0.00583071,-0.0037336343,-0.016551595,-0.029537687,0.03559056,-0.003015139,0.03852049,-0.007368434,0.015400944,0.029441819,0.02973208,-0.01378712,-0.009156339,-0.002998281,-0.008483639,-0.029860066,-0.0024501742,-0.029578846,0.022966394,-0.027239457,-0.010053178,-0.011580747,-0.017809682,0.000297678,0.0028677587,-0.008958815,0.02994573,0.00478985,-0.05699422,0.03353692,0.033775065,-0.08038263,0.042330313,0.018462515,0.013673182,-0.051899523,0.033428848,0.014033258,0.0437692,-0.03772982,-0.028885312,-0.007507006,0.02659141,-0.00008596727,-0.022718111,0.05602487,0.0072832005,0.03507468,-0.07839134,0.023850404,-0.028766712,-0.056720123,-0.032524135,-0.023870748,0.036395393,-0.018630043,0.012285842,-0.007884791,-0.04564876,-0.046778448,0.010641175,0.037592445,-0.045288954,0.02561595,0.059264287,0.0014503717,0.009797121,0.022504333,0.009334142,-0.028152823,0.020315204,-0.0025861082,0.03570853,0.0031525632,0.042286035,-0.0029173177,-0.012753255,-0.007954097,0.04078309,0.01941239,-0.0122724455,0.003823363,0.035689466,-0.024015065,-0.011551044,-0.0068603293,-0.039701827,-0.009031449,-0.0030484793,0.015155471,-0.07039261,0.030212818,0.0071611055,-0.04251047,0.028471356,-0.013365496,-0.007868332,0.05931218,-0.016594563,0.038017306,0.014271251,0.010189975,-0.011046659,0.02154771,0.050836742,0.053485308,0.028015565,-0.037567787,-0.011108879,0.0026477992,-0.026988817,-0.036107622,-0.020025773,0.006496378,-0.029288417,-0.027816359,-0.02556708,0.041050594,-0.016119923,0.049154326,0.00026078254,0.022793595,0.010327559,0.039394043,0.057303883,-0.0063468255,0.011090637,-0.032761287,0.040371716,0.0070539587,-0.012500223,-0.06474827,0.003170923,-0.014458792,0.013163151,-0.010795071,-0.00411075,0.0016898141,-0.016897868,0.04707983,0.00551024,-0.03325042,-0.030088397,0.012459964,0.009619116,-0.004027355,-0.019480633,0.018937109,-0.045234565,0.05547571,0.0050354293,-0.014602965,-0.032855872,0.053977937,-0.00019239965,-0.033890273,0.005707008,-0.0031524156,-0.00874335,0.031201756,-0.00083516224,0.0150381345,0.025716035,-0.016732266,0.008830745,-0.00028173413,-0.00044753356,-0.0007481012,0.028399467,-0.039820455,-0.035264075,0.018761463,-0.08149364,-0.024714466,-0.034005385,-0.019156616,-0.029385637,-0.017055828,0.00015946444,0.011788243,-0.0042448402,0.0030550342,-0.02361458,0.025002772,-0.011965729,-0.017507963,0.03252946,-0.016198471,-0.047186334,0.05162954,0.00811777,-0.025996944,-0.016165122,-0.0012802203,-0.013694011,0.018958699,-0.02793235,0.0289293,0.024826102,-0.019031206,0.01052915,-0.016834425,0.030570522,0.0034466407,-0.028217934,-0.023926383,-0.07359347,0.015909191,0.036868244,-0.0063643735,-0.0018364071,0.004125951,0.004022112,0.020131096,-0.04731437,-0.0022453214,-0.031467207,-0.05827671,0.016020225,-0.024122743,0.04382683,-0.00035698095,0.007963353,-0.022337807,-0.029671341,-0.025903853,0.00261688,-0.040242407,-0.00072198536,-0.010453667,-0.007782872,-0.0083951745,0.023769593,-0.052767802,-0.0052980366,0.032982845,0.031593546,0.0053023053,0.031134954,0.003730187,0.054191895,0.035429478,-0.06428856,-0.028543256,0.040274046,0.011860159,0.024474246,0.027989354,-0.012064404,-0.06531516,-0.051596608,0.00062309206,-0.04754015,-0.03058188,-0.00027068728,-0.027184404,0.0044965567,0.006807098,0.0124314735,-0.0011033971,0.01837147,-0.0805621,0.06755886,0.003609891,-0.03489643,-0.018570459,-0.015539909,0.0010381633,0.07189158,-0.014493941,0.04087151,-0.024805179,-0.024614617,0.018297773,-0.01638601,-0.025505694,-0.0028886788,0.023823295,-0.00412486,0.02839444,0.009302783,-0.0076648276,0.025551762,-0.043502267,-0.0244602,-0.04232942,-0.014977499,-0.05616344,-0.014001028,0.05725766,0.012280917,-0.018839989,0.0011970374,0.051670443,0.022699011,0.023245182,-0.020158008,-0.064782314,-0.051329535,-0.027577668,0.014893989,0.0032865682,0.016587477,-0.010802532,0.000979477,0.07382384,-0.011451534,0.0028899899,0.06404802,-0.023192037,-0.0061033242,-0.023379598,0.041721594,0.009061839,-0.046413727,-0.006729093,-0.0062584546,-0.011782089,0.033013854,-0.0214091,-0.060423996,-0.016938863,-0.009915539,0.031482987,-0.03738736,0.027539682,-0.015508569,-0.022211146,-0.050503332,0.020507067,0.036873814,-0.008781632,0.022634616,0.011880302,-0.01159373,0.031773053,0.0153135955,0.0040741623,0.013220852,0.021563554,0.016494993,-0.037096847,0.024826182,0.050075434,-0.06061415,-0.071731895,-0.018042848,0.005675398,-0.05382903,-0.030585416,-0.009031236,-0.029234413,-0.003924103,-0.018118856,-0.010249849,-0.039405786,0.033391505,-0.0081325555,-0.006921647,0.009760229,0.033809494,0.025994739,-0.042154707,0.018188413,-0.019905197,0.01094945,-0.0075300843,-0.0045108274,0.01631094,-0.003279575,0.028074516,0.018979514,-0.015121196,0.03329725,-0.021768812,-0.046720456,0.031574227,-0.0061856615,-0.034661014,-0.016867574,0.03504513,-0.048861906,0.028103715,-0.04089063,-0.022389028,-0.002971847,-0.0078691095,-0.013927381,-0.032922074,-0.026871903,-0.054917376,-0.026778268,-0.027381511,-0.043304924,-0.00003557999,0.031211253,-0.011391739,0.029754393,-0.015467459,0.043286633,-0.059375145,0.042989817,-0.0062182774,0.0605683,-0.058627542,-0.01970305,-0.030790707,0.024169397,-0.032454085,0.0017591835,-0.048607558,0.031724926,-0.0088002365,0.024078675,-0.025533728,0.0046982374,-0.039596785,0.022028219,0.011455129,0.032283068,-0.033591922,0.03398757,0.027575895,-0.016853264,-0.039791014,-0.023438504,-0.0058778394,-0.05381166,0.02896754,-0.015179566,-0.016725572,-0.024592705,-0.05680078,-0.030515805,-0.025694663,0.00998862,-0.008729588,0.010877283,-0.032790076,0.0015126341,-0.005646885,0.007279569,0.04652102,-0.005002037,-0.01165368,-0.013126947,0.0060666804,-0.0041530365,-0.0017732508,-0.015220887,0.03646821,0.023669789,0.0128610935,0.019744098,0.01764
+8000
+5247,0.018668458,0.0024245968,-0.025801122,-0.020075865,0.0064494344,0.0047541647,0.037765943,0.03401778,-0.03397863,0.041793015,-0.051583763,-0.046042733,-0.00910958,-0.053087067,-0.05562733,0.021308606,-0.0037089263,-0.026501033,0.020365212,-0.091727585,-0.021703098,-0.0003443184,0.00037359496,-0.012205019,0.01094498,-0.0046461807,0.010946518,-0.015398738,0.014770214,-0.007847817,0.016508838,-0.042504754,-0.043521732,0.0032220236,0.008361603,0.013774157,-0.02124551,-0.017698415,-0.00090478023,-0.01842444,-0.053333044,-0.016977832,0.025874918,-0.005991037,0.014358784,-0.03715047,0.05236789,-0.041795526,0.01837922,-0.018239573,-0.010359416,-0.015088158,0.051879488,0.019040868,0.0062849163,0.010852253,0.02006638,-0.010973532,-0.011886078,-0.018504933,0.0031375925,0.043134272,0.002133797,0.0025463223,-0.041634563,0.011662841,-0.01895517,-0.0241491,0.008928834,0.055060934,-0.023115916,-0.0013890362,0.013861533,-0.018073943,-0.02397411,-0.026619518,-0.029657815,0.016634284,-0.0076921186,-0.035453796,-0.011102864,-0.004907245,0.070406474,0.017294802,-0.018844148,-0.033011876,0.022091405,-0.02244521,0.02619665,0.015926221,0.014437119,0.0468592,0.032264978,0.046104245,0.009049376,0.031014131,-0.004503991,-0.019601591,-0.015268697,0.0030812197,-0.025022075,-0.024734974,-0.00305128,-0.061904695,0.03316666,-0.030484993,-0.03118531,0.0058849705,-0.028817486,0.017863028,-0.040604323,0.052935258,-0.02401615,0.026862562,0.009234736,-0.035971954,0.025817523,-0.0029556511,-0.010668875,0.011026788,0.0066806693,0.029082866,-0.009307005,0.010541044,0.017640702,-0.02201356,0.005668154,-0.011090073,0.017556474,-0.039069384,0.008602308,-0.0296673,-0.021506328,-0.03998566,0.0123152435,-0.020598385,0.032733336,-0.015082826,-0.065049104,0.003637266,0.007898212,-0.013058905,0.03405509,0.030267382,-0.0017905092,0.018755069,0.0033700066,-0.035529256,-0.008828067,0.008526617,-0.05206784,0.017034668,-0.04886952,-0.06746183,-0.0035029675,-0.04034247,-0.01726965,-0.008545716,0.00019227134,-0.03147661,0.023802074,0.030512802,-0.016247325,-0.0064372197,-0.013783111,0.0010279461,0.032765474,0.0525439,-0.019751597,0.074958816,-0.000630775,-0.043381765,0.021833738,-0.041025,0.046934254,0.0007538515,0.012920557,-0.03914288,0.03556672,-0.05010072,-0.034685165,0.044297032,0.027739417,0.024972308,-0.06525904,-0.06839116,-0.028905047,-0.025754977,0.007431739,0.0012640269,0.06515831,0.023950424,0.020936726,0.042380042,-0.072343506,0.2847393,0.07928072,0.046104446,0.033070266,-0.018581713,0.023691732,0.012101724,0.0019222797,-0.02376017,-0.0019663088,0.045187067,-0.003854491,0.013274179,0.018685583,0.0005000893,0.083553776,-0.021670915,0.029663142,-0.016772935,-0.045802444,-0.025820957,0.015606875,-0.002348082,0.042865645,-0.031500224,0.014470408,0.052094612,0.0060279374,-0.027405664,0.012311436,0.00588695,-0.04370189,0.029341474,-0.023970382,-0.038478073,0.027580207,-0.018795619,-0.023623232,-0.009360974,-0.015806798,-0.031709064,0.0113940565,0.0076557654,-0.0014896011,0.025668448,0.037311673,0.007834044,-0.017207153,0.0101372395,-0.027144501,0.030575559,0.021719627,0.03254198,-0.038217757,-0.012752781,-0.027463723,0.0029665413,0.010661535,-0.026885495,0.0016150061,-0.00021174608,0.022584356,0.004767594,-0.00018344003,-0.034196578,0.01856014,0.074751526,0.042633157,-0.023741174,-0.03649122,0.013160393,-0.013506585,-0.0023039929,0.01629903,0.002795249,-0.011797782,-0.023000013,0.005586182,0.054151326,-0.0003652464,-0.008331583,-0.0070460364,0.0058447463,-0.009950567,-0.0032140755,0.027433101,-0.005427794,-0.015236019,-0.058492772,0.050614204,0.0012687918,0.02692867,0.007412394,-0.034464795,0.01037594],[0.027354755,-0.03777895,0.0196855,0.0047747153,0.0011126568,-0.03717315,0.01296381,-0.0064831004,0.005270167,0.021310627,0.047645424,0.0015404926,0.0018307677,0.002627484,0.018148823,-0.0024907074,-0.008410573,-0.033437807,-0.03823685,-0.0054433704,0.012926634,0.045202862,-0.10406379,-0.0042897747,-0.024545284,0.025495628,-0.013789349,0.024864037,0.042676084,0.04774284,-0.039730188,-0.017545763,0.054603774,-0.04238777,-0.012154189,-0.012696024,0.05889205,-0.019178193,-0.007739068,-0.05426799,0.0032690815,-0.033149716,0.019194897,-0.043198463,-0.032679178,-0.008743344,-0.037131984,-0.014812462,0.002329352,-0.058043525,0.024304634,-0.010097436,0.04721468,-0.019677427,0.029614452,-0.008489349,-0.02155879,0.023910893,-0.034171127,0.020695554,0.0057547977,0.04123916,-0.0025207747,-0.06076768,-0.040308222,0.0077579548,0.023981184,0.0048868107,0.012830737,0.003587405,-0.013293905,-0.004859919,-0.022347625,-0.00029097995,-0.012387979,0.0013395647,0.061949477,0.014690674,-0.02365,0.021838551,0.006799567,0.020424098,0.010865396,0.021750912,-0.038432166,0.035518385,0.00899283,0.04343308,0.0053397124,0.0055031176,0.02515395,0.032132164,-0.009919961,0.0023877174,0.0205982,0.039788973,0.010130789,-0.014563148,-0.03381588,-0.028253714,0.016278228,0.032050572,-0.0040275473,0.057950433,-0.044584382,0.0133264735,0.035684243,0.01798429,0.0097551625,-0.009960397,-0.0082714725,-0.0017981046,0.005903122,0.024831071,-0.019983944,0.047654886,0.004424716,0.008206107,-0.031828087,-0.0021282278,0.033166703,0.037217464,-0.018602923,0.0135504315,-0.007292116,-0.059870493,-0.07398455,0.0314838,-0.04416482,-0.016644413,-0.00814332,-0.018629393,-0.0031548818,0.0125308605,0.05418119,-0.005054187,0.019072495,0.023529185,0.020897843,-0.027970884,0.057234574,0.036627945,-0.034195412,0.055582486,-0.014986289,0.03645423,0.02212016,0.02314663,-0.08767564,0.032716718,-0.038809743,0.0031349133,-0.0089173345,0.016196458,-0.007831441,0.028130993,0.010934296,-0.028599596,0.000018706254,0.012517402,0.012088958,0.016080985,-0.0145178605,0.014873791,-0.017554875,0.019905541,-0.01732287,0.009084491,-0.010944791,-0.0037674953,0.0052745254,-0.0100145,-0.042308807,-0.0026321588,0.012032722,0.064434774,0.021838047,-0.0009579914,-0.002485562,0.016702415,0.002073487,0.019502455,0.02848354,0.05696549,-0.026809735,0.026033418,0.0047639455,-0.026161585,-0.017579388,-0.060164858,-0.017950365,0.03624613,-0.02564339,0.012691175,0.0094503425,-0.0043158894,-0.030789735,0.022765033,0.005520853,-0.061167285,-0.009480936,0.041088298,-0.045169886,0.04404382,-0.01736584,-0.02482626,-0.02417148,0.043369696,-0.0230874,0.011844346,0.012332932,0.043314684,-0.029742837,-0.0060676793,0.045359585,-0.006052051,-0.041052833,0.046062864,-0.045275636,0.01788585,0.016109312,0.051987924,0.050367676,0.0009217464,-0.03867922,-0.0017647237,-0.019231822,0.06146521,-0.0036377807,-0.00021889465,-0.0058312938,0.020186888,0.010780888,0.022838352,0.035426985,-0.030103777,0.0040912465,0.01488831,0.012368411,0.02668222,0.013846917,-0.009950458,0.02375631,0.043317556,0.02503975,0.020357998,-0.009174039,-0.011225672,-0.005484892,0.01717783,-0.007894959,0.03291842,0.026276,0.0030741575,-0.011758649,0.000618337,0.046678927,0.03678899,-0.029117482,-0.033673592,-0.011607706,0.027782707,0.040803548,0.035767715,0.025020393,0.009206688,0.010211981,0.046648066,-0.014787276,-0.03595599,-0.0035048933,-0.07215512,-0.048533116,-0.00704127,-0.02065153,0.052456155,0.01595215,-0.012744625,0.005638598,-0.0024146666,-0.0013121973,-0.03252018,-0.009685134,0.035550598,0.014432699,0.07328979,-0.0208246,-0.0044633625,0.019936614,0.021935515,-0.013795278,-0.03432552,-0.0042100125,-0.028478248,-0.03186428,0.0036472327,-0.036848053,0.021714956,-0.04295199,-0.05642344,0.0032808983,-0.013655643,-0.017960902,0.030388154,0.0040943027,0.0053680716,0.0053519644,-0.040368594,0.02844526,0.048320256,-0.07285815,0.05507181,0.003968137,-0.0025846206,-0.043515567,0.030814307,-0.016603835,0.02201085,-0.055499025,-0.032805085,-0.008045311,-0.01022714,-0.0310874,-0.039601933,0.010473285,0.014939329,0.034933083,-0.08547919,0.020402571,-0.020133847,-0.03403046,-0.021901522,-0.029239386,0.032856908,-0.01829299,-0.0130528,-0.044211328,-0.039379567,-0.036920026,0.023082854,0.031533495,-0.029282138,-0.035857078,0.04441834,0.022462154,0.02870224,0.022736816,-0.009160082,-0.016661813,0.023871265,0.003686334,-0.002055038,0.0032313666,0.041694447,-0.02228074,-0.020487202,0.0032504841,0.013773235,0.014708143,-0.029167088,-0.022382598,0.017840901,-0.004097726,-0.008690107,-0.027742278,-0.030545324,0.0005181506,0.022521539,0.014124274,-0.04818769,-0.012082373,-0.0026835457,-0.055302385,0.024561355,-0.043859664,-0.011865075,0.036914486,0.002846235,0.05546669,0.02291359,0.05989207,-0.049804915,0.009242309,0.05700028,0.052953348,0.034811594,-0.026454993,-0.013403518,0.0044226316,0.0081814155,-0.014675213,-0.04258763,0.037520297,-0.005124314,-0.04623278,-0.026331628,0.025678802,-0.0118967695,0.022042442,0.029845031,0.035815284,-0.0124637615,-0.002374808,0.07894789,-0.004611014,-0.022321219,-0.05905293,0.039463703,0.0266107,-0.024448553,-0.056596883,-0.019700374,0.005284243,0.015365945,0.030241106,-0.0012459377,-0.0018345325,0.012915204,0.009472878,0.035289545,-0.037924904,-0.027564332,-0.0009565229,0.00038727527,0.0032953527,-0.03145006,0.05993559,-0.051749967,0.06825155,0.017526902,-0.0177749,-0.03800626,0.03245423,-0.03049542,-0.06382732,0.02340613,-0.016071724,-0.021039091,0.039431695,-0.018603949,0.047001615,0.022354184,0.02366164,-0.018110363,0.008694938,-0.00598082,0.026243033,0.028449204,-0.03413031,-0.039262388,0.035093673,-0.06230946,-0.0039269915,-0.035113443,-0.03921776,-0.014686869,-0.0029199535,0.016035354,0.027294807,-0.010350653,-0.000054087304,-0.019171696,0.011939666,-0.010025619,0.0038179206,0.060349163,-0.012502485,-0.048826873,0.053828385,-0.019677421,0.02377536,0.0040899664,0.007963303,-0.004932147,0.0017665508,0.0033822588,-0.009051997,-0.017430034,-0.024546046,-0.00993481,-0.009562499,0.025056468,0.0087475125,-0.028690653,-0.02241934,-0.054124877,-0.016015884,0.06475992,-0.016671421,0.0093209315,0.0031178864,0.016050996,0.0035929827,-0.033820063,0.007203299,-0.014744739,-0.03337589,0.009542647,-0.0068818294,0.020995406,0.034656044,-0.029644456,-0.013691233,-0.022639442,-0.014099392,-0.008066865,-0.065828875,-0.0036086012,-0.0025040444,-0.0074074278,0.024723569,0.048608895,-0.032267343,0.017447244,0.028970405,0.036950383,0.008625293,0.020994674,0.0043215062,0.06936834,0.022290023,-0.059684645,0.0035391408,0.063691765,0.017294353,0.013082484,-0.0063789333,0.0037424352,-0.0395584,-0.04223278,-0.021222338,-0.036833797,-0.03263176,0.004105601,-0.0074949255,-0.00094960193,0.014306697,-0.007268636,-0.023611184,0.019989384,-0.07957749,0.03658851,0.026906116,-0.06041447,-0.021430844,-0.040809184,-0.03069035,0.059369523,-0.017621482,0.030867307,-0.023120966,-0.016326584,0.0065657664,0.014986002,-0.019951168,0.012116755,0.0009184765,0.010988435,0.047282822,0.031688735,-0.012426671,0.047298156,-0.04457799,-0.020036954,-0.029091626,-0.023991005,-0.059216212,-0.01581722,0.027722314,-0.024650099,-0.026538314,-0.03316016,0.06989189,0.02437571,0.0017949991,-0.05466883,-0.060725458,-0.04868007,-0.005847215,0.033716056,-0.05527464,-0.0045823716,-0.040219028,0.004532124,0.031904742,-0.015498223,-0.016942492,0.05814321,-0.004714891,-0.010761122,-0.021353405,0.059892252,0.024888719,-0.02859752,-0.009709773,0.01617916,-0.019823248,0.021047432,-0.030187631,-0.038550448,-0.008424145,-0.0103938235,0.04472516,-0.057430834,0.06140371,-0.016254732,-0.0040542064,-0.029938523,0.030413933,0.055749938,0.00086759956,0.021218523,0.015919996,-0.03015907,0.05113489,0.029083455,-0.0005753364,0.013164462,0.0037577942,-0.006732114,-0.05713091,0.02953121,0.03560352,-0.06470199,-0.05612742,0.008844473,-0.024431055,-0.016231315,-0.030083558,0.013768282,-0.022491558,0.0020877102,-0.043557763,-0.0067572324,-0.011633947,0.03216082,0.015086621,0.022533882,-0.014139275,0.031333514,0.021888878,-0.036359176,0.0077562006,-0.021687252,0.019421546,-0.015904818,-0.0102365175,-0.0009778518,-0.019704709,0.009317714,0.0100013055,-0.025883615,0.045520518,-0.016310723,-0.032534853,0.06511949,-0.035880692,-0.029278617,-0.013227231,-0.018983968,-0.06696775,0.033655368,-0.02971194,-0.03251364,0.015102641,-0.00199868,-0.026658082,-0.043220673,-0.024783915,-0.018059708,-0.037312664,-0.0059218053,-0.042336326,0.01493566,0.024330076,0.0034644604,0.017049495,0.0057980516,0.04661456,-0.031051511,0.017590092,-0.020419799,0.06947207,-0.039247584,-0.03294398,-0.031125441,0.016318528,-0.039033614,-0.0058565284,-0.014720107,0.015333057,-0.048451364,0.035729438,-0.013127631,0.00742176,-0.03524876,-0.0072134044,-0.0035508778,0.045884784,-0.010230856,0.042120896,0.05403365,-0.031574503,-0.036127903,-0.041520175,-0.036236297,-0.055979528,0.019686114,-0.021645801,-0.013964069,-0.03779949,-0.061463356,-0.023194917,-0.040841036,0.01601178,-0.0074367034,-0.0016093248,-0.024274476,-0.010331902,0.014258844,0.04267265,0.03166253,0.00015763272,-0.002310289,0.0148164295,0.00805237,0.009695919,0.010553004,0.010416004,0.03623087,0.01850994,-0.00030516213,0.03809598,-0.013814018,0.039710775,-0.000013069254,-0.021553637,-0.029085232,0.01900103,0.00495081,0.015914414,0.0061524925,-0.035229832,0.01926136,-0.044391595,-0.033761032,0.010699457,-0.09054671,-0.041927133,0.020450443,-0.0018934271,-0.01706427,0.002455415,-0.05534585,-0.018746138,0.010220557,0.012158182,0.010948465,0.034483336,0.008314563,-0.0052872016,-0.044870958,0.0040764376,-0.013560278,0.030885521,-0.056388907,-0.052341476,-0.01526196,0.02122887,0.018207273,0.0023276436,-0.028956924,0.0076051317,-0.017195132,-0.04715215,-0.008462966,0.023202999,-0.0068070325,-0.008880579,-0.014486234,0.046616923,-0.028668523,0.021907998,0.011675652,0.0006365183,-0.017931722,0.03254879,0.0355216,-0.010862578,0.0022896319,0.030835127,-0.0024409501,-0.01417923,-0.021389717,-0.028927097,0.015426107,-0.00075116765,0.035236493,-0.04360787,0.011979278,-0.025996,0.0030144895,0.007461845,0.026758844,0.003719341,-0.033891626,0.028586749,-0.028746504,-0.011175356,-0.026278539,-0.03226875,-0.005612461,-0.023126569,-0.027689556,-0.025536327,-0.0016818262,0.047037475,0.018747298,-0.015297257,-0.00109977,0.0072314157,-0.002854469,0.03887626,0.018420912,0.032847956,0.009663958,0.043167442,0.05029086,0.012632828,-0.005050043,0.012566437,-0.0029311772,0.02059913,0.015798582,-0.004148865,-0.042711645,-0.024260418,-0.04353261,0.04330818,-0.022771893,-0.035847846,0.025319126,-0.028226525,0.03005563,-0.050061032,0.043363627,-0.050837874,0.025744792,0.029386373,-0.015719708,0.019305538,-0.018508408,-0.03382158,0.015711846,0.033678893,0.01142642,-0.007527116,0.03438009,0.028536804,-0.041708197,-0.013332694,-0.0009154758,0.022035975,-0.0022083775,-0.0056911237,0.00030164915,-0.0010226265,0.0026778632,0.015390942,-0.027639972,0.035363037,0.011143472,-0.048455477,0.032803845,-0.017385818,0.007349075,0.019487156,0.02271567,-0.02370734,0.009565923,0.009445865,-0.0022820004,-0.006522193,0.022442752,-0.03866488,0.025700778,-0.024252987,-0.08863991,0.004716586,-0.05464616,0.0016418777,-0.007793487,-0.010958937,-0.04474392,0.018209983,0.02217847,-0.012584376,0.022845188,-0.01814744,-0.0065284497,0.058185324,0.007319057,0.00092976686,0.07221806,-0.011336928,-0.02877747,0.043352503,-0.018545156,0.07502615,0.0147932945,-0.01936639,-0.04713271,0.04271977,-0.057662398,-0.03739407,0.024576157,0.037691213,0.005660874,-0.036196526,-0.065908015,-0.013454657,-0.048074935,-0.014948038,-0.021880757,0.051874656,0.0050791786,0.026872743,0.039512053,-0.032427195,0.266835,0.059183843,0.04743434,0.009746862,-0.013027277,0.03313039,-0.0075705955,0.0094138915,-0.028701415,-0.023480058,0.053991795,-0.027167875,0.008439274,0.014828532,0.009921309,0.09542718,-0.01277042,0.020459246,-0.005240617,-0.03171369,-0.022448096,0.021903777,0.01754496,0.022960456,-0.0051566837,0.057467576,0.037228927,0.024485765,-0.02123305,0.0052479664,0.0023058949,-0.04560343,0.036562283,-0.017796049,-0.039399575,0.047450263,-0.007885768,-0.05505006,0.034549445,-0.014390271,-0.02291316,0.04120611,-0.0060676998,-0.0008623889,0.019660259,0.010629581,-0.008654876,0.021681672,-0.0039460976,-0.03698198,0.03543546,0.018857803,0.02838457,-0.045931682,-0.013346434,-0.021954589,-0.03024251,0.03198042,0.00477408,0.08047729,-0.017611701,0.034023482,0.006750746,0.017178288,-0.03969798,0.038942184,0.07482066,0.032440647,-0.037430845,-0.02987847,0.0043957513,-0.011378749,-0.04123931,0.016103508,-0.01081465,-0.004411342,0.0004699445,0.013373618,0.012901543,-0.020673484,-0.002090715,-0.004943,-0.004632633,-0.01328826,0.004461059,0.028088093,-0.01999723,-0.015075418,-0.046845086,0.054151338,0.0011809706,0.047466815,0.014207065,-0.04400409,0.021918729],[0.04641946,-0.03943598,0.014189937,0.033717927,-0.015071314,-0.029375404,0.0010588302,-0.018750995,0.0070211655,0.036421027,0.030039314,-0.024267524,-0.00837582,-0.0029738566,-0.0066205813,-0.0020599712,-0.021214906,-0.007821,-0.042108793,0.026282901,0.010221483,0.015331884,-0.07905453,-0.011377264,-0.017662324,0.003987523,0.033913936,0.025648316,0.048099957,0.045506522,-0.038819034,0.0029534511,0.00707776,-0.061701328,-0.0055885185,-0.035546463,0.051258378,-0.028522346,0.004614571,-0.024451425,-0.005919037,-0.034362704,0.04226321,-0.04393775,-0.06331192,-0.0035859398,-0.038260806,0.0065317294,-0.0023063691,-0.036678836,-0.009060256,-0.020314017,0.055726945,-0.035145935,0.020872647,-0.004039937,-0.02376679,0.032072544,-0.009063111,0.009442431,0.007132055,0.056758694,0.015721064,-0.08010229,0.013252103,-0.020386694,0.010265588,-0.013230181,0.013289748,-0.03677384,-0.0145067405,0.0383547,-0.007626495,-0.014250239,-0.03410367,-0.00040323337,0.054585494,-0.002667951,-0.036644403,0.008136637,-0.020654956,-0.026229726,0.0138953,0.0075738127,-0.055727083,0.016358295,0.022360656,0.055193875,-0.00019028598,-0.0048524383,0.009316642,0.052849237,-0.037483253,-0.0022400357,0.053449422,0.033595346,-0.008048849,-0.020042935,-0.005534552,0.00008056423,0.031832997,0.009499224,0.0059127957,0.07066046,-0.050428227,0.039121926,0.019113727,0.016461428,-0.017177718,-0.014654622,-0.026253583,0.0031709212,-0.008277835,-0.011430304,0.030857507,0.0019252128,0.016848912,0.026115613,-0.039274745,-0.0066548074,0.044057302,0.027941888,-0.028823346,0.010238804,-0.003956519,-0.06811128,-0.08029612,0.033752017,-0.032737512,0.004207903,-0.019774154,0.00198165,0.030289762,0.034211207,0.051656753,0.03653893,0.011915891,0.02744291,0.026738739,0.0091609135,0.052765176,0.005052988,-0.058203727,0.063534975,0.0030914345,0.028248172,-0.00671862,0.031190211,-0.063845165,0.05049312,-0.05745329,-0.0037964971,-0.01178063,0.01793613,-0.00040606593,0.020016827,0.034712225,0.000062824474,0.021157663,0.022263601,0.0048494744,-0.004976698,-0.04154945,0.018991938,-0.030868601,0.015239689,-0.029729152,-0.003875643,-0.015113179,-0.0039713727,0.007991326,-0.01801767,-0.02692205,-0.0071977186,0.018129945,0.050969012,0.017418647,0.0071817394,0.04853573,0.020903964,-0.009085379,0.03565229,0.016524995,0.03820427,-0.0265494,-0.0034467445,0.010550062,-0.002346704,-0.017908217,-0.029414883,-0.0076208226,0.054075155,-0.05177767,-0.029923411,0.02882488,0.009353813,-0.012684246,0.02247218,0.022665387,-0.054032363,-0.022838231,0.05389105,-0.031348877,0.016592802,-0.047179736,-0.023245752,-0.00009061058,0.06230492,-0.004438791,0.003726743,0.04617421,0.033010527,-0.019819506,-0.02292142,0.021349385,-0.015556542,-0.026686845,0.05559619,-0.041937657,-0.0080020325,-0.0018297322,0.030951656,0.04706709,-0.009525045,0.0005046939,-0.0032770974,-0.013037092,0.03308215,-0.01114137,0.04003981,-0.03155649,0.020587945,0.01095281,0.037004746,0.016423088,0.006822349,0.031195585,-0.015380559,0.010431395,-0.0022505189,-0.035790857,0.028087616,0.062489923,0.060666002,-0.00735891,0.031423952,-0.011716628,-0.030799314,0.0058141607,0.013168945,-0.0013335992,0.043193378,0.0090563325,0.0079797385,-0.0355793,0.016825194,0.040504325,0.05051163,-0.030856188,-0.032145225,-0.034586728,0.062214356,0.011374497,0.035556197,0.02969508,0.00013110111,0.009066792,0.032889377,-0.008708443,-0.047747824,0.00015786692,-0.055715363,-0.039542783,-0.007203514,-0.038486622,0.028679788,0.007389836,-0.005011809,0.016387217,-0.006302002,0.0075225304,-0.029755369,-0.0011478042,0.039383527,0.021515008,0.051198937,-0.03767126,0.034308042,0.006477939,0.022335943,0.014077425,-0.0398515,-0.017945949,-0.05970903,-0.05596408,0.01592742,-0.011659619,0.020895332,-0.030864641,-0.014965871,-0.0018350402,-0.013497393,0.0021837398,-0.011212997,-0.017168028,0.015276523,0.028333453,-0.023441674,0.01985966,0.05681846,-0.07237947,0.036380462,-0.006160591,0.0097264955,-0.031211665,0.015205453,0.013845901,0.020102587,-0.05728931,-0.017973853,0.0013266332,0.0043787295,0.012893354,-0.042752855,0.042844255,0.011882911,0.042392574,-0.09697674,-0.009218369,-0.018158585,-0.06238249,-0.03874188,-0.0017722955,0.007101144,-0.021526419,0.00209318,-0.016101541,-0.04517873,-0.021078449,0.018121487,0.04932685,-0.03112372,0.026588146,0.04505911,-0.019892687,0.015396301,0.007495153,-0.00070571847,-0.05004784,0.023856342,-0.00635372,0.01326037,-0.008351356,0.05806751,0.0111903865,0.00087437785,-0.02194766,0.04670704,0.03951886,-0.009050365,0.0055020847,0.038175125,-0.015554737,-0.020546347,-0.014525925,-0.053720143,0.009339658,0.0010145552,0.010556922,-0.04150102,0.04382096,0.026014173,-0.027182287,-0.017696766,-0.043579407,-0.0039636195,0.034911267,-0.029086329,0.014501561,-0.029909126,0.0068724714,-0.01744443,0.0036276386,0.046980776,0.02986901,-0.000260957,0.023178998,0.00969142,-0.035003733,-0.035796616,-0.036114164,-0.03275753,0.016711716,0.00022418698,-0.028548013,-0.028145185,0.05998392,-0.0011326602,-0.009076593,0.04267275,0.032468453,-0.007913872,0.014271799,0.026869189,0.042178467,0.007223437,-0.06782075,0.055442456,0.028296547,-0.0039696703,-0.032122,-0.011367039,-0.0044847,0.028289659,0.044155236,-0.0035094153,0.009897659,-0.012520576,0.02965541,0.023654152,-0.059382718,-0.0011807866,-0.013503984,-0.0058657546,-0.013373795,-0.030762693,0.023450227,-0.075024016,0.034392178,-0.014099227,-0.008576587,-0.06480174,0.0056224833,-0.03037895,-0.04435924,0.040122177,-0.006141347,-0.02214428,0.013137486,-0.026562512,0.032830197,0.012392675,-0.0078702085,-0.006857068,0.00048161144,0.0127300415,0.011529114,0.041166134,-0.02080164,-0.06075389,-0.0006380893,-0.076997906,-0.028372565,-0.034490258,-0.013111989,-0.011557797,0.0014872006,0.05052253,0.028115604,-0.055701893,0.005511136,-0.01817105,0.049246408,-0.005161334,-0.017850295,0.054619715,0.023225436,-0.049211737,0.057538968,0.0051958435,-0.0038087273,-0.02459483,0.0039915596,-0.020076258,0.006668756,-0.03645459,0.019839473,0.00023326415,-0.033518117,-0.037110034,-0.00238116,0.017997354,-0.010375358,-0.022824964,-0.020474335,-0.050578613,-0.005783166,0.044127103,-0.025700686,0.017980555,0.022128671,0.011730828,0.020374902,-0.01940668,0.024517857,-0.016814955,-0.035981927,0.009514923,0.019979624,0.026984548,0.017694613,-0.011370752,-0.004426236,-0.017882232,-0.01872786,0.0022973116,-0.048549578,-0.01624629,0.01106158,-0.016119864,0.00049323397,0.039742466,-0.0069660256,-0.013637727,0.0593672,0.0209722,0.005012569,0.041787766,0.011428037,0.008350227,0.032917514,-0.053956263,-0.020537043,0.04292773,-0.019771185,0.028150469,-0.0045654583,-0.014564494,-0.036701582,-0.019207004,-0.015014686,-0.047847576,-0.062054735,-0.004678245,-0.014727911,-0.05130277,-0.0010834162,-0.016435495,-0.05883412,0.036244992,-0.07846841,0.02522854,0.02623527,-0.014498306,-0.0293794,-0.04630489,-0.029535003,0.05383306,-0.012187607,0.018340655,-0.022225745,-0.029512057,0.016688492,0.016739441,-0.010335956,0.024217777,0.028757622,-0.013122648,0.03162323,0.015836865,-0.032481413,0.07483911,-0.04998217,-0.038083702,-0.034201898,-0.027701445,-0.04839206,0.001396684,0.02222407,-0.0010800866,-0.01833694,-0.008506005,0.060780544,0.003776188,0.01644959,-0.028098945,-0.03703295,-0.026086498,-0.03945453,-0.00564724,-0.0137186535,0.007840107,-0.03471623,0.0036793612,0.032833364,0.005759637,-0.0071081016,0.04664445,-0.007438065,-0.0022615527,-0.025846776,0.04082032,0.012735857,-0.07564748,-0.013104896,0.0428336,-0.029962402,0.03771605,-0.016897503,-0.03408118,-0.046130348,-0.004672334,0.04576006,-0.02392847,0.014511915,-0.015135575,-0.025167933,-0.07454858,0.051658127,0.057504207,-0.008807177,0.0059687165,0.014768179,-0.006051974,0.03385222,0.028236441,0.014266772,0.015168034,0.024511442,0.055683028,-0.02331907,0.03301964,0.054427728,-0.041015454,-0.0498731,0.007010697,-0.022909088,-0.042362247,-0.06082937,-0.001610332,-0.008107535,-0.010413713,-0.0002358725,0.0042567425,0.0070739994,0.014113531,0.010722594,0.006932144,-0.019200813,0.013916758,0.03188713,-0.021388203,0.021931881,-0.010179886,-0.014466,-0.0065672533,0.033517204,0.047354445,0.032872036,0.029262323,0.016878499,-0.020459298,0.034519788,-0.012168883,-0.011471397,0.04212931,-0.01114917,-0.04861972,0.006956401,0.0033498155,-0.0271241,0.030333327,-0.061157916,-0.035704773,0.0093368925,-0.026213435,-0.016110191,-0.042715207,-0.009993256,-0.025880573,-0.048579127,-0.03298777,-0.04528594,0.011417106,0.02362256,0.020162005,0.0117134005,-0.001708183,0.040346585,0.003312788,0.026963007,-0.0012102912,0.041679554,-0.053783976,-0.03266856,-0.016765896,0.034302585,-0.050236642,-0.012693385,-0.0094174165,0.018738963,-0.014471852,0.023711594,-0.004605264,-0.012582841,-0.047353268,0.0012006612,0.00081342965,0.031318504,-0.00053222524,0.031766787,0.04450032,-0.018924437,-0.030770177,0.003547969,0.0119419545,-0.048434664,0.025538515,-0.003342593,0.0011859788,-0.020192271,-0.060467567,-0.031158451,-0.02749978,0.008786927,-0.019239487,0.0027484498,-0.02586513,-0.03170148,0.023093436,0.068781786,0.010957527,0.01328634,0.022621617,0.02119571,0.030454583,0.0015441253,-0.016353369,0.011649033,0.037313495,0.0051855054,-0.007043922,0.017192066,-0.0025338738,0.013407247,-0.008588309,-0.022135915,-0.041809503,0.032090303,0.03537927,0.022364695,0.021176243,-0.054130025,0.030922757,-0.030899392,-0.03404809,0.029978748,-0.06403604,-0.02805777,0.011706291,-0.019419152,0.00087964506,-0.009092813,-0.035022467,-0.019278182,-0.02639642,0.027816571,-0.0018551433,0.029694859,-0.008519289,0.0226792,-0.030928088,0.008184084,-0.027789805,0.01604847,-0.012948524,-0.03823671,0.020026004,0.036448885,0.044440623,0.040113334,-0.036220986,0.029941425,0.001744386,-0.025968349,0.019821303,0.023931062,-0.03969657,0.009797597,-0.036135986,0.027218288,-0.035106763,0.009130642,0.023917763,-0.030723486,0.0015518102,0.042120717,0.0465068,-0.026685908,0.011795542,0.036702145,-0.0072682356,0.026469026,-0.015891302,-0.021896873,0.045517597,0.022693967,0.016539186,-0.015435958,0.029611256,0.0023408718,0.020684045,-0.0011433432,0.05011566,0.020731585,-0.031242134,0.0075136186,0.017433515,-0.023373004,-0.0036170117,-0.041936655,-0.00062937994,-0.051555075,-0.014885972,-0.020387255,-0.009309963,0.05442597,0.015066167,-0.016281648,-0.035611093,0.021293836,-0.028218685,-0.0021361115,0.03725577,0.024914289,0.014732034,0.029328331,0.023502825,0.024022065,0.010235396,0.045129877,-0.0102792345,0.0010847445,0.004592157,0.006977161,0.021673834,0.007905052,-0.021968247,0.06970775,-0.01862876,-0.023184126,0.002163039,-0.0468544,0.018239485,-0.01797371,0.0035977832,-0.035947815,-0.0013521899,0.067246445,-0.015635882,0.014105683,0.013389777,0.02391532,0.010306745,0.0032667308,0.029141646,-0.016252583,0.05664277,0.054124095,-0.009396788,-0.025012156,-0.01798008,0.011689532,-0.020746475,0.008246445,0.014911179,-0.018296033,-0.017188104,0.010237913,-0.010591136,0.046162035,-0.005726247,-0.06161181,-0.011256078,-0.00084621,0.030121798,0.010102526,0.0073823477,-0.050704863,0.012498888,0.0010004473,-0.021404978,-0.020955198,-0.0047238627,-0.062457956,0.022493081,-0.040866554,-0.053300645,-0.020246584,-0.031885482,-0.007979305,-0.028636362,-0.018622978,-0.040538825,0.020793969,0.021888532,-0.0007345028,0.0060722246,-0.009917391,-0.026592825,0.05539175,-0.0046315915,-0.027791131,0.0767792,-0.0027895516,-0.015726063,0.009271516,-0.03199403,0.02104091,0.0039126524,-0.0050885635,-0.016196575,-0.0025266388,-0.056321695,-0.031308692,0.023982935,0.039003283,0.0144869955,-0.025220703,-0.08445138,-0.016010333,-0.029860953,-0.032901652,-0.046735216,0.031223843,-0.008130853,0.031571936,0.013931719,-0.06856318,0.26746273,0.054821007,0.014315985,0.047547825,-0.005899944,0.01274523,0.018606335,-0.017300412,-0.016725533,-0.030384626,0.040188253,-0.020486645,0.0156218,0.00005901897,0.01030948,0.048956208,0.0076708402,-0.0023893334,-0.03902631,-0.0092050275,-0.022888279,0.022059849,0.029829156,0.026927808,-0.028417649,0.029467322,0.07812457,-0.020240642,0.008709385,-0.010174728,0.017790288,-0.040902503,0.021033712,-0.044159207,-0.08173104,0.020861292,-0.00802985,-0.019884026,0.042122465,-0.031533375,-0.021843472,0.02236361,0.0013496552,0.02778879,0.0053773667,0.026901348,0.017180638,0.017650856,0.0053564277,-0.028082764,0.04897045,-0.0059576314,0.039658308,-0.052651037,-0.02852825,-0.037965585,0.020518394,-0.024090445,-0.0063360897,0.04415554,-0.008864297,0.0047383164,0.035326,0.010546184,-0.06801747,0.038889103,0.04380069,0.040513504,-0.014147052,-0.037637644,0.007535649,-0.017418459,-0.058607746,0.0008084468,-0.015088805,0.003277691,-0.034460813,0.011740146,0.0270998,-0.03125516,-0.037020516,-0.0112398835,0.016034923,-0.010060765,0.000031269945,0.031626403,0.0019691873,0.0025920442,-0.03533366,0.062457863,0.019036805,0.015437744,-0.010952346,-0.050102178,0.014344701],[0.03387897,-0.023284208,0.031452585,0.04347769,-0.014823754,-0.036179475,0.012796586,-0.02842897,-0.007425016,0.037042208,0.057519417,0.00065974955,-0.007334126,-0.007948598,-0.010126052,-0.009984626,-0.008526225,-0.018258113,-0.04359401,-0.020763855,-0.011595349,0.025590975,-0.10680203,-0.014882484,-0.020367546,0.025658429,-0.0014935288,0.03341331,0.029573217,0.04455777,-0.022920998,0.04736444,0.042958654,-0.06336582,-0.0336,-0.023381127,0.0391068,-0.021917883,-0.006075861,-0.041036986,-0.013629745,-0.019700631,0.039998982,-0.020567307,-0.06047302,-0.02255983,-0.0127719315,-0.017808955,-0.0054616085,-0.040813103,0.030547177,-0.02902475,0.03793816,-0.037944112,0.039322954,-0.027456772,-0.036760237,0.022369025,-0.034916114,0.0025056389,0.002983154,0.051355474,0.0046882886,-0.04617782,-0.039836925,-0.013252016,-0.0052115563,-0.017479936,0.014622093,-0.0021655944,-0.001980352,-0.009136437,-0.022612771,0.0035679885,-0.009785549,-0.0021443486,0.04981888,0.016586035,-0.015260779,0.033385333,0.016213294,0.028700823,0.011563785,0.021299662,-0.021487603,0.0066811065,-0.00018150653,0.05313412,-0.005721898,0.00006998758,0.013002655,0.026909865,-0.030200066,-0.0032210327,0.023990873,0.022272045,0.00054946874,0.0033522511,-0.018727463,0.00042365835,0.04038295,0.011854381,-0.020477911,0.060653355,-0.021606497,0.010180141,0.0035059068,0.0055258614,-0.006042919,-0.0048912857,0.005685784,-0.013386845,0.009556334,0.028720735,0.001455643,0.056062184,0.011485242,0.022750488,-0.040880058,0.023202648,0.033180777,0.044378687,-0.012543264,0.027850185,-0.0003608937,-0.057830714,-0.056867152,0.040157773,-0.046276666,-0.002229033,-0.013783065,0.00721721,-0.019380497,-0.013122552,0.06675093,-0.013445821,-0.0049618986,0.02094681,0.0361419,-0.0046653715,0.040536907,0.0014890127,-0.012434276,0.06872267,-0.013650604,0.018529506,-0.0014176986,0.005133435,-0.08300725,0.031974655,-0.022606503,-0.01023978,0.019179346,0.024005422,-0.013845568,0.0034306196,0.021707378,-0.021575598,-0.00013605092,0.018455764,-0.021981217,0.01454467,-0.029884793,0.04765375,-0.016836844,0.02012769,-0.019130474,-0.011512136,-0.048162695,0.014850388,-0.0029535193,-0.0129302405,-0.05435224,-0.0003641814,-0.004928585,0.05539118,0.0024310937,-0.009817921,0.024586638,0.014344932,0.0012961325,0.011415506,0.022915013,0.058237627,-0.024433699,0.041455045,-0.0044043735,-0.030018777,0.014822571,-0.033483095,0.009940296,0.020061878,-0.021111866,-0.0010136362,0.031527244,-0.0025620838,-0.021614483,0.019740796,0.008016039,-0.06193233,-0.012585542,0.04170993,-0.011497181,0.054364063,-0.00800716,-0.04354686,-0.015054575,0.04055945,-0.009357098,0.019074747,0.008705753,0.037135594,0.0056937123,-0.012058109,0.045606375,0.013411052,-0.05387653,0.049227018,-0.05437048,0.0035620818,0.011488284,0.038441315,0.018042423,-0.0141787045,-0.005253127,-0.0157984,0.008298142,0.058034435,0.0013442001,0.01754859,0.0030760765,0.01837019,-0.00016232723,0.042919304,0.025641393,-0.027765255,0.0104087675,0.014975508,-0.013732654,0.018028384,-0.025514267,-0.0009455981,0.030735385,0.031345256,0.015042798,0.03850671,-0.008596495,-0.0103226295,0.0023618548,0.018658077,-0.032129698,0.033191677,0.031817302,0.031451203,-0.008216486,-0.00391836,0.05448218,0.030477226,-0.05202862,-0.037288073,0.0032603862,0.024765914,0.0025208518,0.05065081,0.054270037,0.0026601667,0.024000388,0.0116205495,-0.035712026,-0.026938802,0.01744648,-0.054864336,-0.047138862,-0.00280435,-0.026805086,0.060196936,0.037502218,-0.0006336123,0.025740983,-0.0076147183,-0.0037252223,-0.051403563,-0.012691499,0.035160754,0.00041505942,0.078202814,-0.019443763,0.003873946,0.0054501826,0.0065443986,0.02965857,-0.045581,0.0135257
+8000
+3,-0.022251613,-0.0021001447,0.006890206,-0.005898952,0.042223673,-0.01935943,-0.029694378,-0.01785435,-0.00523713,-0.02018715,0.022833096,-0.030569764,-0.008430669,0.00072132505,-0.025136175,0.009045364,0.02126892,-0.100353256,0.020905577,-0.018559989,-0.0072733243,-0.038940996,0.04047381,-0.00640367,0.013320508,-0.039695073,-0.021541849,0.0051822686,0.02535101,-0.03747056,-0.03208927,0.028479073,0.0046587526,0.03133218,-0.06708539,0.05005819,-0.021152377,-0.052248985,-0.016973274,-0.0067409347,0.04698744,-0.030993069,0.011859374,-0.030817611,-0.040660728,-0.058750466,0.016127199,0.03481229,0.0012806718,0.015530679,0.06547583,-0.01740731,0.0023512046,0.029702106,0.013385577,-0.009918161,0.038926564,-0.0060197297,0.014535796,0.0061030295,0.021645129,0.0075533832,0.017936112,0.00072020706,0.033149876,0.026636483,0.009272853,-0.000003231281,0.058256082,-0.01990677,-0.030760733,-0.038629714,-0.0481267,0.015227375,0.039181218,0.021968922,-0.06339587,0.027691832,0.0076994146,-0.03517259,0.029573593,-0.0068934457,-0.026065245,0.051039953,-0.01358385,0.051926933,0.027467035,0.004846703,-0.018470332,0.0071144514,0.03204967,0.024215361,0.015408282,-0.04284782,-0.016910816,-0.036248248,-0.021051165,-0.03747278,-0.05276974,0.016283445,-0.002210188,-0.020581415,-0.0073579527,0.027076842,-0.0066830176,0.012822677,-0.0041391156,0.014753408,-0.003403851,0.0068605132,0.058734555,-0.012998769,-0.014718143,-0.0640278,0.04733254,0.011359176,-0.012581019,-0.05001389,0.005730751,0.0028458282,0.0337809,0.0055866945,-0.012300475,-0.0034053128,0.0070080184,0.019450217,0.038278095,-0.024068061,-0.050818298,-0.007810441,0.0110808965,-0.021972738,-0.050668146,0.044734497,-0.06443708,0.016503021,0.01933954,-0.011412296,-0.038260654,0.009418625,-0.019653486,-0.043735523,0.059171002,-0.0055996464,-0.030988244,-0.001134586,-0.017374372,0.053769108,0.014190655,-0.004835276,-0.018442782,0.007079803,0.009115615,0.025831241,0.032167524,-0.04011071,-0.05968495,0.028224751,-0.06826449,-0.024556816,-0.030314725,-0.00847361,-0.008000192,-0.017102197,0.030595941,0.030133907,-0.008273405,0.02196692,-0.014658904,-0.006333183,-0.028653417,-0.0008152194,0.065164246,-0.005575924,-0.05158429,0.05339327,-0.011991575,0.014764631,-0.014286876,0.006114147,-0.02334808,0.018588068,-0.021599578,0.004765404,-0.019252976,-0.035096683,-0.01811635,-0.021904292,0.021884091,-0.015279867,-0.008163747,-0.036576208,-0.07781714,-0.025835468,0.04347106,-0.03737877,0.012880485,0.037875876,-0.00048621828,-0.0015714614,-0.035408147,0.01651656,-0.021960983,-0.03541219,-0.012921805,-0.0064857886,0.028125271,0.022376748,0.027709367,-0.016690088,0.0044869385,0.002077961,-0.00030581412,-0.04038941,-0.010828789,0.000007095048,0.010338559,0.03141632,0.013628087,-0.05273321,-0.0050263787,0.03825897,0.013539892,-0.015615944,0.043221787,0.02672401,0.05112518,0.021264909,-0.080543905,-0.020656085,0.07108416,-0.0019560147,0.033866677,0.009451105,-0.015493803,-0.07244362,-0.029762687,-0.011129939,-0.049717467,-0.06666772,-0.0022562451,-0.027615843,-0.02572334,0.024308879,-0.009374056,-0.03922554,0.013654041,-0.062022086,0.045719516,0.015410184,-0.04513592,-0.046102107,-0.023128333,-0.0024333133,0.06564617,-0.010048961,0.042973816,-0.008932144,-0.01106691,0.005734832,0.0070451214,0.007672966,-0.005923685,0.010984378,-0.0012387817,0.02791784,0.021883443,-0.01836936,0.043818474,-0.02700647,-0.04395608,-0.031822752,-0.020358749,-0.03341007,-0.0038250033,0.0313599,-0.0072737313,-0.019832818,-0.015001516,0.06842557,0.0531627,0.036471557,-0.029129935,-0.065200746,-0.04131029,-0.015718646,0.04989615,-0.031355094,0.020347329,-0.01975293,0.018636143,0.016063208,-0.0010921472,0.0011390352,0.056240033,0.03144609,0.001212182,-0.04715414,0.06716447,0.027223779,-0.04520852,-0.019261017,-0.011949046,-0.04207169,0.027726261,-0.021168375,-0.046019163,-0.034756023,-0.008780206,0.05936977,-0.026563881,0.057397716,0.014872735,-0.023746738,-0.01852107,0.0476133,0.05276402,-0.019515866,0.028529158,0.01748136,-0.008198386,0.045097113,0.013752495,-0.02121264,-0.0044156145,-0.0037891404,-0.0069087152,-0.053862587,0.021378212,0.037786424,-0.0689465,-0.06281871,0.0064770784,-0.0076520466,-0.028212916,-0.055573713,-0.0076542837,-0.024141965,-0.009556247,-0.0057213786,-0.013826829,0.010477217,0.03439351,-0.015693268,0.016050082,-0.025972566,0.06624772,0.021498492,-0.035381682,0.010649854,-0.034317397,0.019927984,-0.010896927,-0.0014245157,0.0027324758,0.0070837433,-0.024502974,0.0345586,-0.035726383,0.049609993,-0.015403228,0.003920755,0.063167125,-0.017481359,-0.036026124,-0.015194889,-0.007923218,-0.02688225,0.031381555,-0.023514893,-0.013500873,0.012194814,0.003796567,-0.017928898,-0.014764387,-0.028722115,-0.038431954,-0.0446209,-0.026864067,-0.021979779,0.0059292843,0.034767497,-0.014418416,0.012265373,-0.009403894,0.054541394,-0.05538022,0.048319228,-0.0071747657,0.06947325,-0.046308782,-0.012089045,-0.04273885,0.011442418,-0.030729536,0.025389925,-0.030341107,0.016465308,-0.028249964,0.011641608,-0.015808744,0.023462208,-0.020439094,0.0028274723,0.027446484,0.033452332,-0.00021925985,0.05355635,0.04462753,-0.0051109074,-0.038251087,-0.00687856,0.0074847373,-0.03458824,0.0071500903,-0.024973778,-0.0150426375,-0.029486584,-0.04459041,-0.028484222,-0.041491844,0.0202232,-0.009371077,0.02041336,-0.0011792727,-0.02571853,-0.0028396873,0.046193536,0.031967074,0.0050372146,0.010531872,0.007779184,0.03398947,0.015805237,0.015065126,0.0073295794,0.052800275,-0.00711025,-0.007940364,0.060211215,-0.020435043,0.041550905,-0.011862956,-0.018504037,-0.035994623,0.016378466,0.013484805,0.02269227,0.011385491,-0.05416081,0.011066253,-0.056167413,-0.027802663,0.02631123,-0.111502066,-0.031231817,0.008638691,0.007958033,-0.014777273,0.009856899,-0.049778465,-0.016210826,0.009982888,0.0033521138,0.03929972,0.024115229,-0.0133566335,-0.0002478769,-0.042452823,-0.008582704,0.023400486,0.02465374,-0.062049568,-0.050209317,0.008834227,0.030728795,0.007381844,0.007786303,-0.04455919,-0.0041770074,-0.01099525,-0.038778506,0.014367333,-0.0074141365,0.00027844036,-0.027519183,-0.04503845,0.057745717,-0.011665773,0.015956378,0.02178132,0.006906726,-0.024818195,0.023067353,0.03554336,0.028304715,0.03189679,0.009553799,-0.020992322,-0.0014787207,-0.014088464,-0.023259625,0.053320237,-0.0077787405,0.0026846523,-0.037245233,0.032418597,-0.013817425,0.026585953,0.03231232,0.05509727,-0.029230846,-0.0010539709,0.010039254,-0.0073998445,-0.02405545,-0.027349044,-0.028994162,-0.0024711648,-0.03981075,-0.053369477,-0.01430274,-0.0031183201,0.04467558,0.024559868,-0.02523875,-0.0097662145,0.0030422409,-0.010027037,0.015907511,0.0056896424,0.0427119,0.015590144,0.026072226,0.05511012,0.030132389,0.016799742,-0.00074650964,-0.038133457,0.003270632,0.04655279,-0.0008646292,-0.013843665,-0.025394285,-0.029829944,0.041574307,-0.031130828,-0.016244402,0.0113358395,-0.05171685,0.0050314395,-0.031844504,0.028337156,-0.003338924,0.0147791,0.032912664,-0.012949264,-0.017744796,-0.0032939669,0.010334341,0.00789949,0.008313522,0.013786593,-0.0001228667,0.038394827,0.029297048,-0.019897548,-0.018398896,0.00197968,0.01161416,-0.029548265,0.0022887953,0.0020259651,-0.011675549,0.0059883236,0.010568183,-0.0291926,0.034815572,0.006525281,-0.057172082,-0.00033349803,-0.004443331,0.005235241,0.020164423,0.005082885,-0.018139308,0.034410045,0.025922159,-0.009355847,-0.024804577,0.021382868,-0.029789545,0.049463503,-0.03962138,-0.061710723,-0.007917688,-0.040380005,-0.02993726,-0.0065846383,-0.008908504,-0.0378239,-0.002815566,0.04134733,-0.026130807,-0.0024061133,-0.002381669,-0.009918383,0.029750494,0.035200626,0.0060970075,0.08479713,0.018370625,-0.018047001,0.03553949,-0.041722577,0.037413176,-0.008378969,-0.019381367,-0.005462807,0.04068723,-0.050139003,-0.05833196,0.05676958,0.028272284,0.010263276,-0.04588636,-0.061777815,-0.015998203,-0.019043244,-0.018080693,-0.0106451595,0.06391299,-0.010163417,0.015408789,0.014172688,-0.04631509,0.2719776,0.075270236,0.018573152,-0.01824924,-0.026394684,0.020733884,-0.016078118,-0.009894091,-0.0133527275,-0.0030648534,0.04544074,-0.009805221,0.00799245,0.036078583,-0.01728712,0.07285551,-0.021214925,-0.01798498,-0.0229709,-0.018911745,-0.02906459,0.0060933325,0.00058822625,0.00485085,-0.027529135,0.029690607,0.041000687,0.011540874,-0.0025707453,0.024980681,0.019334592,-0.032416165,0.023924856,-0.009053452,-0.04038044,0.015820736,-0.013977269,-0.054114833,0.019789297,0.013931751,-0.004051322,0.002255876,-0.027673848,0.020117084,0.04764498,0.022927348,-0.027027821,0.00884177,-0.008204779,-0.020167578,0.043386016,-0.003583476,0.04389227,-0.033956267,-0.022976767,-0.007227154,-0.0023820584,0.0036528017,0.0057184887,0.046763487,-0.026222749,0.002338759,0.0055294284,0.018968772,-0.053943522,0.042855706,0.06164382,0.0014836463,-0.04035955,-0.027997399,-0.00333181,-0.02656116,-0.023399977,0.024462184,-0.025706528,-0.019275215,-0.034157652,-0.011141414,0.006813474,-0.03215676,-0.03329275,0.00069736846,0.0032331366,-0.030198637,-0.006708299,0.030148894,-0.0054240036,-0.024499837,-0.049079213,0.060985047,0.023515133,0.0397834,-0.0024651478,-0.056011252,0.021514986],[0.037772745,-0.0080413185,0.014385192,0.036388017,-0.039999604,-0.033381954,0.018112123,-0.007563439,0.022096587,0.056246083,0.026008602,-0.02534427,-0.0054515926,-0.01775652,-0.017035158,-0.011776904,-0.028928004,-0.018503737,-0.06537904,0.028028913,-0.0070007616,0.030499544,-0.08861866,0.009463862,-0.025444325,0.05104287,-0.009913419,0.02041885,0.046412487,0.058666565,-0.025154619,0.024358457,0.010232378,-0.036285724,-0.0046676896,-0.021164943,0.05906695,-0.033700243,-0.025719061,-0.0617978,0.006875553,-0.05561356,0.059763107,-0.040327586,-0.07022166,-0.06640767,-0.024688667,-0.050000343,-0.0091866795,-0.054862116,0.013390677,-0.0388707,0.0021443833,-0.032300577,0.037393276,0.023207042,-0.027725792,-0.0039377175,-0.013187987,0.025249558,0.04004185,0.041479137,0.01972337,-0.0631419,0.0041072615,0.004660269,-0.00032485582,-0.01700985,0.007846812,0.011606878,0.006931387,-0.018830257,-0.019634528,-0.018605141,-0.02253933,-0.022644242,0.03341475,0.014202039,-0.011507454,0.055944536,-0.0031024513,-0.0044142986,0.012871964,0.010500813,-0.042488743,0.011778693,0.025674624,0.075950235,0.013974531,-0.029984385,0.022541195,0.0017593782,-0.04208721,0.021551225,0.023695799,0.035807833,-0.004667607,-0.0031001423,-0.019847322,-0.01738037,0.031630818,-0.0010608585,-0.02796782,0.033758838,-0.057702795,-0.012360464,-0.008470656,-0.044143956,-0.020048127,-0.0048912168,-0.0062974105,0.018102268,0.053466916,0.024505254,-0.009048827,0.037592158,0.009831128,0.038577158,-0.005543245,0.037280604,0.00374039,-0.0032797346,-0.010198324,0.021332249,-0.0039006802,-0.034340676,-0.027349828,0.052928,-0.018155927,-0.0058270115,-0.01619751,-0.013223392,-0.0028156976,0.009422543,0.03720661,-0.020852912,0.014696027,-0.011244759,0.05036943,-0.026397461,0.055923086,0.025562905,-0.029323565,0.07870107,-0.028607097,0.04573473,-0.014492477,0.026648173,-0.053100504,0.05019293,-0.028851563,-0.026253622,-0.018255705,0.01269701,-0.050171003,0.02611505,0.00329564,-0.02346476,0.011489127,0.010123637,-0.034974597,0.035796102,-0.008969327,0.031034896,-0.02179291,0.028967995,-0.02824034,-0.010229124,-0.036118623,0.00019889958,0.0075462842,-0.011443963,-0.034696065,0.0158521,0.010253253,0.053851265,0.009333738,-0.014490292,0.067249276,-0.019659612,-0.010098543,0.025171185,0.007055556,0.04905833,-0.011183422,0.035842158,0.009874414,-0.02294332,-0.004918572,-0.027865509,0.005642933,0.013969774,-0.055654317,-0.008763297,0.02507859,0.020242834,-0.05422846,0.0049257413,-0.015913839,-0.03903322,-0.01176431,0.01442377,0.0007642408,0.05361033,-0.019003192,-0.015751902,0.0041836933,0.05773838,0.0032860942,0.021303356,0.008968068,0.039173145,0.0053675966,0.006089932,0.024992302,-0.008836744,-0.05606263,0.058514338,-0.056508727,-0.020737374,0.014176858,0.00018583419,0.012958055,0.03294471,0.01605874,0.00065458234,-0.00644811,0.07189635,0.004973735,0.0149674015,0.00060523977,0.043988176,-0.033550724,0.036727056,0.02056886,0.006219317,0.016876422,0.011263515,0.029540377,-0.009557978,-0.058577918,0.00540926,0.042449873,0.04729289,-0.000011057596,0.04912028,-0.0074246926,-0.003986815,0.014279597,0.02317756,-0.013186151,0.03371123,0.03203718,0.018465325,-0.023302898,0.0071925204,0.03544816,0.087653846,-0.06672093,-0.055948246,-0.0049803606,0.05126744,-0.002118174,0.03917464,0.027782347,0.017467592,0.03488226,0.057484426,-0.0032086296,-0.026669646,0.0015634715,-0.023099868,-0.058474433,0.007251777,-0.03228374,0.016939698,0.016352976,-0.01000837,0.033648025,0.0016337602,-0.0012521665,-0.020735154,-0.0213915,0.039649084,-0.020704618,0.020271886,-0.0024822345,0.032623917,-0.0026238135,-0.036308978,0.022837276,0.0023611528,-0.030036937,-0.017365199,-0.0045566824,-0.0047882493,-0.004473885,0.009194497,-0.013139159,-0.0040182634,-0.016201451,-0.014809193,-0.022931373,0.0024933794,-0.008880173,0.0033042878,-0.01847355,-0.032520358,0.049372233,0.037575517,-0.06835173,0.027341757,0.0022266181,-0.0011431046,-0.050515138,0.0155285755,0.025844099,0.03679359,-0.026557576,-0.0034164314,-0.009846456,0.027399346,-0.005131308,-0.06339061,0.03351336,0.034568198,0.03695007,-0.07908037,0.0069045085,-0.010004006,-0.09451808,-0.04071149,-0.023716249,0.018298743,-0.03415247,0.024764799,-0.03269478,-0.043993898,-0.063072205,-0.0061904765,0.06214587,-0.023525467,0.045080613,0.053034376,-0.024453552,0.0053458977,-0.00045752968,0.0046272967,-0.023581542,0.0044509573,-0.027829835,0.04034752,0.01674243,0.006025616,0.012101451,0.02735668,-0.035639346,0.03772314,0.0237848,0.03536587,0.006559973,0.07743255,-0.00011028723,-0.015885387,-0.016810082,-0.07782571,0.02318807,0.0049123615,0.026882818,-0.07246104,0.020344682,0.006533893,-0.035263218,0.014291056,0.005047618,-0.023237687,0.08936303,-0.037289158,0.032881655,0.0110794855,0.0009999361,-0.01077564,0.015175505,0.053126745,0.04950785,-0.010861152,-0.024517901,-0.007232447,-0.025872108,-0.035306513,-0.043412764,-0.06506051,0.014900893,-0.006618265,-0.01036723,-0.03906315,0.030845929,-0.0114860805,0.0060889977,-0.0011846344,0.0033525806,-0.00013071552,-0.001797134,0.02833144,-0.008771829,0.002576501,-0.04027277,0.052493412,-0.011073287,-0.0037492567,-0.018983517,0.0025430117,-0.019869052,0.028337548,0.0061573945,-0.017059134,0.007251703,-0.026434654,0.028247826,-0.0118295085,-0.0719802,-0.02004914,0.04149919,0.0052259737,-0.0159576,-0.059717126,-0.00284677,-0.04303804,0.0031925794,0.014534901,0.00031169842,-0.039397255,0.02197264,-0.010932935,-0.037848707,0.044194747,0.017784303,-0.037099272,0.010863494,0.0028487241,0.0010284929,0.043958377,-0.025450686,-0.013540799,-0.012744985,-0.0017035024,-0.00007028525,0.042300746,-0.033989854,-0.030162947,0.019201044,-0.08728578,-0.021813134,-0.03299759,-0.0155930575,-0.013911567,-0.029935293,0.03130962,0.032425664,-0.0053418693,0.0076131397,-0.021800132,0.02725339,-0.021543192,-0.027332155,0.07543448,-0.0020104027,-0.067419216,0.024196412,0.0067944597,-0.0066142245,-0.0018578791,0.01791712,-0.031052256,0.024532331,-0.037379432,0.010034455,-0.030801771,-0.04574942,-0.015246051,-0.021746038,0.011179343,-0.045231115,-0.0051656817,-0.014240627,-0.0713613,-0.004683123,0.0087354835,-0.035545506,0.00908759,-0.00059710734,0.022892993,0.0073968405,-0.04919979,0.0053518554,-0.016427206,-0.055975717,0.03399565,-0.0063199066,0.0059948843,0.04854325,-0.0043360395,0.015740458,-0.014225639,-0.016013676,-0.0077688037,-0.018835595,0.010533958,-0.03207317,-0.007486526,0.003089384,0.04058796,-0.014833619,-0.019320697,0.013625976,0.023930153,0.016259184,-0.015180229,-0.010417575,0.011458813,0.02015734,-0.050635602,-0.01281757,0.040591277,-0.025563566,0.03221432,0.04173814,-0.016686333,-0.03774777,-0.0011336713,0.0013770215,-0.04250012,-0.050944638,-0.0006149193,-0.03413985,-0.009477873,0.019622957,0.0058591906,0.00049558596,0.02212195,-0.045914646,-0.015686866,-0.00819325,-0.018664412,-0.026879152,-0.028203683,0.005799546,0.06646485,-0.024175787,0.030130232,-0.02003017,-0.021655912,0.029333448,-0.002270021,0.01404383,-0.019964987,0.003465022,-0.018737279,0.046333734,-0.008667337,-0.019208634,0.07585982,-0.011038764,-0.011818758,-0.02867682,-0.017384352,-0.023319304,-0.02147078,0.04096497,-0.023769507,-0.025731968,-0.021673765,0.062317096,0.04382588,0.038933553,-0.033671357,-0.020111015,-0.022909923,-0.027614191,0.017198427,-0.016051812,0.031413008,-0.0064928713,0.0050630174,0.018266635,-0.00050815614,0.0068096714,0.05766575,0.0072513577,0.016454646,-0.058187243,-0.004789959,0.039014954,-0.053212438,0.0056881234,-0.019227156,-0.012627827,0.032152876,-0.0166771,-0.087689064,-0.028260099,-0.0052962326,0.07308962,-0.027664697,0.031795662,0.016528288,-0.018776055,-0.058975667,0.04312915,0.041104987,0.014200702,0.037208077,-0.027570793,-0.010209094,0.036627878,0.023999734,0.0004974487,-0.01067085,0.030252283,0.03577607,-0.028346635,0.03752615,0.054992706,-0.02809096,-0.06055067,-0.0034568529,-0.0033354054,-0.037980024,-0.036525767,-0.041083906,0.0014699957,-0.029313825,0.03186583,0.006161328,-0.0134053,0.038072646,-0.01949756,0.013319839,-0.047700115,0.033461645,0.035157353,-0.03404362,0.028809056,-0.033091333,-0.0036134503,0.020285765,0.022724437,0.03732157,0.016456267,-0.024362797,0.018128673,-0.034468733,0.02924982,-0.031897273,-0.03101578,0.037748124,-0.009290423,-0.06376897,-0.0070017497,0.031150904,-0.037928212,0.030358337,-0.071989484,-0.02744175,0.0126246745,-0.01350711,0.0055306875,-0.024187924,-0.023200056,-0.02451229,-0.04192824,-0.022707386,-0.025401661,-0.0123662,0.06335281,-0.03292455,0.022614362,0.0003114995,0.04833093,-0.07111959,0.009972652,0.029260058,0.044837583,-0.018365595,-0.0675418,0.01949406,0.03510162,-0.032119025,0.0016472576,-0.0205544,0.027709702,0.023862965,0.033738703,0.012277994,0.015188676,-0.008280435,0.020759571,0.025926134,0.017465312,0.0051730806,0.026264744,0.015695939,-0.0132711055,0.0056814807,-0.00493653,0.024747001,-0.06263465,0.037809346,-0.0024728156,-0.02106601,-0.012286656,-0.043702226,-0.018161172,-0.04107852,0.026305698,0.035797846,0.024945844,-0.0039714533,-0.027797049,0.009742408,0.020208353,-0.020429654,0.015331067,0.024706416,0.026550388,0.0021156091,-0.022241632,0.0027731443,0.016976578,0.044278383,-0.015217876,-0.008314709,0.018298034,-0.023301786,0.0064193,-0.00007366364,-0.02667083,-0.056119934,0.017609833,0.028762773,0.024909105,-0.004192163,-0.023504568,0.020228319,-0.012170108,-0.0069186334,0.011197802,-0.07998748,-0.016554186,0.026847811,-0.0014818473,-0.032839745,-0.0006404525,-0.024907649,-0.004709728,0.003630799,-0.012423785,0.029784799,0.042109482,-0.026032167,0.04182132,-0.021364203,-0.022152051,0.0049949666,0.0041782185,-0.031212535,-0.021296352,0.019569382,0.07407342,-0.006066581,0.002392423,-0.05256216,0.018779036,-0.017218068,-0.031454094,0.048304934,0.030733788,-0.016977685,-0.028571988,-0.032033544,0.038708266,-0.045464028,-0.023260606,0.020659575,-0.013252348,-0.020439157,0.047782846,0.028908089,0.0036975478,0.021444106,0.0028159001,0.019370463,-0.002625574,0.008264282,-0.0070568686,0.07749851,0.004038551,-0.012645576,-0.03691305,0.05207344,0.015205285,0.044827506,-0.01448064,0.044172905,-0.0154321585,0.012890045,-0.011682606,-0.03367373,-0.02573764,-0.04133644,-0.020966943,-0.0066771437,-0.025694577,-0.02388503,-0.0051343474,-0.018572627,0.04850205,0.013908873,-0.02432109,-0.009516567,0.01294348,-0.027738214,0.026930166,0.031113701,0.026843496,0.036943365,0.02819062,0.018671712,0.009107329,0.020718867,0.015268842,0.0054524904,0.0009818918,0.01606605,0.00029884736,0.00080311915,-0.027430959,-0.02523714,0.057492543,-0.010659328,-0.012072607,-0.0061916267,-0.024087735,-0.00017474554,-0.031144576,0.020262366,-0.00045745037,-0.01546866,0.04913745,-0.039928783,0.0027837413,-0.012067904,0.030753838,0.005970197,-0.010578249,0.013402966,0.0058002085,0.019083971,0.0591074,0.005589069,0.009829456,-0.00015137829,0.009670406,-0.03813953,0.01618748,-0.0030651186,-0.007022136,-0.010788089,0.010732024,-0.0064335284,0.026657114,-0.04497818,-0.046152174,-0.029809542,0.013542748,-0.0011496593,0.08226011,0.0041036457,-0.0070147826,0.0062661357,0.014459172,-0.009543422,-0.023473239,0.017949194,-0.03854403,0.057509415,-0.049446218,-0.061006024,0.01692045,-0.036689416,-0.007579955,-0.0101258615,-0.013913063,-0.05853115,0.017949391,0.028337328,-0.007033621,0.00680689,-0.0049468083,-0.020392928,0.024255091,0.04387435,-0.007907931,0.06858591,-0.012185318,-0.016781231,0.019909753,-0.06366029,0.029220289,0.00045525897,0.0057136617,-0.010949308,0.02748924,-0.049701907,-0.03054426,0.05429421,0.02821757,0.03985966,-0.06988485,-0.058650006,-0.010627051,-0.035770357,0.0060098725,0.012668685,0.024301523,0.040147204,0.0014339272,0.0060621696,-0.05374647,0.24588926,0.056344166,0.026663095,-0.028364453,0.0014700642,-0.0013756036,-0.009163571,-0.018018706,-0.020421203,-0.028192604,0.051514685,-0.0012820032,0.03173607,-0.0039415746,0.0030661372,0.07918555,-0.020012813,-0.045029365,-0.012359419,-0.006814393,-0.045270562,0.0077985665,-0.0028737946,0.01796665,-0.030069552,0.018213606,0.04350692,-0.020938296,-0.025747202,0.0120202275,-0.0071898694,-0.018236466,0.0143650435,-0.037468098,-0.019131685,0.02802379,-0.0033197103,-0.04635099,0.014623253,0.015716601,-0.0224004,0.01620075,-0.0029583492,0.024637008,0.022032756,0.04609379,-0.04387737,0.013700532,0.007397911,-0.021814846,0.024462642,-0.0059423926,0.043824274,-0.042771522,-0.0059792395,0.010529886,0.021992756,-0.024218751,-0.024761092,0.017584406,0.012795767,0.00065905123,0.008829598,-0.011384629,-0.020583704,0.017929928,0.05983929,-0.016132765,-0.048111416,-0.014109246,0.008095147,-0.000556709,-0.012945045,-0.006948025,0.0073707956,-0.0030733743,-0.04371184,0.008711371,0.03768088,-0.008656202,0.021843446,-0.00416008,0.01502837,0.0007303407,0.024135867,0.03741587,-0.009623713,-0.031150816,-0.042688552,0.05314952,0.036140922,0.033362456,-0.015090397,-0.035779897,-0.010154035],[0.015752878,-0.024500178,-0.0021626102,0.027155183,-0.054302193,-0.01715672,0.006542807,-0.011766781,0.0039763562,0.03360336,0.02134247,0.008789686,-0.0097454125,-0.025561728,-0.0051068333,-0.002393114,0.0023497127,-0.011297699,-0.053852294,0.0037669507,-0.003459832,0.03272884,-0.114535466,0.00630363,-0.009188037,0.06305919,0.013253352,0.004918459,0.061310854,0.04322271,0.00030446658,0.029274257,0.016176533,-0.04166041,-0.016959345,0.013447338,0.075177856,-0.0026177948,-0.018177625,-0.028698727,0.026091438,-0.038427394,0.053704012,-0.05387896,-0.05534718,-0.025417028,-0.027218617,-0.030136464,0.008900797,-0.08287097,0.009448524,-0.024755064,0.024308722,-0.0010855317,0.039636016,0.008668199,-0.043280724,-0.0074820416,-0.0024335717,0.0034376471,0.048327994,0.04832808,0.028530683,-0.059073374,-0.033621848,0.015820308,0.009671835,-0.0031061405,-0.006259251,0.0019070227,-0.0065464005,-0.0069297086,-0.008443844,-0.0121398885,0.0024429834,0.007345536,0.052212205,0.004272866,-0.01832096,0.0640686,-0.014755986,0.01960622,0.05357016,0.046635617,-0.058364034,0.016740132,0.046763662,0.047865342,0.034506474,-0.012963534,-0.00012270939,-0.0098004555,-0.00047507434,-0.009084048,-0.002738268,0.038730916,0.001795794,-0.006722211,-0.04955544,-0.017028855,0.025234876,0.032668695,-0.01278377,0.03666032,-0.04620068,0.0140026305,-0.003896761,-0.015457486,-0.0046661347,-0.009886491,-0.046762284,0.022341112,0.012719323,0.015868707,-0.00013345017,0.056055613,-0.021005929,0.023591783,-0.0036282607,0.056563303,0.00556053,0.026795968,-0.0028042758,0.03260844,-0.011341625,-0.041483384,-0.06340207,0.06397298,-0.05515753,-0.034029637,-0.018965362,-0.0012506442,0.012780334,-0.008945778,0.049619533,-0.015806228,0.014754986,0.020331277,0.06106343,-0.016333448,0.043994408,0.010853521,-0.04052658,0.063086785,-0.016606474,0.05502578,0.0016442237,0.008900252,-0.07597538,0.025947936,-0.031508945,-0.00039060626,-0.011342965,0.036243435,-0.058264345,0.031020116,0.022255655,-0.018408995,-0.020230854,-0.026076285,0.013470406,0.010198845,0.0036655068,0.037306905,-0.023481201,0.02629318,-0.028862467,0.0073984247,-0.010629962,-0.0062398496,0.023543077,-0.023713762,-0.048857547,0.021227567,-0.013742656,0.03116926,0.019345524,-0.0334145,0.050761994,0.011578396,-0.0018197714,0.024729442,0.015225917,0.05790122,-0.0041986504,0.013272251,0.020730028,-0.04828789,-0.028084284,-0.060310327,0.013527351,0.0075759096,-0.038361054,-0.00379741,0.0176088,0.013576727,-0.045321617,0.0018160769,-0.028065683,-0.05612019,0.026388176,0.03518719,-0.030895488,0.047754355,0.017594986,0.0029019364,-0.019164797,0.045333583,-0.010416556,0.024720302,0.009707981,0.056470726,-0.008051876,0.0014060702,0.028813345,-0.004908309,-0.044747528,0.03664688,-0.037157144,0.007951142,0.019998552,0.04914978,0.020830188,0.0068003847,-0.015499505,-0.006105253,-0.00002584696,0.04748897,0.007188742,-0.0037415011,-0.027381511,0.03658291,0.0056209117,0.024493268,0.029276077,-0.0057543465,0.03563612,0.036204863,0.0211762,0.024270471,-0.00023198154,-0.034856237,0.044094663,0.038021185,0.030492784,0.016594825,0.008688618,-0.026490267,-0.033113915,-0.0037515927,-0.020045722,0.02359948,0.018012578,-0.025992164,-0.0428362,0.0010356026,0.043831307,0.051800985,-0.051359724,-0.04511858,0.007915867,0.07214716,0.021181393,0.0420127,0.015664425,0.02289072,0.019745778,0.034392796,0.0065224306,-0.022311281,0.013375836,-0.059938356,-0.07582534,-0.025960587,-0.01916467,0.020448305,0.02425561,-0.007959768,0.005840802,-0.009525556,-0.01578186,-0.036776472,0.008431462,0.010030315,0.016193662,0.034494378,-0.030110978,0.02433295,-0.018691326,0.0095430035,-0.0128908465,-0.014323564,-0.019076053,-0.03762914,-0.016397685,0.020796953,-0.023187686,-0.01771914,-0.011626872,-0.027133634,-0.0022171407,-0.01678157,-0.03608687,0.013168491,-0.04776596,-0.009988948,-0.021925265,-0.03770938,0.034454457,0.014799381,-0.070744835,0.004210968,-0.008434965,-0.005908419,-0.05392357,0.015257153,0.0019121007,0.023581803,-0.049732108,-0.0030759491,0.009621795,0.042745367,-0.006389276,-0.012408552,0.03704086,0.033306345,0.009293081,-0.06655241,0.021712251,-0.014743347,-0.07689186,-0.04039334,-0.019924363,0.009673306,0.0024928139,0.013099274,-0.012166348,-0.01312043,-0.03665132,0.004674115,0.058545336,0.008512422,0.008088226,0.061424192,0.009578582,-0.0050078304,-0.00029254626,-0.024450986,-0.018581813,0.028194416,0.02023737,0.0428055,-0.00088841096,0.0008440028,-0.0011649857,0.0153200645,-0.041719195,0.0051371204,0.032770917,0.0029607082,0.015819961,0.04150656,0.009696703,-0.029411206,-0.018756026,-0.045440894,0.014768714,0.038500365,0.005524267,-0.045398206,0.03720865,-0.0077330926,-0.017691206,0.0058128005,-0.006328876,-0.018123904,0.053636093,0.004777163,0.056894924,-0.032171637,0.0063419333,-0.008602179,-0.0018735799,0.028662456,0.047548633,0.022641575,-0.026992353,-0.004747399,-0.0014441352,-0.0074512875,-0.02637506,-0.056233834,0.005392484,0.005835009,-0.031566184,-0.04744201,0.0304722,0.0116693415,0.0069875894,0.041043874,0.019812515,0.0037695342,-0.000545243,0.047549736,-0.005865381,-0.008667736,-0.021925448,0.04967638,-0.007847893,-0.015966196,-0.021793878,-0.025113625,0.004106414,0.0679007,-0.022429543,-0.0048668887,-0.009710085,-0.025529603,0.024384294,0.039186563,-0.027897585,-0.010847299,0.018969677,-0.023896225,-0.05234965,-0.026190132,0.016045691,-0.045838483,0.024836356,0.036528163,-0.01793412,-0.028551726,0.019404555,-0.018864477,-0.027437657,0.03926339,-0.0062719616,-0.0135348225,0.037335873,-0.01402402,0.007976828,0.011836449,-0.010497644,-0.005614709,0.0053137555,-0.028790476,0.026601534,0.05092322,-0.048474234,-0.018418657,0.024277844,-0.060961634,0.016854124,-0.025988705,-0.024150357,-0.0026473878,-0.006870707,0.026136523,0.014821674,-0.014594196,-0.007761438,-0.028605849,0.024874566,-0.019977273,-0.001212236,0.051484864,-0.00889078,-0.043258782,0.018917928,-0.003475005,0.022447133,0.0079920925,0.02088561,-0.037251934,0.019358736,-0.038529303,-0.0045153936,-0.026790094,-0.062757306,0.013800444,-0.018153977,0.035131168,-0.03926463,-0.027538994,-0.04857837,-0.04850429,0.02960426,0.02896992,-0.01685833,-0.005032585,0.0036739546,0.020072894,-0.00047801202,-0.024061786,0.0026497093,-0.023323586,-0.06133465,0.030882057,0.012720498,-0.011857925,0.044375338,-0.022540813,0.008078386,0.0052171694,-0.0016482401,-0.01726827,-0.04252669,0.032757,-0.020569349,-0.029937245,0.0403227,0.032763697,-0.034921173,0.015653258,0.0288636,0.050022144,-0.012997179,0.021195337,0.0004896315,0.03599058,0.008636098,-0.050181925,-0.0014244498,0.07599277,-0.0025761472,0.00684432,0.010808035,-0.031437397,-0.038842335,-0.031063406,-0.04204975,-0.071152404,-0.07331365,0.010548662,-0.03981574,0.006431826,0.01805048,0.023759885,-0.060384016,0.050291266,-0.06683039,-0.0073114554,-0.008944254,-0.030137818,-0.028422209,-0.039437037,-0.011008258,0.035914294,-0.026940593,0.041996635,0.020428782,-0.034993093,-0.0033575117,0.015055567,-0.028042564,0.007723442,0.0059254104,0.0066065365,0.03635033,-0.031467248,-0.014763163,0.04484965,-0.032673348,-0.0033362038,-0.024782047,-0.035627253,-0.048752766,-0.03232379,0.047801025,-0.024565058,0.0016353247,-0.017604064,0.06106844,0.030497199,0.01069687,-0.05447274,-0.048302956,-0.031301722,0.01589074,0.028379695,-0.049241636,0.015330667,-0.03622902,0.021462519,0.032101564,-0.017711136,-0.015093219,0.048027754,-0.010093182,0.014176194,-0.05647774,0.020903075,0.010918486,-0.05746043,0.0065264557,-0.026775014,-0.006498483,0.038177125,-0.038139235,-0.059448097,-0.034646045,-0.015987208,0.040988844,-0.04726569,0.01620835,0.018454865,0.008068955,-0.062286325,0.03679171,0.05722019,0.011846138,0.019911243,-0.008675691,-0.021042079,0.03367155,-0.003166085,0.0039015936,-0.01775961,0.011837912,0.0051539456,-0.031604763,0.08269417,0.04442619,-0.06829342,-0.05893706,-0.003266949,-0.00931126,-0.020605661,-0.027243068,-0.009990702,-0.021427523,-0.013703811,-0.03358105,-0.014229167,0.0110094845,0.057246298,0.02117497,0.024601046,-0.030596236,0.03823677,0.023860484,-0.043753803,0.0048973737,-0.04416512,0.004384644,0.015539518,0.01406175,-0.00020983709,-0.01030194,0.0048224796,0.023322577,-0.018835705,0.07975904,-0.01817542,-0.011292379,0.056993864,-0.04685551,-0.045173332,-0.005099539,0.013342554,-0.039309975,0.033969846,-0.064341396,-0.021408465,-0.0010988825,-0.0075499713,0.0027153378,-0.012072641,0.01584094,-0.033119824,-0.06389554,-0.018852243,-0.02477531,0.010223811,0.049449418,-0.028047405,0.01135363,-0.024923982,0.071915455,-0.037769914,0.03238279,0.010660909,0.061842084,-0.053795457,-0.0459005,-0.026814606,0.013746588,-0.04546867,-0.021884544,-0.021901503,0.0147796385,-0.0043373513,0.045095358,0.012985188,0.0211423,-0.041656848,0.0085701365,0.043163244,0.044106595,0.020853072,0.03335884,0.05541142,-0.0029329087,-0.017337304,-0.029732421,-0.0067557674,-0.06792705,0.0033790031,-0.0007539618,-0.04271199,-0.014805809,-0.069210075,-0.03523337,-0.046412967,0.046709917,-0.0037974692,0.020984467,-0.0025923988,-0.039777424,-0.012559153,0.04061878,-0.010171896,0.010421238,0.022000073,0.019779958,0.0144363735,-0.0029892963,0.021946901,0.024551196,0.05491639,-0.0013241378,0.014613987,0.009454165,-0.0130267525,0.020934066,-0.012318327,-0.03221558,-0.05954626,-0.010183467,0.0018923752,0.018783329,0.031973705,-0.037137583,-0.0022235755,-0.03138493,-0.038400866,0.031580996,-0.077380486,-0.04434407,0.024423826,0.0025527985,-0.0017787702,0.012767594,-0.040105335,-0.006660487,0.042621873,-0.022864452,0.010446924,0.029931413,-0.013411407,0.019611722,-0.033097465,-0.027587593,-0.0069233067,-0.0043630074,-0.047339585,-0.051801715,-0.001977042,0.032014377,-0.002076142,0.0017934636,-0.043480545,-0.003180706,-0.053136136,-0.013133817,0.021828936,0.045253377,0.00025511827,-0.008960169,-0.04453431,0.03264019,-0.018957796,-0.025321083,0.0054985206,0.0070115714,-0.013547505,0.053452663,0.0192611,0.0030806041,0.020490138,0.012874735,0.012802731,-0.011935834,0.0022067318,-0.027483221,0.016142894,-0.015927399,0.019694474,-0.073473915,0.03952122,-0.0070096683,0.012063004,0.03388986,0.019074755,0.0002643675,0.0007454687,0.025603063,-0.0269729,-0.013681104,-0.019441307,-0.010480322,-0.002169118,-0.026483634,-0.027090449,-0.023617834,-0.043731216,0.0225207,-0.0013247073,0.011165717,-0.019189784,-0.011881281,0.0047309287,0.016018085,0.0055468413,0.009384762,0.017732494,0.046087965,0.06544387,0.041957993,0.031416744,-0.0054944893,-0.017689735,0.00862791,0.013403308,0.014075164,-0.016353156,-0.029289663,-0.03932048,0.04003578,-0.022059139,0.00094337476,0.039668776,-0.03646609,0.021266563,-0.033817466,0.049586315,-0.010517335,-0.0046528797,0.030950507,-0.0107745435,0.04651907,-0.029623387,0.036129717,-0.0004684792,0.0054870234,0.018113336,0.009451969,0.02097246,0.039239563,-0.006859013,-0.0059943176,-0.00023868954,0.040981375,-0.017509578,-0.00042672147,0.00059397763,0.01224983,-0.013042801,-0.008367416,0.0026105142,0.023629438,-0.021572
+8000
+17,-0.04351499,-0.009593167,-0.008595741,-0.002832719,0.03265936,0.024425885,-0.012080585,0.031815514,0.017542943,-0.0013655494,0.0041431775,0.0071487026,-0.062375445,0.06530201,-0.018607538,-0.04970714,0.0179172,-0.08124324,-0.004411147,-0.01780854,-0.027923264,-0.059918154,0.0062884754,0.0014620033,-0.0035400267,0.01909597,-0.045790806,0.010013561,0.05431677,0.04035629,-0.018482985,0.05528893,-0.015146204,-0.009161566,0.0582528,-0.052606273,0.040926084,-0.013344451,-0.014298083,-0.010494143,0.005580232,-0.038542673,-0.017092662,0.028554808,-0.0065607857,0.02607064,-0.04363821,-0.0539076,-0.014825783,-0.039727885,-0.02080381,0.002496479,0.0729535,0.023111593,0.025121804,0.005804968,-0.02971971,0.22753046,0.05513911,0.030379588,0.0026793755,0.00816525,0.020944402,0.018210491,-0.0080454415,-0.009728786,0.008364002,0.03294816,-0.014693923,0.046474084,0.025020394,0.009025717,0.078520395,-0.0075257043,-0.032260645,-0.02889363,-0.03612958,-0.03235919,0.010899995,-0.0033910195,0.014096661,-0.023436004,0.039539073,0.036624346,-0.0021513558,-0.0035445816,0.0032723993,0.025933292,-0.020149961,-0.002276187,-0.000059885526,-0.0009606798,0.0128716575,-0.024110641,-0.061160594,0.041652545,0.0457665,-0.036957227,0.0127702,-0.008737335,0.038456056,0.012024927,0.021360569,-0.03680784,0.0008940589,-0.006704943,-0.04464978,0.03469424,0.015800957,0.060247425,-0.061868835,-0.010375153,0.008133692,-0.005455399,0.012654079,-0.0041162865,0.027513564,0.015915155,-0.0022946808,-0.014365832,-0.004432698,-0.021824818,0.033809055,0.060329407,0.01914781,-0.013958414,-0.027671508,0.0069779484,0.007096572,-0.002272452,0.010888755,0.012458212,0.0044579753,-0.009795179,0.0038906033,0.020101815,-0.0029018861,0.01134768,-0.021260587,0.0081103,0.0027047314,0.017028918,0.03490186,-0.01374016,0.011353368,-0.039152086,0.0654785,0.014664968,0.03040877,-0.012482409,-0.037229355,-0.011178521],[0.014217679,-0.024234362,-0.013249955,0.015816024,-0.051736247,-0.01720305,0.026061388,0.0069003417,0.008533658,0.031905957,0.025246814,0.0013521793,-0.028367968,-0.019896043,-0.03334791,0.022574093,-0.024632173,-0.014174928,-0.05098598,0.021498252,-0.016089957,0.0008200374,-0.10406126,-0.006920581,-0.021408021,0.06357099,-0.030506333,0.0035796657,0.056061134,0.048076227,-0.017141718,0.007204716,0.02543874,-0.031559564,-0.027244544,0.00041597066,0.06026052,-0.014112125,-0.040787086,-0.025675211,0.019139213,-0.03729516,0.05610985,-0.04946588,-0.043192443,-0.034715995,-0.00966972,-0.026009696,0.0058503123,-0.06889158,-0.014601789,-0.0342202,0.025959237,0.017544227,0.052025124,-0.018166434,-0.024410488,0.005361644,0.0055472283,0.026812455,0.029193722,0.049339924,0.0034444348,-0.086272486,-0.03163548,0.016065223,-0.0029729751,0.0055544535,0.0015060653,0.007861171,0.012949716,0.00627922,-0.0029870858,-0.010881409,-0.02827375,0.003312184,0.04852775,-0.007891353,-0.027659284,0.06568789,-0.04415635,-0.0082449755,0.045265652,0.014912953,-0.02876145,0.022776067,0.015026233,0.035908543,0.010802163,-0.052020706,0.02932641,0.01303141,-0.018059721,0.013735759,0.025009535,0.017194875,-0.013438399,-0.005619569,-0.045101464,-0.014793872,0.04006034,0.00616575,-0.03621468,0.0349104,-0.03492715,0.0136947995,0.02908694,0.0035116542,-0.0050123828,0.0050146445,-0.034563992,0.008515897,0.030366061,0.014527001,-0.0014039307,0.052354936,-0.043849155,0.017005688,-0.038713172,-0.013286194,0.0034138667,0.029873077,0.009828122,0.0029860048,-0.02620994,-0.023449903,-0.058401648,0.03729636,-0.05883957,-0.039818604,-0.013858855,0.001369876,0.04127687,0.028339071,0.046145905,-0.0019182782,0.009637901,0.013569676,0.02232285,-0.015677555,0.032569364,0.02884699,-0.041177433,0.076686166,-0.010061476,0.051820464,0.009767527,0.030198758,-0.06852171,0.03943561,-0.046915267,0.016924601,0.002693198,0.035294324,-0.059480976,0.0021649087,0.002460742,-0.019159539,0.02261246,0.0027363696,-0.016847882,0.010853282,-0.00983748,0.0012123937,-0.04046204,0.028149795,-0.032765567,0.016294558,0.015654854,-0.016305717,0.0023951402,-0.022888912,-0.05406546,-0.008774393,0.011522482,0.06987318,-0.0055623045,0.00014588398,0.042889394,-0.044502478,0.012373862,0.011771941,-0.0073507507,0.036949664,-0.038851418,-0.033604927,-0.02337891,0.005641952,-0.015739607,-0.055988647,-0.013895814,0.023539705,-0.0014628134,-0.00570769,0.004666768,0.006655397,-0.02989722,0.01969232,-0.003319161,-0.06668522,0.002974016,0.054189548,0.0034122227,0.036001597,-0.004173524,-0.018176962,0.0057546585,0.033273987,-0.0083146645,0.045223214,-0.007713321,0.029220808,-0.033589765,-0.0047597555,0.019372212,-0.016651155,-0.051699426,0.034848448,-0.05915966,0.00052650337,0.0016247254,0.044148427,0.047832936,0.02451657,0.013657509,-0.0009040498,0.019899901,0.041002464,-0.00603393,0.022163602,-0.0022142723,0.02061553,0.0063572596,0.033601906,0.013492557,-0.015429794,0.03350466,0.028026957,0.022554392,-0.0015581077,-0.039350975,-0.018617872,0.03317252,0.039858036,0.030267812,0.03164147,-0.022811012,-0.029688435,0.000036746973,0.0025911147,-0.015749522,0.014905877,0.025057461,0.01734537,-0.0037729822,-0.016672058,0.021346524,0.05628753,-0.013080963,-0.017589875,-0.025043407,0.06388133,0.021859894,0.03153413,0.017150309,0.022542002,0.023763327,0.012541852,0.0065334095,-0.016928244,0.011726537,-0.021503897,-0.06079293,-0.04345491,-0.015295815,0.026654765,0.038208306,-0.012377034,-0.008185559,0.018201258,-0.011738448,0.0038051843,0.00990642,0.027352355,0.0005153178,0.031015946,-0.031752594,0.017330961,-0.0047747227,0.010346418,-0.036644865,0.008606057,-0.014528406,-0.038554918,0.0021659418,-0.0018549743,-0.003787656,0.007984154,0.010388806,-0.041819524,-0.021879656,-0.037927084,-0.02525922,0.030425694,-0.015897103,-0.00784951,-0.02681815,-0.028633835,0.032462485,0.008896169,-0.07462294,0.030239208,-0.016921712,-0.01000815,-0.060616985,0.030314242,0.0071269507,0.040012848,-0.026441084,0.02776707,-0.006140538,0.0197354,-0.015231315,-0.056219198,0.025048865,0.039694767,0.025730733,-0.07378952,0.029402437,-0.018748183,-0.063339844,-0.03423585,0.0026562333,0.062124737,-0.011901098,0.03385788,-0.0062564635,-0.040442433,-0.046223443,0.017830063,0.06124199,-0.043093637,-0.004711097,0.046784498,-0.023693165,0.009210521,-0.0027654665,-0.024708074,-0.026181996,0.019102564,0.016518356,0.05519329,0.010355041,0.023581313,-0.003079003,0.028977852,-0.029048061,0.040972292,0.011739852,0.0026614538,-0.01351846,0.040790346,0.0037326342,-0.0035323498,-0.015939746,-0.06692161,-0.0026063535,0.012883279,0.02480332,-0.039217148,0.029430283,0.008837381,-0.012318071,0.0072217276,-0.03626432,-0.01289973,0.03248884,-0.010517942,0.035327505,-0.010062642,0.0049725827,-0.04118372,-0.024839515,0.043951426,0.049841255,0.02246629,-0.000384522,-0.008501433,-0.005001101,0.0016313212,-0.033905134,-0.07128553,-0.008451537,0.015872318,-0.052171882,-0.03546469,0.038286265,-0.0009362643,0.030577531,0.048068926,0.045753427,-0.003739295,0.018238213,0.067710176,-0.029691055,0.006261646,-0.002741579,0.043974843,0.011521621,0.0003140554,-0.03594474,0.004467406,0.0140731,0.04193848,-0.0026515143,-0.0028486943,-0.0057075373,-0.011737839,0.001168692,0.022612318,-0.048263546,-0.022685926,0.025760552,-0.015350507,-0.0048624654,-0.03793489,0.0025908593,-0.048626695,0.028509043,0.03349144,0.0023952352,-0.03475392,0.0075693964,0.017990975,-0.047815476,0.021899156,0.006810262,-0.030949732,0.024841363,-0.0070186905,-0.0019490928,0.02897648,0.002032176,-0.012625632,0.008232637,-0.0040145605,0.014797385,0.042447668,-0.0608251,-0.04126555,0.037337564,-0.046502575,-0.012358258,-0.031733565,0.009088166,-0.020460645,-0.0272568,0.045763873,0.05598875,-0.02557406,-0.027172562,-0.010835026,0.04277971,0.0033044708,0.0027679044,0.043644633,-0.03576915,-0.059954856,0.020876674,-0.0025806786,0.021692092,0.025801599,0.01336748,-0.011962958,0.028228914,-0.022964409,0.009845322,-0.037402257,-0.0655373,-0.009167145,-0.025414795,0.0289653,-0.026380885,-0.0162251,-0.034008704,-0.049302388,0.010688693,0.017113946,-0.020493789,0.00405346,0.012097805,0.046326067,0.005500267,-0.043734796,-0.01769043,0.0013370672,-0.037912365,0.024985997,0.011925744,-0.000004686591,0.029791983,-0.035974454,-0.018521693,0.0019332349,-0.012107448,-0.013716679,-0.029584937,0.025028523,-0.01740428,0.0031337806,0.03167385,-0.004060322,-0.0082024755,-0.030918855,0.026137836,0.023322541,-0.0024618153,0.009435075,-0.018778056,0.02452936,0.019190101,-0.05958173,-0.04172758,0.09917507,-0.010019163,0.033971943,0.017741974,0.0020338232,-0.0347533,-0.018050045,-0.044017494,-0.06832488,-0.048018575,0.0037314682,0.021034526,-0.033334527,0.02486319,0.0048170006,-0.026329689,0.04016359,-0.03389372,-0.0043519945,0.011138039,-0.021239787,-0.013901752,-0.04517147,0.012655226,0.032061137,-0.036788177,0.044601478,-0.008653546,-0.05360962,0.00040028436,-0.0031856913,-0.011633872,0.023475746,0.018726874,-0.0069944877,0.0065605096,-0.006285109,-0.037341584,0.056228265,-0.015175756,-0.01719607,-0.010242973,-0.034824345,-0.049998403,0.008956552,0.040889103,0.009300129,0.008881652,0.01172387,0.09410398,0.011776087,0.005348745,-0.04502145,-0.035028897,-0.06500014,-0.023720449,0.0008559362,-0.00529973,0.013870678,-0.023340492,0.012849646,0.025446484,-0.011020824,-0.010906353,0.07647352,-0.0047096387,0.017991526,-0.04781648,0.03075368,0.017801326,-0.058574874,0.0010580581,-0.02151458,-0.008329412,0.041375346,-0.08431292,-0.056305956,-0.05459933,-0.014019971,0.058109846,0.0042052516,0.033095792,0.030777903,0.017355386,-0.05377177,0.024695009,0.02943791,-0.01579822,0.05388549,-0.007235236,-0.045879416,0.03632749,0.00093523966,-0.003996895,0.0024342209,0.0279077,0.0058943494,-0.038232725,0.06743374,0.048266284,-0.07832742,-0.058099557,0.0023939398,-0.019291433,-0.03927908,-0.06622318,-0.025084943,0.00035303985,-0.0057070395,0.0024297973,0.020360898,-0.009796433,0.037840642,-0.0066487896,0.048316658,-0.026794335,0.05046712,0.03757635,-0.03410407,0.005266968,-0.0335225,0.015050782,-0.005057625,0.007935276,0.004984385,0.016289497,0.0030663712,0.014789446,-0.0076939785,0.046737902,-0.01656223,-0.037081085,0.021220455,-0.028790893,-0.02533507,-0.015054642,0.009481657,-0.04066724,0.016386341,-0.0678895,-0.021521596,0.003245899,0.009158288,0.00016059577,-0.0063750637,0.021082757,-0.010330575,-0.053244747,-0.029440265,-0.021767268,-0.03189089,0.031850252,-0.006676955,0.02046476,0.0049204896,0.044859923,-0.0410708,0.026096886,0.013001589,0.07492273,-0.012943999,-0.04680325,-0.044661872,0.009511196,-0.035518356,0.0019532274,-0.00342386,0.01713737,-0.010251207,0.01869321,0.0049808156,-0.013332155,-0.0059928563,0.028328285,0.04439615,0.030933471,0.022952527,0.04586849,0.066089705,-0.018274272,-0.022351451,-0.0063164695,-0.020756679,-0.020421835,0.03122954,0.028198702,-0.061607238,0.02148452,-0.07535029,-0.00033919545,-0.022846153,0.012477749,-0.016855363,0.0034158102,-0.0046035093,-0.023315763,-0.008091299,0.066007756,0.008951791,0.023546249,-0.0058231084,0.016303374,0.020672921,-0.02284646,0.0006899513,0.011209788,0.046403054,0.0015620324,0.010888931,0.0019883234,-0.008513981,0.013504934,-0.015684463,-0.038592726,-0.03926395,-0.004462449,-0.0012179121,0.030904017,0.029299833,-0.046279073,-0.0038940844,-0.029839944,-0.013435208,0.021937791,-0.06352044,-0.016468506,0.044431552,0.0077590044,0.01120097,0.014303292,-0.030981645,-0.0024922537,0.04766908,0.003450815,0.01831605,0.053390846,0.0039537363,-0.00019610055,-0.029125366,-0.026724022,0.00020935263,0.029676195,-0.046743505,-0.043327205,0.034945987,0.03484606,0.018310605,0.010625582,-0.033626713,-0.0042624613,-0.040573757,-0.03285489,0.02360022,0.032104284,0.0000044679127,-0.017927274,-0.036522333,0.04881579,0.011446958,0.011785782,0.0389674,-0.014813832,-0.024061488,0.05618833,0.01359863,0.0015261153,0.038417827,0.014190363,0.0109624965,-0.012385725,-0.024741445,-0.027973205,0.035997506,-0.0030447454,-0.0016446402,-0.037545852,0.03293187,0.019712247,0.035187215,-0.011290696,0.034596656,-0.014688744,-0.028067257,0.02010761,-0.009169056,-0.003706925,-0.04300211,-0.039266657,-0.0019343818,-0.046442233,-0.02705397,0.004844349,-0.051527523,0.037118502,0.008301483,0.012535606,-0.011306406,0.004915929,-0.0151391635,0.018449942,0.004264698,0.03192304,0.02123747,0.036409456,0.074373096,0.0133342855,0.012147714,0.0058211647,-0.022167245,0.0060226726,0.03404096,-0.016762942,-0.016324976,-0.043151613,-0.06322819,0.03178109,-0.0015962573,-0.03128801,0.005413262,-0.06487734,0.024151979,-0.037901644,0.04549334,-0.02006012,-0.00966724,0.03222204,-0.034261238,0.04427416,-0.00036292907,0.024124091,0.0051310067,0.0116584115,0.020361308,-0.03881406,0.019981168,0.045788467,-0.025400111,0.019759232,0.004020753,0.0024187104,-0.03809705,-0.006736116,-0.01873794,0.02795827,-0.023128586,0.012227693,-0.008482086,0.047579005,-0.045351777,-0.032890737,-0.013056881,-0.024997722,-0.01955107,0.04561887,0.007863006,-0.021661678,0.009161095,0.010687146,-0.024746126,0.0003217978,0.011877142,-0.057387736,0.05766857,-0.028350519,-0.072828494,-0.0032918851,-0.04528487,-0.005041921,-0.0007888423,-0.029751556,-0.06380472,0.012894791,0.004169167,-0.009500472,0.03855448,-0.06933457,-0.0019958592,0.033980932,0.039806467,-0.030278563,0.07056709,0.027993238,-0.0141855925,0.047339678,-0.019870749,0.03919636,-0.0058599715,0.0051850285,-0.028362187,0.008181918,-0.039067034,-0.007362458,0.0068849283,0.007981487,0.036343206,-0.04489769,-0.0704273,-0.00753576,-0.06440255,-0.0128603475,0.021763792,0.05304087,0.0138931135,0.0105823055,0.015091526,-0.029801795,0.24845347,0.04470529,0.030905308,0.007194486,0.0093832845,0.014990425,-0.00856254,-0.0032993015,-0.010428282,-0.024401639,0.041722886,0.005725369,0.045239717,0.026233623,0.016106168,0.06411208,-0.00646888,-0.010265123,-0.011688529,-0.034141283,-0.03578352,0.03990368,0.01642566,0.029869521,-0.04732888,0.017461732,0.02767242,-0.022834273,0.0092447465,-0.01955015,0.021377472,-0.019252824,-0.014312927,-0.036962613,-0.040234704,0.011036362,-0.014711442,-0.040068164,0.04662457,0.0063090594,0.0036476536,0.018399829,-0.002629641,0.044303905,0.002959122,0.011326302,-0.04574548,-0.0052770944,0.015896989,-0.020894583,0.043689996,-0.008335914,0.018361805,-0.045002762,-0.027937284,0.010437008,0.016699351,-0.018193163,-0.02943658,0.015782624,0.017814184,-0.008874961,0.0100064995,0.011070308,-0.020728506,0.058263198,0.062618256,0.016654227,-0.038824957,-0.020857532,0.030368365,0.023663882,-0.013005171,-0.0039894697,-0.022125598,-0.01684499,-0.05182894,0.019880498,0.017968811,-0.0030000028,0.003849317,-0.017760405,-0.0038370138,0.015270751,-0.012909626,0.04619623,0.0024868534,-0.028532121,-0.018105559,0.030698396,0.02497454,0.0024498438,0.026748518,-0.019590246,-0.033996824],[0.043886997,-0.008893634,-0.016066514,0.043641627,-0.05509897,-0.04303628,0.040388826,0.0012387608,0.0010283425,0.008172895,0.03834635,-0.011187578,0.012452988,-0.029623905,0.00065096107,-0.019679438,-0.032151878,-0.006448386,-0.061175555,0.011214572,0.01993078,0.020254122,-0.12249135,-0.006544765,0.031379033,0.0757153,-0.00853646,0.017828004,0.061420366,0.056816246,-0.007324728,0.022332812,-0.011988877,-0.0288686,-0.012608071,-0.006361386,0.04224059,-0.016078366,-0.02939733,-0.044621073,0.015371872,-0.030564478,0.048224997,-0.040960945,-0.05717121,-0.030434078,-0.013329187,-0.0030573949,-0.014734057,-0.054760106,-0.0051985374,-0.00993657,0.036839835,0.017783847,0.023782253,-0.003071074,-0.027196873,0.031196672,-0.018111123,0.023300564,0.0731598,0.056349814,0.008421752,-0.07326781,0.0026119081,0.024513409,0.011448382,-0.013734129,-0.009335568,-0.008151481,-0.00974765,-0.009366838,0.021518495,-0.008647768,-0.01021309,-0.0024988297,0.038986925,0.028343895,-0.02425927,0.035097744,-0.0284258,0.0104225045,-0.017676806,-0.002632381,-0.056207072,-0.016997075,0.006251326,0.02633289,0.0015115152,-0.02661934,0.009895352,0.030392557,0.01481142,0.013382291,0.0072534494,0.012566595,-0.00456214,0.0013494337,-0.009035913,-0.0066531105,0.032143857,0.0018849118,-0.0041195573,0.040278334,-0.04602403,-0.005641545,0.0039813523,-0.025530204,-0.0148253245,0.008748035,-0.059276216,0.027717564,0.032645736,0.0044105174,0.0053545646,0.03467342,-0.0083860485,0.033186704,-0.020855702,0.00286791,-0.025005024,0.025506716,-0.030011334,0.020042144,-0.013570815,-0.0823329,-0.04243243,0.056357224,-0.043949928,0.024595315,-0.019700697,-0.009226073,0.02709063,0.033258583,0.05491775,0.025181359,0.01867938,0.0069483053,0.013671698,-0.014614543,0.01421482,0.028690297,-0.033236742,0.072450444,0.00039851654,0.0020892145,0.017161146,0.007654509,-0.05450037,0.059797674,-0.042753283,0.027106985,-0.014809945,0.02226528,-0.051603287,0.014523283,-0.0012530355,-0.017035123,0.030513514,0.009465384,-0.01308482,-0.0032927874,-0.0057379343,0.01608042,-0.03597947,0.029764479,-0.014671576,0.023248846,-0.0026373896,-0.021158336,-0.021208916,-0.024915887,-0.017179273,0.013907283,0.007248771,0.049205787,0.00093453506,-0.011423304,0.028486107,0.0009000822,-0.0103872195,0.0027007,-0.0038266147,0.029055431,0.014448061,0.003923636,-0.028044585,-0.006235176,-0.024540348,-0.05627015,-0.0010262408,0.048510745,-0.037940085,0.0031070644,-0.0047991914,0.02561303,-0.047013845,-0.0021439355,-0.019052805,-0.08601585,0.010246774,0.013616839,-0.03091977,0.011651921,-0.023827031,0.00041073735,-0.0076705157,0.026994213,-0.0147739425,0.016226621,0.0276238,0.020232165,-0.0012161854,-0.0093173385,0.044002727,-0.010543911,-0.067006186,0.04181013,-0.04233895,0.0013089834,0.040554713,0.016427021,0.025598466,0.0048371674,0.018573854,-0.042960353,0.000026520465,0.031246098,-0.011384511,0.0139350835,-0.0065104817,0.037953872,0.0037213445,0.03665102,0.030726092,0.015435126,0.0404193,0.020200545,0.010161325,-0.01650519,-0.0054351185,-0.0065110354,0.067365855,0.035678454,-0.007045695,0.012105488,-0.019212414,-0.0065877386,0.019214785,0.0042087976,-0.038706,0.002138991,0.0014209776,0.007620731,-0.047602028,-0.003436191,0.04925983,0.071757816,-0.014126599,-0.028626852,-0.0037602521,0.044924606,0.0040704045,0.031787373,0.003036529,0.024954833,0.02043705,0.06617448,-0.005127031,-0.010244537,0.013896148,-0.018407222,-0.09402429,-0.02431014,-0.04258493,0.0031607004,0.012528064,-0.013048114,-0.0010334477,0.02318808,0.011679391,-0.021940548,0.0058302507,-0.003230053,0.0064654835,0.027207306,-0.012377785,0.050215602,-0.004068075,-0.000652777,-0.0267537,0.004446594,-0.025810983,-0.056549992,0.031551998,0.037299413,-0.008802954,-0.018398475,-0.01482703,-0.01412534,0.0005441519,-0.0090926085,-0.021265833,0.0018630048,-0.009254435,0.016783562,-0.017110927,-0.0032915776,0.05443488,0.044385944,-0.08033193,0.027417067,0.022959076,-0.0046327785,-0.04597941,-0.0075632506,-0.00027274765,0.0296395,-0.030164633,0.01067763,-0.008184779,0.009681043,-0.0021570635,-0.027261015,0.02237269,0.012162703,0.021687552,-0.10082078,0.033872444,-0.005625219,-0.07376279,-0.03177961,-0.017853001,0.017443076,-0.004857132,-0.016440555,-0.044215675,-0.035711803,-0.01779909,0.010400338,0.08205617,-0.06178128,0.011883752,0.033192605,-0.023577072,0.027600909,-0.013555055,-0.00068444764,-0.020913573,0.0057495288,-0.0007052088,0.06797897,-0.0073087765,0.0022059588,0.019894717,0.007537517,-0.008031121,0.028073434,0.046033673,-0.005557429,-0.02071405,0.049997147,0.016653204,-0.024294011,0.0021125285,-0.042163946,0.02286626,0.024516689,0.006416682,-0.043596752,0.039808884,0.014317663,-0.03320343,-0.00830839,-0.013348476,-0.0044889674,0.038563345,0.00965364,0.018159864,-0.038908165,-0.01111255,-0.026971485,0.0085109295,0.03006632,0.02881397,0.017184159,0.0018738533,-0.010960682,-0.003928187,-0.014748588,-0.08117046,-0.02785468,0.03865906,-0.0069054053,-0.0046783774,-0.03163226,0.013720481,0.011447902,0.0040292647,0.028275944,0.02412217,0.0021801745,-0.021964705,0.03705385,0.026632054,0.0049409894,0.0058143847,0.019995019,-0.022875292,-0.017595489,-0.04408636,-0.010451753,0.0077014854,0.036473453,0.026903298,-0.004190183,-0.0066083977,-0.03417802,0.028216636,0.034319013,-0.045577753,0.012670456,-0.0032965525,0.014147728,-0.028213495,-0.035012864,0.011611424,-0.04423749,0.062196255,0.019968221,0.014391075,-0.0488853,0.04172914,-0.033720654,-0.019434005,0.052155294,0.039205894,-0.017483221,0.033079144,-0.02297649,0.0002229193,0.03660161,0.009739201,-0.026556576,-0.02514959,0.012653181,0.03658384,0.034616113,-0.06388227,-0.057282552,0.011261885,-0.060948357,-0.005095855,-0.04281368,0.010301235,-0.007849357,0.0005569617,0.032129027,0.024230054,-0.0036225936,0.004299607,-0.008268283,0.05348189,-0.0067161066,-0.016546471,0.027729727,-0.0181461,-0.044743218,0.0552658,-0.013984089,0.020367878,0.008145708,0.023252811,-0.037792962,0.012659908,-0.0009880577,-0.009614941,0.014376245,-0.034696266,-0.016962776,-0.019977804,0.020772656,-0.005812541,-0.023416713,-0.004733123,-0.044071645,0.0011128401,0.011941592,-0.011104029,-0.005638339,0.01637065,0.0038077666,0.019148879,-0.04867142,-0.007890963,0.0056880005,-0.052068472,0.023963524,-0.011720941,0.030624593,0.066932805,-0.046986613,0.0004892635,0.0140823405,-0.05377095,-0.010878798,-0.021314807,0.017295545,-0.0028589864,-0.0129082,0.008930375,0.0061287275,-0.019037057,-0.024027273,0.013395832,0.03338329,-0.015706887,0.0013692057,-0.022402264,0.0023041256,0.010269345,-0.052098107,-0.04079337,0.046920497,-0.015061181,0.024500994,-0.0024431485,-0.02398621,-0.036633447,-0.05557537,-0.020884493,-0.04968578,-0.040410895,-0.029875286,-0.014152614,-0.0056802505,0.012672777,-0.013044847,-0.015911115,0.019889772,-0.038701415,-0.0040923036,-0.0049929745,-0.019754007,-0.015285111,-0.04636943,0.009615885,0.044284645,-0.019694649,0.03479669,-0.025748404,-0.026852468,0.011367996,0.02776935,-0.024461819,-0.0062966696,0.0068311663,-0.04291068,0.045484945,0.025559071,-0.0020635084,0.04997509,-0.013201877,0.00015615117,-0.04670192,-0.018674023,-0.06257481,-0.025277136,0.04094797,-0.0055552926,0.019382654,-0.030665966,0.07612565,0.019708691,0.01870121,-0.07033639,-0.02504489,-0.029641347,-0.011523345,0.01671541,-0.025877228,0.003307813,-0.0118012205,0.037747234,0.014667302,0.015898291,0.021970471,0.06829949,-0.005500649,0.0046149376,-0.03516588,0.017668432,0.036248934,-0.07405897,0.020020762,-0.038018815,-0.018629292,0.023010258,-0.0735809,-0.025816802,-0.042789463,-0.0030431699,0.06653592,-0.03502885,0.004547567,-0.00295899,-0.025163088,-0.053150836,0.018314421,0.039928906,-0.00422167,0.0394911,-0.009976875,0.020468885,0.018390566,0.024476122,-0.00396897,-0.022251679,0.022613686,0.014307446,-0.05204269,0.06791211,0.06702996,-0.034010325,-0.04720659,0.018633695,-0.0053176302,-0.020628871,-0.04034281,0.007376895,-0.002262735,-0.04185502,0.0067971246,0.0046661287,-0.002693998,0.03351237,0.0071569653,0.037094075,-0.026686274,0.025756141,0.016364401,-0.049676724,0.02381627,-0.02229814,-0.0019957367,0.02135758,0.034650065,0.039356314,-0.014033781,-0.02196632,0.014612709,-0.019240659,0.041708514,-0.0038912303,-0.035875555,0.038620155,-0.030951057,-0.03157659,0.016370738,-0.0025222462,-0.012255443,0.0078112385,-0.04257956,0.0020404423,0.0036583152,-0.010101049,-0.020752696,-0.04307846,-0.012533923,-0.03564999,-0.046714507,-0.031566102,-0.010627327,-0.030044936,0.020485453,0.006896791,0.014378966,-0.0059546707,0.092152506,-0.060403805,0.018508602,0.008224348,0.06092986,-0.039488345,-0.02180743,-0.0065639825,0.03319423,-0.04925812,-0.0006420652,-0.013787806,0.026504193,-0.011923487,0.03135762,-0.013449871,-0.012645415,-0.04557769,0.016566956,0.039072864,0.022471461,0.008265084,0.025955275,0.050968505,-0.01906079,-0.034969036,0.0026744336,-0.015644586,-0.039862182,0.048641592,0.02196257,-0.037978176,-0.012563175,-0.06576374,0.012680484,-0.03069736,0.006125842,-0.018256228,-0.02149962,-0.027336167,-0.032336432,0.016156629,0.06622243,0.0012537129,0.014262654,-0.01461201,0.027161853,0.027518297,0.0041868803,-0.0042096185,0.030293645,0.023199048,-0.019822864,-0.00904478,-0.0042924867,-0.012751007,0.0049808463,-0.040157463,-0.027721854,-0.04978854,0.008781632,0.023842946,0.050762795,-0.0009911011,-0.051878955,0.015888792,-0.021205096,-0.021273779,0.027456174,-0.07049819,-0.028669233,0.015401366,-0.011986254,0.003938495,0.030669712,-0.05172876,-0.028550966,0.012258019,-0.027492855,0.0056827613,0.043585896,-0.003093596,0.018533709,-0.03814424,0.02815799,0.0076753944,-0.000021138438,-0.009802956,-0.024101218,0.05329722,0.028760342,0.035992913,0.00073351397,-0.029307682,0.028862754,-0.04844438,-0.008247612,0.022897528,0.030325497,-0.027133709,0.01367322,-0.0099253645,0.049211077,0.010166993,-0.00041084114,0.020590253,0.025844742,-0.019747036,0.042163864,0.030860726,0.004689387,0.032542232,0.0103465505,0.029850226,0.0012799638,-0.039799888,-0.05413414,0.05571899,0.008439323,0.012295322,-0.023506872,0.06256702,0.0010614558,0.019294066,-0.003112181,0.00096813805,0.005074269,-0.030596731,-0.01736216,-0.007725842,-0.0039950223,-0.022021193,-0.04260826,0.022476535,-0.08920701,0.00669665,0.012529782,-0.011895339,0.02533416,0.00818517,-0.027904818,-0.012917315,0.024352219,-0.0058371862,0.018393569,0.0066963993,0.024810968,0.026572622,0.057684034,0.035431236,0.03879151,0.017951837,0.012741038,0.024637688,-0.024024403,-0.016639372,-0.015546539,-0.016614124,-0.03814828,-0.05324738,0.039713476,-0.0021579391,-0.028470993,0.023965329,-0.03161916,0.0030085521,-0.03799039,0.0076747984,-0.02593778,-0.03267223,0.020792222,0.0019280043,0.021300614,-0.012186393,0.057054278,-0.0058260267,0.019913727,0.020756863,-0.020771358,0.03336987,0.0441668,-0.036375925,0.015817678,0.00506743,0.011629523,-0.015413977,-0.023112966,-0.016499553,0.017261043,-0.035263952,0.02322457,0.003558951,0.07307202,-0.001932753,-0.059252325,-0.027054638,0.037246097,-0.014198731,0.028948892,0.0061952546,-0.012823321,0.009927186,0.0078054136,-0.015988573,-0.023310537,0.019268878,-0.04789624,0.036143567,-0.021067422,-0.05052362,-0.016898952,-0.04163176,0.015044658,-0.0007407379,-0.03343808,-0.055614267,0.009728237,0.023138525,0.012987328,0.012362428,-0.01866341,-0.021532442,0.079359226,0.05389993,-0.022146055,0.06678627,0.002340029,0.014917488,0.051013164,-0.0592532,0.048070256,-0.00046000592,-0.024965499,-0.017514717,0.033203803,-0.067517005,-0.0248307,-0.010925326,0.056515377,0.054603793,-0.042163868,-0.058765396,0.00055433635,-0.056723297,-0.033847407,0.01824711,0.051345985,0.024991648,-0.018415997,0.0013297172,-0.056647547,0.25932652,0.05827968,0.02625798,0.012103358,-0.000026940157,0.015382045,0.015729632,-0.02657544,-0.019424373,-0.039706558,0.030232161,0.0012564237,-0.0005264903,0.016759587,0.019771801,0.06303111,0.011060391,-0.034691617,-0.022131462,-0.006177504,-0.008494148,0.020698413,0.027053015,0.039669707,-0.009378325,0.02276313,0.027079191,-0.010431231,-0.017458137,-0.000266552,0.011212607,-0.037471242,0.021578593,-0.028882388,-0.083153084,0.036935158,-0.0005921939,-0.00783814,0.021840304,0.017551,-0.030648794,0.009448593,0.0227937,0.0039480072,0.014868265,0.012411685,-0.03229604,0.0131909875,-0.017564362,0.012551019,0.00029099607,-0.022304282,0.018955035,-0.0574499,-0.03238622,-0.005967922,0.017081164,-0.028950077,-0.036621746,0.024322914,0.024487719,-0.0005223082,0.02926188,-0.016802972,-0.019022856,0.03170486,0.042694353,0.03469901,-0.04377953,-0.03061074,0.03274723,0.004639154,-0.003858768,-0.029307788,-0.02520281,0.009815704,-0.029265989,0.036684886,0.009408745,-0.03453421,0.028161226,-0.018662332,-0.010665164,-0.013005558,-0.027250066,0.05902812,-0.029154945,0.014072059,-0.030862825,0.060166173,0.02283422,-0.016851122,-0.019544654,-0.042184476,-0.001240603],[0.015252139,-0.028752763,-0.0006094711,0.037047837,-0.027927555,-0.014788917,0.013800078,0.003439796,0.026127359,0.024829755,0.035286203,-0.014357684,-0.0006081442,-0.012612055,-0.0018879181,-0.00031979484,-0.01724115,0.025453055,-0.03601674,0.005571161,0.02923853,0.027901689,-0.10656136,-0.02291105,-0.0007596131,0.06104752,-0.0002518934,-0.0019565357,0.038855728,0.028449688,-0.015648423,0.0008211869,0.034532588,-0.040790718,-0.05844829,-0.021760741,0.04642183,-0.004510547,-0.0026429803,-0.039292425,0.0007082629,-0.027128033,0.015056263,-0.025064249,-0.053466756,-0.003917799,-0.0159474,-0.0013171089,0.010161927,-0.054890186,-0.015301745,-0.008581471,0.026067026,-0.01184271,0.047339544,-0.02482991,-0.036381304,0.034725413,-0.014482705,0.022653142,0.014496495,0.054429952,0.026479239,-0.040077288,-0.0076488005,0.031080982,-0.0020621098,0.033060104,0.023507772,-0.013908455,0.000036566347,0.009678134,-0.012405642,-0.00994951,-0.03887897,-0.010800266,0.033876862,0.04106575,-0.045242295,0.0550151,-0.032359127,0.03732825,0.023191933,0.029923689,-0.032817677,-0.040957745,-0.011973271,0.026688877,0.008574052,-0.014361778,0.0258745,0.04134771,-0.008882385,-0.00003284382,0.050254714,0.037411697,-0.02004853,0.0060498714,-0.040138446,-0.015387624,0.023638725,0.016903272,-0.01590702,0.053131044,-0.035021916,-0.019786783,0.0035333843,-0.048819333,-0.018934932,-0.006266269,-0.023942355,0.031406853,0.011911451,0.05251799,0.0064888573,0.03171116,-0.0017046605,0.022190342,-0.007749568,0.01279085,0.0008263065,0.040220793,-0.045424856,0.02586591,-0.042845644,-0.035031695,-0.04534623,0.08793614,-0.047920566,0.0092047015,-0.005891303,-0.010928776,0.006400724,0.02202561,0.03942454,0.011298254,0.026442278,0.0062630856,0.029878765,-0.016236499,0.028812727,0.05378369,-0.008022401,0.07142759,0.018745154,0.013079114,0.01584919,0.03118477,-0.07155496,0.046385672,-0.050257847,0.042796135,0.03830256,0.060801234,-0.0094402125,0.0029831144,-0.0015204414,-0.009539749,-0.0061696735,-0.0067179394,-0.024398426,0.00811594,-0.019584188,0.0051646335,-0.05409867,0.023194533,-0.026864795,-0.01410029,-0.017941447,-0.026324436,0.0024795935,0.015845794,-0.007293528,0.013282613,0.003222681,0.06596696,0.009419712,-0.014806523,0.0011905532,-0.0004872536,0.00955475,-0.006398968,-0.0049357913,0.025203874,-0.010863731,-0.00042588462,-0.02044498,-0.008772115,0.0018374005,-0.012851227,0.020155901,0.024586434,-0.028240815,0.013159534,0.0060476544,0.0062849205,-0.032818083,-0.013917952,-0.025972178,-0.060132217,0.006292372,0.020970978,-0.03420919,0.024248501,-0.015527717,-0.014957045,0.0012971526,0.023354234,-0.046970915,-0.015737055,0.019465545,0.034901977,-0.0044286824,-0.027258668,0.059991583,0.0017664856,-0.05467406,0.019390814,-0.06428275,0.0024263961,0.022389483,0.03397264,0.028726319,-0.021796104,-0.018046364,-0.031958867,-0.014406094,0.02901654,-0.020566998,0.021578198,-0.005771746,0.009392635,-0.015334171,0.026516084,0.036898114,0.0011381877,0.018883973,0.027882034,0.016847216,0.011573983,0.011135052,-0.004301184,0.061485775,0.027993618,0.028090023,0.011953725,-0.044562425,-0.036892973,0.0049287737,0.0021872034,-0.048899535,0.007442901,0.0013888928,0.016990643,-0.01755767,-0.019267214,0.057838827,0.039530005,-0.013494847,-0.044011924,-0.0054735066,0.018249253,0.018010806,0.0019115711,0.032299202,0.00927101,0.024265293,0.017119754,-0.0122831715,-0.020501137,-0.006173949,-0.008193047,-0.067956224,-0.010041152,-0.054827332,0.023345003,0.033240754,-0.02411082,0.019850511,0.026052043,0.0076759914,-0.038534977,0.005732486,0.024527995,-0.00069840543,0.033869047,-0.02051205,0.027275318,-0.024934392,0.025159718,-0.021312343,0.010507399,0.006794151,-0.029319422,0.017150052,0.018286215,-0.012238541,0.023062542,-0.014879714,-0.02219297,-0.001552326,-0.0064632827,0.030793684,-0.03122154,-0.033463817,0.0127028795,-0.016371645,-0.02760657,0.06763291,0.03444601,-0.07102745,0.027423393,0.02994401,0.02604377,-0.0537349,0.024219157,-0.01773606,0.022979489,-0.060331766,-0.03112058,-0.019455977,0.017958239,-0.031833153,-0.01603328,0.009300672,0.020222647,-0.014754025,-0.08017773,0.04405416,-0.023967149,-0.073642574,-0.01750175,-0.03447325,0.040611774,0.012110927,0.015656183,-0.036648996,-0.039389502,-0.045233134,-0.0020519872,0.03998382,-0.03465724,0.013915555,0.03448954,-0.011034876,0.0056163766,0.0071527045,-0.0144383395,-0.007903974,0.00010509099,0.027544284,0.059077628,-0.009359618,0.05306633,-0.0022518039,0.018257134,-0.007538819,0.030518118,0.021016113,-0.028146496,-0.00882928,0.02642589,-0.012028059,-0.035969343,-0.0010019126,-0.034460377,0.003913648,0.0328174,0.0075545586,-0.050952613,0.035412572,-0.0042842375,-0.036688358,0.016115878,-0.018548127,-0.015553807,0.026106361,-0.0065169614,0.035861954,-0.048579346,-0.0011785092,-0.00482115,0.015217736,0.056717742,0.043670487,0.020234099,-0.030718144,-0.03313987,0.00916691,-0.025077028,-0.05783912,-0.024063878,0.06601883,0.029912546,-0.008734755,-0.030206626,0.03183163,0.04263255,0.03532071,0.012327661,0.02626157,0.0065146745,0.010984753,0.044646025,0.0071347626,0.026994148,0.003803224,0.044392973,-0.017229302,0.0037583176,-0.05134169,0.015044424,0.009022092,0.057501044,-0.019562365,0.023928864,-0.026540859,-0.0066632535,0.012323291,0.023337185,-0.06772634,-0.0072609885,-0.015821986,0.011419319,-0.0020437778,-0.041347086,0.043923013,-0.040803604,0.05450258,0.02564766,-0.0031247297,-0.044477094,0.04522357,-0.00075818825,-0.02930815,0.017
+8000
+972495,0.0056632576,-0.024733685,0.028188728,-0.03384968,0.0043436466,-0.0003282602,-0.022985587,-0.024177717,0.00018613314,0.011005468,0.049708474,0.038505204,-0.03437368,-0.045553908,0.040455658,-0.0643346,0.0003131526,-0.031664323,-0.0048528537,-0.018224245,0.004763203,-0.0014415296,0.014467079,-0.010901629,0.007827009,-0.03060685,0.049938686,-0.01805046,-0.010640819,0.020700945,-0.027780483,-0.019242095,0.036044743,-0.01934992,0.012959906,0.028614683,0.017581128,-0.028139027,-0.021906301,-0.00074148894,0.013334858,0.021202127,0.0015328471,0.018121123,-0.04292333,0.008132025,-0.024242034,-0.0043770177,-0.03091681,-0.06357756,0.0009124056,0.021696027,-0.0046218755,-0.015996046,0.022779526,0.0067911632,0.014274449,-0.04973114,-0.011717965,-0.0071612177,-0.010383745,-0.002484337,-0.03909134,0.037709173,0.06299586,-0.022320168,-0.042277977,0.041364234,-0.016537063,-0.018483369,-0.049482238,0.0015962679,-0.008138687,-0.0021999201,0.004053847,-0.00862349,0.007171459,0.0125196865,0.04219977,0.025926553,-0.020091549,0.022370247,-0.027621318,0.03927271,0.013473017,-0.05500681,-0.026084647,0.07355458,-0.026674898,0.026400246,0.0118155,-0.039109226,-0.06633451,-0.02759267,-0.024152795,-0.032259054,-0.05915079,-0.017162036,-0.0049376837,-0.005879019,0.036619395,-0.005683149,-0.021388205,0.019009028,-0.037752472,0.002275991,-0.023600461,-0.015919555,-0.002887756,-0.045748178,0.016317526,0.06906645,-0.00549261,-0.001261281,-0.007821541,-0.03660971,0.010326037,0.0412178,-0.060639955,-0.020233214,0.038213413,-0.000807527,0.004441741,0.019910716,0.008005752,0.027707879,-0.023040367,-0.016393658,-0.054239564,-0.0131634055,-0.08491919,-0.013499907,0.015079955,0.019056581,0.017984001,-0.008164621,0.06599554,0.020179858,0.020385193,-0.06929087,-0.024013761,-0.048848193,-0.011008325,0.035816256,-0.027790135,-0.0014641582,-0.009335256,0.03409903,0.017878909,-0.014336886,-0.021658856,0.062433954,-0.031295195,-0.008027625,-0.05387002,0.04300498,0.031275604,-0.062475663,0.01997593,-0.019102184,-0.0029829824,0.026653027,-0.04871881,-0.03166276,-0.055054463,0.022106852,0.08760332,-0.06068452,0.0053995154,-0.018685093,-0.037520144,-0.03278516,0.019626196,0.047785275,-0.012652215,0.01124044,0.0029579632,0.019950189,0.04978459,-0.009076027,-0.01747408,-0.025438989,0.041173164,-0.009728608,-0.043061696,0.044269737,0.028021278,-0.04526999,-0.026406754,0.025012305,0.011652406,-0.034755833,-0.03921881,0.03034902,-0.007076397,-0.025839072,-0.03194713,0.008378191,0.023940535,0.0049169087,-0.0041763484,0.012722054,-0.005330495,0.045333356,0.003892341,-0.018380221,0.041049033,0.007979887,-0.02903106,0.011275091,0.021946903,0.01916497,-0.006921495,-0.010200074,0.01190767,0.008989484,0.083012864,-0.029700536,-0.010576265,0.042598303,-0.0049548997,-0.024175413,-0.014347013,0.0033857403,-0.016611036,0.024901645,-0.049303543,0.007236438,0.019084701,-0.000735996,0.00014294789,-0.055151526,-0.006884472,-0.027084157,-0.05456388,-0.02635763,-0.019508388,-0.028148593,0.013369334,-0.002560905,0.0357676,-0.04181287,0.079366244,-0.056817967,0.009216675,0.0079795215,0.03718785,-0.056964483,-0.037157483,-0.028852733,0.0072475006,-0.016585853,-0.0036552711,-0.036699142,0.028999394,0.008200434,0.02867443,0.0022109575,0.0019102946,-0.054390118,-0.0043094344,0.019542577,0.017907033,-0.011985523,0.054580312,0.079965435,-0.011882198,-0.014701453,-0.033934966,-0.0036110296,-0.033891603,0.052901007,-0.0009741856,-0.028155413,-0.049543522,-0.04389778,-0.0146493325,-0.031485867,-0.015536963,-0.03907546,0.0021037273,-0.013964689,-0.020159306,-0.012590176,0.04629565,0.023505341,0.0034329328,-0.015250887,0.03357781,0.04255834,-0.001418367,0.026026072,0.03254758,0.046418592,-0.014714191,-0.017819133,0.03032553,0.004516169,0.032802567,-0.039913412,-0.017443046,-0.033271447,0.021753429,0.017331328,0.027459184,0.016621092,-0.048173092,0.030036844,-0.042306818,-0.009941943,-0.017658012,-0.074333794,-0.024455326,0.021714455,-0.014132206,-0.00006724075,0.0076408773,-0.07468397,-0.045848683,-0.004728299,-0.04024632,-0.018752407,0.04578205,0.011134079,-0.0008149195,-0.051640958,0.017961,0.014437733,0.015043707,-0.005247378,-0.035671897,0.04505027,-0.017160777,0.034299754,-0.00090555934,-0.014069595,0.0153879365,-0.047584057,-0.008662218,-0.006469765,0.014356605,-0.013846508,0.015411195,-0.008433613,0.034243565,0.004324324,0.035182104,0.023908507,0.02692985,-0.016198365,0.040470455,0.059380706,0.02510649,0.0023958902,0.0071733566,0.010892008,-0.023637872,-0.043918163,-0.037257977,0.047707196,0.023886371,0.007682492,-0.057092704,0.06684024,0.009454071,0.0012169622,0.021077104,0.010306807,-0.0128553985,-0.050903276,-0.034133468,-0.0051687686,-0.029122323,-0.0080038775,-0.06404566,0.0062600505,-0.050402105,-0.019376468,-0.046686314,-0.032297153,0.04036122,0.005329159,-0.034900878,0.0095737595,-0.00013945907,0.012441084,0.029495467,0.0207277,-0.025962282,0.0004902555,0.050706416,0.048971888,0.010326218,0.017478986,0.004710111,0.0060100616,-0.012020492,-0.0013953714,0.014438454,-0.02150222,-0.031833522,-0.08137312,0.037032202,-0.0003353748,-0.032963954,-0.0000880228,-0.023336837,-0.0015796266,-0.06115032,-0.0025446166,-0.04218452,-0.009262742,0.020933151,-0.000864592,0.001558788,0.004304724,0.028125158,0.003950947,0.014822264,0.030051854,0.012892983,0.031106336,0.009150818,-0.037374962,-0.008744716,0.028706856,0.012001917,-0.051789705,-0.01221729,-0.031768218,-0.009600966,0.015443945,0.019670768,0.00993641,0.04714969,0.0009973838,-0.03813703,-0.011176587,0.057928525,-0.004521936,0.013287629,0.027787114,0.0150759425,-0.007540604,-0.037286837,-0.0039774654,-0.033100836,0.026315602,-0.0048671616,0.02032491,-0.036500927,-0.043798808,-0.021764787,-0.019359732,0.011425186,-0.022958916,-0.014282486,-0.045605764,0.025799535,0.013685608,-0.03870287,0.017441118,-0.042213548,-0.0059631187,0.0693698,0.03942454,0.019828884,0.07002623,0.022799743,0.044383787,0.02566394,-0.0148175685,0.063498795,-0.015308032,-0.0025284241,-0.027805768,0.0104911,-0.03801157,-0.04780206,0.02941503,0.04163759,0.023933418,-0.05374605,-0.044646386,0.0029521447,-0.032776482,-0.027877657,0.011234449,0.0761417,0.043203272,-0.0089884475,-0.007535624,-0.045179293,0.25222182,0.084577,-0.0013881248,0.030952346,-0.012758149,0.032603476,0.026240692,-0.043064952,-0.044977333,-0.045647196,0.024640232,0.0007912891,-0.012761508,0.04234273,0.0027424789,0.044108864,-0.004683074,-0.00550772,-0.0055100154,-0.03450659,-0.01885276,0.010930469,0.034293447,0.03544058,-0.011289943,0.025758991,0.011100683,0.009973896,-0.004693691,0.030297358,0.03344222,-0.06422147,0.02777977,-0.039646022,-0.061952345,0.05863203,-0.009651873,-0.029152533,0.013406013,0.018493524,-0.069794886,0.010476414,0.012977881,0.0026183117,0.025258487,0.039710753,0.01118594,-0.014969992,0.015291703,-0.005411919,0.001694709,-0.00058384356,0.007043767,-0.035453636,-0.017153183,-0.030134737,0.008348415,-0.00033579514,-0.009135319,0.029511057,0.005030234,-0.00828138,0.00903574,0.012432728,-0.028043268,0.032678623,0.030888136,0.051403727,-0.032735918,-0.032524936,0.010895474,0.009992157,0.010356028,0.0010386981,-0.024774987,0.011458347,0.0064790044,0.022215376,0.009563298,-0.039622623,-0.0014530768,-0.033305578,-0.018794062,-0.009073761,-0.014915225,0.05651964,-0.022545762,0.011129837,-0.036176797,0.030629441,0.012243159,0.016446153,0.00909694,-0.04030259,0.0066692024],[0.01943996,-0.01188942,0.017331481,0.0097701205,-0.022530105,-0.04128769,0.054918934,-0.017255355,-0.010786211,0.036221806,0.050215486,-0.014296681,0.0039333752,-0.0072658937,-0.03678569,-0.01646302,-0.014369711,-0.021610718,-0.061233528,0.030677946,0.008130146,0.032442555,-0.13038647,0.02457432,0.010103879,0.06944058,-0.021025302,0.019784696,0.046388265,0.054519977,-0.007411874,-0.015860077,0.022161217,-0.039859552,-0.03053827,0.004201801,0.068714604,-0.018314164,-0.013677164,-0.05130175,0.010020818,-0.046289228,0.024783753,-0.03839884,-0.03884838,-0.019602656,-0.0122825345,-0.042719148,0.01224787,-0.07380429,0.031144844,-0.007111504,0.0056066005,-0.020235239,0.02449668,0.0036997343,-0.014748027,-0.015070014,-0.021665247,0.016663054,0.030685615,0.038736023,0.0079335505,-0.05603063,-0.0057339487,0.013508686,-0.0033897997,-0.0037941514,0.019525446,-0.018581202,0.008725291,-0.039041843,-0.009852717,0.0043600304,-0.011108551,0.0015806202,0.028528495,0.043915685,-0.030044658,0.042195596,-0.01583821,0.018302362,0.02949702,0.026029136,-0.049303953,0.017272882,0.01011519,0.04785147,0.0180934,-0.061279394,0.0028413727,0.015006139,0.0027938162,-0.0011195682,0.013846898,0.00087588694,-0.027523017,-0.017151296,-0.044485874,-0.047307033,0.0045699133,0.0392967,-0.009848815,0.048504785,-0.04237882,0.007962799,-0.0030145734,0.0068068453,-0.0013559172,-0.01676908,-0.03339298,0.036757994,0.004032096,-0.0051530898,-0.024131028,0.040002957,0.014554978,0.020627446,-0.007989061,0.024208369,0.035768926,0.021100396,-0.0046301126,-0.011691315,-0.032822542,-0.054999676,-0.060530737,0.08736223,-0.037558276,-0.0088034365,-0.012671681,-0.03958205,0.0138207115,-0.007911708,0.004705252,-0.014731519,0.020955998,0.005021031,0.027789658,-0.05547446,0.055382144,0.02266148,-0.028790498,0.054266773,-0.025726525,0.048125863,-0.010934226,0.027326042,-0.08250069,0.032574415,-0.032825127,-0.020329138,-0.0025237787,-0.002490903,-0.0106973145,0.06961882,-0.026237523,-0.034819886,0.01726658,0.01366599,-0.022071809,0.030386414,-0.0019306156,0.031429436,-0.03176601,0.04246153,-0.040638547,-0.017565858,-0.011782067,-0.032172944,-0.006963889,-0.016192274,-0.005290219,0.028823333,0.026656097,0.06657258,0.010302991,-0.00027246625,0.034888506,-0.011273709,-0.012018424,0.03284113,0.024855541,0.037404522,-0.009185788,-0.0017634642,0.0055591315,-0.019246278,-0.022822624,-0.038174443,-0.02458206,0.060523923,-0.055591315,0.013230897,0.001966718,0.023364997,-0.04943399,-0.02272797,-0.0047151335,-0.06807803,0.007803843,0.024497177,-0.0038733096,0.045812145,-0.037118703,-0.03417474,0.007283025,0.062201183,-0.009851569,-0.0003576517,0.014600692,0.03466223,-0.03628485,-0.0039094444,0.023219794,0.004764311,-0.05970644,0.054495193,-0.04459563,0.0012620387,0.01311847,0.017421566,0.018266793,0.040095486,0.004391019,0.01928925,-0.028109198,0.038494863,-0.009604712,-0.0021568357,-0.020712167,0.023178546,-0.0197655,0.035983615,0.03445612,0.014207583,0.02440003,0.01145885,-0.0046001435,-0.0010791484,0.0075468007,0.005388598,0.031645454,0.022993276,-0.0076742587,0.042106524,-0.007083671,0.0019490955,0.0010552112,0.01979425,0.0083357105,0.037757374,0.0011034075,0.03513113,-0.03574288,-0.024524914,0.02763726,0.06382969,-0.0362715,-0.030924212,-0.019487178,0.074079834,0.002038037,0.02042403,0.018649086,0.0073410952,0.010196565,0.04022884,-0.00031906497,-0.019764716,-0.0029103477,-0.03581236,-0.07808689,-0.012679836,-0.027465375,0.022240173,0.027316945,-0.010172347,-0.00217445,0.0051291906,0.005206307,-0.016988171,0.018215075,0.0109895645,0.00035155995,0.029456547,-0.028871762,0.019639937,0.011552948,-0.004502238,-0.0128449965,0.0006292455,0.02142912,-0.034121312,0.02225744,0.025918787,-0.03009622,0.0037788588,-0.03396848,-0.05302382,-0.037128814,0.010540109,-0.027992545,0.029484227,0.002015852,0.024417792,-0.023409078,0.002800462,0.07478386,0.047989197,-0.048035983,0.040000584,0.00043097913,0.0081706615,-0.04501647,0.005729117,0.013980606,0.0360754,-0.049658023,0.0040157298,0.008666128,-0.01836489,-0.03295812,-0.013576214,-0.0013914711,0.043216743,0.020846533,-0.078249045,0.02098554,0.00076894945,-0.069668055,-0.049331725,-0.038507074,0.013155152,0.0056278566,-0.023056282,-0.031305194,-0.014538473,-0.049275145,0.013766077,0.05849793,-0.007703976,-0.004481688,0.024285566,0.0024201437,0.02267421,-0.014153981,-0.004781804,0.006765425,0.0063332855,0.021739436,0.031862702,0.00496011,0.017180964,-0.017279884,-0.021250166,-0.0021555314,-0.0034432332,0.022370353,-0.008278598,0.011169892,0.022045745,-0.0069300765,-0.018198317,-0.019391192,-0.034909595,0.027556552,0.046828493,0.019094171,-0.059384033,0.010833577,-0.0046027643,-0.05342873,0.0023368886,-0.020818362,-0.019361366,0.05757842,-0.023928178,0.03376905,-0.014820855,0.02035109,-0.04302133,0.021150472,0.056833923,0.037489306,-0.010495269,-0.03501661,-0.019114157,0.0010132368,0.022248164,-0.050814595,-0.013883757,0.032838,-0.010523538,-0.00853158,-0.028546873,0.012024512,-0.016917715,0.029717786,0.043283265,0.014297389,-0.007766895,0.0020836848,0.028824948,0.005669043,-0.011839548,-0.024927922,0.058306754,-0.02282757,0.010100487,-0.013563358,-0.0056670927,0.012761954,0.029826839,-0.005770042,0.014282438,-0.042685367,0.0048828786,0.010362549,0.028277237,-0.058791958,-0.013238938,-0.00063450355,0.0044613234,-0.004559508,-0.021543073,0.0330961,-0.04801553,0.07602667,0.032724928,0.017698335,-0.017478816,0.020161172,-0.04307427,-0.033406246,0.017231755,0.025472537,-0.023786312,0.0263552,0.0035951692,0.019007053,0.019761676,-0.002079513,-0.025544373,0.018564215,-0.013058704,0.03402585,0.0251146,-0.046044376,-0.0059446776,0.072994694,-0.041665707,0.013564769,-0.03813639,-0.015153084,0.0012538264,-0.013897861,0.03869094,0.021125056,-0.001439908,-0.0021605955,-0.02956758,0.035682503,-0.010189817,-0.031275332,0.043043997,0.0076809246,-0.06392776,0.027485892,0.00922141,0.024702897,0.0046657394,0.017908195,-0.036730688,0.021101428,-0.010661284,-0.009288211,-0.03816896,-0.004608417,-0.002777177,-0.027994763,0.02718202,-0.022432989,-0.015419684,-0.04023397,-0.057652403,0.0047049136,0.022399759,0.0048753708,-0.017765228,0.009641756,0.02988388,0.032151703,-0.046864957,0.0035918127,-0.013777631,-0.05859714,0.03722871,0.005951429,0.022849573,0.058169965,-0.023374123,-0.0070272563,-0.0026930536,0.008672894,-0.003180307,-0.043542635,0.027358517,-0.025385601,0.000116406714,0.030507913,0.023619575,-0.005893097,-0.010932134,0.0039615557,0.044890646,-0.01219657,-0.0089743985,-0.030989809,0.043573786,0.024629423,-0.027299913,-0.0037284666,0.044564158,-0.014471597,0.023790238,-0.00051393604,-0.035393015,-0.033258557,-0.030532802,-0.017086929,-0.05098145,-0.052398704,0.0007806175,-0.02213648,-0.013449782,0.01822451,0.020227598,-0.030608786,0.025798919,-0.058861755,-0.033624,-0.010192611,-0.022746999,-0.01429377,-0.06695267,-0.047397554,0.0448135,-0.017314004,0.020121718,-0.038990915,-0.051994804,0.007535915,0.03556087,-0.03546045,-0.0044179084,0.012287137,-0.009396795,0.056681663,0.0038048858,-0.0008780451,0.047373537,-0.0052029807,-0.024845643,-0.037107717,-0.02270696,-0.0457318,0.0015028815,0.046691023,-0.025520673,0.025585236,-0.047841605,0.08623357,0.04642605,0.01884025,-0.06647727,-0.07169157,-0.034889817,-0.008753408,0.0407592,-0.040069524,0.019123629,-0.027482266,-0.008108411,0.02912723,-0.015076882,-0.01189808,0.04223528,-0.03639925,0.009826103,-0.05438524,0.02139988,0.040349506,-0.041085858,0.0018663974,-0.04215612,-0.010316729,0.0368485,-0.047599114,-0.053615987,-0.038447797,0.017889079,0.07647966,-0.04324824,0.029779429,-0.0120659,-0.008006996,-0.033612076,0.047850784,0.052357845,0.009084165,0.0182161,0.0002999468,-0.013572167,0.044342764,-0.0035365066,0.006127929,-0.0044761295,0.03599574,0.0016860458,-0.011355273,0.050188597,0.035419833,-0.036861185,-0.03792628,0.0023505893,-0.021959577,-0.016570758,-0.0122257285,0.015582863,0.0062937364,-0.02513366,-0.0435952,0.025704075,0.019447673,0.01627749,0.011954505,0.06385924,-0.022586945,0.008952079,0.046201006,-0.011737664,0.01726932,-0.011500463,0.016389554,-0.010714137,0.010095554,0.0077940254,-0.030400453,0.00017774236,0.023010064,-0.03276454,0.044302177,-0.008032051,-0.044824444,0.023868669,-0.024248548,-0.01677904,-0.0019921334,0.011787683,-0.03238315,0.038360268,-0.016995033,-0.0052665635,0.011404654,-0.0031566794,0.0057232203,-0.036121745,-0.014100546,-0.022554157,-0.040028818,0.0045026075,-0.047114044,-0.0042277253,0.040677167,0.0059576295,0.027592842,-0.031999897,0.053769644,-0.044127602,0.05480854,-0.010163615,0.06876203,-0.041802328,-0.05350743,-0.018644394,0.02393377,-0.050721668,0.008663504,-0.045943733,0.011255038,0.020487742,0.04681342,0.01172273,0.017187722,-0.035210624,0.008727352,0.025742915,0.021985043,0.009192298,0.037694067,0.030133573,-0.0084314225,0.0061438153,-0.07820545,-0.019955857,-0.057553593,0.036167305,0.008933819,-0.031794164,-0.024957696,-0.063170165,-0.010329257,-0.03062212,0.002594871,0.012637995,0.004763739,-0.0333482,-0.019787556,0.0033398685,0.03727595,0.005030305,0.042693146,-0.025964705,0.027804652,0.0008005371,0.016828524,0.013462003,0.031615887,0.05472425,0.027724318,-0.009168089,0.0028982833,-0.0026945313,-0.028605657,-0.024499828,-0.03481269,-0.06574015,0.02458829,0.0016821005,0.011552135,-0.0034219436,-0.051873714,0.015548823,-0.014078959,-0.03653897,0.0026409237,-0.06979066,-0.014974312,0.017588072,-0.027718658,-0.0154852765,0.008852375,-0.036639348,-0.04614635,0.010663435,-0.024206033,0.021591047,0.06159479,0.010231284,0.010732197,-0.032365724,-0.006740487,0.016972318,0.0014394739,-0.042373925,-0.03461052,-0.012446665,0.025386933,-0.016267985,-0.003287271,-0.029217623,-0.013262512,-0.046729162,-0.013811689,0.027420716,0.032964613,-0.008901187,-0.006844777,-0.028239768,0.03533612,0.0089996485,-0.0107180495,0.01869921,0.010637182,-0.021318236,0.013367802,0.026213903,0.014404035,0.018424692,0.0020645994,0.03846312,0.0053839786,-0.03253653,-0.05508449,0.038149867,0.0077492986,-0.001776042,-0.040842455,0.06607092,-0.021257358,0.025492666,-0.017982047,0.013395775,0.01921451,-0.011316744,0.010922676,-0.028997086,-0.00011607732,-0.025117861,-0.04770549,-0.023175525,-0.047453977,-0.00538368,-0.016154269,-0.006688665,0.0033157934,0.013195909,-0.023765028,-0.0036995404,0.0042676656,0.032551438,0.043831702,0.03669084,0.010683207,0.015754879,0.039616305,0.007961939,0.0036930246,0.0058400556,-0.011401837,0.015133531,0.00949042,-0.01738025,0.0017889378,-0.014736434,-0.03801577,-0.046085585,0.062393893,-0.015380073,-0.0039279745,0.010550987,0.00938737,-0.009350859,-0.060600143,0.04832518,-0.0525936,0.005627206,-0.0033432755,-0.0069493605,0.023755644,-0.019999083,0.016755281,0.0054056826,-0.006878214,0.016929695,0.009526473,0.05262026,0.040049657,-0.010438653,-0.046134956,-0.0013876637,0.02200727,-0.012210269,0.00091389165,-0.017941307,-0.0060778065,0.02820546,0.007609087,-0.010828035,0.03703739,-0.021998132,-0.058987975,-0.0365177,0.0071672597,-0.014855748,0.03493137,0.030999612,0.008939173,-0.025118615,-0.02340257,0.0034172882,-0.01625581,0.02551643,-0.058595985,0.027429126,-0.025052134,-0.080703996,-0.010373236,-0.057616927,-0.0046585384,0.028800182,-0.027635302,-0.04582005,0.039206468,0.03867974,0.014211035,0.046056774,-0.036954794,0.0008966978,0.06348609,0.035245247,-0.007859301,0.076594144,-0.028607478,-0.015185042,0.043812446,-0.0072676,0.051204063,-0.033209257,-0.0034259087,-0.045649357,0.021699345,-0.041268464,-0.03377256,0.000058886762,0.04242452,0.025093516,-0.048942845,-0.061606936,-0.0008214771,-0.047810312,0.0033726676,0.0065288213,0.050114855,0.024538247,0.018330714,0.009501823,-0.031423982,0.24409656,0.076532416,0.01842348,-0.021694314,-0.0059450846,0.028459184,-0.0039752205,-0.015050087,-0.027451318,-0.03155598,0.0605314,-0.020033866,-0.0080106,0.016711824,0.02004202,0.08868231,-0.0216871,-0.018918835,-0.012749484,-0.014518253,-0.03539426,0.01929625,0.02076281,0.049039662,-0.010233852,0.025441308,0.03306502,0.019577613,-0.006252923,-0.003599235,0.013873731,-0.016331432,0.026396453,-0.027851045,-0.0065590986,0.05100003,-0.0031422293,-0.03891273,0.047596358,-0.015142826,-0.027438324,0.03970805,0.01020162,-0.005266507,-0.008879505,0.015667034,-0.040687095,0.045979384,0.009951565,-0.0134511795,0.04169357,0.0008619862,0.031292744,-0.053343438,-0.03683942,-0.0048091053,-0.005365918,0.0034207606,-0.0076874346,0.0296254,0.015492742,-0.009058444,0.010127588,0.025291922,-0.008184612,0.0068371464,0.035292577,0.012565125,-0.05667634,-0.014006059,0.024848288,0.019543005,-0.0124249365,0.03462112,0.016557522,0.017340053,-0.0027583514,0.029740728,-0.0024034362,-0.027950076,-0.004909495,-0.020547247,-0.007450715,0.0201376,0.00057035,0.044651747,-0.015621425,0.010469899,-0.027825076,0.04829883,-0.0014397817,0.039575096,-0.006292986,-0.050172973,-0.0036017613],[0.029871006,-0.026290655,-0.0007760003,0.027093036,-0.012913191,-0.028082035,0.010801525,0.016556635,0.006538522,0.0474976,0.044546925,-0.048112627,-0.00777732,-0.0064386916,-0.017359765,-0.018326994,-0.031871323,0.0059910854,-0.048039235,0.032774337,0.034030356,0.016619919,-0.117571525,0.009062374,0.047317784,0.058372352,0.006226714,0.0160771,0.043728154,0.053505223,-0.02430666,-0.005766405,0.030984344,-0.034019846,0.0030089368,-0.03606073,0.046352666,-0.012583733,-0.0012060091,-0.02900915,0.0049633384,-0.032317735,0.046051513,-0.03720718,-0.053606737,-0.03119875,-0.004181994,-0.030306099,0.009609264,-0.062348437,0.028023945,-0.008725607,0.018262487,-0.060216874,0.027746847,0.015478636,-0.021641644,-0.006952828,-0.05099225,0.020314809,0.04451139,0.032432217,0.023938272,-0.06325321,0.042932063,0.023641119,-0.006006594,-0.037006665,0.02657097,-0.024446102,-0.009248937,0.00039859154,-0.012922338,-0.026881982,-0.038600527,-0.008576084,0.0015537334,0.008117285,-0.046769008,0.023480227,-0.020432021,-0.0040722876,0.016588587,0.006061773,-0.025297703,0.010839909,0.015933154,0.05476323,-0.01611406,-0.0348699,0.014059287,0.044513285,-0.044651575,0.0147429705,0.026592577,-0.005809436,-0.034035925,-0.024043078,-0.021567345,0.007986118,0.028196828,-0.006971605,-0.03515325,0.060492042,-0.05188993,0.0037462788,-0.007819802,-0.018106349,-0.027933141,-0.034545988,0.012522432,0.018813616,0.024491988,-0.0020167737,0.007982622,0.014814723,0.0059717703,0.036522593,-0.027021661,-0.012160239,0.036196128,-0.011663117,-0.013995913,-0.007306032,-0.008853541,-0.047718745,-0.054667205,0.061934955,-0.014022811,0.0045668585,-0.026370177,-0.017098261,0.03740733,0.01354218,0.025108645,0.012351075,-0.0038522633,-0.01004966,0.016131084,-0.030221881,0.023320097,0.03109197,-0.047174286,0.06450015,0.0042964295,0.02119546,-0.0025105162,0.032475077,-0.07028206,0.06116116,-0.02974783,-0.004981084,0.0118693765,0.01885685,-0.017347533,0.038199797,0.014901914,-0.012850338,0.056882266,0.022350099,-0.046091724,0.012605258,-0.021679552,0.012017782,-0.029243765,0.024846284,-0.028643783,-0.022073176,0.015488191,-0.01929645,-0.032121047,-0.028021324,-0.014325314,0.017385762,0.01362372,0.05040574,0.02675223,-0.014294351,0.0434383,0.003513288,-0.027301546,0.0112025635,0.017774915,0.03999573,0.005654429,-0.005696852,0.02327958,0.01904087,-0.026547613,-0.034212876,-0.019428851,0.07043757,-0.03516238,0.0012456919,0.013160428,0.010407506,-0.06113195,-0.037799638,0.0063969097,-0.03519834,-0.011684841,0.0072107976,-0.021530936,0.013966605,-0.04154989,-0.022216832,0.0105659,0.05432535,0.014146171,0.011699852,0.040612716,0.03783166,-0.020047726,-0.015425847,0.02698658,0.018256346,-0.020157782,0.054446086,-0.045621715,-0.0074918093,0.023751575,0.020267192,0.010722666,0.01736157,0.02603092,-0.00921744,-0.007565255,0.026713213,-0.003986393,0.012943595,-0.009031963,0.014705778,-0.024707936,0.043736704,0.03347504,0.0066740387,0.036547713,-0.008646256,0.026018478,-0.009972319,0.014918281,0.040712096,0.024248738,-0.0039250012,-0.0055614407,0.05451031,-0.0012943051,0.0011850676,0.011589805,0.016472703,0.002644904,0.019181974,0.010148976,0.040192753,-0.039110355,0.013664591,0.041659765,0.074651144,-0.044930607,-0.015979854,-0.019106071,0.04276864,-0.006003985,0.05268407,0.014734688,0.005454855,0.019278543,0.029676873,-0.01678756,-0.009311208,-0.022513747,-0.041994344,-0.048316922,-0.0062269093,-0.043050405,0.02136029,-0.0071870373,-0.024328906,0.011967378,0.0045831036,-0.005017921,-0.02263263,0.011135017,0.0078114346,0.0153285945,0.040436372,-0.027627176,0.018720867,0.0056384318,-0.00837466,-0.016085355,-0.0219153,-0.02119189,-0.054491147,-0.0028123667,0.018392324,-0.023329828,-0.0019030061,-0.046966463,-0.036340233,-0.016012652,0.008109965,0.0021295876,0.026217643,0.0074589117,0.009846613,-0.014033466,0.006673788,0.082919635,0.073765755,-0.05426814,0.03375949,0.036682878,0.01569512,-0.046287786,-0.003992344,0.035115495,0.056970615,-0.030083723,-0.016582765,-0.0067826165,-0.0058953585,-0.017202327,-0.0340961,0.014224471,0.03373131,0.04580034,-0.09044033,0.007875892,0.0010404661,-0.0547269,-0.027712991,-0.018995542,0.02724934,0.02734748,-0.00050600444,-0.02291483,-0.038686235,-0.028436895,-0.009869387,0.08157599,-0.041791916,0.038761355,0.050850473,-0.025210677,0.017174643,-0.042546626,-0.004485626,-0.03016421,0.013329002,-0.011341874,0.06183358,0.026390065,0.0071330806,0.021046842,0.001664921,-0.023215702,0.014502589,0.03566584,-0.014792599,0.0077230334,0.027674982,-0.00048557264,-0.03797846,0.0048837364,-0.0502734,0.04056336,-0.013694936,0.032492783,-0.08275982,0.020738924,0.025106572,-0.06493201,0.010574486,0.007016195,-0.009029185,0.04934996,-0.017584637,0.010525446,-0.042953506,0.0042226557,-0.0042030457,0.013206025,0.043270376,0.04941989,-0.013865138,-0.02078773,0.008723992,-0.0092000235,-0.010547764,-0.06914588,-0.00925339,0.032042444,0.016760232,-0.009094148,-0.022949753,0.034876876,0.010163069,-0.0007271213,0.029269857,0.015293374,-0.011631575,-0.0033510935,0.007931527,0.005847565,0.028898876,-0.036258884,0.071623564,-0.02831726,-0.022675904,-0.029862143,0.013528063,-0.026815541,0.023923066,0.014723467,0.0028931824,-0.028484168,-0.009041822,0.004196142,0.012476411,-0.059311587,0.013452215,0.015104153,0.012963167,0.0051895045,-0.02590004,0.004752815,-0.043851424,0.05335587,-0.012257297,0.016886475,-0.061656855,0.01444948,-0.035450798,-0.03367189,0.04706746,0.026729172,-0.019959277,0.03059178,-0.019361697,0.025554134,0.032371122,-0.014635331,-0.017161282,-0.019907674,0.0139180375,0.031335857,0.021141248,-0.036323633,-0.028485905,0.013862486,-0.053747777,-0.01964757,-0.048810393,0.01811747,-0.026372915,0.007746106,0.026492054,0.018784184,-0.018144675,-0.010325971,-0.027263917,0.043090817,0.005115914,-0.015412077,0.040692158,-0.0043507987,-0.035469178,0.032379888,0.004258796,0.013486586,-0.0002427951,0.03722939,-0.010812854,0.026192285,-0.012656348,0.011944195,-0.0036446818,-0.0034501213,-0.05467839,-0.015449089,0.0038181765,-0.0087008355,-0.013046348,-0.02945867,-0.04351833,-0.021073475,-0.001780126,-0.022812374,-0.006534246,0.01878863,0.031220341,0.016399778,-0.0276961,0.021543307,-0.0058546816,-0.037573483,0.022937473,0.01679904,0.032057337,0.070437595,-0.0015506138,0.0032822273,-0.004142518,0.008054394,0.0020976171,-0.060684323,-0.00069564296,0.0028404123,-0.010145718,0.013573879,0.048875112,0.008656664,-0.04694314,-0.00046534257,0.03280847,0.0018510316,0.0047696866,-0.012983492,0.0004537513,0.014059612,-0.042701785,-0.026147995,0.029165195,-0.01997202,0.046690017,0.008100001,-0.013941115,-0.041080527,-0.044199813,-0.002354205,-0.027229149,-0.049021285,-0.01897548,-0.030324953,-0.012361798,0.005065506,0.0049137915,-0.027897881,0.037684932,-0.041658677,-0.010042145,-0.010804522,-0.0060141464,-0.020799687,-0.07404068,-0.026951335,0.057951376,-0.025207948,0.02094429,-0.027582917,-0.031301223,0.021570968,0.026558144,-0.017930655,-0.020016281,0.020026432,-0.025609884,0.061421026,0.017773475,-0.0043148184,0.06859445,-0.043185435,-0.04295002,-0.0126383845,-0.033010434,-0.022348616,-0.003963431,0.028448604,-0.012815897,-0.007870257,-0.029333396,0.08258148,0.06409481,0.021229314,-0.051570974,-0.032387413,-0.044618845,-0.030830882,0.016872572,-0.0022259036,0.007736344,-0.006865683,-0.0054976335,0.038277708,-0.011875287,0.016748266,0.0844066,-0.03037486,-0.001039368,-0.04359664,0.03179045,0.028394042,-0.048248574,-0.007637691,-0.030772464,-0.031074991,0.052894007,-0.038038757,-0.051825352,-0.034895413,0.033671357,0.076028995,-0.030567247,0.017967712,-0.03482321,-0.011672718,-0.06831012,0.026236618,0.039914187,-0.0065366076,0.013628381,-0.0035604548,-0.0143723935,0.022327464,0.022170529,0.018147927,0.01582383,0.069593996,0.017047483,-0.028766051,0.037963394,0.064061135,-0.016059613,-0.056212727,0.027295616,-0.014865676,-0.040495094,-0.04518263,0.011515754,-0.0011621837,-0.03880647,-0.031532384,0.022875156,0.023626352,0.025814524,-0.0013520606,0.056819063,-0.017954458,0.0074439463,0.048132546,-0.026520442,0.048788104,-0.03224315,-0.009082002,0.021391831,0.043700222,0.02895496,0.005014274,0.008357264,0.010874415,-0.01260173,0.0071414583,-0.033131298,-0.031713687,0.036959562,-0.007644446,-0.05540027,0.020880202,0.01155193,-0.020686628,0.017290741,-0.031850386,-0.015938152,0.005411031,-0.02326641,0.0135059925,-0.049701422,0.008744676,-0.016925747,-0.036607765,-0.040465336,-0.019722367,-0.024395071,0.021836752,-0.008483566,0.03023834,0.000112944464,0.04509728,-0.027583545,0.019709101,0.004314634,0.033753246,-0.021725021,-0.060255717,-0.0072692106,0.057083108,-0.042364284,0.008502151,-0.030125055,0.017677397,0.008986907,0.01127346,0.018229581,-0.004981328,-0.0243668,0.0049218275,0.030959744,0.0036548006,-0.0051428163,0.047446106,0.04258164,-0.027267396,-0.0035107993,-0.0036462205,0.0013233643,-0.07454087,0.018640174,0.0024391175,-0.0015749821,-0.010349938,-0.07567182,-0.014601733,-0.03634591,-0.018748205,0.010261614,0.008313532,-0.022926673,-0.020965314,0.035865527,0.0042489762,-0.009004347,0.024438668,0.027751397,0.023195613,-0.01878336,-0.0030030955,0.01478445,0.029650658,0.056590967,0.0015453511,-0.023694776,-0.0055958154,-0.006168217,0.000289061,-0.039267797,-0.048097007,-0.02853717,0.04244977,0.017630966,0.016185747,0.02515995,-0.06657441,0.01161314,-0.0060147257,-0.017193373,-0.009791057,-0.07347083,-0.0109357955,0.021517368,-0.028944606,-0.012783026,-0.013497581,-0.050274443,-0.039861936,-0.022203129,0.0073773675,0.011427996,0.033473186,0.0124147935,0.034837753,-0.034156673,0.029798744,-0.017031187,0.01012787,-0.0011371766,-0.009828086,0.01865296,0.026891014,0.005885169,0.041290563,-0.056616392,0.020841159,-0.032645587,-0.05170504,0.02174064,0.029007826,-0.030350605,0.007885908,-0.006894068,0.02658527,0.004437964,-0.0015890688,0.014455034,0.0055293655,-0.01236752,0.02058258,0.024482213,-0.0111852735,0.023723863,-0.015121184,0.024920868,-0.016746907,-0.033984803,-0.03298655,0.029948676,0.047627013,0.007964811,-0.0061991983,0.050742898,-0.005540682,0.033124216,-0.011883492,0.027508581,0.014863412,-0.030441025,-0.011390421,-0.032731302,-0.0004298452,-0.01296523,-0.04677642,-0.0068740123,-0.05568011,-0.0050317156,-0.0074620545,-0.011569144,0.035723668,-0.017553307,-0.02378588,-0.019527627,0.009455127,0.00022160575,0.031585705,0.013485732,0.034466412,0.037817907,0.027963748,0.02010971,0.0073351767,0.009880028,0.015289519,0.0017295401,-0.021034755,-0.030490646,-0.008783859,-0.013999555,-0.011827463,-0.038076814,0.07191016,-0.018113133,-0.036081832,-0.008244337,0.0029431356,-0.010683596,-0.060267303,0.01169038,-0.032907117,-0.025613463,0.025663167,-0.012917977,-0.0062492425,0.01908601,0.016287768,0.022557823,-0.009803212,0.003604254,0.0033395523,0.05078217,0.062255982,0.01613769,-0.02352234,0.005866057,0.013260294,-0.026581146,0.005903651,-0.009580258,0.009013005,-0.004866399,0.014634036,-0.00093249447,0.05657601,-0.013991925,-0.033990443,-0.040119402,0.018839369,0.010351133,0.024526263,0.009264071,-0.00092935795,-0.022233224,0.0026152208,-0.042309016,-0.011925942,0.004802477,-0.06575689,0.022869421,-0.039162397,-0.06489515,-0.03154563,-0.022711616,0.0064714723,-0.019439733,-0.02029692,-0.03462089,0.027828874,0.027764067,0.002429399,0.038075708,0.0035314367,-0.0253311,0.0603509,0.029377853,-0.0405282,0.07920018,0.0009775881,-0.0013868349,0.0371966,-0.03758866,0.041769747,-0.0054083443,-0.016108198,-0.03803021,0.01623461,-0.0595545,-0.025914017,0.020060306,0.069777265,0.053276196,-0.045232806,-0.070732385,-0.020450376,-0.052984484,-0.0041755056,-0.01587542,0.037123006,-0.0050538643,-0.015736727,0.0027771478,-0.089204915,0.24747823,0.057779428,0.010556205,0.0143865235,0.004456209,0.013744962,-0.019827113,-0.03416045,-0.03315338,-0.034668755,0.054915875,-0.041969564,0.015441383,0.0061374344,0.0394624,0.08695065,-0.0123831425,-0.026897218,-0.030557467,-0.0050652744,-0.037994713,0.010418562,0.016113413,0.050130643,-0.025564507,0.015211869,0.07581207,0.00709345,-0.009002775,-0.042775895,0.0028323971,-0.03608797,0.029413227,-0.025388606,-0.032962352,0.061633985,0.007549654,-0.0043936823,0.015390484,-0.0218395,-0.052067086,0.017911334,0.033080295,0.012436546,-0.018068966,-0.000018450024,-0.02056512,0.028926892,-0.008983852,0.004738314,0.020642968,0.004252158,0.0552424,-0.046466235,-0.02369503,0.0011546403,0.02257326,-0.025313182,-0.006202454,0.021188628,0.01532653,0.012432666,-0.00022955406,-0.0048366855,-0.048020933,0.037190598,0.02848313,0.024433041,-0.04057632,-0.037110094,0.018331636,-0.019331101,-0.03255429,-0.022064172,-0.0069859647,0.002394094,-0.017569948,0.038619813,0.013766936,-0.0044321027,0.0054996843,-0.0011097322,0.00033730632,-0.011988014,0.019285506,0.0354447,-0.018118711,0.0061568003,-0.0452146,0.06278119,0.018601695
+8000
+,0.014094255,-0.013013496,-0.051173046,-0.014465091],[0.040924996,-0.012718097,-0.007192396,0.038761176,-0.004341977,-0.03830757,0.029174628,-0.0073408918,0.023051398,0.03302238,0.044943124,-0.033515453,-0.015288155,-0.004941186,0.0005011577,-0.035365015,-0.033154566,-0.0021491086,-0.036419712,-0.0004145724,0.043310594,0.0061383224,-0.10991337,0.03522239,0.029629637,0.06462601,-0.02277475,0.013513018,0.043765396,0.048363306,-0.03885115,0.013878888,0.041173764,-0.05416574,0.003991103,0.00030800738,0.03730328,0.0020091957,-0.0018011351,-0.04061327,0.012033799,-0.045898497,0.034913182,-0.02256148,-0.058304876,-0.0046727606,-0.008956339,-0.006422019,0.029688409,-0.063588835,0.0042577675,-0.020711876,0.04036059,-0.044702653,0.026263637,-0.01971474,-0.04036895,0.019277256,-0.032100603,0.038187444,0.051087752,0.033667233,0.038376186,-0.06557635,0.0013536224,0.004421169,-0.001423033,-0.005156794,0.019990582,-0.01282903,-0.018320028,-0.0032797286,-0.015264458,0.014135564,-0.03777772,-0.00034643698,0.000604004,0.031183898,-0.052837502,0.053389832,-0.02115146,0.028583648,-0.015383163,0.028075503,-0.056122743,-0.035019387,-0.02383324,0.0432505,0.024398409,0.0037634172,-0.0011112902,0.043146838,-0.019714512,0.021201137,0.013557455,0.008006003,-0.024601491,-0.009250394,-0.00986998,0.014495736,0.01826796,0.0061984877,0.0042906282,0.050928842,-0.051343996,0.014693856,-0.014145122,-0.018136637,-0.0073878933,-0.009475551,-0.010171787,0.020686666,0.009225394,0.027450033,0.023243785,0.024609217,0.017733468,0.012267533,-0.015003847,0.014967644,0.011461743,0.010545487,-0.0151307415,0.005631841,-0.020392036,-0.034047246,-0.047048457,0.058983885,-0.026877036,0.038039178,-0.017252615,-0.007974434,0.005230771,0.013551579,0.041556306,0.014258622,0.031888433,0.016335195,0.030050792,-0.02089171,0.05085393,0.024109537,-0.029178347,0.047894288,-0.005847932,0.0074171084,0.02331832,0.025228694,-0.07228297,0.07501196,-0.05701162,0.023741698,0.060629323,0.027767869,-0.022840291,0.040514722,0.012281001,-0.017261462,0.03995695,-0.011240091,-0.03624243,0.018958574,-0.019274293,0.024490973,-0.017218383,0.013877735,-0.007348836,-0.020265779,-0.034457747,-0.01659035,-0.044379223,-0.003380351,0.015670562,0.028531924,0.02395339,0.06300964,0.017676834,0.008293024,0.020322442,0.008517165,-0.016500322,0.013759935,0.0032446424,0.026576847,0.033199627,0.008899205,0.024767747,-0.028343858,-0.002361809,-0.022058787,-0.006124248,0.043295573,-0.026641026,0.010911203,0.006944837,0.00635561,-0.045790076,0.002530269,-0.025299082,-0.05796866,-0.007458922,0.028967412,-0.0314283,0.020113468,-0.018806878,-0.04472084,0.004473,0.040009916,-0.018500034,0.0066943774,0.03064268,0.01115814,0.0049467897,-0.023012558,0.06922718,0.028981308,-0.0620712,0.05480111,-0.03544179,-0.014295278,0.024121454,0.033836853,0.0060017793,0.016562536,-0.008543998,-0.0072277137,-0.030063048,0.016918862,-0.004401905,-0.014163727,0.009906897,-0.013023829,-0.021608679,0.020313708,0.049128402,0.004662837,0.0069973445,0.0036896374,0.0081434585,-0.016498119,0.0058326107,0.004780739,0.052111246,0.027273078,-0.0033408296,-0.0067054615,-0.0120446365,-0.0484763,-0.0056763436,0.03923151,-0.02195271,0.011606286,-0.01984744,0.024958821,-0.05738127,-0.0017563765,0.051224947,0.059272997,-0.03866164,-0.029161906,0.0059558973,0.01987817,-0.025754424,0.029614856,0.043054614,-0.008105848,0.031144524,0.0074786115,0.013210445,-0.034301344,-0.0077597387,-0.029054182,-0.06053974,-0.010497087,-0.06473092,0.03822735,0.007096431,-0.027807718,0.043728832,0.011154584,0.027478855,-0.03991656,0.03117874,0.014661194,0.009372241,0.04642976,-0.011453927,0.02963677,-0.012500697,-0.00019860019,0.013078805,-0.023770954,0.0038625184,-0.024392363,0.042313997,0.004470701,-0.007743742,0.022513168,-0.033331376,-0.044061236,-0.008027705,0.009196905,0.012978253,-0.008745013,-0.027003378,0.017619492,-0.010542477,-0.01841685,0.053141437,0.0717019,-0.08903526,-0.0039129,0.016286746,-0.0018525583,-0.037057873,0.0008206174,0.0106874015,0.027212104,-0.020007567,-0.026332611,-0.021852477,-0.0003527549,-0.026699152,-0.0040334244,0.006677048,0.03660301,0.027049845,-0.07529995,0.023663295,-0.019553674,-0.052999754,-0.039136313,-0.031015154,0.020660136,0.002241254,-0.0067404187,-0.016502742,-0.027401466,-0.029857099,0.011190107,0.04658146,-0.05759322,0.01533262,0.055180226,-0.01639722,0.012700149,0.0065790066,-0.00711419,-0.026116624,0.011029928,-0.00541828,0.046985526,-0.019147044,0.01595733,-0.004441224,-0.005580673,-0.002359338,0.021293018,0.033900104,0.007218649,-0.015359609,0.0034118972,-0.0019262575,-0.032201637,-0.015380688,-0.030236913,0.027277304,0.012382286,0.012327736,-0.041874077,0.017552411,-0.000117031195,-0.05575571,0.008892965,0.016809495,0.005902875,0.039352305,-0.011800153,0.033061773,-0.048963647,0.02385098,-0.008645775,0.02442636,0.033255782,0.035277393,0.0045812884,-0.009090862,0.01422162,0.00038520878,-0.0058036475,-0.07708638,-0.034922462,0.07316592,0.017370954,-0.002271724,-0.024386294,0.0022878493,0.052180517,0.011769109,0.034942072,0.015009277,-0.013677904,-0.0014066149,0.0487147,0.041687366,0.00027334256,-0.020253211,0.06046284,-0.03241916,-0.003947882,-0.035356563,0.0078129,-0.024746418,0.042633533,0.009818023,-0.0044146376,-0.022580165,-0.010035378,0.011368845,0.030760702,-0.06155473,0.026221476,0.0019359105,0.010107382,-0.018299937,-0.028657747,0.059187613,-0.04768386,0.050940678,0.0051988782,0.016911672,-0.045159597,0.02731254,-0.018946689,-0.0120750265,0.04785342,0.013721911,-0.0020250257,0.0142752165,-0.01831518,0.02281476,0.013843935,-0.011288396,-0.024368173,0.004682506,0.026895408,0.04223353,0.030993639,-0.033791974,-0.04844931,0.019371556,-0.060433157,0.0002619363,-0.04207871,-0.018642336,0.009775884,-0.0054548993,0.01652349,0.006992519,0.007042826,-0.014789623,-0.039732955,0.03204098,-0.0053695305,-0.023981234,0.027714543,-0.0030178141,-0.0267654,0.036999412,-0.02399421,0.049385753,-0.0016130194,0.026520258,-0.038864966,-0.0058977497,-0.00038626956,-0.009842499,-0.0031961573,0.017791944,-0.026596121,-0.028090738,0.012769759,-0.011016283,0.0085116,-0.01546085,-0.0626602,-0.025130035,0.026069675,-0.019185178,0.0040814644,0.019690324,0.008535434,0.014758381,-0.043972492,0.03456492,-0.0005779458,-0.05679556,0.017682973,-0.015290217,0.021288324,0.09458982,-0.002291723,-0.010253722,0.0017495691,-0.022285527,0.012144466,-0.05309124,-0.027343778,-0.015194155,0.007031201,0.016677165,0.034775987,-0.022550788,-0.016825605,0.023695584,0.038814757,-0.022011178,0.035172936,0.0035510107,0.030097758,0.015795957,-0.04163132,-0.01935296,0.03962438,-0.0027054774,0.03362959,-0.0023501592,-0.03460957,-0.05648655,-0.06032418,-0.023643693,-0.025257194,-0.06348485,-0.03071527,-0.01564887,-0.017000368,0.013609836,-0.0021775693,-0.013425143,0.017151186,-0.056475762,0.0023415242,-0.010179128,-0.03972462,-0.010992737,-0.07096353,0.006241703,0.053050112,-0.012278094,0.026218442,-0.017853066,-0.008899469,0.006929186,0.014449551,-0.021720242,-0.011034084,0.016045105,-0.0038494468,0.03555164,0.027493998,-0.020245573,0.037946057,-0.012720441,-0.02220593,-0.03731752,-0.020902965,-0.06690102,-0.016433287,0.028600756,-0.029438633,0.0106458,-0.042647094,0.055657946,0.053997118,-0.015225484,-0.045028336,-0.029011384,-0.021313254,-0.03568494,0.030443056,-0.03256853,-0.021777503,-0.025597963,0.013804548,0.011650314,0.026535096,0.021760613,0.064609036,-0.008259706,0.0073997476,-0.059966955,0.033013396,0.0258188,-0.045334935,-0.015639715,-0.04993235,-0.013059758,0.01719152,-0.03212201,0.0028448557,-0.051630333,0.019258961,0.0689934,-0.07392304,0.0356176,-0.016843341,-0.016031912,-0.03506693,0.048801687,0.037676737,0.004467968,0.019982018,-0.0016491895,0.03132635,0.055723485,0.017165478,-0.0084017115,-0.012112223,0.022379536,-0.015684363,-0.045066427,0.03093561,0.0180592,-0.037238557,-0.04024689,0.032105453,-0.012274623,-0.028659677,-0.0113801565,0.0020991543,-0.012395087,-0.02852864,-0.01737495,0.013495034,0.03207816,0.019405285,-0.014616072,0.05676479,-0.0063241925,0.0336223,0.013924543,-0.032777805,0.02373732,0.015321595,-0.028047753,0.0032523738,0.025113564,0.0266804,-0.013968328,-0.028442003,0.04090607,-0.02189641,0.012705683,-0.026874907,-0.033019558,0.06895785,0.009089538,-0.046819057,0.0048210127,-0.012050528,0.0029475526,0.03166339,-0.051171053,-0.004047729,0.01566515,-0.0047421684,-0.0077410312,-0.043254036,-0.0513584,-0.03045742,-0.042138543,-0.05363173,-0.027265904,-0.03448076,0.0288036,0.008550499,0.005974681,-0.019782715,0.076043665,-0.054968435,0.0033002188,0.016699845,0.041445278,-0.03200391,-0.03455843,-0.018181592,0.043868124,-0.053292,0.0014350639,-0.028135953,0.027023524,-0.011430639,0.024147581,0.025413973,-0.024598485,-0.013465628,0.0028418368,0.017200118,0.0030957242,-0.0056580096,0.04370008,0.047171883,-0.017100282,-0.010886422,-0.014530732,-0.0019354341,-0.03525648,0.023895737,-0.033639256,-0.009257675,-0.04301196,-0.045717567,-0.01367953,-0.046381697,0.0036116673,-0.007051919,0.015610863,-0.045251984,-0.030964984,0.014781188,0.046107844,0.010384691,0.009958985,-0.03066831,0.05012287,0.013572839,0.007867788,0.017323641,0.043825578,0.06457663,-0.014046905,-0.0136734005,-0.002925779,-0.02156242,0.015615685,-0.041617367,-0.008138302,-0.023751615,0.036296114,0.012249524,0.03838332,0.035794716,-0.04177768,0.011386227,-0.033727884,-0.046603166,-0.011838527,-0.0861874,-0.020496843,0.021258673,-0.042078633,-0.0031828317,0.013543541,-0.054901134,-0.04149179,0.005293202,-0.020643856,-0.013903976,0.043675996,0.04088641,0.023923531,-0.056366004,0.0071595022,0.0009223922,-0.0030193238,-0.0077529387,-0.047565125,0.025134476,0.0046531768,0.025246171,0.018739896,-0.034556005,0.003577119,-0.0423162,-0.033947807,-0.0057067308,0.002702425,-0.031139186,0.0088859275,-0.0086145,0.02552327,0.007388538,-0.015488847,0.0109093925,0.046719667,-0.009311173,0.020732194,0.031262204,0.025443636,0.02349428,0.022241648,0.023442822,0.014800256,-0.043923873,-0.060099214,0.046661004,0.035559166,0.009696302,-0.029554944,0.08550721,0.005552729,0.035526615,0.023383506,0.010294934,0.007443254,-0.02459265,-0.005544374,-0.03947022,-0.024908263,-0.026926044,-0.04970663,-0.0023309146,-0.07934129,-0.0049079894,-0.041152444,-0.003615821,0.0348128,-0.008710393,-0.03806727,-0.009422452,-0.004697583,-0.010840528,0.027971128,-0.00021034325,0.015172047,0.015665669,0.031182835,0.0044650924,0.02480456,0.0019425184,-0.008848372,0.010277676,-0.0070641856,-0.003760181,0.0052137203,-0.008207069,-0.030717716,-0.062809214,0.040572226,-0.012346578,-0.036768384,0.027404025,-0.008896748,-0.013142195,-0.051823396,0.005045338,-0.025239693,-0.017529793,0.0062829526,-0.005964095,-0.014741148,0.0077607716,0.026620608,0.023147864,0.017559635,0.021231182,-0.0008662446,0.04796811,0.019814892,-0.017679403,-0.041738436,-0.0013165879,0.021864893,-0.011952313,-0.0018870218,-0.014195222,-0.0053105596,-0.005829358,0.008992362,-0.03434255,0.040407684,0.010658789,-0.06447503,-0.0066816728,0.032245226,-0.0046734037,0.020295197,0.007979095,-0.0003361959,0.013980253,0.018238029,0.0057127476,-0.028913816,0.044759315,-0.028113877,0.011479527,-0.010586935,-0.02087035,-0.051567893,-0.026616344,0.021524005,-0.008697555,-0.037175592,-0.0263053,-0.0017633968,0.043512978,0.02232053,-0.0140126785,-0.01696195,-0.015628496,0.064506054,0.023873594,-0.025374506,0.06761149,-0.0009880627,0.024293086,0.027359972,-0.03262651,0.06461598,-0.023097945,-0.024681572,-0.027690696,0.04325501,-0.026947293,-0.03270242,0.017092934,0.056624394,0.02464361,-0.044404384,-0.053273782,-0.020021316,-0.041751783,-0.036074854,-0.0068436125,0.06096356,-0.0026475545,-0.013065493,-0.0029126962,-0.08608387,0.25703079,0.06582166,0.034010854,0.012195183,-0.019510549,0.021664456,-0.0060006436,-0.024507718,-0.037884,-0.047174886,0.034703795,-0.030321853,0.016814457,0.03745077,0.010912772,0.053531773,-0.020146264,-0.02488309,-0.019769525,-0.023653908,-0.018944517,0.0005115817,0.015143906,0.04246615,-0.0057940516,0.025551498,0.057212707,0.013023169,-0.009264529,0.001390416,0.0013692762,-0.06675321,0.015752077,-0.022584056,-0.0591326,0.03736299,-0.02474658,-0.019933183,0.0033574994,0.0014296185,-0.051553518,0.019179266,0.009982583,0.0054735322,0.03545424,0.010207166,-0.018065099,0.028924942,-0.033089824,0.01698882,0.016236968,0.0015434441,0.04861847,-0.04276352,-0.0026595467,-0.039654158,0.0282896,-0.004611803,-0.017502122,0.027605768,0.007883545,0.011819893,0.012282335,0.02627212,-0.03145655,0.005585781,0.063599296,0.022370942,-0.03118547,-0.041315112,0.005873031,0.008847787,-0.0134593705,0.012248988,-0.018778678,0.011553537,0.00014970935,0.046548482,0.010347834,-0.016345192,-0.007358039,-0.007622803,0.0023177557,-0.035846535,-0.009025881,0.050961837,-0.029771717,0.015344507,-0.053012397,0.055009082,0.043107796,0.033660688,-0.010183068,-0.062020645,0.026486471],[0.02207449,0.009716029,0.022173714,0.024898538,-0.0073766983,-0.023769505,0.029545559,0.011921877,0.016751805,0.025616046,0.056793388,-0.027961403,-0.0092275245,-0.02452441,-0.033798985,-0.031066414,-0.037827477,-0.030496016,-0.043406878,0.0032775537,0.038240623,0.020626945,-0.10430433,0.0077615273,0.029620972,0.048277337,-0.02496754,0.012202885,0.039295115,0.054723024,-0.007753956,-0.002991339,0.028747791,-0.015415334,-0.038248535,-0.018468948,0.037039615,-0.016994113,0.00067486166,-0.030027514,-0.0027182447,-0.03251417,0.029387321,-0.02714673,-0.053093098,-0.002608135,0.018187704,-0.0071271597,0.0054291673,-0.05706975,0.015036168,0.00093498314,0.030775746,-0.037577108,0.012759056,-0.044136718,-0.02395881,0.008163788,-0.012731006,0.028533928,0.022440672,0.044568736,0.020608593,-0.06675901,0.004340084,0.00035427694,0.0058216,0.004737513,0.023135515,-0.017382152,0.0012364251,0.012792387,-0.001329839,-0.006495094,-0.015540148,-0.0052205925,0.020329578,0.016566413,-0.03784493,0.053638037,-0.02907621,0.019593295,0.033128813,0.0027763864,-0.015347586,-0.028318904,-0.003111908,0.044134915,-0.004000437,-0.026985632,0.025856068,0.049869858,-0.049975432,0.021008415,0.042257797,0.002071822,-0.008242693,-0.015176268,-0.01505969,0.016710468,0.029937377,0.014641296,-0.035317916,0.068291575,-0.06140544,0.00968082,0.0036119448,-0.027407045,-0.006497622,-0.020881567,-0.004152783,0.026564661,0.022779986,0.017657856,0.0083954455,0.008554555,0.0006009454,0.040675674,-0.021653293,-0.03650489,0.027438259,0.0014172859,-0.011078431,-0.01358506,0.0002745836,-0.04096071,-0.05276153,0.04892898,-0.03968858,0.0028651983,-0.02108512,-0.022194624,0.043920696,0.022061622,0.04119863,0.016571,0.006899791,0.008549328,0.022720996,-0.03645958,0.03934809,0.023409747,-0.042950317,0.05665039,-0.009956352,0.026867809,0.005651547,0.019273821,-0.051292047,0.05513546,-0.055980053,0.027571842,0.03027058,0.023096735,-0.022819268,0.01261942,0.010264941,0.0048198258,0.04224119,0.018143492,-0.035001434,0.011282971,-0.005271176,0.0033884647,-0.049428232,0.03319293,-0.0362119,-0.033113007,-0.017646419,-0.010335728,-0.047499962,-0.01123897,-0.005035542,0.028566077,0.0042810827,0.061207164,0.007209211,0.026395034,0.04756631,-0.002940107,-0.0126013085,-0.0125092175,0.017177844,0.03413014,0.022664247,-0.0064122197,-0.00644707,0.014842722,-0.0013281549,-0.036457732,-0.0026345253,0.058352493,-0.00814453,0.003969993,0.012456771,0.0010357815,-0.029011764,-0.013652917,0.0015283346,-0.041534983,-0.0054377937,0.047213066,0.0019671442,0.031488433,0.005381646,-0.02672341,0.018179145,0.050123375,0.0047925487,0.0030766136,0.049464263,0.010820584,-0.02388928,-0.014444355,0.05190164,0.018145306,-0.05833316,0.05643654,-0.040183127,-0.0067011854,0.020486468,0.024212727,0.030721655,0.008610847,0.00143618,0.01398845,-0.007376593,0.035200857,-0.0005583379,0.02402882,-0.003920654,0.008974829,-0.030755864,0.04287142,0.020326436,0.02212652,0.03677156,0.0066567296,0.026236568,-0.034248002,-0.014446529,0.020771435,0.032671742,0.029690862,0.021168472,0.031563725,0.0016376099,-0.039048873,0.013367876,0.031452235,-0.03542843,0.023144903,-0.0063006845,0.036746077,-0.0542593,-0.021784108,0.027668022,0.08527452,-0.014035085,-0.014694718,-0.0125578595,0.013671651,-0.018198011,0.04106532,0.03655719,0.009303348,0.026067251,0.013513172,-0.03209608,-0.017301904,-0.027359085,-0.0077784187,-0.03445112,-0.013860475,-0.046506938,0.036519945,0.0068293517,-0.033444483,0.03214994,-0.0070577348,0.018272473,-0.0053186207,0.022501292,0.0004596321,-0.0011387336,0.056550425,-0.015602835,0.012651076,0.0052313204,0.015787853,-0.007923653,-0.011334996,0.027425695,-0.029218016,0.021062799,0.010305581,-0.022384355,0.017128253,-0.039983176,-0.042365786,-0.042543575,0.0036355248,0.013375615,0.004550573,-0.0037683526,0.029607167,-0.020926226,-0.02939214,0.06955992,0.07202759,-0.0933908,0.034753773,0.025067808,0.0076766,-0.046584804,0.023101097,0.033075698,0.032326583,-0.022433283,-0.01523048,-0.023915496,-0.020022009,-0.035313502,-0.031828653,0.019557467,0.034531936,0.03399209,-0.0879492,0.04238872,-0.02634919,-0.053344216,-0.037073713,-0.007955083,0.044229362,-0.006613761,-0.0006628097,-0.0040362263,-0.028300269,-0.036013477,0.01239269,0.069633,-0.058941644,0.025332972,0.0656115,-0.01653861,0.04317485,-0.009501153,-0.013900411,-0.02393917,0.006551346,-0.02524025,0.06885887,0.03186394,0.026755624,-0.0077632302,-0.009550243,-0.010901719,0.045737967,0.022018036,-0.006185245,-0.00958467,0.041233137,-0.004515341,-0.03129899,-0.008421067,-0.033164583,0.016360164,-0.010657528,0.03612332,-0.07660112,0.018173592,0.019061506,-0.06570606,-0.017053766,-0.005572507,0.006779589,0.030120974,-0.015135944,0.025779014,-0.032636594,0.028553186,-0.026315551,0.033675585,0.043014154,0.039639805,-0.003322743,-0.02159395,0.013612779,-0.006621244,-0.010831571,-0.09198236,-0.027128516,0.024806773,-0.018047614,-0.0055908994,-0.023858283,0.037961595,-0.0014396545,0.022471445,0.023417285,0.046846222,-0.009325926,0.022231685,0.02754491,0.00031616236,0.020718442,-0.04246796,0.038707368,-0.032487262,0.022572326,-0.04499425,0.013099244,-0.012893215,0.043629345,0.015921839,-0.008660069,-0.017737143,0.0016464732,-0.004931207,0.033280242,-0.05976219,-0.005480781,-0.020383328,0.0026875376,0.010421791,-0.032884188,0.029059848,-0.042644996,0.05486741,-0.0006643275,0.021528209,-0.033515193,0.015162843,-0.0047074114,-0.01706936,0.021125479,0.03076772,-0.026099706,0.027983822,-0.008462885,0.024502343,0.026179908,-0.0044336985,-0.0016929532,0.010480202,0.027899444,0.02509504,0.028772665,-0.03271779,-0.042468507,0.032751985,-0.05176361,-0.020039268,-0.042838447,-0.0028888418,-0.022099324,-0.011669179,0.005257625,0.011956883,-0.0040502613,0.00038923367,-0.04025001,0.040698353,-0.010544204,-0.034249306,0.017589988,-0.011989826,-0.032308172,0.045020126,-0.010214408,0.0099465,0.0006254174,0.00093278155,-0.025393065,0.020113276,-0.009471004,0.013461479,0.008950714,0.011674215,-0.02795264,-0.029568173,0.025245393,0.007799081,-0.004637912,-0.027952781,-0.05930371,-0.021790173,0.017677458,-0.021965723,-0.022805883,0.044585142,0.023414543,0.0047554807,-0.05063241,-0.0045915307,-0.01057278,-0.042008728,0.012475232,-0.005403324,0.040777344,0.055719387,0.016230248,-0.031066157,0.021175088,0.0043746093,0.005239177,-0.043546353,-0.011501644,-0.0024435655,0.029984115,-0.0018197749,-0.011788736,-0.010976867,-0.053499315,0.020995097,0.042178128,-0.015843742,0.020367512,0.0022568014,0.02196939,0.030706277,-0.035280067,-0.036511727,0.045976344,-0.029539712,0.030883921,-0.003812128,-0.014833246,-0.054705154,-0.024263663,0.00079545577,-0.044835236,-0.035381638,-0.026084375,-0.004745256,-0.02252218,0.011703449,-0.0121500045,-0.017679825,0.022573406,-0.031361524,0.021858552,-0.010453784,-0.00094638934,-0.03033236,-0.0685689,-0.0024221651,0.070225894,-0.004523214,0.0246391,-0.04442224,-0.03638642,0.0018509274,-0.0021362144,-0.025504677,0.006755754,0.021955295,-0.031069536,0.018636834,0.03719796,-0.03430281,0.049281005,-0.030417185,-0.025480472,-0.023506345,-0.013100453,-0.043436147,0.014792063,0.035849594,-0.004082028,0.005750711,-0.023895357,0.06856367,0.050267268,0.03268389,-0.032231044,-0.046624556,-0.06129066,-0.03541073,0.014122973,0.0011471828,0.00051430974,-0.023108093,0.007501896,0.040775303,-0.0066074315,0.036745023,0.062273387,-0.016848424,-0.013407647,-0.044940274,0.03661857,0.008888437,-0.06346062,-0.017085887,-0.021747416,-0.025220431,0.037424307,-0.059924126,-0.037612986,-0.048231408,0.011861516,0.0693513,-0.01395616,0.051376183,-0.006658271,-0.024295239,-0.051277634,0.012957637,0.024126036,-0.024469648,0.0134778805,0.0070961528,0.010711645,0.03992648,-0.0063755424,0.00915277,0.009249782,0.051473267,-0.0074406825,-0.04012771,0.042760704,0.035074543,-0.033251185,-0.06842861,0.024190031,-0.026105827,-0.039806753,-0.022909546,0.01093854,-0.010301028,-0.009899509,-0.009721841,0.011789456,-0.006845555,0.018165374,-0.027606066,0.03346738,-0.00029405413,0.024960166,0.03455059,-0.00932211,0.017561054,-0.0062226523,-0.015057689,-0.005106127,0.014310622,0.04196608,0.033911128,0.005576436,0.020248545,0.0027494805,0.018369272,-0.025476862,-0.060071394,0.01695137,-0.009747961,-0.04725983,-0.00046331418,0.020146718,-0.022793537,-0.0052366117,-0.022613062,-0.009205862,0.015433485,0.0043931166,-0.000031167026,-0.05133237,-0.040815707,-0.033460386,-0.03693266,-0.027992379,-0.04084389,-0.034768812,0.016389647,0.035323367,0.020304302,-0.018647894,0.06645839,-0.04848316,0.03981102,0.007658214,0.076417394,-0.043917,-0.043516375,-0.033398956,0.038672958,-0.0587964,0.023239274,-0.028115898,0.029033512,-0.0057716467,0.009595079,0.017295487,-0.012690121,-0.014520538,0.01550335,0.0065988223,-0.0014400226,-0.018229924,0.049514014,0.05747636,-0.03143565,-0.0036349106,-0.004469058,0.0025881052,-0.036678698,0.014386277,-0.007427375,-0.037674803,0.00013247758,-0.03670447,-0.026953252,-0.03477336,-0.025723757,-0.006699706,-0.0062793936,-0.029819446,-0.01782557,0.02028748,0.031863276,0.041180346,0.0019779974,-0.01592858,0.027497424,-0.00033822053,0.0012760002,-0.0033351057,0.0067208847,0.03640063,0.006176106,-0.0047353636,0.015712032,0.008761598,-0.0037794632,-0.030079214,-0.032449238,-0.02703584,0.020310927,0.0113904355,0.04800615,0.039566204,-0.05265767,0.032303873,-0.034983683,-0.039516732,-0.007905166,-0.0783652,-0.010517628,0.029008403,-0.023816658,0.0026222174,-0.012944848,-0.061323658,-0.028877985,-0.006467053,-0.0014078646,-0.019568898,0.022074226,0.03322856,0.015914254,-0.01204949,0.022992069,-0.004207625,-0.008969256,-0.013841722,-0.04351905,0.04114326,-0.0005783636,0.019060455,0.014488168,-0.034622047,-0.003081155,-0.03957013,-0.05470702,-0.019255903,0.010807862,-0.007125478,0.04489503,-0.021805448,0.04209724,0.010572963,0.020199351,0.00882296,0.010236224,-0.011372305,0.013310688,0.037827954,0.0010169422,0.028336225,-0.003212025,0.015392414,-0.0033819783,-0.03246154,-0.045644026,0.06312852,0.0359757,0.0002602664,-0.020755587,0.04989515,-0.019781204,0.03000013,-0.0043004276,0.037218936,-0.028719252,-0.020113712,-0.0022182504,-0.0034549688,-0.0099360915,-0.014291017,-0.06414276,-0.01638591,-0.07666064,-0.011282917,-0.008220483,-0.016901987,0.048926454,0.015189618,-0.028682018,-0.009963371,0.015835637,-0.041782327,0.041551843,0.014999075,0.02701607,0.048011765,0.013598569,0.017630363,0.004135452,0.024381442,-0.01298667,0.008884531,-0.022602886,-0.01921005,-0.0059908545,-0.0069637643,-0.014548649,-0.0715124,0.0390813,-0.023993844,-0.020403508,-0.021410668,-0.02408018,-0.002263753,-0.06917966,0.013519848,-0.026315939,-0.0032790713,0.01929501,-0.003345425,-0.005734532,-0.002014734,0.013890759,0.0135721285,-0.0017278811,0.0100972345,-0.014767985,0.037127547,0.018895773,0.0006606773,-0.02823446,-0.008355705,-0.000181545,-0.035501007,-0.004653265,-0.05317469,0.006522389,-0.007533382,0.012318357,-0.024392495,0.048673257,-0.0070224586,-0.060214035,-0.012894681,0.03133918,-0.015632235,0.046367314,0.015431159,-0.016674722,0.0073438757,0.010555521,-0.018661294,-0.007853798,0.03220975,-0.059811935,0.009268486,-0.04796612,-0.034614235,-0.030193731,-0.02753354,-0.0022461452,0.014605708,-0.022099447,-0.038435902,0.013754809,0.061464876,0.0044876137,0.016983956,-0.032196183,0.001010917,0.023889072,0.04526727,-0.018587606,0.10591061,0.010625226,-0.005555435,0.03259776,-0.029795539,0.07471804,-0.0082809515,-0.0064133615,-0.039114594,0.035025872,-0.04267083,-0.027992679,0.01309834,0.06660035,0.047590945,-0.049033538,-0.072032906,-0.018605074,-0.031714976,-0.029627124,0.002945915,0.0428242,-0.013532131,0.015080148,-0.017499039,-0.08664924,0.26494554,0.06060242,0.02195413,0.049967233,-0.008461463,0.027663264,-0.017180588,-0.01439309,-0.017509405,-0.02078885,0.044949934,-0.023789516,0.007981828,0.030073188,-0.0050142626,0.059591305,-0.03304206,0.008376873,-0.017004142,-0.033999555,-0.032581136,0.017384171,0.02375239,0.042349204,-0.02995121,-0.003292777,0.061509743,-0.027860926,-0.00715691,-0.026911654,0.03653665,-0.04321481,0.0176386,-0.035947792,-0.06455753,0.03700706,-0.001859765,0.006509532,0.0001524977,-0.03301395,-0.03068055,0.012692888,0.03948814,0.0013170639,0.016434167,0.019506648,-0.01915544,0.008426881,-0.00029357738,0.020560984,0.013520459,-0.002734943,0.048416834,-0.034731545,-0.0025749854,-0.032327615,0.019005347,-0.028966542,-0.016095415,0.020277495,-0.0033671712,0.01547869,0.028998394,0.008252327,-0.03866731,0.043133732,0.041402686,0.027906414,-0.046345517,-0.031125389,0.002169537,-0.013851238,-0.037038814,0.0009751672,-0.02579408,-0.023229277,-0.021256875,0.038137164,0.025254972,-0.033257693,-0.0106728235,0.0028430577,-0.01254654,-0.028719397,-0.029632203,0.027481178,0.0047314838,-0.013577456,-0.057352543,0.04969576,0.027195644,0.004741073,0.004507047,-0.062584475,0.017228974],[0.018266788,-0.010818136,-0.0042833923,-0.023000298,-0.018175354,-0.03997953,0.005737762,0.009902432,-0.006894465,0.011801127,0.037754018,-0.038907643,-0.0069966954,-0.028099606,-0.017432295,-0.020772569,-0.0037148553,-0.009212085,-0.014886634,-0.022027252,0.038979728,0.027694514,-0.09814493,-0.028336026,0.04392681,0.045721978,0.024463825,0.00023917708,0.053156175,0.050286375,-0.017218793,0.031910744,0.050056957,-0.019803265,-0.01693347,-0.027901696,0.05305439,-0.0037634843,-0.003723802,-0.01664365,-0.0041795126,-0.016191619,0.01624016,-0.046504427,-0.03634123,0.0028938542,-0.0062639634,-0.010323324,0.013411693,-0.051416915,0.037397817,0.024300188,0.011640557,-0.046365634,0.033289205,-0.008455391,-0.040708225,-0.007362289,-0.05949628,0.012858595,0.019447422,0.030190198,0.005013976,-0.038325984,-0.0024259337,0.01559386,-0.010889434,-0.006244683,0.019737722,0.0036799589,-0.0013846265,-0.009741187,-0.01398222,-0.013853348,-0.019620085,-0.017287362,0.018698478,0.0071435026,-0.038064666,0.03397227,-0.017681835,0.0043492727,0.01624371,0.00089729,-0.026189294,0.0074590584,0.016441599,0.018001463,-0.026756559,-0.0070246197,0.019259216,0.028877199,-0.0008030505,0.0060007083,0.009233911,-0.009823269,-0.016920922,-0.005970939,-0.041476868,0.010639492,0.04013319,0.045634303,-0.032394793,0.07904573,-0.04156783,0.013922911,0.0061556417,-0.011780262,-0.010889017,-0.017929545,-0.0070514753,0.009097139,0.016304266,0.0028147697,0.010042477,0.06027076,-0.026401633,0.042743545,-0.032550383,0.0029650936,0.04639516,0.0015758473,-0.021068899,-0.006823211,0.009509431,-0.042896945,-0.043668643,0.06572877,-0.05549607,-0.026654573,-0.0068522715,-0.010802533,0.033340167,0.006015717,0.03012001,0.023252085,-0.024034282,0.020888837,-0.00089825736,-0.021913981,0.02936081,0.000066926885,-0.033012442,0.06582347,0.019134171,0.002037035,-0.0071587544,0.015884316,-0.08636331,0.0379161,-0.018962953,0.0010328505,0.004582154,0.063105,-0.016745314,0.011845986,0.019409323,-0.015770309,0.03410025,0.011340895,-0.0041551003,0.013965882,-0.016994558,0.016855828,-0.058742855,0.023444451,-0.025564397,-0.035501156,-0.01165163,-0.009763961,-0.029503135,-0.019908143,-0.031840406,0.009976331,0.011894281,0.03940477,0.02668619,-0.0009222985,0.0067248344,0.016591841,-0.012722839,0.0021685371,0.038861282,0.055430077,0.010431193,0.008199451,0.009696356,-0.0090122735,-0.03255694,-0.039971482,-0.0035681196,0.055527102,-0.022071084,-0.0067532463,0.012839102,-0.013164682,-0.030816952,-0.035874087,0.0013886727,-0.046915114,-0.004672675,0.023626685,-0.0001552902,0.028783422,0.0057830894,-0.019687843,0.02723754,0.04349414,-0.013897962,0.015449082,0.046043023,0.040759515,-0.008230629,-0.0010139428,0.044409018,-0.0010756928,0.007058324,0.014673642,-0.023113381,0.011405023,0.049111135,0.0421606,0.012718737,0.011250241,0.012755377,0.00022977337,0.004227603,0.045405682,-0.0053503336,0.027592745,-0.020509178,0.02695786,-0.00089448516,0.06430076,0.020574307,-0.0093613835,0.028797304,0.01340029,0.0031356225,0.023293946,0.02633665,0.003500054,0.017764155,-0.0046351054,0.00026999242,0.049184863,0.0014845916,-0.035704214,-0.029436255,0.013795583,-0.01605235,0.026060246,0.008317209,0.02353394,-0.028777821,-0.016556779,0.043675106,0.036007844,-0.037003662,-0.021350678,-0.0032690412,0.036995724,-0.013386064,0.043920744,0.037634615,0.020730436,-0.0040754653,0.01318704,-0.044342984,0.0030533785,-0.008017049,-0.032150812,-0.06252571,-0.012336892,-0.041544992,0.021231567,0.02045501,-0.028440256,-0.0037695654,-0.009966483,0.0056474437,-0.01877114,0.0019986243,0.02282714,0.03356496,0.07851902,-0.060566522,0.010474439,0.015027472,0.05410592,-0.03677671,-0.033957254,-0.010590769,-0.039870948,0.004548016,0.027586637,-0.023528311,-0.0066989204,-0.05037252,-0.059428297,-0.012875783,-0.010214441,-0.004162712,0.03381243,-0.013667176,-0.000114940456,-0.007708661,0.0067963605,0.062358752,0.030827733,-0.0671924,0.029883813,-0.0022603627,-0.013521716,-0.05740918,0.021066356,0.009880931,0.0346177,-0.028362365,-0.025862528,0.014978831,-0.00540877,-0.029740628,-0.021687066,0.032833725,0.03430976,0.038252097,-0.096371114,0.03498669,0.00769757,-0.07291158,-0.048067424,-0.01841789,0.016055342,0.028279588,0.0020352532,-0.014869178,-0.055368006,-0.015374972,0.018280825,0.059020113,-0.036017302,0.009397668,0.06271609,-0.020254184,0.005831219,-0.0014257259,-0.026329126,-0.002962894,0.014382768,0.017757963,0.02624364,0.018909195,0.012033442,-0.020328462,-0.0011254511,-0.016166339,0.002512209,0.025126625,-0.04643284,0.0043839426,0.031556726,-0.0033672643,-0.02116679,-0.028754497,-0.03740486,0.03535363,0.0079705445,0.0027794766,-0.057941508,0.042861674,0.011302056,-0.05308276,0.0053482186,-0.010157767,-0.012230071,0.021261662,0.016507553,0.021006135,-0.034294177,0.006631114,-0.005545658,0.042490218,0.051313013,0.050658267,-0.007860707,-0.04540069,-0.016800867,0.0060059214,0.002054693,-0.0423545,-0.025199471,0.0037787324,-0.014829786,-0.014299239,-0.019335197,0.038725764,0.020100797,0.0025308812,0.022632051,0.041015502,-0.011803245,0.014636007,0.03293356,0.008842084,-0.022908747,-0.018299695,0.036328916,-0.0075625596,-0.0017709113,-0.04698632,0.014823383,-0.0052495976,0.05802516,0.013377369,-0.0015421116,-0.04962184,0.020161012,0.036366712,0.03761225,-0.026116988,-0.0127450265,-0.015344677,-0.0028561838,-0.009413859,-0.03734049,0.020539498,-0.07401983,0.054930545,0.031083912,0.0018904957,-0.028559001,0.008877529,-0.022542614,-0.004157516,0.013190477,0.015795639,-0.016104264,0.018419288,-0.025879819,0.04124656,0.017457817,0.008938463,-0.01635487,0.00036088063,0.0038850112,0.05241253,0.035033114,-0.053478163,-0.042797808,0.014719335,-0.05608897,0.004116483,-0.03189737,0.007499887,-0.026619896,0.021011507,-0.0109211365,0.028421508,-0.029077247,-0.015023175,-0.017623855,0.038228344,-0.011628307,-0.013236453,0.03432301,-0.009870059,-0.014551397,0.021458065,0.0020217784,0.013870393,-0.016994245,0.007993896,-0.027147098,0.006188152,-0.016464166,0.0017567503,0.003752554,-0.0035409457,-0.036619823,-0.004799894,0.011795927,0.00439465,-0.03245746,-0.035609066,-0.040818844,-0.03022454,0.015023627,-0.013293281,-0.013545754,0.04064237,0.016167577,0.018334853,-0.046092603,0.01180174,-0.028727617,-0.00012115521,-0.00643888,0.013994115,0.028409855,0.05147854,-0.0214145,-0.0019328927,0.010575402,-0.009429211,-0.01007783,-0.079798944,-0.01132986,0.032862965,0.0033284584,0.030949954,0.0128678605,-0.000048445123,-0.023316616,0.042229056,0.037146978,-0.03438469,0.040937472,0.017576654,0.040603586,0.020634161,-0.05915617,-0.007883795,0.04488191,-0.012119575,0.056453813,-0.013981057,-0.023395441,-0.05572254,-0.05087036,-0.0063059847,-0.047916524,-0.06483056,-0.02492123,-0.027455783,-0.030155297,0.007256487,-0.009628384,-0.037227884,0.03601792,-0.058193948,-0.0007209846,-0.009099955,-0.008856128,0.00023162526,-0.051429763,-0.013031566,0.043823265,-0.0014617394,0.056419246,-0.007657531,-0.04287273,0.006267983,0.027623784,-0.033145785,0.0066153537,0.010296087,-0.014206656,0.05535696,0.024318831,-0.0038733731,0.045802813,-0.063499376,-0.013760405,-0.0279009,-0.026737887,-0.02082487,0.007539621,0.01721822,-0.01798557,0.01499058,-0.04660114,0.06805334,0.05254638,0.01305382,-0.03482597,-0.021648634,-0.077220276,-0.011695871,0.018195126,0.00040518946,0.031787734,-0.0
+8000
+18722124,0.007353012,0.055779867,-0.011899314,0.017277947,0.06252075,-0.027728224,-0.038768053,-0.04022053,0.026490893,-0.0071421983,-0.048526037,0.0051596025,-0.04678983,-0.05242758,0.037440017,-0.05378474,-0.047134425,-0.044437937,0.017136414,0.06445327,-0.014152337,0.039788138,-0.023113187,-0.019300185,-0.05890375,0.018718662,0.04410108,-0.027117746,0.024243675,-0.010030887,0.0058350535,0.02438738,-0.0016268147,-0.008283743,0.0036754552,0.052421313,-0.011524551,-0.02775858,0.068414345,0.048175517,-0.042660538,-0.070571,0.038063645,-0.009219318,-0.036645632,-0.03485883,0.01570152,-0.031054627,-0.0072999513,-0.06311365,-0.0045163045,0.03740539,0.025186773,0.01782069,0.0412881,-0.006465462,0.007938315,0.01334553,-0.031820476,0.008609175,-0.05355258,0.005200565,0.021317227,0.0024848683,-0.0005742041,0.000443415,0.020726012,0.04974512,-0.0045727924,0.05439903,-0.018559074,-0.03067275,0.044494078,-0.03170282,-0.029950852,0.023840245,-0.0043992265,-0.04275547,0.008767193,-0.028211785,-0.011052288,-0.005505934,-0.013041331,-0.0013689119,-0.022516139,-0.006986172,-0.059473325,-0.03103684,-0.021277392,-0.021748377,0.010305109,0.013041314,0.012208614,0.016513342,0.002899816,0.06882586,-0.03393775,0.04053841,-0.024010973,0.08228074,-0.047708444,-0.042403273,-0.055666104,0.017776998,-0.042845987,-0.0022605036,-0.0379099,0.045890868,-0.017140806,0.017147781,0.028160831,0.003679363,-0.047284383,-0.0071187685,0.044321436,0.020797508,-0.011625276,0.049856156,0.05146516,-0.012585313,-0.04514964,0.0006483385,-0.015590365,-0.044640347,0.0032004328,-0.018324852,-0.040360473,-0.01505104,-0.059136465,-0.03693244,-0.060413774,-0.018202636,-0.018328518,-0.005128614,-0.010270877,-0.040601313,0.020729434,0.012234371,0.03431094,0.01889438,-0.0038548848,0.030455658,0.0107890265,0.0063458476,0.040924355,-0.016697878,0.04291696,-0.010921996,-0.029159179,0.027516292,0.0082261525,0.0054252525,-0.037215464,-0.059992816,-0.034646116,0.0049164947,-0.01660202,0.0487523,0.041602917,-0.059801772,0.027105263,-0.04267189,-0.016515547,-0.005808822,-0.095932394,-0.021284482,0.027918909,-0.018496845,0.022043755,0.0010256561,-0.059801582,-0.020276565,-0.0023649207,0.020107096,-0.027189562,0.027356133,0.01692525,0.0059143994,-0.029473498,0.037798394,0.008714922,-0.0043134945,-0.008034712,-0.017912136,0.010214039,0.015126944,0.020037211,-0.0037124127,-0.04565246,0.025400149,-0.056008548,-0.036973655,-0.0005611392,0.025163502,-0.0036940358,0.036011185,-0.03181531,0.01624494,0.010790749,-0.0013177767,0.013479448,-0.00016360315,-0.027985433,0.028799953,0.048248354,0.009602913,0.0119711375,-0.015323165,0.03474782,-0.029301213,-0.042734556,-0.035005983,0.020538688,0.033524085,0.0082981,-0.016965095,0.048056528,-0.016116887,0.030325515,0.0021162606,-0.011233761,0.0026206193,-0.051358312,0.0019504733,-0.009281065,0.0013345039,-0.014622236,-0.06370482,-0.011300557,-0.054647077,-0.019621337,-0.013376094,0.0040773232,0.028165337,-0.0013239018,-0.0054428303,-0.044388313,-0.01046337,-0.0033231485,0.035614114,0.0034254403,0.036658414,0.02816184,0.04433975,0.03432439,0.034615163,0.0021734922,-0.028067144,-0.00027770072,-0.015508141,-0.011791369,-0.018735494,-0.0151255885,-0.027740097,-0.053389955,0.035981346,-0.038279545,-0.028498441,0.03474051,-0.006749981,-0.00072922924,-0.046097167,0.021484086,-0.031145463,0.004810363,0.03871846,0.0064144908,0.011050102,-0.017492568,0.013009733,0.046482045,-0.0015272348,0.010365565,-0.028453808,0.04780514,0.010492691,-0.022960821,-0.014176581,0.033476472,0.029096778,-0.04100144,-0.017168825,-0.030334307,0.01373341,0.00017830661,-0.010443717,0.010137865,0.059432734,0.0053916373,-0.023380518,-0.013188522,0.009787379,0.004456014,-0.004249654,0.018829498,-0.009232829,0.021951556,-0.0030813334,-0.007818714,0.000077585646,0.031906284,-0.05757513,0.05420535,-0.02318037,-0.05154861,-0.017312128,-0.04756488,-0.007956914,-0.003651047,-0.0009884414,-0.051669344,0.0027002494,0.0400523,-0.0022897606,0.036557008,-0.011842073,-0.008647266,0.04650496,0.033899482,-0.015878404,0.079446524,0.027481312,-0.023636878,0.04544434,-0.021436293,0.060426865,0.0015350136,-0.011389246,-0.04945804,0.038547225,-0.039618958,-0.020329231,-0.0047232127,0.0495917,0.04113413,-0.028856186,-0.06397652,-0.00721748,-0.020498827,-0.014468051,-0.036413264,0.071613036,0.001531302,0.020683916,-0.014187747,-0.050191525,0.24404241,0.060239635,0.029825486,0.031317554,0.009410986,0.047295358,0.008553907,-0.035249036,0.00060464564,0.002492086,0.010588637,-0.02501102,-0.008475078,0.056918044,0.019777866,0.07910584,-0.031152492,0.008603229,-0.04733459,-0.044604506,-0.036421563,0.028986126,0.0063742534,0.019966524,-0.0038181057,0.029803714,0.061675668,-0.007855548,0.023916334,-0.022641279,0.015425892,-0.0322908,0.024358174,-0.012073062,-0.016569184,0.07702347,-0.007846779,-0.03426611,0.027291913,-0.018172767,-0.04851814,0.030356705,0.03287788,0.011835813,0.005672552,0.015116779,-0.008201087,0.04129686,-0.0135057,-0.004763162,0.06367396,0.02483831,0.07105625,-0.054010585,-0.018049343,0.0031035321,-0.005778964,-0.012202424,0.012411702,0.033788256,-0.0064139557,-0.0072277226,-0.0038360218,0.018060682,-0.050421733,0.031167813,0.052034426,0.038344014,-0.026131766,-0.025806403,0.004276326,-0.027147887,-0.026134409,0.018810293,-0.010010879,-0.0040079663,-0.0062325145,0.027957603,0.012612798,-0.023456465,-0.0105190445,-0.00668574,0.015532853,0.0031667529,-0.015337882,0.01988465,-0.0078183245,-0.006275882,-0.059088003,0.05943771,0.020165835,0.0064678947,-0.025226748,-0.0521426,0.007963329],[0.024567064,0.027944937,0.023746353,0.020243833,-0.02041415,-0.05280445,0.046525523,0.0015899048,0.0058068684,0.022087732,0.03642847,-0.043774612,-0.010762965,0.016976053,-0.021260219,-0.054186735,-0.032766346,-0.015242233,-0.052124433,0.023928469,0.00610922,0.031009287,-0.095503755,0.01490497,-0.0155436,0.05151751,-0.016110161,0.021047972,0.04074212,0.06748135,-0.022944378,0.015282729,0.04650853,-0.021552796,-0.031922873,-0.029131047,0.023750395,-0.017322859,0.013143958,-0.03894727,0.0195839,-0.032523688,0.024109175,-0.007629045,-0.03178719,-0.020014765,-0.011038334,-0.035505418,-0.005204951,-0.043055814,0.04431834,-0.004711273,0.016897902,-0.014668773,0.02571824,-0.033428453,-0.020700656,0.025995946,-0.02902934,0.0039083287,0.025431454,0.03471557,-0.027498068,-0.069358155,0.0061118216,-0.014837316,-0.013560683,-0.029340222,0.03302694,0.0004933205,0.008415954,0.011668366,0.0010256864,-0.026629673,-0.044749685,-0.00925926,0.025706513,0.042068213,-0.024846882,0.055911023,-0.02021963,-0.004745548,-0.0137632955,-0.005218469,-0.019218227,-0.018608343,0.011778406,0.05740477,-0.009349866,-0.03472581,0.026574627,0.034019575,-0.044280432,-0.008218436,0.04779796,0.0040248255,-0.010483374,-0.0060739433,-0.021015333,0.017732063,0.04146128,0.014504866,-0.019185042,0.081080765,-0.048336037,-0.009374556,-0.01728008,-0.02051368,-0.020519936,-0.014347715,-0.0042228857,0.030916637,0.027438011,0.021357205,-0.025441505,0.02256283,-0.0146739865,0.06701064,-0.024007484,-0.003893691,0.023866704,0.021518957,0.005524448,0.0006021413,-0.0011845357,-0.06251918,-0.030323712,0.052918833,-0.030319363,0.017020026,-0.026424816,-0.03236663,0.026229851,0.014643253,0.037925616,0.017094761,0.015277116,-0.0016260647,0.036807835,-0.019526083,0.040248293,0.012872192,-0.024826473,0.053018417,0.00253955,0.005129192,-0.015425755,0.02320217,-0.07152401,0.06910202,-0.028665978,0.007383359,-0.004057111,0.022159211,0.00070782,-0.006776394,0.009196332,-0.0087463055,0.026051654,0.03016026,-0.039688773,0.029535526,0.004504986,0.023825034,-0.034123868,0.03610053,-0.013721596,-0.0492595,-0.071212165,0.008797442,-0.026837746,0.005324868,0.00871535,0.033345487,0.027465012,0.06352339,-0.01918755,0.008958827,0.021947686,0.009619242,0.008462734,0.007072281,0.015738957,0.06895403,0.008445737,-0.0029718557,-0.021891976,-0.0061633014,-0.0008868048,-0.04456289,-0.020017646,0.040058743,-0.03839393,-0.010441236,0.019027995,-0.0040044896,-0.034689408,-0.033597384,0.0014306514,-0.054464143,-0.020202333,0.024500841,0.000083546845,0.039487943,-0.024529388,-0.025928486,0.037447512,0.06098514,0.0043703113,-0.014602502,0.044326507,0.016684026,0.010382846,-0.010299407,0.037665576,0.025881901,-0.03486165,0.057995077,-0.07218809,-0.016367702,0.03633517,0.0043330374,0.0014212846,0.021450723,0.029869676,-0.016481467,-0.014372593,0.038131945,-0.021864168,0.00062976434,0.00265982,0.023624154,-0.005787912,0.05183215,0.023177896,0.014779149,0.04232026,0.002956689,-0.002087392,-0.025441093,0.014683549,0.030916493,0.045048628,0.03912916,-0.0055492637,0.04887869,-0.00004037022,0.014528261,0.035803825,0.01843079,-0.0014730749,0.028045878,0.0061545875,0.05343312,-0.019301675,-0.006747082,0.02249936,0.07576989,0.0052607604,-0.026990287,-0.040341016,0.01424896,-0.0030437524,0.025149252,0.032290414,-0.0017329266,0.01697103,0.056751903,-0.046708576,-0.023754522,-0.027481329,-0.029149495,-0.04510653,-0.009217029,-0.054374438,0.015069665,0.012290487,-0.004090119,0.02625769,0.006175999,-0.0010125979,-0.03753383,-0.01665214,0.0009685834,-0.0033891636,0.07034379,-0.0019444033,0.023986198,0.01274691,0.024206582,-0.005474447,-0.012452792,-0.005080363,-0.039512943,0.0014651642,0.011263906,-0.006042257,0.010718383,-0.053216454,-0.03462852,-0.026649944,-0.014353409,-0.0013032111,0.004915446,0.017157638,0.025142217,-0.01923469,-0.0126399435,0.046109095,0.062143095,-0.06961345,0.051726874,0.017412446,0.019945169,-0.036515616,0.017220816,0.033222888,0.033911657,-0.011573575,-0.003854886,0.0028056367,-0.016020784,-0.035921462,-0.04952294,0.008657013,0.010757507,0.017546134,-0.08239331,0.015428038,-0.0195231,-0.08152591,-0.016992506,-0.009823393,0.02236834,-0.011510348,0.010517199,-0.02446972,-0.041501038,-0.039475102,-0.0008920645,0.07402024,-0.04209114,0.011599887,0.040340867,-0.022487868,0.01733583,-0.012339236,0.0061623594,-0.015081671,-0.01285126,-0.013813991,0.04841492,0.019013627,0.041852884,0.0062924065,-0.013071846,0.003917523,0.008657947,0.037813522,-0.015203873,-0.01617529,0.037635982,0.008796425,-0.04381519,-0.02261202,-0.047054153,0.026630139,-0.0036893145,0.029889619,-0.07446051,0.04700574,0.011516432,-0.05648923,-0.002671199,-0.01578449,0.0036428093,0.038275417,-0.0076988908,0.016065227,-0.009830115,0.032903813,-0.023484051,0.025261672,0.039798025,0.02784619,-0.010107299,-0.014450119,-0.013462811,-0.00109321,0.015388859,-0.095457956,-0.010404036,0.045908008,-0.016850457,0.007449855,-0.04938261,0.016554402,-0.017614217,0.0024635827,-0.002359918,0.029026719,-0.0011689025,0.0041181394,0.042888287,0.00570459,0.019416675,-0.024208209,0.020670585,-0.012250994,0.016463254,-0.042481314,-0.002168003,-0.024602372,0.018777315,0.024979508,-0.007810539,-0.033203047,0.0054843817,0.009286038,-0.0014266553,-0.05608527,-0.014675968,-0.020571066,0.00589833,0.009424278,-0.034067977,0.020820994,-0.04485882,0.04973114,-0.0012895863,0.008962014,-0.02666019,0.018919608,-0.026563816,-0.03770695,0.03015953,0.019000325,-0.031295512,0.0064395224,-0.017770624,0.027244886,0.03474102,-0.020198701,-0.015667496,0.00061028113,0.03481659,0.014575848,0.0018769279,-0.024166813,-0.05513926,0.04411902,-0.0680814,-0.031845883,-0.012113462,0.016978161,-0.009522872,-0.024878524,0.006619504,0.037431367,-0.00019548307,0.010338415,-0.03528406,0.047141664,-0.012796316,-0.008686335,0.05597863,0.019018922,-0.04387523,0.029720426,-0.019708395,0.025873838,0.0011363488,0.02354229,-0.036870077,-0.0049632764,0.007676554,0.015090025,-0.0010133621,0.022616722,-0.04347258,-0.02400655,0.009994591,-0.015233556,-0.01282365,-0.013854402,-0.07932329,-0.016212873,0.029993957,-0.02676818,-0.030245138,0.045171276,0.022739384,0.017700884,-0.08300076,-0.0019861758,-0.017003978,-0.022621064,0.0072147343,0.003861027,0.057419818,0.04745406,-0.0044684536,-0.012731736,0.025136549,0.0053749066,-0.009256941,-0.051672634,-0.012899159,-0.057175018,0.02229986,-0.0003962414,0.02166043,0.011426531,-0.051537022,0.05826711,0.021044452,-0.018023027,0.009589224,-0.030792164,-0.008960249,0.025837686,-0.01655069,-0.027481183,0.031685796,-0.010935129,0.026383862,-0.020978723,-0.017549014,-0.068406194,-0.027812853,0.019267155,-0.02286517,-0.047492515,-0.028639471,-0.017889021,-0.0004946871,0.018889021,-0.020465769,-0.004546787,0.02646508,-0.008246297,0.013980464,-0.025728697,0.009829615,-0.041079618,-0.06142988,0.005322655,0.079896055,0.013192024,0.046559304,-0.043144234,-0.030483283,-0.017032964,0.028143419,-0.011563673,-0.031125803,0.020563759,-0.028381875,0.03284902,0.03883781,-0.040168215,0.055765778,-0.011425029,-0.040109146,-0.042547014,-0.0038530861,-0.027164178,0.0058157113,0.02063783,-0.012764075,0.011888318,-0.04041551,0.06767842,0.04692131,0.016059611,-0.038283177,-0.056311693,-0.028653637,-0.022388441,0.044830974,0.0036383627,0.037868112,-0.024890792,-0.015429496,0.027352897,-0.0278332,0.02637073,0.06135475,-0.02496778,-0.009795442,-0.027690323,0.022856932,0.01238952,-0.051150206,-0.001166991,-0.03163004,-0.025626473,0.0048107402,-0.024140144,-0.057872918,-0.041736487,0.020054756,0.07041323,-0.015777363,0.049760528,-0.024840163,-0.032410417,-0.028683063,0.043601327,0.026368998,-0.011134346,0.024047108,0.0049666543,0.0011210497,0.016558297,-0.0047232807,-0.0058124913,0.012864348,0.048343938,0.0023145818,-0.043394044,0.03366553,0.052260716,-0.04485039,-0.053347178,0.02820447,-0.006710945,-0.024035756,-0.037858002,0.023597343,-0.0000142989065,-0.032567423,-0.0066527757,0.008051252,0.006877421,0.030651925,0.005937501,0.018015662,-0.020258322,0.017654117,0.035278145,-0.013847997,0.026346441,-0.03948642,0.014822602,0.0069482736,0.03562484,0.030591955,0.00430018,-0.027447537,0.033128362,-0.0026047914,0.03889351,-0.023776013,-0.041875366,0.036932673,0.0038873837,-0.03716212,-0.016624749,0.0010045043,-0.011189663,-0.00137708,-0.031410057,0.00152603,0.021396806,0.008394124,-0.0044938093,-0.032799315,-0.033039413,-0.020631198,-0.042299174,-0.02367665,-0.010049704,-0.0010339852,0.04485881,0.024272613,0.006348416,-0.01230986,0.06855918,-0.046567556,0.045965403,-0.016362434,0.06860946,-0.04444916,-0.056792036,-0.028178602,0.047793124,-0.06682163,0.007833826,-0.029527672,0.009479652,0.00009525025,0.030681735,0.019858783,0.011377993,-0.041312303,-0.014670954,0.008223875,-0.010817483,-0.013798382,0.032868814,0.06507222,-0.001255749,-0.026517695,0.0031634206,-0.0058420873,-0.04051459,0.01926194,-0.018397385,-0.020245306,-0.029089527,-0.015749093,-0.02684889,-0.053408425,-0.011721831,-0.007397652,0.0012653633,-0.019998321,-0.025445214,0.03516536,0.028806487,0.032053854,0.023416646,-0.013884344,0.03153363,0.014228771,0.0037370732,-0.00592129,0.0130509185,0.027335737,-0.019702164,-0.030938333,0.04209023,-0.0073865904,0.00009538952,-0.037721645,-0.03036447,-0.065063484,0.04348999,0.018404838,0.04353255,0.0057709413,-0.028522242,0.034329176,-0.018973332,-0.033243723,-0.014588543,-0.07670221,-0.012670328,-0.013794366,-0.01283124,-0.029292634,-0.023261685,-0.033292476,-0.022451676,-0.030758006,-0.02863038,0.012065099,0.04220653,-0.0031995198,0.033844035,-0.036894042,0.032544833,-0.0074805785,-0.0054962244,-0.0037066387,-0.041734494,0.023525402,0.016428128,0.040856022,0.015930878,-0.047441125,0.0094998805,-0.057468593,-0.0068468987,-0.016699312,-0.004998631,-0.0035995494,0.022162817,-0.023850815,0.029152542,-0.017914493,-0.0011323523,0.011513018,-0.0044770828,-0.00028279913,0.018310456,0.046976645,0.01993671,0.0029395989,0.0031590678,0.026034465,0.008189712,-0.044066858,-0.034869947,0.046207834,0.024727505,0.024265783,-0.035053037,0.049981974,-0.017409269,0.021737317,0.0043289703,0.037085917,-0.017875256,-0.01214725,-0.011140488,-0.023462815,0.012149675,-0.014398194,-0.027439745,-0.018004734,-0.06935841,-0.020608313,0.0038956972,-0.009984937,0.031818382,0.022242727,-0.030402547,-0.014910029,0.021169776,-0.0245431,0.057832222,0.030780358,0.037835527,0.030140867,0.03639134,-0.007288666,0.008056346,0.002882672,0.019065619,0.018865973,-0.03535528,-0.023432419,0.0077401223,-0.009046937,-0.03934311,-0.06537961,0.04692983,-0.0477159,-0.014079498,-0.0043775113,0.006093883,-0.011789424,-0.05240353,0.00786013,-0.01019621,-0.002472356,-0.0032793777,-0.009243954,-0.030279528,0.012187798,0.008803499,-0.007220958,-0.0015530307,0.00908554,0.015606352,0.058339514,0.013839645,-0.0039363108,-0.012131195,0.016548643,-0.00047911226,-0.010705406,0.012238464,-0.039239857,-0.014400221,0.010787376,0.006996186,0.012033864,0.063486636,0.004530429,-0.048010062,-0.020994749,0.020490441,-0.011190527,0.03709133,0.016245913,-0.002081406,-0.010343726,-0.0372559,0.008560927,-0.022343395,0.05594423,-0.03804174,0.02422346,-0.047863062,-0.060032662,-0.03283182,-0.026795615,0.020633237,0.018823912,-0.003633619,-0.05048274,0.023070075,0.050408784,0.009968115,0.015347549,-0.019970575,-0.021814698,0.04004898,0.022550989,0.021472553,0.087193586,0.003122698,0.0041205403,0.012851423,-0.0340042,0.031606544,-0.002584128,-0.009272316,-0.040931433,0.04185364,-0.041295964,-0.06125986,0.026875079,0.06291387,0.054742675,-0.04482,-0.07808431,-0.0012689284,-0.033553984,-0.027487727,-0.005654034,0.05347766,-0.005592493,-0.0007095037,0.00897361,-0.06027696,0.2711684,0.0371185,0.029842585,0.045650043,-0.006516645,0.0124280965,-0.005485311,-0.01730689,-0.016304981,-0.018512677,0.06252041,-0.012772005,-0.018853871,0.020629762,-0.0015790148,0.077546984,-0.027268855,-0.009458522,-0.0035871104,-0.030428,-0.033074684,0.010943351,0.03556168,0.03456435,0.0052983835,0.011042249,0.028824788,-0.01588231,-0.02152437,0.017343417,0.022827674,-0.02864814,0.0012772066,-0.020647772,-0.021646917,0.0457052,0.0008360887,-0.01747906,0.034161065,-0.019189496,-0.02522785,0.01173864,0.025851272,-0.00041872662,0.004839086,0.029455675,-0.0043437225,0.034726348,-0.009307827,-0.005305419,0.012903333,-0.0005296687,0.036885265,-0.03316628,-0.030163009,-0.019556219,0.00031730768,-0.007506914,-0.0017322843,0.048740078,-0.013259264,-0.014359828,0.028395245,0.013895601,-0.024895636,0.033746343,0.03413002,0.018907938,-0.057926394,-0.012587718,-0.007523154,-0.025144774,-0.03812346,0.0036023413,-0.031559765,-0.008680013,-0.02040105,0.01423092,0.019023828,-0.04938527,-0.021469085,0.0013352071,-0.013130379,-0.009002112,-0.015476855,0.031524103,0.0050186464,-0.014606548,-0.053003047,0.05718279,0.019366203,-0.0056285146,-0.017001672,-0.048309214,0.010959403],[0.039994135,0.008135997,-0.00031703428,0.0316558,-0.0085187135,-0.03848544,0.058772985,-0.014713997,0.0014564369,0.027902305,0.013171502,-0.03734781,-0.018017283,-0.0065258257,-0.033343963,-0.04230658,-0.0327179,0.0076262923,-0.04352689,-0.014505467,0.015633376,0.018408962,-0.07519313,-0.010088434,0.02205927,0.05340999,0.011215799,0.0046353806,0.054257646,0.05967798,-0.021474786,-0.0005222036,0.014957781,-0.05101039,-0.010166613,-0.014804139,0.027140638,-0.014312339,-0.0039954213,-0.008565809,-0.026295258,-0.02768397,0.015701987,-0.0069969087,-0.05002101,-0.021339042,-0.053206086,0.008001732,0.0076176785,-0.028943444,0.018457448,-0.040855512,0.043676715,-0.0034371745,0.02649066,-0.02355771,-0.045558903,0.0101510435,-0.0099106515,-0.0075033307,0.011397579,0.02665757,0.02278907,-0.06807831,0.009177032,-0.020900933,0.008396454,-0.017128607,0.0303994,-0.02161475,0.02117821,0.017690841,-0.009466459,0.00049820595,-0.041361425,0.009495064,0.01642512,0.02262678,-0.03086479,0.033716504,-0.02777758,-0.023619154,0.032990254,0.038337823,-0.045290727,0.003433634,0.035539333,0.03908917,0.0060652243,-0.037953455,0.016380554,0.026908442,0.003912308,-0.007244723,0.019173395,-0.007925363,-0.030100824,-0.0057867686,-0.020132639,0.018508516,0.023106849,0.030539451,-0.0026962366,0.03905628,-0.040706735,0.013712601,-0.029946378,-0.015352074,0.009494163,0.0012353283,-0.03406163,0.01933078,-0.027617048,-0.002744346,-0.008315979,-0.0020254334,-0.021790344,0.050658476,-0.01901948,-0.005212421,0.028813774,0.003307647,0.030253733,0.022268906,0.009944186,-0.05797491,-0.047282737,0.08046012,-0.05053152,0.0041796574,-0.021376543,-0.013640146,0.031918313,0.015848946,0.051770326,0.027995313,0.034789328,0.05254331,0.036835186,-0.027445931,0.07125653,-0.006852779,-0.022004837,0.058788437,-0.01956727,0.017765516,0.0041512344,0.03045299,-0.053981114,0.045743182,-0.028566599,-0.006784134,0.015469911,0.032194052,-0.010699443,0.0075768298,0.0042782794,-0.017729202,0.0040716487,0.0034769569,0.0022989975,-0.00023045561,-0.0048562526,0.021485573,-0.021797702,0.03558089,-0.0213259,-0.024950387,-0.043631196,-0.008084561,0.0014564986,-0.016661378,-0.008560206,0.01675926,0.030091098,0.06489761,0.00819548,0.026683988,0.024714656,-0.0077319043,-0.008506842,0.01589632,0.009660125,0.0749093,0.02924081,0.022191534,0.032496195,0.0006002775,-0.03711742,-0.010593593,-0.0060009174,0.026768016,-0.043787226,-0.022894407,-0.0031684323,-0.022638066,-0.03513691,0.00050650677,-0.014062079,-0.05971621,-0.028339218,0.052146368,-0.027655886,0.027141456,-0.007871218,-0.026422022,0.026496306,0.048343353,-0.030441586,0.008754061,0.053364806,0.0049853525,-0.005139415,0.018325634,0.026698258,0.014139508,-0.047002673,0.05259052,-0.024115412,-0.0140904365,0.028833002,0.023410914,-0.032132797,0.013984791,0.018466387,0.03714415,0.015738668,0.017379906,-0.01728369,0.022818204,-0.009824251,0.043288883,0.009043605,0.035973057,0.01106494,0.035475787,0.041192427,0.000373504,0.00011650636,-0.02525921,-0.0020284383,0.0056021563,0.038417246,0.024024535,0.017424112,0.020521777,0.019914761,-0.024833819,-0.0053644497,0.027172249,-0.0072825286,0.041679725,0.0023171166,0.009814966,-0.0854962,-0.006219534,0.011856285,0.04469642,-0.02249369,-0.026151551,-0.019188816,0.051124603,-0.010096097,0.008930794,0.049388647,0.0066625625,-0.008929662,0.019505162,-0.03575108,-0.042387184,0.0066332226,-0.031248245,-0.048780445,-0.0033610722,-0.08394463,0.020965623,0.012887194,-0.031031845,0.036365725,-0.004329459,0.012668961,-0.050069034,0.018612599,0.009991469,0.0085136555,0.060943555,-0.044638276,0.02310112,0.010758551,0.03281143,-0.015480997,-0.018626578,-0.00978127,-0.037339494,0.010516906,0.031240607,-0.021507565,-0.003073425,-0.0031209302,-0.037987143,-0.010409203,-0.024801308,-0.01577927,0.028059447,-0.011746129,-0.005416976,-0.010652655,-0.01357734,0.06919622,0.055142816,-0.097006805,0.01659643,-0.021278588,0.010443936,-0.031548552,0.03349849,0.048071563,0.01575843,-0.030170646,0.028205894,0.022288887,-0.010575923,-0.034938328,0.0040142257,0.014432447,0.023748983,0.0136828115,-0.05421876,0.03703215,0.010467556,-0.059956018,-0.08193335,-0.014103216,-0.010379745,-0.012811203,0.0017654599,-0.0044714487,-0.03663156,-0.011113226,0.016762575,0.04768094,-0.038583286,0.00093345344,0.04915724,-0.014484283,-0.014911985,-0.011768436,-0.028114963,-0.026162053,-0.000035953613,0.037880313,0.033053953,-0.014513099,0.029956583,-0.017667487,-0.002904548,-0.02097182,0.010465388,0.040526163,-0.024865495,0.0056967246,0.022943985,0.0038129494,-0.045236524,-0.038192034,-0.057590447,0.028234623,0.03179462,-0.008506195,-0.03669677,0.05908892,0.022211976,-0.048513945,-0.0151368445,-0.025086202,0.035344366,0.032193534,0.00097135606,0.031678744,-0.03272485,0.02246654,-0.0054884558,0.0076567805,0.031187063,0.038452234,0.016107997,-0.006650337,-0.006615393,0.01874303,0.007301494,-0.053249396,-0.030636527,0.02464452,-0.00066038023,0.0076169083,-0.043221753,0.026068196,0.022976208,-0.012697704,0.04047553,0.039825276,0.0017289633,0.024938906,0.04124173,0.02795375,-0.0012195416,-0.013827955,0.05285682,-0.009823574,0.030020045,-0.030068552,-0.010524324,-0.0030333467,0.013632726,-0.0112700565,-0.0063831396,-0.00027358203,-0.004135452,0.029168291,0.025222572,-0.057190783,0.011715556,-0.032188293,0.0091403425,-0.023105862,-0.031355746,0.02888014,-0.06699387,0.041727252,0.03961803,0.009925615,-0.04534261,0.0066066636,-0.025974104,-0.012136308,0.030064097,-0.0053112176,0.015647141,0.037255883,-0.012457455,0.024389744,0.004718748,-0.015699636,-0.0061897547,0.023358624,0.0073445593,0.033170376,0.043527495,-0.048836473,-0.056394108,0.015894985,-0.053316865,-0.022311596,-0.0072578634,-0.03809189,0.014866656,0.01333205,0.012886475,0.0055480683,-0.01884384,-0.0067845862,-0.039429393,0.022994807,-0.0015469855,-0.010889566,0.04864723,0.047075525,-0.014902768,0.027978636,-0.009876813,0.032484207,-0.025145262,0.008098846,-0.053584427,-0.00053271186,-0.021806741,0.004614122,-0.04021706,0.0031218594,0.0011689677,-0.03121875,0.022170583,-0.04083018,-0.0128170615,-0.043589298,-0.05125347,-0.012960099,0.044333164,-0.021461291,0.011822739,0.009548419,0.019788206,0.029870246,-0.04891636,0.020722305,-0.038694438,-0.019552138,0.012214362,0.033709496,0.02246099,0.01890223,-0.0040319986,-0.015881095,0.0062203677,-0.009801276,0.012982572,-0.05000106,-0.011104516,-0.013292303,0.0052068913,-0.017061524,0.023810972,0.0009268194,-0.031585936,0.068679094,0.045166884,-0.04292426,0.03172847,-0.03943968,0.012006321,0.019510766,-0.039586935,-0.008954197,0.041396156,0.006435993,0.02214315,-0.032407902,-0.042535804,-0.0672977,-0.040772352,-0.0047600763,-0.05422982,-0.04729473,-0.035364553,-0.025936006,-0.021379398,-0.005308099,0.015988102,-0.021488974,0.01025313,-0.05950977,0.021914471,-0.0026326783,-0.0006129191,-0.0093842205,-0.05251337,-0.031572565,0.04343135,-0.0124545535,0.06278508,-0.020887924,-0.026607906,0.0026243755,0.037159793,-0.004129077,0.016427048,0.009652735,-0.0016091149,0.021443367,0.017542677,-0.03018098,0.044143107,-0.054052837,-0.031275533,-0.042076312,0.004474932,-0.0542433,-0.030446725,0.021726647,-0.03419699,0.005247552,-0.048158154,0.05417677,0.036723834,0.021916727,-0.021403218,-0.06954193,-0.02945759,-0.02080303,0.032199126,-0.027476761,0.013443571,-0.04772076,-0.0109806135,0.042395532,-0.020528499,0.03179693,0.04079971,-0.033428866,0.0025393583,-0.030606164,0.028390137,0.0035749923,-0.042349152,-0.02474107,-0.008576168,-0.055919554,-0.0065449574,-0.038840886,-0.05003298,-0.050221533,0.0049341978,0.06578501,-0.028237442,0.0425622,-0.006495529,-0.024856402,-0.041080188,0.06323039,0.048088234,0.032346733,0.021736657,0.016821772,-0.00036787605,0.014881817,-0.0048601734,-0.002923274,0.01204767,0.0048745093,0.020042468,-0.011471572,0.050459072,0.034204222,-0.055679336,-0.03652074,0.03607364,-0.03416072,-0.048512746,-0.010370337,0.001506478,0.012702469,-0.01752573,-0.025336277,0.00855619,0.034627404,0.015891025,0.0033413067,0.04255137,-0.01992715,0.0021047227,0.038402308,-0.021497585,0.022656176,-0.02517831,0.019830655,0.0074466662,0.014816319,0.034130927,-0.014661172,-0.00971215,0.0447031,-0.031603117,0.0376241,-0.0033471507,-0.022718817,0.04921889,-0.019019138,-0.040242773,0.0010457858,-0.010607966,-0.0124174105,0.021664236,-0.018893575,-0.0058086156,-0.0092066275,0.01750734,-0.0032067734,-0.023977919,-0.02988652,-0.04272173,-0.0437267,-0.016491985,-0.028865186,0.02149887,0.021995513,0.022826795,-0.03517847,-0.036876787,0.06252423,-0.014161742,0.045084767,-0.0052149543,0.059914522,-0.057029646,-0.026694342,-0.036516774,0.03570566,-0.086268574,0.014476978,-0.033635918,0.028088776,-0.026663302,0.022787029,0.026079705,-0.0037967782,-0.033619594,0.0022279588,0.009534842,0.023799011,0.014838033,0.04234575,0.041086778,0.0146922935,-0.022470934,-0.033118535,-0.012771157,-0.031146709,0.032490637,0.009273465,-0.024460899,-0.024546739,-0.026846703,-0.03814709,-0.06363763,0.025158511,-0.008014657,0.0072672195,-0.027128574,-0.003596718,0.0073041674,0.038968977,0.016686454,0.002514262,-0.051800895,0.039029833,0.028731968,-0.008585337,0.008638559,0.028951945,0.02652645,0.0070014745,-0.014224136,0.005076279,-0.010614634,0.002299587,-0.03438151,-0.024898054,-0.039593086,0.011800493,-0.010944854,0.03612535,0.003908859,-0.061730657,0.0301142,-0.01560642,-0.029194955,-0.0046360125,-0.080232635,-0.022586204,0.019992208,-0.018664163,0.0042403834,-0.00017726177,-0.057311866,-0.021168755,0.00020570046,0.0023415524,0.0062872334,0.049879916,0.00036464233,0.021557108,-0.06368107,-0.011663876,-0.011080539,0.010554933,-0.032624986,-0.0842146,0.017709749,0.017584534,0.028447898,0.014322333,-0.04540604,-0.005264968,-0.03275195,-0.0048207836,-0.006481927,0.016169006,-0.000022616925,0.024328433,-0.060339812,0.012130554,-0.006250344,-0.0100130765,0.0022640736,0.035344735,0.0006696499,0.038081627,0.022596922,0.017700043,0.009647273,0.0038549385,0.028426874,0.030325849,-0.030448426,-0.045541275,0.014961972,0.008059216,0.0150066735,-0.061174408,0.046010762,-0.011610682,0.014266554,0.02505774,0.011457916,0.020614205,0.012844793,0.011353764,-0.019682469,-0.02266309,-0.0151708145,-0.022198632,-0.0010085593,-0.06400814,-0.0031871798,-0.03398179,-0.01887626,0.019530028,0.0020111653,-0.0062365048,-0.029769069,0.00972769,-0.031437784,0.023076015,0.024231965,0.01822656,0.018751316,0.045962032,0.011331842,0.030256063,0.022086551,-0.002284228,0.0072824596,-0.01329946,-0.018896991,0.03247409,0.018141365,-0.027766475,-0.05368684,0.043247428,-0.03822426,-0.010143006,0.03227367,-0.0152457515,-0.023814607,-0.039050154,0.0184824,-0.028522873,-0.00065517274,0.020702818,-0.00495368,-0.015966116,-0.0005990469,0.018089164,-0.0060512214,-0.008634127,0.031868044,-0.013478378,0.09539889,0.028803721,-0.0074978056,-0.027854467,0.017454153,0.031256035,-0.01195471,-0.022099052,-0.02701356,-0.014318942,-0.0006003894,-0.01014433,-0.019126827,0.025139153,0.000830953,-0.052016087,-0.025129179,0.018161982,-0.009657426,0.0044075456,0.033058688,-0.008770246,0.002607081,-0.030288398,0.04304652,-0.037101075,0.04609918,-0.060564414,0.02619377,-0.04817516,-0.051023904,-0.03178268,-0.07578285,-0.0050097858,0.008057547,-0.032798614,-0.05377867,0.013332466,0.041509286,0.03890194,0.0059489594,-0.014638152,-0.008839755,0.06260573,0.05723059,0.0018747665,0.07861109,0.023372354,0.0064461385,0.009611503,-0.04502754,0.010206997,-0.03954499,0.0013155814,-0.067430615,0.028036386,0.00038257506,-0.039405745,0.017728385,0.05900284,0.015799008,-0.020741606,-0.07745572,0.00950775,0.0134379305,-0.04832241,-0.038296707,0.057264823,-0.0005770737,0.015094103,0.024478082,-0.059464592,0.24839799,0.061576597,0.02818217,0.020031126,0.018382188,0.026336862,0.030334022,-0.031842522,-0.0102676675,-0.015672581,0.060386296,0.005459602,-0.0015082296,0.02970308,0.011846366,0.055128213,-0.015346178,-0.021239143,-0.025178876,-0.013110244,-0.04397375,0.03582364,0.01142685,0.015925385,-0.01267157,0.029914314,0.06217265,-0.0029186616,0.026155017,0.008477456,0.009126895,-0.0420996,-0.01815286,-0.008342206,-0.015567587,0.042793494,-0.040637426,-0.03801227,0.06391172,-0.0041661193,-0.051048025,0.016888797,0.013724788,-0.0009009361,0.0053951982,0.023146054,-0.006095247,0.022554748,0.011799155,-0.03483671,0.060555663,-0.0023779997,0.066084266,-0.040082984,-0.032839287,-0.012565776,0.010987077,-0.008591595,-0.006850495,0.018320827,-0.0086998055,-0.009402303,0.005892972,0.01583968,-0.026338525,0.011427133,0.05744267,0.034656074,-0.011567414,-0.010491096,0.0013636914,0.013186775,-0.020476481,0.030915897,0.024255553,0.030959804,-0.02133144,0.008289799,0.007609751,-0.021906132,-0.032698844,-0.029003814,-0.007246034,0.008762872,-0.007956932,0.05425199,-0.0012852795,0.022306062,-0.057789214,0.04266278,0.0551205,0.017281853,-0.036003444,-0.04919203,0.019142639],[0.017488478,0.020022677,-0.018917365,0.026648434,-0.027440783,-0.026745878,0.039735846,0.012218454,-0.012655011,0.017581513,0.020430602,-0.035764556,-0.019372303,-0.01825478,-0.034546115,-0.03244791,-0.03756052,0.03862601,-0.060106188,0.0028180392,0.002297125,0.020826174,-0.0841685,-0.019197889,0.035680808,0.07806844,0.0005606759,0.0053436235,0.05664242,0.069822535,-0.017510414,0.017971275,0.037922725,-0.016514879,-0.03530857,-0.040561575,0.024138065,-0.0074260207,-0.027649447,-0.024366109,-0.0052156793,-0.018605916,0.031719867,-0.009738018,-0.05900974,-0.046172053,-0.018433444,-0.03240856,-0.005650114,-0.03494325,0.013211035,-0.028375782,0.022090305,0.006254594,0.048306387,-0.04389267,-0.020015815,0.0034477725,-0.032440092,-0.0038929738,0.03307936,0.03944462,-0.003939746,-0.0751409,0.02181554,0.0049135173,-0.024141049,-0.02356728,0.03545555,-0.003774353,0.02391603,0.009716388,0.020092355,-0.018492062,-0.046254512,-0.008948773,0.009885058,0.0062408065,-0.023599658,0.046536073,-0.032489914,-0.033587262,0.030753184,0.010425916,-0.026010405,0.00904471,0.03032333,0.033716537,-0.017533878,-0.055411886,0.013709966,0.035415642,-0.01932697,-0.017851336,0.026286088,-0.019881029,-0.020230912,0.003663468,-0.04455406,0.020348793,0.03416831,0.0031618387,-0.027074693,0.054490376,-0.031556424,-0.02309333,-0.014550275,-0.018142024,-0.01857622,-0.006301206,-0.012117344,0.032216184,0.017351603,0.0077484483,0.0003362215,0.019016886,-0.052787542,0.04938635,-0.027344968,-0.029173875,0.011811127,0.006785494,0.033427253,0.002254271,-0.0043668887,-0.03876956,-0.039312534,0.05523843,-0.052029476,-0.0099497195,0.002330271,-0.0075863265,0.047468673,0.011715413,0.059313223,0.03566868,0.009818646,0.01844747,0.011311173,-0.008937849,0.032621242,0.026666328,-0.037912395,0.0840575
+8000
+5,0.0015982438,0.008291337,-0.007084457,0.025939321,-0.056032717,0.039106734,-0.01810189,0.015124806,0.01230961,0.044337135,-0.023491161,-0.020991137,0.014273094,-0.019920168,0.02261628,0.019899623,-0.022897892,0.010117474,0.002361135,-0.00030809807,-0.037250623,0.034619745,-0.029168136,-0.030767666,-0.016057312,-0.0009532041,0.008387494,-0.009585702,-0.026085658,0.021501893,0.006516206,0.055408496,0.021368146,-0.00692448,0.039621323,-0.02815712,-0.008431806,-0.01599696,-0.0024313556,0.056307558,0.004729407,-0.01101157,-0.026513439,0.039012488,-0.014663723,-0.02550692,0.008092444,0.040144183,-0.024072744,-0.018566718,0.0019701542,-0.00456256,-0.04791936,-0.035937518,-0.002888708,-0.053194113,-0.010429397,0.025694104,-0.003656952,0.022499649,-0.0049017,-0.0369552,0.030431448,0.032664742,0.009588716,0.013368854,0.041603897,0.007903653,-0.01054613,0.0040437756,0.027476147,0.0010493402,-0.019514354,0.03718965,-0.047706794,-0.012204939,0.02958005,0.0024630304,-0.02372612,0.019176092,0.054578047,0.0058518713,0.027555866,0.01856225,-0.004510979,0.027509565,0.0021747726,0.0522306,0.016471954,0.049245756,0.013158272,0.017583134,0.033627372,0.0106180785,0.027067939,-0.02604077,0.004878608,0.018071854,0.042739145,0.012519909,0.0051214127,0.039027784,-0.009402497,0.0028362165,0.018232025,0.017293176,-0.012052727,0.0037250496,0.023664976,0.03915031,-0.040959567,0.01013743,0.0031825693,0.075767435,-0.026482135,-0.015467469,-0.03420721,0.039117962,-0.0049301893,0.014601574,0.0546516,-0.0015068318,0.0086186845,0.004706629,-0.02724992,-0.018712776,-0.004145325,-0.017341835,-0.05905219,-0.014068066,-0.06133754,0.028379574,0.026496211,-0.020875372,0.01968854,0.027079955,-0.0015534451,-0.036405206,-0.01346247,0.029767564,0.0018864352,0.053553835,-0.03963623,0.0045839325,0.013745409,0.007568262,-0.03867325,0.0014185983,-0.023920054,-0.05344204,0.019393638,0.015939444,-0.0151209375,-0.012384827,-0.018969638,-0.026376406,-0.023560768,-0.025522577,-0.013285048,0.053475797,-0.0066447495,0.006005047,-0.018743657,-0.013210686,0.080321245,0.03199336,-0.08192663,0.030898822,0.0060500996,0.014172494,-0.042275753,0.022216609,0.044049527,0.053257857,-0.008869509,0.042327933,-0.0022331236,-0.01586123,-0.040220227,-0.023600966,0.014266877,0.03160885,0.01961212,-0.06658944,0.033917073,-0.0020304478,-0.053483468,-0.04439697,-0.0025326188,0.028126298,0.0012669129,0.028536642,-0.008499547,-0.0492656,-0.00895828,0.010702371,0.063046366,-0.054474883,0.02026319,0.038227458,-0.044097837,0.0035049892,-0.030233392,-0.014120968,-0.022867983,-0.014069686,0.012829605,0.06486492,0.015872652,0.011232193,-0.0071878913,0.020948403,-0.024372574,0.012344306,0.035770588,-0.010039946,0.0071171154,0.049252037,0.027385417,-0.036301773,-0.021488635,-0.07138189,0.0270898,0.011422828,-0.0041648536,-0.074217625,0.063109,0.015538894,-0.05253167,-0.009238444,-0.02318046,0.016521396,0.03494446,0.0064326213,-0.0040637995,-0.027532646,-0.0016161444,-0.0013975811,0.00900025,0.036468443,0.035243247,0.012108636,-0.008051418,-0.027666548,0.008977609,0.014643795,-0.07079129,-0.028259758,0.038208157,0.00260132,0.020326719,-0.034811717,0.018529106,0.018382,0.00068386854,0.015424091,0.020937257,0.016186088,0.016722532,0.041418925,0.0055747237,0.036276363,0.002328404,0.034696396,-0.017132223,0.016044142,-0.040681325,0.018004565,0.0010132487,0.007302897,0.012609786,-0.0010277305,-0.02360604,-0.011840174,0.010221259,0.015302013,-0.054507717,-0.0013577612,-0.016752161,0.026683154,-0.018024638,-0.03578241,-0.0001381505,-0.044207916,0.055746756,0.03590593,0.0066616368,-0.040065378,0.006819297,0.0011363315,-0.015028091,0.031860057,-0.0021512518,0.00042266404,0.022113478,-0.01982786,0.0032942696,0.027888682,-0.002590805,-0.00884146,-0.0038208154,0.024548829,0.035456695,0.024652535,-0.070441335,-0.056081593,0.022608804,-0.049110353,-0.049669687,-0.002317031,0.004927028,-0.021772701,0.011353528,0.01598009,0.0390535,-0.018243372,-0.01732918,-0.023891635,0.051228426,-0.005979358,-0.0035311892,0.03065845,0.009571817,-0.026599782,0.024905909,0.009765045,0.018186372,0.013947929,0.022393033,-0.054599557,0.004851355,-0.010970839,0.014088793,-0.014425301,-0.0012459245,-0.034494713,-0.03642858,0.013391879,-0.023902206,-0.02420261,-0.03669221,-0.03356594,-0.014422087,-0.010328633,-0.035198297,-0.009552292,0.025696967,0.039525434,0.01622165,-0.061809655,0.011330633,-0.019027438,-0.0019598298,0.004324994,0.027836457,0.026073659,0.03381909,-0.0036225945,-0.021235634,0.0123064285,-0.011668933,-0.010092439,-0.05869661,-0.0078171035,-0.0067753084,0.014039148,-0.008161363,0.0076246043,0.020095805,-0.04961335,0.053022277,0.03398788,-0.039614763,0.01661552,-0.045951985,-0.01618829,-0.004588921,-0.03922596,-0.04153244,0.059928626,0.003117543,0.044108633,-0.008136756,-0.019007897,-0.065315336,-0.037465114,-0.00988937,-0.053844515,-0.05601622,-0.028781317,-0.009909464,-0.005166051,0.013033886,0.0035273104,-0.025930213,0.020436954,-0.022103611,0.008036327,-0.018925076,-0.0070293937,-0.0011180134,-0.06285109,-0.0051625683,0.055431683,-0.0120451,0.07516148,-0.026554197,-0.046760973,0.005756206,0.023534702,-0.0007686056,-0.017552424,0.008438697,-0.03358158,0.010575724,0.024934573,-0.027918324,0.054234248,-0.042049218,-0.03497536,-0.025107361,0.00065213465,-0.036304135,0.006309231,0.0017796744,-0.0014719068,-0.005173319,-0.02543099,0.08211715,0.044828855,0.02047816,-0.0064056283,-0.046741605,-0.055305723,-0.018074667,0.023738265,0.015403645,0.033692703,-0.033250287,0.0053910655,0.04203242,-0.049447775,0.035014976,0.06451939,-0.016773265,-0.002702482,-0.04259737,0.04286744,0.014140348,-0.054976724,-0.010561124,-0.034976933,-0.026381759,0.012080157,-0.047510095,-0.081002474,-0.04640519,0.009533329,0.08209169,0.013976638,0.023509772,-0.0029674359,-0.021870606,-0.060979825,0.019666307,0.016397772,-0.013543648,0.04993011,0.006756819,-0.019760545,0.011683303,-0.012045005,-0.007936956,0.025108213,0.03819664,0.013067658,-0.02852193,0.0710323,0.05521143,-0.04373008,-0.05294868,0.033593852,-0.01769961,-0.04487411,-0.043023963,0.010660443,0.0147563955,-0.01597047,-0.020932341,0.0101419045,0.017334618,0.03136916,-0.011506615,0.031688794,-0.034913186,0.016360162,0.034022596,-0.03737656,0.029987056,-0.05926291,0.003768147,0.032906976,0.03637571,0.026658677,0.008048946,-0.016918829,0.03250778,-0.0017451206,0.047682934,-0.024949852,-0.021968586,0.022145966,0.011172211,-0.03644282,0.017187482,0.010756037,-0.010563942,-0.0017189991,-0.046131514,0.015667818,0.004833934,0.017535264,0.0062652403,-0.016078496,-0.0071009905,-0.047944788,-0.02800085,-0.029488554,0.021148881,-0.03201156,0.012868557,0.025401393,-0.0015622883,-0.00083132484,0.055818945,-0.031194655,0.035581823,-0.014108644,0.05925359,-0.0246426,-0.05756503,-0.025802905,0.043100957,-0.06783992,0.019864284,-0.008606457,0.02546243,0.0016997566,-0.004651836,0.031107776,0.0012480608,-0.023049649,0.0022599266,0.04517,0.009793363,0.011890227,0.056606315,0.049019285,0.0057392814,-0.028271534,-0.004125417,-0.012448326,-0.019830344,0.022331692,0.017628763,-0.045617484,0.0016959766,-0.04861327,-0.018329924,-0.045575272,-0.021251686,-0.017462257,-0.0033078764,-0.0039394284,-0.024053562,0.012473695,0.034928862,0.016657006,0.027675811,-0.017771157,0.026659027,0.010263081,-0.036011208,0.015107938,0.01782691,0.026753966,-0.017405698,-0.027988937,0.017533302,-0.019972157,0.010371279,-0.059009325,-0.054955423,-0.026351387,0.015476335,-0.00647425,0.032847866,0.0021473216,-0.056747288,0.023199124,-0.021043347,-0.0023421263,-0.005132365,-0.07090381,-0.016288785,0.019916087,0.0043193926,0.0027266685,-0.010213351,-0.05973125,-0.020628808,0.009873663,0.00027515626,0.01745707,0.045464277,0.0027973831,0.019909615,-0.029992295,0.018456537,-0.0047543915,0.0028311159,-0.005171386,-0.0570695,0.060081895,0.02536691,0.04455491,0.012713319,-0.05018386,-0.00071888184,-0.058882307,-0.013434217,0.015138,0.026925618,-0.00071783905,0.02778976,-0.04044214,0.020948365,0.02068377,0.025217382,0.025459532,0.00599156,-0.014651876,0.04053341,0.03261696,0.016440332,0.013022538,-0.015056624,0.030241026,-0.015185713,-0.0458311,-0.047763083,0.0148440795,0.020788867,-0.01806617,-0.03379412,0.040796857,0.016232831,0.018975412,0.01786145,0.028041968,0.0023823902,-0.016768701,-0.0049958173,-0.014783593,0.010563443,-0.008880999,-0.047435846,-0.00013300996,-0.06127395,-0.0010755069,0.0038793008,-0.020041944,0.006833855,0.000322872,0.007513605,-0.020420656,0.004344215,-0.008121277,0.035655342,0.010387404,0.04712768,0.017109483,0.048141968,0.015699357,0.028761117,0.012909469,0.00075440033,-0.007311979,-0.04884684,-0.02141116,0.009747524,-0.009516854,-0.040974453,-0.06627375,0.056576297,-0.039441083,-0.03740182,0.0011081052,-0.035093237,-0.019650025,-0.041376572,0.01595838,-0.011256071,-0.020169167,0.010743221,-0.008550385,-0.005406379,0.020220611,0.0422627,0.013110068,-0.017673034,0.034804437,-0.03417785,0.07215133,0.047449272,0.005114197,-0.011535793,0.04075487,-0.0052144784,-0.026900329,-0.009517949,-0.042241555,-0.002367067,-0.0032548355,-0.0031967664,0.021664204,0.051742774,-0.010965148,-0.040956154,-0.04878124,-0.0026669286,-0.025204428,0.043443263,0.009902164,-0.0067628548,-0.020073451,-0.043717902,0.0034648483,-0.0093832025,0.028996535,-0.07670162,0.04819831,-0.059487727,-0.069546476,-0.03139114,-0.049128138,0.008381217,0.018281288,-0.027005428,-0.0606588,0.032713808,0.028948676,0.016888145,0.02642426,-0.02536527,-0.01609704,0.03224681,0.06562469,-0.00076295313,0.100879475,0.03313696,-0.013760931,0.0075748134,-0.03138949,0.011215997,-0.028385613,-0.006002468,-0.05930209,0.016490603,-0.028381225,-0.04144245,0.0071158386,0.05572473,0.044705216,-0.04068724,-0.081378154,0.01397337,-0.018916897,-0.037021123,-0.012350752,0.061202444,0.006918444,-0.028782476,0.02024527,-0.0661954,0.23550682,0.05038893,0.015847916,0.018013095,0.018463582,0.030482683,0.014366155,-0.033972595,-0.012196807,-0.012768609,0.04588146,0.0046573034,0.0009416934,0.023365121,0.029832495,0.066740334,-0.0029941602,-0.014517714,-0.0039653047,-0.006327021,-0.03096865,0.028529579,0.024352627,0.016735097,-0.019980954,0.0135517055,0.036097232,-0.01730617,0.017912216,-0.008813437,0.0104757985,-0.051465638,-0.006792046,-0.0054641636,-0.020174896,0.04754362,-0.0031048008,-0.014718189,0.04523505,0.011074181,-0.037291557,0.0059441584,0.027786095,0.009866694,-0.0138994455,0.0139374975,-0.017027842,0.00048435695,0.011347713,-0.0013419101,0.054074734,-0.0119465655,0.052323584,-0.02717452,-0.048222907,0.020377714,0.010111542,-0.03410036,-0.020385137,0.011735725,0.0052625206,-0.036910016,0.0010166311,0.0041465764,-0.019186355,0.048369024,0.04930128,0.033394184,-0.029631969,-0.0077985474,0.02208427,-0.0017534016,-0.00968827,-0.0031131394,-0.0071765557,0.0021385772,-0.045123156,0.016407508,-0.0068099815,-0.037065897,-0.0005435321,-0.009926161,-0.007951769,0.009550288,-0.0036678328,0.062098086,0.012127338,-0.017168209,-0.05448579,0.046422023,0.041186858,-0.02090643,-0.020057524,-0.039993647,-0.017362673],[-0.0014751649,-0.036112536,-0.010208476,0.013207537,-0.037843753,-0.022358702,0.027864523,0.020765454,-0.009041309,0.0054958737,0.050209213,-0.016535962,0.030327868,-0.033535846,-0.01195825,-0.017815296,-0.044281013,0.002065351,-0.039115243,-0.0069044633,0.0057823434,0.027065953,-0.08268296,-0.021306176,0.050463498,0.07577028,-0.0038684118,0.028900286,0.06356198,0.068164684,-0.0057145962,0.017483434,0.0134977875,-0.022048257,-0.036825966,-0.045215014,0.05069887,-0.008743234,-0.0062809614,-0.015335466,0.016867304,-0.015432707,0.042142276,-0.026885813,-0.05087361,-0.032619584,-0.042049523,-0.011117704,0.005723696,-0.012359533,0.0072806473,-0.016987909,0.0147568025,-0.009778131,0.047011185,0.01766935,-0.026358683,0.013733481,-0.04477936,0.020378139,0.046249762,0.034388777,0.0145363975,-0.036445815,0.009321895,0.032263234,0.020827014,-0.017583124,0.0066676247,-0.007308723,0.061800618,-0.012079968,0.008373261,-0.019411765,-0.016590511,0.0078407535,0.0116187455,0.0017158929,-0.05114049,0.038559552,-0.017809875,0.013320023,0.019297471,0.045679897,-0.05165707,-0.013938753,0.03366369,0.028855031,0.020370997,-0.028002826,0.000009632866,0.030714387,-0.00553619,0.008436955,0.025390942,0.0011020035,-0.022915443,0.010633145,-0.024629647,0.004339939,0.03504693,0.033308547,0.014558214,0.056233928,-0.036178358,-0.011178164,-0.01673718,-0.01494472,0.004389906,-0.038346615,-0.015594073,0.027599975,0.018359873,-0.0044473736,-0.029298263,-0.010998938,-0.025481937,0.03510055,-0.041225914,-0.0006858199,0.012627975,0.012137851,-0.011949383,0.028457627,0.012747685,-0.07359399,-0.044047758,0.06617987,-0.037505943,0.0004620802,-0.015352888,-0.020219717,0.019801062,-0.011067509,0.061434697,0.0033127535,0.013085619,0.013697358,0.016965508,-0.03601043,0.022257559,0.024522549,-0.05398717,0.08086595,0.001533231,0.017681267,0.005596364,0.015547249,-0.06283708,0.0526137,-0.017204175,-0.0021062826,-0.0020423322,0.024529452,-0.024440082,0.015401502,0.015709799,0.013916863,0.012186891,0.015569815,-0.010627828,0.005708608,0.014746838,0.009728948,-0.06006087,0.042295802,-0.026866393,0.008634967,-0.009507011,-0.012624108,-0.030408911,-0.0148429,-0.049536295,0.010483069,-0.027780069,0.033783183,0.0007155615,0.0041125636,0.024995552,0.019307788,0.0020714633,-0.009652791,0.0142855495,0.07968775,-0.003367681,0.016672716,0.012488992,0.00736272,-0.047783583,-0.046897296,0.006193622,0.057761073,-0.047526136,0.012103998,-0.014476969,0.014484891,-0.045180067,-0.017579874,-0.0016058307,-0.055157147,-0.0010896416,0.033570383,-0.022288252,0.009557335,-0.014589506,-0.020965986,0.022632176,0.031824652,-0.0075028697,0.0112598855,0.008993816,0.050049875,0.0058152215,-0.0058313613,0.04354886,-0.010247402,-0.045489714,0.046732996,-0.03188771,0.0018557955,0.03447322,0.019933462,0.004420632,0.022705268,0.0101022525,-0.005071514,0.016986208,0.02668389,-0.010189597,-0.00020099607,-0.026290065,0.03197303,0.016622359,0.048445217,0.023411017,0.05736935,0.04975235,0.028994659,0.039428256,-0.0029652675,-0.019588897,0.0036999856,0.04451626,-0.012788142,0.029039202,0.030508365,0.010142108,-0.003359997,-0.0050939186,-0.013249684,-0.022693606,-0.0030198647,0.008578321,-0.0109781595,-0.085462555,-0.023984829,0.04967025,0.04800814,-0.050235275,-0.018911328,0.011462943,0.053154755,0.00857159,0.013746546,0.043593448,0.0104224095,-0.013504324,0.04391859,-0.028082037,-0.023607347,-0.023997055,-0.04669075,-0.07327007,-0.02517693,-0.048531316,0.014539088,0.0071855183,-0.020774635,0.01649996,0.03885571,-0.0071176146,-0.049053174,-0.012641866,-0.017430328,0.021866683,0.042333223,-0.031539477,0.013244271,-0.003366145,0.0022086706,-0.042560123,0.022053977,-0.009709374,-0.043421026,0.008541099,0.02200184,-0.025893364,-0.0068630883,-0.03470603,-0.019469926,-0.019294132,-0.05170553,-0.0054721055,0.038093165,-0.021093152,-0.0033959432,-0.025911633,-0.028738402,0.047834475,0.019857539,-0.072380595,0.026562324,0.030573556,-0.0067271655,-0.04450305,-0.015077266,0.036986183,0.04974742,-0.040646076,0.029488355,0.03541444,0.022158375,-0.021759624,-0.02157602,0.009761664,0.005302122,0.049652632,-0.11119047,0.028553465,0.021407941,-0.044759214,-0.068902954,-0.037894446,0.012433358,0.012344528,-0.03431616,-0.010493927,-0.031522054,-0.0056775487,0.009547322,0.059015226,-0.029743128,0.0010350026,0.03840667,-0.023326855,-0.012141263,-0.03186109,0.0073509593,-0.010059217,-0.004994557,0.027091343,0.047583546,-0.007358387,0.022862382,0.0130625125,0.0001533261,-0.027100204,-0.0015347459,0.045115024,-0.03246372,0.01962781,0.038701717,0.029735193,-0.038820073,-0.006800354,-0.043459732,0.045132708,0.027893927,-0.006142548,-0.054270107,0.053963497,0.01498237,-0.059688862,0.0059807915,-0.024505578,-0.0041274284,0.041116755,0.0064479155,0.032842968,-0.037861064,0.023724528,-0.019501146,0.018258302,0.048043694,0.03774454,-0.0047270777,-0.027409043,-0.004827027,0.038379073,-0.011556003,-0.0641929,-0.014067734,-0.0010619805,0.01109203,-0.02393513,-0.0077162776,0.029093305,0.004577045,0.024711505,0.010982555,0.050310876,0.0023720092,-0.008320584,0.0052173557,0.015574268,0.02201344,-0.0349563,0.04984987,0.0010120936,-0.021818014,-0.038087964,-0.0061006695,-0.0023044504,0.0036161947,-0.0041588,-0.0038454158,-0.037498243,-0.026288005,0.032107115,0.04194416,-0.07769858,-0.0028726335,-0.003992627,0.0051867515,-0.013504812,-0.028745782,-0.015427425,-0.06274565,0.07942675,0.002233871,-0.0036324894,-0.030534677,0.018292468,-0.04738603,-0.017389435,0.03146343,0.02628792,-0.01523929,0.05206027,-0.015720915,0.02366693,0.02304231,-0.012762999,-0.01545131,-0.024364313,-0.007733603,0.022755122,0.02718872,-0.06135903,-0.006854893,-0.0023027998,-0.06217629,-0.01257351,-0.03509921,0.0030263746,-0.034492653,-0.00039124995,0.017937118,0.022441074,-0.0021404012,-0.0045661726,-0.032201838,0.037555736,0.004863734,0.0001759267,0.023263136,0.016777713,-0.034978617,0.041124795,0.020436255,0.026999392,-0.015792398,-0.00014800965,-0.02949255,0.010795553,-0.020825583,0.0015788934,0.014157708,-0.013264546,-0.03097912,-0.032736868,0.030045204,-0.012770703,-0.015543726,-0.05914174,-0.04200933,0.008776403,0.010510249,-0.03262121,0.005627033,-0.0057082768,0.016804304,0.017487526,-0.040227067,0.01046593,-0.014756181,-0.030964093,0.0071087177,0.019428307,0.030371599,0.003683782,-0.0052895723,0.002202984,-0.007191064,0.007973777,0.007927975,-0.05590174,0.02819084,0.019137943,-0.0017448874,0.02923482,-0.008648822,-0.022065507,-0.024738539,0.012820793,0.0059604063,-0.027032772,0.031634033,-0.032683108,0.008112443,0.0076222555,-0.032308184,-0.03320757,0.04430277,0.007793921,0.028568123,-0.011197815,-0.044015896,-0.05363931,-0.04841495,0.007758998,-0.052191135,-0.038159393,-0.021253465,-0.0389777,0.003631989,-0.014076397,0.017601484,-0.0020037773,0.0395565,-0.051844608,-0.008225153,-0.0276988,-0.016725989,-0.01123719,-0.021204572,-0.002635616,0.06879902,-0.023131467,0.042062435,-0.02844794,-0.05598109,0.011756843,0.0074369167,-0.037700944,-0.00769493,0.0034758928,-0.010352391,0.034618724,-0.0047259317,0.009244991,0.047796026,-0.06924464,-0.03492196,-0.045580033,0.009456353,-0.05073818,-0.009723685,0.029660847,-0.012051517,0.015424387,-0.0035239607,0.060648583,0.033334058,0.029832188,-0.034792446,-0.05529083,-0.029287355,-0.021996453,0.02607512,-0.011557119,0.008517237,-0.017048102,0.036961623,0.022964744,-0.034703586,0.01038601,0.06100381,-0.018981732,-0.010479251,-0.036241237,0.028056746,0.0070044207,-0.03974519,0.033192,-0.014461682,0.007238044,0.02878143,-0.040351935,-0.07468647,-0.03640477,0.0143519025,0.057904538,-0.007209958,0.023746733,0.006827377,0.0023861923,-0.05045964,0.025304489,0.029146705,-0.012217483,0.021455385,-0.0037502947,-0.014618099,0.006541683,-0.008973349,-0.005862938,0.00507412,0.040022183,0.008778826,-0.03390991,0.093704835,0.06848329,-0.021622797,-0.04252037,0.030739194,0.00697547,-0.017939636,-0.041183773,0.046227984,-0.016126411,-0.015462551,-0.03561748,-0.018646356,-0.011929546,0.026321242,-0.0089590615,0.021715282,-0.011380996,-0.007340629,0.022706697,-0.049501766,0.036049824,-0.03228038,0.0044639567,0.0381854,0.011029967,0.007636985,-0.028845381,0.0021023327,0.03525357,-0.018241338,0.049039777,0.0015283271,-0.03807023,0.030013595,-0.024394812,-0.018540332,0.017996218,-0.0007038234,-0.029284827,0.01948099,-0.040130187,0.012248161,-0.050021674,0.0010379378,0.0127295265,-0.026143989,0.00033118765,-0.054153036,-0.029362781,-0.017623745,-0.021411508,-0.006608337,0.03754306,0.004615526,0.021527978,-0.018528555,0.04749883,-0.039463803,0.07024705,-0.011248444,0.059911378,-0.04547282,-0.0321332,-0.030618973,0.027566869,-0.05524449,-0.0043994966,-0.025561517,0.025333242,0.004829715,0.022584308,0.01658389,0.006552883,-0.054009084,0.008447131,0.048429996,0.029503692,0.022102192,0.019384783,0.022552883,-0.013637612,-0.03612215,-0.038198534,-0.022089092,-0.048978634,0.016937602,0.025193557,-0.046971343,-0.009929104,-0.04820912,-0.010225283,-0.02534409,0.023773985,-0.016095648,0.021940285,-0.011944994,-0.027152045,0.0053632343,0.045533456,0.0039357776,0.02730762,-0.022540532,0.011126243,0.0082407985,-0.021773372,0.012224032,0.008221946,0.021044841,-0.015294385,-0.00948412,-0.021434981,-0.004181025,0.005964407,-0.02442019,-0.032563034,-0.0284166,-0.012341512,-0.02595477,0.00938011,0.011994107,-0.053316955,0.0077930917,-0.015978778,-0.022729268,0.013406946,-0.042692155,-0.024470538,0.01214716,-0.024363318,0.036252145,0.015062679,-0.08076198,-0.035862744,0.0073434375,-0.018090986,0.00029230904,0.04418176,0.0035445597,-0.0015735416,-0.04363183,0.019413408,0.025541697,0.010528101,-0.0084400475,-0.039647475,0.03629262,0.033241015,0.013236283,0.0054011173,-0.035335813,0.035017688,-0.019708274,-0.020109205,0.024123283,0.04347388,-0.047556423,0.010252068,-0.042984705,0.04339563,-0.003686039,0.029943475,-0.01201096,0.01031306,-0.016127285,0.03175732,0.03581468,0.008843226,0.014391808,-0.02904275,0.01345507,-0.019860253,-0.027939087,-0.031487446,0.048828788,0.014531048,0.017675437,-0.043654498,0.039578136,-0.010885571,-0.009937216,0.009373163,0.015605562,0.023704898,-0.017313411,0.00300159,-0.019940801,-0.0060479487,-0.00036335262,-0.033658154,0.03462153,-0.04322564,0.0062392633,-0.0072561502,0.013276838,-0.0034386597,-0.004631298,0.0044914065,-0.018174214,0.0025663795,0.005328895,0.03296514,0.019036628,0.050104946,0.02636851,0.05074359,0.003398345,0.026267176,0.030037457,-0.0018282114,-0.0069946763,-0.030844443,-0.030122152,-0.005088989,-0.021415427,-0.035242666,-0.022120468,0.04093716,-0.013205973,-0.020655442,0.020754427,-0.013615195,0.0065100887,-0.06930462,0.026667876,-0.040501863,-0.0061866636,-0.014600646,0.0013069996,-0.0006901621,-0.009347262,0.016953012,0.003824428,0.0038802633,0.021413911,-0.022464698,0.037361983,0.040032115,-0.0060541527,0.0019948003,0.024489943,0.0022072685,-0.016422577,0.013103763,-0.03384644,0.012043885,-0.0016736599,0.011022066,-0.0009598916,0.063596286,-0.006814122,-0.06656047,-0.051924735,0.035223205,-0.010448031,0.023489939,0.03976577,-0.0012404012,0.01167116,-0.029032439,-0.016869763,-0.0147327585,0.004630585,-0.06339327,0.073966466,-0.042204756,-0.0636553,-0.021207705,-0.049488317,-0.0056734164,0.0022549974,-0.014861743,-0.055966474,0.023632161,0.021578634,0.006412741,0.026950834,0.010095078,0.004890323,0.052084547,0.08018776,-0.009832903,0.0665024,0.003079002,-0.0007239427,0.05555492,-0.03499672,0.03960466,-0.032744486,-0.023240132,-0.05731085,0.011653373,-0.06349367,-0.0341963,0.01572423,0.043701522,0.042811554,-0.036810867,-0.03986349,0.017713245,-0.034265354,-0.01621867,-0.004903666,0.0745817,0.008762415,-0.0025446517,0.018969316,-0.085648894,0.253019,0.08056076,0.010132979,0.031910267,0.018658025,0.017596383,0.03396545,-0.03551695,-0.030898608,-0.03458223,0.05844989,-0.002071991,-0.011337294,0.022638649,0.0064699906,0.07214989,-0.0015100474,-0.007046069,-0.030522883,-0.04121674,-0.0021011822,0.010287171,0.0056118863,0.0370543,-0.036367718,0.013295714,0.040035337,-0.025969207,0.0052058054,0.0036465777,0.02301033,-0.034613203,0.042220663,-0.013637868,-0.040903326,0.045290653,0.011303281,-0.019061847,0.014361548,0.025851253,-0.04815508,0.028620698,0.003684641,-0.027049774,-0.011574351,0.0035297223,-0.026573049,0.013040251,0.0044665877,-0.0034077882,0.06747805,-0.012475821,0.042625163,-0.038732886,-0.0297571,0.014336399,0.025832422,0.0047377823,-0.008951406,0.003458696,0.01628862,-0.014699646,0.008590331,-0.021232748,-0.025318597,0.010377196,0.0541672,0.034054272,-0.015675768,-0.014509763,0.023577334,-0.0072420873,-0.019393653,-0.012137632,0.010813606,0.018633587,-0.009622463,0.01744025,-0.0044271373,-0.008150648,0.022996793,-0.0031901053,-0.0017756572,0.021767067,-0.0048998077,0.07722258,-0.008640309,0.029407373,-0.061087728,0.047082327,0.04305687,0.004153781,-0.044402618,-0.051072717,0.018533869],[0.014036595,-0.030687185,-0.00878083,0.012641513,-0.03002806,-0.028763695,0.026869051,-0.01795813,0.018746838,0.03419414,0.04335045,-0.013220559,0.012179147,-0.013514029,-0.027849536,0.015191622,-0.039965566,-0.00384763,-0.03601131,-0.0084071085,0.0071652466,-0.020618737,-0.0945022,-0.0009286607,0.015320165,0.04721511,-0.008290226,0.012415907,0.05340653,0.051665366,-0.014909534,0.024524257,0.04670117,-0.037301444,-0.0416257,-0.034408685,0.050238974,-0.025004843,-0.013376804,-0.032065187,0.015316409,-0.009358533,0.026033616,-0.035674147,-0.02428987,-0.024201337,-0.0118085705,-0.009637825,0.009884077,-0.02746987,0.014922704,-0.006234376,0.0077588772,-0.029369498,0.021470424,0.003940393,-0.022407115,-0.01903916,-0.027840883,0.053012002,0.043012206,0.013987723,0.012355017,-0.058374606,-0.01422492,0.030795291,-0.005355545,-0.0009197225,0.014464122,-0.017000092,0.010058102,-0.0000036535837,-0.01004548,-0.0077054664,-0.010189258,-0.0003754432,0.0057350653,0.008399478,-0.052930176,0.062004276,-0.0049418723,0.028885905,0.037099153,0.015836602,-0.052649893,0.0020684355,-0.022189353,0.033192232,0.0074869646,-0.011725922,0.007915632,0.026812049,-0.014110705,0.01915979,0.019120693,-0.0006006104,-0.011766523,0.0061783423,-0.046264924,-0.018431121,0.009073005,0.03042792,-0.024096522,0.039162286,-0.05904009,0.0014860448,-0.041970287,0.012404182,0.010277199,0.0026819382,-0.00275434,0.0036163367,0.0052692182,0.006228367,-0.012794186,0.027821248,-0.026244685,-0.004058033,-0.038094476,0.007972353,0.016111251,-0.00294281,0.0030518344,-0.011018075,0.006499518,-0.031651497,-0.017869141,0.044769872,-0.040068533,-0.015832905,0.012019002,0.0129613625,0.01205615,0.0022849692,0.054857742,-0.008004981,-0.014823972,0.027589632,0.008207293,-0.07530199,0.03082465,0.021517266,-0.043013286,0.08544169,-0.0231218,0.03003875,0.002987562,0.030574292,-0.045282356,0.05262567,-0.023025949,-0.0031538375,0.03700599,0.032320406,-0.016078072,0.029605543,-0.0016596514,0.008747424,0.0134061435,-0.011466634,-0.023358863,0.014322468,-0.031913992,-0.004383215,-0.07376507,0.04059112,-0.050172504,0.0073752096,-0.009396321,-0.00048738986,-0.031816207,-0.023856577,-0.029994696,0.015081039,-0.0436795,0.027600078,0.021182586,0.011809608,0.019544758,-0.0108599225,-0.019777138,-0.017257497,0.02207439,0.07159791,-0.012755985,0.0059344578,0.042250145,-0.0005207074,-0.019986082,-0.039956216,0.016075293,0.053201973,-0.038646296,-0.0046236035,0.013611053,-0.010126109,-0.022148535,-0.02027586,-0.006448334,-0.056207478,-0.0019672683,0.0319581,-0.007978351,0.057546098,0.004029062,-0.048438326,0.0053933435,0.037818346,-0.026654087,-0.0010765749,0.018872298,0.052545566,-0.018139279,-0.040380247,0.020754233,-0.016468748,-0.03248643,0.044247746,-0.023861973,0.008840988,0.034388326,0.020736111,0.0067702467,0.031093333,-0.014173575,0.020177653,0.00464999,0.030413203,-0.008961083,0.0023274391,-0.012351699,0.0025440808,-0.00046771893,0.060308203,0.015433823,0.029456103,0.020573996,0.020182837,0.026862469,0.019343097,-0.03970003,0.0065387576,0.03166723,0.005786945,0.015441227,0.037177153,0.018440578,-0.014516089,-0.017694497,0.0008021921,-0.020933488,0.019513104,0.019795738,0.0039258595,-0.052429218,-0.032436628,0.055247504,-0.0011188068,-0.07377383,-0.026726963,0.013325031,0.048403963,-0.009777639,0.051429838,0.04300513,-0.015093128,0.013318729,0.01891831,-0.0008349452,-0.032157376,-0.013925195,-0.028668065,-0.06444957,-0.03349384,-0.03461496,0.042973947,0.0059193783,-0.03711837,0.018230785,0.027392289,-0.014482883,-0.04306853,-0.0038497832,0.03816119,-0.0016090812,0.048438534,-0.03504593,0.0033504637,-0.016432542,0.03135879,-0.023394173,-0.007316686,0.011671175,-0.032420047,0.02276099,0.031938415,-0.005110639,0.04005009,-0.03493578,-0.05098482,-0.011320032,-0.041049816,0.016725674,0.02559323,-0.02005653,-0.01316652,-0.010756496,-0.02481613,0.0384096,0.030279143,-0.055332962,0.026969535,0.005205848,0.018785134,-0.050874725,0.02421305,0.018465146,0.051279582,-0.03774667,-0.019580446,0.009443452,0.012859134,-0.05435379,-0.029365163,0.02782931,0.03363758,0.0582011,-0.093056284,0.034476735,-0.008197787,-0.04412446,-0.06232019,-0.037903696,0.028211648,0.012633724,-0.00089782727,-0.0057079247,-0.0409375,-0.021630274,0.0063727475,0.04583925,-0.075941905,0.04359117,0.06076886,-0.022882978,-0.0019108151,0.024443142,0.025686046,0.00050437177,0.016795471,0.012332216,0.029839545,-0.004626914,0.025660072,-0.0049931877,-0.00957015,-0.014547944,0.02944707,0.04571568,-0.01674728,0.019885939,0.01250837,-0.0059410143,-0.04111032,-0.000046292487,-0.04288488,0.026725072,0.034898575,0.010658177,-0.054209433,0.053997114,-0.0039755087,-0.07524611,0.0455099,0.0055817068,-0.006145495,0.05171116,-0.037304614,0.028152492,-0.045817155,0.029824307,-0.03163962,0.027591294,0.054056752,0.064911544,0.010105122,-0.019732071,-0.003978373,0.018000348,-0.002321485,-0.024567762,-0.015432337,0.004289001,0.000054950113,-0.038393594,-0.007909914,0.03313348,0.0119547015,0.03389837,0.042666923,0.029994432,0.0023390965,0.025772551,0.028642975,0.012043686,-0.0063837552,-0.020514594,0.07253443,-0.025708036,-0.032906435,-0.02375795,0.0038158563,-0.0132470755,0.015812676,0.005390141,0.0033595192,-0.024172949,0.019386245,0.049961045,0.04050578,-0.078882635,0.005837208,-0.02643434,0.018014774,0.003065376,-0.027435979,0.006486888,-0.047819745,0.04329214,0.011845909,-0.0027498393,-0.034973614,0.021431744,-0.010930918,-0.019970072,0.0049970737,0.0096503515,-0.033194885,0.026490655,0.005474653,0.024597002,0.017899515,0.01060853,-0.034147836,-0.023997257,-0.022731276,0.030847741,0.027715495,-0.050753288,-0.019378563,-0.013277039,-0.06118302,0.0038606504,-0.060872104,-0.016979838,-0.0033958151,0.020574275,0.011273971,0.02019565,0.018767063,-0.008300443,-0.027139336,0.014896228,-0.002703452,-0.012799637,0.020435711,-0.0055218847,-0.057116322,0.049896084,0.034748383,0.02353704,-0.007960022,0.015160368,-0.01883771,0.0015915653,-0.033225663,-0.0044456553,0.0058820546,-0.011715449,-0.033822376,-0.03887605,-0.022964556,-0.014771099,0.017911892,-0.05561092,-0.05427222,-0.004113373,-0.020330425,-0.008277382,-0.014106162,0.0011168194,0.024908438,-0.0009522767,-0.031065727,0.0122979935,-0.031288538,-0.025096547,0.0017266482,-0.0008841838,0.005821534,0.018466957,0.009700978,-0.0011075491,-0.0011760173,0.021065917,0.032052163,-0.03688705,-0.034288965,0.014194917,0.0073401793,0.012580075,0.021257421,-0.0014572742,-0.012430765,0.008622404,0.007591034,-0.047508683,0.044973496,-0.0051713903,0.022223052,0.014258714,-0.053063437,-0.03776178,0.052870356,0.025875704,0.04798249,0.010328069,-0.01175646,-0.03810743,-0.029351858,-0.007276805,-0.034487482,-0.050218023,-0.027898405,-0.03198069,-0.033847097,-0.008845827,0.028344188,0.022540987,0.034018442,-0.053725757,-0.0024060875,-0.035552584,-0.030298162,0.007810367,-0.011691977,0.0011612292,0.053739063,-0.02455991,0.04376598,-0.007969327,-0.029631313,0.014773282,0.024121905,-0.059186656,-0.008157929,0.0027453096,-0.017038424,0.0196691,0.0013993434,0.014591138,0.059999876,-0.05648635,-0.05159657,-0.028238183,-0.016871843,-0.020767521,0.018849006,0.001432159,-0.012734364,-0.023738656,-0.007575952,0.06863568,0.05117974,0.011432775,-0.020806516,-0.048215088,-0.04698023,-0.065860175,0.03664804,-0.00087248953,0.014003842,-0.017021205,0.027052732,0.016722206,-0.030252289,-0.0021855633,0.073438026,-0.0019050153,-0.0061925487,-0.054726243,0.050772734,0.035908844,-0.04249503,0.0025488774,-0.024941662,-0.0005500095,0.036684044,-0.025168406,-0.06999038,-0.06502296,0.004793532,0.046436366,0.013569094,0.038165674,-0.008718837,-0.002173464,-0.07126134,0.02706248,0.04606653,-0.019669363,0.0172046,-0.022926878,-0.026270451,0.030133573,0.009268357,0.0052155303,-0.0039294753,0.043477934,0.008016948,-0.031466417,0.066216916,0.060785092,-0.02606685,-0.05831506,0.020166479,0.005820644,-0.03633302,-0.04621415,0.010051767,-0.027495796,0.018040985,-0.025439769,0.0022983397,-0.0010498238,0.021380961,-0.011522614,0.047045585,-0.0017688131,0.023427838,0.031647373,-0.017778797,0.031233104,-0.031251166,0.017758539,0.019581385,-0.00064991,-0.017214544,-0.010851579,-0.0066727847,0.054654785,-0.024499128,0.015951928,-0.011875422,-0.054677162,0.042566534,-0.010868867,-0.01691553,0.01586361,-0.010704897,-0.037636228,0.033970036,-0.03753952,-0.008739605,-0.030051198,-0.016850514,0.0054261135,-0.02729769,-0.020803496,-0.062918,-0.018328171,-0.04582929,-0.024609566,-0.031775974,0.02847231,0.0085215885,0.017260488,-0.00792419,0.05068204,-0.049252965,0.028013224,0.0061907885,0.08966143,-0.0056316582,-0.05052284,-0.014120144,0.032684296,-0.054485086,0.0054946654,-0.019081138,0.027362896,-0.003409943,0.0053384015,0.039709415,0.011729772,-0.03349586,-0.011342904,0.019916173,0.018161869,0.0008753308,0.03011545,0.028988848,-0.024792759,-0.019319648,-0.029193431,-0.020556029,-0.037424084,0.0005149835,0.013113359,-0.031702124,-0.010445503,-0.043571297,-0.037016947,-0.03591888,0.01420407,0.032262493,0.020468151,-0.01961114,-0.015366053,0.0038702553,0.0058690063,0.0054339836,0.04268707,0.00325014,0.043398067,0.003843021,-0.019959925,0.011482677,0.026598638,0.036
+8000
+392175,-0.005280127,-0.020430382,0.0055206763,0.031601425,0.014017758,-0.030974321,-0.049228188,-0.0117773395,0.0096459845,-0.035775594,0.02194826,0.004054286,-0.05937134,0.018745076,-0.036296673,-0.030984513,-0.007007975,-0.064278975,-0.019869976,0.04016443,-0.025949573,0.014931188,0.0011054912,-0.06614478,-0.038258433,0.03228822,0.00647888,-0.009687425,0.021905102,0.014399174,0.020282587,-0.06446401,0.023248501,0.016636765,0.0001481613,-0.040841114,-0.027348725,0.035630006,-0.0089037055,0.00761152,-0.019437796,-0.027827058,0.024238784,-0.011286907,-0.04046452,0.013662611,0.038635325,-0.040216103,0.0021089779,-0.027172403,0.06615767,0.0069195805,0.022910943,0.015626382,0.012543709,-0.027649775,0.030977292,0.037036546,-0.008080581,0.05613411,-0.016627088,0.0126540335,-0.014986033,-0.026072918,-0.044962604,0.03793559,0.017275764,0.011917329,-0.0040132403,0.029823275,-0.0011553502,0.04445905,0.006548644,0.014833777,0.014407705,-0.012134109,0.012152373,-0.031428203,-0.04982311,-0.02397162,-0.04601711,0.024086509,-0.022186443,-0.018141532,-0.013802222,0.000023986377,0.022468278,0.011736375,0.0022522209,-0.0323159,-0.02625587,0.031072998,0.03639788,0.0030127084,0.025852174,0.018347003,0.01376601,0.022255365,0.017247248,0.016518895,0.007507128,-0.04385437,-0.013514049,0.017195288,0.008476463,-0.027937278,-0.008770224,-0.01792987,0.0765397,-0.010489046,-0.032535937,-0.0016733976,-0.035329986,0.008874031,-0.07649315,0.0073237377,-0.032832876,-0.005567723,0.020435967,-0.035303324,-0.0051520704,0.009782114,0.002730075,0.037950967,0.003957968,0.038142886,-0.016558882,0.04396723,0.03330793,-0.008778561,-0.018424118,0.022824232,0.011113779,-0.017688045,0.014518962,-0.042631425,-0.0016016235,-0.025200194,-0.0038505613,-0.026481546,0.060861036,-0.00070239615,-0.058533415,-0.02778289,0.008295644,-0.01160366,-0.0029112021,0.00059961027,0.0011393693,0.0062096515,0.012612956,-0.012688832,-0.010978183,0.044229712,-0.06674963,0.06057212,-0.04796731,-0.058683414,-0.0069631524,-0.061444417,0.008010159,-0.027335579,-0.017370885,-0.019168103,0.0033929886,0.035614464,0.0056435126,0.026453277,-0.018886732,-0.019332897,0.03486238,0.0693209,-0.03584686,0.08806514,0.010117587,-0.030504977,0.04620702,0.002150473,0.055464674,-0.030393269,-0.024818106,-0.0693634,0.016322676,-0.014672074,-0.011142223,0.026862746,0.059740834,0.028896118,-0.04217418,-0.046252504,-0.0050683594,-0.00914698,-0.009097756,0.016041484,0.060649503,0.008184235,-0.007679758,-0.004909836,-0.08277651,0.25670248,0.08347117,0.0021124664,-0.010844449,0.008243252,0.026153805,0.00039427576,-0.02096061,-0.015914941,-0.024991723,0.0354499,-0.012808373,0.010681922,0.05660487,0.013975408,0.06308322,-0.03695756,-0.011356268,-0.023584828,-0.014855145,-0.027665107,0.024524843,-0.016895697,0.033028893,-0.02940062,0.027380304,0.063669994,-0.01660796,0.016761169,-0.011305382,0.0075881127,-0.021595431,0.032308318,-0.038065717,-0.012303033,0.03769337,-0.008742928,-0.02019671,0.008795225,0.016083356,-0.031513933,0.032862283,-0.0020044886,0.009146378,0.011965396,0.048901036,-0.03642757,0.009626629,0.014053559,-0.016587721,0.09356724,0.007623743,0.03868661,-0.036872774,-0.025379097,0.004648242,0.036476202,-0.00842574,-0.003463428,0.0025372813,-0.010382301,-0.017286701,-0.010176016,0.010603451,-0.034064543,0.0003939855,0.053699054,0.045910127,-0.004919179,-0.011549981,0.008691366,-0.023727428,-0.023020985,-0.008943421,0.04381051,0.005671149,-0.019391045,0.029882973,-0.01433028,-0.0036670098,-0.0058504166,-0.012385595,0.024877919,0.009586192,0.0012920339,0.059846345,-0.014808405,0.0048277983,-0.027143907,0.03664715,0.03527831,0.04511653,-0.006056319,-0.051483773,0.0071076746],[-0.0017117611,-0.013806222,0.0140427835,0.0099035,-0.033484474,-0.04187528,0.013579189,0.006025561,0.019725803,0.03518367,0.04160202,-0.028659038,0.0134488,-0.014520309,-0.020599633,0.025499925,-0.038180765,-0.02235859,-0.018404948,0.0005346854,0.004833147,0.006988033,-0.0951535,0.008242455,0.026688073,0.044472393,-0.02939102,0.017922783,0.052267574,0.06281229,-0.024913615,0.030553795,0.023826307,-0.0323239,-0.030709073,-0.033652313,0.050544865,-0.0041970797,-0.013653324,-0.018727612,0.021985682,-0.013892327,0.025901292,-0.047953196,-0.0016536419,-0.029407436,0.000024783149,-0.03740225,0.003063059,-0.034457494,0.03889732,-0.0031516242,0.013338901,-0.041259337,0.04001779,0.008366796,-0.0305076,-0.00058340444,-0.031397194,0.04581088,0.043227457,0.037696633,0.010722228,-0.044095337,-0.009979016,0.0056079975,-0.0054078177,-0.006209585,0.0010490038,-0.002510002,0.0124205835,-0.008873831,-0.009027494,-0.020855175,-0.020707637,-0.010250031,-0.00043394792,0.003959055,-0.039365802,0.072561555,-0.013538726,0.021568459,0.022756612,0.028932033,-0.039994497,-0.008370749,0.013673442,0.046168994,0.03014499,-0.014606205,0.01147663,0.037256785,-0.041286945,0.012908864,0.029572826,-0.000093409566,-0.00468929,0.011074469,-0.031158578,0.019749632,0.026550721,0.035217214,-0.014043046,0.06905708,-0.07544426,0.008398899,0.002625927,-0.008376757,-0.0056060962,-0.042278577,0.0016664024,0.029193783,0.026463715,-0.010310721,-0.01665852,0.033211026,-0.0017673505,0.03197609,-0.051467206,-0.0029489235,0.025965162,0.004626138,-0.026036287,0.010048633,0.043709114,-0.04209782,-0.02308383,0.040032204,-0.04191553,-0.0090305125,-0.012878391,0.009377938,0.002798082,-0.027503537,0.0669027,-0.014056045,-0.011177361,0.023180705,0.0029903343,-0.037007157,0.042445995,0.015389184,-0.03281702,0.080451,-0.021220803,0.030492727,0.0033840283,0.041523784,-0.05238609,0.049414974,-0.02962607,-0.027265277,0.025386857,0.019292597,-0.04023966,0.04449735,0.0364947,-0.0022900011,0.023350922,-0.0049721166,-0.0047170785,0.028463462,-0.019517422,0.015453353,-0.06348531,0.019858073,-0.052723642,-0.024400163,-0.005752194,-0.003643697,-0.049575645,-0.015698968,-0.040201254,0.015341802,-0.015391198,0.029815918,0.013468675,-0.0064344835,0.023044683,0.022015095,-0.017718913,-0.008593632,0.041089337,0.075136565,-0.005840383,0.02557145,0.037708066,-0.015534779,-0.028636022,-0.04112873,0.011820039,0.04582203,-0.03488017,-0.008452619,-0.0120168775,0.008857265,-0.049488537,-0.026994871,0.02119448,-0.05030359,0.0012847246,0.044361826,-0.0031019328,0.040913764,0.004461439,-0.044232465,0.02744718,0.049634937,-0.014857884,0.0118941,0.0007526348,0.037022743,0.0044981046,-0.02050958,0.05819358,0.003811196,-0.04969539,0.035770588,-0.031130452,0.0006873904,0.020184381,-0.0022761037,0.0008977794,0.037738055,-0.010334893,0.009467653,0.0068120495,0.04478303,0.0025457598,0.0008570994,-0.03623439,0.02186678,-0.022326495,0.06220138,0.03388353,0.0017459561,0.039530683,0.043270048,0.007441693,0.026705597,-0.02457254,0.016662067,0.040571827,-0.0010670148,0.015349165,0.040530104,0.0077806143,-0.03187573,-0.01984936,0.010235719,0.0006402253,0.02802613,0.02415834,0.023148548,-0.05093187,-0.013517961,0.06454763,0.0346796,-0.082649864,-0.019667625,0.004770063,0.040996455,0.0022673614,0.04686771,0.044793107,-0.00021619089,-0.010962808,0.016715594,-0.009676854,-0.008712737,-0.012559623,-0.031055665,-0.05552063,-0.023523096,-0.031713538,0.028808532,0.019291261,-0.01235007,0.019126019,0.029256826,-0.014222916,-0.039682597,-0.021294175,0.012330599,0.021552892,0.06273956,-0.039070345,0.026006738,0.008502806,-0.0011355659,-0.015702741,-0.00817653,0.010964994,-0.015907725,0.015569019,-0.005221546,-0.0055038505,0.0037215315,-0.062255062,-0.05367156,-0.029097302,-0.04113679,-0.009616667,0.007366703,-0.007957682,0.013009884,-0.013064551,-0.03146413,0.045321632,0.008844713,-0.060017463,0.03386659,0.021915905,-0.007437502,-0.042609643,0.0342535,0.041416157,0.050911736,-0.026530359,0.017798603,0.013119627,0.010199354,-0.03253271,-0.03495655,0.008288069,0.021119816,0.052172545,-0.10699751,0.030346109,0.036063343,-0.040088285,-0.06525054,-0.04807921,0.030478755,0.021352438,-0.0018992389,-0.011334947,-0.033947777,-0.044853494,0.014817032,0.03961571,-0.036935523,0.01813657,0.060542684,-0.035713628,-0.026061136,0.010690675,0.01866898,-0.011809139,0.03261487,0.0073090307,0.036496956,0.009481769,0.018997962,-0.0044658883,0.011964492,-0.013678462,0.007202357,0.048219487,-0.013657803,0.017788084,0.038680665,0.02158447,-0.050236143,-0.021112233,-0.048146985,0.042807598,0.030539164,0.018461749,-0.06714043,0.032656904,0.010207392,-0.07417051,0.039440043,0.009092297,-0.010793071,0.050280236,-0.010452059,0.03758924,-0.023679454,0.02485623,-0.04232632,0.019405212,0.06696742,0.052521776,-0.0089736795,-0.057003114,0.018132126,0.016558478,-0.0012427523,-0.034611974,-0.022268303,-0.009163691,0.0070104105,-0.028851341,-0.009218412,0.02076404,-0.0026006466,0.026040519,0.027045863,0.039562978,-0.0026361842,0.0059097493,0.033789236,-0.010608785,0.0018083422,-0.029237632,0.062040947,0.0024097092,-0.019913914,-0.033351086,0.0027948667,-0.017494543,0.030021118,-0.019550178,-0.0018024992,-0.05306845,0.00451017,0.042164326,0.028910438,-0.06419057,-0.0017278831,-0.02056595,0.023737144,0.028438745,-0.04165045,-0.007615599,-0.06296329,0.034930374,-0.00627645,0.021870041,-0.023357872,0.0026549154,-0.0036288076,-0.030231832,0.015776353,0.023190206,-0.033160567,0.01102747,-0.0037646166,0.052901667,0.02803551,0.0034349763,-0.005011043,-0.031955246,-0.000008129851,0.01902792,0.0140264705,-0.054860633,-0.009550438,0.011409287,-0.05039582,-0.022295168,-0.0119148595,0.0021802709,-0.004908798,-0.008591268,0.00243455,0.035174973,-0.006784323,-0.004355847,-0.020425836,0.013183506,0.008715535,-0.011556672,0.036849625,-0.007265983,-0.043721482,0.034400955,0.024427949,0.046392206,-0.0161368,-0.0033764527,-0.031697433,0.03434707,-0.025037806,-0.023388887,0.011011221,-0.016044168,-0.03500617,-0.010951111,-0.0039813383,0.0007052962,0.002265512,-0.06197857,-0.06584683,-0.00363005,-0.0043603512,-0.015276965,0.0057650246,0.012714371,0.030170593,-0.008608744,-0.050780647,-0.00029739377,-0.020272972,-0.03044709,0.00027184968,0.014062332,0.024259305,0.02164831,0.02686855,-0.000104440565,-0.027120266,0.008559997,0.0042015407,-0.04996273,-0.008722844,0.012132219,0.00440759,0.032823138,0.021543412,-0.029143605,-0.035469007,0.0037047872,0.0057324152,-0.036217563,0.040576585,-0.0060814624,0.024842167,0.027464908,-0.053866934,-0.014844258,0.040969968,0.025204636,0.024834856,0.019309793,-0.017976724,-0.06218515,-0.039544463,-0.01300103,-0.050911784,-0.03371528,-0.026044322,-0.047875073,-0.02553315,-0.008035513,-0.00770845,-0.016197598,0.011484495,-0.04356366,-0.001533092,-0.019705918,-0.026537322,-0.0014981674,-0.014406894,0.008780289,0.07096848,-0.022351598,0.022439506,-0.017913267,-0.036162127,-0.008528834,0.021208415,-0.011025234,-0.025879806,0.031817988,0.007076525,0.033521663,0.01679176,0.001707492,0.03877957,-0.055793677,-0.05761741,-0.02398182,-0.023630744,-0.014042402,-0.008623028,0.02289863,-0.03727496,-0.00996725,-0.017280083,0.04151244,0.049425546,0.01747958,-0.027434003,-0.04426367,-0.057289544,-0.052716672,0.03768263,0.020571796,0.003985532,-0.020471215,0.02410701,0.031299908,-0.025511658,0.039565697,0.059926815,0.0097915325,0.011242106,-0.05502234,0.036162652,0.019271333,-0.03714587,-0.0028783334,-0.04506029,-0.025275078,0.040702716,-0.029166033,-0.058646493,-0.061032064,-0.009341573,0.031990457,-0.019950986,0.016630573,-0.005778461,0.0015289121,-0.06323322,0.028406639,0.030228687,-0.025451047,0.0329328,-0.009894995,-0.014237586,0.019667994,0.027614359,-0.02491704,0.0013291038,0.04444107,-0.01463948,-0.03814074,0.053346,0.05836899,-0.030409437,-0.07297346,0.020941906,0.00076998066,-0.021060798,-0.025451194,0.019175865,-0.019194076,0.0027423762,-0.029389005,-0.007518607,0.0023357333,0.037271164,-0.018059073,0.024311174,0.005491138,0.005916463,0.034530994,-0.015544081,0.022307888,-0.052902024,-0.0030459724,0.010877224,0.004509671,-0.011833902,-0.002587803,-0.02937205,0.05796015,-0.01277069,0.03582241,-0.00907274,-0.042210516,0.03903982,-0.013291156,-0.0244352,-0.004658708,0.0028072165,-0.019422721,0.017104853,-0.047511596,0.005750382,-0.030201567,-0.020365354,0.016666768,-0.018892778,0.0031376353,-0.055157084,-0.07142893,-0.031732358,-0.020788547,0.005450846,0.056075603,-0.011496299,0.048136964,-0.01658833,0.057168964,-0.051633134,0.044353075,-0.0134486025,0.0897419,-0.0401551,-0.035810713,-0.028609265,0.03603783,-0.028371701,-0.014347405,-0.03082066,0.022838464,-0.015499275,0.03332545,0.048157148,0.006673182,-0.016589308,-0.025673354,0.05222721,0.023112291,0.008090639,0.030138938,-0.00010930322,-0.0043422696,-0.03009756,-0.002407412,0.007821053,-0.045075394,0.0013398521,-0.022633877,-0.025400545,-0.014194786,-0.042897407,-0.040061705,-0.023746489,0.0051810094,0.045168053,0.056513745,-0.017692357,-0.025988271,0.0026429212,0.02849462,0.017118111,0.028352665,0.0061527346,0.039385825,-0.0015531405,-0.0044608046,0.00072211627,0.0036998123,0.027841548,-0.004660102,-0.01054944,0.011032458,0.006362515,0.01697591,-0.019002618,-0.059296645,-0.024051473,0.019231847,-0.012627025,0.023424571,0.018519389,-0.03572287,0.027588874,-0.006239658,-0.030839482,0.0050750077,-0.06867668,-0.0036543668,0.023916624,-0.01289387,0.020600308,0.026737027,-0.06650886,-0.039659247,0.0013028976,-0.0076331254,-0.0033960436,0.014864024,0.01965789,0.029275648,-0.028068006,0.010778242,0.016907234,0.002571643,-0.03872735,-0.026076995,0.0019892661,0.012589257,-0.034871567,-0.0033024042,-0.04514466,0.014124468,-0.02630435,-0.025205411,0.016502652,0.031045727,-0.041871436,0.0065309023,-0.052496087,0.033896793,-0.008057519,0.00070322276,-0.0009007375,-0.0036530169,-0.021564918,0.044928465,0.028675554,0.013337246,0.02322553,-0.006268962,0.014852845,-0.021422738,-0.010432656,-0.037415333,0.030965347,-0.00887359,0.025176886,-0.00047452137,0.036261313,-0.010109899,-0.0033513636,0.0013703586,0.025724135,0.0026997747,0.013097983,0.015537394,-0.022473205,-0.023859685,-0.040742364,-0.040741555,0.018631142,-0.025224986,-0.010648338,-0.006137829,0.018533446,0.006326714,0.017360106,-0.011722904,-0.02381765,-0.020666396,0.0067747994,0.027021809,0.0052461484,0.03465062,0.04049231,0.015852092,0.022973726,0.013617815,-0.0054822755,-0.010985248,-0.009902181,-0.01968818,0.0029222562,-0.009594514,-0.02862274,-0.031550135,-0.030274618,0.05418579,-0.0026813378,-0.0018105839,0.0070285704,-0.00999277,0.0005811594,-0.059648287,0.015059203,-0.024048856,0.005295053,0.009091635,-0.03411395,0.002826487,-0.003553557,-0.008815037,0.04046199,-0.0018785631,0.008993615,-0.012441549,0.040524956,0.0380543,-0.0062985104,0.004199825,0.013648039,0.0028072777,-0.025715798,0.018295022,-0.025235606,0.011468598,-0.002483642,-0.022190249,-0.01801126,0.048006948,-0.014679455,-0.06408687,-0.047880404,0.012408797,-0.008149395,0.020014262,0.019504035,-0.0047473903,0.005796666,-0.0070980433,-0.013015041,-0.002758047,0.04482827,-0.067819975,0.06291401,-0.03748754,-0.063230544,-0.008391668,-0.030302443,-0.021375172,-0.0026036177,-0.0029309539,-0.046857428,0.027286291,0.046328455,0.0041605155,0.040156316,-0.0055671,0.0037301776,0.042031277,0.06851874,-0.03502347,0.084436946,0.005658931,-0.009783882,0.034483332,-0.048547395,0.056999557,-0.0018865969,-0.032255497,-0.032441735,0.02312826,-0.059738323,-0.01683226,0.04342626,0.037547015,0.049908385,-0.058446743,-0.06752841,0.007715969,-0.023946788,-0.011817833,-0.0065142005,0.059108526,0.0012861952,0.002189492,-0.00077328284,-0.07638381,0.25520742,0.06970358,0.025837734,0.00042802043,-0.018772889,0.021492414,-0.003089492,-0.008293302,0.0062386286,-0.023920959,0.03053543,-0.039035592,0.012362309,0.04363487,0.014294316,0.05581155,-0.04048703,-0.0015809897,-0.031768683,-0.03284596,-0.019411612,0.027343484,-0.009727353,0.028629564,-0.022149058,0.01876162,0.060934506,-0.014734955,0.015682047,0.007828846,0.018125622,-0.006236592,0.027902357,-0.023907883,0.007638313,0.048661266,-0.01742127,-0.045407195,0.0045961225,0.017349932,-0.04093502,0.019237693,-0.0040762457,0.0014579167,0.018820351,0.037895408,-0.018479964,0.017066635,-0.012701593,-0.032919955,0.0719161,-0.007357648,0.04700292,-0.064410925,-0.014896458,0.010777165,0.025604285,-0.032304898,0.008652463,-0.018229071,0.007830523,-0.0051617073,-0.011283553,-0.015483936,0.001052415,0.009528856,0.06695812,0.033458713,-0.053868648,-0.032384716,-0.0016909401,-0.026362957,-0.031887837,0.010476082,-0.00066212926,0.013317653,-0.00782236,0.0012872587,-0.013546837,-0.021931492,-0.022093711,-0.007874231,0.034319557,-0.0033247056,0.004742761,0.042299267,0.0010903941,0.019300729,-0.07751501,0.03278322,0.030229427,0.033055875,-0.036130298,-0.058177147,0.005247407],[0.023255518,-0.016005468,0.0084276665,0.0013046456,-0.016737062,-0.033556942,0.021216841,0.018841447,0.009849966,0.012210747,0.02466503,-0.028143613,0.010064808,-0.026429448,-0.016462201,-0.009941744,-0.048737943,0.008302955,-0.019369075,-0.023128089,0.0062736403,0.0007063719,-0.10107236,0.022985404,0.029268801,0.03568775,-0.023902176,0.025324795,0.03637909,0.060122084,-0.019860044,0.014084803,0.04664955,-0.027077913,-0.01656705,-0.039883837,0.03822627,-0.008617597,-0.0062205894,-0.030148352,0.014002515,-0.01753761,0.016772462,-0.02541551,-0.02544257,-0.023802714,-0.016545773,-0.016030421,0.017613923,-0.023007428,0.028483706,-0.0047246558,0.00012654786,-0.05109401,0.048413046,0.020163404,-0.04233274,-0.012363234,-0.029143803,0.047144614,0.030063266,0.014149356,0.022127254,-0.030448224,-0.012165775,0.013311483,-0.015420305,0.010714143,0.010729073,-0.01972614,0.01586069,-0.014637712,-0.013175648,-0.0024581316,-0.022217713,-0.012910104,0.0021543764,0.0181262,-0.06668057,0.051754165,0.0012448864,0.029688746,0.020539377,0.04084274,-0.021339832,-0.01754491,-0.0076181465,0.039000988,0.0146333845,-0.012869828,0.011525163,0.027905786,-0.03296147,0.01258258,0.036408097,-0.007417725,-0.021877645,-0.0013147506,-0.03324209,0.0037050187,0.026785543,0.029619608,-0.031337295,0.03866796,-0.060540397,0.0130545255,-0.02692777,-0.012012123,0.009679354,-0.020957429,0.004313643,0.00945537,0.008316247,0.0149717685,-0.016477,0.02379015,-0.016083539,0.026755102,-0.04559548,0.0069641513,0.02249741,0.006884884,-0.023062099,0.023555273,0.031902008,-0.03006993,-0.024148514,0.038125012,-0.016484216,0.0101757785,0.005860234,-0.017725324,0.0059635723,-0.017826555,0.046134703,-0.00044337552,-0.009303312,0.02578469,-0.007823313,-0.032142438,0.033116065,0.021556022,-0.014551149,0.07941353,-0.027752794,0.011085842,0.014485203,0.034839682,-0.04396237,0.057386227,-0.06303137,-0.011949641,0.033734255,0.02446732,-0.017516734,0.031108463,0.017904514,0.0061164023,0.012430912,-0.0050723595,0.0009536589,0.045296248,-0.016219512,0.010182095,-0.07034576,0.028168736,-0.043689623,-0.025863856,-0.048958056,0.007911673,-0.04807656,0.0016476877,-0.026361478,0.017193357,-0.023422131,0.050397087,0.0033375875,0.0010173696,-0.0012219955,0.019267749,-0.010455409,-0.02237269,0.02712012,0.085476294,0.014158787,0.017890403,0.049901463,-0.008720714,-0.042059604,-0.03391912,0.011081424,0.043868776,-0.043692473,-0.013631872,0.009047304,0.0035952243,-0.019064998,-0.050639115,0.019859584,-0.043750465,-0.009540751,0.03839604,-0.009425973,0.023675486,0.005589376,-0.042841155,0.038200628,0.040128354,-0.026109088,0.018805517,0.03218702,0.027716156,-0.0119608585,-0.04014879,0.030803207,0.001606088,-0.062499862,0.067862764,-0.016689448,-0.022465877,0.03076711,0.01403939,-0.010068872,0.024635669,-0.013678605,0.003978529,-0.013297152,0.05405052,0.0035045254,-0.002366771,-0.0031455273,0.006579562,0.007065634,0.074789524,0.017014176,0.0096284775,0.042224776,0.021818625,0.018831842,0.017003939,-0.029897384,0.017706176,0.022928864,0.00014398283,0.018895268,0.06663291,0.024257537,-0.023809535,-0.0013286535,-0.0021067597,-0.0058407593,0.01278681,0.00050877297,0.023971211,-0.069013745,-0.05106413,0.037444346,0.039337434,-0.06346112,-0.014109505,-0.010347116,0.03519398,-0.009510018,0.05572256,0.058202546,0.00053958985,0.004940977,0.025835827,-0.019913573,-0.008784886,-0.023990277,-0.012455208,-0.039332367,0.0037913846,-0.046034854,0.0341475,0.0031834038,-0.026776757,0.0141112665,0.016172256,0.0004068668,-0.05322909,-0.018341033,0.041444782,0.02340731,0.05971311,-0.046224922,0.009032866,0.0323935,0.0071403887,-0.026453577,0.0049542584,0.011495056,-0.011194232,0.04319756,0.016561622,-0.039133716,0.026073663,-0.04117352,-0.049252834,-0.040038645,-0.029824002,-0.008716529,0.018981738,0.005234282,0.00010777754,-0.03424174,-0.01659179,0.039951716,0.012010161,-0.055510946,0.036277194,0.028082993,0.0042107636,-0.053022973,0.033776436,0.024582379,0.04011241,-0.012110181,-0.0042356206,-0.011204895,-0.0070401146,-0.049485173,-0.04173114,0.017567124,0.015292755,0.07133127,-0.090825155,0.024103558,-0.00395296,-0.02686659,-0.06426598,-0.04818523,0.034026545,0.021973774,-0.0056250975,-0.014884389,-0.04664884,-0.028620949,0.0015860357,0.026631309,-0.036749553,0.037963472,0.086106256,-0.02371377,-0.022641268,0.0027440838,0.017044298,-0.0134485215,0.024071084,0.025497226,0.0315029,-0.014578559,0.023613572,-0.011745935,-0.00419658,-0.017991625,0.029541658,0.035395674,-0.01865413,0.021241384,0.010075726,0.014342607,-0.04820121,-0.029318554,-0.05362466,0.05589894,0.011673435,0.029332615,-0.057298508,0.051282316,0.0071805306,-0.05748147,0.046605214,0.0033533622,0.0024404824,0.048961144,0.0026396178,0.058455918,-0.035211306,0.039235227,-0.043994132,0.031395253,0.07022192,0.050040957,-0.009312513,-0.060221016,0.009033696,0.023455149,-0.00029940906,-0.047276307,0.005154101,-0.010026613,-0.004260988,-0.03775295,-0.013853673,0.038799185,0.019597119,0.037772104,0.040708695,0.029247109,0.012039871,0.024102662,0.038713362,0.020342475,0.010698058,-0.033162072,0.04576094,0.002736529,-0.009008755,-0.039874483,0.003415076,-0.025438018,0.021318473,-0.007435153,0.00059687486,-0.053651728,0.012254616,0.021842862,0.03480511,-0.07852453,0.00030714518,-0.012624397,0.012087698,0.0047615794,-0.028225223,0.007729737,-0.069805816,0.03601456,0.0075495564,0.020780247,-0.02866272,0.0148473885,-0.028945493,-0.020741098,0.009895252,0.02528393,-0.02069319,0.03593912,-0.022036146,0.02541889,0.018597232,0.011910281,0.004986224,-0.026527494,0.026291339,0.016310643,0.014849184,-0.052525993,-0.039540026,0.002335761,-0.060780328,0.003764258,-0.023827337,0.008243942,-0.030701462,-0.014372986,0.0035942467,0.02738574,-0.006613801,-0.012349144,-0.03261834,0.020265598,-0.02297537,0.0036730347,0.0317078,-0.004151408,-0.026655551,0.045242745,0.012357472,0.017847912,-0.00008299211,0.008970523,-0.011364496,0.0050307796,-0.024908576,-0.017653126,0.021963518,-0.013759407,-0.01597405,-0.032512337,0.0145866135,-0.008876193,0.0028344542,-0.047896434,-0.07707094,0.0014291944,-0.004515951,-0.018350169,0.0036497815,0.023764199,0.027251882,-0.0049105687,-0.045860287,0.009738362,-0.036204148,-0.023258552,0.0031713448,0.0067721657,0.03508284,0.017056242,0.017719192,-0.011798129,-0.012854499,0.02530738,0.013670021,-0.050235845,-0.0120336795,0.008369396,0.02194595,0.052063838,-0.0065873074,-0.006200123,-0.016314697,0.034270074,0.012924259,-0.037093554,0.03166607,-0.026729265,0.033159595,0.03473226,-0.03398077,-0.029971128,0.04045857,0.011218046,0.03492417,-0.012837599,-0.015148942,-0.064044125,-0.049981218,0.0075136065,-0.025574291,-0.05805998,-0.04075058,-0.032610945,-0.009213059,-0.0015412304,0.010622364,0.004173189,0.0006327141,-0.06968285,0.027234524,-0.01733175,-0.018256154,-0.017153988,-0.012375092,-0.00142569,0.0649227,0.0010409912,0.01584113,-0.030443689,-0.017162906,0.0059243115,0.011149838,-0.03720229,-0.027399734,0.006784875,-0.020300489,0.0061335643,0.026513908,0.0009932664,0.028430214,-0.0690592,-0.055481438,-0.03651636,-0.0067051416,-0.01895355,-0.0040726485,0.014354242,-0.01630044,-0.022511875,0.0027085294,0.051405933,0.056327302,0.0067930054,-0.010019788,-0.043922752,-0.04329559,-0.057103276,0.009254169,0.011830965,0.0030688588,-0.02260215,0.018981107,0.039329838,-0.015709894,0.031282883,0.06327996,-0.014709494,-0.0136411125,-0.06927576,0.035256,0.022489954,-0.015878739,-0.0037010189,-0.045265693,-0.010606364,0.03160178,-0.022934636,-0.06405899,-0.04635937,0.016158381,0.062372845,-0.016311808,0.04321173,-0.0019569176,-0.0060244305,-0.06950183,0.040852107,0.032098126,0.0018299819,0.030793134,-0.033270806,-0.021886818,0.03053879,0.023745207,-0.00030511507,0.008705848,0.04021183,0.005435483,-0.037596777,0.03660508,0.07328686,-0.038736843,-0.06463698,0.021075485,0.0045166127,-0.031721964,-0.021502318,0.022441115,-0.034539945,0.025926035,-0.028175583,-0.0032170208,0.0002570162,0.018183174,-0.03421824,0.02934137,0.0027568894,0.0056407186,0.045188524,-0.029521711,0.03610807,-0.045265038,0.016106134,0.0078558875,0.003965197,-0.025810128,-0.007911992,-0.029485561,0.03519541,-0.031603273,0.021010341,-0.012622776,-0.04148136,0.02639677,-0.0036631417,-0.028605483,0.011647463,0.0027610806,-0.033271734,0.0086977165,-0.03992825,-0.0099193845,-0.019945249,-0.02124322,0.017235506,-0.004965233,-0.03427079,-0.04904733,-0.0435024,-0.03836869,-0.011916387,-0.025159648,0.036485277,0.017638598,-0.00645427,0.0051740455,0.044025477,-0.055034705,0.052344866,-0.0015019816,0.088528045,-0.033584196,-0.048144016,-0.033437166,0.023614008,-0.039409444,0.010573848,-0.025353715,0.024293512,-0.015220491,0.02582894,0.031333487,0.009421574,-0.024591822,-0.004451206,0.02879408,0.0217424,0.0153854145,0.049089227,0.0076806997,-0.014760372,-0.06263023,-0.002486474,-0.004057056,-0.03585847,-0.0017016992,-0.00860356,-0.0061202017,-0.017892156,-0.02164124,-0.025224015,-0.036734916,0.033861086,0.0142081715,0.026536828,-0.02687908,0.0019476584,-0.0013498716,0.00871146,0.015872875,0.0196739,-0.014442013,0.029743083,0.021444257,-0.0050111557,0.020427264,0.00008030709,0.02990348,-0.0036434955,-0.0015140973,0.00470397,0.014452294,-0.009444839,-0.037921384,-0.052660722,-0.041680813,0.0066999802,-0.009326563,0.028562646,0.016414156,-0.05620997,0.042092856,-0.010570982,-0.023502422,0.002778808,-0.08327099,-0.011163556,0.02927546,-0.024333417,0.0076781954,0.033402827,-0.066312924,-0.049013987,0.0044457032,0.0066484604,-0.009840254,0.009596833,0.027923133,0.032632053,-0.031394094,0.02207971,0.012387439,0.02294001,-0.026831418,-0.03435516,-0.004832278,-0.0011102748,-0.025118709,-0.0005061121,-0.03594871,0.03046319,-0.011803143,-0.06409605,-0.008131589,0.016488565,-0.025770068,0.022903584,-0.029797161,0.047963336,-0.012975735,0.0044598165,-0.0006908754,0.008876308,-0.020959724,0.023736693,0.007008405,0.02323316,0.02485495,-0.013884184,0.016353354,-0.0027549972,-0.032085825,-0.01759754,0.043593362,0.011776654,0.010607179,-0.014921895,0.03570335,-0.007439012,0.01111223,0.016050814,0.04137073,-0.01178811,0.0009375802,0.0068454747,-0.015020697,-0.01296253,-0.02797312,-0.040288564,0.027798152,-0.03539375,-0.028547442,-0.011414004,0.006036335,0.022424823,0.020471737,-0.033549804,-0.015482861,-0.026102081,0.007284274,0.023827527,0.0008378004,0.041656874,0.036999453,0.013166722,0.014773967,0.023136612,0.028764673,-0.0104345605,-0.032097157,-0.017189482,-0.016851244,-0.008163629,-0.022127723,-0.023707446,-0.038531505,0.032553904,-0.012998981,0.0073235333,-0.018964324,-0.019458715,0.008877753,-0.042417724,0.009945394,-0.03227639,-0.022469936,-0.0056473752,-0.033975054,-0.0055529466,0.004197972,0.0062387334,0.033348273,0.0020714446,-0.0081477575,-0.04750925,0.043521713,0.04267804,-0.007395046,-0.01907402,0.02077019,-0.00085409847,-0.023652546,0.011751463,-0.052930653,0.0155667495,-0.001255612,-0.0278399,-0.026117925,0.04640672,0.0061699585,-0.06305805,-0.037960887,0.019699212,0.010683726,0.040736746,0.029579543,0.03588206,0.023708886,0.03559401,-0.014750711,-0.00216503,0.030068913,-0.047766477,0.05568967,-0.05505679,-0.044591393,-0.002051676,-0.026255537,-0.017634833,-0.011900293,-0.010567628,-0.023589913,0.018241195,0.06310161,0.017228542,0.027027048,-0.0010068251,0.00019394468,0.035653654,0.06292843,-0.03050571,0.105138175,0.021839779,-0.028959544,0.055838864,-0.030059516,0.03433438,-0.03179505,-0.03310698,-0.04534165,0.021040976,-0.055310436,-0.019365259,0.036530305,0.049760707,0.044225577,-0.051295698,-0.030656906,-0.011282164,-0.027647888,0.0046718856,-0.010457241,0.062245023,-0.024283253,-0.005123808,0.0035057864,-0.0781866,0.25852624,0.075848795,0.00659617,0.0030588475,-0.0016838695,0.02373885,0.0075750393,0.0036245335,-0.0074060815,-0.023504153,0.030339323,-0.02434633,0.039275553,0.051083867,-0.00067877176,0.06290878,-0.049853865,0.0035693697,-0.04219618,-0.041398928,-0.026021754,0.013991031,-0.00960425,0.04563191,-0.025614405,-0.0014999252,0.06874048,0.0035075222,-0.000923433,-0.0011930161,0.010610264,-0.01586635,0.04465268,-0.028290246,-0.014811492,0.03053287,-0.007885793,-0.02295921,0.0212658,0.017879402,-0.039574698,0.020837026,-0.0036516567,-0.01732039,0.017308714,0.017074538,-0.06316726,0.0050116344,-0.018053902,-0.03897131,0.074288644,0.006907102,0.042300176,-0.042320926,-0.01239361,0.014499986,0.03676163,-0.004027851,0.008123911,-0.0037348915,-0.011182662,-0.020451065,0.009337059,0.022635408,-0.041436415,0.020324934,0.04620276,0.039196398,-0.034035955,-0.018829701,-0.0012734229,-0.020133002,-0.037436355,0.010264952,0.0048176725,-0.022125643,-0.0037833657,0.011045901,-0.0007994642,-0.016222155,-0.008131579,-0.0035029678,0.011982258,0.0070776087,0.02279635,0.030661723,-0.0022452076,0.023670644,-0.055310927,0.038926348,0.032971323,0.043163758,-0.020169152,-0.05610099,0.01479041],[-0.0042344034,-0.04762669,0.029937223,0.012531025,-0.022518652,-0.0231771,0.030596921,-0.008999004,0.0067104027,0.02453186,0.037303746,-0.005916516,0.013932565,-0.02019582,-0.000794761,0.0042824335,-0.020090524,-0.014676968,-0.052686792,0.0046161637,0.009441282,-0.0012921806,-0.10505995,0.004358898,0.0036131737,0.042061307,0.008109533,0.02005226,0.04970009,0.047463153,-0.007729776,0.015730333,0.01877153,-0.04084744,-0.023737138,-0.010972325,0.049349558,0.020886563,0.0022292347,-0.034319326,0.024319079,-0.0155535145,0.04003861,-0.044944365,-0.056249805,-0.029270932,-0.0046850466,0.0039695525,0.032379635,-0.039250333,0.035489075,0.0038979463,0.018169452,-0.029528752,0.009088858,0.017479671,-0.043639846,0.010663021,-0.029950881,0.018087415,0.0330957,0.03225969,0.032868173,-0.031246223,-0.04121247,0.0043381527,0.022227563,0.020233728,-0.0007795277,0.0043738997,0.028603643,0.008640293,-0.0155606475,-0.01504837,-0.01655054,-0.005292517,0.031926464,0.038830943,-0.037842672,0.071252644,-0.01384308,0.023015859,0.03159543,0.037635617,-0.037522342,-0.04068684,0.02370779,0.024568494,0.008453192,-0.0147630265,0.006032872,0.012866394,-0.03399464,0.00016124392,0.025472334,0.020051707,-0.00857555,0.0022387477,-0.052878685,0.0011812792,0.037530497,0.030930739,0.0100942,0.049819957,-0.029261159,0.012730345,-0.0032728424,-0.005163187,-0.012816398,-0.03236496,0.0053166742,0.022739667,0.008486551,-0.0009074207,-0.006014726,0.026641652,0.0031586373,0.014425552,-0.012157955,0.033469927,0.012309389,0.021843342,-0.026770033,0.013996781,-0.0033012722,-0.04477335,-0.050206013,0.065630175,-0.022548664,-0.017526586,-0.006923838,-0.00016431107,-0.028131291,-0.023033114,0.04781932,-0.021688474,0.0039052905,0.0018076272,0.037434794,-0.029792693,0.029074494,0.007405717,-0.041362755,0.08208511,-0.026022255,0.035965648,0.006297372,0.0052408064,-0.037745122,0.05532944,-0.039247435,-0.0017824876,0.01801579,0.03254534,-0.026868628,0.04314068,0.0113792475,0.0004731279,-0.025731502,-0.018069051,-0.004967471,0.0065678055,0.001080203,0.027032124,-0.068874136,0.040737204,-0.044522773,-0.0043560225,-0.023548622,-0.0057009235,-0.01586966,-0.04028219,-0.036602158,0.012643139,-0.029661836,0.033034857,-0.0075690746,-0.0034206037,0.017415328,0.015615144,0.019843813,0.011545417,0.021653643,0.06106773,-0.00088111934,0.018540261,0.019686434,-0.0077813617,-0.04025545,-0.03582696,0.022843549,0.03162571,-0.04677774,0.009726671,0.011128881,-0.0017264022,-0.027505249,0.0067405417,-0.03554062,-0.04979836,-0.0003152477,0.031345233,0.0052489596,0.03815001,0.010023012,-0.023681019,0.013945478,0.04860005,-0.004303252,-0.013792791,0.016022092,0.059507854,-0.0022370373,-0.01006262,0.04934961,-0.015893377,-0.042064864,0.030866848,-0.037103232,0.0078559825,0.040210444,0.044071373,0.024698794,0.012062871,-0.016809117,0.024954138,0.011122996,0.044062402,-0.0032514236,0.026903585,-0.039277695,0.023689957,-0.0048737023,0.036760036,0.035576545,0.040441018,0.030248333,0.027988335,-0.014321197,0.011594347,-0.015789447,0.0075376765,0.021014858,0.0043047816,0.029977465,0.037233237,-0.0015578206,-0.026304565,-0.006562878,0.011331752,-0.036391143,0.01949922,-0.013893798,0.0127209015,-0.054417327,-0.050199937,0.074300185,0.05494286,-0.0717321,-0.011911519,-0.0041079572,0.047982775,0.0032117874,0.040280454,0.030777406,0.024783745,-0.0056215795,0.012963606,-0.009330069,-0.04068983,-0.010873355,-0.03827507,-0.062642045,0.0010117339,-0.04441284,0.0349982,0.013786473,-0.0146464575,-0.013818521,0.0040589324,-0.009895412,-0.06375243,0.012029766,-0.01104329,0.014865807,0.037366003,-0.007043218,0.023256306,-0.008139115,0.029811593,-0.016967459,0.0
+8000
+06499984,0.016112665,-0.017843403,0.013523391,0.017522136,-0.047838334,0.005682126,-0.02399158,-0.032302354,-0.044431932,-0.010962235,-0.008000636,-0.016823253,-0.030675853,-0.009138646,-0.01799207,-0.04236372,0.051186018,0.0015296575,-0.07437986,0.02090583,0.029683102,-0.008210156,-0.041582134,0.02124209,0.005951228,0.050124906,-0.053896192,0.0067020576,0.0051560514,0.027655063,-0.033668034,-0.007473791,0.01942982,0.023759913,0.011332112,-0.10505104,0.02448545,0.0073938654,-0.055951104,-0.075514115,-0.038524583,0.020240992,0.019196719,-0.019157527,-0.007567199,-0.003503169,-0.017698752,0.004601832,0.052351262,-0.019309493,0.0074862773,0.05586163,-0.012300438,-0.03290876,0.010191947,-0.00096766226,-0.00068860233,0.028251803,0.011943553,0.03758239,0.017565021,0.03034101,-0.016691074,-0.0033365672,-0.029490728,0.031752937,0.0358268,-0.02783532,0.015872505,0.04618573,-0.0040655555,-0.04343669,0.0049015842,-0.034390487,0.017336613,0.045997787,0.024436638,-0.050268024,0.05893602,-0.0028660847,-0.04731701,0.0367971,0.001229783,-0.02192234,0.06602973,-0.009765954,0.064205,-0.04186166,0.016766086,-0.035459056,-0.011313656,0.043679178,0.026693596,0.0049697184,-0.012305433,-0.030641107,0.010027014,-0.0314284,-0.06455556,-0.040468905,0.000037907314,0.008040498,-0.038554396,-0.016207287,0.046764303,-0.023189038,0.035203118,0.039522465,0.061860677,-0.016561577,0.01331944,0.0129469475,0.002550445,-0.0053323647,-0.03310374,0.057655543,-0.0190124,0.0006309726,-0.058257073,-0.019159887,-0.018744882,0.043479666,-0.025012225,-0.00083628844,-0.027373442,0.016678909,0.030737571,0.037661765,-0.052801676,-0.0057054763,-0.019527636,-0.019116148,-0.0045162276,-0.030372541,-0.012375226,-0.04007594,0.035983954,-0.0029140199,0.009172763,-0.009593303,0.023051865,-0.04056847,-0.024047894,0.034819297,0.000016708784,-0.014994516,0.03813568,-0.008821617,0.03398936,-0.011303923,-0.018533176,0.010517157,-0.00825831,0.006466053,0.023153538,0.036115896,-0.048703082,-0.003847548,0.027093794,-0.05595414,0.00047023315,-0.037967615,-0.01109108,-0.02433674,0.009146182,-0.0031142088,0.0026289257,0.0018055382,0.01810065,-0.033254378,0.013477298,-0.0063419915,-0.0064363144,0.039228216,-0.005310331,-0.033560935,0.033128444,0.018383022,0.0019752968,-0.0027030362,-0.002365003,-0.02975522,0.007166255,-0.04361417,-0.0049987673,-0.008228434,-0.01280674,-0.017689059,-0.03158328,0.013274272,-0.019198436,-0.0012729963,-0.050579697,-0.05450435,0.0005441819,0.03128092,-0.038765788,0.0056435782,0.009406733,0.007096012,0.0021253596,-0.0587552,0.011256839,-0.006384796,-0.038805358,-0.011097253,0.0029628805,0.023950588,0.0065420787,0.022168232,0.010561799,0.009640809,0.009529594,0.031853843,-0.044371642,0.019588899,-0.004159188,0.013537459,0.03627053,-0.0017418409,-0.042632546,-0.01094504,-0.0017232099,0.011759725,-0.014763731,0.007824829,-0.0054719094,0.05307397,0.033000685,-0.04702067,-0.016955268,0.06564483,-0.010255651,0.042738687,0.0022157053,-0.055976633,-0.039798997,-0.01934774,-0.005501508,-0.041130368,-0.055963967,-0.0045502507,-0.06743483,-0.028973188,0.019956557,0.025649467,-0.024427898,0.036803022,-0.054285977,-0.015669895,-0.03785522,-0.020627605,-0.00026436505,-0.014949301,-0.0099239955,0.07297925,-0.020015217,0.012539419,-0.00819682,-0.03828144,0.0122594545,0.042062197,-0.05194199,-0.01711225,0.034166094,-0.0052006883,0.012232811,-0.01407492,-0.009043548,0.046860315,-0.052434117,-0.035797246,-0.016137943,-0.016654978,-0.06898259,-0.0024331028,0.027371855,-0.0014447769,-0.005413741,-0.040732067,0.038080823,0.034491297,0.030654103,-0.02872396,-0.059361488,-0.037064243,-0.015883053,0.02472936,-0.012661343,0.023555335,-0.005915501,0.019826801,0.019151092,-0.024710217,0.014639639,0.062355667,0.00018984757,0.019941516,-0.06525868,0.042526208,0.019087283,-0.04164372,0.011531454,-0.021389233,-0.031445745,0.043164387,-0.02735071,-0.065155074,-0.06684042,-0.013990737,0.049138885,-0.0070671,0.04601698,0.017941969,-0.010286012,-0.044084914,0.028349686,0.01708297,-0.01298392,0.003034992,-0.017067103,0.019583846,0.02169468,-0.029455172,-0.006832982,0.0085663125,0.03311717,-0.021684887,-0.016963286,0.07578733,0.031060973,-0.025658155,-0.04148036,0.0168597,-0.019053089,-0.01563098,-0.024366137,0.03836664,-0.008121662,-0.019619709,-0.04062482,-0.00319998,0.007709843,0.045610882,-0.0049090995,0.017302308,0.0149743445,0.040452573,0.004862918,-0.023207441,0.03144758,-0.029088087,0.020289807,0.009954313,-0.00081790175,-0.0017830022,-0.0033039749,0.022487307,0.041590724,0.0029614682,0.052731104,-0.0106426105,-0.04400514,0.031187523,-0.011713682,-0.035594486,-0.017762605,-0.002468597,-0.022605453,0.03561903,-0.03272823,-0.008086806,-0.02868187,-0.010527499,0.023436598,-0.050442256,-0.0024754195,-0.027250143,-0.04689572,0.006928954,-0.054898173,-0.016660662,0.033614744,-0.028660715,0.025407417,-0.036407594,0.07939617,-0.074290276,0.062031876,-0.00435612,0.075628296,-0.027814817,-0.029039703,-0.069694914,0.021500044,-0.05808226,0.0035316534,-0.05053966,0.018922731,0.019935384,0.021965872,0.019671267,0.01358199,-0.043509476,0.018250134,0.037481118,0.013772135,-0.022563284,0.034743574,0.046283755,-0.0074184523,-0.03840407,-0.034335837,0.009195288,-0.034269974,0.01915794,0.011246767,-0.040463593,-0.00071753585,-0.035045724,-0.04321245,-0.0287131,0.03457592,0.024456054,0.05131281,0.0003339333,-0.031620614,-0.025499225,0.04446104,0.01636425,0.01614167,-0.023011513,0.021608543,0.0010302343,-0.016423518,0.0015618793,0.0016045332,0.052731004,0.013754893,0.0085991565,0.012978196,0.02034154,-0.0006519939,-0.027929636,-0.015508876,-0.022475148,0.0038055212,-0.013492595,0.02340514,0.027830172,-0.06326987,0.029170467,-0.040740512,-0.045522884,0.01922942,-0.07062195,-0.031233646,0.0055823014,-0.044441514,0.020416688,-0.006245937,-0.07221707,-0.035177104,0.032344636,-0.027227642,-0.005270023,0.0060395063,-0.0048307423,0.015192906,-0.04858622,-0.0144068645,0.03744162,0.005100384,-0.02881675,-0.02601242,0.012936287,0.03260419,-0.02374113,-0.0009896171,-0.027217362,0.009788091,-0.01631409,-0.013680511,0.004235025,0.05295972,-0.013561546,0.003889313,-0.04398876,0.057670724,-0.010757419,0.013150541,-0.0041933917,0.02362374,-0.019263823,0.025739565,0.03180878,0.02166369,0.019346707,0.0056214235,0.005556777,-0.006107272,-0.018492678,-0.014914519,0.058004234,0.0191271,0.03337089,-0.04593003,0.063778624,-0.024921805,0.003587421,0.005448203,0.01777876,0.0037981218,0.0049144845,0.010910992,-0.016560016,-0.048582755,0.024275694,-0.046271313,0.027676316,-0.023043796,-0.025557201,-0.028294655,-0.016073646,0.022502039,0.016032647,-0.026606679,-0.013914952,-0.0033944387,-0.010217077,0.0169413,0.012645464,0.01913765,0.029519035,0.019661313,0.037505947,0.03459341,0.02003345,0.008505034,-0.011240708,-0.023582827,-0.015472556,0.020674307,-0.0374647,-0.030033551,-0.038481776,0.04523605,-0.0099875545,-0.0063134856,0.026319986,-0.02304895,0.0022555802,-0.059095144,0.012931287,-0.031147249,0.009551309,0.012765305,-0.01799095,0.016120747,-0.023713917,0.012363933,-0.0012408682,0.0070922775,0.034408722,-0.0049419515,0.02886211,0.012211601,-0.013445188,-0.0005324886,-0.005396947,0.015089861,-0.014409467,0.0075002513,-0.023369351,-0.014502713,-0.010949076,-0.007856737,-0.003753005,0.031864513,-0.0070710196,-0.04793829,-0.017423818,0.021036057,0.018395599,0.020571599,0.022921905,-0.030368432,0.03152306,0.0074023763,-0.0055865515,0.0043680766,0.016994236,-0.049924694,0.051481888,-0.036868703,-0.030296596,-0.019839736,-0.04962555,-0.024806255,-0.0028576695,-0.0024246317,-0.03648224,0.013994819,0.028760226,0.019277908,0.02292165,-0.002584172,-0.002143631,0.039210808,0.06380866,0.002227656,0.08839035,-0.011825005,-0.0007245177,0.083407864,-0.02325295,0.064893946,-0.027063895,-0.036398903,-0.03811434,0.02951443,-0.05375153,-0.04271004,0.025741624,0.029841086,0.007016241,-0.048820816,-0.04640884,-0.0023932396,-0.033051357,-0.025754398,-0.02322106,0.07731802,-0.015004817,0.010425339,-0.027656654,-0.08389345,0.24565046,0.07230079,0.020179223,0.0121196555,-0.0013221526,0.014070335,0.009688464,-0.03460565,-0.04084766,-0.009063815,0.042382065,-0.002285291,0.010280197,0.06994124,-0.0036639024,0.07271172,-0.050302647,-0.01782015,-0.007469747,-0.03383835,-0.040693544,0.029652435,-0.011419071,0.035681706,-0.015983213,0.014878922,0.05056837,-0.0058873827,0.002643472,0.023622273,0.05498014,-0.006222194,0.023427658,-0.026657587,-0.026512982,0.021716734,-0.028617,-0.031086195,-0.014035359,0.028819567,-0.05224279,0.010887629,-0.0056776316,0.00031149972,-0.0035136503,0.0379355,-0.013377473,0.011003355,0.014503416,-0.008040905,0.047934648,0.031116087,0.041307822,-0.05718755,-0.026909204,-0.01632094,0.017600955,0.025514087,0.014201506,-0.017251052,0.00034156468,0.005438052,0.010271061,-0.0065715606,-0.03970032,0.023456544,0.060465086,0.03359438,-0.03854686,-0.032811075,0.0049647996,-0.027946807,-0.031476848,0.017647149,0.015363608,0.01631241,-0.01771452,0.015987098,0.016080238,-0.032725118,-0.0011805096,0.008780899,0.010842222,0.0044853273,-0.031625394,0.06537684,-0.018482298,0.02705887,-0.032164983,0.06614387,0.028214045,0.02262072,-0.035067707,-0.042004216,0.02547622],[-0.009462509,-0.039448455,0.033707563,0.039201405,-0.015728777,-0.023987597,0.033002324,-0.02272623,-0.00885464,0.034652583,0.030173223,0.0042896215,0.00728984,-0.01200299,-0.01394186,-0.025485167,-0.05468243,-0.012191475,-0.054851763,0.0052819094,0.0101834815,0.0014651057,-0.07176547,0.019931953,-0.012532991,0.013756469,0.003005119,0.017207785,0.04973904,0.04820636,-0.00849637,0.0071679596,0.0226009,-0.053663522,-0.04992503,-0.04399666,0.055845637,-0.005837916,0.026450492,-0.0032383045,0.007563542,-0.013370317,0.063332275,-0.028768523,-0.03041715,-0.008424107,-0.022937516,-0.017806472,0.00048608778,-0.003125802,-0.0000823868,-0.017982962,0.039728787,-0.012401347,0.033368967,-0.0055980734,-0.032818876,0.025322275,-0.015470054,0.016778579,0.009821715,0.02851412,-0.006654471,-0.06282239,-0.029933967,-0.022968791,0.0072451136,-0.026725175,0.005199015,0.009396111,0.017473942,0.030836172,-0.005583492,-0.018053848,-0.020004287,0.00936561,0.047526117,0.021468094,-0.047517035,0.051406287,0.013704783,0.027067915,0.019794742,0.027544476,-0.057868302,-0.021231918,0.010671325,0.03429967,0.031569738,0.006142932,0.013960072,0.03559123,-0.03697073,0.0069084656,0.056813195,0.021576619,-0.014648214,-0.015710648,-0.026264086,0.022234686,0.047426224,0.029767316,0.020868592,0.05664611,-0.064385585,0.0322557,0.005746371,0.0073130596,0.017082516,-0.04766621,-0.011858029,-0.0022567052,-0.02905204,-0.011783039,-0.022390839,0.0075452724,-0.0027828224,0.03450398,-0.0545205,-0.013267544,0.024034953,0.023330119,-0.023881268,0.047721773,0.030540356,-0.06340431,-0.045950804,0.024156103,-0.06265219,0.01632229,-0.018978672,0.0028346863,0.030716589,0.020672375,0.063334316,0.023606518,0.009311675,0.012394064,0.015165279,-0.025694653,0.031007485,0.008469784,-0.029356804,0.077448994,0.0012523581,0.005495157,-0.0041215015,0.018303866,-0.033372797,0.059803184,-0.051489066,0.009723237,0.0154735455,0.022951415,0.00016752975,0.0021031005,0.0363366,0.035006877,0.01925507,0.017163955,-0.0130573055,-0.020766214,-0.0017091378,0.01715995,-0.048287675,0.04293137,-0.009605797,-0.01474835,-0.042613715,-0.017022345,-0.025324136,-0.009780534,-0.028399054,-0.00008974844,-0.005919611,0.056739055,-0.0071022594,0.0140793035,0.0009773349,0.034334965,-0.00022134943,-0.015570447,0.026923247,0.08087913,0.013801066,-0.0068089333,0.021331342,-0.0016017903,-0.035879154,-0.056883037,-0.019637814,0.042799003,-0.034484584,-0.0165222,0.02095992,-0.021966906,-0.02746621,-0.013989892,-0.0017340609,-0.053899903,-0.027675427,0.06078662,-0.016138235,0.031662636,0.0028958796,-0.022642313,0.024988854,0.050297566,-0.00047872378,-0.00002764654,0.025219826,0.03786466,-0.00042192917,-0.042750914,0.06606025,0.0031261411,-0.058659352,0.0468232,-0.03116876,0.004181212,0.043559905,0.013290396,0.021653652,-0.008002128,-0.020137215,-0.006393836,-0.00015553892,0.040795855,-0.013833669,-0.0031270667,-0.042607445,0.01440541,0.0063966447,0.038367815,0.0058900476,0.030854622,0.060908727,0.039744318,-0.02329055,0.006999197,0.00013487205,0.029749138,0.03945406,0.028274123,-0.0002622407,0.055333145,0.025577245,-0.023852486,0.0038383403,-0.010582097,-0.010465493,0.008896407,-0.011442818,-0.006380274,-0.07805236,-0.030012019,0.059174515,0.028832352,-0.025113985,-0.020406626,0.011106658,0.04373692,0.0059957327,0.03416084,0.040282138,0.018521985,-0.01895786,0.04114625,-0.027066316,-0.037886642,-0.02651387,-0.04041779,-0.03990931,-0.012322018,-0.039116137,0.008409349,0.002183811,-0.026564516,0.03398951,0.0085051,-0.007465569,-0.05629452,0.004227833,-0.018608816,0.013069702,0.05595678,-0.013230352,0.03179677,0.009870623,0.04997841,-0.015372833,-0.035534833,0.0027990146,-0.02353824,0.008047672,0.0033781168,-0.023830723,-0.010564665,-0.049232487,-0.044352625,-0.015279484,-0.03760107,0.0067793285,-0.0008963043,-0.027582385,0.004974155,-0.010384965,-0.03342054,0.026105063,0.02297163,-0.09077101,0.017778356,0.019905694,-0.010116696,-0.03830206,0.023581896,0.022466887,0.012481398,-0.04718498,0.0043799654,0.025452802,0.029908456,-0.020748653,-0.039179225,0.011175323,0.0046181544,0.04857422,-0.12322337,-0.019666826,0.0024033557,-0.054604374,-0.039502207,-0.008514557,0.020433033,0.00900723,-0.014525059,-0.001964633,-0.02206861,0.013484928,0.013758485,0.047818664,-0.045440953,-0.00018504859,0.07612657,-0.037262373,-0.021901654,0.02809748,0.008220529,-0.03346841,0.008595108,0.006741198,0.03178858,0.0053481027,0.05116225,0.012576984,-0.0024007827,-0.029415898,0.013024401,0.045885336,-0.015123942,0.015255278,0.020115897,0.015859773,-0.05613292,-0.017896554,-0.04786377,0.027098827,0.012030117,0.04088239,-0.043043684,0.063163295,0.0028912898,-0.046739627,0.00538632,-0.02218515,0.0117914835,0.026805256,-0.016117776,0.049607825,-0.055272188,0.05011943,-0.029664816,0.034863286,0.022651367,0.029898515,0.01587778,-0.023804927,0.03533445,0.016683245,-0.019420836,-0.06319454,-0.011306206,-0.0019331725,0.022750013,-0.044929758,-0.016664047,0.042074,-0.010351135,0.02964697,0.023473442,0.072244294,-0.0009571683,0.0024168263,0.01077489,0.017406931,0.012662155,-0.05317524,0.03543594,0.024963873,-0.0129910745,-0.050637458,-0.020990735,-0.030309813,0.023749987,0.023817156,-0.00784274,-0.031343754,0.005483362,0.011983614,0.022367865,-0.08550094,-0.00029653285,-0.021413049,-0.024836669,0.004565968,-0.008323811,0.001498632,-0.058239568,0.04221384,-0.031707253,0.00791592,-0.029109042,0.005882732,-0.03385314,-0.015491983,0.0025511747,0.005908151,-0.019765021,0.021925213,-0.019346517,0.05263032,-0.008852926,-0.014172243,-0.0025245885,-0.018247059,0.01961166,0.0069796513,0.032750055,-0.028000353,-0.038967267,0.0063441717,-0.05176135,-0.001823917,-0.021536844,0.00015848724,-0.012875508,-0.019700775,0.028060328,0.0026821678,-0.02313239,0.009662219,-0.046044547,0.037230395,-0.005315701,-0.0036923797,0.03493262,0.032179046,-0.029993543,0.029546842,0.028363625,0.023399767,-0.015927363,-0.0018996571,-0.016481122,0.00031556576,-0.021402583,-0.0077706007,0.009879722,-0.02904318,-0.02536594,-0.022002617,0.02720055,-0.016172424,-0.009097076,-0.05719881,-0.071066506,-0.010021256,0.032841053,-0.023314504,-0.0060215453,0.021009594,0.0137792695,-0.013357017,-0.052265298,0.0020895093,-0.020342711,-0.032660354,-0.033124156,0.0027849777,0.021905225,0.011419026,0.017235069,-0.0045372993,0.022721108,0.029602146,0.0068061925,-0.049388457,0.00067567435,0.011832918,0.004798246,0.042199533,-0.017901443,-0.0103044165,-0.04179156,0.046859477,-0.008968294,-0.04469841,0.05180108,-0.0018822831,-0.0032748377,0.03055102,-0.03283053,-0.04545518,0.059545025,-0.0074343164,0.016835881,-0.035608627,-0.026759483,-0.051145326,-0.025721306,0.022632003,-0.0414201,-0.042379964,-0.020791609,-0.04701573,-0.025370855,-0.011479301,-0.00036736144,-0.020816665,0.032028735,-0.05921028,0.03367666,-0.017519832,-0.024847273,-0.039238643,0.009079119,0.008392719,0.066240996,0.011962089,0.02408931,-0.021116408,-0.02324482,-0.018468594,0.02038441,-0.024285764,-0.021030128,0.013488893,-0.010546233,0.024087574,0.01493782,-0.024467127,0.031850953,-0.06759914,-0.050056327,-0.022942154,-0.0023209625,-0.049998157,-0.00017586697,0.02620908,-0.011104427,0.015072742,0.0005208117,0.03917835,0.05189244,0.036983736,-0.022553295,-0.051376328,-0.0360741,-0.04453249,0.018003669,0.0058605243,0.015204023,-0.004614226,0.017668674,0.035806708,-0.02500065,0.009870999,0.070927285,0.0047978777,-0.006270258,-0.035439514,0.035386115,0.008387681,-0.07053446,0.010667881,0.004555485,-0.026384834,0.0027967822,-0.03511783,-0.045814533,-0.049161784,0.0021513633,0.039745145,0.01376107,0.049634937,-0.003266147,-0.005647027,-0.031929664,0.0285784,0.046188988,0.00041992092,0.021515299,0.013418213,-0.0014611688,0.008526757,0.0054704887,-0.013765657,0.013542192,0.026357062,0.021254908,-0.047654636,0.06631574,0.063300595,-0.028255817,-0.059451144,0.022771228,-0.014657997,-0.012937341,-0.028822314,0.04741756,0.0064431964,-0.012177984,-0.013699059,-0.0107262945,-0.006612081,0.044786222,0.0032621769,-0.0044229394,-0.0020901866,0.023958823,0.00009446701,-0.024640225,0.033198148,-0.028966034,0.01467054,0.008297302,-0.0008197519,0.01234946,0.009501727,0.004715512,0.031907924,-0.011621191,0.04347539,-0.00077057414,-0.017025925,0.02698322,-0.0067186863,-0.050250262,-0.012378606,-0.010929784,-0.017320087,0.0053046555,-0.04270638,0.005897284,-0.018436356,0.00080150453,-0.0076058614,-0.02499534,-0.02747072,-0.027323548,-0.053797677,-0.045895692,-0.025779761,-0.0017992797,0.036486737,0.02366479,0.016451582,-0.010474755,0.06335327,-0.03435126,0.0579571,-0.006693692,0.0714234,-0.049584307,-0.05158314,-0.07779487,0.03002394,-0.06845639,-0.008743816,-0.034785975,0.019106425,-0.018199366,0.038423035,0.017439265,0.008577885,-0.045737006,-0.0073507815,0.026319785,0.015888803,0.017269881,0.028338943,0.05151882,-0.0030415868,-0.033935405,-0.0004032798,-0.016505538,-0.026711887,-0.004979355,0.0023398348,-0.018072901,-0.015443439,-0.030438699,-0.04935215,-0.025452308,0.033621527,-0.0026239224,0.034512345,-0.0050557563,-0.029030176,0.009224099,0.07104635,0.024318045,0.009181431,-0.011357298,0.029751303,0.006864207,0.036546204,-0.0031677962,-0.010329183,0.023572253,-0.015098516,0.0067209364,0.0064678052,0.005098223,0.020234138,-0.012440345,-0.038833518,-0.04941787,0.017205916,-0.015223917,0.021309702,0.035178646,-0.039217032,0.03472409,-0.026351646,-0.049389392,0.022542497,-0.0594062,-0.016270345,-0.012908106,-0.007322486,0.021920051,-0.014106155,-0.052514758,-0.019121766,-0.0017521948,-0.01484539,0.0083080465,0.013583381,0.01787849,0.017202724,-0.057952907,0.016377902,0.012238949,0.009741035,-0.010654165,-0.04781515,0.032170016,0.012857427,-0.0025083015,0.0030070203,-0.022395011,0.0520138,-0.01204973,-0.023129554,-0.024409654,0.00027035183,-0.040934153,0.023505338,-0.030872077,0.045797236,-0.01138083,0.02147614,-0.014962807,-0.019383881,-0.0074724774,0.040042426,0.033909608,-0.01661094,0.020994764,0.026744818,-0.003415288,0.009082755,-0.02682576,-0.012599734,0.05627758,0.013787557,0.051703848,-0.020664375,0.053317606,0.00025531108,0.011286863,0.029194662,0.024700321,-0.005960171,0.012801415,-0.0069971625,-0.0015434198,-0.0009280263,0.0019651954,-0.012148654,0.023762222,-0.06479725,-0.016892623,-0.012458591,-0.016888684,0.023277981,0.008023432,-0.019167043,-0.014394059,0.0050999783,-0.02026123,0.027952973,0.010979354,0.051098183,0.040773235,0.024140378,-0.011406408,0.031849876,0.03233549,0.02569672,-0.022046153,-0.009317032,-0.007439667,0.01939702,-0.020416051,-0.043070666,-0.04007878,0.047909472,-0.019920211,0.01063579,0.0076408773,-0.027250405,0.012597207,-0.060153063,-0.0010214732,-0.02826928,0.008595596,0.014583759,0.0057241926,-0.013606113,0.014252075,-0.010671546,-0.00090279867,0.008070688,0.018435026,-0.030111494,0.059769113,0.011146776,0.008363067,0.011635105,0.0077354573,0.0012631343,-0.015608368,0.014859884,-0.030528428,0.007741324,-0.00514255,-0.004371468,0.0055418704,0.056143016,0.011036285,-0.057930175,-0.042108327,0.040084794,0.019648649,-0.0028507956,0.013080504,-0.0073783374,0.042679463,0.011889689,0.0015092078,-0.017519522,0.021610005,-0.043192178,0.048582476,-0.037526533,-0.04487845,-0.042186737,-0.035591915,-0.004152808,-0.018741416,-0.031110218,-0.05307802,-0.012319389,0.040793367,0.02799944,0.02197766,-0.009733809,-0.022304945,0.06202238,0.034874637,-0.017716873,0.079730116,-0.00060714706,0.0015247386,0.0430752,-0.03563442,0.023779333,-0.03905365,-0.022427915,-0.041297443,0.005702639,-0.05220468,-0.036483936,0.037797507,0.029060077,0.04420771,-0.022498857,-0.053996406,0.0012496188,-0.016556418,-0.033686634,-0.02750225,0.054442868,-0.029160952,0.0076378575,-0.015626183,-0.1026674,0.25721455,0.048648845,0.012002683,0.05253727,0.003576752,0.001292162,-0.0041647283,-0.006250814,-0.010676285,-0.025615884,0.037876766,-0.0099062435,0.0067463173,0.028307335,-0.0149232,0.033024896,-0.010319068,0.0032273962,-0.0034408204,-0.029739555,-0.015842658,0.028329462,-0.0027675373,0.026481114,-0.018497672,0.013532446,0.06808781,-0.05183375,-0.0011330738,0.011759392,0.04287916,-0.022272078,0.0135245025,-0.028163565,-0.0514735,0.024418881,-0.017957024,-0.013099521,0.0040924107,0.017919842,-0.029534876,0.021719368,0.022521015,-0.020632274,-0.008572689,0.029623223,-0.014787949,0.019125609,-0.0033538234,-0.011723548,0.06735481,-0.0036040859,0.025519025,-0.053372182,-0.016976386,-0.0075648287,0.037072986,-0.012631589,0.005074129,0.0061011594,-0.016118612,-0.009693449,0.034912594,-0.010022754,-0.049438424,0.029350478,0.061067116,0.040954437,-0.04766977,-0.019157715,-0.001634176,-0.03649771,-0.04062158,0.0012585965,0.020059597,0.0070550595,-0.0010813139,0.015034325,0.013001888,-0.020830745,-0.03332277,0.020392159,0.016915446,-0.013940269,-0.020701397,0.056215964,0.016098188,0.0048676576,-0.03460546,0.039934266,0.041285384,-0.0028432207,-0.040290937,-0.056728784,0.051050004],[-0.019853534,-0.024838785,-0.00024105796,0.0159652,-0.01129877,-0.030323125,0.042723686,-0.002331346,-0.0046553183,0.038430505,0.05445186,-0.011888661,0.014226632,-0.013431151,-0.0022286975,-0.0034868154,-0.03277078,-0.028874546,-0.045664705,0.0046676896,-0.006629112,0.027018087,-0.085450135,0.012719535,0.015914924,0.060211997,-0.037615534,0.013641227,0.054186016,0.04320461,-0.010372349,0.012448553,0.061643377,-0.022689385,-0.05281438,-0.06300159,0.039214533,0.004357943,-0.004276932,-0.05212444,0.026663035,-0.008801239,0.031109735,-0.016463617,-0.05174496,-0.03378328,-0.025537124,-0.040987547,-0.0066038775,-0.040385548,0.031477887,0.002228734,0.025696306,0.00088607747,0.054477975,-0.00039506523,-0.019171016,0.0123027945,-0.06402154,0.021169337,0.017550979,0.032490313,-0.014817643,-0.046424493,-0.032993894,0.0240699,-0.0052241446,-0.017456166,0.009246548,0.00620472,0.028938532,-0.017703442,-0.008937221,-0.015252236,-0.029142309,0.003913311,0.03712459,0.03010249,-0.036564086,0.050709806,0.012811172,0.015622214,0.012005522,0.028916081,-0.03532627,-0.014721417,0.009053404,0.04440374,-0.0033707346,-0.0037924491,0.026700394,0.025454773,-0.030564878,-0.00025377897,0.05032471,0.0053785844,-0.023145076,0.019264106,-0.055728614,-0.019877994,0.035834957,0.011811766,-0.004986498,0.06461952,-0.04581824,-0.021129891,0.029472824,-0.0051773023,0.0064802123,-0.03505903,0.014803956,0.016994184,0.038395815,0.031973526,-0.013470932,0.029929468,-0.0079293875,0.029321393,-0.07035234,0.0069126626,0.009038988,0.030560762,-0.0066061066,0.0010506844,0.007599032,-0.050890815,-0.029770758,0.034680426,-0.04334284,0.001037054,-0.0034064748,-0.0030091347,0.015348662,0.0033129842,0.061950997,-0.0061478573,0.0097749075,0.004854242,0.021510486,-0.032993797,0.03585403,0.041041777,-0.017722664,0.07853766,0.012493558,0.021184675,0.004493882,0.021270107,-0.0707038,0.05474315,-0.014516004,-0.01682915,0.0073073315,0.025563514,-0.0019029981,0.010884814,0.0027521504,0.018065464,0.018051947,0.035296902,-0.043503523,0.03883556,0.018177422,-0.0014713029,-0.06667595,0.031597495,-0.014739502,0.012101997,-0.01990746,-0.022183156,-0.011067077,0.013112811,-0.022450862,-0.0005454841,0.0016253955,0.043008056,0.001664135,-0.006375385,0.006775595,0.021512156,0.0114762625,-0.006993755,0.012275125,0.06425844,-0.05215995,0.0049945964,-0.012603389,-0.023273759,-0.035073318,-0.05984501,-0.008419684,0.03185061,-0.018026639,0.0037036391,0.020487985,-0.0021149246,-0.035545897,-0.024922255,0.012088477,-0.04238498,0.013759741,0.03177451,0.00037566328,0.049254917,-0.014893835,-0.043965958,0.027830537,0.03301731,-0.011681365,0.004533386,-0.027286198,0.061625443,-0.0019530384,-0.030913249,0.049790714,0.0020614716,-0.03246548,0.026736632,-0.057120666,0.0058701797,0.02853398,0.022614378,0.04461663,0.006703881,-0.0020915824,-0.015946615,-0.0036186953,0.048582338,-0.025334021,-0.011710255,-0.009907287,0.018778147,0.015773712,0.047308646,0.04043377,-0.015560524,0.02401133,0.03352638,0.018243901,0.0021716252,0.016190484,0.012039164,0.04259449,-0.006705653,0.028641248,0.036660764,-0.013555282,0.004678007,0.0022460956,-0.0069496757,-0.0017909962,0.030557603,0.037262745,0.035288468,-0.012456134,-0.014638715,0.052843466,0.026906684,-0.04926415,-0.0074747074,-0.032952435,0.022546645,0.032169633,0.027272765,0.04556756,0.02150038,0.0043185847,0.032500878,-0.032525346,-0.036227204,-0.037772033,-0.0449338,-0.0632545,-0.01793426,-0.034649648,0.030491486,0.03420141,-0.009569844,0.0114627145,0.022254452,-0.02190265,-0.049381807,-0.029643128,0.008960859,0.01411412,0.06045361,-0.021033399,0.010910513,-0.00017555578,-0.010422869,-0.016335512,-0.0018446591,-0.0066852663,-0.0059728296,0.013758137,0.011102569,-0.029271701,0.014489596,-0.044817075,-0.05471402,-0.02363834,-0.04044544,-0.024145165,0.02662337,-0.0076372493,0.007897353,0.011444281,-0.03916527,0.06277028,0.01819424,-0.05612181,0.029102186,0.03372229,0.0029592759,-0.048432514,0.016483337,0.0047057974,0.05098962,-0.039239753,0.005483509,-0.018073149,0.017287739,-0.043223202,-0.05423167,-0.0028528676,0.012767057,0.040644605,-0.10653181,0.034846254,0.0018346842,-0.064534456,-0.036836166,-0.041026648,0.052425444,0.01139295,-0.027957434,-0.020836366,-0.050371923,-0.031429283,-0.008844591,0.048431717,-0.032735016,0.0055645094,0.038243968,-0.023371108,0.00353689,0.0030815788,0.023217142,0.0058973036,-0.0008427352,0.014071324,0.039073903,0.009673449,0.039576475,-0.009226773,0.006167502,0.0029319753,-0.0023575681,0.03470803,-0.017258551,0.023422122,0.030536301,0.0033311718,-0.06142484,-0.0057599153,-0.038365815,0.021678587,0.028175976,0.018948829,-0.07001967,0.032223925,-0.0021053196,-0.05697729,0.039236408,-0.022057893,-0.023963045,0.032133404,0.0075379284,0.046593204,0.003916334,0.028169382,-0.022043288,0.024586199,0.053647235,0.03700756,0.022522612,-0.038914334,-0.05721371,0.011824551,0.0008629252,-0.047967862,-0.027837137,0.016900431,0.011307846,-0.05063895,-0.014741845,0.03572961,-0.032479644,0.039378587,0.0009090665,0.04811,-0.00758016,0.0056516733,0.013229545,-0.01693728,0.006549553,-0.050639037,0.038632713,0.009770521,-0.01250586,-0.07008288,0.0039032486,0.00094760023,0.016951654,0.003631747,0.012749515,-0.04274822,0.008674957,0.025333017,0.021323714,-0.06802091,-0.013109653,-0.008884663,0.009263691,0.025110353,-0.046615656,0.0005734454,-0.01776344,0.073070444,0.018337604,0.0059217997,-0.010321988,0.031137254,-0.02901279,-0.038379494,0.0194438,0.023302935,-0.04423077,0.033598397,-0.023056284,0.051160756,0.015867082,-0.003060062,-0.018289687,-0.026748333,0.006282434,0.013383151,0.015556481,-0.04329735,-0.030458145,0.035071746,-0.04229445,-0.022807874,-0.012204807,0.00033095415,-0.03643581,-0.03590478,0.000042979624,0.052009877,0.012914714,0.0075152125,-0.024575861,0.017129807,-0.002349529,0.008430774,0.037405603,-0.018196069,-0.046565548,0.04271335,0.027434945,0.039174795,0.037446424,0.01653644,-0.024244206,0.0014037254,0.007847938,0.0019305059,0.0021138028,-0.0047566574,-0.041895423,-0.018886775,0.0051597687,-0.015467601,-0.007818381,-0.02950548,-0.0653469,-0.006338455,-0.0030419384,-0.02906421,-0.022479847,0.009248085,0.03984415,0.0027732486,-0.06189964,-0.0042565595,0.0057211244,-0.006201,0.0047722626,0.012100879,0.05443867,0.012065279,-0.0024073236,-0.0054709134,-0.0065518073,0.016769469,0.0069853007,-0.050743558,0.008126011,-0.013188502,0.0016600795,0.064482786,0.009226062,-0.015927222,-0.010976841,0.016848499,0.010145058,-0.0066686273,0.023078714,-0.033288546,0.030745331,0.0040121023,-0.024419043,-0.039317068,0.07089765,0.030657286,0.03306743,-0.00363148,-0.015489986,-0.05162991,-0.04521489,-0.006317269,-0.042310152,-0.04638642,0.0051950286,-0.037359864,0.012892247,0.011388542,-0.0052957707,-0.019111685,0.021956578,-0.011462746,0.0019868594,-0.0066896733,-0.051748022,-0.018167082,-0.0011928498,0.008600906,0.1076773,-0.015570705,0.032013796,-0.04776216,-0.02582072,0.0019433991,0.04157822,-0.034157038,-0.039622635,0.013650989,-0.018266762,0.044861633,0.028065946,-0.0030469408,0.046561286,-0.031564716,-0.051304936,-0.036298435,-0.027174778,-0.04272321,0.021411235,-0.0030320978,-0.016570736,-0.028715726,-0.007715684,0.060249172,0.044049025,0.036739983,-0.020132808,-0.060317047,-0.053443074,-0.03828399,0.0405127,-0.009638803,0.018509122,-0.0067320573,0.012783954,0.04458428,-0.03219689,0.008521736,0.07606744,0.013902861,0.005115244,-0.048389576,0.06371933,0.03947695,-0.040584162,0.019633967,-0.033821627,-0.017221255,0.013878334,-0.031845946,-0.070963465,-0.046789415,0.010337371,0.052566957,-0.0015523372,0.044396896,-0.026771765,-0.012005544,-0.04527302,0.034270145,0.04713585,-0.024775293,0.033803828,-0.011810334,-0.019287903,0.027971951,0.009598555,-0.0064329393,0.02131319,0.043432433,-0.026850717,-0.039940763,0.06682398,0.036812123,-0.04561364,-0.048803553,0.017958393,-0.0063322852,-0.027011309,-0.041570287,0.032221537,-0.0046180612,-0.01918798,-0.0114625245,0.006363233,-0.0014958434,0.012712591,-0.017686866,0.01674166,-0.0025702738,0.025927773,0.01980483,-0.050100613,0.037918095,-0.04993528,-0.0014086688,0.0021728233,-0.0030173538,-0.0019637914,-0.019559816,-0.010546395,0.040519744,-0.0063078837,0.04578841,-0.0064041396,-0.023413757,0.052753303,-0.000070756294,0.0008370572,-0.01851126,-0.01918549,-0.03679658,0.037207022,-0.042175833,0.019901551,-0.010976974,0.011000665,0.010404965,-0.038741,-0.005617505,-0.04379628,-0.05241326,-0.012895601,-0.011142602,-0.03693115,0.01956501,0.016825091,0.029373681,-0.009690235,0.040455997,-0.056008376,0.036863495,-0.020012755,0.07439475,-0.010330631,-0.04699037,-0.040659044,0.016626284,-0.026927175,-0.006102415,-0.039279126,0.018085133,-0.0010167119,0.022471366,0.011853511,0.012136742,-0.04283783,-0.020059675,0.039201662,0.031102825,0.001983243,0.031324618,0.042946372,-0.015734946,-0.029602949,-0.013468455,-0.026937284,-0.048196416,0.02125913,-0.0032254192,-0.03824436,-0.03465162,-0.056231838,-0.023543878,-0.034176715,0.00093747035,-0.0018479316,0.02320905,-0.0075468584,-0.0048611797,-0.007055366,0.043239087,0.020542307,0.02740095,0.0011173608,0.01400195,-0.002218624,-0.012388216,0.012640744,0.01759333,0.047981318,-0.016050758,-0.009351662,0.032172482,-0.020021357,0.009000224,-0.011774515,-0.0303394,-0.027589856,0.030640401,0.016971057,0.006611023,-0.0034694797,-0.052438404,0.015456143,-0.021665955,-0.011866805,-0.0021752038,-0.083967485,-0.0096781,0.0010899619,-0.011143634,0.006475871,-0.023311645,-0.05731669,-0.032974493,-0.0075927605,-0.0012601743,0.014390783,0.02471385,0.030059827,0.0015561132,-0.03318973,0.025409184,0.040282656,0.04184457,-0.02611031,-0.016198168,0.021390025,0.026228597,0.015239069,-0.0030062003,-0.02742512,0.010268076,-0.021234507,-0.024523241,-0.005564829,0.0132036535,-0.007278136,-0.0003420883,-0.031216256,0.06112077,-0.003974054,0.036718722,-0.020109689,0.015381705,-0.024778798,0.013813996,0.05508039,0.020607175,0.026209988,0.007407401,0.0151132895,-0.024732407,-0.03564165,-0.03397472,0.04178209,0.03387488,0.020516383,-0.032536432,0.044531394,-0.030039009,-0.012349234,0.00037266736,0.009741264,-0.02265048,-0.0299083,-0.0026241604,-0.013654388,0.0011586163,0.0042076,-0.04416503,0.009283808,-0.02378781,-0.027241757,-0.010025044,-0.0039113755,0.0009464289,0.011625631,-0.018050507,0.007700114,0.0019879995,0.026669243,0.03351419,0.01135167,0.029216845,0.013848404,0.025272058,0.025938712,0.018884398,-0.008769707,0.0043880087,-0.0011992963,-0.029392226,0.010395441,-0.018786376,-0.06166721,-0.04778252,-0.030604914,0.061801895,0.00031695672,-0.019585162,-0.015897112,-0.024173299,0.01346655,-0.07135394,0.0064603835,-0.039299674,0.012269496,-0.004582638,-0.012511562,-0.01889999,0.000118312615,-0.013721643,0.022442298,0.022584474,-0.0032126575,-0.008133932,0.02563055,0.0047296663,-0.040818036,-0.013923064,0.01988532,-0.0016723062,-0.045119163,0.0128496885,-0.029546509,0.0057860366,0.02031585,0.011249131,-0.019558033,0.049499433,-0.013390746,-0.052602638,-0.008
+8000
+332173,0.024936587,-0.0033273872,0.025143389,0.02830696,0.0019538794,0.0058880635,-0.0046777045,-0.007599131,-0.0115955975,0.01190691,-0.05632011,0.032362774,-0.032690134,-0.079454854,-0.017005289,-0.014703617,0.0024421855,0.019849114,0.0030721857,-0.048763853,0.03432795,0.046703447,-0.01976771,0.029998533,-0.019760868,-0.0014115471,0.051254544,0.05196266,-0.01243497,0.077105395,0.009739281,-0.025789967,0.053327046,-0.020304717,0.047298823,-0.01064056,-0.038372003,-0.054110978,0.0123624755,-0.06124272,-0.04145526,0.044070393,0.022167725,0.03498942,-0.057628967,-0.03825341,0.00196426,-0.01637581,-0.013500462,-0.021098932,0.07978297,0.021712255,-0.016701242,0.029225867,-0.076280676,0.25728393,0.06839356,0.0053488114,0.0041962164,-0.014295165,0.013478847,-0.019096406,-0.019999566,-0.043552276,-0.017067984,0.058360647,-0.016885255,-0.017382018,0.04186559,-0.016975118,0.0743084,-0.02012407,0.004917818,-0.0023407028,-0.025724268,-0.016846767,0.039063234,0.019904174,0.017319985,-0.005314781,0.018128222,0.0064940513,0.000105592255,-0.010179743,0.024910651,0.03758527,-0.031720273,0.04961388,-0.033858273,-0.023493858,0.04127686,-0.018273894,-0.020711,0.0096257515,0.013955434,-0.023862075,0.020560278,-0.003892028,-0.008589942,0.004700209,0.006003217,-0.006176999,0.0108726425,0.0043952633,-0.023397433,0.043851066,-0.008090265,0.036637206,-0.051508203,-0.027855437,0.00065821165,0.0071705026,0.01730629,-0.026632708,0.03432893,-0.0053650546,-0.025779618,0.013068862,-0.012421632,-0.020524522,0.023631137,0.07429633,0.016916022,-0.03732386,-0.014245684,0.0053775613,-0.042728726,-0.019637149,-0.0065359334,-0.02579821,-0.001967294,-0.0071599004,0.008923038,0.0029700568,-0.020600257,-0.010151349,0.0037730818,-0.0063069216,-0.009229108,-0.005263593,0.05595649,-0.017269226,0.0065397425,-0.049202293,0.042477377,0.030038716,-0.0012071094,-0.0061880345,-0.05087435,0.0026666168],[0.008353283,-0.029919105,0.00030265073,0.013459452,-0.020262701,-0.029154042,0.013427814,0.007043513,0.02155596,0.035734776,0.039542977,-0.026669508,0.006803372,0.0002061586,-0.0024003098,0.008280642,-0.058594145,-0.007063848,-0.05191202,-0.013631105,-0.0006161445,-0.014284856,-0.08735264,0.017264362,0.007805396,0.03753707,-0.0135963475,0.0139772175,0.062278155,0.0476475,-0.016352072,0.027936732,0.052118745,-0.02666351,-0.022500714,-0.034223292,0.04846272,-0.011472769,-0.0021137036,-0.04579772,0.044193875,-0.034896843,0.045638714,-0.030336548,-0.042008214,-0.030458456,-0.014115265,-0.031371955,-0.0004937635,-0.036327895,0.02841352,0.017048946,0.007300281,-0.025403392,0.037879363,-0.0019790442,-0.022694692,-0.0065300297,-0.030038605,0.055629466,0.035902567,0.005652935,-0.0027802314,-0.045378886,-0.0066439984,0.017024476,-0.029016064,-0.012344065,0.018260725,-0.026857736,0.029170444,0.009672224,-0.024455363,-0.011666922,-0.025604358,-0.0055541266,0.01323847,0.014862335,-0.058110345,0.05724531,-0.011609449,0.0016974186,0.023703454,0.02171607,-0.0372646,0.0072205826,-0.020803634,0.038810715,0.00043649552,-0.0006956921,0.023657067,0.037842583,-0.037694633,0.01709927,0.035789933,0.02096331,-0.003615955,-0.018397195,-0.04318495,0.0042469073,0.016547006,0.0239419,-0.029971465,0.054760817,-0.052526582,0.0033515256,-0.003644995,-0.005405328,0.018089216,-0.018983636,0.023387814,0.0061889696,0.009819667,0.018817851,-0.032541823,0.035373967,-0.011429511,0.013970203,-0.051695235,-0.004810306,0.008083597,0.004753621,-0.013670734,-0.0031104207,0.011120465,-0.048246156,-0.034035183,0.019283542,-0.042170234,-0.00731006,-0.014354948,-0.013605956,-0.010019204,-0.013724042,0.049043253,0.009571605,-0.0019799487,0.004467901,0.018118054,-0.03547535,0.033903725,0.014871853,-0.03268923,0.07639695,-0.027628874,0.019230025,-0.0025093113,0.022523193,-0.061224584,0.04935347,-0.044235405,-0.002123963,0.022775466,0.043818783,-0.02484875,0.016283402,0.025139663,0.0012634635,0.024548052,0.003093211,-0.027982071,0.033056926,-0.0067571546,-0.015514933,-0.04930017,0.02749026,-0.04660237,-0.013436983,-0.023417007,-0.006057348,-0.026032316,-0.004505975,-0.04261291,0.0022491158,-0.0058736783,0.05070203,-0.0042719925,0.00003241055,0.001836431,0.010251242,-0.01125509,-0.016513692,0.0063835317,0.08194253,-0.028111862,0.0019440566,0.043497063,-0.014676128,-0.030916164,-0.052985262,-0.0036398647,0.046102926,-0.02674699,0.00033875462,0.017040882,0.0072189323,-0.03309205,-0.02529881,0.013518945,-0.050433934,0.0095153395,0.04170619,0.006010418,0.049111973,0.0045179846,-0.051547173,0.018087042,0.046725888,-0.020817183,0.018094098,0.012030761,0.044429787,0.0042674914,-0.04329799,0.054255303,0.0075962576,-0.028050715,0.052527986,-0.019873455,-0.015959775,0.044698853,0.026148938,0.03156023,0.03693927,-0.0053130053,0.018890463,-0.020953681,0.04084458,-0.013730783,-0.013801712,-0.016286325,0.0026852742,-0.007955394,0.04099269,0.026081543,0.020271325,0.027060073,0.022512835,0.026630217,0.0244259,-0.012035702,0.011763483,0.016417157,0.0090253195,0.028815476,0.047652308,0.0073723453,0.0041511287,-0.0006133478,-0.010749516,-0.010274484,0.0025850525,0.018673787,0.016665986,-0.03412577,-0.01241252,0.037048496,0.048231665,-0.05970707,0.0007040896,-0.005539873,0.045364633,0.0028366162,0.04043673,0.03976095,-0.008647481,0.021711089,0.011824853,-0.008241261,-0.022614125,-0.012342985,-0.03607003,-0.048979826,-0.013872366,-0.02066595,0.02087328,0.02977896,-0.036144596,0.013332974,0.04804766,-0.018202033,-0.04127432,-0.010267793,0.024524443,0.02314853,0.06892889,-0.03872159,-0.0003181197,0.018263737,-0.013924595,-0.03125572,0.001714935,0.0012850001,-0.017398316,0.025479713,-0.0065192305,-0.040020637,0.028398676,-0.058774147,-0.049263783,-0.008907483,-0.04143216,-0.0032503707,0.0055932957,-0.008203046,-0.016408546,-0.026585706,-0.03184526,0.029883936,0.028980013,-0.05754217,0.046175096,0.04078183,-0.0052802805,-0.063661784,0.046342008,0.02035473,0.037042428,0.0069439784,-0.006503466,-0.006295933,0.016308147,-0.023145257,-0.05575078,0.010922443,0.029105542,0.061437972,-0.119122095,0.014121435,-0.01511603,-0.043242037,-0.03892784,-0.03535601,0.054276355,0.0048525212,-0.0017406325,-0.021964401,-0.04502166,-0.040626284,0.006821273,0.054130122,-0.042616025,0.025886182,0.07270632,-0.008855936,0.0065795262,0.011946922,0.016196977,-0.032060925,0.03335468,0.0013180336,0.046602786,0.004322718,0.042809002,-0.0040584607,-0.025820673,-0.011722448,0.013891601,0.038546838,-0.025382234,0.012696442,0.027680168,0.0057168263,-0.034506094,0.008207238,-0.05129242,0.031159231,-0.0030480318,0.028936487,-0.05553597,0.031676866,0.0036102335,-0.07355113,0.05611699,-0.010357088,-0.020332407,0.043385155,-0.000063226886,0.03963933,-0.03583587,0.045420434,-0.051756773,0.03167471,0.076044515,0.046980463,-0.014462544,-0.023694376,0.0025419483,0.011342739,0.009365057,-0.028033461,-0.012259464,0.015304935,0.015837176,-0.0541331,-0.018897824,0.01666563,0.01277697,0.032993503,0.04169793,0.04377925,-0.00852144,-0.015357439,0.04653028,-0.0024542196,0.014951151,-0.03205802,0.05281333,0.01210952,-0.033953607,-0.04833591,0.025354898,-0.020475771,0.008059404,-0.014847147,0.017960032,-0.040204525,0.039480086,0.02252294,0.01667212,-0.075810485,-0.0003698892,0.007316155,0.012253825,0.015683275,-0.035687834,-0.0121844495,-0.06173844,0.011093688,0.008349012,0.01875232,-0.037600994,0.013236049,-0.02463161,-0.051140595,0.02920667,0.0116701815,-0.060179997,0.03278587,-0.013286796,0.04259355,0.028982429,0.005405698,-0.02245072,-0.0075919847,0.010791669,0.010638323,0.023100495,-0.061664764,-0.029701166,-0.0028491528,-0.082093395,-0.010835761,-0.014880933,0.018166149,-0.030739168,-0.019140156,0.0074396003,0.04187156,0.0037575027,-0.013073727,-0.015418149,0.019968672,-0.008394828,0.0029001308,0.043907072,-0.020756286,-0.04730311,0.030014705,0.022277404,0.04514983,0.012959983,0.009552213,-0.018928673,0.023568146,-0.019160261,0.0027538466,0.015995417,-0.018334292,-0.03740262,-0.022521606,0.006213803,-0.0060753496,-0.005823056,-0.03298618,-0.06786394,0.0011901744,0.007355703,-0.0064175604,0.001620147,0.013375712,0.059644114,0.0068018674,-0.040528055,0.014537843,-0.006450829,-0.028834041,0.016811179,0.013940756,0.013781631,0.009071026,-0.008206284,0.004616417,-0.01357643,0.015640171,0.018238785,-0.05123314,-0.004740368,-0.02003348,0.0043606944,0.06452014,0.018623078,-0.018386027,-0.027983997,0.013892563,-0.0011382479,-0.022151364,0.025636515,0.001564087,0.04813241,0.00877375,-0.040705044,-0.037194226,0.05613055,0.00008363429,0.017533766,-0.01021825,-0.009440953,-0.054409936,-0.05103214,-0.00533531,-0.018476257,-0.04973636,-0.021404205,-0.015839111,-0.028278759,-0.0055202013,0.013791467,0.025732072,0.04139163,-0.045616824,0.0021198061,-0.0100769885,-0.0050823884,-0.004969997,-0.0088704545,0.0158377,0.061950203,-0.017065797,0.010309214,-0.014963678,-0.020179452,0.011140605,0.03939747,-0.02995732,-0.017426949,0.011540901,-0.009270694,0.024823919,0.017263548,0.0008150933,0.061113693,-0.047054883,-0.045911696,-0.017432297,-0.025833685,-0.011537612,-0.017030772,0.01130368,-0.01224562,-0.022224357,-0.0135339545,0.080045216,0.049247153,-0.0020065517,-0.04168306,-0.04025734,-0.047975063,-0.06159934,0.007552945,0.007023839,-0.004510684,-0.025110397,0.029468998,0.016954422,-0.029037122,-0.011205812,0.06908691,-0.008460722,-0.00026620942,-0.061555475,0.039439224,0.03366566,-0.033580646,0.0065135406,-0.028329492,-0.00290495,0.033066735,-0.032140587,-0.061096583,-0.054355428,0.009002055,0.051048294,-0.0059478804,0.043583028,-0.00067170424,-0.00827631,-0.065968774,0.031308137,0.029002197,-0.011877603,0.010514827,-0.038231585,-0.03715322,0.015622918,0.018101392,-0.013608569,0.026595235,0.04870047,-0.010177061,-0.05971625,0.030705063,0.06040103,-0.06289465,-0.07148022,0.008315108,-0.00044591477,-0.033977978,-0.03895966,0.021229941,-0.034928475,0.026975686,-0.018937921,0.0071597244,-0.024700452,0.032346223,-0.012998216,0.044453625,0.0034415566,0.019333202,0.039761137,-0.014003758,0.030679941,-0.03243707,0.01582705,0.012017687,0.0038625577,-0.03347012,0.011671551,-0.011207498,0.040158868,-0.005611624,0.004821208,-0.011834771,-0.05189879,0.019955736,-0.016624115,-0.034045912,-0.010709365,-0.014917316,-0.03135561,0.040526867,-0.059635866,-0.006178638,-0.0152491005,-0.014941473,-0.0005169894,-0.00646249,-0.008035276,-0.03754256,-0.03517399,-0.053453576,-0.025323998,-0.023302685,0.05128291,-0.02094407,0.03260935,-0.00047092696,0.033914868,-0.051879022,0.030789968,0.0047876285,0.10792343,-0.0171313,-0.068291605,-0.031000668,0.022445705,-0.036197975,-0.013730471,-0.033770956,0.025283867,-0.014069782,0.021739667,0.0597928,-0.007099286,-0.020980055,-0.00461468,0.02223229,0.011675024,0.025798254,0.024713444,0.018284403,-0.04058344,-0.039037455,0.002833878,0.007959634,-0.05565325,-0.0064038867,-0.0015742345,-0.03681614,-0.0011723981,-0.037174027,-0.04813737,-0.02233996,0.01422856,0.009454849,0.03444624,-0.0039856695,-0.013076867,0.00045320162,0.015924232,0.0009336432,0.022941465,0.0060113766,0.024612697,-0.010979157,-0.00961813,0.01098673,-0.0055002356,0.03999748,-0.018105805,-0.0014338172,0.017004184,0.017571434,0.013461029,-0.015493804,-0.06850562,-0.0045745233,0.022839606,-0.01072705,0.016915463,0.0021625694,-0.057337243,0.029634053,0.0048975823,-0.010337263,-0.003733615,-0.06617743,-0.007856121,0.030236453,-0.024902586,-0.0055773095,-0.004936353,-0.04779907,-0.053387847,0.027844956,-0.01515555,0.012461883,0.026951883,0.021157281,0.03041149,-0.054061506,0.036756042,0.018840315,0.049173985,-0.03446013,-0.030326754,0.0114508495,0.006890319,-0.0170185,0.008867793,-0.016836852,0.00924563,-0.026768897,-0.044406727,0.006934022,0.024428826,-0.03618674,-0.012045428,-0.0235263,0.065438055,-0.0023661915,-0.011680554,0.0120064635,-0.0173944,-0.020985058,0.033941343,0.031831786,0.00041815755,0.03700088,0.00521771,0.0051915445,-0.019924179,-0.014894273,-0.034307282,0.034609575,0.022533985,0.0023364094,-0.0032637075,0.025644869,0.009079994,0.02335453,0.0048707244,0.033563025,-0.009958783,-0.01934811,0.0094531,-0.022590436,0.0014152448,-0.01548739,-0.038762923,0.010935675,-0.026976915,-0.032906033,-0.011453481,0.00899055,0.025062524,0.015429319,-0.02052666,-0.0015268605,-0.033737537,0.0031144898,0.04627582,0.00904384,0.05328105,0.018941382,0.006335663,0.040821597,0.0065374016,0.011902473,-0.0023520722,-0.017346045,0.009788421,0.023557343,-0.01954895,-0.054775916,-0.02335147,-0.038951475,0.04869907,-0.0053004147,-0.01903434,-0.005978604,-0.0099665085,0.010198818,-0.06386511,0.02285609,-0.016366845,-0.013982079,0.012095641,-0.049248345,-0.01437297,-0.003689528,-0.010110177,0.01936471,0.015135359,0.005419617,-0.016798653,0.040339403,0.05702255,-0.015094199,-0.0063799373,0.011501853,-0.006450631,-0.009416617,0.012129428,-0.03532395,0.026400365,-0.0009430725,-0.0107248835,-0.012790027,0.058459703,-0.010500935,-0.055461157,-0.008542285,0.00674079,0.0019271257,0.025269799,0.019773772,0.016647214,0.016614743,0.017564496,0.0012277005,0.004384763,0.047138344,-0.05751939,0.053969294,-0.019776607,-0.07409495,-0.014068779,-0.033207916,-0.00645311,-0.008539168,-0.0014542002,-0.04044267,0.02369795,0.046762515,-0.010660739,0.052545775,-0.025181672,-0.014185595,0.03553956,0.050741177,-0.023196012,0.08806774,0.01712293,-0.01686779,0.05435015,-0.030107468,0.066008344,-0.0022243217,-0.028703919,-0.04283174,0.029610634,-0.053997166,-0.008545393,0.044221103,0.0575692,0.029396994,-0.040060136,-0.041319087,-0.0011475857,-0.053020325,-0.002475523,0.0040345094,0.060742218,-0.022534396,-0.0083420705,0.015121551,-0.08179242,0.25041854,0.058187023,0.008673197,-0.00903233,-0.016870035,0.017448109,-0.028010415,0.00555511,0.005163833,-0.026111113,0.030671213,-0.035414454,0.042654946,0.050207525,0.009315983,0.06338052,-0.03048777,-0.010261102,-0.051312804,-0.04928805,-0.022472141,0.014895344,-0.004391371,0.040331244,-0.023752118,0.030976217,0.068912305,-0.010188183,-0.012283689,0.0137196,0.024882333,-0.017525977,0.026671195,-0.017064597,-0.023918027,0.033362124,-0.013673115,-0.029425967,0.015482184,0.0041538174,-0.028480869,0.030174203,-0.0109223295,0.007619508,0.0043978426,0.032971065,-0.041178893,0.019890113,-0.008935144,-0.037929565,0.077401824,0.013981759,0.04122467,-0.03743528,-0.037270807,0.00053238595,0.026831176,-0.0048685875,0.011014721,0.01875898,0.0013615692,-0.008739736,0.0013765652,-0.005530554,-0.023620175,0.010039944,0.039084874,0.02732398,-0.033179574,-0.041959476,0.016402755,-0.007495722,-0.046375036,0.00024544407,-0.01132498,0.0003038901,-0.025295986,0.011436349,0.007843886,0.008760718,-0.0050640046,0.004514499,0.0044043683,-0.0033118632,0.006574684,0.04004424,0.00068502524,0.001302523,-0.029711066,0.029779436,0.019371448,0.021702725,-0.026066853,-0.035904814,0.008196748],[0.007769511,-0.0361095,0.0077915476,0.00012286035,-0.014464492,-0.035400033,0.023389678,-0.009314503,0.0122401165,0.034171578,0.019708479,-0.020984082,0.0063204006,0.000030070038,-0.013430474,-0.01611916,-0.045820773,-0.0013024431,-0.006872785,-0.009807722,0.0092719635,0.003565874,-0.09933881,-0.008488264,0.012940691,0.048927747,-0.004754912,0.014813397,0.024959322,0.062738836,-0.021096509,0.033795137,0.040591672,-0.050849527,-0.033626027,-0.039955553,0.054668624,0.012108536,-0.0055005085,-0.0236638,0.01566837,-0.022114454,0.022818536,-0.037098624,-0.041026015,-0.02660825,-0.0081526805,-0.0051509207,0.025860397,-0.04610876,0.011370834,-0.033256058,-0.0029130816,-0.01541985,0.023853838,0.009886259,-0.014601084,-0.0053299037,-0.042609427,0.04957659,0.034780335,0.00356027,0.0077944826,-0.06140211,0.00769182,0.027360039,-0.016341902,-0.004586559,-0.0073519666,0.011045481,-0.008167859,-0.0060354574,-0.02545382,-0.013214858,-0.027206078,-0.012741237,0.019456504,0.0037557287,-0.05501763,0.051172465,-0.004518562,0.017114656,0.014637961,0.028274568,-0.029754298,-0.00078526256,-0.01033988,0.06991816,-0.00043391617,-0.0118956035,-0.011057429,0.022131752,-0.020365518,-0.0043452797,0.013301926,0.004951464,-0.008430952,0.011578349,-0.042693608,0.015378835,0.040489048,0.045207266,-0.0073256767,0.061173618,-0.052052908,0.017547866,0.00083422527,-0.0015506928,0.0010319124,-0.033350404,0.00028397888,0.0027890713,0.0036217042,0.003780106,-0.015409932,0.02984293,-0.016150348,0.014331823,-0.03201186,-0.0031379203,0.036256906,0.0031010017,0.0016745732,0.017100798,0.023276249,-0.050521377,-0.0051356545,0.035045,-0.03977321,0.019837772,-0.0073337154,-0.0030200211,0.018355183,-0.016640903,0.063353516,-0.013808985,-0.0049965503,0.026826661,0.0017932692,-0.024879482,0.043585807,0.024379717,-0.018113388,0.084420584,-0.022839012,0.03150407,-0.011536578,0.034585763,-0.03234751,0.030631553,-0.032243494,-0.021547975,0.04397881,0.015473544,-0.029781856,0.04556734,0.020785833,0.007640006,0.028642252,0.008644253,0.0069977148,0.017523259,-0.016040314,0.012061741,-0.05098899,0.027518842,-0.034591485,-0.017771456,-0.027126381,0.017780095,-0.047568016,-0.029222213,-0.034004204,0.0068341345,-0.0005237783,0.0413979,0.025317205,-0.018145442,0.017669352,0.0040775114,0.00022145011,0.003684206,0.021694927,0.0771469,0.023250248,0.033487547,0.029933846,0.0022296722,-0.034979906,-0.03204558,0.007931988,0.058620118,-0.049924776,-0.005856293,0.019626524,-0.0010795483,-0.03811941,-0.05038136,0.0037699335,-0.065673,-0.0021415923,0.039387733,0.0044564954,0.04595565,-0.0060657663,-0.043520838,0.011781669,0.03548627,-0.013412549,0.020394538,0.0060751387,0.057616718,-0.018917622,-0.027539482,0.044648573,0.0030718497,-0.025708003,0.03139117,-0.027137937,0.015891898,0.03822347,0.017470501,0.014245584,0.02096727,-0.0076613734,0.018199831,0.0009648935,0.024440335,-0.0060920883,0.0029597213,-0.004545392,0.017219437,0.0021771137,0.05767154,0.014962069,0.017642489,0.040699963,0.02272608,0.01613016,0.009445301,-0.024268663,0.008545921,0.03092999,-0.014353565,-0.009141185,0.05401375,0.023612794,-0.021510772,-0.016299954,0.015678851,-0.012036776,0.024225809,0.014464081,0.0063411565,-0.04901887,-0.020124631,0.06648554,0.023585927,-0.08790651,-0.018407691,-0.02029127,0.050488975,0.0031611996,0.05700566,0.047178283,-0.0015302693,-0.011212822,0.0044938605,0.0070896074,-0.017350815,-0.0046988376,-0.024089826,-0.047989246,-0.0029733798,-0.052957047,0.04217993,-0.0009697672,-0.021675488,0.012410569,0.028262835,-0.0028044507,-0.050163746,0.006346673,0.016775351,0.016298797,0.068744,-0.029383682,0.02613073,0.016940536,0.0074444665,-0.020868873,-0.0044015897,0.009761295,-0.024138618,0.01080928,0.013400551,-0.030876543,-0.0094191,-0.039923064,-0.052579314,-0.014633122,-0.032256786,-0.008077473,0.014488613,-0.0038835986,-0.018232534,-0.021905001,-0.0057499437,0.04904523,0.018009724,-0.05718032,0.010980644,0.013161014,0.028052894,-0.03140561,0.028092608,0.025864618,0.029725507,-0.030281117,-0.013228638,0.011402612,0.018110383,-0.03321834,-0.02668786,-0.0024207013,0.021686412,0.046021044,-0.11320047,0.025505094,0.0010097189,-0.043156125,-0.05134465,-0.052584615,0.021317407,0.027568096,0.0016114165,-0.026342735,-0.04579819,-0.00617928,-0.0067699426,0.06364789,-0.053492934,0.026939698,0.064040564,-0.027452787,-0.026739627,0.03113895,0.030585632,-0.018507682,0.020713804,0.007622955,0.009975164,0.0015122293,0.030617418,-0.02041367,-0.004485561,-0.026467025,0.011021541,0.05735447,-0.011290726,0.033374768,0.018603327,0.028875684,-0.050209314,-0.013263402,-0.05872249,0.0436961,0.050261475,0.024353871,-0.07139118,0.05505227,0.010915366,-0.07349249,0.041997876,0.013423525,-0.0056747324,0.05546427,-0.0037221569,0.035643507,-0.044871118,0.018411668,-0.05987662,0.013540769,0.058489546,0.047042683,-0.015241472,-0.02518055,-0.001807114,0.0092607,0.00064249826,-0.038442492,-0.01021153,-0.00579828,-0.0007346479,-0.016721124,-0.026242219,0.032732822,0.015305921,0.034848217,0.040498517,0.020436287,-0.00148017,0.00806604,0.036266077,0.004194002,0.008709128,-0.030845668,0.04937471,-0.0038561788,-0.018150752,-0.03012766,-0.0029666354,-0.004433474,0.013389907,-0.008098185,0.014744669,-0.050293937,0.009244715,0.054851793,0.030490814,-0.07362803,-0.0014889375,-0.0052501075,0.021467341,-0.0067246337,-0.028407842,-0.007814739,-0.051766466,0.015794095,0.00040884386,-0.0032276742,-0.034138422,0.01738828,-0.02930431,-0.030702537,0.017563062,0.029729748,-0.03362348,0.0216925,0.0003112477,0.036474627,0.028662764,0.016597958,-0.022918733,-0.04758863,0.010770203,0.022399,0.021815917,-0.048857447,-0.028314078,-0.019515079,-0.064673975,-0.010728704,-0.029597776,-0.0015011977,-0.006036699,-0.0006933148,0.020105971,0.037854485,0.01688204,-0.0030951856,-0.020238927,0.025384253,0.0033049954,-0.014752626,0.033753105,-0.01730981,-0.018687408,0.034268156,0.036057625,0.049437355,0.005299841,0.014500095,-0.022076145,0.017199026,-0.030110922,-0.0095616905,0.005142643,-0.005518957,-0.038175326,-0.033696666,-0.0012668532,-0.03047401,0.002932303,-0.046529435,-0.059788987,-0.0058285757,0.020719128,-0.009659187,-0.004340612,0.0032695883,0.04085046,-0.005661327,-0.047432438,0.022319367,-0.023454137,-0.02575018,-0.011788664,0.014823012,0.015893502,0.02937885,-0.0024775914,-0.006844496,-0.010935822,0.014458519,0.013274676,-0.043793567,-0.024600776,0.025844797,-0.0036824613,0.031631287,0.021242421,-0.005119031,-0.014041364,0.02596865,0.013985053,-0.041799027,0.05269913,-0.031240633,0.008716191,0.022035154,-0.04155476,-0.0035009184,0.029963432,0.01796297,0.04371122,-0.00602082,-0.013315495,-0.06410696,-0.0426024,-0.0034967328,-0.03357065,-0.04870956,-0.02411596,-0.064000435,-0.012104497,-0.0067061028,0.0067029577,0.0006975338,0.024662923,-0.054915916,-0.007129916,-0.013172156,-0.025858201,0.004063525,-0.038009692,0.0010651593,0.04866858,-0.0045910785,0.032232866,-0.016171983,-0.025309848,-0.0020644518,0.016270556,-0.03380662,-0.040365268,0.011843955,-0.014901851,0.021466086,0.0278647,0.0049869353,0.051190566,-0.06451477,-0.042806707,-0.045257173,-0.00875059,-0.03297063,-0.0043794606,0.004252392,-0.036842905,-0.021104908,-0.022317015,0.04830665,0.074383534,0.009820432,-0.037100088,-0.016589671,-0.0503789,-0.029977277,0.016755158,-0.00027208755,0.009119433,-0.033443633,0.008169496,0.02899606,-0.039459955,0.021187186,0.07271904,-0.007190978,-0.02095574,-0.050088093,0.02003143,0.022691006,-0.033926137,0.0071527595,-0.052798886,-0.009216941,0.028213087,-0.0396403,-0.07013012,-0.059357524,0.016964836,0.049938653,0.0038904762,0.051499527,0.0012925043,0.011302643,-0.06561196,0.03464619,0.039609253,-0.0067468365,0.028778663,-0.024484694,-0.035891,0.024531906,0.026656331,-0.001967976,0.0026922612,0.04445941,-0.010097003,-0.042561606,0.043420438,0.056327436,-0.034538858,-0.06129818,0.030740807,0.014575334,-0.034927532,-0.02623209,0.029313678,-0.040659193,-0.0022508577,-0.024301508,-0.0025863082,0.013045879,0.0358178,-0.0104794195,0.017126486,0.0015357501,0.00091527204,0.041588515,-0.021362217,0.013412593,-0.06185802,0.027943198,0.014050073,0.000268962,-0.02901428,-0.012158531,-0.019371323,0.04568562,-0.011312981,0.039790552,-0.018390764,-0.0460528,0.05227564,-0.008263319,-0.015624965,0.0087168915,-0.0070686913,-0.03563715,0.041074067,-0.0348107,-0.020309823,-0.016322711,-0.034418974,0.030592134,-0.009566167,-0.012027451,-0.060688566,-0.030053081,-0.037243724,-0.014085615,-0.02228662,0.050003413,0.009240924,0.010409529,0.0032480839,0.047897853,-0.06474376,0.04776518,-0.00067311374,0.09208832,-0.022212975,-0.059602454,-0.03841241,0.019443853,-0.03479906,-0.019002799,-0.0063623516,0.030222742,-0.010438958,0.0424304,0.04396249,0.0021502853,-0.033728387,-0.011381277,0.050849695,0.033234976,0.0009021899,0.030472508,0.010167356,-0.013266349,-0.0553856,0.009428263,-0.014466395,-0.046058565,-0.007855196,-0.0180641,-0.008061851,-0.033053815,-0.02554914,-0.03106128,-0.029462885,0.02771757,0.018324126,0.015705166,-0.019057142,-0.030221136,0.0037446527,0.003996764,-0.0035595016,0.01726667,-0.024467915,0.051824268,0.002039082,-0.0057385103,0.015555185,-0.0040591476,0.048411164,0.0074148867,-0.004957053,0.036396336,0.0076444885,-0.005244657,-0.013779743,-0.07498703,-0.018874943,0.011281218,-0.0138438335,0.013612507,0.008126596,-0.044497773,0.025529476,-0.017813152,-0.013031453,-0.003740736,-0.09387639,-0.019282352,0.01499658,-0.010648293,0.025846923,0.035591736,-0.06704576,-0.0398727,0.013119023,-0.008879361,0.014739947,0.023995746,-0.0045877416,0.022706006,-0.04288489,0.023207832,0.00800041,0.0039111366,-0.011299413,-0.05692226,0.017878812,-0.007445463,-0.012232942,-0.0020789022,-0.030086504,0.040712878,-0.030759938,-0.03563315,0.012991031,0.032302,-0.030495742,0.018964857,-0.02398674,0.048678186,-0.00797304,0.010076245,0.015418196,0.01726104,-0.026783697,0.027470136,0.0332323,0.0153954085,0.03134975,-0.0050759506,0.021342603,0.0048947036,-0.031405475,-0.011776549,0.024852065,0.011403607,0.006069511,-0.009080933,0.02311744,-0.004436619,0.0038659095,0.007708814,0.012857112,0.017991833,0.011133615,-0.00047888915,-0.015971193,-0.013947544,-0.018512378,-0.04232111,0.014571926,-0.042869613,-0.018096728,-0.00082302035,-0.0020168978,-0.0016929022,0.011681055,-0.003026739,-0.021936648,-0.026237968,0.011663362,0.030819388,0.011312376,0.032592926,0.022498516,0.014741781,0.022210155,0.017082699,0.020809826,0.0050199707,-0.020362077,-0.03201557,0.003443029,0.0053730453,-0.038835622,-0.04293282,-0.025333988,0.04963055,-0.016149718,-0.02357698,-0.005002615,-0.026106419,-0.003223711,-0.061267212,0.028394964,-0.016980153,-0.010664,0.013324307,-0.029462654,-0.0058623464,0.0039257198,0.01633315,0.048505105,-0.011424942,0.026039332,-0.034970302,0.04506915,0.052259233,0.0045787455,0.00019289003,0.018574959,0.013756792,-0.015024579,0.013577543,-0.026968323,0.011425269,0.0042070476,-0.041712493,-0.005513907,0.036863297,0.0026957747,-0.053767595,-0.023813777,0.023537418,-0.008718847,0.0056048417,0.0068469704,-0.009919294,0.016041428,0.0075919856,-0.0024695634,-0.011501487,0.046758343,-0.050711814,0.06526274,-0.02228353,-0.040526543,0.00035791457,-0.04056345,-0.03402649,-0.0150144575,-0.027732879,-0.030699663,0.019539416,0.049142297,0.02413765,0.033537664,-0.008389843,-0.0027446384,0.043949954,0.04869329,-0.031054975,0.08361774,0.018620506,-0.035358306,0.044348337,-0.046320353,0.05185505,-0.020362679,-0.044100896,-0.03424415,0.047223218,-0.04902996,-0.016613364,0.028576856,0.037640795,0.020380154,-0.042866472,-0.067638345,-0.0042765024,-0.025485491,-0.029319847,-0.017317688,0.06707009,-0.0067003416,-0.005877791,0.009959147,-0.09212773,0.2449709,0.05911594,0.017902251,-0.023030035,0.013496456,0.021469891,0.010133245,-0.029204253,-0.00573814,0.0045782123,0.024847867,-0.0006351007,0.041806944,0.05584449,0.025712611,0.07649428,-0.041449115,-0.017375158,-0.0360537,-0.035663527,-0.02703666,0.01234127,-0.01390465,0.02365426,-0.024784727,0.019680236,0.05728273,-0.019718403,0.0077533815,-0.011720693,0.017022824,-0.024290787,0.013048425,-0.021328324,-0.008969108,0.053105578,-0.0011369764,-0.02728298,0.01443049,0.021087369,-0.04922153,0.05577747,-0.012900182,-0.008383409,0.0073241866,0.02041093,-0.047827024,0.030672023,-0.0010765853,-0.040005397,0.104656406,-0.0012151714,0.04486592,-0.037653916,-0.031725653,0.003341686,0.040970508,-0.029198533,0.03186876,-0.016346905,0.0008110125,-0.028700503,-0.024005175,-0.0086089885,-0.018737698,0.024163673,0.061150935,0.030915631,-0.029573897,-0.02643998,0.0006932776,-0.02152049,-0.031539075,-0.008932484,0.0043420615,0.0072871074,0.009237834,0.0026657397,-0.0061250366,-0.030569974,-0.033368986,-0.017982986,0.03245816,0.0112521695,-0.0018125798,0.041499536,-0.0007990381,0.021082109,-0.054176934,0.034403622,0.021417016,0.05079252,-0.009508274,-0.047089163,0.0053399224],[0.016265389,-0.004483102,-0.001124807,0.02281822,-0.004566552,-0.006971669,0.035404377,-0.005338479,0.012047905,0.027521817,0.026153222,-0.02661564,0.00968302,-0.014835967,-0.035283342,0.0059442897,-0.01469101,0.006549232,-0.039395493,-0.008778436,0.00036969015,0.011271078,-0.08765753,0.00010260809,0.0025413942,0.058272325,-0.024137668,0.014524871,0.07191168,0.054423217,-0.026878987,0.022689411,0.051515166,-0.028028456,-0.038436737,-0.051306397,0.030258292,-0.0072527854,-0.020071145,-0.011612123,-0.0055880495,-0.010435626,0.034693424,-0.038510684,-0.015997289,-0.033986583,-0.015019187,-0.024401154,0.011677511,-0.031358376,0.03608044,0.013677321,-0.00563155,-0.018189438,0.045850173,0.017070144,-0.03417299,-0.015868064,-0.026700886,0.03766916,0.031344052,0.01988997,0.019605968,-0.06346863,-0.012620886,0.020251522,-0.016600952,-0.003547855,0.011750941,-0.01248655,0.012513555,-0.002250102,-0.008267328,-0.024813423,-0.0116517,0.010884732,0.010617318,0.004218869,-0.053196,0.043427836,-0.016991138,-0.0056653228,0.030792644,0.026114954,-0.0380854,-0.014717248,0.0100392895,0.049952745,0.009607321,-0.014984172,0.0050328807,0.01996297,-0.029197725,0.0032974589,0.028427707,0.0041239574,-0.022784341,-0.003506217,-0.033889767,0.0070016645,0.009870249,0.012801565,-0.027671868,0.048952527,-0.0745646,0.006505668,-0.019883933,-0.00076776574,0.029220756,-0.02815383,0.0054045236,0.02397572,-0.005692909,-0.015729917,-0.0016377599,0.01068719,-0.024279542,0.033227757,-0.04195631,-0.012143675,0.015850792,0.0021289103,-0.009061417,-0.010522496,0.04096772,-0.032250997,-0.023194369,0.05792325,-0.028396873,-0.016088152,0.011103746,0.009534711,0.013191934,-0.00028702753,0.0624128,-0.015755285,0.003023791,0.019599948,-0.007508775,-0.031556163,0.026010491,0.008192942,-0.03751263,0.08680329,-0.023435378,0.04103992,0.0057108253,0.0404425,-0.055278864,0.049333952,-0.05505579,-0.020217959,0.029051222,0.031815413,-0.034212377,0.031410374,0.02226275,0.014718007,0.008495537,-0.027339684,-0.012794627,0.036635347,-0.002647415,0.006468042,-0.067867495,0.036701556,-0.049867865,-0.017588252,-0.003861573,0.00058875367,-0.02570766,-0.014496136,-0.029599888,0.0074740006,-0.024990324,0.044504188,0.010855455,0.012500458,0.023980984,0.0030002438,-0.0028035033,-0.024190223,0.013702713,0.05892418,0.0073979977,-0.0005489849,0.034359097,0.022913242,-0.04181116,-0.03062655,-0.0087186815,0.057152774,-0.046920326,-0.0012105932,-0.0019033359,-0.020843878,-0.02042,-0.02984247,-0.005624309,-0.05605747,-0.0062703034,0.039176293,-0.010095953,0.044658154,0.0049169874,-0.026052902,0.022683263,0.059901476,-0.029105179,0.012584258,0.008568773,0.041964773,-0.03752092,-0.025881065,0.035404425,0.0047410433,-0.038809594,0.039038345,-0.027031576,0.0028338514,0.025428168,0.028743086,-0.0042059864,0.01679291,-0.005807513,0.029976076,0.03729149,0.031410225,-0.019829862,0.0036966328,-0.015213033,0.013289668,-0.009278123,0.042825613,0.019227048,0.016042907,0.027469637,0.018286828,0.026227972,0.031352118,-0.02715127,0.010131041,0.010944113,0.0034666485,0.025739575,0.05084562,0.018249225,-0.021447197,-0.023798518,-0.0018703557,0.0127300685,0.017463583,0.00937239,0.029049752,-0.06627799,-0.0010804641,0.04631265,0.03785803,-0.07186289,-0.020683283,-0.009458973,0.060239997,-0.0071024406,0.038835082,0.05357577,-0.005866213,0.0087077925,0.0074252817,-0.0071963677,-0.010511257,-0.0039901854,-0.033255327,-0.045209758,-0.032690592,-0.041428167,0.041123487,0.016157096,-0.02001732,0.022088692,0.020986246,-0.012500492,-0.03496406,0.016249256,0.021073902,0.008368876,0.059931852,-0.039271645,0.019179378,0.0075458973,0.018736968,-0.04395687,-0.011677881,-0.010527484,-0.023769066,0.036349833,0.013654486,-0.039379045,0.020885827,-0.03415934,-0.043740205,-0.011282629,-0.04740967,0.0009127424,0.015179791,-0.0025780974,-0.008398522,-0.017476832,-0.027457107,0.03546717,0.024870478,-0.05798064,0.039435837,0.005047247,0.010927684,-0.06704523,0.026513506,0.044342116,0.049910855,-0.029408446,0.008871373,-0.00016189012,0.009530894,-0.022042481,-0.030420698,0.022065673,0.0077716457,0.055058174,-0.08926917,0.013618203,0.029148864,-0.044924833,-0.049154032,-0.032807227,0.0148980385,0.031237952,0.014287679,0.0012165898,-0.039271493,-0.02186608,0.0039084097,0.030692905,-0.03982837,0.030005924,0.059789356,-0.016924273,-0.013041012,-0.0000888243,0.024544256,-0.03411771,0.009985489,0.019584712,0.037517607,-0.007393539,0.029486906,-0.01448019,-0.0062916996,-0.01998909,0.0033226896,0.051734623,-0.011105738,0.039957717,0.028884234,0.0001316128,-0.04736114,-0.008901484,-0.06523885,0.062156815,0.009454659,0.006067942,-0.06550592,0.060025454,-0.003009387,-0.0552485,0.03589081,0.010028678,-0.0028456482,0.057990946,0.0007642871,0.04867287,-0.03163989,0.033001903,-0.017258447,0.024693362,0.07015644,0.04951475,0.0009188348,-0.035788577,-0.006828969,0.0024653776,-0.00876628,-0.018656129,-0.020472396,-0.005441434,0.0069863372,-0.028488753,-0.017876048,0.032324594,0.029115062,0.02835683,0.046904787,0.039531324,0.01973039,0.026112173,0.03676616,-0.0032046703,0.008780548,-0.024575902,0.0548779,0.00008354838,-0.0051936912,-0.023436902,0.007577815,-0.029819328,0.041093446,-0.011096134,0.021467816,-0.032127015,-0.0031194629,0.025875518,0.04290599,-0.06475235,0.014316231,-0.0068989606,0.0041204765,-0.0008375266,-0.014309645,-0.025444252,-0.056222178,0.035005666,0.012051064,0.011862305,-0.02473823,0.012566344
+8000
+,-0.00529446,-0.037878104,0.020456327,0.005287361,-0.025189906,0.016757155,0.000760728,0.029805008,0.0028823847,0.018203886,0.010180803,-0.007502566,0.0034060758,0.026606899,0.029663198,-0.06627743,-0.012541163,0.0063201324,-0.058793914,0.0026468248,0.00035826236,-0.015925528,-0.013645275,0.010055699,0.00065288093,0.03119206,-0.0014909158,-0.018397195,-0.02515003,0.029471206,-0.0030867357,0.0042674383,0.021633593,0.010205468,-0.039519105,0.033993665,0.027010709,0.03361465,0.0005254163,-0.0019965007,-0.016730066,0.021017289,-0.044477053,-0.0017060371,0.026816776,-0.012702857,-0.019652965,-0.029722307,0.0065163854,-0.028908245,-0.028810002,-0.053701762,-0.06491351,-0.0012761333,-0.014577361,-0.0033381167,0.0009920783,0.003056519,0.048796367,-0.0057357517,-0.0470075,0.017733369,-0.035288755,-0.017849732,0.012540178,0.03439066,0.016305745,-0.004522389,0.033251416,-0.0072456286,-0.016706113,0.031997453,0.002273069,-0.046618346,-0.0403239,0.014557993,0.021993287,0.038950335,0.0147031285,-0.010869721,-0.024053166,0.02971161,0.035239697,-0.024917055,0.041148413,-0.030328482,0.008485697,-0.009252319,-0.037589926,-0.040346816,0.06387852,0.026597835,0.04902961,0.018718548,-0.01434605,-0.06928469,-0.041979987,-0.015289209,-0.0661353,-0.049700215,-0.008470546,-0.03863258,-0.0073725577,-0.0052055605,0.0077752713,-0.010867793,0.03472603,-0.044051953,-0.0026973025,-0.011173311,-0.010573222,0.0024674342,-0.007652425,-0.0033115866,0.052976366,-0.026996782,0.018084686,-0.024311133,-0.035963684,0.009280357,0.015893932,-0.03661573,-0.008107801,0.011846857,-0.013586407,0.00720782,0.011776483,0.009899309,0.03413228,-0.05942563,-0.05596991,-0.0070568067,0.00025184196,-0.021890888,-0.021269092,0.0153422,-0.028575746,-0.010842632,-0.013683655,0.0604336,0.043502048,0.023839863,0.008128931,-0.029678535,-0.05508822,-0.052545954,0.015978713,0.011476111,0.0043942956,-0.02836505,0.044906337,0.038229834,-0.043520574,0.027432492,0.054063566,-0.018690435,0.0064913393,-0.05841861,0.036396597,0.013885834,-0.033190023,-0.017869284,-0.057974722,-0.0012818817,0.042657237,-0.036956888,-0.060724303,-0.055034738,-0.0009067547,0.04082561,0.0013194536,0.036089074,-0.007091872,-0.0063028065,-0.08691792,0.010787336,0.034788013,-0.01015338,0.033140138,-0.021062803,-0.027850237,0.03441844,0.0127209565,-0.00035261532,0.027376574,0.06465654,-0.011775513,-0.020935338,0.07766764,0.0721236,-0.04442266,-0.06367054,0.02146136,-0.005191714,-0.045605242,-0.025185961,0.013460919,-0.028408438,0.020799091,-0.046526957,-0.005622676,0.017230157,0.026589273,-0.01140006,0.025058646,-0.0019773764,0.0071256435,0.03678127,-0.03004682,0.032635484,-0.05193448,0.01007895,0.018898563,-0.010903663,-0.0045866077,-0.015817204,-0.015694264,0.052768216,0.0034103089,0.021236034,-0.014180423,-0.035196908,0.033360794,0.003795113,-0.028382158,0.00762509,0.0026696876,-0.01195982,0.017395817,-0.054967295,-0.014733623,-0.011988726,-0.0064413706,0.018195122,-0.020655874,-0.009108285,-0.05893793,-0.055444777,-0.045755666,0.00078423816,-0.02429771,0.032794025,-0.0058625434,0.027316814,-0.009888391,0.052140336,-0.054647386,0.05952427,-0.029169062,0.07100109,-0.017686233,-0.04675742,-0.022587871,0.029302668,-0.06477319,0.0049380856,-0.035880104,0.034413785,-0.022329718,0.031797145,0.041221738,0.0043029073,-0.010733861,-0.016903095,0.034408327,0.03965892,-0.0031371168,0.047170267,0.028157571,-0.0017741547,-0.0502098,-0.017742638,-0.012388974,-0.048568506,0.0065743276,0.019988025,-0.03605109,-0.002300939,-0.05260175,-0.051679116,-0.043826807,0.018732086,0.004821734,0.04008691,-0.0274593,-0.02328711,0.006370236,0.0197355,0.015244351,0.024427148,0.011996078,0.026233008,-0.0031613703,-0.022455,0.023333747,0.017398026,0.03735173,-0.017059527,0.004089993,-0.004491123,-0.0051118885,-0.003557036,-0.016012423,-0.0491689,-0.019055035,0.006404816,-0.025607489,0.020764498,0.025772357,-0.060924813,0.028762741,-0.021211702,-0.022221925,0.000115601426,-0.06603581,-0.0029462192,0.023051854,-0.009838088,0.030830834,-0.0011000619,-0.082605526,-0.03560309,0.023953179,0.00085354724,-0.00026218308,0.023140904,0.020146368,0.023259152,-0.04064575,0.0045450223,0.0014018285,0.006509242,-0.018046493,-0.040859133,0.024324225,0.0020088977,-0.0216655,0.00041350414,-0.041429803,0.030468104,-0.018711675,-0.023789493,0.013513418,0.05480989,-0.020614801,0.006679099,-0.04471,0.060531043,-0.011337345,-0.012367995,-0.00089692516,-0.006519519,-0.0369095,0.052884266,0.040833794,0.011268243,0.027913822,-0.0026637802,0.012575989,-0.022268223,-0.01849397,-0.023489531,0.020400723,0.017896678,-0.0007369455,-0.0060978513,0.018475806,-0.0007829387,0.008053918,0.017259948,0.007434359,0.013037993,0.0049127857,0.021082804,-0.031751435,-0.006057157,-0.03203258,-0.04816041,0.02247909,-0.0310263,-0.018995814,-0.009284821,-0.0012668658,0.0018610532,-0.004804367,0.008708564,-0.03546697,-0.034401946,0.017613634,0.0076073287,0.006254416,0.03324442,0.030891554,0.017369566,0.017745614,0.0050994605,0.016685616,-0.02745326,-0.034436997,-0.042295277,-0.003408522,-0.012057934,-0.03314453,-0.029575596,-0.042499185,0.04354262,0.004125145,-0.012130983,-0.016057733,-0.019351395,0.0063487072,-0.051511895,0.024548946,-0.027970962,-0.013848264,-0.002495159,-0.028308595,0.021168614,-0.01836898,0.009904748,0.018202037,-0.002260823,0.020082468,-0.038329463,0.038428683,0.05362909,-0.010239017,-0.016275426,0.003357278,0.0115518635,-0.042940576,0.0021829326,-0.040673487,0.005165516,-0.013570518,-0.008912819,-0.028644131,0.04558075,-0.0075995903,-0.044483367,-0.035204533,0.017020427,0.0019043336,0.016970951,0.04071574,0.008866039,0.0064355847,0.022419162,-0.00045735153,0.0076998794,0.021329021,-0.07445762,0.063614324,-0.041574184,-0.06974677,0.0022500467,-0.050747108,-0.00043205614,-0.020563643,-0.016420038,-0.0353404,0.022763653,0.02774378,0.009659479,0.033285074,-0.00616579,0.019828528,0.03852224,0.07518542,-0.029578289,0.07311388,0.013328176,-0.015761252,0.02164406,0.00056008785,0.04732916,-0.01958198,-0.032772858,-0.050933596,0.024000853,-0.03171373,-0.02418641,0.02442638,0.04085333,0.040662345,-0.049417723,-0.06741575,0.0039961,-0.029630259,0.0046777287,-0.010855354,0.06314876,0.0024940656,0.0015954861,0.010485541,-0.08465706,0.25883004,0.0436446,0.014491268,-0.01248475,0.012404635,0.03032707,0.023826888,-0.022261932,-0.0058831302,-0.029360367,0.0367637,-0.0105300285,0.034218106,0.058783516,0.022528911,0.050210416,-0.025686309,-0.01142294,-0.036825575,-0.044747647,-0.044064667,0.029618897,0.0003090132,0.040266514,-0.023360813,0.020062331,0.04752081,-0.027502023,0.010562212,-0.022607682,0.011425262,-0.033388387,0.017117765,-0.05411669,-0.019665683,0.020161007,-0.02059891,-0.034984577,-0.0056598755,0.029288236,-0.03348025,0.052972186,0.00664673,-0.010336427,-0.0011792859,0.04784412,-0.03999177,-0.0037582053,-0.007917804,-0.026155693,0.07550059,0.0039759176,0.047009196,-0.049330793,-0.03342767,0.008028758,0.02767348,-0.020309864,-0.00023069278,-0.015914392,-0.0045628157,-0.043298192,0.013959868,0.012215448,-0.013129692,0.015107496,0.077254914,0.03946005,-0.009935423,-0.022894263,0.0029391295,-0.0057518347,-0.023986882,0.005917243,0.021538343,-0.0027477453,-0.022462472,0.018717436,-0.000031185944,-0.014544086,-0.017581606,-0.0033347523,0.018054169,0.0036675492,0.015948338,0.024193486,-0.007796251,0.02426649,-0.07627698,0.035412315,0.04123844,0.018451853,-0.016347984,-0.06119676,0.011920982],[0.009692268,-0.05654675,0.013266096,0.019725485,-0.013747218,-0.016733252,0.015011775,0.02204173,0.02220611,0.05115096,0.025350133,-0.010404481,0.009680506,0.013015382,0.012242289,-0.014860149,-0.06556613,-0.032405924,-0.081690125,0.008675472,0.01030192,0.014341676,-0.07676489,0.01963075,-0.015001914,0.029281806,-0.017688585,0.01676877,0.06093015,0.033758685,-0.006576124,-0.0029019357,0.04424047,-0.03520877,-0.021204097,-0.0412492,0.04857518,-0.010912659,0.01698139,-0.033186954,0.033697125,-0.035840705,0.050265178,-0.046441525,-0.048983384,-0.015184388,-0.01958039,-0.05449079,-0.017021272,-0.059270047,0.00551242,0.000048333695,0.030452333,-0.011109569,0.045710936,0.006320045,-0.01108575,0.03175778,-0.023435378,0.033942815,0.018279994,0.043960758,0.0036908053,-0.044708055,-0.02044879,0.004242059,-0.018647458,-0.010807124,0.011033283,-0.0176352,0.0012224542,0.03445095,-0.019588176,-0.036054462,-0.027256602,-0.009582302,0.044634074,0.0019317815,-0.042098206,0.059294697,-0.018226504,-0.021572808,0.01422114,0.011740014,-0.04105947,-0.019540217,0.007419944,0.044146273,0.011245994,0.013933219,0.046517115,0.034577575,-0.022356242,0.01376212,0.07152482,0.04503855,0.01543184,-0.0393908,-0.061608184,0.031505466,0.030131519,-0.0105829155,-0.01340129,0.06648793,-0.07829177,0.003956939,0.033602577,-0.011749996,0.011347683,-0.028149553,-0.01973879,0.01073735,0.035198033,0.045640763,-0.019963404,0.019232778,0.0015303938,0.026727568,-0.034595918,-0.0021070177,-0.022044357,0.0076478277,-0.0038226286,0.030519668,0.0010180793,-0.062129166,-0.01763752,0.026536651,-0.065056525,0.008162613,-0.010094291,-0.022551978,-0.0025584067,0.028763354,0.043991566,0.033608556,0.03743062,-0.007573672,0.035841055,-0.0342873,0.043282937,0.031806137,-0.021924822,0.06651811,-0.016521154,0.029111164,0.015573316,0.016281001,-0.05093609,0.06717714,-0.06255634,0.008783164,-0.00048112017,0.059586495,-0.018703828,-0.022688571,0.04450426,0.0093182875,0.005104253,0.018231494,-0.016196558,0.019091658,0.00016991005,-0.0041941837,-0.06427091,0.045650166,-0.013926483,-0.0010767999,-0.032532636,-0.006533889,-0.019040642,0.032189935,-0.026621792,0.0061605517,0.0027027454,0.04169053,-0.0016510807,-0.0032969709,0.004097285,0.02884995,0.007843683,-0.013250971,-0.015337404,0.05900647,-0.016904289,0.0084968535,0.012032405,-0.0014228319,-0.028819919,-0.043796737,-0.019617325,0.034641646,-0.025283929,-0.014854483,0.02672461,-0.0017128164,-0.04093657,-0.021904813,-0.0039497935,-0.051065072,-0.0056900457,0.027198307,-0.0030872514,0.043833625,0.0016697289,-0.010427923,0.023625351,0.0363109,-0.008325479,0.00086160906,0.05160503,0.04658028,-0.011548762,-0.02146342,0.042287394,-0.021794206,-0.04170911,0.044091146,-0.0548298,-0.011129302,0.02713894,0.033643384,0.06601991,0.014910645,-0.02403298,0.0024141774,-0.034048263,0.05122552,-0.035143614,-0.0100407675,-0.01953726,0.020685425,-0.0069473796,0.015214193,0.012833135,0.0031380202,0.025382264,0.036958817,0.030345544,0.003859161,0.0071920403,0.006429258,0.035693265,0.027763236,0.029721739,0.05973044,-0.014175247,-0.0015891956,0.02619809,-0.012711146,-0.003754075,-0.0025411986,0.03496884,0.004948359,-0.02393869,-0.013287771,0.03447728,0.060207486,-0.024353107,-0.0015422596,-0.03657408,0.023418384,-0.0024562774,0.027717294,0.022576489,0.008558401,0.029217815,0.07273152,0.0009954374,-0.02399747,-0.02458713,-0.011310408,-0.043066222,-0.012109516,-0.035967134,0.007067081,0.0038665778,-0.048162725,0.014840835,0.04831288,-0.015162671,-0.04601588,0.0016618057,0.0076500718,0.01197168,0.042562917,-0.00085225113,0.012369115,0.00822079,0.034838546,-0.031012876,-0.003494889,-0.031233672,-0.01779311,-0.020857502,-0.020628985,-0.051707145,0.0056239376,-0.062168274,-0.037742134,-0.007511268,-0.05905413,-0.007022025,-0.029682254,-0.010340801,0.00783134,-0.013172232,-0.037519947,0.027169758,0.035658546,-0.0632881,0.035699755,0.028375277,-0.003942387,-0.06470201,0.031413324,0.019370351,0.030806698,0.0010364475,-0.011944346,-0.016918503,0.025322275,-0.00966784,-0.070434414,0.0037285504,0.025785943,0.03737578,-0.12964827,-0.017609194,-0.031898066,-0.058467217,-0.01558394,-0.015593058,0.041190945,-0.009238909,0.008915696,-0.019832827,-0.051154472,-0.011235231,0.0029394992,0.04494262,-0.06430447,-0.0055263275,0.06895832,0.010097634,0.013235639,0.029805042,0.0019210819,-0.04314127,0.019711029,0.0047486685,0.040242746,-0.0061331135,0.05125889,0.009859125,-0.008867881,-0.020292426,0.0059314496,0.025863135,-0.015361071,-0.0009817545,0.022907835,0.004624066,-0.030777104,0.020791588,-0.044987768,0.014204119,-0.03829194,0.03374065,-0.053753957,0.030638173,-0.0042127594,-0.033539213,0.021227293,-0.031600486,-0.016257409,0.033550084,0.014997053,0.0372722,-0.039302643,0.050542373,-0.02127802,0.028103398,0.069708854,0.034398552,0.024835415,-0.028235301,0.0010300548,0.003789145,0.022751983,-0.04464665,-0.023477467,0.027871476,0.0079043275,-0.039029066,-0.04916405,0.043028317,-0.0019607479,0.066656865,0.04396174,0.060427945,0.016876532,-0.0019196881,0.043480933,0.016696312,0.03864843,-0.035712082,0.038216826,0.0170386,-0.025230195,-0.06416971,0.016688656,-0.020016091,0.007292225,0.0050112037,0.0069785095,-0.008374862,-0.014183062,0.00827034,-0.0034902939,-0.06414911,-0.0058991336,0.0118157,-0.0022344203,0.018164454,-0.010507643,-0.015654327,-0.019552555,0.034475807,-0.0025254076,-0.0027814938,-0.027360197,0.04905037,-0.0039867456,-0.04678071,0.002962924,0.005932191,-0.042128894,0.018741183,-0.02413714,0.016493319,0.028667176,-0.013733134,-0.01818932,-0.00070407003,0.021875558,-0.0036537577,0.044549603,-0.016931493,-0.02456167,-0.0026110136,-0.07650298,-0.019808035,-0.0066831023,0.0047471877,-0.026235925,-0.040495917,0.016211856,0.027802132,-0.016684271,-0.0047937254,-0.0151682105,0.06258281,0.0046748277,0.002924442,0.04084221,-0.014955867,-0.0412114,0.02512146,0.02850099,0.03352172,0.027050022,0.009896356,0.004358528,-0.01744957,-0.041774683,0.0038676946,-0.008234917,-0.023647392,-0.027706282,-0.026724996,0.01146716,-0.00244715,-0.007286507,0.0004614776,-0.063333064,0.0145365745,0.009870133,-0.026085928,-0.019493679,-0.0021675234,0.031006938,0.02497142,-0.061244875,-0.013624218,0.0026112725,-0.032990303,0.004962647,-0.0061633256,-0.0032923177,0.010843617,-0.031272408,0.0013988317,0.00038714058,-0.0083241435,0.0060488004,-0.059260674,-0.008083169,-0.0362895,-0.017088428,0.069372594,0.01218153,-0.005326501,-0.017207107,0.03906321,-0.012191663,0.0018503427,0.004056251,-0.026492555,0.04506749,-0.003433573,-0.044301834,-0.040161043,0.047696486,0.0013675974,0.010770477,-0.018421087,0.006122239,-0.017153796,-0.047390595,-0.012437695,-0.020087447,-0.030940961,-0.011518364,-0.004379764,-0.042063948,-0.0068465387,0.016413692,0.007678208,0.057956286,-0.030245837,0.024483847,0.016899616,-0.0068905116,-0.043401316,-0.0032445444,0.033801008,0.070470706,-0.009626133,-0.0013665813,-0.002157294,-0.028825006,-0.0019555213,0.023792941,-0.036416817,-0.02010795,0.0034296284,-0.013330975,0.024885297,0.015816918,-0.023932463,0.06367046,-0.034547966,-0.022818364,-0.022905614,-0.031516198,-0.040644474,-0.029711554,0.015834374,-0.017807368,-0.0104654245,0.008000836,0.07436446,0.007257835,-0.0024459732,-0.039546076,-0.018288605,-0.058201734,-0.03428095,-0.0037580442,-0.008758855,0.012623691,-0.0114270365,0.022580631,0.037980504,-0.02453727,0.0017424923,0.079962775,-0.0048640566,-0.00560838,-0.055759,0.02707529,0.031470627,-0.050763857,0.0040682093,-0.0015228093,-0.008869186,0.013367426,-0.052947868,-0.06442493,-0.026978817,0.0041139587,0.049495734,-0.0025716848,0.052409038,-0.0078572165,-0.013121284,-0.060204837,0.02622419,0.023789177,0.01715188,0.008765854,-0.015679019,-0.024883948,-0.0071002585,0.034536503,-0.013412354,0.024629395,0.030778613,0.005699857,-0.069577746,0.024936533,0.067117594,-0.050600115,-0.0633255,0.006822122,-0.008228735,-0.030674642,-0.03029235,0.037344962,-0.01642197,-0.017004186,-0.0038714947,0.010321467,-0.026525216,0.029434089,0.0038422176,-0.011000381,-0.004903465,0.01984594,0.02203559,-0.025549771,0.025635017,-0.03034502,0.011608675,0.019019522,0.008374472,0.0053555076,0.012939573,0.0017920589,0.001473717,0.01985443,0.030127687,-0.008046763,-0.04205999,0.017771324,-0.026566563,-0.021595199,-0.030059014,0.00756324,-0.026161993,0.037503988,-0.06002428,-0.017136743,0.012056754,0.01026222,-0.0065809567,-0.037523504,-0.014892588,-0.021408672,-0.048197534,-0.058488123,-0.028170412,-0.028363593,0.050130054,-0.0013770005,0.014893982,-0.0005245717,0.0542091,-0.04880571,0.017997539,0.0021489542,0.06874941,-0.02782064,-0.056749847,-0.029803291,0.022006668,-0.053434942,-0.028080437,-0.021989554,0.012001325,-0.018461168,0.045574345,0.03790956,0.0043739257,-0.031798545,0.0012711573,0.024251057,0.0048981616,-0.0027514112,0.018842973,0.050076403,-0.021487748,-0.020870762,0.004196408,-0.018304482,-0.06252809,0.0014676421,0.009031787,-0.04657925,-0.0239299,-0.05250246,-0.050415274,-0.035936788,-0.00081910804,-0.022249632,0.007935876,-0.020049907,-0.011243778,-0.004419384,0.037171327,0.00043888355,0.02485972,-0.0048524807,0.015787235,-0.0059723365,0.0106065925,0.017822925,-0.0045301025,0.014662902,-0.018388676,0.0021262013,0.008359462,0.011622913,0.022687217,0.00037749173,-0.03206279,-0.020548344,0.018451253,0.011661803,0.020992203,0.023723068,-0.030287025,0.014833693,-0.015583232,-0.018414168,-0.013353712,-0.04356668,-0.020757074,0.00514507,-0.009557157,-0.00948708,-0.037188377,-0.049285922,-0.02432846,0.01187112,-0.025071546,-0.0020388474,0.03589312,0.01755934,0.047679406,-0.0383139,0.02864778,-0.016489862,0.04118442,-0.020135807,-0.029647136,0.036579475,0.018472958,-0.006460234,-0.008066218,-0.0044049667,0.02762508,-0.012352381,-0.02769574,-0.019775033,0.008598174,-0.006747292,0.006719065,-0.011834202,0.03533751,-0.020611139,0.00575557,-0.0042242375,-0.014203171,-0.0044933404,0.04228481,0.052783415,-0.0019540945,-0.003519041,0.049836606,0.004307384,-0.026599156,-0.04597243,-0.02108803,0.041613627,0.034769606,0.014956326,-0.039072704,0.03411195,0.005189652,-0.018722102,0.0039631226,0.034925684,-0.023179576,-0.023461718,-0.02958695,-0.02973385,0.014733985,-0.012811008,-0.014123617,-0.005273559,-0.029858038,-0.018670753,-0.007545332,-0.008794245,0.035846084,0.011279243,-0.025982078,0.013197963,0.0023532168,-0.025097676,0.050134208,0.031849757,0.021611016,0.023872413,0.021914894,0.030407215,0.005092537,0.019605324,0.022217251,-0.0078751035,0.011627522,0.018813413,-0.0013726869,-0.06767875,-0.0073438603,-0.049183954,0.046845134,-0.021094842,-0.0050376924,0.003262033,-0.0070021697,0.030789068,-0.07203881,-0.00335245,-0.030189965,-0.0067486316,0.041674357,-0.03601866,0.014919061,0.026788529,-0.015686857,0.02129294,0.008221,0.0053820657,-0.0008723697,0.033307146,0.049601093,-0.029805047,0.0102706775,0.019648977,-0.013564547,-0.018427525,0.013720519,-0.039832126,0.019587329,-0.012936258,-0.004155914,0.014217278,0.04807116,-0.023204431,-0.04932788,0.016703915,0.021102168,0.0146795865,0.037820783,0.02060426,-0.004592742,0.026827848,0.022539705,0.010560025,-0.0034481229,0.033544194,-0.030062538,0.022230163,-0.031106556,-0.06766962,0.0037176572,-0.032637537,0.015078543,-0.018490188,-0.009670249,-0.06380116,0.02041303,0.023435827,0.010599885,0.017758936,-0.04550099,-0.033120025,0.061062325,0.01915702,-0.0060446165,0.05604585,0.024021164,-0.03060595,0.037404526,-0.044553775,0.04567413,0.0010982906,-0.0064501273,-0.05663689,0.0225529,-0.049696565,-0.03268826,0.044910092,0.035562083,0.044882547,-0.031786777,-0.064419106,-0.0056557925,-0.05068851,-0.009898876,-0.019065777,0.03711433,0.0040700063,0.0005564049,0.02982702,-0.07284377,0.27283671,0.042149507,0.02988869,0.04919885,-0.010275982,0.0063637365,0.005102337,0.0032050493,-0.0035584539,-0.039233092,0.032629512,-0.00039751182,0.022337617,0.02694893,0.0073695476,0.064233325,-0.028911907,0.007915947,-0.03845498,-0.044646673,-0.021415364,0.022919312,0.008788006,0.035858646,-0.0066256784,0.01921649,0.041192286,-0.030185618,-0.0491714,0.023056539,0.045704756,-0.032114103,0.019349733,-0.030149475,-0.05389811,0.016579548,0.0019538912,-0.0125959525,0.007832005,-0.00592668,-0.03606402,0.031555764,0.021675464,-0.0026739964,0.0007634774,0.047932476,-0.009313289,0.013060105,0.0018027261,-0.03985993,0.027103748,0.011837067,0.026134223,-0.04660805,-0.027981563,-0.0020156007,0.011213738,-0.0040648277,-0.011976118,0.037224017,-0.015623329,0.006342036,0.03315709,-0.008252224,-0.032141306,0.030097581,0.05866361,0.046438806,-0.04124713,-0.033742238,0.014621057,-0.013303509,-0.046304706,-0.019652875,-0.023878573,-0.0031693922,-0.015626865,0.026276201,0.043571994,0.010259223,-0.0022018135,0.013639033,0.0034888398,-0.011761592,0.008112699,0.06263709,-0.0042148973,-0.014604926,-0.022687761,0.047842532,0.0076807286,0.014312509,-0.022449277,-0.015898185,0.0018422108],[0.025905002,-0.041576594,0.002050065,0.02450623,-0.013443037,-0.018634483,0.010652994,-0.027228266,0.03607399,0.05034707,0.036925677,-0.003890911,-0.005071041,0.00690845,-0.011829207,0.010076182,-0.029663708,-0.018281896,-0.061645567,0.0051738154,0.0033176697,-0.006591275,-0.09199394,-0.013510359,-0.023311323,0.0413142,-0.023695083,-0.0044643497,0.05022715,0.041171964,-0.026078923,0.005237121,0.07866789,-0.045590255,-0.035430875,-0.039844003,0.054242726,-0.024444986,0.009012111,-0.053067,0.010375151,-0.01793568,0.021647222,-0.034335047,-0.03445492,-0.023279237,-0.002246431,-0.024936395,-0.00004175925,-0.052575037,0.007525654,-0.018973546,0.023575518,-0.016198818,0.0355057,-0.012267389,-0.0069717155,-0.0052877036,-0.022691542,0.041654106,0.024939032,0.039967448,0.014536754,-0.07434494,-0.018763246,0.021819208,-0.019016623,0.017274816,0.028442623,-0.010548126,-0.009720056,0.03749385,-0.022978066,-0.01531822,-0.017694952,-0.0029523876,0.02405078,0.0122818295,-0.044854026,0.045456424,-0.012669386,0.024504982,0.033738818,0.008930528,-0.047344945,0.013271366,-0.039706185,0.042453926,-0.00060190103,0.0024676004,0.03433693,0.027275324,-0.016117852,0.01792938,0.052413728,0.030104885,0.013296719,-0.022625247,-0.061168093,-0.014969512,0.022048285,0.00073361886,-0.030630829,0.051431082,-0.06546962,-0.008447007,-0.019732129,0.020460226,0.0110167395,0.012680188,-0.0027113094,0.002570612,0.017157147,0.04320521,-0.008522659,0.045173965,-0.023387218,-0.014095725,-0.030044058,0.0018383035,-0.0011206996,0.006275383,0.018933984,-0.0026930193,-0.02031499,-0.031920645,-0.011445323,0.03917933,-0.050154332,0.00011859129,0.020289162,0.013111721,-0.000347743,0.029119885,0.05243169,0.0021530723,0.01033339,-0.0023002846,0.025290579,-0.06556987,0.036973555,0.024059623,-0.021077126,0.07445671,-0.021417215,0.042076062,0.022240225,0.02938147,-0.051533323,0.05508616,-0.02539471,0.021976484,0.03177438,0.050064635,-0.013061888,0.0013964679,0.011771332,0.0025116992,0.006563038,0.010063819,-0.021904916,0.025968993,-0.029430242,-0.024316924,-0.061917406,0.039670873,-0.038402084,0.0073985676,-0.018189201,0.0019627803,0.0019247304,0.009180308,-0.028015453,0.011029181,-0.026709402,0.039116222,0.012850648,0.012420887,0.006173908,-0.014526942,-0.011409247,-0.014651784,-0.0045553865,0.043989107,-0.030354282,-0.011135291,-0.0010205553,-0.008708158,-0.0062935455,-0.049438387,0.0038391436,0.04597233,-0.02771495,0.0017560233,0.03703314,-0.026636722,-0.023282742,-0.01713733,-0.027148651,-0.057751093,-0.0010831357,0.023769123,-0.015892018,0.07843895,0.0069560655,-0.033801064,-0.008148014,0.029808693,-0.025479123,-0.015794931,0.03429148,0.044272456,-0.013455825,-0.030964168,0.024729008,-0.034102824,-0.041471113,0.0281636,-0.04955984,0.011558078,0.032934748,0.026891341,0.044103492,0.014058331,-0.022997314,0.02082921,-0.015802609,0.049571726,-0.015270841,0.0025637925,-0.0024080754,0.015747404,-0.018143998,0.030990899,0.020873146,-0.0033269632,-0.0048403596,0.026855145,0.03229149,0.016363194,-0.017333701,0.0030443042,0.030313797,0.040212248,0.02384473,0.029050438,-0.003173889,0.004464,0.01581642,-0.00055400596,-0.024829477,0.005247302,0.031804524,0.009681487,-0.023157759,-0.005861388,0.022962624,0.013976695,-0.042525794,-0.03020029,-0.018824592,0.036363453,0.0068086833,0.04111946,0.025795056,-0.020457894,0.024193874,0.040205404,0.0016083992,-0.048578277,-0.022494854,-0.018649362,-0.052159324,-0.027512142,-0.044611514,0.04240599,-0.0072788126,-0.04900575,0.011047583,0.039650396,-0.014795558,-0.035738446,-0.0010398598,0.051434644,-0.0139785195,0.04389609,-0.009110142,-0.010552516,-0.010444059,0.022221344,-0.023539513,-0.013170447,-0.0024377743,-0.04024019,-0.0038081284,0.01966281,-0.014999318,0.045977242,-0.038758323,-0.06002041,-0.0019114178,-0.053150542,-0.0007432666,0.012022933,-0.012778361,-0.010329882,-0.006274698,-0.044660028,0.01604721,0.037778627,-0.06078209,0.03705324,0.0029457787,0.017559046,-0.0530863,0.036550485,0.000033571123,0.04591381,-0.031340614,-0.044959493,-0.019802982,0.00738226,-0.061655752,-0.05870305,0.020519406,0.04517695,0.030660428,-0.090063065,0.011856883,-0.04230482,-0.056240976,-0.014321811,-0.03735124,0.044740066,-0.020228287,-0.0029520576,-0.020045813,-0.047738142,-0.020715337,0.0038820046,0.044835344,-0.09214058,0.030045448,0.055007145,0.011120631,0.02085636,0.034618158,0.018999603,-0.01879258,0.02040863,0.00070344476,0.026982062,0.007588875,0.048572857,0.003926652,-0.020524504,-0.0169882,0.04124456,0.025479151,-0.011211003,-0.0013218062,0.0062622544,-0.015776224,-0.044849347,0.022768853,-0.039407838,0.0010485265,0.012496272,0.023305299,-0.05551143,0.024773274,-0.00949918,-0.074794486,0.049755957,-0.0037373288,-0.01037634,0.04939894,-0.018064847,0.013063721,-0.040650092,0.056044377,-0.02530307,0.021581171,0.046077713,0.065139815,0.03225469,-0.011332868,-0.022245528,0.01946188,0.009983438,-0.02499484,-0.038176883,0.030221075,0.0074511548,-0.022621864,-0.043489352,0.04052352,-0.0038796137,0.051900014,0.037067205,0.027211709,0.012425842,0.018217752,0.036318954,0.016796669,0.013646542,-0.03275684,0.05855141,-0.024616482,-0.040554192,-0.050129436,0.010972603,-0.017609648,0.008545763,0.03000252,0.006775735,0.013393006,-0.00070440705,0.017420873,0.017849792,-0.08111923,0.0030897614,-0.017619116,0.027611807,0.010987381,-0.03460756,0.015640136,-0.027159693,0.024461124,0.013553175,-0.014211553,-0.03232686,0.036398917,-0.001557233,-0.03893685,0.0018848281,-0.013935956,-0.045017116,0.039898377,-0.0066708103,0.000056865363,0.020682622,0.0016210829,-0.048648242,-0.013990776,-0.006011813,0.04385751,0.042875215,-0.02573397,-0.022009812,-0.011180672,-0.07848116,-0.010769007,-0.034354065,-0.019277565,-0.025860632,-0.0015742852,0.016779799,0.028368413,0.010933976,0.004441711,-0.012902345,0.0374706,0.00348495,-0.017343083,0.04070617,-0.013844017,-0.058596272,0.06385205,0.0039118193,0.025036568,0.031855695,0.019257916,0.011927434,-0.015000545,-0.04314981,0.0054515623,0.00235301,-0.012990392,-0.026791062,-0.031151332,-0.027429275,-0.019799434,0.0127673205,-0.016234139,-0.04547914,-0.003750902,-0.012058657,-0.01671346,-0.027812531,0.0037656021,0.018424373,0.0032969113,-0.047431085,0.004926875,-0.0076747565,-0.023794381,0.000548705,-0.0248167,-0.012613715,0.033040702,-0.018187758,-0.004884029,0.0063621188,0.016194144,0.021031879,-0.043430805,-0.03932076,-0.00934427,0.005095031,0.020114068,0.03372097,0.0075588836,-0.0020422565,0.03708533,-0.008122508,-0.028948192,0.02112699,-0.014245751,0.04143732,-0.0012535573,-0.057798006,-0.032545406,0.047133863,0.015550147,0.03210579,0.009517591,0.011297889,-0.010755496,-0.023334954,-0.021513747,-0.03739261,-0.05143462,-0.026154077,-0.016308144,-0.031781867,0.0056571686,0.008846984,0.028924335,0.037647426,-0.03566746,0.010133977,-0.009147372,-0.030055542,-0.00552934,-0.016095746,0.007636691,0.04570515,-0.022411892,0.032355323,-0.0043583605,-0.013428158,0.0024180175,0.023164485,-0.05430023,-0.013621335,-0.0025404212,-0.029014207,0.020110032,0.025285609,-0.01995469,0.0656177,-0.031754896,-0.037431423,-0.008668082,-0.030000215,-0.042645026,0.0024166086,-0.00833142,-0.011273732,-0.02580421,-0.004913377,0.081017025,0.015251143,0.005882592,-0.03143108,-0.028324526,-0.053652998,-0.04656451,0.025674166,-0.023583077,0.011880963,-0.031841233,0.024658348,0.020845035,-0.023211723,-0.02141791,0.07612863,-0.00091725925,-0.011805739,-0.050417706,0.043635957,0.04782709,-0.049428944,-0.00127414,0.0032125923,0.00036917307,0.020828836,-0.03822734,-0.066060886,-0.04840421,0.0010380868,0.0414513,0.014083556,0.041743763,-0.022842973,-0.019800238,-0.067508705,0.024273645,0.043522794,-0.016216815,0.007231289,-0.010455737,-0.02732731,0.022158721,0.02156012,0.014102972,0.01496322,0.027444948,0.01239437,-0.05376844,0.051640447,0.05528292,-0.030979855,-0.04224941,0.012776774,-0.0059262724,-0.039987337,-0.04270112,0.014678891,-0.027275003,0.011972487,0.008588108,0.019384447,-0.0055321027,0.023147106,0.01114804,0.02102861,-0.01809627,0.032428157,0.04771929,-0.021409614,0.022436682,-0.01665143,0.016278844,0.01978832,0.0038994476,-0.0065268283,0.0027705198,-0.0025198867,0.016550587,-0.002486657,0.016794525,-0.020787694,-0.04713695,0.037414394,-0.011975954,-0.022745674,-0.019000158,-0.004266213,-0.024389705,0.040339977,-0.033833783,-0.01843775,0.008022469,-0.004082758,-0.003104809,-0.04250563,-0.02533466,-0.030681198,-0.017727327,-0.046527587,-0.041802716,-0.036932547,0.020982826,0.017886821,0.014763069,0.002359769,0.05327706,-0.051740874,-0.0068046534,0.017740909,0.06446107,-0.0061523295,-0.06731668,-0.004469909,0.03853697,-0.054132372,-0.0026949567,0.009555957,0.00970534,-0.009920219,0.018625632,0.040342495,0.014251163,-0.015012852,-0.010210644,0.0070696883,0.006880927,-0.019777361,0.04025975,0.059652057,-0.037779532,-0.0036718857,-0.0268338,-0.026104528,-0.04547627,0.0066470793,0.02023791,-0.04061678,-0.012083971,-0.04324562,-0.046910435,-0.03658698,-0.0014429741,0.012882058,0.0033863897,-0.010437631,-0.0071559134,-0.0006588371,0.01665539,-0.0091905,0.03952839,0.000041409654,0.052150402,-0.0044192905,-0.012623372,0.025351385,0.023915302,0.039250366,-0.01946435,-0.007965972,0.02007291,0.030547993,0.032791346,-0.018867442,-0.03578509,-0.0054384195,0.019960904,-0.0023526023,0.018252768,0.0142728565,-0.048681173,0.00034041068,-0.03389268,-0.00819888,-0.015238209,-0.06785115,-0.029426653,0.043723565,-0.004462778,-0.003033033,-0.025465466,-0.061691046,-0.008827566,0.03104769,-0.005626787,0.005883965,0.021743292,0.009631748,0.034484155,-0.07799887,0.015048944,-0.0017635765,0.019168423,-0.036412425,-0.029268522,0.044983827,-0.005836833,0.011038222,-0.0138436295,-0.024036597,0.02579294,-0.009733653,-0.0316872,0.0012386693,0.027619127,-0.017379286,-0.003048106,-0.0025685932,0.06488099,0.0091981515,0.0355095,0.035279613,-0.0006241927,-0.019387798,0.025198864,0.047923032,-0.018279279,0.039712835,0.02709243,0.016638322,-0.024395255,-0.032318767,-0.041665047,0.035782054,0.041469984,0.011121253,-0.028941682,0.015039824,0.020943712,0.045441717,0.008913592,0.024527524,-0.018540671,-0.044032756,-0.0007009228,-0.030834993,-0.041091222,-0.010412939,-0.045613136,0.002440956,-0.03046916,-0.01916773,-0.0068072225,-0.0140696475,0.042408478,0.011671329,0.0040923124,0.005664073,-0.009337227,0.010241547,0.055021245,0.016201269,0.010188585,0.0021512301,0.010842437,0.03281358,0.005411447,0.0047967737,0.028252272,-0.027208433,0.004117275,0.04026797,0.019732889,-0.043834433,0.006471286,-0.040399827,0.07759863,-0.018073501,-0.02508691,-0.010097114,-0.04588072,0.013949734,-0.08491046,0.0068144538,-0.028238816,0.0012848977,0.046780612,-0.042903226,0.003185036,0.018394403,0.0033949828,0.019968813,0.015097227,0.048015986,0.0072648376,0.037025012,0.047824662,-0.022433253,-0.023629664,0.022799391,-0.0040698024,-0.016670063,0.010852224,-0.046956934,-0.00849385,-0.022751579,0.016632862,-0.0068813255,0.060854103,-0.008809404,-0.05043943,0.010922403,0.02744896,-0.0035398018,0.023273267,-0.012817753,0.0012434571,0.005773058,0.025969619,-0.0049967486,-0.009348061,0.05015429,-0.046443425,0.03941791,-0.05032872,-0.07326962,-0.003227301,-0.067337714,0.028953023,-0.04916415,-0.015856912,-0.03317261,0.006452058,0.031444438,-0.008844085,0.012578125,-0.045393,-0.034143843,0.04585236,0.031202191,-0.008706245,0.08217567,0.014787233,-0.02967289,0.040003505,-0.0029901185,0.06162245,-0.0051348917,-0.009138058,-0.06802277,0.022586903,-0.021995734,-0.020201446,0.047949232,0.061483223,0.019214561,-0.026880482,-0.05803001,-0.00057287037,-0.037118983,-0.00841803,0.010124269,0.04670923,0.020328693,-0.013156018,0.016533315,-0.06410697,0.2661956,0.063354425,0.013541773,0.007241524,-0.0067453026,0.010512761,-0.011693304,0.0007474617,-0.024901947,-0.03487611,0.031981412,0.004679674,0.011765116,0.039611746,0.012169755,0.048734758,-0.030853195,-0.003514114,-0.021722635,-0.010665326,-0.031980325,0.0346128,0.0076241437,0.01320849,-0.008905388,0.01752375,0.046028197,-0.01744914,-0.031116946,-0.0053556375,0.022652593,-0.033044282,0.027489288,-0.045608133,-0.040476646,0.032005463,0.0022959467,-0.018832674,0.013842712,-0.0018740033,-0.03554689,0.032357488,-0.009576997,0.0024762312,0.027463237,0.061071478,-0.018675756,0.012921522,0.017112218,-0.034948114,0.052967295,0.016280971,0.02983813,-0.026459537,-0.04203079,-0.0062065497,0.01660262,-0.0037034587,-0.0089069,0.044627707,-0.036743134,-0.0100931525,-0.0058505093,0.0075520356,-0.027179185,0.02664728,0.06100204,0.05261767,-0.008941952,-0.0056395778,0.016611034,-0.03293593,-0.02972406,-0.01687601,0.012266391,-0.016152563,-0.030332452,0.04184569,0.012415229,-0.0104780225,-0.0013062236,-0.0039504026,0.019269362,-0.005831843,-0.008818496,0.06276981,-0.010901676,-0.00
+8000
+9573952,-0.01360658,0.042073917,0.02173322,0.04657098,0.013097912,-0.027882678,0.001961389],[0.039060008,-0.05593841,0.003017104,0.044322226,0.016100252,-0.015955064,0.011976556,-0.0146563295,0.029584095,0.032030854,0.031104742,-0.010740202,-0.0019355485,0.017683558,-0.010918457,0.0068555935,-0.014478,-0.01528284,-0.056435578,0.039240394,-0.0035393485,0.032267567,-0.09437075,-0.00094414665,-0.018220423,0.04221212,-0.042143304,0.0084172515,0.05145231,0.04799786,-0.030005466,-0.0046326555,0.060499705,-0.04648011,-0.036520034,-0.03628414,0.05194436,-0.01266482,0.008860966,-0.066957146,0.012137931,-0.04255128,0.03046269,-0.042535856,-0.030121813,-0.010722798,-0.025229406,-0.04713973,0.0092756385,-0.061065827,0.0116895735,-0.01125665,0.011846249,-0.01879858,0.049633566,-0.01260808,-0.0033899888,0.017988106,-0.025948172,0.0336396,0.023403574,0.054852847,0.014733337,-0.067215696,-0.024586009,0.013284275,-0.020702044,0.010742501,0.03787762,-0.012344966,-0.01097083,0.01379607,-0.032806396,-0.016486686,-0.022051629,-0.0037461834,0.05887307,0.02288645,-0.037048247,0.032711178,-0.014602807,-0.02986489,0.017242303,0.01662309,-0.028688656,0.0043979306,-0.019490058,0.06919442,0.018019829,-0.0024468605,0.03209503,0.03549341,-0.030233843,-0.0075884187,0.047757287,0.036186043,0.012436402,-0.04010009,-0.059080012,-0.003020578,0.0052004494,0.0030131883,-0.03463772,0.04079149,-0.050151423,-0.006433386,0.009380163,0.029304901,0.01716343,-0.009799523,-0.004063544,0.019529082,0.011303804,0.029542187,-0.011254931,0.04517291,0.0074020196,0.012837513,-0.024861591,0.0028139702,0.018664924,0.022356538,0.0059954696,0.0066742296,-0.014154331,-0.048883233,-0.029432038,0.029599223,-0.046418544,-0.00041422405,0.006060285,0.004567335,-0.006998033,0.008384765,0.053970627,-0.015749026,0.036888108,-0.0010616215,0.015981553,-0.027652185,0.03509842,0.016036943,-0.016936995,0.057702217,-0.03492841,0.04880693,0.0100431945,0.044150647,-0.06721424,0.04377479,-0.051230032,-0.01861413,0.017309668,0.032299202,0.004893476,0.009799228,0.016576357,0.00052011065,-0.011121209,0.008621173,-0.0018267357,0.027451796,-0.028258625,0.0036563268,-0.03671523,0.028888052,-0.047706403,-0.006523582,-0.011331722,0.0005858453,0.028765053,0.007345923,-0.047838606,0.018689279,0.003675287,0.047311794,-0.0062261843,0.012500973,0.0027941929,0.017413495,-0.00038277445,0.009480861,0.012015159,0.06474622,-0.03649483,-0.005869693,0.0104560405,-0.016620928,-0.02820184,-0.04970116,-0.001862659,0.038810346,-0.047892027,-0.003207128,0.020997537,-0.024792682,-0.055145938,-0.027370883,-0.017309526,-0.05978795,-0.002325194,0.046107095,-0.006062993,0.0804301,-0.010577024,-0.0184024,-0.010566567,0.044141665,-0.0028019624,0.010095184,0.019332284,0.039451633,-0.031852722,-0.0059593413,0.029441677,0.009596949,-0.04270079,0.028798731,-0.052616745,-0.001280022,0.011975557,0.031501435,0.021010147,0.00516522,-0.024822617,0.013078879,-0.01761861,0.049208548,-0.015440393,-0.0056188162,-0.01946302,0.010600825,-0.032133974,0.016155789,0.028242882,0.0006333572,-0.005825597,0.024415288,0.007589822,0.013207156,-0.0069415523,0.01915916,0.017189767,0.022372305,0.010975904,0.063118204,0.005241693,0.014793791,-0.008616421,0.008818678,0.008668725,0.00664824,0.028401723,0.018575495,-0.009993157,0.016717445,0.040981427,0.05007404,-0.048564643,-0.024690304,-0.041426156,0.056423657,0.029957844,0.030320207,0.025840906,-0.0064644776,0.033109903,0.026198322,0.009407064,-0.036669694,-0.02514922,-0.032171484,-0.050030597,-0.00020414637,-0.039669886,0.029440138,0.0025553582,-0.02916634,0.011857686,0.029395048,0.00007346876,-0.035392363,-0.005832147,0.042207398,0.00785253,0.0544586,-0.03735994,0.0036078554,0.01734406,-0.005135095,-0.015685221,-0.0059910524,-0.013718924,-0.035945408,0.0077251247,0.0029486672,-0.06276208,0.008400541,-0.043300625,-0.0642659,-0.009714698,-0.035362452,-0.025169717,-0.0020970176,-0.008350437,0.0033174704,-0.0030554417,-0.020658014,0.03109872,0.011825362,-0.065636784,0.061981246,0.005427481,0.008609365,-0.044381324,0.043037143,-0.0033343635,0.060383484,0.0072344486,-0.010073728,-0.00782464,0.02059338,-0.027570577,-0.06597171,0.0044175023,0.037957337,0.030004537,-0.09679761,-0.0019653435,-0.0006918982,-0.054124754,-0.012189307,-0.0606955,0.03499063,-0.026364883,-0.0046884064,-0.033918124,-0.03563745,-0.025951661,0.0072496394,0.05029096,-0.024669567,0.009826168,0.05328268,0.016792487,0.0035645773,0.030851683,0.025029996,-0.03959598,0.03161776,0.010329729,0.01042416,0.0052181496,0.022394864,-0.0020292436,-0.03804193,-0.0063222204,0.018029142,0.017148456,-0.011922582,-0.021514786,0.017875826,-0.017655252,-0.03456385,0.01074402,-0.06319418,0.016423516,0.0011785108,0.030878019,-0.037277613,0.0070068007,-0.015899125,-0.06692255,0.04616199,-0.018771715,-0.0018622878,0.057773866,0.0035946022,0.03611869,-0.012424365,0.036192678,-0.040316343,0.02116056,0.04222672,0.060594566,0.01698282,-0.027141528,-0.011294974,0.024944233,0.0023422595,-0.026121983,-0.028541103,-0.0016722295,0.016056757,-0.023581516,-0.060057934,0.030286033,-0.0071929176,0.06734415,0.03337131,0.032695413,0.018794628,0.01423417,0.0534289,-0.0065878024,0.037006024,-0.04633349,0.05440055,0.011499552,-0.007907955,-0.048188366,0.005941449,-0.009052279,0.01167352,0.009976985,0.025620222,0.0026655016,-0.018517317,-0.006551209,-0.002015225,-0.07123496,-0.03055717,0.006881419,0.012096399,0.012890869,-0.023496836,0.0039700796,-0.047802664,0.0249041,-0.0025878234,-0.0044873995,-0.02507802,0.04208133,-0.03113348,-0.06267694,0.015716605,-0.013843137,-0.029074436,0.030075854,-0.016844777,0.03443518,0.014494056,-0.009031648,-0.014934496,0.016173217,-0.000033959474,0.05264289,0.021186236,-0.021632155,-0.006377219,0.019292153,-0.052918486,-0.01030361,0.014477791,-0.008724837,-0.035004772,-0.03659397,0.026941426,0.040405847,-0.002477218,-0.026308421,-0.030258708,0.04116606,-0.006606896,0.001199478,0.03913625,-0.00957391,-0.057643533,0.05171935,0.020958379,0.04259432,0.046727907,0.009465671,0.016795501,0.0022783705,-0.056486722,0.0005468354,-0.008725162,-0.042479984,-0.011594112,-0.04301767,0.009417453,-0.017327182,-0.029429238,-0.01241616,-0.059438787,-0.0017356644,0.009938697,-0.000016430704,-0.020988446,0.01080386,0.042422988,-0.0007928967,-0.04556657,0.00048534072,-0.00030561798,-0.039016083,0.023838444,0.0043958956,0.02178206,0.017549235,0.009461607,-0.031533863,-0.0014542848,0.014689783,0.011663809,-0.054168463,-0.019089352,-0.002468824,0.017557113,0.060087074,0.021481678,-0.023231916,0.003147965,0.034382075,0.003475704,0.0006109506,0.028632857,-0.020813208,0.047485866,-0.013078282,-0.059845705,-0.02445117,0.04402503,-0.0042330124,0.009754445,0.0006408827,-0.009421898,-0.036629483,-0.047689214,-0.04960401,-0.052044142,-0.051940832,-0.00523368,-0.020731581,-0.022233464,0.026134359,-0.0035151609,-0.004134579,0.017272135,-0.0478521,0.015462523,0.01114691,-0.030732501,-0.024361618,-0.011959113,-0.00240886,0.03302242,-0.022227364,0.014886018,-0.009149191,-0.03985117,-0.008342741,0.053155847,-0.01595905,-0.017467514,0.0026114795,0.00028330617,0.028572217,0.006316337,-0.019894123,0.042909045,-0.031214684,-0.04770938,-0.0065761316,-0.040621825,-0.048526168,-0.012656968,0.020582788,-0.020526538,-0.038998723,-0.027832178,0.095236056,0.0063778847,0.009191865,-0.04955973,-0.042842142,-0.03975778,-0.014306347,0.0029484704,-0.029039137,-0.012334853,-0.048909254,0.0126429815,0.028788952,-0.021825077,-0.021706335,0.07775096,-0.008643234,0.00004751123,-0.05814195,0.037685793,0.035258267,-0.04305741,0.008512847,-0.017490983,0.006297842,0.029851044,-0.044792935,-0.062849626,-0.03577796,-0.009453408,0.06839968,-0.017422846,0.03681158,0.002757437,-0.007982672,-0.05271273,0.024958381,0.035413407,-0.0035601303,0.029630242,0.013291726,-0.031602968,0.034510367,0.023077657,-0.008762951,0.027675567,0.027531033,-0.004640352,-0.05185194,0.03462412,0.050980344,-0.046091724,-0.024514522,-0.00906526,-0.026876189,-0.028766898,-0.021194449,0.010821434,-0.028354453,-0.0019323537,0.009550389,0.032364823,0.0082211,0.023166701,0.0018476758,0.0053231018,-0.022811575,0.017391926,0.054333616,-0.03642231,0.018061845,-0.029113201,0.014225704,0.0027916208,-0.0013272968,-0.0013040891,-0.005678945,-0.013032276,0.006717585,-0.0009889106,0.020753643,-0.027558208,-0.027287742,0.020698348,-0.018863814,-0.0125918165,-0.03532378,0.008526666,-0.019638957,0.05559629,-0.031634685,-0.028449345,0.01983085,0.00084481575,0.011338732,-0.025177969,-0.030178912,-0.021388937,-0.054980833,-0.02821424,-0.030770864,-0.013631203,0.03344173,-0.001930289,0.05341881,0.0062297047,0.042216938,-0.02828794,0.036927845,-0.0019333456,0.0734567,-0.025648965,-0.054497767,-0.03664584,0.010960555,-0.05512495,0.011078967,-0.024126928,-0.0035171723,-0.012012275,0.06824189,0.040818058,0.021652177,-0.0012665745,-0.010787432,0.04448251,0.027035708,0.0013113378,0.037623283,0.029697081,0.0010493002,-0.014410805,-0.030585196,0.004138874,-0.06463626,0.00000822616,0.014986379,-0.02605713,-0.021889463,-0.06056308,-0.037327018,-0.031021316,0.006825645,0.03296204,0.022392169,-0.035197124,-0.008188835,-0.01484765,0.039825328,-0.017338242,0.026730971,0.024144318,0.047523882,-0.018860651,0.012075899,0.035844203,0.012026893,0.029670674,-0.0048529166,0.002118812,0.021697117,0.0050409697,0.01258432,-0.012679912,-0.033224806,-0.008161718,0.010548695,0.024208695,0.0043727485,0.013973778,-0.028884415,0.02573135,-0.009899966,-0.0057069776,0.0034680816,-0.069525205,-0.028719375,0.032410614,0.0068587963,-0.010838308,-0.0061458903,-0.06518588,-0.0140211005,0.014854797,-0.021905294,0.03996485,0.033989757,0.0010665694,0.032039292,-0.046383265,-0.031064568,-0.000013924677,0.03923223,-0.033705555,-0.045503836,0.008596694,0.0057797185,-0.021035243,-0.019639544,-0.024527414,0.012161614,-0.02529412,-0.015416569,-0.005647953,0.024628492,-0.03232161,0.0041774786,-0.026009653,0.06130018,-0.019783387,0.0025210225,0.023967719,-0.009405761,0.001885893,0.029127242,0.040784784,0.013439275,0.030917056,0.053326927,0.030404354,-0.01871263,-0.026884435,-0.016531972,0.025439948,0.017956108,0.006845823,-0.03619562,0.030661665,0.00032151377,-0.008721968,-0.012718675,0.040825028,-0.0057386416,-0.0022715346,-0.0054284,-0.009837654,0.010765418,-0.01693664,-0.036382753,-0.009990859,-0.04170242,-0.022158174,-0.0026962296,0.0007029551,0.030638415,0.017350357,-0.017686954,0.0064913523,-0.008798379,0.0026958059,0.04594589,0.008442476,-0.00038587686,0.0208583,0.01582532,0.033658806,-0.022256244,0.019181583,0.003260203,-0.02514791,-0.0060376204,0.050307218,0.015948622,-0.059098046,-0.0044710953,-0.06243132,0.07069616,-0.018352028,0.010525853,0.00030923367,-0.015548157,-0.0054611634,-0.069613114,0.014088871,-0.027939517,0.0019153424,0.01800497,-0.03777285,0.023060596,-0.00033443252,-0.029907651,-0.0034795133,0.028061593,0.03359124,0.00039461133,0.038544904,0.06664178,-0.030488262,-0.036711182,0.01387586,-0.020757206,-0.038329992,-0.009347063,-0.02527026,-0.00090521004,0.0018179191,0.011174303,-0.012930405,0.027196867,-0.035737988,-0.04228712,0.0021451965,0.020162262,0.00943829,0.028944891,0.03269529,0.009051468,0.0003695474,0.028268605,-0.01206648,-0.0024980193,0.03718599,-0.0492069,0.04067666,-0.020672798,-0.08706392,-0.009987197,-0.047046985,-0.00044946498,-0.026503189,-0.00905386,-0.049085364,0.025176933,0.029708466,-0.029910756,0.03791485,-0.04330503,-0.007944427,0.063120484,0.00672965,0.008700097,0.06532131,0.00844358,-0.016031722,0.025907928,-0.009435153,0.045922875,-0.007172704,-0.019801253,-0.033951808,0.05581906,-0.04543945,-0.031215638,0.063522175,0.03837581,0.03424544,-0.041112334,-0.07246037,0.013040163,-0.054433852,0.007014636,-0.0077096005,0.06002589,0.0084760515,0.01716922,0.038457375,-0.07468687,0.26665723,0.048727836,0.008630106,-0.026443865,-0.014168894,-0.0038850657,-0.0043011964,0.016676225,0.01130992,-0.02538712,0.052715614,-0.0008040267,0.0206342,0.02319051,0.02087702,0.050984815,-0.023123201,-0.019954225,-0.033102036,-0.010746749,-0.033918876,0.025878621,0.019958477,0.0526724,-0.0030820977,0.014623696,0.039861094,0.008605123,-0.044618435,0.025245592,0.02891218,-0.034764297,0.019491911,-0.051873237,-0.03988757,0.007461464,-0.014667655,-0.03700633,-0.004755908,0.0060026986,-0.044122677,0.039070766,-0.028060822,-0.019276543,0.024510995,0.048044655,-0.025139231,0.0082138125,0.017569091,-0.05576917,0.044724572,0.011950919,0.015180497,-0.044159435,-0.05653996,0.008873518,0.0042672497,0.011389102,-0.0042140144,0.037803832,-0.03582786,-0.01041934,-0.002141345,0.009493899,-0.016058294,0.03212853,0.062481668,0.008998367,-0.026068307,-0.028050434,0.017128149,-0.000084096864,-0.021485196,-0.0060975314,-0.009057493,0.01476684,-0.011924431,0.019754672,0.01541873,-0.019210419,-0.036524013,0.0027591402,-0.00012328944,-0.0012016493,0.016956259,0.027989013,0.00972138,0.011038042,-0.029928096,0.03463178,0.0007399908,0.0400299,-0.013077622,0.003011966,0.012903614],[0.017542277,-0.031747572,0.01743563,0.051757663,-0.0032097793,-0.04002579,0.016798371,-0.0076863603,0.040904384,0.04835309,0.03747475,-0.010687798,0.0031387052,0.004985739,0.00054301595,-0.026981246,-0.05029308,-0.009166726,-0.0747681,0.0321159,-0.0032329252,0.010828157,-0.06347718,0.036372833,-0.027147168,0.03355365,0.0039391336,0.010095431,0.039201207,0.02298564,0.004255176,0.027054735,0.041225187,-0.053978108,-0.029619794,-0.046936873,0.046380986,-0.027685031,0.003300836,-0.05176246,0.007306045,-0.01099612,0.05521415,-0.02875738,-0.07561203,-0.029249558,0.015299898,-0.03143745,0.002846646,-0.050709635,0.025724782,-0.014122829,0.03146371,-0.028119983,0.044548705,-0.026901104,-0.023141436,0.013101649,-0.013784509,0.016756967,0.03779218,0.050295778,0.013331789,-0.044450838,-0.0074577243,-0.0010962561,-0.02682794,-0.017292153,-0.005822761,-0.013294228,0.015072448,0.0074781924,-0.013314119,-0.03011066,-0.031397358,-0.024240844,0.02869534,0.026466012,-0.0150219,0.045045093,0.001286281,0.0036181137,0.00042618328,-0.02868916,-0.026050335,-0.05124338,-0.00452736,0.06311318,-0.013914727,-0.014150644,0.011333841,0.017228192,-0.0474828,0.012262032,0.08003505,0.040520713,0.014013919,-0.014570454,-0.030300677,0.052877013,0.043507136,-0.017761532,-0.008878253,0.051796775,-0.07110401,-0.0035461017,0.009019358,-0.014028248,-0.01090538,-0.036010683,0.0049524587,0.00865837,0.029330172,0.032187525,-0.003825886,0.02987881,0.023324268,0.043439317,-0.025310567,0.026305452,-0.005875109,0.011941562,-0.0144342575,0.013589329,-0.004308287,-0.05560941,-0.005654891,0.024302568,-0.03280294,0.022041967,-0.011348683,-0.0017249356,-0.010717701,0.00986662,0.08039713,0.02388106,0.028443322,-0.0106532285,0.059773084,-0.011609978,0.039731763,0.032243263,0.002826327,0.05559817,-0.020319445,0.02087403,-0.02246505,0.017819062,-0.037443753,0.06654045,-0.04715685,-0.0066067385,0.03682756,0.043091286,-0.008703254,-0.0010077226,0.030113908,0.00612123,0.010921219,0.024139505,-0.024393162,0.020910693,-0.020275861,0.008507442,-0.028874004,0.036566928,-0.019903563,-0.024700325,-0.051725954,-0.012910119,-0.014020567,-0.0032017708,-0.00908768,0.008970753,-0.007868786,0.04823833,0.00067859,0.006246584,0.03009055,0.0077400566,-0.013186082,-0.008029662,-0.008298557,0.058777157,-0.011016204,0.0286533,-0.0029109197,0.01443402,-0.020335164,-0.042166103,0.015199759,0.022064727,-0.021833017,-0.015653057,0.034768168,-0.017744903,-0.016085153,-0.020935033,-0.008822276,-0.028095348,-0.030313497,0.022145722,-0.007992686,0.07177141,-0.006219887,-0.033891305,0.013458311,0.05565574,0.0037773787,0.0095594665,0.035207633,0.035855457,0.012106732,-0.034680992,0.06088802,0.0026818071,-0.045990366,0.050838627,-0.080773525,-0.024602627,0.025237318,0.008284904,0.023776485,0.0061988486,-0.0023435962,-0.009398665,0.012569841,0.049836624,-0.0030420248,-0.0047868905,-0.004370688,0.0245012,-0.008034297,0.029596563,0.009281712,0.02293212,0.021388419,0.027363416,0.01649296,-0.022851847,-0.021060124,0.03626993,0.037042495,0.024608023,0.0058537475,0.059874613,0.0020433397,0.0064518675,0.026488204,0.022315761,-0.010608913,0.010359902,0.05290689,0.029557811,-0.023954948,0.0070045018,0.052940454,0.07520207,-0.045283884,-0.034698438,-0.006073912,0.0031132353,0.0077089234,0.029239617,0.049801625,0.009017506,0.029660026,0.038974617,-0.024946252,-0.027315883,-0.0009122944,-0.032929476,-0.038052876,0.0055766758,-0.04834003,0.018746635,0.01718651,-0.036956914,0.03226056,0.028580999,-0.013595809,-0.040952567,-0.020491417,0.024668781,-0.013036181,0.06066119,0.014893505,0.03263491,0.0021716284,-0.0048819915,0.0014292641,-0.0026965395,0.0022870947,-0.00470038,0.0020418859,-0.02570976,-0.012778874,0.024689615,-0.051954314,-0.044268798,0.006963928,-0.039624643,-0.017403573,-0.0070104357,0.002505588,0.010984707,-0.010424805,-0.044882648,0.03972492,0.023626996,-0.086531386,0.013317366,0.0093838135,-0.022427455,-0.0582245,0.008486158,0.018423472,0.035219476,-0.009345794,-0.00732837,-0.020140976,0.016404241,-0.010710614,-0.05486289,0.03502748,0.0017867566,0.05836761,-0.08931394,0.009433161,-0.022942308,-0.076472305,-0.038633127,-0.00555274,0.057239965,-0.02770544,0.022451214,-0.014539234,-0.042060316,-0.046336036,-0.035149,0.064891055,-0.05052361,0.05322708,0.06422717,-0.03373464,-0.0126585495,0.029457547,0.008908386,-0.03186027,0.0026937672,-0.015474813,0.05346067,0.016113866,0.025557347,0.004127724,0.02493633,-0.0022736038,0.020460451,0.023046892,0.02163239,-0.0005967452,0.04157244,-0.0122853555,-0.039918527,0.0027130193,-0.05106771,0.0082891155,-0.0366177,0.03647094,-0.07250559,0.042904,-0.00023551885,-0.030346127,0.030107856,0.015072569,-0.021624137,0.062311277,-0.038406797,0.037394192,-0.012194795,-0.007326034,-0.010275622,0.03300447,0.023993833,0.020540321,-0.0052649626,-0.03287331,-0.025011638,-0.018512025,-0.021686314,-0.0653531,-0.02690104,0.03177369,0.0019115728,-0.016723454,-0.025262192,0.056265436,-0.015306752,0.034973726,-0.002768429,0.042333562,0.021912359,0.002713064,0.020476798,0.003902995,0.033715792,-0.048867583,0.06290542,-0.009736842,-0.0033157705,-0.052601643,0.0065375012,-0.041515186,0.009172995,-0.006346321,-0.01255425,-0.022475805,-0.010570546,0.028190682,-0.010850752,-0.065200076,-0.026011018,0.011253108,-0.0047279526,0.021110494,-0.039525706,0.0049222615,-0.019832414,0.0028394829,-0.018301738,0.0052476623,-0.037593644,0.049199875,-0.0112513155,-0.036770754,0.022308482,0.001624565,-0.047007497,-0.0026462825,-0.01390305,0.0255113,0.017900493,-0.0364237,-0.005840381,-0.02477597,0.035194047,0.004666924,0.046816792,-0.013524444,-0.04307536,0.007939999,-0.073631115,-0.034365095,-0.020696957,0.013022346,-0.012646308,-0.04868378,-0.0028688677,0.015369142,-0.0055794227,0.0018228125,-0.0376037,0.04007932,0.007552667,-0.0085554365,0.03426225,-0.004098199,-0.046856083,0.022600116,0.022553844,0.01031972,0.0026413328,0.015797073,-0.034414396,0.0052095703,-0.039463155,0.002894033,-0.0007945139,-0.017876334,-0.009665866,-0.01971549,-0.006205934,-0.0023437864,0.0077865864,-0.027727092,-0.06757304,-0.019095806,0.0060958797,-0.024707515,-0.022101413,0.018641617,0.021999111,0.012895232,-0.07086152,-0.014653022,-0.0033108662,-0.05799913,-0.0023739382,-0.0029290214,0.023506094,0.014677806,0.045536615,-0.008895272,0.0029388622,-0.0128384195,0.0044516767,-0.02068614,-0.027788848,-0.026241235,-0.008399841,0.04595395,0.01659441,-0.014663521,-0.052275516,0.056624796,-0.0074166274,-0.01684964,0.028662218,-0.013411213,0.0075805215,0.009839185,-0.040674616,-0.03233425,0.045998197,-0.006858085,0.03880358,0.007534753,-0.02957604,-0.06055317,-0.034613572,-0.0024165343,-0.020014226,-0.040225882,-0.035000697,-0.050975237,-0.03292226,0.022683883,-0.007266273,0.015657902,0.03438476,-0.025032645,0.031203529,0.011227419,-0.04251646,-0.02447932,-0.00693504,0.022725802,0.07090408,-0.0073934104,-0.000047494297,-0.029958537,-0.008409871,0.015130218,0.019755276,0.011228087,-0.022533942,0.022751357,-0.02332457,0.02686192,0.012394273,-0.013826845,0.04666846,-0.004876374,-0.04956737,-0.039051138,-0.02185674,-0.045468584,-0.023952214,0.0381182,-0.0072678654,-0.013162201,-0.008640351,0.07383838,0.05465442,0.03599286,0.0038791776,-0.03342927,-0.040798046,-0.054797985,0.031225204,0.0225891,0.031287212,-0.0041720783,-0.00035304055,0.033350416,-0.0127963275,0.022074845,0.08011924,0.015069066,0.0020682034,-0.04478072,0.02934932,0.020299807,-0.05797444,-0.013525719,-0.01826421,-0.031386334,0.016528921,-0.02108492,-0.09108483,-0.048271984,0.0126015395,0.05530234,0.005411537,0.028634967,0.0054448415,-0.016040668,-0.057383455,0.028259637,0.028787903,-0.004012231,0.011852838,-0.0052829124,0.004093284,0.010728504,0.040987518,-0.018550638,0.00813085,0.03290325,0.012200348,-0.047412757,0.0062343683,0.053102754,-0.03343337,-0.06548297,-0.0061030635,-0.010293388,-0.04071309,-0.042429507,0.008440687,0.0025201954,-0.035514947,0.025420839,0.02448334,0.0096738795,0.037251893,-0.012020571,-0.01712762,0.013715892,0.030068114,0.015682952,-0.030558424,0.024223898,-0.017508473,-0.010288966,0.014504378,0.017030658,0.023536647,0.0055845403,-0.01995248,0.038974203,0.007835931,0.03145218,-0.051028818,-0.018239778,0.030274833,0.0092173675,-0.06059129,-0.034263663,0.019176368,0.0030996627,0.03457763,-0.062093917,-0.012808582,0.01526641,0.007793242,0.009676327,-0.026648816,-0.026683476,-0.031647243,-0.050129768,-0.057167754,-0.027521996,-0.027184764,0.029614618,-0.02377067,0.027553426,0.0063964953,0.04436496,-0.06013245,0.039428815,0.004581665,0.05579007,-0.03185083,-0.049482856,-0.026692815,0.0330207,-0.053628556,0.007751147,-0.03985979,0.020070156,-0.011463083,0.028272647,0.009803338,0.015366204,0.0069827763,0.002415931,0.028522098,0.018666029,-0.02384165,0.026476843,0.04892644,0.007370271,-0.016569443,0.024916794,0.012230842,-0.02686146,0.0011111405,-0.034541424,-0.0048020184,-0.016085198,-0.04272943,-0.0340013,-0.04429084,-0.0021109614,-0.0071001123,0.02644966,-0.022757296,-0.02148676,-0.0033720986,0.025949258,0.0048719235,0.01835507,-0.004284742,0.030426675,-0.004864569,0.01471117,0.00032576756,0.015090059,0.0236387,-0.016676113,0.006178128,0.031848185,-0.02239829,0.019946838,0.0098493835,-0.014110965,-0.028348163,0.035276186,0.0301952,0.029476525,0.03708555,-0.030981416,0.03992548,-0.005664268,-0.0313199,-0.02562163,-0.058394894,-0.010259146,0.0077002803,0.010320787,-0.01121311,-0.03666285,-0.056451894,-0.028525524,-0.013054619,-0.025172418,0.037618067,0.022273373,-0.00751093,0.0354452,-0.051825117,0.028557336,-0.0035052288,0.010127778,-0.024801673,-0.034633923,0.041057937,0.033098865,0.0005715372,-0.004081605,-0.033743605,0.024248248,0.009798137,-0.041811146,-0.00019986655,-0.0030454826,-0.0018693709,-0.006418453,-0.029795751,0.033724528,-0.027451575,-0.0005086729,0.00011621627,-0.0054123914,-0.003531338,0.042490434,0.050034355,0.02475499,0.0358653,0.03987424,-0.012375499,0.0047886283,-0.02867924,-0.0031052555,0.046818275,0.016949115,0.0084463945,-0.026620151,0.050568048,-0.009679138,0.008849733,0.00022914827,0.050073214,-0.02070189,0.005770643,-0.011993121,-0.0032563845,0.0014748388,0.005108998,-0.025136884,-0.017289078,-0.055912163,-0.031045442,-0.014623253,-0.017262261,0.038379982,0.0040447353,-0.016608752,0.001665264,0.014548438,-0.021388477,0.03981133,0.025100924,0.029070938,0.057369158,0.014910648,0.018210819,0.0131696,0.013515577,0.0151663795,-0.011289904,-0.032345884,0.02627977,0.0020911146,-0.033652995,-0.008593239,-0.03116303,0.06525289,-0.022447418,-0.020799961,-0.009858004,-0.01845989,-0.005116588,-0.04641717,0.014131078,-0.0020962139,-0.015325136,0.014347611,-0.029382855,0.012318544,0.025402842,0.016825888,0.02387959,-0.012879256,0.012964191,0.0037043053,0.05814576,0.04563783,0.005155428,-0.0035644707,0.011506633,-0.008075044,-0.046172053,0.008266661,-0.015041602,-0.009152894,0.006021083,0.0061675524,-0.014177828,0.034889963,-0.017147467,-0.066301435,-0.019997284,0.029935589,0.02334684,0.039897975,0.0008783719,-0.015087057,0.018842202,0.030317789,-0.003493384,-0.023137446,0.03628602,-0.025276469,0.03192861,-0.05247057,-0.06542408,-0.021153584,-0.030890701,-0.0022652517,-0.020422263,0.005067461,-0.04526587,0.030692564,0.04335298,0.018129215,-0.0061152778,-0.005946049,-0.030388772,0.036897413,0.03630725,-0.014776266,0.07806439,0.015464394,-0.022935884,0.008254576,-0.037559383,0.039436746,0.0034271923,-0.009984656,-0.02317236,0.037490632,-0.068248026,-0.05849501,0.07768596,0.042785805,0.034296397,-0.062110916,-0.08427909,-0.012635023,0.0018106296,-0.010744905,-0.012650835,0.047879316,-0.0036520017,0.003342024,0.026855912,-0.09693735,0.26500636,0.057614993,0.006377152,0.008529942,-0.015431086,-0.009850066,-0.0030292755,-0.024159318,-0.024591738,-0.028293815,0.032264855,0.0057889684,0.008902154,0.03832382,0.013561066,0.05695554,-0.026860509,-0.008497048,-0.032568913,-0.009208197,-0.021449244,0.005294645,-0.0111138,0.0050568124,0.0044273203,0.0070437924,0.032018557,-0.013966575,-0.02653857,0.0149964895,0.041992582,-0.020242387,0.0141510265,-0.030054161,-0.048972074,0.000057931906,-0.012523419,-0.02607234,-0.0062544197,-0.0067195604,-0.06323101,-0.010464042,0.023383202,0.023793178,0.005364458,0.054940417,-0.0016169341,0.009434787,-0.015895676,-0.008196132,0.024330424,-0.0013689391,0.029689938,-0.037566748,-0.007396041,-0.009349495,0.04163936,-0.02356041,-0.0050722463,0.009010796,-0.026398351,-0.007311484,0.011574626,0.0022720278,-0.018562958,0.01903509,0.049012907,-0.0013394529,-0.035048008,-0.038409006,0.0032288923,-0.023762701,-0.020992476,-0.015708786,0.0037003502,0.004847,-0.03153743,-0.009435629,0.04310547,-0.028331803,-0.022365611,0.0076182876,0.017409865,-0.034684338,-0.0058475584,0.043606855,-0.0077398326,0.0016245752,-0.044765223,0.04962662,0.017042704,0.004181557,-0.02024624,-0.030901494,-0.0030760767],[0.007659269,-0.02229188,0.034314867,0.02361725,-0.014509989,-0.037874434,-0.0044641793,0.00025087057,0.037776858,0.050633583,0.035484377,-0.021543512,-0.008536493,0.00702302,-0.00030077886,0.0228069,-0.023764929,-0.03929181,-0.03977532,0.01399433,-0.0005042135,0.02438559,-0.08865921,-0.007157581,-0.014690877,0.037498258,-0.048818637,0.0047168382,0.049909085,0.050849374,-0.03576147,0.017931033,0.047892302,-0.039972376,-0.024020657,-0.042794805,0.047685668,-0.005885703,0.006270687,-0.042849276,0.016170168,-0.016058851,0.029740902,-0.04437868,-0.006038065,-0.025556916,0.0066840495,-0.054643434,-0.010871167,-0.061727002,0.03766847,-0.01339255,0.031298324,-0.031270143,0.057680186,-0.010275097,-0.02107692,0.011281756,-0.031009996,0.03660439,0.029762033,0.07046139,0.008153221,-0.058907215,-0.017498584,-0.009064475,-0.018976137,0.006537386,0.017530322,0.0023129985,-0.013311088,0.026365567,-0.02539794,-0.027664544,-0.03323846,-0.017841835,0.0144604305,0.009162874,-0.03003262,0.057030488,-0.02338293,0.0046728384,0.02062388,0.021976346,-0.03895291,-0.0022313194,0.004864992,0.057808153,0.020192126,0.0064317305,0.037589043,0.03267155,-0.04432953,0.015802493,0.06590421,0.030132009,0.02308363,-0.012954739,-0.048451286,0.033110496,0.04001588,0.0063927644,-0.018174859,0.08177612,-0.086682186,0.0028583973,0.03570254,0.0018297961,-0.010965569,-0.040880077,0.0009419034,0.02916737,0.048495807,0.02438551,-0.007972949,0.05520148,0.00943659,0.027920464,-0.042523995,-0.014287707,0.010993291,0.01701071,-0.018588196,0.020390749,0.02843437,-0.041070174,-0.012858539,0.030596243,-0.053982347,0.0030505345,-0.0067249862,0.010999022,-0.005579422,-0.003920993,0.06677738,-0.0026530721,0.018684834,-0.0069578164,0.012932726,-0.033103257,0.046784814,0.015250952,-0.009038579,0.066401154,-0.019330664,0.04010497,0.020459373,0.044864718,-0.06475751,0.051587757,-0.029090175,-0.008709603,0.014683485,0.03416821,-0.03872085,0.011916903,0.058476876,-0.008939023,0.022407185,0.014954402,0.0030853418,0.035767347,-0.015756955,0.0028413103,-0.050941713,0.014246745,-0.04564922,-0.024149723,-0.010369976,-0.0031271179,-0.009849972,0.018671459,-0.03735468,0.008060545,0.00005580187,0.038657267,0.009327825,-0.009857033,0.0076934965,0.026306724,-0.005937125,-0.00946173,0.019994684,0.052651536,-0.02203407,0.017008904,-0.0038502223,-0.027212443,-0.011853538,-0.047910813,-0.003573988,0.033500075,-0.022568284,-0.008082765,0.01435339,-0.008764668,-0.052348185,-0.022421425,0.0087282825,-0.050158963,-0.001983919,0.042548195,-0.015612992,0.06421373,0.013589367,-0.027912173,0.01680733,0.041669548,-0.014399344,0.0050669247,0.01261941,0.026533565,0.012558977,0.0021129956,0.07240274,-0.013998812,-0.06384203,0.012719087,-0.061733767,0.002326278,0.018129496,-0.0017270296,0.04195957,0.016976682,-0.014950249,0.0025318034,-0.01820253,0.06895575,-0.0073396633,-0.01031501,-0.024814483,0.035430674,-0.053629585,0.036440525,0.037316486,-0.03632705,0.021319121,0.056648973,0.013342761,0.022326171,0.000025803032,0.016677808,0.040323,0.03111472,0.025344333,0.036757525,-0.015028324,-0.0236489,0.012468794,0.007680063,0.0037958708,0.019423902,0.040430818,0.0312889,-0.020137692,0.020272106,0.036177617,0.0456603,-0.04828535,-0.01672894,-0.023672264,0.028020512,0.017650161,0.034238014,0.029607428,-0.0010431757,-0.005376336,0.035483755,-0.007174001,-0.019664953,-0.030157087,-0.023907438,-0.039239503,-0.017924018,-0.03678252,0.028695932,0.007947431,-0.016415827,0.02123339,0.03461391,-0.017671473,-0.036541384,-0.026386542,0.02507641,0.012288667,0.059841663,-0.012856939,0.012439368,0.014915623,-0.005394581,-0.009279359,-0.025209045,-0.008100679,-0.021138249,-0.012215546,-0.01855099,-0.0031882706,0.003284655,-0.070499934,-0.06156753,-0.020653008,-0.054051284,-0.02456924,-0.010682308,-0.0019833753,0.019984093,-0.0026471633,-0.054316066,0.023727339,0.014988735,-0.07102951,0.037476383,0.018774781,-0.0036606747,-0.045062557,0.046623193,0.02201275,0.044546325,-0.018144706,-0.0018179254,-0.0070331413,0.0131186135,-0.04323255,-0.06639176,-0.0028616148,0.030980054,0.030359054,-0.101039305,0.0054256455,0.007176099,-0.057005595,-0.021304654,-0.03743608,0.049347237,-0.0070486567,-0.008225852,-0.025994614,-0.033265285,-0.050408307,0.012618154,0.036660735,-0.046373237,-0.0018657165,0.058310606,-0.005342427,-0.0009689342,0.022949679,0.013520149,-0.030179013,0.033918895,-0.0076697385,0.02999129,0.016390814,0.035305176,0.009104332,0.009862596,-0.016045246,0.011328159,0.030326573,-0.01290048,-0.0027341067,0.040348005,0.0066263448,-0.054805566,-0.0033013555,-0.04083917,0.020016383,0.0073033203,0.031979185,-0.07138712,-0.0008453003,0.0031025512,-0.070613354,0.041596055,0.0011100775,-0.015630998,0.047489606,0.0029639136,0.02360406,-0.012024296,0.051627252,-0.03157342,0.01666837,0.062815376,0.042212244,0.014335858,-0.053110737,0.0028714032,0.014229046,0.016757414,-0.03366005,-0.05051647,0.011874938,0.016705124,-0.016614016,-0.04627706,0.02323727,-0.020238088,0.044789836,0.01776595,0.047911566,0.0011945706,-0.0020132165,0.04141357,-0.015745802,0.016022265,-0.041631617,0.052059837,0.006802968,-0.02428527,-0.05872179,0.005498565,-0.020407077,0.025817305,0.0081917215,0.001330351,-0.0102416845,-0.022181448,0.012117958,0.0064487527,-0.056244362,-0.0132848425,-0.017310513,0.037060767,0.036392715,-0.051913075,-0.004915622,-0.040120784,0.019943638,-0.007973986,0.016947294,-0.013431221,0.01513717,0.008767007,-0.04428492,0.009590104,0.0015403986,-0.04775308,0.016646544,-0.025331967,0.041327637,0.035372972,-0.0017644624,-0.013447812,-0.015674336,0.01535843,0.028513147,0.026397288,-0.02879785,-0.0024087862,0.018094677,-0.06366572,-0.042328965,0.019063827,0.000978496,-0.020710029,-0.038295373,0.0037643113,0.046058103,-0.018664116,0.010305983,-0.011427027,0.035393745,0.016546056,-0.015678762,0.06085427,-0.021364832,-0.04942502,0.042884517,-0.009770886,0.046652507,0.015113802,0.00070852926,0.004341245,0.022241352,-0.032513116,-0.013618136,0.007696285,-0.02098338,-0.03227199,-0.006457574,-0.0046206503,-0.009439821,-0.0063607893,-0.028799199,-0.059003588,-0.0011966509,0.008081069,-0.025110358,-0.0011986062,0.008239387,0.022592625,-0.000959716,-0.06509876,-0.01111659,0.0035157911,-0.028580457,-0.0015807933,-0.00753684,0.008485937,0.036394127,0.0023792984,0.000330077,-0.022710143,0.0026132255,-0.005820303,-0.05856112,-0.017315403,-0.014156749,0.0029444862,0.049860217,0.03174909,-0.026425585,-0.027383555,0.035442878,-0.013920212,-0.014914372,0.01662449,-0.0068135597,0.041953865,0.006684903,-0.06394146,-0.011265726,0.038446546,0.022272179,0.0065653673,0.018571218,0.0062990426,-0.035523813,-0.03201684,-0.027304055,-0.05849136,-0.032790996,-0.02103578,-0.041326843,-0.02017552,0.005718707,-0.029544612,-0.025943145,0.014795786,-0.02892797,0.010144169,0.008341763,-0.02865727,-0.014989831,-0.014913687,0.018195387,0.0638493,-0.012386151,0.010702498,-0.012899178,-0.023196658,-0.025741095,0.023391914,-0.0021132573,-0.028877072,0.03219041,-0.007800524,0.038884964,0.037076447,-0.036674216,0.037164677,-0.026046595,-0.04462553,-0.00835309,-0.04027849,-0.03154678,-0.025473813,0.012846453,-0.037896577,-0.012913031,-0.015962923,0.050910797,0.010945174,0.011781036,-0.040397175,-0.028195135,-0.07079995,-0.031659286,0.02883609
+8000
+4,0.002039781,0.006732579,-0.030764844,0.022093415,0.029089063,-0.017738217,0.02065899,0.06765597,0.019250574,0.0051943976,-0.04947679,0.027893292,0.029032169,-0.04453741,-0.011530109,-0.018405864,-0.029979993,0.029065514,-0.039283942,-0.04944712,-0.04588784,-0.02117709,0.020667095,-0.01893436,0.020775585,-0.019531343,-0.019215684,-0.057726756,0.028495647,0.021965886,-0.02731733,0.0270733,0.015678272,-0.0067768036,0.012963613,0.04595683,-0.025033142,0.013886592,0.031627983,-0.012713463,-0.062630236,0.035002537,0.052522015,-0.03171222,-0.05958038,0.012358196,-0.013849753,-0.024583817,-0.021127427,0.020407746,-0.019082578,-0.015103831,0.0041082795,0.0027679428,0.0013055339,0.04473803,0.004679002,0.00008670197,-0.011906048,0.01843395,0.048996165,-0.019990508,0.0073100827,-0.042242248,-0.009806705,0.006956895,0.014030348,-0.0037391381,0.013376938,-0.026781611,0.024147436,0.0074459133,0.041940544,-0.01941456,-0.025533881,0.03470817,-0.013337807,-0.0327336,-0.04370144,0.013737113,-0.011654693,0.025617355,-0.045394972,-0.0024753506,0.012594998,-0.010685569,0.01357326,-0.033180505,-0.002315611,-0.022017779,-0.07925535,-0.03684881,-0.037170544,0.005927015,0.049650885,-0.009964106,0.054998204,-0.008129323,0.060123693,-0.051613495,0.0117898565,-0.003950187,0.06073239,-0.042394668,-0.04850899,-0.022814041,0.042000156,-0.022482034,-0.024990736,-0.0073003275,0.0011681041,-0.03260542,0.050992977,0.049278665,0.00916799,0.0023222966,-0.026702616,0.04710424,0.011481898,-0.005752104,0.047416348,0.026074389,-0.014291893,-0.015200489,0.0039811223,0.003075467,-0.0516521,0.015421469,-0.024312666,-0.028938066,-0.019798305,-0.04460703,-0.053106893,-0.026671886,-0.013695494,0.02973556,0.047971826,-0.0027666506,-0.024180843,-0.0010248277,0.043251634,0.00738563,0.024052497,0.0065471022,0.04640975,-0.0127387475,0.00485431,0.01725852,0.0027356362,0.027776647,-0.01555586,0.0014749385,0.02951898,0.0018703378,0.042231206,-0.0038001505,-0.044689924,-0.014997699,0.024710253,0.023511129,0.0177619,0.029918319,-0.021772338,0.0052045803,-0.013487503,-0.011034937,0.0015550298,-0.06718735,-0.012013993,0.023364313,0.011227542,0.0029480185,-0.0033079786,-0.059013315,-0.008828118,-0.005142956,-0.02110191,0.013791417,0.0150691895,0.012174352,0.043249946,-0.03185068,-0.00031447926,-0.0062726974,0.013391692,-0.03550886,-0.02805966,0.009927318,0.020999655,-0.037182145,0.0057615163,-0.039229423,0.017401533,-0.023006344,-0.012430327,0.0115917735,0.023454813,-0.016360808,-0.0040710014,-0.03639065,0.025116026,-0.017122732,0.011505074,0.017878057,-0.016993862,-0.009616152,0.036725275,0.042436924,0.0067391284,-0.006019269,0.04235329,0.01553399,-0.028049627,-0.011926124,-0.027941326,0.026423978,0.016064798,0.029642181,-0.026782094,0.02530043,0.005636903,-0.003960152,-0.0063835336,0.032899134,-0.027121384,-0.016280998,0.0020504617,-0.014879064,-0.014019887,-0.029977402,-0.03664644,-0.011470831,-0.027081009,-0.014747761,0.0014303948,0.0075484193,0.019816007,0.016865145,-0.013501232,0.014068342,-0.0032400861,-0.017478602,0.041702997,0.018942598,0.01777703,0.025140539,0.015489685,0.02848341,-0.001810161,-0.02106188,0.006196058,0.013988129,-0.0042644814,0.030451693,-0.0021949245,-0.04618317,-0.013497095,-0.054840907,0.05931762,-0.012674048,0.009001462,0.010747855,-0.01892902,0.0057165655,-0.06834633,0.011537454,-0.021349696,0.01306426,0.03504463,-0.032022674,0.0071999785,0.0055990727,-0.011180098,0.022509875,0.011254748,0.015446513,0.013343569,0.033503335,0.048362162,-0.02035513,-0.0032623531,0.01229598,-0.012992395,-0.028513348,0.016315775,-0.023616713,0.010831351,0.004990378,-0.013990543,0.0027603041,0.045829106,-0.026594648,-0.054270152,-0.009579922,0.030040082,-0.000082539475,0.04265146,0.011595121,-0.0044052023,0.012972882,0.004352697,-0.0065195207,0.00070053095,0.05798997,-0.047292873,0.03890482,-0.035467763,-0.08249168,0.0017329814,-0.03425348,-0.0037731929,-0.026991017,0.0007082313,-0.06166634,0.030294606,0.049905345,-0.016608292,0.020179743,-0.029238956,-0.007401503,0.057920188,0.030807948,-0.009234446,0.07288356,0.007017481,-0.0035653096,0.022617733,-0.056441553,0.05812551,0.03467251,-0.01762924,-0.027263816,0.028681507,-0.06473691,-0.025664128,0.0638878,0.03180875,0.043599702,-0.043787923,-0.082098484,0.011556918,-0.045034494,-0.01569268,-0.015064957,0.047521837,0.013359929,0.005878254,0.02111268,-0.058915097,0.2669152,0.04562639,0.040581625,0.0133916475,-0.03604453,0.003417547,-0.021691455,0.011796149,-0.004811182,-0.030512128,0.03329971,-0.02173388,0.010198834,0.026491331,0.009310299,0.04535113,-0.040308684,0.0056038885,-0.025611542,-0.026497506,-0.023275888,0.04057636,0.010839156,0.008791802,-0.0016604584,0.006563422,0.038732775,-0.016733365,-0.027552137,0.01254736,0.037002046,-0.013067117,0.022052934,-0.027444184,-0.020944856,0.03825018,0.0003233718,-0.042345647,0.002568697,0.0037673009,-0.047077775,0.0147091625,-0.0111674415,0.0021703476,0.03531653,0.044307515,0.0006724125,0.019539185,-0.012172125,-0.05367431,0.030223038,0.0023480789,0.03844119,-0.057910677,-0.025477277,0.0040053558,0.0014598953,-0.02606269,0.0017927712,0.020200478,-0.021620087,0.0067721475,-0.0011435741,-0.023925079,0.010808438,0.03086421,0.082695045,0.036271345,-0.06494653,-0.026076334,0.005068469,-0.04277343,-0.035959665,-0.0014422989,-0.04022646,-0.00052322174,-0.009399425,0.006463876,0.011491621,-0.029000735,-0.02348016,0.0013891142,0.029657621,-0.02005228,-0.0063050957,0.044281457,0.0076313717,0.002458222,-0.0675626,0.04048513,0.017648302,0.036285356,-0.025503706,-0.036019955,-0.0011390551],[0.042609558,-0.024680706,0.023666246,0.010943522,0.004676954,-0.026403576,0.0038519108,0.016153848,0.026586533,0.022682043,0.014600257,-0.017967887,-0.012593997,-0.0037708846,0.0013585894,-0.015435581,-0.03942294,-0.0024649038,-0.045808174,-0.008315753,0.001993215,0.014586976,-0.09145765,0.011525046,-0.0072843963,0.027042208,-0.040227275,0.008825209,0.035813935,0.04732776,-0.028635332,-0.0022754017,0.074043475,-0.033385072,-0.008581037,-0.04750148,0.034364395,-0.018507151,0.016802875,-0.05025932,0.008360511,-0.029369289,0.0148731135,-0.020126367,-0.03460652,-0.01976581,-0.012754999,-0.034402005,0.005336971,-0.048358917,0.022691213,-0.015380057,0.020149356,-0.0354998,0.06633377,0.0015109914,-0.03359761,0.0046825376,-0.022050919,0.03573489,0.016787935,0.043032527,0.023710815,-0.045208883,-0.016229797,-0.00023718033,-0.03750482,0.024761368,0.027559577,-0.013368955,-0.008013773,0.021262635,-0.024782257,-0.008010689,-0.034416057,-0.010753119,0.020565422,0.023653623,-0.058503207,0.03292571,-0.015677089,0.011215459,0.018768322,0.03369459,-0.017529959,-0.0016761738,-0.015697183,0.05173186,0.005719481,-0.00022023697,0.03715071,0.024510829,-0.033613782,0.017137917,0.074769706,0.02384092,0.0025945844,-0.028366132,-0.052883655,0.009299889,0.042538155,0.006044666,-0.039251328,0.04532233,-0.06746286,0.006027418,0.0026803042,-0.0008083241,0.010196236,-0.013987808,0.0014801192,0.0067119864,0.027748354,0.054225914,-0.009756266,0.040687095,-0.010175836,0.019656422,-0.039366517,-0.0022810404,0.0047828835,0.020402316,-0.018292664,0.032803535,0.011915314,-0.025481967,-0.015418016,0.033544365,-0.017506555,0.024081333,0.01313459,-0.019704035,-0.0014304675,0.0059160125,0.04258301,0.008674406,0.019946218,-0.0032146417,0.00040415395,-0.024353975,0.03697304,0.02589158,0.012433674,0.066625774,-0.01976806,0.02019986,0.032367285,0.03239137,-0.054034866,0.059705257,-0.06598152,0.0067099584,0.020151759,0.04045257,-0.0198641,-0.00031117865,0.034739397,0.00035401902,0.009521788,0.01539841,0.0078027216,0.053255193,-0.01490815,-0.003377977,-0.057796083,0.023309557,-0.03788414,-0.025772892,-0.054852866,0.009345276,-0.006814426,0.03446464,-0.025900172,0.00715903,-0.008188361,0.06618786,-0.006474102,-0.0020540534,-0.01767826,0.018859107,0.0020263786,-0.020177435,0.0024394891,0.06702765,-0.0028190736,0.0007267913,0.013095557,-0.0155245885,-0.023293033,-0.03781697,-0.004416349,0.034115415,-0.036992606,-0.01199876,0.03230727,-0.013059736,-0.020727666,-0.0472054,0.004544981,-0.04573386,-0.00963501,0.0361621,-0.020898279,0.04064537,0.011523631,-0.028160842,0.027531581,0.03075515,-0.02624479,0.0135683725,0.047204796,0.018029012,-0.011457877,-0.026204133,0.035127252,-0.019551646,-0.077619694,0.050471283,-0.040158417,-0.024796017,0.028467836,0.014979777,0.027489927,0.0022657458,-0.019294925,-0.0037599357,-0.04080265,0.077581935,-0.006437615,-0.007559123,0.007521925,0.02303571,-0.016324889,0.04505675,0.016976679,-0.022721471,0.024386402,0.030409891,0.024068657,0.013581187,-0.001513037,0.015123916,0.025254095,0.03245055,0.028186211,0.065674774,0.0037013588,-0.012355722,0.0307245,-0.004119332,-0.005459157,-0.0045226966,0.013591993,0.028607754,-0.038932268,-0.02333482,0.0076266527,0.052010104,-0.02728055,-0.017136227,-0.0423899,0.027791822,0.00773983,0.044471826,0.044609834,-0.0031005219,0.009262493,0.045490548,-0.020524831,-0.01740306,-0.0360408,-0.0051415944,-0.027914206,0.010606714,-0.04940153,0.032715015,-0.0036287038,-0.03285031,0.015039292,0.025011022,-0.0009949832,-0.04749271,-0.017071886,0.057963554,0.013578483,0.056131557,-0.023247682,-0.007129929,0.044780508,0.002917468,-0.024809249,-0.0034981242,-0.0061431243,-0.014235022,0.019297844,0.0026150318,-0.039279036,0.023393603,-0.042868502,-0.056417942,-0.031667653,-0.039203476,-0.01846051,0.0032277294,0.011579265,0.0024142861,-0.026471088,-0.03502781,0.015880372,0.012333719,-0.06539353,0.04395614,0.022913523,0.012409094,-0.058618955,0.049471512,-0.000008782767,0.034178913,0.00010621823,-0.019012608,-0.031062795,-0.0070744096,-0.057600945,-0.07595148,0.011395823,0.025272232,0.05354763,-0.086194366,-0.0029752292,-0.034730617,-0.037799723,-0.02295093,-0.041018184,0.05101576,-0.0065767793,-0.008291996,-0.029490825,-0.04473085,-0.023253348,-0.001958749,0.028238628,-0.05058429,0.02067861,0.08382186,0.0063705062,0.002245644,0.013510041,0.009468061,-0.03371252,0.024647746,0.013384726,0.025897743,-0.0128093455,0.0415878,-0.0060089603,-0.014725706,-0.02263768,0.04055128,0.01790163,-0.02630832,0.00013962117,0.006554342,0.00081043004,-0.048443254,-0.011363489,-0.048840534,0.032633714,-0.01604447,0.043274097,-0.056559306,0.024930833,-0.0031536354,-0.055509716,0.047983523,-0.012497403,0.006476697,0.048081547,0.023065427,0.047674533,-0.030809231,0.06147256,-0.035619747,0.02986516,0.06390291,0.04061275,0.015271935,-0.05339922,-0.004588387,0.02651557,0.016119339,-0.048404977,-0.01997123,0.010235036,0.0006700781,-0.02626143,-0.05031553,0.042155225,0.0076534506,0.057962634,0.03655256,0.033208895,0.016891243,0.017562682,0.048259124,0.021247901,0.024603508,-0.037872896,0.030656334,0.011286592,-0.0143757565,-0.065269575,0.007379609,-0.027179575,0.014993327,0.026089339,0.007414248,-0.011947661,-0.009034923,-0.00816745,0.00824452,-0.07757819,-0.011196963,-0.0071902443,0.022616843,0.015540522,-0.03397475,0.010432946,-0.051861692,0.02254012,0.0053636287,0.015553709,-0.022606725,0.029436896,-0.01637474,-0.042262197,0.00026468982,-0.0046725366,-0.03373563,0.047062863,-0.042977378,0.008839581,0.026712717,0.008528977,-0.00755202,-0.015282271,0.046281032,0.028287336,0.02941354,-0.029976973,-0.0413076,0.0019970196,-0.074770294,-0.008425517,0.008916156,0.01106992,-0.050915573,-0.04253225,0.004812464,0.035300124,-0.019903883,-0.002244596,-0.020136587,0.046381213,-0.02141418,0.004314798,0.053070255,-0.017695438,-0.030412287,0.05278011,-0.01716154,0.020881895,0.028408442,0.015582689,0.023652991,-0.0073936894,-0.034370575,-0.00900132,0.017811993,-0.017128333,-0.0074601653,-0.030369548,0.02019759,-0.014542156,-0.0073938384,-0.011407769,-0.07295384,-0.0015105181,0.009297171,-0.025044462,-0.008898701,0.021736018,0.022521026,0.002153395,-0.063826784,0.0018057524,-0.018466406,-0.02426519,0.0009133551,-0.011895115,0.020479433,0.028424416,-0.011980988,-0.013659246,-0.005563131,0.013630381,0.007925426,-0.05767411,-0.024248442,-0.014396789,0.019518515,0.06696884,-0.001630304,0.0009286386,-0.009000578,0.06904632,-0.0038325035,-0.016939264,0.010728017,-0.03614547,0.05265213,0.012872183,-0.04066094,-0.029696723,0.03946946,0.0037211105,0.019321024,-0.01612861,0.007047109,-0.03385839,-0.04548338,-0.005175181,-0.029711513,-0.060794085,-0.033276826,-0.014781008,-0.004281019,0.011152086,-0.005110333,0.00027752185,0.0008220554,-0.059205398,0.04115921,0.01505885,-0.018430773,-0.029288089,-0.015241515,0.0017704883,0.055927876,0.013200954,0.0008012604,-0.027491184,-0.00026665872,-0.009303551,0.014337359,-0.031323995,-0.028237017,0.0013875762,-0.035848703,0.0076944814,0.04652606,-0.028737968,0.028786205,-0.044876345,-0.037876714,-0.018992461,-0.018632967,-0.041668974,-0.022299893,0.002309732,-0.011219662,-0.022839054,0.0020260562,0.06665379,0.013025811,-0.0029885056,-0.021875663,-0.025375642,-0.0526564,-0.03699732,-0.0030185976,-0.008894662,0.003043639,-0.040284086,0.022874484,0.040121607,-0.0075829034,0.008706081,0.06826502,-0.008483519,-0.024613103,-0.06670952,0.025787694,0.03131815,-0.024251103,-0.009254266,-0.013689284,-0.014823638,0.015563881,-0.034399096,-0.053357482,-0.02696788,0.0068817055,0.056217577,-0.014487075,0.044425823,-0.014925526,-0.02411471,-0.066630095,0.037154794,0.03037618,-0.002017018,0.020702155,-0.013440962,-0.019437132,0.028467974,0.040790606,0.00582334,0.026481608,0.026028916,0.010271542,-0.0599544,0.021192217,0.07288462,-0.044291567,-0.047097825,0.01200245,-0.007881273,-0.03742039,-0.018146569,0.02750447,-0.041470546,0.020725764,0.006176052,0.010868416,-0.0031446945,0.01908596,-0.009862076,0.00564345,-0.013195943,0.014977816,0.05888827,-0.039768316,0.024916874,-0.036321223,0.013277155,0.005520739,0.009476434,-0.01869331,0.008719995,-0.028069034,-0.004931048,-0.013593737,0.024215361,-0.024764571,-0.03314367,0.01631194,-0.0006476238,-0.038221985,-0.022341914,0.013599828,-0.029877137,0.016781598,-0.04254342,-0.018317254,0.022661265,-0.014042619,0.0060767718,-0.016824828,-0.045250162,-0.022673884,-0.045671772,-0.048869252,-0.028106723,-0.027586153,0.030670878,0.025154183,0.00022975092,0.01583806,0.046091124,-0.058312647,0.02351359,0.0075655226,0.061608862,-0.034347486,-0.066712424,-0.030610066,0.029614307,-0.040874936,-0.00089650304,-0.0030388834,0.00558309,-0.027337557,0.042528402,0.030913351,0.014112122,-0.008920851,-0.001113691,0.018665645,0.008877227,-0.0019824854,0.06391481,0.036098983,-0.023571117,-0.0522062,-0.0052905884,-0.011741755,-0.03933979,0.010966928,-0.0090912655,-0.006415862,-0.01819763,-0.0241998,-0.03810344,-0.036480386,0.019729437,-0.010114477,0.011909055,-0.0173959,0.0030161669,-0.007918949,0.02175625,0.006744208,0.014536628,-0.018200533,0.03472509,0.014423533,0.0068213595,0.04132836,-0.0052463384,0.031350475,-0.014710874,0.009930711,0.018763063,0.01211165,0.009449559,-0.024659412,-0.03979063,-0.03264651,0.009509268,0.024594083,0.027405508,0.027542148,-0.040939905,0.025059326,-0.012605837,-0.0027061168,-0.004355511,-0.081535876,-0.01812106,0.03194617,0.002729498,-0.015874814,0.0060131582,-0.059336364,-0.020000217,0.0013615806,-0.0079561,0.006339289,0.011910886,0.019548146,0.0505788,-0.03919479,0.010166003,-0.00880232,0.04124422,-0.023336444,-0.037275493,0.0062810974,0.0020510564,-0.029646182,0.008519241,-0.02899298,0.033762008,-0.0062064845,-0.05391745,-0.017435063,0.005418188,-0.0012189392,0.015915798,-0.00742513,0.041403946,-0.016247183,0.014521887,0.020351887,-0.0031093305,-0.011316711,0.019873409,0.014220712,0.013597995,0.0017982562,0.031544667,0.020933138,-0.010573575,-0.033758543,-0.009873681,0.040311478,0.036710005,0.010665994,-0.040424332,0.022945082,0.012915974,0.012989719,0.012419851,0.051313654,-0.0386027,-0.03146185,-0.0032487565,-0.011463967,-0.002714815,-0.013015343,-0.032817006,-0.00183462,-0.041814417,-0.03157955,-0.0059234384,-0.005641911,0.038589127,0.015461828,-0.035215348,0.021450786,-0.010499844,-0.017851813,0.03579433,0.010415257,0.020953622,0.025284825,0.013065736,0.015673958,0.008147371,0.017402766,0.009198818,-0.012207104,-0.0009739414,0.0073177507,0.002698456,-0.03964985,-0.011184625,-0.06791388,0.031893503,-0.026904048,0.013424765,-0.019618863,-0.026401164,0.020863332,-0.047438364,0.010066927,-0.03152501,-0.017257025,0.015158049,-0.0321596,0.0019595257,0.011569676,0.0030231168,0.011253137,0.016974606,-0.0015790286,-0.027589642,0.04312713,0.05716649,-0.025715401,-0.026244167,0.018351581,-0.01610701,-0.024898496,0.0024103827,-0.05422746,0.011317076,0.0066566747,-0.01515982,-0.0024862972,0.04597621,-0.003856061,-0.05075742,0.0012246529,0.040668692,0.02157183,0.06479471,0.02096914,0.037280828,0.031755198,0.05206083,-0.008402036,0.0044835377,0.04094915,-0.029389517,0.03710052,-0.054604486,-0.065633595,0.0058101155,-0.027474469,0.0035992088,-0.035993975,-0.008376829,-0.038801957,0.02247448,0.06673715,-0.0038587549,0.0108813,-0.02782461,-0.01506497,0.0506309,0.02237581,-0.00093922333,0.09610954,0.02770236,-0.02281905,0.044187687,-0.032309055,0.035513565,0.0017110734,-0.018466616,-0.04143348,0.029722624,-0.058722306,-0.02795637,0.055591937,0.049506232,0.035597216,-0.034591537,-0.044135164,-0.0064206757,-0.05196493,0.0038600452,-0.019778986,0.050878752,-0.011877878,-0.0061878837,0.022776742,-0.056895386,0.27534258,0.049868286,0.020169396,0.016506638,-0.012312895,0.00713428,-0.0036073783,0.02417144,-0.017703107,-0.036611076,0.029659333,-0.0035446552,0.0445485,0.034519803,-0.0016583328,0.048319273,-0.044035167,0.010891535,-0.03634205,-0.03361793,-0.034007914,0.021870622,0.016226677,0.030172756,-0.0030274512,-0.011256328,0.0491407,0.00091580616,-0.046509214,0.0043730973,0.024514975,-0.022757098,0.038258795,-0.035653472,-0.048411317,0.02198514,0.00872987,-0.020462899,0.028519936,0.0032661897,-0.045588225,0.018533641,-0.011733008,-0.01649435,0.03484957,0.023327503,-0.05126897,0.0065669985,-0.019976355,-0.062142033,0.035408456,0.019524831,0.033240248,-0.040294163,-0.02276831,0.011658286,0.014305174,0.006404175,0.0021850078,0.03483493,-0.038766026,-0.011961159,0.024642875,0.018825898,-0.03923084,0.03931452,0.056119956,0.046422634,-0.04202022,-0.008436358,0.0036792788,-0.034793813,-0.041077565,-0.0012293716,-0.027722877,-0.040083338,-0.007012203,0.014921604,0.028579978,-0.021230208,-0.010941998,0.0021529184,0.0056707785,-0.0013864066,0.009287912,0.026997775,0.0050597773,0.009733318,-0.03675659,0.044340383,0.016682083,0.04691802,-0.01050986,-0.029687138,0.008302692],[0.021101419,-0.05386897,0.011570256,0.018912375,0.002367628,-0.029099986,-0.0014374328,0.017227245,0.051691506,0.046522893,0.017623559,-0.01442246,-0.017482003,-0.0011349232,0.0019486003,-0.004568935,-0.031051327,-0.0042697666,-0.05407992,0.012952455,0.009586794,-0.00022110794,-0.09571158,-0.017320832,0.012396806,0.041856624,-0.035798687,-0.0005919698,0.054661844,0.04309012,-0.020280449,0.02396854,0.045524206,-0.03704527,-0.03571067,-0.04809785,0.044081476,-0.017086405,0.009362275,-0.0412996,0.013306943,-0.02656472,0.032857142,-0.036107387,-0.03363338,-0.03515484,-0.017634574,-0.037266627,0.012794952,-0.048609603,0.031917114,-0.009473554,0.018876748,-0.040648207,0.03585349,0.0062074275,-0.03684061,0.0028273223,-0.02379346,0.04966836,0.05203529,0.03503797,0.00053360034,-0.05218013,-0.020345554,0.016591493,-0.049246505,0.003448842,0.026971754,-0.014986027,-0.00069621083,-0.011301258,-0.02120866,-0.025250182,-0.03223975,-0.016638612,0.025208855,0.011458367,-0.059967816,0.034208294,-0.015439324,-0.022834774,0.022960644,0.00791728,-0.02741881,-0.003130752,-0.009836256,0.048272833,0.0039634593,-0.0065109404,0.038002174,0.026189635,-0.031059248,0.009176073,0.05798372,0.030116793,-0.0022551594,-0.022617929,-0.055071652,0.010322364,0.01477688,-0.002805816,-0.03939242,0.037075948,-0.050932996,-0.0028625214,0.02472273,0.018093508,0.0068188487,-0.016330268,0.012924327,-0.00054958806,0.04932195,0.030832749,0.009248764,0.037728503,0.004283411,0.03758676,-0.05441361,-0.0051207594,0.033065252,0.0025554218,-0.031241974,0.008509714,0.019830925,-0.04013039,-0.02267422,0.039933868,-0.043611046,-0.008261324,-0.00048667524,0.002820991,0.0009975696,-0.0125993965,0.046791065,-0.01464964,0.024133863,-0.0032655217,-0.029761087,-0.049247287,0.016567025,0.013176622,-0.0018216877,0.07563012,-0.025776284,0.014443305,0.02058096,0.03283796,-0.05922015,0.04079002,-0.032647565,-0.010616602,0.014899935,0.04983115,-0.0051360773,0.003383496,0.037994854,0.008052725,0.011463803,0.01058846,-0.0022362748,0.023311406,-0.020117724,-0.0029725109,-0.05292381,0.026178677,-0.038324915,-0.002596907,0.0071375663,-0.017335104,0.005110823,0.0139290085,-0.04299187,0.0062451605,-0.02494177,0.042842776,0.0139429495,0.0003403896,0.002636526,0.019291606,0.0041847783,-0.009944829,-0.00030694835,0.06513531,-0.02416832,-0.004488243,0.01206602,0.001338836,-0.007428342,-0.034814022,-0.006274959,0.026775235,-0.034241557,-0.0003379561,0.033113305,-0.019701265,-0.036111996,-0.02712938,0.007949406,-0.043774422,-0.006677269,0.054468025,-0.0064278566,0.06271388,0.013470989,-0.02359959,0.019949302,0.033624746,-0.03272519,0.03379423,0.03161362,0.038165398,-0.014821282,-0.003314733,0.03307221,-0.01608657,-0.057866,0.03073738,-0.043316428,-0.0005276073,0.024019696,0.01758525,0.03579022,0.015169047,-0.005287167,0.012838541,-0.0150454845,0.05642658,-0.01853761,-0.008610225,-0.014691568,0.021122953,-0.049502343,0.03948743,0.010031753,-0.0048479433,0.033564508,0.020946952,0.02614454,0.02583759,0.008381404,0.024150254,0.029569786,0.02759338,0.022691129,0.0738648,-0.0070141526,-0.072926864,0.008825687,0.015252189,-0.0022886957,-0.008562458,0.031000266,0.037112277,-0.034661267,-0.01174702,0.03291645,0.040427368,-0.041737515,-0.012122268,-0.022027086,0.05717013,-0.0014391254,0.02739397,0.020354427,-0.009664669,0.009683776,0.035853587,0.0051643574,0.0030254046,-0.03959087,-0.029006973,-0.05791626,-0.00592157,-0.03187211,0.03282018,-0.0020209036,-0.03183735,0.022295041,0.01278424,-0.01587322,-0.038218904,0.021421181,0.04020986,0.016610704,0.04399508,-0.024183301,-0.007424885,0.027716307,0.017778615,-0.008194414,-0.021747028,-0.0034837958,-0.025333531,0.007391301,0.00047133816,-0.010534875,0.010997214,-0.031410757,-0.06414985,-0.029000485,-0.03564765,-0.0088087395,-0.0050708647,-0.0056917304,0.012907064,-0.005985304,-0.025330508,0.03641672,0.016762806,-0.076559946,0.029709749,-0.0011088962,-0.00275261,-0.05772487,0.039053876,-0.0055842795,0.043937705,-0.017693,-0.010348725,0.004045877,0.0152165,-0.040543113,-0.06656948,0.009202437,0.047230266,0.061466426,-0.09718782,0.016862584,-0.009070505,-0.05923907,-0.026699765,-0.018474746,0.054631338,0.0010810748,-0.017258614,-0.03711133,-0.04081847,-0.004490889,0.0022278163,0.037523612,-0.041264083,0.014781487,0.07364888,-0.0030273292,0.0049357405,0.015336091,-0.007586943,-0.018394813,0.031427797,-0.004265544,0.044181682,-0.0113916835,0.022879498,0.0048669274,-0.007085733,-0.014272376,0.022643737,0.020494562,-0.024886644,0.0008083425,0.023964189,-0.0072551323,-0.028051818,-0.004671027,-0.05577218,0.026305124,-0.0198281,0.036082093,-0.05756751,0.0035936763,-0.014634422,-0.056973793,0.039461523,-0.013187534,-0.018945128,0.06270844,0.0009142644,0.0305961,-0.01190893,0.0469979,-0.016803913,0.037526913,0.05824358,0.04275315,0.018969662,-0.062856905,-0.008991648,0.018616563,0.03163808,-0.033573166,-0.049210165,-0.0038498887,0.0047895433,-0.023019139,-0.03493464,0.04352819,-0.0013883334,0.057179235,0.032268986,0.039637156,0.0027218643,0.025371663,0.050474145,-0.0049475273,0.008437972,-0.048675545,0.035746478,0.0026644329,-0.01741671,-0.046214506,0.02311547,0.00838959,0.012181953,0.020975811,0.01975162,-0.004729821,-0.0017118835,0.012104714,0.013915808,-0.07459587,-0.023384344,0.005761585,0.02491297,0.012780576,-0.04996805,-0.026792508,-0.042514056,0.017577384,0.009562236,0.014379799,-0.028963547,0.027766075,-0.021580221,-0.027671477,-0.0003463303,0.0005699975,-0.04698731,0.028757976,-0.021485932,0.030605648,0.03108224,-0.0018903115,-0.020981574,-0.008632159,0.020693092,0.023362348,0.024880733,-0.028397424,0.004340793,0.00830487,-0.06409108,-0.018019214,-0.0019861562,0.004513219,-0.02677194,-0.026898978,0.023517767,0.028147131,-0.011152677,-0.01167935,-0.013075229,0.01638655,0.011102802,0.008181779,0.048217636,-0.03551601,-0.06026036,0.029507434,0.011851004,0.047325835,0.0054553603,0.01674562,0.018876689,0.0046559703,-0.05278227,-0.010807237,0.009087459,-0.04394659,-0.03306041,-0.020636244,0.007071601,-0.022417042,-0.010591923,-0.025004815,-0.048087835,-0.0011010133,0.016415214,-0.02858652,0.0034429177,-0.017605968,0.025715332,-0.006523448,-0.045558568,0.021052536,-0.012158321,-0.0075670797,0.0068749455,0.014122603,0.015952155,0.022549056,-0.011767442,0.011751283,0.0068516866,0.0010864352,0.019800501,-0.059066355,-0.033543956,0.021176547,0.0141779315,0.07857399,-0.0020951994,-0.023804903,-0.014753956,0.042383835,-0.0065651597,-0.026455592,0.026785443,-0.005882112,0.045402754,-0.003529364,-0.059990566,-0.025289502,0.072558835,0.022033317,0.033511244,0.010304895,-0.0053158584,-0.025190849,-0.042079173,-0.015554851,-0.04222403,-0.040348683,-0.008381249,-0.029184125,-0.02960349,-0.0069319075,-0.0060521476,-0.001402649,0.042089276,-0.05276523,0.01627864,0.012272259,-0.030847728,-0.00088563294,-0.01133355,-0.013685559,0.038087692,-0.0028833568,0.003120711,-0.016968181,-0.032076407,0.0054791383,0.02712359,-0.042507347,0.0034842172,0.01448587,-0.014405796,0.041385308,0.020345643,-0.0005892024,0.0574595,-0.028037654,-0.03726474,-0.015171113,-0.028064422,-0.032395963,-0.011388663,0.024540955,-0.020369718,-0.010732061,-0.0006704278,0.076636344,0.028991222,0.008518764,-0.040531214,-0.027579896,-0.049051967,-0.03946592,-0.010664927,-0.011838721,0.01209887,-0.020297866,0.024724787,0.009145721,-0.015783213,0.008901146,0.08365426,0.008675241,-0.03186631,-0.073589966,0.030918077,0.039476328,-0.051614586,-0.008854368,-0.02831503,0.00073569745,0.054755356,-0.034162235,-0.0729062,-0.038663544,-0.010914348,0.05812018,0.004359497,0.047597192,-0.010869001,-0.02006921,-0.07176062,0.01685969,0.024814783,-0.016120063,0.032195177,-0.010898299,-0.01830776,0.030872917,0.03204433,-0.027883582,0.013635305,0.034055945,-0.007332853,-0.06237956,0.041664373,0.06171576,-0.033962652,-0.050885122,0.013447958,-0.012484486,-0.03403268,-0.02285579,0.009868462,-0.026817625,-0.0017749356,-0.010631402,-0.0015646947,0.009324014,0.017539691,0.010260545,0.023281742,-0.0014491266,0.013063484,0.050440054,-0.03105978,0.016384961,-0.057661034,0.0020189213,0.00018753746,-0.0031538198,-0.010755692,0.011697949,-0.0035210347,0.020727929,0.0016850011,0.017551979,-0.036047347,-0.023286462,0.0271179,-0.020459946,-0.02845871,-0.014228257,0.028149309,-0.029346677,0.036617912,-0.035794325,-0.02229245,0.009318382,-0.015390531,0.017290061,-0.014035926,-0.026963074,-0.039579745,-0.033662796,-0.053768657,-0.038925048,-0.025340619,0.008671441,-0.002511004,0.0480683,0.01356493,0.038182896,-0.06895724,0.023167033,0.013220428,0.067467265,-0.011930361,-0.07384344,-0.037593357,0.017285965,-0.036626324,-0.011828149,-0.037756752,0.019222422,-0.022431165,0.035976954,0.04587765,0.0068546524,-0.0067290287,-0.02706043,0.046437096,0.013480435,-0.010227263,0.064078934,0.039197296,-0.023401868,-0.028718075,-0.005092173,-0.013492202,-0.033389594,0.020993408,0.004525388,-0.01651775,-0.011262335,-0.060000546,-0.06423747,-0.02550922,0.0048580044,0.02282019,0.023200281,-0.012577918,-0.015932068,-0.020463765,0.036574047,0.012204756,0.02223703,-0.02173853,0.035209216,-0.0028671508,-0.0022979453,0.04307671,-0.011189649,0.031373676,-0.012499365,-0.00012580238,0.015984163,0.009783379,0.030627549,-0.017002115,-0.06456909,-0.01650632,-0.0022357444,-0.02030272,0.014134225,0.007244027,-0.05686183,0.019991467,-0.03583198,-0.02886781,0.01576673,-0.052270513,0.002574176,0.041120358,0.00003086669,0.0023484,0.0001207938,-0.059425104,-0.017209964,0.009186362,-0.009268003,0.0045831506,0.019138623,0.0057909177,0.034209445,-0.044562917,0.0026061959,-0.006519519,0.030629562,-0.02556611,-0.018653162,0.025548866,0.0032195388,-0.017385913,-0.00006983313,-0.019786162,0.0411566,0.0019481205,-0.039819624,0.033212263,0.036990166,-0.012870549,-0.0014812881,-0.018101431,0.05175048,-0.017583713,0.020476459,0.026771732,-0.009179247,-0.014813469,0.024998333,0.040106613,0.0109818205,0.009006321,0.017376775,0.015907008,-0.015855942,-0.027438564,0.00064228085,0.03304524,0.03332908,0.013027756,-0.012276703,0.049673833,-0.0049395603,0.01772658,-0.012254935,0.017619062,-0.014297452,-0.023581984,0.00013056432,-0.016383149,-0.011322061,-0.01297052,-0.057650503,-0.012334683,-0.043831997,-0.028481763,-0.000085179745,0.011850102,0.011879283,-0.0026407607,-0.01514533,0.024597341,0.0039883777,-0.008905714,0.03251402,0.00848728,0.02199412,0.021438397,0.0146176,0.0022555462,0.0045705438,0.018188236,0.00019701412,-0.014158699,0.0007447279,0.043955475,-0.021990009,-0.054163493,-0.0017309397,-0.05501174,0.0736339,-0.018131355,-0.0049714353,0.019091506,-0.026439527,0.0054764217,-0.08616742,0.010884989,-0.044924304,-0.009327886,0.019915659,-0.022670696,-0.00061962695,-0.0058782254,-0.009120815,0.01744249,0.021823792,0.01544633,-0.017276883,0.038510114,0.052792843,-0.011890197,-0.03428831,0.023673132,-0.003492258,-0.047983248,-0.013222329,-0.032503832,0.009215142,0.008132107,-0.0066752317,0.032424554,0.026689457,-0.03428837,-0.052709445,0.00818788,0.027231785,0.034285795,0.031932335,0.032570206,0.0018643719,0.03440812,0.025275247,0.011572166,-0.015236584,0.04175001,-0.052790627,0.053532913,-0.032713853,-0.072651476,0.0023409599,-0.044424497,0.018829549,-0.030449035,0.0055954694,-0.053677313,0.014467634,0.041947637,-0.014461357,0.019129856,-0.040869072,-0.018294549,0.063480675,0.040938225,-0.0137689905,0.0737352,0.006654556,-0.025150692,0.03694607,-0.01650746,0.06294386,0.007952573,-0.008032131,-0.051287755,0.046620157,-0.042853042,-0.024857406,0.049795948,0.039494306,0.0434805,-0.04185665,-0.05549633,-0.01460074,-0.03834246,-0.0050327675,-0.026635,0.05262229,0.002243501,0.007700865,0.01448331,-0.059765033,0.26266134,0.044234097,0.024520392,-0.021644544,-0.012402356,0.011716162,-0.038753353,0.0020009126,-0.03368056,-0.022574034,0.04551122,0.005437234,0.02346362,0.043610882,0.01120665,0.072417066,-0.036606986,-0.003426686,-0.038635004,-0.01925188,-0.045075856,0.023238346,0.0055743195,0.05610802,0.0017777091,0.0067345547,0.05224007,-0.02962226,-0.012103399,0.004468319,0.032288387,-0.017848702,0.04333653,-0.013164236,-0.048561435,0.02335779,0.011730935,-0.022636281,0.0068375934,-0.0066950517,-0.038477343,0.030109383,-0.015241776,-0.01143487,0.028893659,0.01781522,-0.04593239,0.015356986,-0.0034764924,-0.034562774,0.06858468,0.025828192,0.034547597,-0.05354741,-0.045891166,0.017941322,0.01522108,0.004558676,0.0027160565,0.030231116,-0.012127148,-0.017671935,0.004818431,-0.008484231,-0.04779513,0.011250457,0.066794835,0.04136488,-0.038725384,-0.01726617,0.0068608103,-0.030852972,-0.024886174,-0.005317701,-0.010447146,-0.006984125,-0.009024681,0.023307675,0.014260596,-0.001703528,-0.018862056,-0.0033594593,0.003191633,0.014868049,-0.009831722,0.039768673,-0.011167327,-0.006370033,-0.045211833,0.044940665,0.009782807,0.03205574,-0.015228675,-0.029057829,-0.0049606776],[0.024769194,-0.036885586,0.005212453,0.02461528,-0.00804021,-0.01925342,0.00008155804,0.00495002,0.032692757,0.042224877,0.03266589,-0.012716876,-0.0051353998,0.01259899,0.012116866,0.0071561025,-0.04393899,-0.016610507,-0.0648208,-0.0013543048,-0.0017818726,-0.00017611774,-0.07499166,0.005951189,-0.020351348,0.035091832,-0.024005368,-0.0038307414,0.06152676,0.044363078,-0.027505623,0.014100678,0.06870213,-0.03312743,-0.021185994,-0.036023967,0.045074426,-0.018388411,0.015559426,-0.060398728,0.032976117,-0.04349751,0.040331893,-0.028074818,-0.05319351,-0.025940454,-0.02101016,-0.04218151,-0.008318668,-0.056023747,0.018931797,-0.0011636957,0.027267102,-0.007908107,0.05925857,-0.016542627,-0.01433112,0.011470128,-0.019590378,0.04437032,0.022784485,0.032147195,0.0015847924,-0.06268396,-0.01140977,0.005083183,-0.034827977,-0.00015931598,0.026055044,-0.019433405,0.0054941783,0.0337441,-0.02891582,-0.017567167,-0.031137573,-0.002992063,0.031661805,0.012799379,-0.044315573,0.041354828,-0.025591118,-0.0040971567,0.023806695,0.012404029,-0.041760076,0.013479659,-0.02552349,0.050360136,-0.005667187,0.0075718146,0.048096545,0.036399253,-0.03441265,0.020201987,0.06329317,0.04772085,0.014802592,-0.030284416,-0.052719478,0.005885539,0.027305985,0.0019424624,-0.025981564,0.06549249,-0.050891496,-0.007464897,0.015603302,0.0005994596,0.014995728,-0.005486645,0.012333214,0.006080541,0.02365014,0.04246518,-0.020654492,0.040878184,-0.009447155,0.00815792,-0.039643753,-0.011615086,-0.0032326132,0.01648128,-0.008838295,0.005899883,-0.007760592,-0.04206271,-0.030004224,0.023465589,-0.041641112,0.00008031173,-0.011961553,-0.010228735,-0.009090401,0.0060177143,0.055480238,0.014170588,0.01841781,-0.006591294,0.029915752,-0.030125763,0.04560785,0.019793011,-0.009460264,0.06578103,-0.020216791,0.029013138
+8000
+,0.01585809,0.022574067,-0.06920439,0.049564876,-0.04749975,0.01442539,0.010043322,0.054049402,-0.022791712,-0.004915429,0.036685493,-0.0046406663,0.019840617,0.014233857,-0.0197595,0.03289064,-0.0053999703,-0.017167611,-0.03619936,0.023182329,-0.03668679,-0.014328604,-0.025667349,-0.0029506106,0.012442064,0.022125524,-0.040946666,-0.006606175,0.008409869,0.066607945,-0.014490887,-0.0020443539,-0.005797542,0.015325575,-0.0010805246,-0.012064437,-0.0078073037,0.061051466,-0.039610606,-0.014352434,0.012173451,-0.021332547,-0.017632186,-0.05654006,-0.019893745,0.0320825,-0.02510505,-0.0022980506,0.029234944,0.00020647018,-0.03816665,-0.020362971,-0.002142515,-0.05200639,0.004708777,0.039662737,-0.008734925,0.058087524,0.0043370677,-0.035632275,0.004469285,0.034435213,-0.022315554,0.010341864,0.018786255,0.03858004,0.0055404156,-0.025149863,0.057139516,-0.012290502,-0.042230837,0.032691542,-0.04248439,-0.011887754,0.04032438,0.027413918,0.059846055,0.019267706,-0.0010485775,0.007601697,-0.032207247,0.05742352,-0.023267346,-0.014028544,-0.0072633885,0.02302053,-0.022712858,0.017635062,0.023941938,0.0005686723,0.018691823,0.03180215,0.028453145,0.016242642,0.004068465,0.011211845,0.022621693,0.03756398,0.03431301,0.042253084,-0.002839681,0.016371243,0.02314645,-0.00675506,-0.008909909,-0.009643266,0.02255348,0.020410815,-0.014949167,0.009697048,0.017437302,0.055849053,-0.027993098,-0.0049754954,-0.026900772,0.03683974,0.019192964,0.026284145,0.030189022,-0.011861599,0.022071272,0.030911136,-0.0138008995,-0.03166149,-0.022475626,-0.030709006,-0.041694406,-0.011915081,-0.028611895,0.015451895,0.019628534,-0.032034636,0.016881686,0.048123095,-0.02022929,-0.03830134,-0.008514921,0.033237062,0.011241146,0.06607558,-0.02002265,-0.0058397707,0.023240432,-0.012062881,-0.030702,-0.0044126445,-0.011580774,-0.020311365,0.00406909,-0.0114810085,-0.034632493,0.024853162,-0.056226533,-0.053870734,0.0051030354,-0.048139825,-0.013608292,-0.009104129,-0.003040225,-0.0120412735,-0.019073404,-0.042686235,0.01330097,0.031246474,-0.0684973,0.0495975,0.03682679,0.011650217,-0.0637965,0.05058618,0.0021204157,0.029293068,0.006506541,-0.018178226,-0.022896137,0.022326518,-0.028761635,-0.07820727,0.010083378,0.031306416,0.04417529,-0.11500729,-0.00028276793,-0.03815475,-0.04882741,-0.010888374,-0.032740146,0.063105226,-0.017629655,-0.002099146,-0.031527046,-0.04337509,-0.03841199,0.0058813556,0.05002328,-0.045192197,0.011856079,0.06571031,0.015327158,0.02455045,0.026243651,0.009746871,-0.05233125,0.028999189,-0.006156721,0.039218962,0.005564657,0.05564382,0.0032417928,-0.03509953,-0.016134933,0.025476294,0.026718562,-0.024855206,-0.0053586382,0.025173413,-0.0071998783,-0.034652017,0.022871474,-0.051144265,0.012962511,-0.021032589,0.03657811,-0.055803824,0.014667741,-0.007312648,-0.06557,0.05131971,-0.020569503,-0.014169229,0.038815673,0.013326402,0.034966636,-0.031384397,0.061162997,-0.03775207,0.024028882,0.061008535,0.041473947,0.0107205035,-0.02026291,-0.009431286,0.012301856,0.021181738,-0.030330205,-0.02790436,0.032683402,0.01786955,-0.03755585,-0.05055892,0.023070237,0.008262449,0.042657387,0.03321407,0.045245796,-0.0065777735,-0.019014161,0.055456284,-0.0014442686,0.026022099,-0.034850925,0.03949408,0.014531639,-0.036000278,-0.063363485,0.023489924,-0.022134565,0.0034706818,0.009711861,0.020770535,-0.0005613589,0.018387584,0.006236053,-0.0035718698,-0.07762504,-0.008133929,0.005660904,0.020183275,0.02379127,-0.036972195,-0.007941336,-0.045612287,0.008897944,0.0072514266,0.010965865,-0.033203878,0.024491796,-0.019844025,-0.06630777,0.021735094,-0.011128087,-0.06331191,0.03935214,-0.029466117,0.028301092,0.026084661,-0.0016526572,-0.036476806,0.0014486822,0.024374738,0.025334865,0.03692394,-0.043029696,-0.028154014,0.0029768664,-0.09287093,-0.017454175,0.009855639,0.019077256,-0.04310418,-0.037036117,0.012869725,0.036711123,-0.008106912,-0.0040365844,-0.008363213,0.03982838,-0.011292602,0.002417416,0.06479667,-0.027726028,-0.04697457,0.030625913,-0.0005537506,0.04246268,0.030330963,0.01758944,0.0139152305,0.014191658,-0.022778567,0.019423148,0.008889777,-0.023329213,-0.030929638,-0.017928967,0.015440545,-0.013157443,-0.016938075,-0.0037925525,-0.05890506,-0.00005159907,0.018733552,-0.009360675,-0.0064654048,0.010177773,0.04734466,0.0038523893,-0.049855094,0.00975894,0.007214972,-0.029070843,0.02185566,-0.007928577,0.0039343853,0.021115469,-0.03197212,0.00020961843,-0.0029671846,0.0048403386,0.008880509,-0.059884835,-0.014120953,-0.035200376,0.0021784394,0.06051494,0.021769434,-0.013683179,-0.019793082,0.045172513,-0.008665317,-0.009332664,0.01227702,-0.006645707,0.06080728,-0.0064605074,-0.04365869,-0.031711746,0.05895162,-0.009798408,0.0028986533,-0.014621769,0.0057291156,-0.03627915,-0.04261461,-0.011988987,-0.024839643,-0.04681284,-0.017126866,-0.0066866344,-0.022137398,0.012019228,-0.005832386,0.016597213,0.044133276,-0.039511207,0.01733385,0.014599078,-0.004849192,-0.014147932,-0.016096113,0.020704914,0.051816188,-0.004779694,0.007973597,-0.012666969,-0.0030380546,-0.0021930605,0.03938891,-0.027545908,-0.018614817,0.003816033,-0.022475459,0.032139584,0.029614657,-0.02417059,0.0592697,-0.025867477,-0.033798836,-0.012384852,-0.032017156,-0.03273929,-0.028534418,0.008065883,-0.0073167854,-0.022466792,-0.012207347,0.08996024,0.014251041,-0.008336391,-0.04999683,-0.032195136,-0.055973712,-0.041959982,-0.00028641173,-0.011286304,-0.004271901,-0.037551783,0.029596126,0.022787428,-0.025099065,-0.020695733,0.06556994,-0.005194688,-0.009333696,-0.0475988,0.032310363,0.039593823,-0.050257172,0.0014361637,-0.0027798482,-0.007954417,0.0138989715,-0.044278357,-0.053732496,-0.041261103,-0.0027427943,0.045750692,-0.0070068906,0.037049886,-0.011616425,-0.021895263,-0.06666797,0.029727159,0.03277355,-0.0129826935,0.010365982,-0.014446961,-0.033016484,0.019766526,0.028858136,-0.0060980185,0.03157737,0.034022097,-0.0012181381,-0.06657178,0.022074675,0.05359564,-0.061806757,-0.05585259,0.0046430402,-0.007350882,-0.034504812,-0.033923004,0.019492755,-0.044600524,0.023467312,0.003902971,0.012916779,-0.026491994,0.033249646,0.0036566176,0.026799494,-0.010416223,0.024882821,0.043763753,-0.024103606,0.025297543,-0.024271952,0.014732345,0.008448243,0.008280664,-0.023159428,0.018530406,-0.0083184065,0.011342772,0.009009762,0.013827767,-0.01979687,-0.04274515,0.02221946,-0.015576707,-0.039211802,-0.032941096,-0.0032160424,-0.018194987,0.042560916,-0.06105208,-0.008019875,0.014259349,-0.011324337,-0.008386474,-0.01586246,-0.01810577,-0.023260947,-0.038109224,-0.055014268,-0.03853122,-0.019219723,0.045513447,-0.012696833,0.031284735,0.005315297,0.042836815,-0.04625079,0.0097075,0.013020441,0.08096891,-0.024579598,-0.07733204,-0.027004313,0.028830256,-0.03392674,-0.02317407,-0.018124713,0.009463375,-0.010618939,0.035536326,0.054800622,0.00013694703,-0.011350732,0.0005118998,0.013564887,0.007014601,0.0113017745,0.03244458,0.041758407,-0.041496906,-0.024130493,0.0009002195,-0.0017003961,-0.05940215,0.0034303507,-0.0044155093,-0.037811235,-0.0054666847,-0.040440578,-0.05140297,-0.02003714,0.001163509,-0.00979718,0.018655173,-0.0017250966,-0.015844433,-0.0057439245,0.029798048,-0.009715921,0.017472373,0.0037193536,0.028546961,-0.012129351,-0.002163387,0.025142644,-0.007258319,0.045704614,-0.025226478,0.0037922729,0.025802523,0.016844762,0.022201175,-0.008565625,-0.05766639,-0.006271629,0.028700834,0.015575048,0.01677126,0.010181027,-0.044980716,0.01860739,-0.0016944862,-0.0021077748,-0.0043360847,-0.0625003,-0.016621606,0.0319448,-0.0009619626,-0.02272248,-0.020979658,-0.048021097,-0.028264223,0.0160853,-0.028612211,0.01506805,0.023767337,0.009835438,0.037664138,-0.061967712,0.023128642,0.0008038773,0.059445664,-0.028474486,-0.03332729,0.020426208,0.012062176,-0.014642927,0.011487163,-0.010937088,0.015905261,-0.02492448,-0.026977787,-0.0021659355,0.016409982,-0.015224562,-0.006961943,-0.0092499815,0.06196117,0.00020914286,0.0010923089,0.025765415,-0.02390041,-0.010445779,0.029296955,0.03867809,-0.008158009,0.014679068,0.045958113,0.012401023,-0.021143796,-0.012331991,-0.024347235,0.031758055,0.038284093,0.008730002,-0.021657638,0.020967117,0.024111858,0.021851977,0.005374178,0.03611687,-0.031088538,-0.04586712,0.0033142024,-0.010155844,0.0048383432,-0.0029274279,-0.02910468,-0.009429746,-0.031826254,-0.036896836,-0.015083705,0.0008919407,0.038714718,0.011183588,-0.013628616,0.028240616,-0.014385112,-0.019928966,0.049490683,0.015686227,0.03473795,0.009249874,0.007396193,0.040696777,0.00066675333,0.0015119892,0.01201136,0.0006206058,0.016178552,0.037414853,-0.01297061,-0.06240662,-0.014628833,-0.0683364,0.045408275,-0.01219629,-0.01468444,-0.0038271635,-0.027095513,0.0150615005,-0.064280346,0.024374139,-0.013301622,-0.0061825044,0.026741955,-0.04432305,-0.0014707318,0.0000054049815,-0.0083051985,-0.0021430068,0.022989037,0.020024573,0.005098601,0.03992345,0.062528476,-0.031585004,-0.013333923,0.014054286,-0.014813204,-0.013284018,0.006166406,-0.036802534,0.017856332,0.0066239554,0.006187057,-0.00079635135,0.051563412,-0.017296998,-0.050022937,0.019012593,0.025708476,0.009603983,0.039059993,0.011593887,0.014720441,0.02024422,0.026612723,0.001372442,0.0050338074,0.054342773,-0.045725893,0.037350394,-0.02694826,-0.082322925,-0.0071359104,-0.034861293,0.008060169,-0.025150804,0.0010248745,-0.05340305,0.02536248,0.04259783,-0.028498584,0.032553084,-0.043389704,-0.018754251,0.04835212,0.01870753,-0.0047032116,0.07366708,0.018943949,-0.015837973,0.044718076,-0.034821678,0.06465785,0.016525146,-0.01968319,-0.03565497,0.033054754,-0.056905758,-0.027273651,0.056984335,0.054855343,0.019629072,-0.029381363,-0.05151326,-0.0026130069,-0.07212451,-0.0066349646,-0.0040691583,0.053520903,-0.0069905985,-0.008689017,0.023692874,-0.06704009,0.25263724,0.042545706,0.017698199,-0.0010657418,-0.019764598,0.002540125,-0.03161305,0.019036671,-0.0028345787,-0.03960426,0.031731255,-0.016867584,0.036465656,0.03786578,0.011072798,0.046823673,-0.023863997,-0.0030928673,-0.03969425,-0.048007395,-0.027792266,0.018580953,0.018214373,0.024665454,-0.007367209,0.023633312,0.04816032,-0.0163962,-0.0446861,0.014392234,0.03651806,-0.023840936,0.022138989,-0.024454217,-0.05100298,0.028370138,-0.0028863668,-0.030643787,0.020622885,-0.011117046,-0.032203503,0.02178951,-0.008798178,-0.00023883901,0.019192647,0.03794686,-0.03288915,0.018897578,-0.006449599,-0.046187982,0.042640723,0.016229622,0.03551705,-0.03383725,-0.04698416,-0.006479364,0.004361874,-0.00039055833,0.0034400027,0.04637415,-0.017258378,0.000849293,0.013157628,-0.010038757,-0.021033982,0.030826248,0.051127218,0.03304113,-0.0361183,-0.03173337,0.017256077,-0.015823292,-0.044495106,-0.005874156,-0.026990056,-0.009300226,-0.0217341,0.016680438,0.032621734,-0.0001019731,-0.007304592,0.0026399433,-0.0029986089,-0.009405886,-0.0013168994,0.040455166,0.002178481,-0.008621345,-0.020543365,0.037367653,0.0071238726,0.02817121,-0.018345684,-0.020040363,0.003032163],[0.017754983,-0.050270084,0.022222618,0.0040096664,-0.00015258946,-0.025756327,0.006651777,-0.017393291,0.019986242,0.04860767,0.013046636,-0.0116200205,-0.012393681,0.016167987,0.007119877,-0.025415873,-0.032313365,-0.008603731,-0.028524684,0.0017848414,0.005212317,0.017825207,-0.09386857,-0.019918432,-0.01811869,0.042594083,-0.022714414,0.00078872626,0.021818077,0.054811683,-0.022388501,0.02284719,0.062220886,-0.059613734,-0.028964305,-0.047400247,0.05380851,0.008793681,0.012134345,-0.044834405,0.004764324,-0.028459718,0.017901463,-0.032201935,-0.05316007,-0.025218844,-0.007798055,-0.01602884,0.014932502,-0.06962849,0.008262798,-0.048640788,0.014259858,-0.0013758036,0.03752301,-0.007031776,-0.0021169742,0.012106577,-0.041599717,0.03819876,0.022463992,0.028371286,0.009236614,-0.076854005,0.0044505475,0.01712667,-0.030626949,0.008755651,0.006212877,0.015306004,-0.032827217,0.025504865,-0.038574427,-0.020286137,-0.035912927,-0.015890803,0.03392487,0.0017975351,-0.047314912,0.034698628,-0.014967334,0.0045378883,0.013196648,0.022116954,-0.022668604,0.00719252,-0.02007391,0.08182516,-0.010554396,-0.00056293263,0.015331306,0.016107962,-0.020422958,-0.0029818532,0.045501597,0.03109522,0.015064334,-0.012053769,-0.060208984,0.0305674,0.055150725,0.01799167,-0.014074203,0.07121441,-0.058121067,0.008614118,0.029435212,0.006140797,-0.0017794673,-0.02587672,-0.0024315286,-0.0037615981,0.022844173,0.036175594,-0.006812714,0.044547632,-0.010438872,0.008977784,-0.023541657,-0.018255701,0.021272937,0.009049634,0.013839656,0.030656762,0.003989128,-0.053907342,0.0023987396,0.029997226,-0.056043472,0.03242298,0.0025504436,0.0019955414,0.012901715,0.0037532365,0.06645099,-0.0046294867,0.016535928,3.726988e-7,0.012704102,-0.019700438,0.0480234,0.025904883,0.0044792593,0.0729543,-0.017222427,0.04049826,0.00460465,0.035800077,-0.038404107,0.033072714,-0.035321254,-0.0034452192,0.036125865,0.029958002,-0.02622936,0.01443189,0.03714031,0.001695536,0.027045818,0.0258275,0.015601904,0.02085892,-0.01429003,0.00012449296,-0.043495934,0.023785513,-0.025988992,-0.016945997,-0.030491268,0.018535817,-0.0074531897,-0.0034712416,-0.03437296,-0.0006300469,0.010166661,0.046542738,0.024465868,-0.021341152,0.002297306,0.0032237733,0.0076063243,0.0010877002,-0.0033166124,0.054769266,0.006071345,0.021993699,-0.005438734,-0.000576917,-0.016247189,-0.040866714,-0.0084048575,0.049493134,-0.040353794,-0.0066590263,0.042688556,-0.014255042,-0.043844704,-0.05107637,-0.015140782,-0.061980296,-0.003933251,0.036235128,-0.0021328945,0.067493,0.0014573688,-0.025559543,0.0009294732,0.023866389,-0.013420465,0.016352491,0.017080307,0.047783814,-0.020063803,-0.011303644,0.05284394,-0.015801994,-0.038165506,0.014001419,-0.052712727,0.02158103,0.033232443,0.022142284,0.044709254,0.0019956874,-0.010912236,0.012672791,-0.017895887,0.046531998,-0.01741437,0.00013227615,0.0072618383,0.03336435,-0.020114992,0.03401612,0.010498456,-0.014650738,0.021456882,0.029066693,0.023994422,0.0070439368,-0.0055506662,0.0077590756,0.031818997,0.017637653,-0.001516167,0.057635237,0.0058512487,-0.014991422,0.014797697,0.016099103,-0.016071577,0.010837674,0.026873715,0.009122119,-0.023145508,0.0042119804,0.03734961,0.03328419,-0.057329815,-0.01863528,-0.048887305,0.041039668,0.015690396,0.04472783,0.030873343,-0.0033203019,-0.0054775807,0.021951243,0.0072649596,-0.027005577,-0.012101375,-0.013715243,-0.033312466,0.0058155493,-0.06018353,0.04633863,-0.014318616,-0.03253907,0.018120455,0.03805184,-0.003385802,-0.045925487,0.011829812,0.030926371,0.0036990987,0.0679222,-0.0047142548,0.009133759,0.020205101,0.0047252853,-0.019006036,-0.016372906,-0.0007767639,-0.031931806,-0.0107290195,0.00535773,-0.036494628,-0.011163659,-0.045784097,-0.06325679,-0.0045118267,-0.040048905,-0.02008706,0.0020562531,-0.0010429058,-0.014207308,-0.014148793,-0.02602848,0.031042987,0.023621988,-0.068107545,0.0148918945,0.009061296,0.036556248,-0.0334575,0.04307959,0.008861153,0.017606089,-0.026000598,-0.03555827,-0.009728472,0.019653011,-0.043520957,-0.053489722,-0.012137241,0.035105113,0.024857283,-0.109906144,0.0033989437,-0.026143314,-0.05674611,-0.007848711,-0.046654224,0.036129564,0.0026301625,0.0010845688,-0.04299936,-0.047321703,-0.0052399836,-0.00888745,0.06525645,-0.06369033,0.013298318,0.062464375,-0.0018316816,-0.0044982075,0.04159552,0.024418512,-0.033226516,0.021355849,-0.00365764,0.0064776083,0.0110131,0.047588762,-0.010560889,-0.006050425,-0.0286267,0.01800104,0.03957722,-0.008920092,0.012600997,0.01934184,0.01668978,-0.050241902,0.0040426366,-0.050592206,0.022280656,0.02431733,0.03573108,-0.07329338,0.0275676,0.0048265043,-0.067549326,0.043268107,0.0054986244,-0.010594143,0.05118474,0.010305947,0.027550563,-0.040139705,0.040082563,-0.05253896,0.013584075,0.05078276,0.0433292,0.009787946,-0.022315374,-0.012254457,0.010126063,0.014577803,-0.041749626,-0.03648825,0.0131030595,0.007281581,-0.0015893624,-0.058683496,0.04131709,0.00016844284,0.053217288,0.03803938,0.022285793,0.0040022237,0.003342883,0.04489108,0.0035361059,0.021214172,-0.041881092,0.038772363,-0.000888471,-0.026868952,-0.049146898,-0.00067307,-0.005149417,0.0020671664,0.014478483,0.018969575,-0.01055444,-0.01580599,0.022731414,0.010562501,-0.07352911,-0.011512525,0.0011323527,0.031526834,-0.0038565625,-0.03524009,-0.0081062205,-0.032475136,0.00055786996,0.004177909,-0.00945818,-0.030902436,0.030235983,-0.021368304,-0.0434719,0.010561014,0.005207426,-0.04959711,0.02794885,-0.01509002,0.02047967,0.031753052,0.01114484,-0.038854882,-0.034514524,0.021204162,0.030789219,0.037370194,-0.024244918,-0.02550591,-0.014003222,-0.07656127,-0.029455287,-0.0053754207,0.00057531573,-0.02029745,-0.025289131,0.02626594,0.040289033,0.007550119,0.008729682,-0.011221037,0.044275373,0.0096533485,-0.017255412,0.053823162,-0.021446833,-0.023571808,0.041615237,0.009219985,0.049555574,0.03104371,0.022673666,0.009145407,0.0065217526,-0.04141799,0.00028029707,-0.0014595272,-0.012999953,-0.035585813,-0.026553372,-0.000055886805,-0.03802205,0.0005880035,-0.013071311,-0.058286928,-0.0027767855,0.029384362,-0.021815682,-0.012813369,-0.00253406,0.03598286,0.0011233286,-0.06166192,0.014539257,-0.0063140076,-0.018129112,-0.014021382,-0.0009995666,-0.0036759735,0.041793898,-0.027091641,-0.0063178637,-0.0024724118,0.014869408,0.008448338,-0.049266886,-0.03497146,0.008295121,-0.006852065,0.043048844,0.021889875,0.0013449407,0.0005568794,0.055297572,-0.0018342569,-0.023681872,0.032311805,-0.03874046,0.029022403,0.0054710093,-0.05027241,-0.0004255878,0.028515534,0.012435078,0.03350381,-0.006478037,0.009706644,-0.04180803,-0.036910184,-0.0144282635,-0.03773305,-0.04713921,-0.020342832,-0.05215388,-0.009837405,0.007834298,-0.010574203,-0.001557035,0.03371424,-0.03979406,0.0050255,0.018809328,-0.028010136,-0.006308153,-0.042607322,0.007126952,0.03645054,0.0043498413,0.021528227,-0.014823764,-0.0153973205,-0.013738023,0.017801663,-0.028961599,-0.041060403,0.005272663,-0.028875187,0.026885713,0.047308274,-0.022357117,0.056806497,-0.037562825,-0.031655777,-0.032926343,-0.021583788,-0.04907223,-0.02118331,-0.005600608,-0.038223688,-0.023025725,-0.013531237,0.06367486,0.041052256,0.006137216,-0.048901573,0.0021002626,-0.057983115,-0.0066761686,0.007513869,-0.021780834,0.012821711,-0.040584188,0.004397595,0.027750878,-0.034169987,0.0031026178,0.078944735,-0.0038427052,-0.030353827,-0.0483079,0.013744804,0.032613263,-0.04515382,0.0028817,-0.026219843,-0.014281445,0.0134431375,-0.05737998,-0.06718131,-0.045383293,0.010742181,0.04634677,0.0073691225,0.056290865,-0.008580703,-0.008246055,-0.064583294,0.032393496,0.039478827,-0.004924186,0.023169683,-0.008292488,-0.031129215,0.017594162,0.0404367,0.0012088569,0.015357573,0.028999306,-0.0021886674,-0.06389773,0.02751249,0.05040126,-0.033160523,-0.04480432,0.025184598,0.0095012635,-0.03778598,-0.021312501,0.03702129,-0.043414917,-0.014806341,0.00468022,0.006597001,0.012656229,0.038243726,0.009898467,-0.0055954177,-0.009605192,0.0115206195,0.056859076,-0.027617307,0.0043128743,-0.052744165,0.030350313,0.010264037,0.010911625,-0.02321277,0.0007625831,-0.014058581,0.011823438,0.006526671,0.04366839,-0.026279654,-0.038912017,0.047412407,-0.0137080485,-0.02124759,-0.018267384,0.0044544465,-0.03165314,0.048675917,-0.02984684,-0.031837415,0.024121024,-0.028254231,0.028592926,-0.021270676,-0.019654898,-0.029581469,-0.0295507,-0.041634962,-0.02729636,-0.025597963,0.043497127,0.015447539,0.012089561,0.00853023,0.054581113,-0.06935726,0.016545037,0.011306051,0.0661906,-0.023464125,-0.07332844,-0.03380349,0.023399577,-0.03276284,-0.028135562,0.019928126,0.015774079,-0.021536635,0.05502907,0.043451272,0.0076790717,-0.015079614,-0.011710295,0.04175611,0.021131273,-0.0116544515,0.04076517,0.03599835,-0.026168585,-0.03953549,0.017217353,-0.021944461,-0.04756451,-0.0003591957,-0.015074857,-0.013561975,-0.0368458,-0.031422034,-0.04478386,-0.031628583,0.0122974785,0.0036174788,0.0029434715,-0.0097011225,-0.024699895,0.00020524801,0.012441911,-0.016137684,0.009507858,-0.028171819,0.056968097,-0.0051865256,0.0024894513,0.031887617,-0.004258109,0.049771022,-0.0009601575,0.0054575484,0.0543905,0.0033828455,0.015079498,-0.0021302076,-0.069199696,-0.015023294,0.016358415,0.017764464,0.008290753,0.01418427,-0.038909156,0.0065113916,-0.020040398,0.004542129,-0.008264263,-0.09663847,-0.025633337,0.018501235,0.011258259,0.012258928,0.013369244,-0.06449183,-0.01134832,0.0071191173,-0.018279636,0.027875016,0.027338728,-0.012562739,0.034922596,-0.050950177,0.0129876025,-0.013605941,0.019619497,-0.0052430746,-0.05912717,0.027454048,-0.00080017274,-0.011957733,0.002965849,-0.026575936,0.048005782,-0.027841402,-0.029080385,0.0067426795,0.020578321,-0.003943632,0.010393556,-0.0045183,0.040960338,-0.010144013,0.025886236,0.035529073,0.005419255,-0.019168608,0.020358909,0.04201373,0.011269529,0.007826552,0.035116278,0.02158557,-0.0026106657,-0.033979714,-0.0022701654,0.020376444,0.033761133,0.0074580205,-0.02733364,0.0133772055,0.016587565,0.00628452,0.0057063648,0.020177443,-0.009900427,-0.014442367,-0.015557755,-0.011964708,-0.005796392,-0.006380445,-0.036666602,-0.00955904,-0.049423944,-0.023147106,0.003653478,-0.014925773,0.011293177,0.0078005716,0.0015822412,0.011085262,-0.011556915,-0.0077637746,0.042876147,0.02240382,0.0201003,0.008843033,0.015143099,0.027089408,0.008607856,0.014833628,0.017248707,-0.000023734865,-0.018282028,0.0265812,0.011015123,-0.05850115,-0.024326678,-0.047517654,0.05315656,-0.026273442,-0.01521044,-0.0039720456,-0.0361478,-0.0017735554,-0.06925107,0.027928399,-0.014510827,-0.0058398717,0.037386823,-0.027511297,0.0006615432,0.007654689,0.015350574,0.030325368,-0.0023043838,0.032902587,-0.012022863,0.044526123,0.065744445,-0.0043598916,-0.011763383,0.015895003,0.0013963596,-0.019225242,0.013770416,-0.027886445,0.008975492,0.010435742,-0.024647512,0.016327167,0.033445887,-0.0052468805,-0.047230832,0.015924545,0.04514371,-0.0001504793,0.022096237,-0.0012297574,-0.011001662,0.018778283,0.020480288,0.0051351124,-0.013007909,0.058097985,-0.032766543,0.047103748,-0.023725512,-0.05378409,0.010222525,-0.043624565,-0.019757466,-0.03624779,-0.028485652,-0.046037048,0.018937329,0.04793098,0.011158874,0.013784001,-0.0324464,-0.014204885,0.059513733,0.015351693,-0.007852461,0.068046466,0.02031604,-0.03646061,0.038095236,-0.04850336,0.05128834,0.006789615,-0.032515004,-0.031405874,0.051057167,-0.047519576,-0.027076527,0.049274717,0.032802105,0.007430306,-0.031302467,-0.07945516,-0.00227309,-0.044384424,-0.03601154,-0.028436806,0.055339728,0.00399086,-0.0042676385,0.030458912,-0.077675104,0.25441948,0.03963996,0.024145886,-0.0143762445,0.0017373643,0.0077423253,-0.0028936511,-0.014178953,-0.009805162,-0.0022539026,0.025339767,0.020252934,0.041103978,0.043369368,0.026164815,0.071790956,-0.03780859,-0.012074482,-0.03729567,-0.02886219,-0.03279268,0.024047032,0.0034361565,0.0044353222,-0.009533905,0.0041609704,0.04018733,-0.021364398,-0.03116022,-0.008548612,0.037697796,-0.030157492,0.008562984,-0.01937921,-0.03603905,0.04368416,0.01682389,-0.02397289,0.015442389,0.006652287,-0.058527622,0.054211136,-0.016935628,-0.011459703,0.020523563,0.03225644,-0.0342887,0.032151256,0.0033603038,-0.057468504,0.06764031,0.011298578,0.036629483,-0.033929907,-0.043275066,-0.003318383,0.020119822,-0.021666264,0.029505992,0.022186792,-0.025635147,-0.02028622,-0.021871231,-0.013097239,-0.012617848,0.04653348,0.07669693,0.037266947,-0.035136078,-0.015265883,0.0087734675,-0.035444837,-0.03578674,-0.01963975,-0.024288228,-0.0049768435,0.0072140237,0.0060422774,0.020339644,-0.036526673,-0.039069865,-0.009965499,0.024232402,0.0024307652,-0.010641754,0.041938443,0.0044550137,0.006766545,-0.048335176,0.04061166,0.0071467226,0.05698809,0.001878739,-0.02490192,0.0003535853],[0.028198462,-0.012422107,0.01175017,0.027509583,0.011310877,0.0013336946,0.019797556,-0.013333804,0.027461309,0.041765384,0.013609993,-0.018491011,-0.011243222,0.006394501,-0.016511085,-0.0017803493,-0.004855725,-0.00077365595,-0.061475627,0.0032444678,-0.001934826,0.020872362,-0.079839125,-0.010305464,-0.031915843,0.054381944,-0.042051505,0.0033964384,0.07163229,0.04360802,-0.031621784,0.01069654,0.08101426,-0.038271125,-0.030723592,-0.05887468,0.030572096,-0.011545057,-0.0008242587,-0.031513505,-0.015299652,-0.013229379,0.034649983,-0.03509679,-0.027345289,-0.033205967,-0.014799713,-0.039361376,0.004212664,-0.057476334,0.030601237,0.0018710712,0.014181772,-0.0034344753,0.06462678,0.0023907428,-0.025484756,-0.0031738963,-0.023669677,0.02627875,0.021818966,0.044220798,0.020251125,-0.07492932,-0.018189877,0.009133644,-0.02817433,0.009594766,0.027376644,-0.010734038,-0.01151606,0.02897364,-0.018664762,-0.031194568,-0.02087549,0.009047508,0.02486894,0.007299518,-0.04371782,0.027608275,-0.028752701,-0.020064859,0.026432937,0.015287397,-0.035314128,-0.004992164,0.00048574785,0.0604462,0.00009783802,0.000060663675,0.03156469,0.015106996,-0.028162545,0.007076612,0.059173472,0.034079872,-0.0032474243,-0.030006703,-0.05071992,0.014647823,0.02162568,-0.01752626,-0.036566257,0.052459925,-0.0821322,-0.0011514445,0.0057934388,0.011245529,0.030364266,-0.022022543,0.00874609,0.022568488,0.012424427,0.017035356,0.008566384,0.02467609,-0.020862427,0.025379293,-0.037400935,-0.027649857,0.0018453217,0.010305641,-0.00021290495,-0.0052382415,0.02309676,-0.026761679,-0.013161789,0.054848526,-0.036975823,-0.008972983,0.017602636,0.005925375,0.005232397,0.024809804,0.06133958,-0.0060703317,0.0270022,-0.0038862291,0.0021024153,-0.02011668,0.03000726,0.0050445893,-0.015857045,0.07517058,-0.017056141,0.051772814,0.02459382,0.040010463,-0.065440014,0.049823508,-0.057582777,-0.002418127,0.018477576,0.044104174,-0.029863408,-0.000010158266,0.041420296,0.008746018,0.0056361896,-0.011437639,-0.013349275,0.045130305,0.0033628102,-0.0011645467,-0.055280257,0.032808255,-0.04005237,-0.0152758295,-0.0067872577,-0.000441048,0.009696045,0.014475051,-0.027760254,-0.0022695167,-0.014024929,0.054113805,0.0057822014,0.010546679,0.010136772,0.0019645116,0.009668788,-0.02634631,-0.013230106,0.030766012,-0.0058701215,-0.01683955,-0.0017297441,0.020555377,-0.025382161,-0.03973833,-0.021824857,0.045064624,-0.03256713,-0.0007373649,0.019966858,-0.038037032,-0.026633833,-0.02925293,-0.020008996,-0.05394672,-0.005887903,0.03271645,-0.018089198,0.06608745,0.0104000745,-0.0043617534,0.012523755,0.055174183,-0.032862786,0.0028474452,0.023192741,0.029590845,-0.039615422,-0.010501622,0.04099023,-0.011834321,-0.04769822,0.020220734,-0.04997205,0.0043516755,0.02063145,0.036400672,0.029953381,0.0013971704,-0.013708728,0.027739922,0.01676848,0.0506487,-0.033543278,-0.0025031865,-0.0031821495,0.02421092,-0.030128976,0.013639142,0.01838566,-0.013262259,0.006558048,0.027792191,0.03472971,0.027787272,-0.009212443,0.00759054,0.010046619,0.030694757,0.032991935,0.05276189,0.0011310395,-0.007385338,0.0022842984,-0.0036878719,0.01339183,0.002321886,0.02052501,0.041178487,-0.03557488,0.02743385,0.019207742,0.049085062,-0.038667224,-0.020512752,-0.03765465,0.05071532,0.0071665267,0.028580613,0.038991652,-0.0072607542,0.019881241,0.025513826,-0.005490369,-0.017824173,-0.010175118,-0.024955135,-0.031002682,-0.029467005,-0.04675849,0.0448739,0.00505263,-0.024824262,0.025462724,0.030459438,-0.014650275,-0.024887884,0.016086642,0.0353755,0.00072981673,0.055447523,-0.020211551,-0.0008283237,0.013612981,0.020104324,-0.045329183,-0.020625047,-0.026136465,-0.026133452,0.017155929,-0.00029951739,-0.044981193,0.02526155,-0.040466122,-0.04865251,-0.003472538,-0.06258476,-0.011066329,-0.000494266,0.0040050265,-0.00615671,-0.013645653,-0.045662683,0.019697355,0.029972343,-0.06465952,0.047140993,0.0017093009,0.014478099,-0.071686246,0.03333693,0.029230358,0.042323396,-0.024027506,-0.007916644,-0.025353355,0.010279396,-0.028664164,-0.05983168,0.019436141,0.015949795,0.036705084,-0.09087136,-0.0051144324,0.00082338514,-0.058558263,-0.0033998592,-0.019621225,0.02905841,0.006781908,0.019451853,-0.01266517,-0.04197558,-0.022058457,0.004038469,0.026948018,-0.048611205,0.016517358,0.058842167,0.010813742,0.008847744,0.006106038,0.017609071,-0.054055475,0.009067823,0.008214788,0.035319027,-0.00072780304,0.04800899,-0.0010383455,-0.0117908465,-0.02273322,0.0062869806,0.030281283,-0.009225322,0.022511164,0.029414413,-0.010579195,-0.04923959,0.011317798,-0.058694124,0.04119556,-0.025670113,0.017801959,-0.06622106,0.0328532,-0.011580361,-0.05204518,0.035778776,0.00193