Source code for gen3.file

-import json
+import base64
+from dataclasses import dataclass, field
+
+import json
+from typing import List, Optional
+import numpy
 import requests
 import json
 import asyncio
 import aiohttp
 import aiofiles
 import time
-from tqdm import tqdm
+from tqdm.auto import tqdm
 from types import SimpleNamespace as Namespace
 import os
 import requests
@@ -53,7 +58,20 @@ 

Source code for gen3.file

 logging = get_logger("__name__")
 
 
+@dataclass
+class EmbeddingContent:
+    guid: str
+    embedding_id: str
+    embedding: numpy.ndarray
+    authz: list[str]
+    collection_id: int | None
+    self: str
+    metadata: dict[str, str] = field(default_factory=dict)
+
+
 MAX_RETRIES = 3
+DEFAULT_BATCH_SIZE = 500
+SUPPORTED_CONTENT_TYPES = ["gen3_embeddings"]
 
 
 
@@ -110,6 +128,217 @@

Source code for gen3.file

             return resp.text
+
+[docs] + def get_bulk_content( + self, + input_file=None, + guids=None, + batch_size=DEFAULT_BATCH_SIZE, + content_type=SUPPORTED_CONTENT_TYPES[0], + ) -> dict[str, EmbeddingContent]: + """ + Retrieve bulk content for a set of GUIDs + + Args: + input_file (str | None): Path to a file that contains one GUID per line. + guids (tuple[str, ...]): One or more GUIDs supplied + batch_size (int): How many GUIDs to send in each request to `/data/content`. + content_type (str): type of content of GUIDs, this determines how to parse. + """ + if content_type not in SUPPORTED_CONTENT_TYPES: + raise ValueError( + f"Error: unsupported `content_type={content_type}`, not in supported: {SUPPORTED_CONTENT_TYPES}" + ) + + final_batch_size = min(batch_size, DEFAULT_BATCH_SIZE) + if final_batch_size != batch_size: + logging.warning( + f"Requested batch_size={batch_size} too large, using default: {DEFAULT_BATCH_SIZE}" + ) + + if input_file and guids: + raise ValueError("Error: provide either input_file or guids, not both.") + + all_guids: List[str] = [] + + if input_file: + with open(input_file) as f: + for line in f: + guid = line.strip() + if guid: + all_guids.append(guid) + elif guids: + all_guids.extend(guids) + else: + raise ValueError("Error: provide either input_file or guids") + + if not all_guids: + logging.error("No valid GUIDs found in the supplied input.") + return {} + + embeddings = {} + + for start in range(0, len(all_guids), batch_size): + batch = all_guids[start : start + batch_size] + try: + batch_response = self.get_content(batch) + except Exception as exc: + logging.error(f"API error on batch starting at {batch[0]}: {exc}") + continue + + if isinstance(batch_response, str): + logging.warning( + f"Warning: received raw text response for batch starting with {batch[0]}. Skipping." + ) + continue + + if content_type == "gen3_embeddings": + embeddings_from_batch = self.get_embeddings_from_bulk_content( + batch_response + ) + embeddings.update(embeddings_from_batch) + + logging.debug(f"Successfully retrieved {len(embeddings)} records!") + return embeddings
+ + +
+[docs] + def get_content(self, guids: list) -> dict: + """ + Bulk retrieve content for a list of GUIDs. + + The Gen3 API provides the `/data/content` endpoint which accepts a JSON body with + an array of GUID strings. This helper wraps that call and returns the parsed + response. + + Args: + guids (list): A list or tuple of GUIDs for which to fetch content. + + Returns: + dict | str: If the request succeeds and the body can be decoded as JSON, a mapping + from each provided GUID to its associated content is returned + + Raises: + requests.HTTPError: If the HTTP status code indicates an error + """ + api_url = f"{self._endpoint}/user/data/content" + body = {"guids": guids} + headers = {"Content-Type": "application/json"} + + resp = requests.post( + api_url, auth=self._auth_provider, json=body, headers=headers + ) + raise_for_status_and_print_error(resp) + + return resp.json()
+ + +
+[docs] + def get_embeddings_from_bulk_content( + self, batch_response: dict + ) -> dict[str, EmbeddingContent]: + """ + Get a dict of parsed embeddings from a batch_resonse of GUIDs + which are all embeddings. + """ + embeddings = {} + for guid, data in batch_response.get("guids", {}).items(): + embeddings[guid] = self.get_embeddings_from_bulk_content_guid(guid, data) + return embeddings
+ + +
+[docs] + def get_embeddings_from_bulk_content_guid( + self, guid: str, bulk_content_guid_data: dict + ) -> EmbeddingContent: + """ + Return an EmbeddingContent by parsing the response data for a particular GUID in a Bulk Content + response which corresponds to a Gen3 EmbeddingContent. + + Note: this handles base64 decoding if the API call used that. and note that the resulting + vector is a numpy array + + Args: + guid (str): globally unique identifier for the blob of data provided + bulk_content_guid_data (dict): data from Bulk Content response.get("guids", {}).get(guid) + e.g. the data for the guid specified + + Returns: + EmbeddingContent - a dataclass representation of the embedding + """ + if not isinstance(bulk_content_guid_data, dict): + logging.info(f"Warning: did not find {guid} in output, adding empty row...") + return EmbeddingContent( + guid=guid, + embedding_id="", + embedding=numpy.array([]), + authz="", + collection_id=None, + self="", + metadata={}, + ) + + embedding_id = bulk_content_guid_data.get( + "embedding_id", "" + ) or bulk_content_guid_data.get("id", "") + raw_vector = ( + bulk_content_guid_data.get("vector") + or bulk_content_guid_data.get("embedding") + or [] + ) + + embedding_vector = None + + # handle vector if base64 version of API used + if not raw_vector and "vector_base64" in bulk_content_guid_data: + if "precision" not in bulk_content_guid_data: + raise Exception( + f"`vector_base64` found but no `precision` specified. Unable to parse." + ) + + vector_data_type = ( + numpy.float16 + if bulk_content_guid_data["precision"] == "float16" + else numpy.float32 + ) + + # endpoint may be using binary representation + vector_base64_str = bulk_content_guid_data["vector_base64"] + + # re-pad the string to a multiple of 4 (handles any missing '=' signs) + padding_needed = -len(vector_base64_str) % 4 + padded_b64 = vector_base64_str + ("=" * padding_needed) + decoded_bytes = base64.urlsafe_b64decode(padded_b64) + + embedding_vector = numpy.frombuffer(decoded_bytes, dtype=vector_data_type) + + if embedding_vector is None: + embedding_vector = numpy.array(raw_vector) + + authz_val = bulk_content_guid_data.get("info", {}).get("authz", "") + collection_id_val = bulk_content_guid_data.get("info", {}).get( + "collection_id", "" + ) + + url_or_self = bulk_content_guid_data.get("info", {}).get("self") + + metadata = bulk_content_guid_data.get("info", {}).get("metadata") + + return EmbeddingContent( + guid=guid, + embedding_id=embedding_id, + embedding=embedding_vector, + authz=authz_val, + collection_id=collection_id_val, + self=url_or_self, + metadata=metadata, + )
+ +
[docs] def delete_file(self, guid): diff --git a/docs/_build/html/_modules/gen3/jobs.html b/docs/_build/html/_modules/gen3/jobs.html index 850554d3d..8f19585f6 100644 --- a/docs/_build/html/_modules/gen3/jobs.html +++ b/docs/_build/html/_modules/gen3/jobs.html @@ -34,6 +34,7 @@

Source code for gen3.jobs

 """
 Contains class for interacting with Gen3's Job Dispatching Service(s).
 """
+
 import aiohttp
 import asyncio
 import backoff
diff --git a/docs/_build/html/_modules/gen3/metadata.html b/docs/_build/html/_modules/gen3/metadata.html
index c5a2cff9c..728c336ee 100644
--- a/docs/_build/html/_modules/gen3/metadata.html
+++ b/docs/_build/html/_modules/gen3/metadata.html
@@ -34,6 +34,7 @@ 

Source code for gen3.metadata

 """
 Contains class for interacting with Gen3's Metadata Service.
 """
+
 import aiohttp
 import backoff
 from datetime import datetime
diff --git a/docs/_build/html/_modules/gen3/tools/download/drs_download.html b/docs/_build/html/_modules/gen3/tools/download/drs_download.html
index 27f9b7d36..bfc0b07af 100644
--- a/docs/_build/html/_modules/gen3/tools/download/drs_download.html
+++ b/docs/_build/html/_modules/gen3/tools/download/drs_download.html
@@ -50,7 +50,6 @@ 

Source code for gen3.tools.download.drs_download

""" - import re import os from dataclasses import dataclass, field @@ -66,7 +65,7 @@

Source code for gen3.tools.download.drs_download

from cdislogging import get_logger from dataclasses_json import dataclass_json, LetterCase, Undefined from dateutil import parser as date_parser -from tqdm import tqdm +from tqdm.auto import tqdm from urllib.parse import urlparse from gen3.auth import Gen3Auth, Gen3AuthError, decode_token @@ -147,7 +146,7 @@

Source code for gen3.tools.download.drs_download

@staticmethod def load(filename: Path) -> Optional[List["Downloadable"]]: """ - Method to load a json manifest and return a list of Bownloadable object. + Method to load a json manifest and return a list of Downloadable object. This list is passed to the DownloadManager methods of download, and list Args: @@ -929,9 +928,9 @@

Source code for gen3.tools.download.drs_download

resolve_objects_drs_hostname( object_list, self.resolved_compact_drs, - mds_url=f"http://{self.hostname}/mds/aggregate/info" - if self.hostname - else None, + mds_url=( + f"http://{self.hostname}/mds/aggregate/info" if self.hostname else None + ), commons_url=self.commons_url, ) progress_bar = ( diff --git a/docs/_build/html/_modules/gen3/tools/indexing/download_manifest.html b/docs/_build/html/_modules/gen3/tools/indexing/download_manifest.html index 296f84d61..6cbdb2aee 100644 --- a/docs/_build/html/_modules/gen3/tools/indexing/download_manifest.html +++ b/docs/_build/html/_modules/gen3/tools/indexing/download_manifest.html @@ -53,6 +53,7 @@

Source code for gen3.tools.indexing.download_manifest

To workaround this, we have each process write to a file and concat them all post-processing. """ + import asyncio import aiofiles import click diff --git a/docs/_build/html/_modules/gen3/tools/indexing/index_manifest.html b/docs/_build/html/_modules/gen3/tools/indexing/index_manifest.html index 9a6cab6f0..4e5874f42 100644 --- a/docs/_build/html/_modules/gen3/tools/indexing/index_manifest.html +++ b/docs/_build/html/_modules/gen3/tools/indexing/index_manifest.html @@ -63,6 +63,7 @@

Source code for gen3.tools.indexing.index_manifest

python index_manifest.py --commons_url https://giangb.planx-pla.net --manifest_file path_to_manifest --auth "admin,admin" --replace_urls False --thread_num 10 python index_manifest.py --commons_url https://giangb.planx-pla.net --manifest_file path_to_manifest --api_key ./credentials.json --replace_urls False --thread_num 10 """ + import os import csv import click @@ -87,7 +88,7 @@

Source code for gen3.tools.indexing.index_manifest

PREV_GUID_STANDARD_KEY, ) from gen3.utils import ( - _standardize_str, + standardize_str, get_urls, ) from gen3.tools.utils import get_and_verify_fileinfos_from_manifest @@ -95,7 +96,6 @@

Source code for gen3.tools.indexing.index_manifest

from indexclient.client import Document from cdislogging import get_logger - CURRENT_DIR = os.path.dirname(os.path.realpath(__file__)) logging = get_logger("__name__") @@ -187,7 +187,7 @@

Source code for gen3.tools.indexing.index_manifest

authz = ( [ element.strip().replace("'", "").replace('"', "").replace("%20", " ") - for element in _standardize_str(fi[AUTHZ_STANDARD_KEY]) + for element in standardize_str(fi[AUTHZ_STANDARD_KEY]) .strip() .lstrip("[") .rstrip("]") @@ -209,7 +209,7 @@

Source code for gen3.tools.indexing.index_manifest

.replace("'", "") .replace('"', "") .replace("%20", " ") - for element in _standardize_str(fi[ACL_STANDARD_KEY]) + for element in standardize_str(fi[ACL_STANDARD_KEY]) .strip() .lstrip("[") .rstrip("]") @@ -224,7 +224,7 @@

Source code for gen3.tools.indexing.index_manifest

acl = [] if FILENAME_STANDARD_KEY in fi: - file_name = _standardize_str(fi[FILENAME_STANDARD_KEY]) + file_name = standardize_str(fi[FILENAME_STANDARD_KEY]) else: file_name = "" diff --git a/docs/_build/html/_modules/gen3/tools/indexing/verify_manifest.html b/docs/_build/html/_modules/gen3/tools/indexing/verify_manifest.html index fcb339ac1..3e5ec1139 100644 --- a/docs/_build/html/_modules/gen3/tools/indexing/verify_manifest.html +++ b/docs/_build/html/_modules/gen3/tools/indexing/verify_manifest.html @@ -72,6 +72,7 @@

Source code for gen3.tools.indexing.verify_manifest

MAX_CONCURRENT_REQUESTS (int): maximum number of desired concurrent requests across processes/threads """ + import aiohttp import asyncio import csv @@ -81,7 +82,8 @@

Source code for gen3.tools.indexing.verify_manifest

import time from gen3.index import Gen3Index -from gen3.utils import get_or_create_event_loop_for_thread +from gen3.tools.utils import AUTHZ_STANDARD_KEY +from gen3.utils import get_or_create_event_loop_for_thread, standardize_str MAX_CONCURRENT_REQUESTS = 24 CURRENT_DIR = os.path.dirname(os.path.realpath(__file__)) @@ -169,7 +171,21 @@

Source code for gen3.tools.indexing.verify_manifest

Returns: List[str]: authz resources for the indexd record """ - return [item for item in row.get("authz", "").strip().split(" ") if item] + authz = ( + [ + element.strip().replace("'", "").replace('"', "").replace("%20", " ") + for element in standardize_str(row[AUTHZ_STANDARD_KEY]) + .strip() + .lstrip("[") + .rstrip("]") + .split(" ") + ] + if AUTHZ_STANDARD_KEY in row + and row[AUTHZ_STANDARD_KEY] != "[]" + and row[AUTHZ_STANDARD_KEY] + else [] + ) + return authz def _get_urls_from_row(row): diff --git a/docs/_build/html/_modules/gen3/tools/metadata/ingest_manifest.html b/docs/_build/html/_modules/gen3/tools/metadata/ingest_manifest.html index 30d22538a..030bd18e3 100644 --- a/docs/_build/html/_modules/gen3/tools/metadata/ingest_manifest.html +++ b/docs/_build/html/_modules/gen3/tools/metadata/ingest_manifest.html @@ -52,6 +52,7 @@

Source code for gen3.tools.metadata.ingest_manifest

MAX_CONCURRENT_REQUESTS (int): Maximum concurrent requests to mds for ingestion """ + import aiohttp import asyncio import csv diff --git a/docs/_build/html/file.html b/docs/_build/html/file.html index cb970d072..f7f515f54 100644 --- a/docs/_build/html/file.html +++ b/docs/_build/html/file.html @@ -103,6 +103,79 @@

Gen3 File Class +
+get_bulk_content(input_file=None, guids=None, batch_size=500, content_type='gen3_embeddings') dict[str, EmbeddingContent][source]
+

Retrieve bulk content for a set of GUIDs

+
+
Parameters:
+
    +
  • input_file (str | None) – Path to a file that contains one GUID per line.

  • +
  • guids (tuple[str, ...]) – One or more GUIDs supplied

  • +
  • batch_size (int) – How many GUIDs to send in each request to /data/content.

  • +
  • content_type (str) – type of content of GUIDs, this determines how to parse.

  • +
+
+
+
+ +
+
+get_content(guids: list) dict[source]
+

Bulk retrieve content for a list of GUIDs.

+

The Gen3 API provides the /data/content endpoint which accepts a JSON body with +an array of GUID strings. This helper wraps that call and returns the parsed +response.

+
+
Parameters:
+

guids (list) – A list or tuple of GUIDs for which to fetch content.

+
+
Returns:
+

+
If the request succeeds and the body can be decoded as JSON, a mapping

from each provided GUID to its associated content is returned

+
+
+

+
+
Return type:
+

dict | str

+
+
Raises:
+

requests.HTTPError – If the HTTP status code indicates an error

+
+
+
+ +
+
+get_embeddings_from_bulk_content(batch_response: dict) dict[str, EmbeddingContent][source]
+

Get a dict of parsed embeddings from a batch_resonse of GUIDs +which are all embeddings.

+
+ +
+
+get_embeddings_from_bulk_content_guid(guid: str, bulk_content_guid_data: dict) EmbeddingContent[source]
+

Return an EmbeddingContent by parsing the response data for a particular GUID in a Bulk Content +response which corresponds to a Gen3 EmbeddingContent.

+
+
Note: this handles base64 decoding if the API call used that. and note that the resulting

vector is a numpy array

+
+
+
+
Parameters:
+
    +
  • guid (str) – globally unique identifier for the blob of data provided

  • +
  • bulk_content_guid_data (dict) – data from Bulk Content response.get(“guids”, {}).get(guid) +e.g. the data for the guid specified

  • +
+
+
Returns:
+

EmbeddingContent - a dataclass representation of the embedding

+
+
+
+
get_presigned_url(guid, protocol=None)[source]
@@ -221,6 +294,10 @@

Gen3 SDK

  • Gen3File.delete_file()
  • Gen3File.delete_file_locations()
  • Gen3File.download_single()
  • +
  • Gen3File.get_bulk_content()
  • +
  • Gen3File.get_content()
  • +
  • Gen3File.get_embeddings_from_bulk_content()
  • +
  • Gen3File.get_embeddings_from_bulk_content_guid()
  • Gen3File.get_presigned_url()
  • Gen3File.upload_file()
  • Gen3File.upload_file_to_guid()
  • diff --git a/docs/_build/html/genindex.html b/docs/_build/html/genindex.html index fc7b36ca6..878765116 100644 --- a/docs/_build/html/genindex.html +++ b/docs/_build/html/genindex.html @@ -349,12 +349,20 @@

    G

  • get_aliases() (gen3.metadata.Gen3Metadata method)
  • get_all_records() (gen3.index.Gen3Index method) +
  • +
  • get_bulk_content() (gen3.file.Gen3File method) +
  • +
  • get_content() (gen3.file.Gen3File method)
  • get_dictionary_all() (gen3.submission.Gen3Submission method)
    • get_dictionary_node() (gen3.submission.Gen3Submission method) +
    • +
    • get_embeddings_from_bulk_content() (gen3.file.Gen3File method) +
    • +
    • get_embeddings_from_bulk_content_guid() (gen3.file.Gen3File method)
    • get_fresh_token() (gen3.tools.download.drs_download.DownloadManager method)
    • diff --git a/docs/_build/html/index.html b/docs/_build/html/index.html index d329e8bcb..a61ccba7f 100644 --- a/docs/_build/html/index.html +++ b/docs/_build/html/index.html @@ -53,6 +53,10 @@

      Welcome to Gen3 SDK’s documentation!Gen3File.delete_file()
    • Gen3File.delete_file_locations()
    • Gen3File.download_single()
    • +
    • Gen3File.get_bulk_content()
    • +
    • Gen3File.get_content()
    • +
    • Gen3File.get_embeddings_from_bulk_content()
    • +
    • Gen3File.get_embeddings_from_bulk_content_guid()
    • Gen3File.get_presigned_url()
    • Gen3File.upload_file()
    • Gen3File.upload_file_to_guid()
    • diff --git a/docs/_build/html/objects.inv b/docs/_build/html/objects.inv index 8f2fb369e10a277a49c29de1f9aeb6fd64436a33..82c42b951d4832e6d2ad566eb2abe23e5cafbce4 100644 GIT binary patch delta 1381 zcmV-r1)BQi4uubpnFCfJf{~mZfAX7$a}j#)<*!@$W0>yW`V@0M{B@`YLJ`v+e;VEl zwkNWlpJ!A7Vj@BoT!YvWfw1or&XHhGBymHdO~zuh6TBTwMm8DYVXKL3B1$yFJNct( zBt39O)(Z$Ff}oAXl}g$G5oJCW5leVW3bsoq!vW$^vTdthS$mz+C*-q4e~?79M|TF2 zcuj&p&Y7DfcALgIHnh#7pgm(_Ns|TNkCpS!=3t7 z^;OLCZe+Vigpwx1 zG4D?FJtx^-xt9Y+o(68~e`XhcO>y$%fKSK{J(G;f4CcVn{WfeW?M@(9wId8+N(=Am zN})oXtDLimUb=EnX+bVrR>3WL4`>uH-;IGg!d;?V(Qtu9=Q(tZXoY>oGzyG6bf$1~ z01NM|-Z3>s9EAi^5$?O7-BPMerk!(P>ty_mt+~d3ls~F_w;nhne`~XUmM2JFM>q-4 z4oCG2c9Fv-U3sw`POUP_MVgEDI2BkqZ;xwo>WjcveCZ;NMlz3nvrBRgCdaT`a;%|K z`=`2&rN9-q+LKsKb7vO0HAR>c?#gC&SIq{=`#-5{q zWQqn0kwxoV&afrZe;NxvboNXbyt`d2kIu>HiR|TWWnPPPqcaZeigyhzsIam;P{tui zkg~{}={vihQ;>s%w<4*V#F4CNKWjzu%HGzBLq9Ebhr4FG_IZx2zY$+(mYM!p-D~aO z1w`TCti+c}8ws?HH2zaztwNz0IxFsNGn|IsDLOUvHRx`re+=)CG9D^k4qjy7`8tlc za!5_HDF0S(w<2^Uy2!M050ZAMzrS%}J6XC8Y}OAF77#!x4#WjyvI85S$r{c#u4K+; zBQGh-1juSyDww-exju+|^=2Q-lPRVYm=WTR^&2RgsJI`J7(*~x7v?}*%7H644#^th zB-#)z06CrSf10Hvfr{JHZKMN<9ucQijqX%!B1|x5-|4U*moxZfsIM3)bM2-sT$aYX zAmjC|utxE-8cuUcTXT71`(ug|yfsIxVzX?b?!xK$SOz2t85dmDK}{{Q?pBV7X`Z ztijp_lpU|@)qW5{Pi-khN&ug(XWJT#-}Pe>&krLSWF|~|VAqfGJ-MXT&`&PY)Ve;O z;J#+A>3Q^bPxNXl>2LBT?;_K<&>Owjr#;O-O|$5z0|kcIyzBt>_-W8OOmJ+mHim2Ke+*Hpr>P<0wjy8m^jUlP8nR1g#yhL}ZMfK4o>{T+Klp zu`K-3L)#cg{Mo;7;r&dqla>X5e^_SwcZ-y(1}})qqib3(bX)^!d{xv2c=CzJHQ=Kb z)$1Uq-8k3avbY1Jn=11OOGnswJF0fJAs4}0)m?s5`G#w#xQ6=Mwhx4+Bpc`=RYkP? zaK?!0FT6&|t<-$9n`&u_*Muth;;O;u=H9_U%#v0lJ`?J*m`LX~3Kru(fByUDUp|zQ zc}xmLioKwE2?9%ujcrR>aFDR3obUhK*zqQdQ|%m>ERbrD{scSRE%Zjo?1B=mR`f`jaPH^Uj nbuH$a0W8e;qx8AKq1ISslN1L-50*Xg6#Hao19vV`Z4Bw`0G#)gd&N5{AqYI z*q+FGe$HYANQek&a1CNh1j4>gI7fm$k<<;1HjE}{CwMy=MmCJ_u+>C1QA{+$JNct( zBt39O)(c2X1VI~%E0weXqL}(vL^S0sDd;YZDGm^i(rsJ)%G#MURJ2V=e}Imc`XW5f zwC48rT>;9qLEAhEE)hg&KwdP%o%&T>A3Y@R{yf6Ne4qNrX9P==GvZTLSK5k3Sq_ea z8#nhu;y>{`fuW=+%J7!Bk?kT8N*aa}-ks=sPS{?#mjg$h1#atR7k(Y%^vMCAk{x;` zjLS%MVCjAvHf3}tkgM7ee}-@z7v9yCLWMe4IcF2SbmfSp1-Wop1-Ixupiw}5HwNwq zcZqUE!vz+d=g>8x74{j&QDEGmGliQ2Sa@gkj;S%?C?q%*;l2ynEv4FI+Bp}tPR8Hp znrr+=`J=jb>wz<}Hv6+YMe;hrX@GV(s%Nl^95(67i|ue~m1!=re_XW3sldv4dt8%K zUj)A5OBZo*B=hJuyCmmeatzBQ#~M1df2!+P3S5D!J&DyccV>}WQ-nF;u55O9)ohSl z?lU{yw!2Y4&Bi1E7#4szDH<#Ui`KcEVN0ep7JlgLnJ{>FyI3BblhG5| z%iYQx|GUu{hjzuge+Cy+SXmw@)C$^KN>%eCH zAf*8Tq~btaKqfn|0h+AgeB(;yY&PSe{IA90M~#+_8QG zWfK+mLy}+!M(e^Hh)X$e<;Edd6P!jH!UZ6w^Ig-7q)>5tx{Y)o(Ieuts?nXQO@s+b z?K>SB6ukQXps-wJCKKda#^kK@){-q`+_;uLSq5v$lNo2a{R zdOnr`i9*T+SM@$qv#Wa-n6Ad>1u%9M9j5$vT6Y9fBKc|jTs+?OWT%`HW^1Uh3Kr$t zF)%+elxZv#=PtR_V{V#!PPl|6=a@IlZ2*|uLL6*C&3%rkOON5`1DaWf~m#hC`yqUu9{_& zr<3ahtsT)+FdCmeWp(0Q%|RWpEd0iYwlR?Svwz{j`$Maor!7sTb! zHLDjot^qZ^Dry5f`9$Oz@KKBEb&%6;oNI6_=>X}b%6!7o5q92=s-11fMetU2m)}&r zRT?U;q5g*J1Bo-j2D(U95iLKQF{1iQrjc?hH6QJ!S~|vS5-a)Qs=?^y-oZi4l2#-> zlh~&Tk
      static load(filename: Path) List[Downloadable] | None[source]
      -

      Method to load a json manifest and return a list of Bownloadable object. +

      Method to load a json manifest and return a list of Downloadable object. This list is passed to the DownloadManager methods of download, and list

      Parameters:
      From 47e6ba79ac6e417cbefa3906e76d071f57d7ff53 Mon Sep 17 00:00:00 2001 From: avantol Date: Tue, 16 Jun 2026 11:08:53 -0500 Subject: [PATCH 09/11] chore(ci): no longer support 3.10 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cf9ce9f34..0458951ae 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: matrix: # the versions for which we require the CI to pass on PRs can # be updated in the repo settings (branch rules) - version: ['3.10', '3.11', '3.12', '3.13'] + version: ['3.11', '3.12', '3.13'] fail-fast: false # run for all versions even if one of them fails with: python-version: ${{ matrix.version }} From 42c1c226d1315750185f90139691b7fea046dbc3 Mon Sep 17 00:00:00 2001 From: avantol Date: Tue, 16 Jun 2026 16:25:08 -0500 Subject: [PATCH 10/11] chore(embeddings): remove non-implemented feature - update notebook --- docs/tutorial/gen3_embeddings.ipynb | 172 +++++++++++++--------------- gen3/cli/ai/embeddings.py | 21 ---- gen3/cli/ai/main.py | 2 - 3 files changed, 81 insertions(+), 114 deletions(-) diff --git a/docs/tutorial/gen3_embeddings.ipynb b/docs/tutorial/gen3_embeddings.ipynb index 4d68f4786..f6b09d058 100644 --- a/docs/tutorial/gen3_embeddings.ipynb +++ b/docs/tutorial/gen3_embeddings.ipynb @@ -45,9 +45,9 @@ "id": "4", "metadata": {}, "source": [ - "If you are running the Gen3 AI support (specifically the Gen3 Embeddings API) locally, you can set some variables to point to the right credentials file and the service.\n", + "If you are running Gen3 locally, you can set some variables to point to the right credentials file.\n", "\n", - "If you are trying to interact with a production instance, just leave the default `ai`. e.g. don't uncomment - the default credentials setup should point you to the right place." + "If you are trying to interact with a production instance, just leave the default `ai`. e.g. don't uncomment - the default credentials setup should point you to the right place if you have your API key in the default location `~/.gen3/credentials.json`." ] }, { @@ -61,8 +61,10 @@ }, "outputs": [], "source": [ - "ai = \"--auth ~/.gen3/local_helm_test_user.json ai\"\n", - "url_prefix = \"https://avantol-local.dev.planx-pla.net/ai\"" + "ai = \"ai\"\n", + "\n", + "# ai = \"--auth ~/.gen3/local_helm_test_user.json ai\"\n", + "# url_prefix = \"https://foobar-local.dev.planx-pla.net/ai\"" ] }, { @@ -171,9 +173,9 @@ "outputs": [], "source": [ "# try to delete collections that might already exist\n", - "!gen3 $ai embeddings collections delete \"expr\"\n", - "!gen3 $ai embeddings collections delete \"hist\"\n", - "!gen3 $ai embeddings collections delete \"summ\"" + "!gen3 $ai embeddings collections delete \"test_expr\"\n", + "!gen3 $ai embeddings collections delete \"test_hist\"\n", + "!gen3 $ai embeddings collections delete \"test_summ\"" ] }, { @@ -197,8 +199,8 @@ }, "outputs": [], "source": [ - "!gen3 $ai embeddings collections create \"expr\" --dimensions 256 --description \"test expr data\"\n", - "!gen3 $ai embeddings collections create \"hist\" --dimensions 1536 --description \"test hist data\"" + "!gen3 $ai embeddings collections create \"test_expr\" --dimensions 256 --description \"test expr data\"\n", + "!gen3 $ai embeddings collections create \"test_hist\" --dimensions 1536 --description \"test hist data\"" ] }, { @@ -220,7 +222,7 @@ }, "outputs": [], "source": [ - "!gen3 $ai embeddings collections create \"summ\" --dimensions 4096 --description \"test summ data\"" + "!gen3 $ai embeddings collections create \"test_summ\" --dimensions 4096 --description \"test summ data\"" ] }, { @@ -265,30 +267,22 @@ "**tl;dr** we need a manifest file with a row per embedding. That row needs to contain the vector (embedding), along with other metadata." ] }, - { - "cell_type": "markdown", - "id": "24", - "metadata": {}, - "source": [ - "**TODO: REPLACE THESE WITH TEST FILES**" - ] - }, { "cell_type": "code", "execution_count": null, - "id": "25", + "id": "24", "metadata": {}, "outputs": [], "source": [ "# here's a quick visualization of the columns/data of this input manifest\n", - "df = pd.read_csv('../../tests/embeddings_tests/expr.tsv', sep='\\t', nrows=3)\n", + "df = pd.read_csv('../../tests/embeddings_tests/test_expr.tsv', sep='\\t', nrows=3)\n", "df" ] }, { "cell_type": "code", "execution_count": null, - "id": "26", + "id": "25", "metadata": { "vscode": { "languageId": "shellscript" @@ -296,25 +290,25 @@ }, "outputs": [], "source": [ - "!gen3 $ai embeddings publish ../../tests/embeddings_tests/expr.tsv --default-collection expr" + "!gen3 $ai embeddings publish ../../tests/embeddings_tests/test_expr.tsv --default-collection test_expr" ] }, { "cell_type": "code", "execution_count": null, - "id": "27", + "id": "26", "metadata": {}, "outputs": [], "source": [ "# here's a quick visualization of the columns/data of this input manifest\n", - "df = pd.read_csv('../../tests/embeddings_tests/hist.tsv', sep='\\t', nrows=3)\n", + "df = pd.read_csv('../../tests/embeddings_tests/test_hist.tsv', sep='\\t', nrows=3)\n", "df" ] }, { "cell_type": "code", "execution_count": null, - "id": "28", + "id": "27", "metadata": { "vscode": { "languageId": "shellscript" @@ -322,25 +316,25 @@ }, "outputs": [], "source": [ - "!gen3 $ai embeddings publish ../../tests/embeddings_tests/hist.tsv --default-collection hist" + "!gen3 $ai embeddings publish ../../tests/embeddings_tests/test_hist.tsv --default-collection test_hist" ] }, { "cell_type": "code", "execution_count": null, - "id": "29", + "id": "28", "metadata": {}, "outputs": [], "source": [ "# here's a quick visualization of the columns/data of this input manifest\n", - "df = pd.read_csv('../../tests/embeddings_tests/summ.tsv', sep='\\t', nrows=3)\n", + "df = pd.read_csv('../../tests/embeddings_tests/test_summ.tsv', sep='\\t', nrows=3)\n", "df" ] }, { "cell_type": "code", "execution_count": null, - "id": "30", + "id": "29", "metadata": { "vscode": { "languageId": "shellscript" @@ -348,12 +342,12 @@ }, "outputs": [], "source": [ - "!gen3 $ai embeddings publish ../../tests/embeddings_tests/summ.tsv --default-collection summ" + "!gen3 $ai embeddings publish ../../tests/embeddings_tests/test_summ.tsv --default-collection test_summ" ] }, { "cell_type": "markdown", - "id": "31", + "id": "30", "metadata": {}, "source": [ "## Convert Published Embeddings Manifests into Indexing Manifests" @@ -361,7 +355,7 @@ }, { "cell_type": "markdown", - "id": "32", + "id": "31", "metadata": {}, "source": [ "Each of the `publish` commands above generated an output file `{input_filename}_output.tsv` (unless you overrode the output filename). \n", @@ -376,7 +370,7 @@ { "cell_type": "code", "execution_count": null, - "id": "33", + "id": "32", "metadata": { "vscode": { "languageId": "shellscript" @@ -386,14 +380,14 @@ "source": [ "# here's a quick visualization of the columns/data of the output manifest from previous `publish` commands\n", "# this is what we'll convert\n", - "df = pd.read_csv('../../tests/embeddings_tests/expr_output.tsv', sep='\\t', nrows=3)\n", + "df = pd.read_csv('../../tests/embeddings_tests/test_expr_output.tsv', sep='\\t', nrows=3)\n", "df" ] }, { "cell_type": "code", "execution_count": null, - "id": "34", + "id": "33", "metadata": { "vscode": { "languageId": "shellscript" @@ -407,7 +401,7 @@ { "cell_type": "code", "execution_count": null, - "id": "35", + "id": "34", "metadata": { "vscode": { "languageId": "shellscript" @@ -415,14 +409,14 @@ }, "outputs": [], "source": [ - "!gen3 $ai embeddings convert ../../tests/embeddings_tests/expr_output.tsv --url-prefix $url_prefix\n", - "!gen3 $ai embeddings convert ../../tests/embeddings_tests/hist_output.tsv --url-prefix $url_prefix\n", - "!gen3 $ai embeddings convert ../../tests/embeddings_tests/summ_output.tsv --url-prefix $url_prefix" + "!gen3 $ai embeddings convert ../../tests/embeddings_tests/test_expr_output.tsv --url-prefix $url_prefix\n", + "!gen3 $ai embeddings convert ../../tests/embeddings_tests/test_hist_output.tsv --url-prefix $url_prefix\n", + "!gen3 $ai embeddings convert ../../tests/embeddings_tests/test_summ_output.tsv --url-prefix $url_prefix" ] }, { "cell_type": "markdown", - "id": "36", + "id": "35", "metadata": {}, "source": [ "That `convert` command created new `{original_filename}_converted.tsv` files. Let's take a look at those:" @@ -431,7 +425,7 @@ { "cell_type": "code", "execution_count": null, - "id": "37", + "id": "36", "metadata": { "vscode": { "languageId": "shellscript" @@ -439,13 +433,13 @@ }, "outputs": [], "source": [ - "df = pd.read_csv('../../tests/embeddings_tests/expr_output_converted.tsv', sep='\\t', nrows=3)\n", + "df = pd.read_csv('../../tests/embeddings_tests/test_expr_output_converted.tsv', sep='\\t', nrows=3)\n", "df" ] }, { "cell_type": "markdown", - "id": "38", + "id": "37", "metadata": {}, "source": [ "## Create Gen3 Indexed Records with the Indexing Manifest" @@ -453,7 +447,7 @@ }, { "cell_type": "markdown", - "id": "39", + "id": "38", "metadata": {}, "source": [ "The manifest we converted to above is a Gen3 Indexing Manifest with no GUIDs - we'll let the Gen3 Indexing command and backend generate those for us.\n", @@ -468,7 +462,7 @@ { "cell_type": "code", "execution_count": null, - "id": "40", + "id": "39", "metadata": { "vscode": { "languageId": "shellscript" @@ -482,7 +476,7 @@ { "cell_type": "code", "execution_count": null, - "id": "41", + "id": "40", "metadata": { "vscode": { "languageId": "shellscript" @@ -490,15 +484,15 @@ }, "outputs": [], "source": [ - "!gen3 objects manifest validate-manifest-format ../../tests/embeddings_tests/expr_output_converted.tsv --allowed-protocols \"https http\"\n", - "!gen3 objects manifest validate-manifest-format ../../tests/embeddings_tests/hist_output_converted.tsv --allowed-protocols \"https http\"\n", - "!gen3 objects manifest validate-manifest-format ../../tests/embeddings_tests/summ_output_converted.tsv --allowed-protocols \"https http\"" + "!gen3 objects manifest validate-manifest-format ../../tests/embeddings_tests/test_expr_output_converted.tsv --allowed-protocols \"https http\"\n", + "!gen3 objects manifest validate-manifest-format ../../tests/embeddings_tests/test_hist_output_converted.tsv --allowed-protocols \"https http\"\n", + "!gen3 objects manifest validate-manifest-format ../../tests/embeddings_tests/test_summ_output_converted.tsv --allowed-protocols \"https http\"" ] }, { "cell_type": "code", "execution_count": null, - "id": "42", + "id": "41", "metadata": { "vscode": { "languageId": "shellscript" @@ -511,7 +505,7 @@ }, { "cell_type": "markdown", - "id": "43", + "id": "42", "metadata": {}, "source": [ "> IMPORTANT NOTE: Publishing the manifest through the Gen3 Indexing API requires permissions to write to that API. \n", @@ -536,7 +530,7 @@ { "cell_type": "code", "execution_count": null, - "id": "44", + "id": "43", "metadata": { "vscode": { "languageId": "shellscript" @@ -544,13 +538,13 @@ }, "outputs": [], "source": [ - "!gen3 -v objects manifest publish ../../tests/embeddings_tests/expr_output_converted.tsv --out-manifest-file ../../tests/embeddings_tests/expr_output_converted_indexed.tsv --thread-num 1" + "!gen3 -v objects manifest publish ../../tests/embeddings_tests/test_expr_output_converted.tsv --out-manifest-file ../../tests/embeddings_tests/expr_output_converted_indexed.tsv --thread-num 1" ] }, { "cell_type": "code", "execution_count": null, - "id": "45", + "id": "44", "metadata": { "vscode": { "languageId": "shellscript" @@ -558,13 +552,13 @@ }, "outputs": [], "source": [ - "!gen3 objects manifest verify ../../tests/embeddings_tests/expr_output_converted_indexed.tsv --max-concurrent-requests 1" + "!gen3 objects manifest verify ../../tests/embeddings_tests/test_expr_output_converted_indexed.tsv --max-concurrent-requests 1" ] }, { "cell_type": "code", "execution_count": null, - "id": "46", + "id": "45", "metadata": { "vscode": { "languageId": "shellscript" @@ -572,13 +566,13 @@ }, "outputs": [], "source": [ - "!gen3 -v objects manifest publish ../../tests/embeddings_tests/hist_output_converted.tsv --out-manifest-file ../../tests/embeddings_tests/hist_output_converted_indexed.tsv --thread-num 1" + "!gen3 -v objects manifest publish ../../tests/embeddings_tests/test_hist_output_converted.tsv --out-manifest-file ../../tests/embeddings_tests/hist_output_converted_indexed.tsv --thread-num 1" ] }, { "cell_type": "code", "execution_count": null, - "id": "47", + "id": "46", "metadata": { "vscode": { "languageId": "shellscript" @@ -586,13 +580,13 @@ }, "outputs": [], "source": [ - "!gen3 objects manifest verify ../../tests/embeddings_tests/hist_output_converted_indexed.tsv --max-concurrent-requests 1" + "!gen3 objects manifest verify ../../tests/embeddings_tests/test_hist_output_converted_indexed.tsv --max-concurrent-requests 1" ] }, { "cell_type": "code", "execution_count": null, - "id": "48", + "id": "47", "metadata": { "vscode": { "languageId": "shellscript" @@ -600,13 +594,13 @@ }, "outputs": [], "source": [ - "!gen3 -v objects manifest publish ../../tests/embeddings_tests/summ_output_converted.tsv --out-manifest-file ../../tests/embeddings_tests/summ_output_converted_indexed.tsv --thread-num 1" + "!gen3 -v objects manifest publish ../../tests/embeddings_tests/test_summ_output_converted.tsv --out-manifest-file ../../tests/embeddings_tests/summ_output_converted_indexed.tsv --thread-num 1" ] }, { "cell_type": "code", "execution_count": null, - "id": "49", + "id": "48", "metadata": { "vscode": { "languageId": "shellscript" @@ -614,12 +608,12 @@ }, "outputs": [], "source": [ - "!gen3 objects manifest verify ../../tests/embeddings_tests/summ_output_converted_indexed.tsv --max-concurrent-requests 1" + "!gen3 objects manifest verify ../../tests/embeddings_tests/test_summ_output_converted_indexed.tsv --max-concurrent-requests 1" ] }, { "cell_type": "markdown", - "id": "50", + "id": "49", "metadata": {}, "source": [ "Now there are indexed records with GUIDs. The above tool output an `*_indexed.tsv` manifest. We can take a look and see that now the `guid` column is filled out! " @@ -628,7 +622,7 @@ { "cell_type": "code", "execution_count": null, - "id": "51", + "id": "50", "metadata": { "vscode": { "languageId": "shellscript" @@ -636,13 +630,13 @@ }, "outputs": [], "source": [ - "df = pd.read_csv('../../tests/embeddings_tests/expr_output_converted_indexed.tsv', sep='\\t', nrows=3)\n", + "df = pd.read_csv('../../tests/embeddings_tests/test_expr_output_converted_indexed.tsv', sep='\\t', nrows=3)\n", "df" ] }, { "cell_type": "markdown", - "id": "52", + "id": "51", "metadata": {}, "source": [ "## Everything is in Gen3 now!\n", @@ -654,23 +648,23 @@ "- Converted output manifest from embedding creation into indexing manifests\n", "- Ingested Indexing Manifests to create Gen3 Indexed Records with assigned GUIDs\n", "\n", - "At this point, we have the embeddings themselves stored and we've created persistent identifiers for them which can be referenced by GUIDs. \n", + "At this point, we have the embeddings themselves stored and we've created persistent identifiers (GUIDs). \n", "\n", - "Now you can use those GUIDs the same way you use other Gen3 GUIDs for files. So if you have a Gen3 Data Model with nodes that point to sample files identified by GUIDs, you can now have a new \"file embedding\" node with a GUID pointing to the embedding!\n", + "Now you can use those GUIDs the same way you use other Gen3 GUIDs for files. So if you have a Gen3 Data Model with nodes that point to sample files identified by GUIDs, you can now have a new \"embedding\" node with a GUID pointing to the embedding!\n", "\n", "This will allow traditional Gen3 search for data with embeddings.\n", "\n", - "If you want to search the embeddings collections themselves, the Gen3 Embedding API exposes search functionality as well.\n", + "If you want to search the embeddings collections themselves, the Gen3 Embedding API exposes search functionality as well. This supports similarity search.\n", "\n", "## Bulk Retrieval of Gen3 Embeddings via their Indexed GUIDs\n", "\n", - "Let's assume we've found GUIDs of interest via a search in Gen3 (and for simplicity, let's assume those GUIDs are ALL the GUIDs we have indexed previously). Now, given **only** those GUIDs, we want to bulk retrieve the actual embeddings to do some AI/ML analysis." + "Let's assume we've found GUIDs of interest via a search in Gen3 (and for simplicity, let's assume those GUIDs are ALL the GUIDs we have indexed previously in this notebook). Now, given **only** those GUIDs, we want to bulk retrieve the actual embeddings from Gen3 to do some AI/ML analysis." ] }, { "cell_type": "code", "execution_count": null, - "id": "53", + "id": "52", "metadata": {}, "outputs": [], "source": [ @@ -683,7 +677,7 @@ "import pandas as pd\n", "\n", "file_pattern = \"../../tests/embeddings_tests/*_output_converted_indexed.tsv\"\n", - "output_file = \"../../tests/embeddings_tests/aggregated_guids.tsv\"\n", + "output_file = \"../../tests/embeddings_tests/test_aggregated_guids.tsv\"\n", "\n", "all_files = glob.glob(file_pattern)\n", "\n", @@ -702,17 +696,17 @@ { "cell_type": "code", "execution_count": null, - "id": "54", + "id": "53", "metadata": {}, "outputs": [], "source": [ - "df = pd.read_csv('../../tests/embeddings_tests/aggregated_guids.tsv', sep='\\t', nrows=3)\n", + "df = pd.read_csv('../../tests/embeddings_tests/test_aggregated_guids.tsv', sep='\\t', nrows=3)\n", "df" ] }, { "cell_type": "markdown", - "id": "55", + "id": "54", "metadata": {}, "source": [ "## Bulk retrieve embeddings from Fence\n", @@ -727,7 +721,7 @@ { "cell_type": "code", "execution_count": null, - "id": "56", + "id": "55", "metadata": {}, "outputs": [], "source": [ @@ -737,32 +731,28 @@ "auth = Gen3Auth()\n", "gen3_file = Gen3File(auth.endpoint, auth_provider=auth)\n", "\n", - "embeddings_contents = gen3_file.get_bulk_content(input_file=\"../../tests/embeddings_tests/aggregated_guids.tsv\")\n", + "embeddings_contents = gen3_file.get_bulk_content(input_file=\"../../tests/embeddings_tests/test_aggregated_guids.tsv\")\n", " \n", "print(f\"Got all {len(embeddings_contents)} GUIDs\")\n", "\n", - "# the GUIDs are already an efficient numpy array!\n", "for guid, embedding_content in embeddings_contents.items():\n", + " # the GUIDs are already an efficient numpy array!\n", " print(type(embedding_content.embedding))\n", " print(embedding_content)\n", - " break" + " break\n", + "\n", + "# do other AI/ML work with the embeddings!" ] }, { - "cell_type": "code", - "execution_count": null, - "id": "57", + "cell_type": "markdown", + "id": "56", "metadata": {}, - "outputs": [], "source": [ - "!gen3 objects read --input-file ../../tests/embeddings_tests/aggregated_guids.tsv" + "We have shown the full flow from original vectors -> storage in Gen3 -> retrieval from Gen3 in an efficient bulk pipeline. \n", + "\n", + "We've also shown that Gen3 Embeddings can be indexed like files to provide GUIDs which can be referenced and searched the same way file-based GUIDs are today." ] - }, - { - "cell_type": "markdown", - "id": "58", - "metadata": {}, - "source": [] } ], "metadata": { diff --git a/gen3/cli/ai/embeddings.py b/gen3/cli/ai/embeddings.py index c136e191c..4e71918a6 100644 --- a/gen3/cli/ai/embeddings.py +++ b/gen3/cli/ai/embeddings.py @@ -449,27 +449,6 @@ def _get_collection_id_and_name( return collection_id, collection_name -@click.command( - "read", - help="[Not Implemented Yet] Reads embeddings data from Gen3 instance into local files.", -) -@click.option( - "--output-file", - "output_file", - default="embeddings.csv", - help="filename for output", - type=click.Path(writable=True), - show_default=True, -) -@click.pass_context -def read_embeddings(ctx, output_file): - """ - Reads embeddings data from Gen3 instance into local files. - """ - auth = ctx.obj["auth_factory"].get() - raise NotImplementedError("`gen3 ai embeddings read` is not implemented yet.") - - @click.command( "delete", help="[Not Implemented Yet] Deletes specified embeddings data in local files from Gen3 instance.", diff --git a/gen3/cli/ai/main.py b/gen3/cli/ai/main.py index 6ae96a169..c916812d7 100644 --- a/gen3/cli/ai/main.py +++ b/gen3/cli/ai/main.py @@ -41,7 +41,6 @@ convert_embeddings, delete_embeddings, publish_embeddings, - read_embeddings, ) from gen3.cli.ai.embeddings_collections import ( create_collection, @@ -89,7 +88,6 @@ def collections(ctx: click.Context) -> None: embeddings.add_command(publish_embeddings, name="publish") -embeddings.add_command(read_embeddings, name="read") embeddings.add_command(delete_embeddings, name="delete") embeddings.add_command(chunk_and_embed_text, name="embed-files") embeddings.add_command(convert_embeddings, name="convert") From 1b8bcc5e4a9da2e0f2cfd48bb476d6c474750d2b Mon Sep 17 00:00:00 2001 From: avantol Date: Tue, 16 Jun 2026 16:26:10 -0500 Subject: [PATCH 11/11] chore(embeddings): fix test data --- tests/embeddings_tests/test_expr.tsv | 8 ++++---- tests/embeddings_tests/test_hist.tsv | 8 ++++---- tests/embeddings_tests/test_summ.tsv | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/embeddings_tests/test_expr.tsv b/tests/embeddings_tests/test_expr.tsv index a700b4dab..7615ff033 100644 --- a/tests/embeddings_tests/test_expr.tsv +++ b/tests/embeddings_tests/test_expr.tsv @@ -1,4 +1,4 @@ -embedding authz collection_name collection_id case_id file_id model -[-0.2024536281824112, 0.8700736165046692, 0.6367368102073669, 1.0295965671539307, 1.3029881715774536, 0.6979042291641235, 0.09141989797353745, -0.7052130103111267, 0.05628640949726105, -0.6558999419212341, -0.698043704032898, -8.845816612243652, -0.10774289071559906, -0.8967481255531311, 0.30785858631134033, -0.218824565410614, -0.1945626139640808, -0.6851598024368286, -0.2565596103668213, -0.1704675555229187, 0.17284531891345978, -0.6091238260269165, -0.13866744935512543, 0.21102923154830933, -0.2252902388572693, -0.6781346201896667, -0.34671345353126526, 0.4128320515155792, -0.8277935981750488, 1.1078327894210815, 0.6355611085891724, -0.5727114081382751, 1.2589396238327026, 0.4476923644542694, 0.34200647473335266, -0.1336929202079773, 0.1772320717573166, 1.1591079235076904, -1.5068682432174683, 0.02006017416715622, -0.6712247133255005, -0.5338364839553833, 5.475770473480225, -0.3881995379924774, 1.026019811630249, -0.117962546646595, -0.2552171051502228, -0.43384769558906555, -1.4432331323623657, -0.09555564075708389, 0.037277694791555405, -0.8553200960159302, -0.06689377129077911, -0.22948388755321503, -0.6298796534538269, 0.5966225266456604, -0.13349662721157074, -0.16505523025989532, -0.9155815243721008, -0.03902330994606018, 0.48878201842308044, 0.9861955642700195, -0.8381974697113037, -0.5137110352516174, -0.9829555749893188, 0.07967071980237961, 0.3077264726161957, 0.06789758056402206, 0.941411554813385, -0.42186906933784485, 0.5567692518234253, 0.38038623332977295, 0.46958717703819275, -0.3595823645591736, -0.5077025890350342, 0.13748227059841156, 0.11002576351165771, -0.16163720190525055, -0.18104378879070282, 1.0819607973098755, 0.8306452631950378, -0.44499292969703674, 0.5418969988822937, -1.1315350532531738, 0.3580150306224823, -0.07379359751939774, -0.6808024644851685, 0.3528731167316437, 0.04792550206184387, 0.12353166937828064, 0.8670023679733276, 0.08373359590768814, -0.41165003180503845, 0.727061927318573, 0.06704757362604141, 4.503935813903809, -0.8532129526138306, -0.594979465007782, 0.919654130935669, -0.23700065910816193, 0.5048814415931702, -0.4086969196796417, -0.4986532926559448, -0.06626451015472412, 1.1717911958694458, -0.07520367950201035, 0.06578060984611511, 0.3701489567756653, -0.9265334010124207, -0.3234957158565521, -0.05426352471113205, -0.3846246004104614, 1.1056557893753052, -1.1724191904067993, 1.147159218788147, 1.1236810684204102, -0.46618154644966125, -0.9549393057823181, -0.204567089676857, 1.1774815320968628, -0.6236163973808289, -0.5526822805404663, -0.6998738646507263, -0.5858327746391296, -0.2566048204898834, 0.8487930297851562, -0.37117043137550354, -1.3030366897583008, -8.013142585754395, -0.09955956786870956, -0.7133530378341675, 0.21573762595653534, 0.02987380139529705, 0.169014573097229, 0.858149528503418, -0.9776293039321899, -0.6704788208007812, -0.7800702452659607, -0.11321384459733963, -0.4539415240287781, 0.6066994071006775, -0.501072108745575, -0.04097514599561691, 0.44614145159721375, -0.07055798172950745, -0.4469953179359436, 0.25786444544792175, 0.3830481767654419, 0.2865692675113678, 0.5758309364318848, -0.7816569209098816, -0.16137219965457916, 0.07098924368619919, 1.0406609773635864, -0.25058403611183167, 0.2329045534133911, 0.3159070611000061, 0.011400481685996056, 1.1727708578109741, -0.6722333431243896, 0.0047455462627112865, 0.7064188122749329, 0.19687819480895996, -0.7298651337623596, -0.6731472611427307, -0.29894983768463135, -0.5114670395851135, 1.2121055126190186, 0.27098193764686584, -1.1139729022979736, -0.34051188826560974, 0.47438573837280273, -0.5396663546562195, -0.45061254501342773, -0.5249454379081726, -0.12127259373664856, -0.13513071835041046, -0.32455986738204956, 0.8758406043052673, -0.6840516924858093, -1.1088807582855225, -0.48474231362342834, 0.6212708950042725, 0.2537653148174286, 0.2028423398733139, -0.16007283329963684, -1.0832301378250122, -0.6427255272865295, 0.5219706892967224, -0.10779555141925812, 0.14352789521217346, 0.916231095790863, 0.6226103901863098, 0.3076702952384949, 1.5312645435333252, -0.33734557032585144, 0.41539466381073, 2.244152545928955, -0.13458096981048584, 0.3584960401058197, -0.20201975107192993, -0.8333280086517334, -0.6809530854225159, 0.14703354239463806, -0.4365242123603821, -0.33620592951774597, -0.18233400583267212, -0.22426031529903412, -0.5442564487457275, 0.4168570935726166, -0.5127552151679993, 3.5123233795166016, -0.3374885618686676, 0.7329320907592773, -0.09450151026248932, 0.14233481884002686, -0.8451797366142273, 0.4592364430427551, 0.462772011756897, 0.35650205612182617, -0.24574220180511475, 1.1549229621887207, 0.6380702257156372, 0.06404341012239456, 0.15603697299957275, -0.3920949101448059, 0.053627148270606995, -0.5836009383201599, 0.09549576044082642, 0.22595234215259552, 0.13617555797100067, 0.7152342796325684, 0.6793820261955261, 0.17555320262908936, 0.6218454837799072, 0.49658674001693726, -0.40870344638824463, -0.7512102127075195, -23.303945541381836, 0.405129611492157, 0.3400692045688629, 1.0545461177825928, 0.6485701203346252, -0.1535542607307434, 0.3560626208782196, 0.9628076553344727, -0.511151909828186, -0.6748654842376709, -0.6606578826904297, 0.11375259608030319, -0.9489352107048035, 0.017717955633997917, 0.5313513278961182, 0.08885449171066284, -0.20959705114364624, -0.5676986575126648] /programs/dev/projects/testproject1 expr TCGA-05-4244 e0e055b6-6800-40e7-bde5-718823408f0c expr -[-0.21098750829696655, 0.8999685049057007, 0.6318586468696594, 0.9548228979110718, 1.1571954488754272, 0.5339417457580566, 0.015891127288341522, -0.7026917338371277, 0.04075244814157486, -0.501552939414978, -0.6925984621047974, -8.84329605102539, -0.17547869682312012, -0.8503749966621399, 0.35973337292671204, -0.18932057917118073, -0.1361524760723114, -0.6625967621803284, -0.17621438205242157, -0.09718206524848938, 0.19409120082855225, -0.6379923224449158, -0.11429573595523834, 0.11196231096982956, -0.3210512101650238, -0.5825065970420837, -0.3804585933685303, 0.28380119800567627, -0.7360841035842896, 1.0406644344329834, 0.5594694018363953, -0.7057065963745117, 0.9364557862281799, 0.4513166546821594, 0.3793163299560547, -0.052856091409921646, 0.12097060680389404, 0.9977852702140808, -1.5820757150650024, -0.015619124285876751, -0.7463712692260742, -0.5128862261772156, 5.627805233001709, -0.21938584744930267, 0.8136599063873291, -0.12776827812194824, -0.25363442301750183, -0.4317783713340759, -1.3467893600463867, -0.060403794050216675, -0.07133190333843231, -0.8631917834281921, 0.10284103453159332, -0.2826472818851471, -0.6835200190544128, 0.5830567479133606, -0.14701218903064728, -0.17293046414852142, -0.8735769391059875, -0.02881273441016674, 0.4958131015300751, 0.8009231090545654, -0.6146762371063232, -0.5285926461219788, -1.0771533250808716, 0.04588151350617409, 0.49531662464141846, -0.008109393529593945, 0.8443883061408997, -0.35663866996765137, 0.493672639131546, 0.32184335589408875, 0.32491034269332886, -0.49845650792121887, -0.4785430431365967, 0.21482497453689575, -0.030081434175372124, -0.1669611930847168, -0.3055354952812195, 0.846930742263794, 0.6846902966499329, -0.30125686526298523, 0.4076782763004303, -1.0283879041671753, 0.4661460816860199, -0.033819761127233505, -0.7537416815757751, 0.316253125667572, -0.0694570243358612, 0.2559029459953308, 0.9326916933059692, 0.03079688921570778, -0.4796101152896881, 0.7880467176437378, 0.01598743349313736, 4.604737281799316, -0.7946133613586426, -0.60218745470047, 0.9114785194396973, -0.203228160738945, 0.3839750587940216, -0.5289739966392517, -0.3548987805843353, -0.10622496157884598, 1.0487390756607056, -0.06533420085906982, 0.038954026997089386, 0.2967875301837921, -0.7412417531013489, -0.20835258066654205, -0.09471746534109116, -0.44401687383651733, 1.0327143669128418, -1.156528115272522, 1.0757273435592651, 1.1195834875106812, -0.46774110198020935, -0.957853376865387, -0.13260038197040558, 0.9236862063407898, -0.3969095051288605, -0.4658750891685486, -0.7426497936248779, -0.4930476248264313, -0.24787543714046478, 0.8202536106109619, -0.30632510781288147, -1.1781182289123535, -7.877163887023926, -0.07271221280097961, -0.5372146368026733, 0.18621912598609924, 0.12073568254709244, 0.07463297247886658, 0.8108291625976562, -0.9223519563674927, -0.6309817433357239, -0.6578408479690552, 0.07499125599861145, -0.5412887334823608, 0.6223138570785522, -0.5474604964256287, -0.010487362742424011, 0.357033371925354, 0.009604593738913536, -0.5208069086074829, 0.28630656003952026, 0.3784124553203583, 0.31319937109947205, 0.5574952363967896, -0.7145376205444336, -0.2050650715827942, 0.1486707329750061, 0.8653070330619812, -0.23983126878738403, 0.24015524983406067, 0.28624221682548523, 0.025234851986169815, 1.0891348123550415, -0.6849644780158997, -0.12304974347352982, 0.5291566848754883, 0.013161289505660534, -0.7288368940353394, -0.819659948348999, -0.07023821771144867, -0.44113776087760925, 1.1510635614395142, 0.10622508078813553, -1.0366266965866089, -0.24243634939193726, 0.5044691562652588, -0.5722522735595703, -0.3900983929634094, -0.5652220845222473, -0.12726902961730957, -0.15129198133945465, -0.3334895670413971, 0.7730445265769958, -0.6162868738174438, -1.1096068620681763, -0.3452955186367035, 0.598288893699646, 0.2933443486690521, 0.2429751753807068, -0.08410166949033737, -1.0103445053100586, -0.7861214280128479, 0.3825986087322235, 0.0017218603752553463, 0.17548704147338867, 0.7665985226631165, 0.5564228892326355, 0.25235527753829956, 1.5576646327972412, -0.24013058841228485, 0.41295912861824036, 2.147568941116333, -0.03719283640384674, 0.42219817638397217, -0.1739833652973175, -0.918269693851471, -0.40959426760673523, 0.0812535509467125, -0.5178847312927246, -0.41967591643333435, -0.18595372140407562, -0.3035483658313751, -0.4409176707267761, 0.47509729862213135, -0.4413771629333496, 3.4691295623779297, -0.3347715735435486, 0.6793034076690674, -0.02919447422027588, 0.15440312027931213, -0.8538996577262878, 0.36942797899246216, 0.5017097592353821, 0.4127904176712036, -0.2941591441631317, 1.1199814081192017, 0.6906856894493103, 0.21696875989437103, 0.1365450769662857, -0.2862778604030609, 0.13433173298835754, -0.5796406865119934, 0.11482628434896469, 0.20783747732639313, 0.01924216002225876, 0.7123128175735474, 0.5298656225204468, 0.02135384827852249, 0.5972912311553955, 0.5447875261306763, -0.35572847723960876, -0.615318238735199, -22.96155548095703, 0.37506017088890076, 0.3466165065765381, 0.9703406095504761, 0.5376274585723877, -0.06218696013092995, 0.38869214057922363, 0.9537210464477539, -0.6253715753555298, -0.7197611927986145, -0.7357975840568542, 0.05801375210285187, -0.8393024206161499, -0.07725870609283447, 0.3304303288459778, -0.09361489862203598, -0.15228311717510223, -0.5184224247932434] /programs/dev/projects/testproject1 expr TCGA-05-4249 258b0b5e-2b09-4378-9606-83955ca19d7c expr -[-0.08159218728542328, 0.9297925233840942, 0.8675318956375122, 0.9550628662109375, 1.1664010286331177, 0.4701117277145386, 0.1496473103761673, -0.7088590860366821, 0.09415771812200546, -0.4715021848678589, -0.6972694396972656, -9.017582893371582, -0.15306243300437927, -0.8296961188316345, 0.453702837228775, -0.2149372398853302, -0.09869883954524994, -0.7066512703895569, -0.22567838430404663, -0.12875479459762573, 0.08049450814723969, -0.518451452255249, -0.1172652542591095, 0.14658060669898987, -0.3417757451534271, -0.5153712034225464, -0.3212258517742157, 0.18762685358524323, -0.6364091038703918, 1.0104631185531616, 0.5985503196716309, -0.7317988276481628, 1.0015889406204224, 0.47260409593582153, 0.4626551568508148, -0.03240814059972763, 0.07495437562465668, 0.9459090232849121, -1.47340726852417, 0.11717939376831055, -0.6601586937904358, -0.6007426381111145, 5.673951625823975, -0.28140968084335327, 0.9161562919616699, -0.12013081461191177, -0.3244413137435913, -0.3639639616012573, -1.4007046222686768, 0.04558860510587692, 0.030128540471196175, -0.8984534740447998, 0.05478091910481453, -0.22969898581504822, -0.589042067527771, 0.6735678315162659, -0.1529698371887207, -0.09354153275489807, -0.9179191589355469, -0.08367723971605301, 0.31423279643058777, 0.8066721558570862, -0.7147478461265564, -0.5473017692565918, -1.0659099817276, 0.014234657399356365, 0.48092958331108093, 0.06180460378527641, 0.855652391910553, -0.3076493740081787, 0.4615519642829895, 0.37695667147636414, 0.40593221783638, -0.41348496079444885, -0.5406474471092224, 0.14714892208576202, -0.05899986997246742, -0.018116701394319534, -0.4352986514568329, 0.9247257709503174, 0.7762712240219116, -0.29112815856933594, 0.4435715675354004, -0.9983264803886414, 0.46084460616111755, -0.08852344006299973, -0.653340220451355, 0.27742138504981995, -0.12678015232086182, 0.13700884580612183, 1.0323890447616577, -0.2091103047132492, -0.42427894473075867, 0.6968016624450684, 0.07748009264469147, 4.642029285430908, -0.6837109327316284, -0.487018883228302, 0.9232327938079834, -0.21586476266384125, 0.3875136077404022, -0.6418094038963318, -0.22685351967811584, -0.025400104001164436, 1.1424906253814697, -0.09404590725898743, 0.023089421913027763, 0.2015608549118042, -0.7274625301361084, -0.4316866397857666, -0.15329594910144806, -0.42585235834121704, 1.040328025817871, -1.0762522220611572, 0.9493504166603088, 1.094271183013916, -0.3284957706928253, -1.1043651103973389, -0.12146294862031937, 1.1392078399658203, -0.37308868765830994, -0.4437580108642578, -0.7425968050956726, -0.5292282104492188, -0.17621946334838867, 0.844396710395813, -0.2890729606151581, -0.9615684747695923, -8.0899658203125, 0.05813923478126526, -0.6225814819335938, 0.0439830981194973, 0.336849570274353, 0.13131099939346313, 0.7761361598968506, -0.9106371998786926, -0.6427183151245117, -0.6756482124328613, 0.16145360469818115, -0.4805813431739807, 0.5149089097976685, -0.5646109580993652, -0.05226101353764534, 0.34576576948165894, -0.00014376988110598177, -0.4307204782962799, 0.3113726079463959, 0.37194350361824036, 0.36263030767440796, 0.4650290906429291, -0.7471160888671875, -0.258705735206604, 0.18525397777557373, 0.8892170786857605, -0.2783876657485962, 0.14580291509628296, 0.4229099452495575, 0.12832656502723694, 0.9776595830917358, -0.7017229199409485, -0.19710275530815125, 0.5176953077316284, 0.1247771680355072, -0.7785195112228394, -0.7676244378089905, -0.11234674602746964, -0.4583059251308441, 1.2140597105026245, 0.0868801698088646, -1.0702612400054932, -0.04567829146981239, 0.4971276819705963, -0.5466195344924927, -0.3926737606525421, -0.5234888792037964, -0.16254140436649323, -0.13623082637786865, -0.4019322991371155, 0.8552954196929932, -0.6810445785522461, -0.9698832035064697, -0.3847764730453491, 0.619861364364624, 0.46173256635665894, 0.15726806223392487, -0.1295337826013565, -1.059167504310608, -0.7241351008415222, 0.5557236671447754, -0.02267739363014698, 0.19252197444438934, 0.9193068146705627, 0.6690359711647034, 0.20777595043182373, 1.5028756856918335, -0.23428480327129364, 0.45594772696495056, 2.216400623321533, -0.08736343681812286, 0.26350170373916626, -0.2705765664577484, -1.0567982196807861, -0.43979740142822266, 0.152920663356781, -0.5294412970542908, -0.3907485604286194, -0.21866735816001892, -0.37465694546699524, -0.5854174494743347, 0.4321836829185486, -0.3825376033782959, 3.49379825592041, -0.3446476459503174, 0.7121657729148865, -0.08704239875078201, 0.09967551380395889, -0.9659140706062317, 0.42542487382888794, 0.4081141948699951, 0.42391738295555115, -0.2898607850074768, 1.2063814401626587, 0.5166946649551392, 0.2602227032184601, 0.15276014804840088, -0.33307766914367676, 0.23433157801628113, -0.5961370468139648, 0.011641307733952999, 0.24419128894805908, -0.0030077688861638308, 0.7954489588737488, 0.605821967124939, 0.009385609067976475, 0.6710580587387085, 0.4909551441669464, -0.38182520866394043, -0.6414607167243958, -22.988805770874023, 0.4145936667919159, 0.40074825286865234, 1.0389455556869507, 0.4819827377796173, 0.07063639909029007, 0.3892967104911804, 0.9913773536682129, -0.675666332244873, -0.5891161561012268, -0.6529443860054016, 0.0013843694468960166, -0.8572033643722534, -0.011388090439140797, 0.38122880458831787, -0.057044703513383865, -0.13881278038024902, -0.5632729530334473] /programs/dev/projects/testproject1 expr TCGA-05-4250 f0395da6-5f12-4a35-8aa6-0b1b47a2acba expr \ No newline at end of file +embedding authz collection_name collection_id case_id file_id model +"[-0.2024536281824112, 0.8700736165046692, 0.6367368102073669, 1.0295965671539307, 1.3029881715774536, 0.6979042291641235, 0.09141989797353745, -0.7052130103111267, 0.05628640949726105, -0.6558999419212341, -0.698043704032898, -8.845816612243652, -0.10774289071559906, -0.8967481255531311, 0.30785858631134033, -0.218824565410614, -0.1945626139640808, -0.6851598024368286, -0.2565596103668213, -0.1704675555229187, 0.17284531891345978, -0.6091238260269165, -0.13866744935512543, 0.21102923154830933, -0.2252902388572693, -0.6781346201896667, -0.34671345353126526, 0.4128320515155792, -0.8277935981750488, 1.1078327894210815, 0.6355611085891724, -0.5727114081382751, 1.2589396238327026, 0.4476923644542694, 0.34200647473335266, -0.1336929202079773, 0.1772320717573166, 1.1591079235076904, -1.5068682432174683, 0.02006017416715622, -0.6712247133255005, -0.5338364839553833, 5.475770473480225, -0.3881995379924774, 1.026019811630249, -0.117962546646595, -0.2552171051502228, -0.43384769558906555, -1.4432331323623657, -0.09555564075708389, 0.037277694791555405, -0.8553200960159302, -0.06689377129077911, -0.22948388755321503, -0.6298796534538269, 0.5966225266456604, -0.13349662721157074, -0.16505523025989532, -0.9155815243721008, -0.03902330994606018, 0.48878201842308044, 0.9861955642700195, -0.8381974697113037, -0.5137110352516174, -0.9829555749893188, 0.07967071980237961, 0.3077264726161957, 0.06789758056402206, 0.941411554813385, -0.42186906933784485, 0.5567692518234253, 0.38038623332977295, 0.46958717703819275, -0.3595823645591736, -0.5077025890350342, 0.13748227059841156, 0.11002576351165771, -0.16163720190525055, -0.18104378879070282, 1.0819607973098755, 0.8306452631950378, -0.44499292969703674, 0.5418969988822937, -1.1315350532531738, 0.3580150306224823, -0.07379359751939774, -0.6808024644851685, 0.3528731167316437, 0.04792550206184387, 0.12353166937828064, 0.8670023679733276, 0.08373359590768814, -0.41165003180503845, 0.727061927318573, 0.06704757362604141, 4.503935813903809, -0.8532129526138306, -0.594979465007782, 0.919654130935669, -0.23700065910816193, 0.5048814415931702, -0.4086969196796417, -0.4986532926559448, -0.06626451015472412, 1.1717911958694458, -0.07520367950201035, 0.06578060984611511, 0.3701489567756653, -0.9265334010124207, -0.3234957158565521, -0.05426352471113205, -0.3846246004104614, 1.1056557893753052, -1.1724191904067993, 1.147159218788147, 1.1236810684204102, -0.46618154644966125, -0.9549393057823181, -0.204567089676857, 1.1774815320968628, -0.6236163973808289, -0.5526822805404663, -0.6998738646507263, -0.5858327746391296, -0.2566048204898834, 0.8487930297851562, -0.37117043137550354, -1.3030366897583008, -8.013142585754395, -0.09955956786870956, -0.7133530378341675, 0.21573762595653534, 0.02987380139529705, 0.169014573097229, 0.858149528503418, -0.9776293039321899, -0.6704788208007812, -0.7800702452659607, -0.11321384459733963, -0.4539415240287781, 0.6066994071006775, -0.501072108745575, -0.04097514599561691, 0.44614145159721375, -0.07055798172950745, -0.4469953179359436, 0.25786444544792175, 0.3830481767654419, 0.2865692675113678, 0.5758309364318848, -0.7816569209098816, -0.16137219965457916, 0.07098924368619919, 1.0406609773635864, -0.25058403611183167, 0.2329045534133911, 0.3159070611000061, 0.011400481685996056, 1.1727708578109741, -0.6722333431243896, 0.0047455462627112865, 0.7064188122749329, 0.19687819480895996, -0.7298651337623596, -0.6731472611427307, -0.29894983768463135, -0.5114670395851135, 1.2121055126190186, 0.27098193764686584, -1.1139729022979736, -0.34051188826560974, 0.47438573837280273, -0.5396663546562195, -0.45061254501342773, -0.5249454379081726, -0.12127259373664856, -0.13513071835041046, -0.32455986738204956, 0.8758406043052673, -0.6840516924858093, -1.1088807582855225, -0.48474231362342834, 0.6212708950042725, 0.2537653148174286, 0.2028423398733139, -0.16007283329963684, -1.0832301378250122, -0.6427255272865295, 0.5219706892967224, -0.10779555141925812, 0.14352789521217346, 0.916231095790863, 0.6226103901863098, 0.3076702952384949, 1.5312645435333252, -0.33734557032585144, 0.41539466381073, 2.244152545928955, -0.13458096981048584, 0.3584960401058197, -0.20201975107192993, -0.8333280086517334, -0.6809530854225159, 0.14703354239463806, -0.4365242123603821, -0.33620592951774597, -0.18233400583267212, -0.22426031529903412, -0.5442564487457275, 0.4168570935726166, -0.5127552151679993, 3.5123233795166016, -0.3374885618686676, 0.7329320907592773, -0.09450151026248932, 0.14233481884002686, -0.8451797366142273, 0.4592364430427551, 0.462772011756897, 0.35650205612182617, -0.24574220180511475, 1.1549229621887207, 0.6380702257156372, 0.06404341012239456, 0.15603697299957275, -0.3920949101448059, 0.053627148270606995, -0.5836009383201599, 0.09549576044082642, 0.22595234215259552, 0.13617555797100067, 0.7152342796325684, 0.6793820261955261, 0.17555320262908936, 0.6218454837799072, 0.49658674001693726, -0.40870344638824463, -0.7512102127075195, -23.303945541381836, 0.405129611492157, 0.3400692045688629, 1.0545461177825928, 0.6485701203346252, -0.1535542607307434, 0.3560626208782196, 0.9628076553344727, -0.511151909828186, -0.6748654842376709, -0.6606578826904297, 0.11375259608030319, -0.9489352107048035, 0.017717955633997917, 0.5313513278961182, 0.08885449171066284, -0.20959705114364624, -0.5676986575126648]" /programs/dev/projects/testproject1 test_expr TCGA-05-4244 e0e055b6-6800-40e7-bde5-718823408f0c expr +"[-0.21098750829696655, 0.8999685049057007, 0.6318586468696594, 0.9548228979110718, 1.1571954488754272, 0.5339417457580566, 0.015891127288341522, -0.7026917338371277, 0.04075244814157486, -0.501552939414978, -0.6925984621047974, -8.84329605102539, -0.17547869682312012, -0.8503749966621399, 0.35973337292671204, -0.18932057917118073, -0.1361524760723114, -0.6625967621803284, -0.17621438205242157, -0.09718206524848938, 0.19409120082855225, -0.6379923224449158, -0.11429573595523834, 0.11196231096982956, -0.3210512101650238, -0.5825065970420837, -0.3804585933685303, 0.28380119800567627, -0.7360841035842896, 1.0406644344329834, 0.5594694018363953, -0.7057065963745117, 0.9364557862281799, 0.4513166546821594, 0.3793163299560547, -0.052856091409921646, 0.12097060680389404, 0.9977852702140808, -1.5820757150650024, -0.015619124285876751, -0.7463712692260742, -0.5128862261772156, 5.627805233001709, -0.21938584744930267, 0.8136599063873291, -0.12776827812194824, -0.25363442301750183, -0.4317783713340759, -1.3467893600463867, -0.060403794050216675, -0.07133190333843231, -0.8631917834281921, 0.10284103453159332, -0.2826472818851471, -0.6835200190544128, 0.5830567479133606, -0.14701218903064728, -0.17293046414852142, -0.8735769391059875, -0.02881273441016674, 0.4958131015300751, 0.8009231090545654, -0.6146762371063232, -0.5285926461219788, -1.0771533250808716, 0.04588151350617409, 0.49531662464141846, -0.008109393529593945, 0.8443883061408997, -0.35663866996765137, 0.493672639131546, 0.32184335589408875, 0.32491034269332886, -0.49845650792121887, -0.4785430431365967, 0.21482497453689575, -0.030081434175372124, -0.1669611930847168, -0.3055354952812195, 0.846930742263794, 0.6846902966499329, -0.30125686526298523, 0.4076782763004303, -1.0283879041671753, 0.4661460816860199, -0.033819761127233505, -0.7537416815757751, 0.316253125667572, -0.0694570243358612, 0.2559029459953308, 0.9326916933059692, 0.03079688921570778, -0.4796101152896881, 0.7880467176437378, 0.01598743349313736, 4.604737281799316, -0.7946133613586426, -0.60218745470047, 0.9114785194396973, -0.203228160738945, 0.3839750587940216, -0.5289739966392517, -0.3548987805843353, -0.10622496157884598, 1.0487390756607056, -0.06533420085906982, 0.038954026997089386, 0.2967875301837921, -0.7412417531013489, -0.20835258066654205, -0.09471746534109116, -0.44401687383651733, 1.0327143669128418, -1.156528115272522, 1.0757273435592651, 1.1195834875106812, -0.46774110198020935, -0.957853376865387, -0.13260038197040558, 0.9236862063407898, -0.3969095051288605, -0.4658750891685486, -0.7426497936248779, -0.4930476248264313, -0.24787543714046478, 0.8202536106109619, -0.30632510781288147, -1.1781182289123535, -7.877163887023926, -0.07271221280097961, -0.5372146368026733, 0.18621912598609924, 0.12073568254709244, 0.07463297247886658, 0.8108291625976562, -0.9223519563674927, -0.6309817433357239, -0.6578408479690552, 0.07499125599861145, -0.5412887334823608, 0.6223138570785522, -0.5474604964256287, -0.010487362742424011, 0.357033371925354, 0.009604593738913536, -0.5208069086074829, 0.28630656003952026, 0.3784124553203583, 0.31319937109947205, 0.5574952363967896, -0.7145376205444336, -0.2050650715827942, 0.1486707329750061, 0.8653070330619812, -0.23983126878738403, 0.24015524983406067, 0.28624221682548523, 0.025234851986169815, 1.0891348123550415, -0.6849644780158997, -0.12304974347352982, 0.5291566848754883, 0.013161289505660534, -0.7288368940353394, -0.819659948348999, -0.07023821771144867, -0.44113776087760925, 1.1510635614395142, 0.10622508078813553, -1.0366266965866089, -0.24243634939193726, 0.5044691562652588, -0.5722522735595703, -0.3900983929634094, -0.5652220845222473, -0.12726902961730957, -0.15129198133945465, -0.3334895670413971, 0.7730445265769958, -0.6162868738174438, -1.1096068620681763, -0.3452955186367035, 0.598288893699646, 0.2933443486690521, 0.2429751753807068, -0.08410166949033737, -1.0103445053100586, -0.7861214280128479, 0.3825986087322235, 0.0017218603752553463, 0.17548704147338867, 0.7665985226631165, 0.5564228892326355, 0.25235527753829956, 1.5576646327972412, -0.24013058841228485, 0.41295912861824036, 2.147568941116333, -0.03719283640384674, 0.42219817638397217, -0.1739833652973175, -0.918269693851471, -0.40959426760673523, 0.0812535509467125, -0.5178847312927246, -0.41967591643333435, -0.18595372140407562, -0.3035483658313751, -0.4409176707267761, 0.47509729862213135, -0.4413771629333496, 3.4691295623779297, -0.3347715735435486, 0.6793034076690674, -0.02919447422027588, 0.15440312027931213, -0.8538996577262878, 0.36942797899246216, 0.5017097592353821, 0.4127904176712036, -0.2941591441631317, 1.1199814081192017, 0.6906856894493103, 0.21696875989437103, 0.1365450769662857, -0.2862778604030609, 0.13433173298835754, -0.5796406865119934, 0.11482628434896469, 0.20783747732639313, 0.01924216002225876, 0.7123128175735474, 0.5298656225204468, 0.02135384827852249, 0.5972912311553955, 0.5447875261306763, -0.35572847723960876, -0.615318238735199, -22.96155548095703, 0.37506017088890076, 0.3466165065765381, 0.9703406095504761, 0.5376274585723877, -0.06218696013092995, 0.38869214057922363, 0.9537210464477539, -0.6253715753555298, -0.7197611927986145, -0.7357975840568542, 0.05801375210285187, -0.8393024206161499, -0.07725870609283447, 0.3304303288459778, -0.09361489862203598, -0.15228311717510223, -0.5184224247932434]" /programs/dev/projects/testproject1 test_expr TCGA-05-4249 258b0b5e-2b09-4378-9606-83955ca19d7c expr +"[-0.08159218728542328, 0.9297925233840942, 0.8675318956375122, 0.9550628662109375, 1.1664010286331177, 0.4701117277145386, 0.1496473103761673, -0.7088590860366821, 0.09415771812200546, -0.4715021848678589, -0.6972694396972656, -9.017582893371582, -0.15306243300437927, -0.8296961188316345, 0.453702837228775, -0.2149372398853302, -0.09869883954524994, -0.7066512703895569, -0.22567838430404663, -0.12875479459762573, 0.08049450814723969, -0.518451452255249, -0.1172652542591095, 0.14658060669898987, -0.3417757451534271, -0.5153712034225464, -0.3212258517742157, 0.18762685358524323, -0.6364091038703918, 1.0104631185531616, 0.5985503196716309, -0.7317988276481628, 1.0015889406204224, 0.47260409593582153, 0.4626551568508148, -0.03240814059972763, 0.07495437562465668, 0.9459090232849121, -1.47340726852417, 0.11717939376831055, -0.6601586937904358, -0.6007426381111145, 5.673951625823975, -0.28140968084335327, 0.9161562919616699, -0.12013081461191177, -0.3244413137435913, -0.3639639616012573, -1.4007046222686768, 0.04558860510587692, 0.030128540471196175, -0.8984534740447998, 0.05478091910481453, -0.22969898581504822, -0.589042067527771, 0.6735678315162659, -0.1529698371887207, -0.09354153275489807, -0.9179191589355469, -0.08367723971605301, 0.31423279643058777, 0.8066721558570862, -0.7147478461265564, -0.5473017692565918, -1.0659099817276, 0.014234657399356365, 0.48092958331108093, 0.06180460378527641, 0.855652391910553, -0.3076493740081787, 0.4615519642829895, 0.37695667147636414, 0.40593221783638, -0.41348496079444885, -0.5406474471092224, 0.14714892208576202, -0.05899986997246742, -0.018116701394319534, -0.4352986514568329, 0.9247257709503174, 0.7762712240219116, -0.29112815856933594, 0.4435715675354004, -0.9983264803886414, 0.46084460616111755, -0.08852344006299973, -0.653340220451355, 0.27742138504981995, -0.12678015232086182, 0.13700884580612183, 1.0323890447616577, -0.2091103047132492, -0.42427894473075867, 0.6968016624450684, 0.07748009264469147, 4.642029285430908, -0.6837109327316284, -0.487018883228302, 0.9232327938079834, -0.21586476266384125, 0.3875136077404022, -0.6418094038963318, -0.22685351967811584, -0.025400104001164436, 1.1424906253814697, -0.09404590725898743, 0.023089421913027763, 0.2015608549118042, -0.7274625301361084, -0.4316866397857666, -0.15329594910144806, -0.42585235834121704, 1.040328025817871, -1.0762522220611572, 0.9493504166603088, 1.094271183013916, -0.3284957706928253, -1.1043651103973389, -0.12146294862031937, 1.1392078399658203, -0.37308868765830994, -0.4437580108642578, -0.7425968050956726, -0.5292282104492188, -0.17621946334838867, 0.844396710395813, -0.2890729606151581, -0.9615684747695923, -8.0899658203125, 0.05813923478126526, -0.6225814819335938, 0.0439830981194973, 0.336849570274353, 0.13131099939346313, 0.7761361598968506, -0.9106371998786926, -0.6427183151245117, -0.6756482124328613, 0.16145360469818115, -0.4805813431739807, 0.5149089097976685, -0.5646109580993652, -0.05226101353764534, 0.34576576948165894, -0.00014376988110598177, -0.4307204782962799, 0.3113726079463959, 0.37194350361824036, 0.36263030767440796, 0.4650290906429291, -0.7471160888671875, -0.258705735206604, 0.18525397777557373, 0.8892170786857605, -0.2783876657485962, 0.14580291509628296, 0.4229099452495575, 0.12832656502723694, 0.9776595830917358, -0.7017229199409485, -0.19710275530815125, 0.5176953077316284, 0.1247771680355072, -0.7785195112228394, -0.7676244378089905, -0.11234674602746964, -0.4583059251308441, 1.2140597105026245, 0.0868801698088646, -1.0702612400054932, -0.04567829146981239, 0.4971276819705963, -0.5466195344924927, -0.3926737606525421, -0.5234888792037964, -0.16254140436649323, -0.13623082637786865, -0.4019322991371155, 0.8552954196929932, -0.6810445785522461, -0.9698832035064697, -0.3847764730453491, 0.619861364364624, 0.46173256635665894, 0.15726806223392487, -0.1295337826013565, -1.059167504310608, -0.7241351008415222, 0.5557236671447754, -0.02267739363014698, 0.19252197444438934, 0.9193068146705627, 0.6690359711647034, 0.20777595043182373, 1.5028756856918335, -0.23428480327129364, 0.45594772696495056, 2.216400623321533, -0.08736343681812286, 0.26350170373916626, -0.2705765664577484, -1.0567982196807861, -0.43979740142822266, 0.152920663356781, -0.5294412970542908, -0.3907485604286194, -0.21866735816001892, -0.37465694546699524, -0.5854174494743347, 0.4321836829185486, -0.3825376033782959, 3.49379825592041, -0.3446476459503174, 0.7121657729148865, -0.08704239875078201, 0.09967551380395889, -0.9659140706062317, 0.42542487382888794, 0.4081141948699951, 0.42391738295555115, -0.2898607850074768, 1.2063814401626587, 0.5166946649551392, 0.2602227032184601, 0.15276014804840088, -0.33307766914367676, 0.23433157801628113, -0.5961370468139648, 0.011641307733952999, 0.24419128894805908, -0.0030077688861638308, 0.7954489588737488, 0.605821967124939, 0.009385609067976475, 0.6710580587387085, 0.4909551441669464, -0.38182520866394043, -0.6414607167243958, -22.988805770874023, 0.4145936667919159, 0.40074825286865234, 1.0389455556869507, 0.4819827377796173, 0.07063639909029007, 0.3892967104911804, 0.9913773536682129, -0.675666332244873, -0.5891161561012268, -0.6529443860054016, 0.0013843694468960166, -0.8572033643722534, -0.011388090439140797, 0.38122880458831787, -0.057044703513383865, -0.13881278038024902, -0.5632729530334473]" /programs/dev/projects/testproject1 test_expr TCGA-05-4250 f0395da6-5f12-4a35-8aa6-0b1b47a2acba expr \ No newline at end of file diff --git a/tests/embeddings_tests/test_hist.tsv b/tests/embeddings_tests/test_hist.tsv index 56616f6b3..d89a0d173 100644 --- a/tests/embeddings_tests/test_hist.tsv +++ b/tests/embeddings_tests/test_hist.tsv @@ -1,4 +1,4 @@ -embedding authz collection_name collection_id case_id file_id model -[-0.13619163632392883, -0.21455396711826324, 0.19904975593090057, -0.7322291135787964, -0.20747500658035278, -0.38388097286224365, -0.11370210349559784, 0.08014384657144547, 0.13199090957641602, -0.09070850163698196, -0.1228351965546608, -0.13866069912910461, 0.1603187471628189, 0.18289460241794586, 0.015696357935667038, -0.07892560213804245, 0.30034101009368896, 0.5045534372329712, 0.30817267298698425, 0.09720676392316818, 0.03871489316225052, 0.7900959849357605, -0.2474665343761444, -0.2625487744808197, -0.22774933278560638, 0.005736266728490591, 0.11178507655858994, 0.3571614921092987, 0.030263446271419525, -0.19654563069343567, -0.09502054005861282, -0.06004258617758751, 0.09894454479217529, 0.1697264015674591, -0.004628920927643776, 0.29070955514907837, 0.11792268604040146, -0.02719276398420334, 0.28063687682151794, 0.0576934851706028, 0.10009155422449112, -0.022250866517424583, 0.011217284947633743, -0.8231900334358215, -0.38298165798187256, 0.11350670456886292, 0.2858494520187378, -0.049299102276563644, 0.24719449877738953, 0.28902754187583923, 0.22409386932849884, 0.3357539474964142, 0.040568768978118896, -0.082320936024189, -0.03029692731797695, 0.13976004719734192, 0.457918643951416, -0.3430088758468628, 0.15408872067928314, 0.015120175667107105, 0.59786057472229, -0.06896495074033737, -0.10178735107183456, 0.1636393517255783, -0.05638265982270241, 0.09943421185016632, -0.30467966198921204, -0.07455725222826004, -0.35063573718070984, 0.11944466084241867, -0.3203461170196533, 0.00832172017544508, -0.022712262347340584, 0.1615058183670044, 0.3227720260620117, -0.3073139488697052, 0.30251505970954895, 0.17196878790855408, 0.5516959428787231, 0.17086449265480042, -0.10866858810186386, -0.3008887469768524, -0.7729673981666565, -0.15479052066802979, 0.0795634463429451, 0.2085164487361908, 0.056021250784397125, -0.2609158754348755, -0.11129969358444214, -0.10689205676317215, 0.2835356593132019, 0.09036347270011902, -0.3405427634716034, -0.10925803333520889, 0.051332250237464905, 0.16573059558868408, 0.0712144672870636, 0.05430306866765022, 0.21205811202526093, -0.09039133042097092, 0.3926528990268707, 0.4695168137550354, -0.010591994039714336, 0.15633617341518402, -0.35860419273376465, 0.3162543773651123, 0.12618014216423035, 0.07653821259737015, 0.13337498903274536, 0.5850751996040344, -0.06050882861018181, 0.3985886573791504, -0.011202647350728512, 0.1266166865825653, -0.03786696121096611, -0.490255206823349, 0.14621229469776154, -0.13141314685344696, -0.1921333372592926, 0.1267978847026825, 0.2065344899892807, 0.23042449355125427, 0.11008061468601227, 0.03978215530514717, 0.06473101675510406, -0.3002535402774811, 0.20333871245384216, -0.42222926020622253, 0.2894158661365509, 0.10730931907892227, 0.13396768271923065, -0.13127906620502472, 0.1742572784423828, -0.1816381812095642, 0.7518298625946045, -0.3155418038368225, -0.08807142078876495, 0.06066034361720085, -0.18648146092891693, 0.22751878201961517, 0.2598530054092407, -0.211373433470726, 0.06741373240947723, 0.06564345210790634, -0.19972047209739685, 0.17044158279895782, -0.2503531575202942, -0.0467257983982563, 0.2313777506351471, 0.15031486749649048, -0.08136433362960815, 0.02198443002998829, -0.06234657019376755, -0.0005442240508273244, 0.25390326976776123, -0.3272538185119629, -0.02667154371738434, -0.003700706409290433, -0.01131089311093092, 0.1363588273525238, 0.3406217396259308, 0.061808474361896515, 0.1887376755475998, 0.15029311180114746, -0.155809223651886, -0.5798382759094238, 0.1244431659579277, 0.16102993488311768, -0.22609427571296692, -0.22439517080783844, -0.13910835981369019, 0.5062546133995056, -0.23312966525554657, -0.02127399854362011, -0.2682431638240814, 0.4208739101886749, 0.07847361266613007, -0.22065462172031403, 0.0489187054336071, 0.012171381153166294, 0.07565643638372421, 0.03378574922680855, 0.07826809585094452, -0.15103262662887573, 0.07668288052082062, -0.3512359857559204, -0.2517634630203247, -0.37329286336898804, 0.5600566267967224, -0.22710606455802917, -0.3183908760547638, -0.198636993765831, -0.07363607734441757, 0.19194303452968597, 0.023174533620476723, -0.11117152869701385, -0.17696185410022736, -0.3306180238723755, 0.17830072343349457, 0.4601685404777527, 0.04995455965399742, -0.10633940994739532, 0.3732711970806122, -0.01176505908370018, 0.15522372722625732, 0.42192596197128296, 0.215399831533432, -0.09421893209218979, 0.5698329210281372, 0.12957799434661865, -0.2110569030046463, -0.1497240513563156, 0.032844483852386475, -0.06190287321805954, 0.055545300245285034, 0.049898479133844376, 0.3039413094520569, -0.4425290822982788, 0.1171792596578598, 0.33214566111564636, -0.2943495213985443, -0.08851000666618347, 0.15474149584770203, 0.08276538550853729, 0.22111622989177704, -0.17042097449302673, -0.16402217745780945, 0.02145359106361866, -0.03135351464152336, -0.23901303112506866, 0.20249958336353302, 0.03044889308512211, 0.13001857697963715, -0.26353588700294495, -0.4074971675872803, -0.12158506363630295, -0.05350325629115105, -0.20451924204826355, 0.05683857202529907, -0.1453418880701065, -0.2810852527618408, -0.39443764090538025, -0.006406807340681553, -0.16298580169677734, -0.08428455889225006, 0.2137300968170166, -0.31682416796684265, 0.2983298897743225, 0.01499616727232933, -0.5899606347084045, -0.08135920763015747, -0.01516257505863905, -0.10161872953176498, 0.48903313279151917, -0.06523187458515167, 0.3205021917819977, 0.28987157344818115, -0.3129703402519226, 0.32169750332832336, 0.13514961302280426, 0.20399056375026703, 0.18280917406082153, -0.2029438614845276, -0.24423126876354218, 0.371031790971756, 0.0830804631114006, -0.00032055636984296143, -0.05676300823688507, 0.027420716360211372, -0.050030194222927094, -0.6031910181045532, -0.22547000646591187, 0.29630765318870544, -0.310491681098938, -0.2616253197193146, -0.0737868919968605, -0.4164172112941742, -0.04355514422059059, 0.046454332768917084, 0.2820219397544861, 0.07794466614723206, 0.02371070720255375, -0.007886583916842937, -0.2522351145744324, -0.5675255060195923, -0.28571292757987976, 0.03871678188443184, 0.02874898351728916, 0.08730119466781616, 0.06927260011434555, -0.3481995463371277, 0.2345798760652542, 0.1022268608212471, -0.12228067219257355, 0.4421916604042053, 0.24783538281917572, 0.026187295094132423, -0.14107008278369904, -0.18193556368350983, 0.07918474823236465, -0.23297975957393646, -0.17904795706272125, 0.16615113615989685, -0.5413036346435547, -0.3441251516342163, 0.01967940293252468, 0.4133264720439911, -0.10110588371753693, 0.14991915225982666, -0.3386097252368927, -0.32271498441696167, 0.12008024752140045, 0.3604337275028229, 0.2540026009082794, 0.13660527765750885, -0.11767939478158951, 0.15431243181228638, 0.048581693321466446, 0.47075003385543823, 0.14045318961143494, 0.18157149851322174, 0.27502205967903137, -0.36342740058898926, -0.04355493560433388, -0.7715284824371338, -0.10391094535589218, 0.3045954704284668, 0.25810304284095764, 0.002234158804640174, 0.3483503758907318, 0.045933082699775696, -0.04138527065515518, 0.03892790526151657, 0.3182721734046936, 0.15775437653064728, 0.33006736636161804, 0.18388590216636658, 0.14602969586849213, -0.22788234055042267, 0.5329877138137817, 0.3842070698738098, -0.5173192024230957, 0.19824352860450745, -0.12635645270347595, 0.20640596747398376, 0.058951154351234436, 0.16807174682617188, -0.24966749548912048, -0.2868064045906067, 0.2118798941373825, -0.12786811590194702, 0.23673447966575623, 0.3310508131980896, 0.04077959433197975, 0.13272826373577118, -0.27262064814567566, -0.33139586448669434, 0.10821441560983658, 0.06734877824783325, 0.10241713374853134, -0.3355989158153534, 0.2068301886320114, 0.7503467798233032, -0.176081120967865, -0.19849106669425964, 0.3191021978855133, -0.31948918104171753, 0.016096213832497597, -0.10462456196546555, 0.35823506116867065, -0.24661169946193695, 0.2123555690050125, -0.06384176760911942, 0.014302048832178116, 0.07708126306533813, 0.10311921685934067, -0.05363418534398079, -0.16802522540092468, -0.33337676525115967, -0.04821903258562088, -0.21406961977481842, 0.003775498829782009, -0.3285370171070099, -0.16028766334056854, -0.36025717854499817, -0.23169894516468048, 0.048434626311063766, -0.2835023105144501, -0.1484088897705078, 0.08359990268945694, -0.18375591933727264, -0.4997631311416626, 0.28572800755500793, 0.05986013635993004, 0.6135467290878296, -0.13576970994472504, 0.007165468297898769, -0.23313559591770172, -0.2611614763736725, 0.043965913355350494, 0.11779136210680008, 0.17879915237426758, 0.15815097093582153, 0.10637246817350388, -0.3130263686180115, -0.3333944082260132, 0.016973305493593216, -0.0984543189406395, 0.24737341701984406, 0.7037586569786072, -0.42391133308410645, 0.11579998582601547, -0.19347721338272095, 0.05079898610711098, -0.32136568427085876, -0.05476074293255806, -0.5136941075325012, 0.27124467492103577, 0.28956741094589233, 0.12493069469928741, -0.03193524852395058, -0.09017448872327805, -0.7023348212242126, -0.0530768521130085, -0.10993587970733643, -0.08316690474748611, -0.07282934337854385, -0.03794693574309349, 0.26755839586257935, 0.027168015018105507, 0.20549479126930237, -0.19288314878940582, -0.029254306107759476, 0.47911444306373596, 0.28702613711357117, 0.33229175209999084, -0.06924732029438019, 0.22287894785404205, -0.437335729598999, 0.2145777940750122, -0.07947006821632385, 0.015287824906408787, 0.27526143193244934, -0.23339954018592834, 0.25263819098472595, 0.30602502822875977, -0.03868090733885765, -0.08396679162979126, 0.03333088010549545, 0.025831522420048714, 0.042922984808683395, -0.2649041712284088, -0.12866364419460297, 0.4154479205608368, 0.008601987734436989, -0.32621681690216064, 0.051323432475328445, -0.21316225826740265, -0.2801886200904846, 0.07288748025894165, -0.39330342411994934, 0.05925355479121208, 0.2642344534397125, -0.13519889116287231, 0.2041570097208023, 0.0499805323779583, 0.3549205958843231, -0.13178445398807526, 0.16752994060516357, -0.2913111746311188, -0.4054122567176819, -0.41404610872268677, 0.11061812937259674, -0.20719417929649353, -0.44016698002815247, -0.2849007248878479, 0.30006691813468933, -0.018827009946107864, -0.08288103342056274, 0.4069344699382782, -0.22353146970272064, -0.16073691844940186, 0.010194769129157066, 0.09967052191495895, -0.03117315098643303, 0.1842065006494522, 0.4396534562110901, 0.48006945848464966, 0.23076677322387695, 0.0718982145190239, -0.051829587668180466, 0.026281338185071945, -0.10028132796287537, 0.39268019795417786, 0.5847302079200745, -0.42348185181617737, -0.12730634212493896, 0.023421745747327805, -0.12645764648914337, 0.14978112280368805, -0.08727137744426727, -0.3895256221294403, -0.316405713558197, -0.14457733929157257, -0.05037292465567589, 0.16811145842075348, -0.0068750022910535336, -0.04583144560456276, 0.055451758205890656, 0.2139507532119751, 0.24581369757652283, 0.051586177200078964, -0.04901115968823433, 0.022214720025658607, -0.14300978183746338, 0.011116554029285908, 0.15016435086727142, 0.19437232613563538, -0.06755264848470688, 0.14295338094234467, -0.16013970971107483, -0.3141442835330963, -0.6935772895812988, -0.04716052487492561, 0.2002415508031845, -0.13493108749389648, 0.12367360293865204, -0.17895688116550446, -0.14932569861412048, -0.35737666487693787, 0.5385494232177734, -0.06187208369374275, -0.183836430311203, 0.2127377986907959, 0.29950451850891113, 0.16212120652198792, 0.43783873319625854, 0.3685432970523834, -0.12594620883464813, -0.20556841790676117, 0.13593435287475586, 0.01927170902490616, -0.10175804793834686, -0.4503883123397827, -0.11516934633255005, -0.1086796298623085, 0.3705168068408966, 0.16524480283260345, -0.41593724489212036, 0.29816585779190063, -0.07389909029006958, -0.19603270292282104, 0.5288832187652588, -0.0272569190710783, -0.1651505082845688, -0.009595193900167942, 0.3541204631328583, -0.05164288729429245, -0.1209789291024208, -0.01750762388110161, 0.15428107976913452, 0.23434418439865112, 0.1295781284570694, 0.25713831186294556, -0.4551621377468109, -0.10759461671113968, 0.12405644357204437, 0.0867907926440239, 0.06641197949647903, -0.12753744423389435, 0.08885318040847778, -0.6430838108062744, 0.4151393473148346, -0.17206618189811707, -0.5653821229934692, 0.07282427698373795, -0.2211044430732727, 0.032256290316581726, 0.09638577699661255, 0.05898178741335869, 0.6551027894020081, -0.3242684304714203, -0.07226765900850296, -0.38605162501335144, 0.156418576836586, -0.12792056798934937, 0.34035444259643555, -0.027110766619443893, -0.22680765390396118, 0.09260367602109909, 0.2426684945821762, 0.10937651246786118, 0.09206648170948029, 0.13083621859550476, 0.02126624993979931, -0.34407469630241394, 0.17361615598201752, -0.028531432151794434, -0.3000500798225403, 0.08806441724300385, 0.07798617333173752, 0.2239457070827484, 0.016937311738729477, -0.3390747308731079, 0.17559769749641418, -0.3608980178833008, -0.19822733104228973, -0.07195188105106354, 0.11879222840070724, 0.14618857204914093, -0.12466689199209213, -0.13657140731811523, -0.13281166553497314, 0.22050292789936066, -0.3009953200817108, -0.537128210067749, 0.19701941311359406, 0.10446779429912567, 0.18038469552993774, -0.17139066755771637, -0.050174176692962646, 0.166202113032341, -0.14329668879508972, 0.11729782074689865, -0.3493359088897705, 0.2503286898136139, 0.3089194595813751, -0.016438797116279602, 0.07706340402364731, 0.44491854310035706, -0.1363639086484909, -0.002081255428493023, -0.10974713414907455, -0.439660906791687, -0.25485965609550476, -0.25393858551979065, 0.23615843057632446, 0.3185696303844452, -0.0991637334227562, -0.6783620119094849, 0.28599491715431213, -0.0650508850812912, 0.3825238347053528, -0.23798768222332, 0.16778427362442017, -0.017053239047527313, 0.1405486762523651, 0.15579275786876678, 0.4309048652648926, -0.021374113857746124, 0.22380490601062775, -0.07759618014097214, 0.6303173303604126, 0.3961448669433594, -0.07191861420869827, -0.28081274032592773, 0.2687394917011261, 0.36797797679901123, -0.09518682211637497, 0.30845972895622253, 0.40513885021209717, -0.4401806890964508, 0.004827945958822966, -0.025697708129882812, -0.09196799248456955, 0.3173166811466217, 0.12207353860139847, 0.20884841680526733, -0.2470785230398178, -0.14184780418872833, 0.3342713713645935, -0.2296101450920105, 0.29883623123168945, 0.37206220626831055, 0.5312644839286804, -0.5501095652580261, 0.14557676017284393, -0.02214314043521881, -0.21307845413684845, 0.3564952313899994, 0.003560830606147647, -0.02678876928985119, -0.20582637190818787, 0.21193663775920868, 0.06956902891397476, -0.0013655874645337462, -1.0017154216766357, 0.14295420050621033, 0.2083408236503601, 0.3976875841617584, -0.05113891512155533, -0.22922095656394958, -0.45190155506134033, 0.020273303613066673, -0.30741381645202637, 0.1067364364862442, 0.13178490102291107, -0.46520528197288513, -0.18012867867946625, 0.25355643033981323, 0.5920997858047485, -0.17427343130111694, -0.14466014504432678, 0.34655794501304626, 0.109133280813694, -0.142724871635437, -0.353507399559021, 0.20620334148406982, -0.0443284809589386, -0.5107755661010742, -0.2889707684516907, 0.2509182393550873, 0.04229699447751045, -0.006218012887984514, -0.004723066929727793, -0.27007266879081726, 0.08344941586256027, -0.3217526376247406, -0.1256924569606781, 0.10797256976366043, 0.03779580816626549, 0.07700921595096588, -0.39483779668807983, 0.11552585661411285, 0.15427348017692566, -0.3510657250881195, 0.026830248534679413, -0.08745250850915909, -0.26131585240364075, -0.06087970361113548, -0.2696974277496338, 0.17155523598194122, -0.18538162112236023, 0.1804814636707306, 0.07627451419830322, -0.06447825580835342, 0.19929474592208862, -0.0012710702139884233, -0.40467923879623413, -0.44666168093681335, 0.245143324136734, -0.07293592393398285, 0.22865083813667297, -0.11857031285762787, 0.09880474954843521, -0.4442938268184662, -0.1693267524242401, 0.01051510963588953, -0.13203489780426025, -0.14027327299118042, -0.30844467878341675, 0.41983020305633545, -0.2639099657535553, -0.15044397115707397, 0.07540830969810486, -0.3498375713825226, 0.24299727380275726, 0.037235651165246964, -0.2801334261894226, -0.06464609503746033, 0.20247022807598114, 0.291277676820755, 0.3522090017795563, 0.37669065594673157, 0.2151554822921753, 0.008423964492976665, 0.12531021237373352, -0.020887883380055428, -0.08772056549787521, 0.3360171616077423, 0.1931668221950531, -0.05623703822493553, -0.04473751038312912, 0.4198928773403168, -0.27891892194747925, 0.21430036425590515, 0.011041484773159027, 0.035451389849185944, 0.4829634428024292, 0.3180229365825653, -0.1797255426645279, 0.1616518795490265, -0.31403085589408875, -0.2968966066837311, 0.11879260838031769, 0.16674791276454926, -0.11657661199569702, -0.27510640025138855, -0.1483294516801834, -0.2689549922943115, -0.16359415650367737, 0.20336729288101196, -0.19138619303703308, 0.3793902099132538, 0.12826086580753326, -0.30366250872612, 0.4165387451648712, 0.20091216266155243, -0.4823826253414154, -0.5591259002685547, -0.06899750977754593, 0.13070595264434814, -0.1099398136138916, -0.1829984188079834, -0.5351876616477966, -0.3916684091091156, -0.020701870322227478, -0.0792737677693367, -0.09904210269451141, 0.11358124762773514, -0.22162170708179474, 0.0736636221408844, -0.36650630831718445, 0.005426289979368448, -0.13107913732528687, 0.06725769490003586, -0.10634353756904602, -0.017909996211528778, -0.4429837465286255, 0.0802900493144989, 0.08115105330944061, -0.020475024357438087, 0.1864004284143448, -0.48622533679008484, 0.4676464796066284, 0.046773217618465424, -0.08716289699077606, -0.3067760169506073, -0.07883217185735703, -0.18893946707248688, -0.14515374600887299, 0.3306143283843994, -0.20309369266033173, -0.09522762894630432, 0.5461639761924744, 0.07503576576709747, 0.09279026091098785, 0.0554102398455143, 0.20247021317481995, 0.03500372916460037, 0.2722071707248688, 0.37366849184036255, -0.08184777945280075, -0.27849557995796204, -0.25112640857696533, 0.28018179535865784, 0.06821026653051376, 0.10126983374357224, -0.05918256565928459, -0.4940266013145447, 0.0017728687962517142, 0.49077385663986206, -1.673754013609141e-05, 0.8307745456695557, 0.16179658472537994, 0.010699109174311161, -0.23170194029808044, -0.24595020711421967, 0.027390412986278534, -0.3581514060497284, -0.1960878223180771, -0.2591889798641205, 0.35527515411376953, 0.1981356143951416, -0.03243666887283325, -0.052239228039979935, 0.04459287226200104, 0.09865497052669525, 0.062382280826568604, 0.03410651162266731, -0.12804344296455383, -0.0955657809972763, 0.24981319904327393, -0.14995890855789185, -0.08789347857236862, -0.22108213603496552, 0.6477357149124146, 0.05948695167899132, -0.0013020458864048123, -0.14478245377540588, -0.10162802040576935, -0.18770484626293182, 0.42127525806427, -0.13320617377758026, -0.26542043685913086, 0.2214445024728775, -0.28086331486701965, -0.06943336874246597, 0.20831359922885895, 0.5824766159057617, 0.04717540368437767, -0.3485977351665497, -0.4551500380039215, 0.3270510137081146, 0.4360038936138153, -0.133524551987648, 0.04302158206701279, -0.5200232863426208, 0.1703980416059494, -0.3472457826137543, -0.34007319808006287, 0.1525660902261734, 0.24671946465969086, -0.09666458517313004, -0.20956924557685852, 0.5009846091270447, 0.48897048830986023, 0.34427395462989807, 0.03438800200819969, 0.4378933012485504, 0.3610312342643738, 0.25565677881240845, -0.1915222853422165, -0.19455517828464508, 0.2570732533931732, -0.12297949939966202, 0.2008049190044403, -0.3176330327987671, 0.04897695779800415, 0.33858054876327515, 0.255271315574646, -0.4099518060684204, 0.17839008569717407, -0.14114083349704742, -0.4128485321998596, 0.6207808256149292, 0.1438528597354889, -0.034666527062654495, -0.004629121161997318, -0.040469031780958176, -0.32407474517822266, 0.24205222725868225, -0.04464956372976303, -0.07351381331682205, 0.27719008922576904, 0.044548191130161285, 0.07693920284509659, -0.26574981212615967, 0.07457588613033295, -0.10288099944591522, 0.1616092324256897, 0.0008499556570313871, 0.010317208245396614, -0.029047802090644836, 0.10925765335559845, 0.06724555790424347, -0.02134760282933712, 0.5089980363845825, -0.23909848928451538, -0.031195908784866333, 0.08493299037218094, 0.10108911246061325, -0.027157960459589958, -0.6483813524246216, 0.13199301064014435, -0.4433157742023468, 0.426561176776886, 0.42734766006469727, -0.15802784264087677, 0.1851949244737625, 0.02537107840180397, 0.0017911563627421856, 0.009391541592776775, -0.02312053181231022, 0.047721654176712036, -0.3829943835735321, 0.3632252812385559, 0.10577026754617691, 0.16868549585342407, 0.09747891873121262, -0.3058302700519562, -0.13209503889083862, -0.5285876393318176, 0.327184796333313, -0.1373886913061142, -0.24120278656482697, -0.019409222528338432, -0.15943869948387146, 0.1853874772787094, 0.030322378501296043, 0.23369100689888, 0.13034631311893463, -0.4953719973564148, 0.24964505434036255, 0.06352484971284866, 0.011157060042023659, 0.16255243122577667, -0.20308013260364532, -0.09787280112504959, 0.4601946771144867, -0.4126228392124176, 0.2192707359790802, -0.09963654726743698, -0.011251715011894703, -0.6253619194030762, -0.014829280786216259, 0.4592786729335785, -0.5262800455093384, -0.10997114330530167, -0.3031928539276123, 0.3229408860206604, -0.02714027278125286, 0.14466550946235657, -0.14022547006607056, 0.08944088220596313, 0.009215615689754486, 0.12491524964570999, -0.1451457291841507, 0.5279695987701416, 0.19090862572193146, -0.032220277935266495, -0.0450911745429039, -0.11792629212141037, 0.47441884875297546, -0.12856173515319824, 0.47831904888153076, 0.26828476786613464, 0.033580232411623, 0.6595548987388611, -0.5277701020240784, 0.2743629217147827, 0.03762684762477875, -0.04124370962381363, -0.32621514797210693, -0.025640670210123062, 0.4473482370376587, -0.19715140759944916, 0.014141401275992393, -0.32334959506988525, -0.01217272225767374, 0.22715924680233002, -0.5643863677978516, -0.29881832003593445, -0.4393872320652008, 0.05747051537036896, 0.08029834181070328, -0.2593574523925781, 0.23238736391067505, 0.2748798727989197, 0.30046430230140686, -0.12064727395772934, -0.38059061765670776, 0.06249146908521652, 0.16280439496040344, -0.10944411158561707, 0.18998953700065613, -0.1193394660949707, -0.4412041902542114, 0.07867961376905441, 0.5528861284255981, 0.2258969247341156, 0.00149339041672647, -0.1079452633857727, 0.08489993214607239, -0.17900879681110382, -0.10834188759326935, -0.2405012995004654, -0.050843387842178345, 0.34632495045661926, -0.12787722051143646, 0.20573844015598297, 0.07321105897426605, 0.038020458072423935, 0.04135823994874954, -0.12257841974496841, -0.21297793090343475, -0.27843114733695984, -0.11249221861362457, 0.11343549937009811, 0.030272580683231354, 0.11814041435718536, 0.24708051979541779, -0.22547350823879242, 0.006495098117738962, -0.323726087808609, 0.35775044560432434, 0.0352935865521431, 0.2457597255706787, 0.08246707916259766, 0.11620745807886124, 0.075604647397995, -0.34140121936798096, -0.4873569905757904, 0.09786461293697357, 0.03008934110403061, -0.2812436819076538, -0.04632607474923134, 0.08939728885889053, 0.2879575788974762, 0.011369394138455391, 0.05829090252518654, -0.04209045320749283, -0.3088327944278717, -0.404377818107605, 0.24061299860477448, -0.02940729446709156, -0.08857455104589462, 0.007070634514093399, 0.3669866621494293, 0.27949053049087524, -0.11974546313285828, -0.23507943749427795, -0.6651568412780762, -0.5054942965507507, -0.0637102946639061, 0.06928432732820511, 0.056403350085020065, 0.11262659728527069, -0.05397627875208855, -0.13293498754501343, -0.33693352341651917, -0.5204522609710693, 0.051677968353033066, 0.19370579719543457, 0.005065851379185915, -0.12048456817865372, 0.5005565881729126, 0.08575940877199173, 0.664306104183197, 0.15308506786823273, -0.00485055148601532, 0.05724763870239258, 0.44767534732818604, -0.14968529343605042, -0.031321365386247635, -0.1953427791595459, -0.06485230475664139, 0.5394757390022278, -0.06912385672330856, 0.10903144627809525, 0.1915155053138733, -0.4465932846069336, 0.20043353736400604, 0.004394493531435728, 0.12381678819656372, 0.09104294329881668, -0.2193942666053772, 0.46530282497406006, -0.1561872363090515, 0.06433597207069397, -0.83806312084198, -0.2554435431957245, 0.17223292589187622, -0.1984213888645172, -0.2454066127538681, -0.2168627828359604, 0.016334444284439087, 0.08545277267694473, 0.204039067029953, 0.2784389555454254, -0.10864786803722382, -0.14582911133766174, 0.08950447291135788, -0.36141806840896606, 0.28031790256500244, -0.08908936381340027, -0.07013627886772156, -0.07945509999990463, 0.21175798773765564, 0.15649613738059998, -0.13772769272327423, 0.12260802835226059, 0.10800894349813461, -0.11095339804887772, -0.03231760114431381, -0.1771053522825241, -0.15047197043895721, 0.017589576542377472, 0.27722224593162537, 0.002284700982272625, -0.08450799435377121, 0.11237179487943649, 0.139027401804924, 0.21645034849643707, -0.08145591616630554, -0.13719098269939423, -0.21261122822761536, 0.21265089511871338, 0.20396070182323456, 0.27343782782554626, 0.6513700485229492, -0.10917636007070541, -0.34408438205718994, 0.3028919994831085, 0.1310950517654419, -0.007243616506457329, -0.23672346770763397, 0.07199019938707352, -0.33759552240371704, -0.1100301668047905, 0.13933272659778595, 0.02709432877600193, 0.18965446949005127, 0.34456372261047363, -0.410631000995636, 0.2563808262348175, -0.03682463988661766, -0.4284466505050659, -0.050629112869501114, 0.2639903128147125, -0.4017064869403839, -0.16282130777835846, -0.24099363386631012, -0.07146590948104858, -0.1939517706632614, 0.05016815662384033, -0.2901114523410797, -0.011766009032726288, -0.7107430100440979, 0.14686809480190277, 0.2707972228527069, 0.13459861278533936, 0.06654944270849228, -0.4258749783039093, 0.26626837253570557, 0.24031555652618408, 0.41911089420318604, 0.19121518731117249, 0.1144581139087677, -0.30101633071899414, 0.47830432653427124, -0.07763273268938065, -0.25798988342285156, -0.1738377958536148, 0.2123834490776062, 0.28882113099098206, 0.07228468358516693, -0.008954609744250774, 0.27546337246894836, -0.0563528798520565, 0.24471290409564972, -0.01726970262825489, -0.20932388305664062, -0.004007826093584299, 0.03214631602168083, 0.04189253970980644, 0.23238493502140045, -0.04174110293388367, -0.013541826978325844, -0.09672720730304718, -0.09465448558330536, -0.040054090321063995, -0.11021718382835388, 0.31112995743751526, -0.2688223123550415, 0.2477252036333084, -0.07818911969661713, -0.22373034060001373, 0.22132465243339539, -0.06882433593273163, -0.2011108249425888, 0.10379969328641891, -0.2590133845806122, -0.05810712277889252, -0.35644224286079407, -0.10391082614660263, 0.25796210765838623, 0.16973620653152466, -0.21880172193050385, 0.06563743203878403, -0.06621408462524414, -0.04147668927907944, 0.1610260009765625, 0.4522942900657654, -0.18368278443813324, -0.29403772950172424, 0.11933279037475586, -0.15770846605300903, 0.23785455524921417, 0.029588697478175163, 0.16351917386054993, 0.020317960530519485, -0.0958269014954567, 0.11732586473226547, 0.3808238208293915, -0.15338709950447083, -0.1023205891251564, 0.08464653789997101, -0.08618627488613129, 0.011690479703247547, -0.31300005316734314, 0.45681387186050415, -0.2165272831916809, 0.04900144040584564, 0.29485732316970825, -0.07080733776092529, -0.34731966257095337, -0.10053610801696777, -0.2069302797317505, 0.2711080014705658, 0.007000169716775417, 0.3532405495643616, 0.017668042331933975, 0.1747308373451233, -0.9204283952713013, -0.008846400305628777, 0.1593906730413437, 0.37479397654533386, -0.05994372069835663, -0.10788340121507645, -0.5408215522766113, -0.21450303494930267, 0.1844348907470703, 0.3712220788002014, -0.5244972109794617, 0.21920490264892578, -0.18295031785964966, -0.4185578525066376, 0.4772205054759979, -0.024221433326601982, -0.28273844718933105, 0.08534568548202515, -0.33286258578300476, -0.2139756828546524, 0.20188771188259125, 0.2881448268890381, -0.08443035185337067, 0.14149117469787598, -0.026707151904702187, -0.2884756028652191, -0.11193034052848816, -0.10010965168476105, -0.1330394297838211, 0.13657276332378387, 0.032110545784235, 0.2865040898323059, -0.2561400830745697, 0.2830524742603302, -0.4084112048149109, 0.030835049226880074, 0.02094278857111931, -0.03892127051949501, -0.15654423832893372, 0.04423876479268074, 0.24534250795841217, -0.048340898007154465, -0.07991266250610352, -0.01717361994087696, -0.21523281931877136, -0.10047358274459839, -0.33454304933547974, -0.46917515993118286, 0.17774121463298798, 0.1645563244819641, 0.13212725520133972, 0.056731436401605606, 0.1021869033575058, -0.024123143404722214, 0.1869170069694519, 0.4170735776424408, -0.2708563208580017, -0.044201891869306564, -0.2884701192378998, -0.06590129435062408, 0.01723366044461727, -0.6958580613136292, 0.19920428097248077, 0.07244709879159927, -0.02735246531665325, 0.16768448054790497, 0.4132860004901886, 0.22200016677379608, -0.5302270650863647, 0.12961098551750183, 0.2281220555305481, -0.1959846466779709, 0.15191109478473663, 0.4805128276348114, 0.18711532652378082, -0.1579015552997589, 0.31817683577537537, 0.06384673714637756, 0.03379688784480095, -0.18304719030857086, -0.165267676115036, 0.3146880269050598, 0.7022923231124878, 0.315291166305542, 0.05094825103878975, 0.015440376475453377, 0.44740840792655945, -0.20110727846622467, 0.7358461022377014, -0.18629145622253418, -0.09240975230932236, -0.4624544382095337, 0.2641473412513733, -0.07001062482595444, -0.2555218040943146, -0.06382345408201218, 0.16181132197380066, 0.5489813685417175, 0.21496686339378357, 0.6577931642532349, 0.5412571430206299, -0.103000208735466, 0.27255165576934814, 0.07204461097717285, 0.12043001502752304, 0.08295948803424835, 0.5849183201789856, -0.2928149402141571, 0.1102849692106247, -0.057680923491716385, 0.1821500062942505, 0.32357335090637207, -0.26153889298439026, -0.09754674881696701, 0.053732652217149734, -0.47842317819595337, -0.20688866078853607, 0.14951646327972412, 0.44838747382164, 0.14524351060390472, -0.06533285230398178, -0.007105703931301832, 0.10970225185155869, 0.13142406940460205, -0.16857782006263733, 0.6117310523986816, -0.469184011220932, -0.43700164556503296, -0.08349652588367462, 0.04005957394838333, 0.03319272771477699, 0.09320873767137527, 0.05240950360894203, 0.005169416777789593, 0.12614794075489044, -0.18846891820430756, 0.30123043060302734, -0.05025377497076988, -0.017715945839881897, 0.3729603588581085, -0.20505496859550476, 0.12998934090137482, -0.3256887197494507, -0.6038056015968323, -0.21400347352027893, -0.17975439131259918, -0.03549601882696152, -0.09598817676305771, -0.46593227982521057, -0.2716807425022125, -0.0486767552793026, 0.14126504957675934, -0.3357084393501282, -0.1274467259645462, -0.009448129683732986, -0.10535240918397903, 0.14233890175819397, -0.0883721336722374, 0.014239928685128689, -0.02078290656208992, 0.8280668258666992, -0.06783537566661835, -0.21389257907867432, -0.19796575605869293, 0.3164111077785492, 0.20037724077701569, -0.007739713881164789, -0.019283412024378777, -0.1543770283460617, -0.3973469138145447, -0.14222727715969086, 0.15676790475845337, 0.0026995025109499693, 0.4827222526073456, -0.28523239493370056, 0.37933287024497986, -0.23608990013599396, 0.07253070920705795, -0.16349582374095917, -0.21670332551002502, -0.4600067436695099, -0.4325462579727173, -0.30464962124824524, 0.05532762035727501, -0.07494126260280609, -0.06917005032300949, 0.010595311410725117, 0.20044684410095215, -0.1972309947013855, 0.2520216405391693, -0.008332457393407822, 0.21147513389587402, -0.30657514929771423, 0.35718873143196106, 0.31389254331588745, -0.28029683232307434, 0.2575525641441345, -0.1878325343132019, -0.002393564209342003, -0.16520927846431732, -0.3906151354312897, 0.13165219128131866, -0.10013685375452042, -0.22287966310977936, 0.247037872672081, 0.3060052990913391, -0.06048667058348656, -0.2760451138019562, 0.23967568576335907, -0.14149227738380432, -0.4075431823730469, 0.15427130460739136, 0.28943341970443726, 0.18761679530143738, 0.024092422798275948, -0.05958128347992897, 0.32889288663864136, -0.04512329399585724, 0.03658537194132805, -0.21532872319221497, 0.1188119500875473, 0.05702861770987511, 0.35029223561286926, 0.4311788082122803, -0.6045475602149963, -0.07925701886415482, 0.4471966326236725, 0.28386539220809937, -0.35709625482559204, 0.3663390874862671, 0.4483744502067566, 0.054294876754283905, 0.1809999942779541, -0.04382993280887604, 0.33768004179000854, 0.27498090267181396, 0.07388273626565933, 0.014969564974308014, -0.19344036281108856, 0.34010201692581177, -0.11617447435855865, 0.35198119282722473] /programs/dev/projects/testproject1 hist TCGA-05-4244 TCGA-05-4244-01Z-00-DX1.d4ff32cd-38cf-40ea-8213-45c2b100ac01 hist -[-0.2422751635313034, -0.19156047701835632, 0.17423947155475616, -0.6961766481399536, -0.07623741775751114, -0.43636444211006165, 0.024083763360977173, 0.1123393252491951, 0.019690755754709244, 0.2294916957616806, -0.17337580025196075, -0.030815748497843742, 0.12434622645378113, 0.29981887340545654, 0.09637437760829926, -0.21874640882015228, 0.4427817165851593, 0.49762511253356934, 0.2950475811958313, 0.34434133768081665, -0.14771248400211334, 0.8751331567764282, -0.3044511675834656, -0.038916196674108505, 0.03382367268204689, 0.015322101302444935, 0.011417454108595848, 0.3404381573200226, -0.1270066648721695, -0.12437380850315094, -0.11408110707998276, -0.01565445028245449, -0.11295740306377411, -0.1910908967256546, 0.07587192207574844, 0.2465374916791916, 0.09013792127370834, 0.019632671028375626, 0.398668497800827, 0.2101159691810608, 0.2916657626628876, -0.02811267226934433, 0.4464501738548279, -0.5690780282020569, -0.2792591154575348, -0.03726795315742493, -0.12209481000900269, -0.029383953660726547, 0.26867061853408813, 0.229985773563385, 0.30268585681915283, 0.310729056596756, 0.21381664276123047, 0.1823876053094864, -0.24265611171722412, 0.2898450791835785, 0.21996596455574036, -0.25233951210975647, 0.30932512879371643, 0.11290279775857925, 0.6437631249427795, -0.08845086395740509, 0.0008616407867521048, 0.147410050034523, 0.22454458475112915, 0.19999082386493683, -0.14660359919071198, 0.0634554997086525, -0.21330943703651428, 0.13477689027786255, -0.42131567001342773, 0.03508366644382477, -0.10120511800050735, 0.002721731783822179, 0.09958530962467194, -0.3186537027359009, 0.2621344327926636, -0.14139965176582336, 0.38137754797935486, -0.31157419085502625, -0.11944655328989029, -0.28859183192253113, -0.8651900291442871, -0.06101176142692566, 0.09352094680070877, 0.041583213955163956, -0.13602404296398163, -0.23875050246715546, 0.03639005869626999, 0.03989725932478905, 0.26372262835502625, -0.12642832100391388, -0.126268669962883, -0.01529174204915762, 0.14861083030700684, 0.0648474469780922, -0.11979974806308746, -0.027420049533247948, -0.02632063627243042, -0.3028145730495453, 0.4521016478538513, 0.43737801909446716, 0.13500429689884186, -0.059484370052814484, -0.6335053443908691, 0.07030223309993744, 0.20264708995819092, -0.03492697700858116, -0.15298205614089966, 0.1806296557188034, -0.02422264777123928, 0.15182597935199738, 0.28224605321884155, 0.23157911002635956, -0.1905621588230133, -0.4159320592880249, 0.10815677791833878, -0.09094015508890152, -0.027300186455249786, 0.049443911761045456, 0.15749220550060272, 0.21138834953308105, -0.0455017164349556, 0.02346113882958889, -0.08210009336471558, -0.2371068298816681, 0.14134521782398224, -0.4173205494880676, 0.564729630947113, -0.11518523842096329, 0.10242991149425507, -0.5300824046134949, 0.17308981716632843, -0.3145581781864166, 0.424477756023407, -0.16896800696849823, -0.04178111255168915, -0.07624433934688568, -0.16959235072135925, 0.06338658928871155, 0.2868473529815674, -0.06357678771018982, -0.17068803310394287, -0.026248546317219734, -0.33691006898880005, -0.05234088376164436, -0.03666169196367264, -0.1865922212600708, 0.4443294107913971, -0.0448872447013855, -0.0014361655339598656, -0.01053626649081707, -0.00601997273042798, -0.12174534797668457, 0.149423748254776, -0.26437878608703613, -0.24569840729236603, -0.13461215794086456, -0.154512420296669, 0.3371795415878296, 0.14551977813243866, -0.04002705588936806, -0.059006307274103165, 0.04278174042701721, -0.1521117389202118, -0.5350311398506165, -0.01646946556866169, 0.2621167302131653, -0.1862824261188507, -0.6370884776115417, -0.20556342601776123, 0.39941155910491943, -0.19551382958889008, -0.11372336745262146, -0.035868410021066666, 0.4223746955394745, 0.001699577085673809, -0.13319452106952667, 0.04218136891722679, -0.11164357513189316, 0.06712617725133896, -0.06806542724370956, -0.061309102922677994, -0.23085445165634155, 0.17828723788261414, 0.12527111172676086, -0.05562837794423103, -0.2808569073677063, 0.3874916434288025, 0.0004596871149260551, 0.009344857186079025, 0.08840726315975189, 0.21144390106201172, 0.20682838559150696, 0.06178729981184006, 0.050268981605768204, -0.08593414723873138, -0.0487326979637146, 0.01227693259716034, 0.21669796109199524, 0.009584934450685978, -0.11340592801570892, 0.23753975331783295, 0.3457641005516052, 0.09608599543571472, 0.2645610272884369, -0.24300312995910645, 0.12678006291389465, 0.6495593190193176, 0.17521366477012634, 0.025983888655900955, 0.1353543996810913, 0.12212659418582916, -0.07334114611148834, -0.14319102466106415, 0.10888568311929703, 0.07622324675321579, -0.4230372905731201, 0.016992060467600822, 0.22900232672691345, -0.030587099492549896, 0.13677668571472168, 0.2513795793056488, 0.13436390459537506, 0.022562753409147263, 0.0013417843729257584, -0.031205296516418457, 0.10484732687473297, 0.23718883097171783, 0.0071348026394844055, 0.28366178274154663, 0.15560488402843475, -0.1275864541530609, -0.27593696117401123, -0.08425790816545486, -0.06840703636407852, 0.12867063283920288, -0.33315950632095337, 0.04049692302942276, -0.08553355932235718, -0.1497241109609604, -0.40899401903152466, -0.01873769797384739, -0.181904137134552, 0.1337631344795227, 0.3970034122467041, 0.22553379833698273, 0.36652833223342896, 0.1573910415172577, -0.8666275143623352, -0.12108833342790604, -0.05828577280044556, -0.04493441805243492, 0.38728147745132446, -0.0792747214436531, 0.3933441638946533, 0.30655035376548767, -0.024632250890135765, 0.14601628482341766, -0.06969977915287018, 0.5230111479759216, 0.11597564816474915, 0.12907670438289642, -0.2701079845428467, 0.3136879801750183, -0.050173353403806686, 0.00952222477644682, -0.21606720983982086, 0.21651121973991394, -0.27642500400543213, -0.20930548012256622, -0.2709471881389618, 0.3240745961666107, -0.277609258890152, -0.415738582611084, 0.21671396493911743, -0.1968773603439331, 0.023106388747692108, -0.23779727518558502, -0.03238436207175255, 0.17651309072971344, 0.3583691716194153, 0.07979673147201538, -0.20241738855838776, -0.5851300954818726, -0.5173640251159668, 0.06883078068494797, -0.10372298210859299, 0.0619271956384182, 0.2457083910703659, -0.2978776693344116, 0.31699731945991516, -0.21249081194400787, -0.20531967282295227, 0.20425085723400116, 0.0060919807292521, -0.21097086369991302, -0.09364393353462219, -0.19244268536567688, 0.3497353494167328, -0.29157131910324097, -0.13436004519462585, -0.017451953142881393, -0.24396057426929474, -0.22118058800697327, 0.26016637682914734, 0.5284312963485718, -0.23984624445438385, 0.09116223454475403, 0.04162060096859932, 0.10022836178541183, 0.2954694330692291, 0.19237148761749268, 0.22480322420597076, -0.1518702358007431, -0.1677330583333969, -0.05124318227171898, -0.15542323887348175, 0.5863812565803528, 0.11501459777355194, 0.18413178622722626, 0.4391504228115082, -0.30334001779556274, -0.009808436036109924, -0.5193591117858887, 0.09048589318990707, 0.09096083045005798, 0.08490321040153503, -0.18010728061199188, 0.14576777815818787, 0.0011890266323462129, 0.14528818428516388, 0.07990775257349014, 0.040081560611724854, 0.21091493964195251, -0.27675914764404297, 0.17061714828014374, 0.055184200406074524, -0.05793410539627075, 0.32086998224258423, 0.3768148422241211, -0.48849010467529297, 0.13097110390663147, -0.11714407801628113, 0.1329052746295929, -0.06882729381322861, 0.3282771408557892, -0.11238204687833786, -0.23665191233158112, 0.2434665858745575, 0.009468781761825085, 0.254753053188324, 0.26076972484588623, 0.027813926339149475, 0.073555588722229, -0.530153751373291, -0.12183964252471924, 0.18917232751846313, 0.07774495333433151, -0.1187114268541336, -0.1849992424249649, 0.2799311578273773, 0.6586003303527832, -0.08791783452033997, -0.225792795419693, -0.10738929361104965, -0.19572772085666656, 0.09904233366250992, -0.041592806577682495, 0.47808265686035156, -0.39373719692230225, 0.2658788561820984, -0.14546695351600647, -0.08210616558790207, 0.26662924885749817, -0.1045488491654396, -0.2573747932910919, -0.3225111663341522, -0.5081708431243896, -0.1692373901605606, -0.3521956205368042, -0.08459626883268356, -0.2883281707763672, -0.08611195534467697, -0.2997075319290161, -0.38304072618484497, -0.31306925415992737, -0.35754358768463135, 0.08074411749839783, -0.04652875289320946, -0.0788680911064148, -0.14036761224269867, 0.4501511752605438, -0.0889260396361351, 0.5202757716178894, -0.05688798055052757, 0.08924422413110733, -0.18403983116149902, -0.35658547282218933, 0.24087196588516235, 0.03575214743614197, -0.25667205452919006, 0.2720349431037903, 0.0030399044044315815, -0.21621933579444885, -0.03669534623622894, -0.09190379083156586, -0.13600516319274902, 0.18444018065929413, 0.44220876693725586, -0.3789066970348358, -0.11661709100008011, -0.13532017171382904, 0.15964576601982117, -0.22520965337753296, -0.04191878065466881, -0.2784949243068695, 0.3483494520187378, 0.1162835881114006, 0.15543504059314728, 0.014641528949141502, -0.12254028022289276, -0.352666437625885, -0.11246484518051147, -0.013864615932106972, -0.07857650518417358, 0.049724385142326355, 0.1035194844007492, 0.44118738174438477, 0.0539737343788147, 0.2812623381614685, -0.32795023918151855, 0.4069497585296631, 0.41165560483932495, 0.3540135324001312, 0.7743960022926331, -0.16196182370185852, 0.22254027426242828, -0.5279088020324707, 0.08700212091207504, 0.022289490327239037, -0.19719761610031128, 0.25126540660858154, -0.26500779390335083, 0.319698303937912, 0.04094577208161354, -0.12977853417396545, 0.07145258784294128, 0.10329683125019073, -0.02585894986987114, 0.10413157939910889, 0.14623622596263885, -0.21778354048728943, 0.3430931270122528, 0.11611845344305038, -0.25426748394966125, -0.022074783220887184, -0.006674581207334995, -0.13149498403072357, 0.12509092688560486, -0.3680766224861145, 0.06693848222494125, 0.5278906226158142, -0.4778217375278473, 0.03606640174984932, -0.03034728579223156, -0.0637090727686882, -0.12649373710155487, 0.0829799622297287, -0.20523041486740112, -0.2617558538913727, -0.38937321305274963, 0.08720663189888, -0.1990419328212738, -0.43281787633895874, -0.0944630429148674, 0.4924187660217285, 0.05032286047935486, -0.13684971630573273, 0.4906918704509735, -0.11399675905704498, -0.2376149743795395, -0.00799871888011694, 0.12087036669254303, -0.27945902943611145, -0.021096862852573395, 0.2885887324810028, 0.3740416467189789, 0.22593970596790314, -0.01098528690636158, -0.07118489593267441, -0.017614807933568954, -0.02045554481446743, 0.5146793127059937, 0.3873457908630371, -0.3371168076992035, -0.1863938868045807, -0.008475102484226227, -0.22443757951259613, 0.3134922683238983, 0.02402806282043457, -0.1684689223766327, -0.4090140461921692, -0.033716872334480286, -0.1368998885154724, 0.30309462547302246, -0.08145948499441147, 0.047871291637420654, 0.0709410235285759, 0.2859799265861511, 0.14595475792884827, 0.018507277593016624, -0.024424416944384575, 0.03148259222507477, 0.0869567021727562, -0.11464294046163559, 0.28089985251426697, 0.07528315484523773, -0.1693502813577652, -0.014925521798431873, 0.01251167431473732, -0.43612906336784363, -0.34997856616973877, 0.17949126660823822, 0.012938253581523895, -0.24457071721553802, 0.038713354617357254, -0.23068057000637054, -0.2354753315448761, -0.2672223150730133, 0.23363307118415833, 0.2076774388551712, -0.1348261684179306, 0.008930410258471966, 0.36557191610336304, 0.1521596759557724, 0.4256863296031952, 0.26385393738746643, -0.2027740478515625, -0.3281485438346863, 0.007624200079590082, 0.07906628400087357, -0.025851983577013016, -0.34167781472206116, -0.0007739702705293894, -0.0825284942984581, 0.233296200633049, 0.5259566307067871, -0.11032237112522125, 0.2544979751110077, 0.000916888820938766, -0.08755741268396378, 0.5025894641876221, -0.0029440796934068203, 0.047405049204826355, 0.15466271340847015, 0.19431661069393158, -0.09697596728801727, 0.05665038898587227, -0.04245726391673088, -0.2777082026004791, 0.165487602353096, -0.032945357263088226, 0.2337423712015152, -0.12256558984518051, -0.09592188894748688, -0.07206650823354721, 0.16122418642044067, -0.07713618129491806, -0.1614074409008026, -0.15269558131694794, -0.23402558267116547, 0.488731324672699, -0.2849574089050293, -0.6969545483589172, -0.11762121319770813, -0.19709108769893646, 0.013945492915809155, 0.178875133395195, 0.527648389339447, 0.7227571606636047, 0.07075038552284241, -0.18257197737693787, -0.24292752146720886, 0.23699478805065155, 0.1679125428199768, 0.10930263251066208, -0.10214459896087646, -0.21063433587551117, 0.16926786303520203, 0.08375836163759232, -0.14296814799308777, 0.288536936044693, 0.20686247944831848, 0.09364701062440872, 0.04678025469183922, 0.10757821053266525, 0.23833656311035156, -0.3316793441772461, -0.3461304306983948, -0.25469374656677246, 0.43374404311180115, -0.04971913993358612, -0.18365804851055145, 0.20735859870910645, -0.13559161126613617, -0.15143218636512756, 0.09928818792104721, -0.1729009598493576, 0.11126364767551422, -0.1691320240497589, -0.20445303618907928, 0.031872060149908066, 0.1850646585226059, -0.38598623871803284, -0.35605865716934204, 0.2590886056423187, -0.08694392442703247, -0.13832534849643707, -0.05330287665128708, 0.07748148590326309, -0.07254480570554733, 0.031924884766340256, 0.14387737214565277, -0.36532506346702576, 0.34594279527664185, 0.3390432298183441, -0.1483006328344345, 0.36390817165374756, 0.5039706230163574, -0.04119604080915451, -0.2670513093471527, -0.09133360534906387, -0.28499868512153625, -0.28054264187812805, -0.19525942206382751, 0.06237794831395149, 0.32302477955818176, -0.23396053910255432, -0.7668575048446655, 0.22326205670833588, 0.06308519840240479, 0.07183763384819031, -0.20152266323566437, -0.2983167767524719, -0.008808741346001625, 0.10282807797193527, 0.2183777242898941, 0.36241909861564636, 0.26369327306747437, 0.16063924133777618, 0.029012365266680717, 0.422811359167099, 0.18207022547721863, -0.2763347625732422, -0.1781187802553177, 0.22771328687667847, 0.6784306168556213, -0.011990142986178398, 0.2430780977010727, 0.11741906404495239, -0.3622174859046936, 0.1566675752401352, -0.05329226329922676, 0.02583993598818779, 0.18884439766407013, 0.03420537710189819, 0.09537331014871597, -0.1468077301979065, 0.1037905290722847, 0.12007370591163635, 0.10416033864021301, 0.1660664975643158, 0.33549362421035767, 0.6497362852096558, -0.26058053970336914, 0.21756714582443237, 0.16782110929489136, -0.26056748628616333, 0.045848358422517776, -0.05317869782447815, -0.2722230553627014, -0.20725972950458527, 0.1184004619717598, -0.0342194028198719, 0.026563310995697975, -0.9793315529823303, 0.16921287775039673, 0.11534593999385834, 0.2532254457473755, -0.0153642687946558, -0.18140770494937897, -0.4960947334766388, -0.17583703994750977, -0.24251681566238403, -0.05404561758041382, 0.11958423256874084, -0.30283862352371216, -0.24315521121025085, 0.1478709578514099, 0.5970451831817627, -0.05578961223363876, -0.3794042766094208, 0.3699195086956024, -0.03769533336162567, -0.12057501077651978, -0.5397108793258667, 0.09600147604942322, -0.10229543596506119, -0.33031123876571655, -0.41735008358955383, 0.4450048804283142, 0.21960987150669098, 0.00539927976205945, 0.2436097413301468, -0.24463118612766266, -0.2827534079551697, -0.3808489739894867, -0.08002132177352905, 0.1832188069820404, -0.28804251551628113, 0.20089364051818848, 0.0015061963349580765, 0.2216741293668747, 0.27645179629325867, -0.43248504400253296, -0.07754700630903244, -0.2025671899318695, -0.14782845973968506, 0.15261609852313995, -0.13963092863559723, 0.1550348848104477, -0.5661994218826294, 0.2655847370624542, -0.029490919783711433, -0.06758615374565125, -0.13312046229839325, -0.11590185016393661, -0.16155189275741577, -0.22850196063518524, -0.021650154143571854, -0.4146355986595154, 0.11581502109766006, 0.09879571944475174, -0.04711069166660309, -0.13082270324230194, -0.0289327222853899, -0.03160492330789566, 0.003098188666626811, -0.14516808092594147, 0.06724458932876587, 0.5727214217185974, 0.35385313630104065, -0.2965446412563324, 0.020141733810305595, -0.2636314332485199, 0.4089573621749878, 0.006032129283994436, -0.3573490381240845, 0.21852350234985352, 0.22993917763233185, 0.24025128781795502, 0.3968631327152252, 0.49243292212486267, 0.2085069864988327, -0.10562743246555328, 0.09046182781457901, -0.018190506845712662, -0.055699534714221954, 0.5430160164833069, 0.19992925226688385, -0.2113095074892044, 0.007329799234867096, 0.4539390206336975, -0.14894871413707733, 0.025512801483273506, 0.16847507655620575, 0.0396006740629673, 0.43225568532943726, 0.26488354802131653, -0.11606770008802414, 0.03474077209830284, -0.23140180110931396, -0.1437930464744568, 0.24183781445026398, 0.20333178341388702, -0.1479039341211319, 0.16600240767002106, -0.08652661740779877, -0.05738893896341324, -0.22147369384765625, 0.29525327682495117, -0.39897722005844116, 0.5007946491241455, 0.05660437420010567, -0.18584851920604706, 0.22923076152801514, -0.07490967214107513, -0.2988458275794983, -0.40359580516815186, -0.20369580388069153, 0.33460530638694763, -0.042787496000528336, -0.046136628836393356, -0.6015438437461853, -0.3454231321811676, -0.09660384804010391, -0.025325750932097435, -0.13864094018936157, 0.06305483728647232, -0.38478225469589233, -0.17865273356437683, -0.23845353722572327, -0.3038068413734436, -0.1946469098329544, 0.45284050703048706, 0.004056101199239492, -0.05090687796473503, -0.14081867039203644, 0.03012143261730671, -0.0008182107121683657, 0.15307356417179108, 0.17221428453922272, 0.027085432782769203, 0.04897825047373772, 0.028294216841459274, -0.13969455659389496, -0.10925300419330597, 0.0859619751572609, -0.052102599292993546, -0.17110690474510193, 0.19812798500061035, -0.17317263782024384, -0.061798445880413055, 0.48381513357162476, -0.09965743869543076, 0.05004516616463661, 0.06996936351060867, 0.029331833124160767, 0.08842641860246658, 0.22586385905742645, 0.24168838560581207, -0.032409604638814926, -0.3106183707714081, -0.09256842732429504, 0.2620949447154999, 0.034095648676157, 0.06656796485185623, -0.16872970759868622, -0.5584902167320251, 0.25211670994758606, 0.5618711113929749, 0.11712516099214554, 0.6977795958518982, 0.26735442876815796, 0.03339502215385437, -0.5303307771682739, -0.4200689196586609, 0.21077993512153625, -0.08698412775993347, 0.0989966094493866, -0.08640370517969131, 0.1456104815006256, -0.034056853502988815, -0.039532165974378586, 0.19949832558631897, -0.004386709537357092, -0.21460698544979095, 0.029561391100287437, -0.14734980463981628, -0.20823612809181213, -0.34143760800361633, -0.0354112908244133, 0.15369202196598053, 0.22583405673503876, -0.0687594786286354, 0.14852482080459595, -0.19611422717571259, 0.2641412615776062, -0.30467063188552856, -0.018585244193673134, -0.1778223216533661, 0.6001653075218201, -0.40274637937545776, -0.1376482993364334, 0.005149995908141136, -0.16011880338191986, -0.007811581250280142, -0.06111612543463707, 0.49459803104400635, -0.10556826740503311, -0.284657746553421, -0.3687081038951874, 0.25770634412765503, 0.551018476486206, -0.1983940452337265, 0.0484357625246048, -0.8155703544616699, -0.12495087087154388, -0.6655929088592529, -0.24717721343040466, 0.009095778688788414, -0.0467597134411335, 0.12920376658439636, 0.08841627836227417, 0.09411738812923431, 0.3408396244049072, 0.36794933676719666, -0.1701045036315918, 0.34325453639030457, 0.3040392994880676, 0.16392385959625244, 0.06556812673807144, -0.1616971492767334, 0.11791787296533585, 0.007307376712560654, 0.3269254267215729, -0.5652672052383423, 0.10534242540597916, 0.4007783830165863, 0.3526769280433655, -0.07119324803352356, 0.150580495595932, -0.2627609074115753, -0.12451962381601334, 0.441234827041626, 0.09589462727308273, -0.20806661248207092, 0.08005225658416748, 0.19857291877269745, -0.2608458399772644, 0.13181348145008087, 0.02883617952466011, 0.11141461133956909, 0.2974065840244293, -0.28757497668266296, -0.060249533504247665, 0.004728645086288452, 0.2845288813114166, -0.12174350768327713, 0.2682209014892578, -0.10611679404973984, 0.18673641979694366, -0.020611988380551338, 0.11007068306207657, -0.007488665636628866, -0.01153803151100874, 0.31967100501060486, -0.43474164605140686, 0.1962049901485443, 0.30822309851646423, -0.23891694843769073, -0.03262621536850929, -0.5672454237937927, 0.010072479955852032, -0.31788623332977295, 0.34452614188194275, 0.5382270812988281, -0.026478072628378868, 0.4856902062892914, -0.41323918104171753, 0.14000530540943146, -0.30221277475357056, -0.07004722207784653, -0.12935766577720642, -0.12164343148469925, 0.2289992868900299, -0.07266876846551895, -0.004672475624829531, 0.22034573554992676, -0.14630311727523804, -0.14889171719551086, -0.5566733479499817, 0.3572169840335846, -0.0077012269757688046, -0.4798368215560913, 0.03043542243540287, -0.04913227632641792, 0.20304524898529053, -0.135219544172287, 0.33586323261260986, -0.04789816960692406, 0.015513818711042404, 0.1417919248342514, -0.04533107578754425, -0.17022064328193665, 0.1806098371744156, -0.2090788632631302, -0.3091489374637604, 0.15254780650138855, -0.34587928652763367, 0.11169325560331345, 0.05864342302083969, -0.030001915991306305, -0.6565760374069214, -0.017029447481036186, 0.3359045684337616, -0.2916512191295624, 0.07811836153268814, -0.1879482865333557, 0.42646098136901855, -0.13765062391757965, 0.23537029325962067, 0.013789431191980839, -0.04831791669130325, -0.02175058051943779, 0.05057898536324501, -0.29784029722213745, 0.5934965014457703, 0.2834761142730713, -0.08086197078227997, 0.19144198298454285, 0.012770896777510643, 0.18086758255958557, 0.06802350282669067, 0.618518590927124, 0.0757962241768837, 0.15861351788043976, 0.39399653673171997, -0.255046546459198, 0.13212032616138458, 0.04654345288872719, -0.1668824404478073, -0.0144340293481946, 0.014413380064070225, 0.07724218815565109, -0.32441750168800354, 0.009816042147576809, -0.31508558988571167, -0.10824166983366013, 0.3289811313152313, -0.07136969268321991, -0.40158599615097046, -0.08006144315004349, 0.0025320048443973064, 0.27934548258781433, -0.21607816219329834, 0.10364198684692383, 0.3946990668773651, 0.052481237798929214, -0.043409187346696854, -0.21532125771045685, -0.08655716478824615, 0.12276813387870789, 0.023307157680392265, 0.103165403008461, -0.19272252917289734, -0.42191436886787415, -0.06162914261221886, 0.5979376435279846, 0.20583415031433105, 0.03314035013318062, 0.1943076103925705, 0.10918203741312027, -0.17222677171230316, -0.11548645794391632, -0.3578179180622101, 0.03665730729699135, 0.05955568701028824, 0.06691422313451767, -0.0976165235042572, 0.016569912433624268, -0.013973022811114788, 0.315727561712265, -0.06160078942775726, -0.18993526697158813, -0.25811251997947693, 0.1468248814344406, 0.08092869818210602, -0.10301842540502548, 0.12233352661132812, -0.0075173149816691875, -0.385188490152359, -0.18472830951213837, -0.4408397078514099, 0.04400532320141792, 0.5276130437850952, 0.3039218783378601, -0.1438581794500351, -0.14107663929462433, 0.19636417925357819, -0.6300530433654785, -0.19782161712646484, 0.09994396567344666, -0.08901393413543701, -0.2826559245586395, 0.20895463228225708, -0.19750291109085083, 0.28731030225753784, -0.09677552431821823, -0.08987367153167725, -0.08700345456600189, -0.5348994731903076, -0.05120684579014778, -0.1343981921672821, -0.2828451097011566, -0.39440837502479553, -0.18860918283462524, 0.08853220194578171, 0.06180601194500923, -0.843929648399353, -0.08086574077606201, -0.8147438764572144, -0.2935338318347931, -0.15461450815200806, 0.10567499697208405, 0.05407612770795822, 0.10719326883554459, -0.02526385337114334, -0.06426697969436646, -0.08363057672977448, -0.2234455794095993, -0.15180185437202454, 0.311175674200058, -0.19726911187171936, -0.16174939274787903, 0.29466962814331055, 0.2682286202907562, 0.6323903799057007, 0.3712518811225891, -0.005701964721083641, 0.05718638375401497, 0.014510128647089005, -0.022808615118265152, 0.0395234115421772, 0.10035374760627747, -0.0983569473028183, 0.3748917579650879, -0.1391320526599884, 0.07894868403673172, 0.31800737977027893, -0.6381383538246155, -0.024181010201573372, -0.09317056089639664, 0.06830479949712753, 0.15302391350269318, -0.05180184915661812, 0.6799538731575012, -0.1986890584230423, 0.15085086226463318, -0.618879497051239, -0.18829327821731567, 0.4302273392677307, -0.4887777864933014, -0.13359799981117249, -0.347820520401001, -0.12070799618959427, -0.053479645401239395, 0.03429974988102913, 0.3528536558151245, -0.26526179909706116, -0.11196911334991455, 0.12514781951904297, -0.24875260889530182, 0.5521084666252136, 0.1714676469564438, -0.09520602971315384, -0.11290633678436279, 0.25399652123451233, 0.20795094966888428, -0.132423534989357, 0.03795207291841507, 0.07816870510578156, -0.045767832547426224, 0.18575647473335266, -0.050310440361499786, -0.2807742655277252, 0.15582476556301117, 0.37975025177001953, 0.026390036568045616, 0.16135762631893158, 0.057307373732328415, 0.35769760608673096, 0.008418654091656208, -0.22930632531642914, -0.1345375031232834, -0.24320422112941742, 0.26547396183013916, 0.08745009452104568, 0.05313534289598465, 0.7356760501861572, -0.22962383925914764, -0.6452073454856873, -0.002168838633224368, -0.024230865761637688, -0.1765030324459076, -0.3265053927898407, 0.2398279756307602, -0.26405519247055054, -0.17561763525009155, 0.07502526044845581, 0.09773845970630646, -0.15939658880233765, 0.16745921969413757, -0.27294450998306274, -0.2378520369529724, 0.16058331727981567, -0.44585534930229187, -0.2693730592727661, 0.3234651982784271, -0.10409129410982132, -0.0637274906039238, -0.2741107642650604, 0.038142696022987366, 0.023874567821621895, 0.0647592544555664, -0.12875641882419586, 0.0873454287648201, -0.3752762973308563, 0.2658339738845825, -0.020941298454999924, 0.1466706395149231, 0.18507890403270721, -0.2908192574977875, 0.3226028382778168, 0.29630038142204285, 0.2373366504907608, -0.031117944046854973, 0.33164310455322266, -0.07817455381155014, 0.4274263083934784, 0.037739451974630356, -0.46560198068618774, -0.2301049530506134, 0.3247861862182617, 0.23464596271514893, 0.11211643368005753, 0.01537700928747654, 0.1433735489845276, 0.034522682428359985, 0.22557485103607178, -0.04198414087295532, -0.14279784262180328, 0.11597559601068497, -0.043677929788827896, 0.0984615832567215, 0.060963988304138184, -0.34095683693885803, -0.104892797768116, -0.14591452479362488, 0.14151762425899506, 0.15457187592983246, -0.17112718522548676, 0.2720773220062256, -0.2063373476266861, 0.5194429159164429, -0.061943888664245605, -0.2111402153968811, 0.14443202316761017, -0.419341117143631, -0.06645345687866211, -0.20940515398979187, -0.31957414746284485, 0.05886735022068024, -0.2717567980289459, -0.23794928193092346, 0.1339646875858307, 0.055804312229156494, 0.019987531006336212, -0.0038142958655953407, -0.3194873631000519, -0.31594741344451904, 0.026498954743146896, 0.3975476324558258, -0.052738677710294724, -0.15798428654670715, 0.2256258875131607, -0.28888240456581116, 0.06845240294933319, 0.08766279369592667, 0.2908604145050049, -0.01585232838988304, -0.32619214057922363, 0.11404573917388916, 0.10323671251535416, 0.07481700927019119, -0.08916781097650528, 0.057758111506700516, -0.0478658489882946, 0.13201074302196503, -0.5922290682792664, 0.3411223292350769, -0.18228060007095337, 0.09544377774000168, 0.2366178184747696, -0.08306402713060379, -0.3662654459476471, -0.0034625125117599964, -0.20580144226551056, 0.20387233793735504, -0.04013770446181297, 0.5247009992599487, -0.07070332020521164, 0.033961329609155655, -0.7457894086837769, 0.0646771490573883, -0.06709017604589462, 0.01263726782053709, -0.14024941623210907, -0.09991947561502457, -0.35911431908607483, -0.2500850260257721, 0.18199481070041656, -0.16271163523197174, -0.37091660499572754, -0.0392746776342392, 0.20240238308906555, -0.002745352452620864, 0.23612304031848907, -0.15564410388469696, -0.3436656594276428, 0.05527568981051445, -0.1521572470664978, -0.2361273467540741, 0.340916246175766, 0.12167409062385559, -0.24234899878501892, 0.009925699792802334, -0.2156173139810562, -0.23712779581546783, -0.07667020708322525, 0.020101265981793404, -0.08276597410440445, 0.04465531185269356, -0.11744379252195358, 0.31460514664649963, -0.1458749771118164, 0.3551766872406006, -0.301101952791214, 0.3577595353126526, 0.1606445014476776, -0.1384018063545227, -0.26408228278160095, -0.036787249147892, 0.3166068494319916, 0.25086817145347595, -0.27010756731033325, 0.31378668546676636, -0.3362709879875183, -0.30312034487724304, -0.33825796842575073, -0.14115235209465027, 0.10550244152545929, 0.07152045518159866, -0.0791664868593216, -0.0031667794100940228, 0.10554295778274536, -0.08314211666584015, 0.2610922157764435, 0.3064464032649994, -0.059237852692604065, -0.06415564566850662, -0.21524746716022491, -0.38428857922554016, -0.08372221887111664, -0.4010375142097473, 0.013349558226764202, -0.03235766291618347, -0.0023093975614756346, -0.07375999540090561, 0.2577466368675232, 0.1623840630054474, -0.3824237883090973, 0.11911648511886597, 0.11781033873558044, -0.2088615745306015, 0.17484059929847717, 0.38360854983329773, 0.13634523749351501, -0.02156646177172661, 0.21080465614795685, 0.15312430262565613, -0.05067071318626404, -0.08643587678670883, -0.09288859367370605, 0.7523702383041382, 0.5912035703659058, 0.2750389575958252, -0.046681396663188934, -0.07470744848251343, 0.4083568751811981, 0.28699490427970886, 0.6431576013565063, -0.1414608508348465, -0.06192798167467117, -0.3063799738883972, 0.509726345539093, -0.32632994651794434, -0.26630645990371704, -0.3314153552055359, 0.2384868711233139, 0.34973812103271484, 0.4025108814239502, 0.15940099954605103, 0.42904046177864075, -0.17645137012004852, 0.25468629598617554, 0.030183931812644005, 0.06965597718954086, 0.09451797604560852, 0.5230814218521118, -0.3733346462249756, 0.10684949904680252, -0.09940166026353836, 0.16808685660362244, 0.46425661444664, -0.25419357419013977, -0.25283655524253845, -0.15418347716331482, -0.31728917360305786, -0.3910357654094696, 0.3240547776222229, 0.2158532440662384, -0.05926899611949921, 0.054275993257761, 0.2202059030532837, 0.27030012011528015, 0.2224915623664856, -0.2915904223918915, 0.5215838551521301, -0.42473286390304565, -0.357267290353775, 0.1198204830288887, 0.10875137150287628, -0.017516586929559708, -0.015999162569642067, -0.12474721670150757, -0.0675547644495964, 0.12532325088977814, -0.054357849061489105, 0.20158272981643677, 0.17905296385288239, -0.08152204751968384, 0.4579283595085144, -0.04906957224011421, 0.19593821465969086, -0.2968904376029968, -0.0767325684428215, -0.0349392294883728, -0.2190035730600357, -0.028377842158079147, 0.03481367975473404, -0.29787158966064453, -0.3337225019931793, 0.0314539335668087, 0.09264086186885834, -0.5232900381088257, 0.10646441578865051, 0.036053914576768875, -0.4579782783985138, 0.3374321758747101, 0.09841969609260559, -0.08311323076486588, 0.07368558645248413, 0.6650004982948303, -0.09159576147794724, -0.20594492554664612, -0.13108085095882416, 0.39977866411209106, 0.1616898626089096, -0.05756516009569168, 0.020196978002786636, -0.1927211433649063, -0.46759530901908875, -0.3222140669822693, 0.18436801433563232, -0.07150747627019882, 0.5460859537124634, -0.41092801094055176, 0.35670706629753113, 0.003774113254621625, 0.31818854808807373, 0.14943498373031616, -0.04764069616794586, -0.30532515048980713, -0.3103145360946655, 0.02286658249795437, 0.04819969832897186, -0.10423266142606735, -0.015958979725837708, -0.08170522004365921, 0.21105007827281952, -0.00847145076841116, 0.03913361206650734, 0.20144277811050415, 0.10560813546180725, -0.4076780676841736, 0.3842373490333557, 0.1788415163755417, -0.18028709292411804, -0.13726375997066498, -0.15531477332115173, 0.09621880948543549, -0.20652435719966888, -0.07093241065740585, -0.23374146223068237, -0.23700575530529022, -0.5314130187034607, 0.2700868844985962, 0.3513839542865753, -0.035368531942367554, -0.22781874239444733, 0.05358773097395897, -0.12004701048135757, -0.3053721487522125, 0.18099135160446167, 0.023987609893083572, 0.020851245149970055, 0.20030272006988525, -0.10330748558044434, 0.22544348239898682, 0.08171553164720535, -0.06831628829240799, -0.08300112932920456, 0.01532136369496584, 0.3007936179637909, 0.33788415789604187, 0.44443628191947937, -0.6066787838935852, -0.2007606327533722, 0.3504824936389923, 0.3459891080856323, -0.19890660047531128, 0.3041965067386627, 0.35248610377311707, -0.07445140182971954, 0.26383867859840393, -0.29814577102661133, 0.4578312635421753, 0.19295066595077515, 0.14253464341163635, 0.06749021261930466, 0.1210445761680603, -0.05388856679201126, -0.11521271616220474, 0.3063693046569824] /programs/dev/projects/testproject1 hist TCGA-05-4249 TCGA-05-4249-01Z-00-DX1.9fce0297-cc19-4c04-872c-4466ee4024db hist -[-0.15457499027252197, 0.021765941753983498, 0.25907450914382935, -0.6947646737098694, 0.05174737796187401, -0.02346775121986866, -0.1869194209575653, -0.023499632254242897, 0.15704414248466492, -0.07802990823984146, -0.23048751056194305, -0.04757693037390709, 0.12480157613754272, 0.10924703627824783, -0.024077128618955612, 0.14698351919651031, 0.3093893527984619, 0.48098933696746826, 0.3476145267486572, 0.07938093692064285, 0.2227410227060318, 0.8040478825569153, -0.3448813557624817, -0.13064944744110107, 0.1182287260890007, 0.15621165931224823, 0.3501763641834259, 0.42044365406036377, -0.09009122103452682, -0.06763439625501633, -0.14126507937908173, 0.027548419311642647, -0.001960086403414607, 0.09825696051120758, 0.21253632009029388, 0.27632763981819153, 0.04445985332131386, 0.07178065925836563, 0.40791165828704834, -0.15775540471076965, 0.010139510035514832, 0.012066035531461239, 0.16046258807182312, -0.6960747241973877, 0.03416018933057785, -0.14892619848251343, 0.06457535922527313, 0.27306491136550903, 0.22107331454753876, -0.07419108599424362, -0.03313998505473137, 0.27452653646469116, 0.18107503652572632, 0.12923498451709747, 0.24320131540298462, 0.6241917610168457, 0.3871769309043884, 0.055480170994997025, 0.22585873305797577, 0.06239647790789604, 0.3302135765552521, -0.057076167315244675, -0.23490111529827118, -0.12298576533794403, -0.22461488842964172, -0.08788403868675232, -0.2363710254430771, -0.1733226627111435, -0.3416110575199127, 0.193262979388237, -0.20083792507648468, -0.1179325133562088, -0.07100006937980652, 0.23215515911579132, 0.07698723673820496, -0.45346885919570923, 0.3126657009124756, -0.03490888699889183, 0.2380959689617157, 0.14682674407958984, 0.09006498754024506, -0.2499466985464096, -0.5401005148887634, -0.14465396106243134, 0.026652133092284203, -0.003866149578243494, -0.16976788640022278, -0.31802764534950256, -0.13287128508090973, -0.1570836752653122, 0.14906154572963715, -0.08707424998283386, -0.14142678678035736, -0.1016126275062561, 0.16051085293293, 0.02988234907388687, -0.21440064907073975, 0.20087754726409912, 0.20802617073059082, -0.12324760109186172, 0.4750165641307831, 0.5119273662567139, 0.28100326657295227, 0.09792561829090118, -0.6152109503746033, 0.22012972831726074, 0.325222373008728, -0.043766412883996964, -0.15319913625717163, 0.19341100752353668, -0.057793330401182175, 0.39187464118003845, 0.029660072177648544, 0.24306674301624298, -0.10757812857627869, -0.5290420651435852, 0.028010817244648933, -0.11875348538160324, -0.1027994453907013, 0.004013932775706053, 0.23785942792892456, -0.23335134983062744, 0.09730905294418335, -0.08773025125265121, -0.0476129874587059, -0.11251407116651535, -0.020562147721648216, -0.6518493890762329, 0.8940566182136536, 0.2477835863828659, -0.0005074811051599681, -0.044871985912323, 0.272688090801239, -0.17014724016189575, 0.5263109803199768, -0.188057079911232, -0.01658789813518524, 0.2534869611263275, -0.05868200585246086, 0.030671967193484306, 0.3729209005832672, 0.2576353847980499, 0.0473715141415596, -0.10815286636352539, -0.15470902621746063, 0.03921246901154518, -0.10008817911148071, 0.08242685347795486, 0.22953841090202332, -0.09602916240692139, 0.35337820649147034, -0.18392089009284973, 0.0010914095910266042, 0.11364129185676575, -0.02655034326016903, -0.20449009537696838, 0.09084548056125641, 0.22240523993968964, 0.10421215742826462, 0.12780801951885223, 0.1119239553809166, -0.33840641379356384, -0.027921492233872414, 0.4251185655593872, -0.12315621972084045, -0.5017836093902588, 0.058915119618177414, -0.036374207586050034, -0.08887617290019989, -0.3053842782974243, -0.07977824658155441, 0.12711398303508759, 0.010965147987008095, 0.15702874958515167, -0.2544139623641968, 0.2854762673377991, 0.2075924575328827, -0.1425642967224121, -0.06360016018152237, 0.008876543492078781, -0.03905121609568596, -0.06902528554201126, -0.021565347909927368, -0.1129680722951889, -0.12272758781909943, -0.19689024984836578, -0.1659020334482193, 0.03345941752195358, 0.3430536389350891, -0.03313228115439415, -0.1759326010942459, -0.19218075275421143, 0.3089364469051361, 0.3255295157432556, -0.09729471802711487, 0.21179917454719543, -0.14976707100868225, -0.16411903500556946, -0.10718349367380142, 0.23941554129123688, -0.358209490776062, 0.08364826440811157, 0.3980250954627991, 0.17626823484897614, 0.1500542014837265, 0.49939945340156555, 0.052833590656518936, 0.14559698104858398, 0.6144595146179199, 0.0200333409011364, -0.2760273516178131, 0.2494542896747589, -0.16399218142032623, 0.07703131437301636, 0.24868977069854736, 0.13733349740505219, 0.20343266427516937, -0.4178551435470581, -0.2810765206813812, 0.06933800131082535, -0.35296735167503357, -0.09145381301641464, 0.0327373743057251, 0.2185279279947281, 0.09604861587285995, -0.2553854286670685, -0.07092291861772537, 0.1403016597032547, 0.07529416680335999, 0.05713732913136482, -0.04435528814792633, -0.1582048237323761, 0.014461807906627655, -0.05812692642211914, 0.029497457668185234, 0.20640969276428223, 0.05800570920109749, -0.25923848152160645, 0.04969527944922447, 0.003807714208960533, -0.004141293000429869, -0.656256914138794, 0.0015812375349923968, -0.29784274101257324, 0.3418733775615692, 0.17413459718227386, -0.01578669063746929, 0.21359823644161224, 0.1890213042497635, -0.17339560389518738, 0.07433217763900757, -0.3030995726585388, -0.005233655218034983, 0.23850223422050476, 0.002997146686539054, 0.05905768647789955, 0.09719402343034744, -0.08782550692558289, 0.12589921057224274, 0.023994801566004753, 0.06997708231210709, -0.008801867254078388, -0.0255893487483263, -0.022752730175852776, 0.2695188820362091, -0.07799914479255676, 0.04192771390080452, -0.04862510785460472, -0.1397942304611206, 0.1678621917963028, -0.44614675641059875, 0.18242929875850677, 0.2924904227256775, -0.06095777079463005, -0.10860896855592728, -0.08637521415948868, -0.15446503460407257, 0.18093888461589813, 0.025627415627241135, 0.19425058364868164, -0.10188260674476624, 0.17581038177013397, -0.19233790040016174, -0.2974967062473297, -0.5777889490127563, -0.052097611129283905, 0.04799691215157509, 0.10318854451179504, 0.05021015554666519, -0.07429619878530502, -0.11866689473390579, 0.23624224960803986, 0.02289540506899357, -0.32054269313812256, -0.04586513713002205, 0.07955562323331833, -0.266367644071579, 0.11937481164932251, -0.15257833898067474, -0.007818680256605148, -0.12183340638875961, -0.09024711698293686, 0.27608388662338257, -0.2866220474243164, -0.31367483735084534, -0.12724195420742035, 0.3107307255268097, -0.1638060212135315, 0.1018030121922493, 0.004745283164083958, -0.10709135234355927, 0.15531115233898163, 0.12939417362213135, 0.2086375504732132, -0.20149864256381989, 0.023143449798226357, 0.030028104782104492, 0.28938165307044983, 0.4024104177951813, 0.26827630400657654, 0.11143296957015991, 0.3766745328903198, -0.31468838453292847, -0.23262616991996765, -0.6398705840110779, -0.14573563635349274, 0.07096333056688309, -0.04319864138960838, 0.08948457986116409, 0.14892716705799103, 0.08408920466899872, -0.21281029284000397, 0.031959377229213715, 0.13872887194156647, 0.05540299043059349, 0.05964594706892967, 0.03917809575796127, -0.12224483489990234, 0.08374182134866714, 0.3071189224720001, 0.4522756338119507, -0.42653679847717285, 0.3824754059314728, -0.295335978269577, 0.07457167655229568, -0.12203259766101837, 0.27803391218185425, -0.19090308248996735, -0.4513075053691864, 0.31944090127944946, 0.017344605177640915, -0.013853831216692924, 0.2978883385658264, 0.031056545674800873, -0.0021827691234648228, 0.024338170886039734, -0.3248651921749115, 0.3008354902267456, -0.03739876672625542, -0.0036173921544104815, -0.03684810921549797, -0.20987319946289062, 0.5252761840820312, -0.23896682262420654, -0.24562601745128632, 0.24355001747608185, -0.24998179078102112, 0.03602460399270058, -0.021400362253189087, 0.31428128480911255, -0.4260951578617096, 0.17975173890590668, -0.062279969453811646, 0.11490455269813538, -0.050968848168849945, 0.25687676668167114, -0.13699693977832794, -0.08725002408027649, -0.11715951561927795, -0.03615565598011017, -0.10564792901277542, -0.20362024009227753, -0.4968338906764984, -0.08023642748594284, -0.4924468696117401, -0.003238260978832841, -0.1860174685716629, -0.2961748242378235, -0.15607142448425293, -0.06949316710233688, -0.21862728893756866, -0.3075436055660248, 0.12553168833255768, 0.04821907356381416, 0.7459040284156799, 0.1938926726579666, 0.0701051875948906, -0.332873672246933, -0.1937274932861328, 0.15493294596672058, -0.1923060566186905, -0.1526230126619339, 0.33407559990882874, 0.20450372993946075, -0.13128556311130524, -0.34575355052948, 0.2257823348045349, 0.05845877528190613, 0.10548938810825348, 0.43567168712615967, -0.3378106355667114, 0.14139710366725922, -0.08653096854686737, 0.09488144516944885, -0.2143048495054245, 0.10394727438688278, -0.3657150864601135, 0.42503416538238525, 0.02931501902639866, 0.18811635673046112, -0.0013521795626729727, -0.09748886525630951, -0.36903658509254456, -0.11599449068307877, 0.11926548928022385, -0.2850840985774994, -0.1300765573978424, 0.08314402401447296, 0.5092543363571167, -0.04649825021624565, 0.34585151076316833, -0.3434901237487793, 0.16298209130764008, 0.27987492084503174, 0.13351617753505707, 0.27191466093063354, 0.1247195154428482, -0.20179010927677155, -0.23475897312164307, 0.01564793288707733, 0.06663020700216293, -0.002151328371837735, 0.1912068873643875, -0.2462550550699234, 0.19813820719718933, 0.14327658712863922, -0.14100852608680725, 0.20758222043514252, -0.27107706665992737, -0.15142039954662323, 0.1709054857492447, -0.06091662496328354, -0.03584717586636543, 0.3610893487930298, 0.04842224344611168, -0.26271164417266846, -0.04314481467008591, -0.0588095486164093, -0.19189375638961792, 0.06711863726377487, -0.3659333884716034, 0.11689350754022598, -0.032699257135391235, -0.18127167224884033, 0.28655001521110535, 0.06802081316709518, 0.04919523745775223, -0.06423158943653107, 0.1656823456287384, -0.4102731943130493, -0.2339455485343933, -0.5125275254249573, -0.04497533664107323, -0.17714644968509674, -0.45429134368896484, -0.27799078822135925, 0.1479332149028778, 0.0877823531627655, -0.017933012917637825, 0.06779591739177704, -0.1334202140569687, -0.40931040048599243, 0.03628981113433838, -0.00569770485162735, 0.06679696589708328, 0.10599123686552048, 0.46588268876075745, 0.30338525772094727, -0.020660854876041412, -0.051573608070611954, 0.051611870527267456, 0.17940889298915863, -0.02592182718217373, 0.4154648184776306, 0.33616235852241516, -0.35828644037246704, -0.19560295343399048, 0.27717655897140503, -0.19851981103420258, 0.17122526466846466, -0.16372919082641602, 0.011541157029569149, 0.2627456784248352, -0.16384415328502655, -0.03594944626092911, 0.2241438925266266, -0.21352256834506989, -0.06512405723333359, -0.18765805661678314, 0.19798551499843597, -0.08254672586917877, -0.11445995420217514, 0.08582925796508789, -0.16706480085849762, 0.007921827025711536, -0.2081698626279831, 0.07958868145942688, 0.10567627102136612, -0.07840689271688461, 0.1412418633699417, -0.10224669426679611, -0.2541472911834717, -0.40099087357521057, -0.02481001242995262, -0.1541329026222229, -0.08097963780164719, 0.2998190224170685, -0.24280595779418945, -0.3357883393764496, -0.35443365573883057, 0.19781409204006195, -0.008448065258562565, -0.052355993539094925, 0.21320267021656036, 0.32159945368766785, -0.006864385679364204, 0.2500457763671875, 0.1379888951778412, -0.07065574079751968, -0.34450605511665344, 0.0935748815536499, -0.07698729634284973, -0.07790239155292511, -0.156884104013443, -0.1044868528842926, -0.25446435809135437, 0.18602193892002106, 0.26552677154541016, -0.23719869554042816, 0.06460274010896683, -0.07853631675243378, -0.22551415860652924, 0.40616363286972046, -0.14675836265087128, -0.22620521485805511, 0.12768875062465668, 0.0005327030085027218, -0.16813169419765472, -0.09433790296316147, 0.11511114239692688, 0.3258112668991089, 0.21295350790023804, -0.03447330370545387, 0.013028469868004322, -0.3259463608264923, 0.007637954317033291, -0.18049846589565277, 0.15968304872512817, -0.10798574984073639, 0.028851760551333427, -0.16352760791778564, -0.2712520658969879, 0.11128992587327957, -0.3621719181537628, -0.7930665612220764, 0.199858620762825, -0.14900802075862885, 0.002712623681873083, 0.0711493194103241, -0.045481085777282715, 0.47692549228668213, -0.07929560542106628, 0.0027860556729137897, -0.37865257263183594, 0.26384279131889343, -0.045750800520181656, 0.2828509509563446, -0.000677437346894294, -0.25670909881591797, 0.36530861258506775, 0.20732221007347107, 0.17112068831920624, 0.29135727882385254, 0.12516170740127563, 0.161692813038826, -0.053249165415763855, 0.035795025527477264, 0.23022355139255524, -0.38438475131988525, -0.2822894752025604, -0.26469334959983826, 0.05786551535129547, -0.15771356225013733, -0.38086995482444763, 0.4730464816093445, -0.4618684649467468, -0.21345211565494537, -0.106854148209095, 0.11572196334600449, 0.043589647859334946, -0.2447606772184372, -0.15790009498596191, 0.05263471603393555, 0.20457294583320618, -0.11071612685918808, -0.10619129240512848, 0.19013337790966034, 0.051478397101163864, 0.10153535008430481, 0.20972931385040283, 0.13108812272548676, 0.08358132094144821, -0.034805070608854294, 0.08468051999807358, -0.5661476850509644, 0.24918675422668457, 0.5142462849617004, -0.24990710616111755, 0.20062658190727234, 0.43260297179222107, -0.26106739044189453, -0.17329950630664825, -0.09433267265558243, -0.5442301630973816, -0.19075940549373627, -0.17824596166610718, 0.2408342808485031, 0.11365290731191635, -0.16206228733062744, -0.3591177761554718, 0.09969281405210495, -0.08436595648527145, 0.1974526047706604, -0.027197517454624176, -0.024967191740870476, -0.05896463245153427, 0.19009682536125183, 0.158404141664505, 0.42809295654296875, 0.255989134311676, 0.15793746709823608, -0.1703605353832245, 0.3900659680366516, 0.1753925383090973, -0.33003273606300354, -0.08291174471378326, 0.1885775625705719, 0.2490067332983017, -0.15947933495044708, 0.05748993158340454, 0.25530150532722473, -0.8266187906265259, -0.0609024278819561, -0.05831568315625191, 0.10257495194673538, 0.03299681469798088, -0.12932650744915009, 0.5308698415756226, -0.08554568886756897, -0.04388853907585144, 0.4978061616420746, 0.14047661423683167, 0.047745123505592346, 0.5413001775741577, 0.6859618425369263, -0.5782914161682129, 0.15027792751789093, 0.06896121054887772, -0.033276431262493134, 0.3432234525680542, -0.006576754152774811, 0.03228778764605522, -0.3104996979236603, -0.0031419440638273954, -0.12210270017385483, 0.03569088876247406, -1.2054623365402222, 0.20314721763134003, 0.03838193044066429, 0.0044862693175673485, -0.24348770081996918, -0.40519869327545166, -0.4849127233028412, 0.004886290989816189, -0.18145880103111267, -0.11958526819944382, 0.12793591618537903, -0.31318041682243347, -0.4334922730922699, 0.05181482061743736, 0.5103561878204346, -0.12664389610290527, -0.21432645618915558, 0.0054172794334590435, -0.031095052137970924, 0.12822014093399048, -0.4146953523159027, 0.4660756587982178, 0.11405333876609802, -0.46660709381103516, -0.2121955156326294, 0.4363710880279541, 0.13353151082992554, -0.15504391491413116, 0.0121407276019454, -0.1551792472600937, 0.03429802507162094, -0.3561323285102844, 0.026555616408586502, -0.07754521816968918, -0.20832374691963196, -0.08000385016202927, -0.17391085624694824, 0.164145827293396, 0.04127543047070503, -0.3634016811847687, 0.084095299243927, -0.03564392030239105, -0.07661505788564682, 0.23938150703907013, -0.06991170346736908, 0.06306414306163788, -0.23689325153827667, 0.05991600826382637, 0.13594308495521545, -0.29517465829849243, 0.017466548830270767, -0.209076926112175, 0.013573692180216312, -0.19560016691684723, 0.12109865248203278, -0.31891244649887085, 0.3322741687297821, 0.14415395259857178, -0.058810360729694366, 0.023505154997110367, -0.11953645199537277, 0.14617617428302765, -0.026826664805412292, -0.06674349308013916, -0.02688508667051792, 0.37000611424446106, 0.08762020617723465, -0.16292649507522583, 0.12799198925495148, -0.3306162655353546, 0.06837499141693115, -0.014830213040113449, -0.24913297593593597, 0.10451540350914001, 0.011052831076085567, 0.24558547139167786, 0.292087584733963, 0.23163092136383057, -0.2509416937828064, 0.14570319652557373, -0.0060776835307478905, 0.0962391123175621, -0.06812272220849991, 0.17693951725959778, 0.2146010845899582, -0.06987455487251282, 0.02184661105275154, 0.38262152671813965, -0.05347251519560814, -0.003427674528211355, 0.07787323743104935, -0.05222208425402641, 0.10998041927814484, -0.059442125260829926, 0.1414133608341217, 0.23159366846084595, -0.3277095854282379, -0.18856464326381683, 0.3096621632575989, 0.2379719465970993, -0.09170296043157578, -0.18430224061012268, -0.13473908603191376, -0.21506713330745697, -0.30349916219711304, 0.3500872850418091, -0.19311711192131042, 0.504130482673645, 0.08033270388841629, -0.24226616322994232, 0.07972243428230286, 0.12609004974365234, -0.3610226511955261, -0.23957324028015137, 0.01543981209397316, 0.42068716883659363, -0.18860211968421936, -0.24283704161643982, -0.09357084333896637, -0.08320269733667374, 0.0971577912569046, -0.14640206098556519, 0.031061865389347076, -0.0221642404794693, -0.2139793187379837, 0.2724764049053192, -0.6733481884002686, -0.1737671047449112, 0.17854249477386475, 0.42439883947372437, -0.1643560379743576, -0.008364690467715263, -0.21031317114830017, 0.14300812780857086, 0.13921529054641724, -0.014435423538088799, 0.20061646401882172, -0.39208707213401794, 0.40605753660202026, -0.07967246323823929, 0.2120445817708969, -0.22295737266540527, -0.17668980360031128, -0.2938411235809326, 0.044490616768598557, 0.3747420907020569, 0.1462707221508026, 0.034941576421260834, 0.2865697145462036, -0.18444526195526123, 0.1342712640762329, 0.007025863043963909, -0.21943114697933197, 0.0008021949324756861, 0.18888793885707855, 0.08834132552146912, -0.17380556464195251, -0.18586373329162598, -0.0365176647901535, 0.22401435673236847, -0.003890182124450803, -0.00820925086736679, 0.021934177726507187, -0.484340101480484, 0.0470927469432354, 0.1598684936761856, -0.22577673196792603, 0.5781901478767395, 0.045523546636104584, 0.30155158042907715, -0.42500659823417664, -0.23132498562335968, -0.020790796726942062, -0.0622510127723217, 0.15766894817352295, -0.11569099873304367, 0.19976961612701416, 0.1742931455373764, -0.20729416608810425, -0.14313441514968872, 0.3827526867389679, 0.010925698094069958, 0.20670633018016815, -0.3306407034397125, -0.08389562368392944, -0.07183387130498886, 0.12962064146995544, -0.2723972201347351, -0.07412125170230865, 0.0940825566649437, 0.22701451182365417, -0.0810481607913971, 0.24347226321697235, -0.25092270970344543, 0.17680472135543823, -0.3697388172149658, 0.2535494565963745, -0.3119133710861206, -0.1915769726037979, 0.06313293427228928, -0.4492286741733551, 0.037835974246263504, 0.12003044039011002, 0.2660028040409088, 0.027901383116841316, -0.369111567735672, -0.4182238280773163, -0.1663413941860199, 0.4241003096103668, 0.0961010679602623, 0.12528067827224731, -0.014607098884880543, -0.0559576191008091, -0.32129499316215515, -0.0733402818441391, 0.0010407279478386045, 0.04648284986615181, 0.0034504032228142023, -0.03111802041530609, 0.14794106781482697, 0.6201419830322266, 0.3595537841320038, 0.1924102008342743, 0.3088992238044739, 0.1671675741672516, 0.1855696588754654, 0.08144119381904602, -0.20341403782367706, -0.018730657175183296, -0.28740113973617554, 0.30910590291023254, -0.06376903504133224, -0.10886837542057037, 0.6398678421974182, 0.23850955069065094, -0.3349706828594208, -0.2553931176662445, 0.40620359778404236, -0.303792268037796, 0.556836724281311, -0.04888271540403366, -0.465799480676651, -0.04112936556339264, 0.14037564396858215, -0.32899248600006104, 0.17159005999565125, 0.16226913034915924, -0.31208914518356323, 0.11527843773365021, 0.33509549498558044, 0.03143135830760002, -0.1839827597141266, 0.02492498606443405, -0.38184094429016113, 0.15638233721256256, -0.1112108901143074, 0.010658965446054935, -0.14174425601959229, -0.006479712203145027, 0.03493154048919678, -0.15242375433444977, 0.15965454280376434, -0.35314247012138367, -0.20542921125888824, -0.005209434777498245, -0.13851694762706757, -0.22318267822265625, -0.12056257575750351, 0.08303189277648926, -0.1187797263264656, 0.20083832740783691, 0.0683642253279686, -0.2119576781988144, 0.5990307331085205, -0.07257875055074692, -0.02119780145585537, 0.033983416855335236, 0.08140017837285995, 0.027887670323252678, -0.19438722729682922, 0.2633762061595917, 0.1935826987028122, 0.19574180245399475, -0.03135613724589348, 0.005170784890651703, -0.3200342357158661, -0.7390036582946777, 0.16152691841125488, -0.03485377877950668, -0.4650782346725464, -0.04661703109741211, 0.18453258275985718, 0.22404824197292328, -0.03842528909444809, 0.2646467089653015, 0.10137610882520676, 0.03139078617095947, 0.06906379014253616, 0.02738351933658123, 0.12244676798582077, 0.0733691155910492, -0.17208166420459747, -0.2168319970369339, 0.32073816657066345, -0.258723646402359, 0.03037247806787491, -0.24332448840141296, 0.1691981554031372, -0.5388903021812439, 0.07899750024080276, 0.31979304552078247, -0.16217295825481415, 0.1570299118757248, -0.3637791574001312, 0.28483930230140686, 0.026170985773205757, -0.07083284854888916, -0.2329004555940628, -0.06901341676712036, -0.05211424082517624, 0.09876331686973572, -0.25889503955841064, 0.28598448634147644, -0.24135354161262512, 0.15604041516780853, -0.0669882521033287, 0.17004871368408203, 0.3500959575176239, -0.10918855667114258, 0.45594877004623413, 0.20529703795909882, -0.051530126482248306, 0.2300727516412735, -0.33381572365760803, 0.06639213860034943, 0.05619858577847481, -0.24471735954284668, -0.2016673982143402, -0.0363311693072319, 0.1101609617471695, -0.22031420469284058, -0.13199394941329956, -0.13273854553699493, 0.2826918959617615, 0.15411894023418427, -0.1652393937110901, -0.535764217376709, -0.4204638600349426, -0.07516393810510635, 0.056075289845466614, -0.32416588068008423, 0.1325926035642624, 0.11284209787845612, 0.07804132252931595, 0.10425621271133423, -0.09377270191907883, 0.04013805463910103, 0.11586081236600876, 0.00029899939545430243, 0.07268582284450531, 0.08298693597316742, -0.32346510887145996, 0.03295820206403732, 0.36536407470703125, -0.0020459843799471855, 0.13490822911262512, 0.12169881165027618, 0.14846499264240265, -0.25800949335098267, -0.061035964637994766, -0.025434667244553566, 0.04027259349822998, 0.35979408025741577, -0.15545344352722168, 0.16970400512218475, 0.010943024419248104, -0.24118198454380035, 0.23546966910362244, 0.03214994817972183, 0.009520580060780048, -0.048539672046899796, 0.1458175927400589, 0.14964264631271362, 0.0664343386888504, 0.12031964212656021, 0.06664489209651947, -0.1534925401210785, -0.008488211780786514, -0.2692202031612396, 0.13663624227046967, 0.35773298144340515, 0.004714478272944689, -0.06027291715145111, 0.2903955578804016, 0.07223353534936905, -0.20219425857067108, -0.10062375664710999, -0.09950698167085648, -0.019325532019138336, -0.0446920171380043, -0.062230516225099564, -0.044674381613731384, 0.23901158571243286, 0.15979182720184326, 0.06461625546216965, 0.019082479178905487, -0.42711952328681946, -0.16094531118869781, 0.09111902862787247, -0.2636168897151947, -0.1674545705318451, -0.019125085324048996, 0.20231834053993225, 0.12145492434501648, -0.20554666221141815, -0.05697181820869446, -0.6316224932670593, -0.10616765916347504, 0.004686736036092043, 0.08716529607772827, -0.08214829117059708, -0.03689790889620781, 0.08010680228471756, 0.05892897769808769, -0.2166689932346344, -0.3408990204334259, -0.062312401831150055, 0.4448230266571045, -0.13484449684619904, -0.2611554265022278, 0.20442365109920502, 0.3780505061149597, 0.6178486943244934, 0.02849331870675087, -0.16082027554512024, -0.022417524829506874, 0.16024483740329742, 0.04965353012084961, 0.06132972240447998, -0.24866938591003418, -0.16937454044818878, 0.4861033260822296, -0.30018946528434753, -0.1635126918554306, 0.26600560545921326, -0.3162783682346344, 0.05222003534436226, 0.10815723985433578, 0.05769016593694687, -0.1781981736421585, -0.20546302199363708, 0.3762545883655548, 0.07165349274873734, -0.17365388572216034, -0.7745639681816101, -0.18252500891685486, 0.14432935416698456, -0.11888693273067474, -0.3398946225643158, -0.06569692492485046, -0.31790366768836975, 0.0993342325091362, 0.3069784641265869, 0.18125542998313904, -0.19319704174995422, -0.2695874571800232, 0.09498840570449829, -0.3646869957447052, 0.22935855388641357, 0.0019849149975925684, -0.1171671524643898, 0.08560126274824142, 0.22733265161514282, 0.3054424226284027, -0.06895166635513306, 0.07345888763666153, 0.1366158127784729, -0.0223817341029644, 0.15901318192481995, -0.016446927562355995, -0.35353022813796997, 0.03554509952664375, 0.09515587240457535, 0.023304995149374008, -0.006826017051935196, 0.0535515695810318, 0.2502191960811615, -0.14384743571281433, 0.08027462661266327, 0.1459745168685913, -0.3455958068370819, 0.2627846598625183, 0.2051905393600464, 0.219059556722641, 0.626753568649292, -0.12618625164031982, -0.481935977935791, 0.10286211967468262, 0.10958597809076309, -0.052778780460357666, -0.24133677780628204, 0.38525667786598206, -0.32440900802612305, -0.2379690706729889, -0.09241313487291336, 0.029516955837607384, 0.07975572347640991, 0.0542471818625927, -0.038304176181554794, -0.09013840556144714, 0.1475462168455124, 0.06879506260156631, -0.4429018497467041, 0.1516372412443161, -0.3128226399421692, -0.01265723630785942, -0.14215289056301117, 0.27071887254714966, -0.09450042247772217, -0.05147368088364601, -0.43865615129470825, -0.016986725851893425, -0.4162095785140991, 0.14895761013031006, -0.057663582265377045, -0.0021232415456324816, 0.1564333289861679, -0.23926714062690735, 0.03387651592493057, 0.27128395438194275, 0.27197203040122986, -0.019804634153842926, 0.1240607425570488, 0.09840057790279388, 0.35048526525497437, -0.23072494566440582, -0.07261893898248672, -0.04499874264001846, 0.4501000642776489, 0.2950626313686371, 0.0876435935497284, 0.08370573073625565, 0.24972942471504211, -0.08089415729045868, 0.3330424726009369, -0.00454327929764986, 0.05058388039469719, -0.002468074206262827, -0.03656648099422455, 0.04199797660112381, -0.031422436237335205, -0.08307841420173645, 0.0921933576464653, 0.02234681136906147, -0.1491927206516266, 0.4824162721633911, -0.258033812046051, 0.30045005679130554, -0.3640136420726776, 0.11644546687602997, 0.0036130959633737803, -0.0564548633992672, 0.22076614201068878, -0.3132106065750122, -0.011075851507484913, -0.2514754831790924, -0.006475597154349089, 0.24699895083904266, -0.24070416390895844, 0.12989413738250732, 0.30680495500564575, -0.04835611954331398, 0.10015518963336945, -0.3244134187698364, 0.2798224985599518, -0.06695385277271271, -0.08649390935897827, 0.5926641225814819, -0.2669316530227661, -0.009515996091067791, 0.17972780764102936, -0.2445220798254013, -0.2426898330450058, -0.016209719702601433, 0.19496233761310577, -0.1785358488559723, -0.13346636295318604, -0.0962265133857727, 0.4139510989189148, 0.10298669338226318, 0.06425711512565613, 0.23221030831336975, -0.29630836844444275, -0.06943587213754654, -0.3842494487762451, 0.3755934238433838, -0.1835610270500183, 0.11415428668260574, -0.004057088866829872, -0.08192416280508041, -0.05559643730521202, -0.04345887154340744, -0.3342887759208679, 0.49397772550582886, 0.13628897070884705, 0.18991196155548096, -0.029928239062428474, 0.12243029475212097, -0.5474483966827393, 0.036760568618774414, 0.17160862684249878, 0.2978540062904358, 0.09880892932415009, -0.09433422237634659, -0.2602747976779938, -0.03386745601892471, 0.22292768955230713, 0.1880754679441452, 0.01819182187318802, -0.2880076467990875, -0.11354418843984604, -0.1116132140159607, 0.14127203822135925, -0.1892586499452591, -0.2350974977016449, 0.09590128809213638, -0.3375566601753235, -0.20420800149440765, 0.4244910776615143, 0.30642539262771606, -0.2166750729084015, -0.09523129463195801, -0.13254328072071075, -0.3457612991333008, -0.02159791998565197, 0.0428975485265255, 0.025386298075318336, -0.04221827909350395, -0.35745540261268616, 0.4280812740325928, -0.12966300547122955, 0.3470510244369507, -0.18609561026096344, 0.01358325220644474, -0.05532209202647209, -0.1365400105714798, -0.2806515097618103, 0.1385810673236847, 0.2581039071083069, -0.01478813961148262, -0.4406532943248749, -0.1868205964565277, -0.0391719751060009, -0.3428550064563751, -0.1376608908176422, -0.022077417001128197, 0.3296869099140167, 0.1403484046459198, -0.039138052612543106, -0.12469390779733658, 0.09621070325374603, 0.11557946354150772, 0.2330678403377533, 0.46032220125198364, 0.003395277773961425, 0.3502505421638489, -0.27393871545791626, -0.16363656520843506, 0.012341809459030628, -0.44574499130249023, 0.02638733759522438, -0.21413542330265045, -0.09499149024486542, 0.03802807256579399, 0.293645977973938, 0.09754671901464462, -0.5995052456855774, 0.25046178698539734, 0.000482931878650561, -0.15842172503471375, 0.28751346468925476, 0.4502018690109253, 0.24319124221801758, -0.1816403716802597, 0.035413507372140884, 0.16893884539604187, -0.301425039768219, -0.035266775637865067, 0.07989940792322159, 0.4669172763824463, 0.6539630889892578, 0.04821334779262543, -0.08391349762678146, 0.2482934296131134, 0.3790286183357239, 0.22993889451026917, 0.519439160823822, -0.38867512345314026, -0.2071295529603958, -0.18875664472579956, 0.20857606828212738, -0.18395781517028809, 0.061558403074741364, 0.030020806938409805, 0.17493651807308197, 0.37277400493621826, 0.2492065578699112, 0.3108054995536804, 0.4527551531791687, -0.07248025387525558, 0.3403708338737488, -0.2405899316072464, 0.029676564037799835, 0.10775374621152878, 0.3796224594116211, -0.2365715056657791, 0.19109457731246948, -0.09991046041250229, 0.1949690282344818, 0.2666666805744171, -0.3098507821559906, 0.09290648251771927, 0.2345823049545288, -0.2900504767894745, -0.17338307201862335, -0.05245811492204666, 0.39278659224510193, 0.1065819039940834, -0.0034952897112816572, 0.05703866854310036, 0.06635688990354538, 0.43685486912727356, -0.25046437978744507, 0.27762487530708313, -0.564230740070343, -0.210421621799469, -0.05270283669233322, -0.29796963930130005, 0.03071458823978901, 0.17184202373027802, -0.1362731158733368, -0.15558096766471863, 0.06740790605545044, -0.15944913029670715, 0.18461874127388, 0.032672759145498276, -0.10506229847669601, 0.2775906026363373, -0.24864411354064941, -0.14645057916641235, -0.3058565557003021, -0.3722950220108032, -0.31289446353912354, -0.16074594855308533, -0.10395411401987076, -0.01196089293807745, -0.39092299342155457, -0.14185112714767456, -0.10723723471164703, 0.3908192217350006, -0.18308952450752258, -0.03281281888484955, -0.024518728256225586, 0.07366534322500229, 0.30055156350135803, -0.04424675926566124, 0.30206066370010376, 0.2241804599761963, 0.5555912852287292, -0.015084191225469112, -0.17835311591625214, -0.04702005162835121, 0.27170342206954956, -0.033540934324264526, 0.49823832511901855, -0.24289283156394958, -0.1102457195520401, -0.049221932888031006, -0.1578783541917801, -0.06003805249929428, -0.2863682806491852, 0.4784742295742035, -0.22228148579597473, 0.49995699524879456, -0.1677335649728775, -0.006231117993593216, 0.2787790596485138, 0.0018226216780021787, -0.47007644176483154, -0.23431392014026642, -0.027950121089816093, 0.08902737498283386, -0.07296723127365112, -0.01017696037888527, -0.0022204278502613306, 0.19240020215511322, -0.06735724210739136, -0.08466263115406036, -0.1562933623790741, 0.3510688245296478, -0.4414070248603821, 0.14171193540096283, 0.07288183271884918, -0.12675711512565613, 0.21101044118404388, -0.11757279187440872, -0.10004029422998428, -0.05572570487856865, -0.07689843326807022, 0.06407462060451508, -0.15295714139938354, -0.25601860880851746, 0.08039525896310806, 0.11901262402534485, -0.010839646682143211, -0.11363059282302856, 0.21894387900829315, -0.14430293440818787, -0.36528968811035156, 0.1938469111919403, 0.13941991329193115, 0.0631573498249054, 0.2948704659938812, -0.09407539665699005, 0.059932466596364975, -0.050542935729026794, 0.017875516787171364, -0.33702415227890015, -0.07444867491722107, 0.06800162047147751, 0.20362037420272827, 0.26825660467147827, -0.09959143400192261, 0.02459593676030636, 0.031270142644643784, 0.10748264938592911, 0.06729768216609955, 0.2338356375694275, 0.38827061653137207, -0.10892073810100555, 0.185979425907135, 0.04862436279654503, 0.2971632480621338, 0.3463371694087982, 0.09387710690498352, 0.2879868447780609, -0.40460526943206787, -0.017261965200304985, -0.1348349004983902, 0.2046329379081726] /programs/dev/projects/testproject1 hist TCGA-05-4250 TCGA-05-4250-01Z-00-DX1.90f67fdf-dff9-46ca-af71-0978d7c221ba hist \ No newline at end of file +embedding authz collection_name collection_id case_id file_id model +"[-0.13619163632392883, -0.21455396711826324, 0.19904975593090057, -0.7322291135787964, -0.20747500658035278, -0.38388097286224365, -0.11370210349559784, 0.08014384657144547, 0.13199090957641602, -0.09070850163698196, -0.1228351965546608, -0.13866069912910461, 0.1603187471628189, 0.18289460241794586, 0.015696357935667038, -0.07892560213804245, 0.30034101009368896, 0.5045534372329712, 0.30817267298698425, 0.09720676392316818, 0.03871489316225052, 0.7900959849357605, -0.2474665343761444, -0.2625487744808197, -0.22774933278560638, 0.005736266728490591, 0.11178507655858994, 0.3571614921092987, 0.030263446271419525, -0.19654563069343567, -0.09502054005861282, -0.06004258617758751, 0.09894454479217529, 0.1697264015674591, -0.004628920927643776, 0.29070955514907837, 0.11792268604040146, -0.02719276398420334, 0.28063687682151794, 0.0576934851706028, 0.10009155422449112, -0.022250866517424583, 0.011217284947633743, -0.8231900334358215, -0.38298165798187256, 0.11350670456886292, 0.2858494520187378, -0.049299102276563644, 0.24719449877738953, 0.28902754187583923, 0.22409386932849884, 0.3357539474964142, 0.040568768978118896, -0.082320936024189, -0.03029692731797695, 0.13976004719734192, 0.457918643951416, -0.3430088758468628, 0.15408872067928314, 0.015120175667107105, 0.59786057472229, -0.06896495074033737, -0.10178735107183456, 0.1636393517255783, -0.05638265982270241, 0.09943421185016632, -0.30467966198921204, -0.07455725222826004, -0.35063573718070984, 0.11944466084241867, -0.3203461170196533, 0.00832172017544508, -0.022712262347340584, 0.1615058183670044, 0.3227720260620117, -0.3073139488697052, 0.30251505970954895, 0.17196878790855408, 0.5516959428787231, 0.17086449265480042, -0.10866858810186386, -0.3008887469768524, -0.7729673981666565, -0.15479052066802979, 0.0795634463429451, 0.2085164487361908, 0.056021250784397125, -0.2609158754348755, -0.11129969358444214, -0.10689205676317215, 0.2835356593132019, 0.09036347270011902, -0.3405427634716034, -0.10925803333520889, 0.051332250237464905, 0.16573059558868408, 0.0712144672870636, 0.05430306866765022, 0.21205811202526093, -0.09039133042097092, 0.3926528990268707, 0.4695168137550354, -0.010591994039714336, 0.15633617341518402, -0.35860419273376465, 0.3162543773651123, 0.12618014216423035, 0.07653821259737015, 0.13337498903274536, 0.5850751996040344, -0.06050882861018181, 0.3985886573791504, -0.011202647350728512, 0.1266166865825653, -0.03786696121096611, -0.490255206823349, 0.14621229469776154, -0.13141314685344696, -0.1921333372592926, 0.1267978847026825, 0.2065344899892807, 0.23042449355125427, 0.11008061468601227, 0.03978215530514717, 0.06473101675510406, -0.3002535402774811, 0.20333871245384216, -0.42222926020622253, 0.2894158661365509, 0.10730931907892227, 0.13396768271923065, -0.13127906620502472, 0.1742572784423828, -0.1816381812095642, 0.7518298625946045, -0.3155418038368225, -0.08807142078876495, 0.06066034361720085, -0.18648146092891693, 0.22751878201961517, 0.2598530054092407, -0.211373433470726, 0.06741373240947723, 0.06564345210790634, -0.19972047209739685, 0.17044158279895782, -0.2503531575202942, -0.0467257983982563, 0.2313777506351471, 0.15031486749649048, -0.08136433362960815, 0.02198443002998829, -0.06234657019376755, -0.0005442240508273244, 0.25390326976776123, -0.3272538185119629, -0.02667154371738434, -0.003700706409290433, -0.01131089311093092, 0.1363588273525238, 0.3406217396259308, 0.061808474361896515, 0.1887376755475998, 0.15029311180114746, -0.155809223651886, -0.5798382759094238, 0.1244431659579277, 0.16102993488311768, -0.22609427571296692, -0.22439517080783844, -0.13910835981369019, 0.5062546133995056, -0.23312966525554657, -0.02127399854362011, -0.2682431638240814, 0.4208739101886749, 0.07847361266613007, -0.22065462172031403, 0.0489187054336071, 0.012171381153166294, 0.07565643638372421, 0.03378574922680855, 0.07826809585094452, -0.15103262662887573, 0.07668288052082062, -0.3512359857559204, -0.2517634630203247, -0.37329286336898804, 0.5600566267967224, -0.22710606455802917, -0.3183908760547638, -0.198636993765831, -0.07363607734441757, 0.19194303452968597, 0.023174533620476723, -0.11117152869701385, -0.17696185410022736, -0.3306180238723755, 0.17830072343349457, 0.4601685404777527, 0.04995455965399742, -0.10633940994739532, 0.3732711970806122, -0.01176505908370018, 0.15522372722625732, 0.42192596197128296, 0.215399831533432, -0.09421893209218979, 0.5698329210281372, 0.12957799434661865, -0.2110569030046463, -0.1497240513563156, 0.032844483852386475, -0.06190287321805954, 0.055545300245285034, 0.049898479133844376, 0.3039413094520569, -0.4425290822982788, 0.1171792596578598, 0.33214566111564636, -0.2943495213985443, -0.08851000666618347, 0.15474149584770203, 0.08276538550853729, 0.22111622989177704, -0.17042097449302673, -0.16402217745780945, 0.02145359106361866, -0.03135351464152336, -0.23901303112506866, 0.20249958336353302, 0.03044889308512211, 0.13001857697963715, -0.26353588700294495, -0.4074971675872803, -0.12158506363630295, -0.05350325629115105, -0.20451924204826355, 0.05683857202529907, -0.1453418880701065, -0.2810852527618408, -0.39443764090538025, -0.006406807340681553, -0.16298580169677734, -0.08428455889225006, 0.2137300968170166, -0.31682416796684265, 0.2983298897743225, 0.01499616727232933, -0.5899606347084045, -0.08135920763015747, -0.01516257505863905, -0.10161872953176498, 0.48903313279151917, -0.06523187458515167, 0.3205021917819977, 0.28987157344818115, -0.3129703402519226, 0.32169750332832336, 0.13514961302280426, 0.20399056375026703, 0.18280917406082153, -0.2029438614845276, -0.24423126876354218, 0.371031790971756, 0.0830804631114006, -0.00032055636984296143, -0.05676300823688507, 0.027420716360211372, -0.050030194222927094, -0.6031910181045532, -0.22547000646591187, 0.29630765318870544, -0.310491681098938, -0.2616253197193146, -0.0737868919968605, -0.4164172112941742, -0.04355514422059059, 0.046454332768917084, 0.2820219397544861, 0.07794466614723206, 0.02371070720255375, -0.007886583916842937, -0.2522351145744324, -0.5675255060195923, -0.28571292757987976, 0.03871678188443184, 0.02874898351728916, 0.08730119466781616, 0.06927260011434555, -0.3481995463371277, 0.2345798760652542, 0.1022268608212471, -0.12228067219257355, 0.4421916604042053, 0.24783538281917572, 0.026187295094132423, -0.14107008278369904, -0.18193556368350983, 0.07918474823236465, -0.23297975957393646, -0.17904795706272125, 0.16615113615989685, -0.5413036346435547, -0.3441251516342163, 0.01967940293252468, 0.4133264720439911, -0.10110588371753693, 0.14991915225982666, -0.3386097252368927, -0.32271498441696167, 0.12008024752140045, 0.3604337275028229, 0.2540026009082794, 0.13660527765750885, -0.11767939478158951, 0.15431243181228638, 0.048581693321466446, 0.47075003385543823, 0.14045318961143494, 0.18157149851322174, 0.27502205967903137, -0.36342740058898926, -0.04355493560433388, -0.7715284824371338, -0.10391094535589218, 0.3045954704284668, 0.25810304284095764, 0.002234158804640174, 0.3483503758907318, 0.045933082699775696, -0.04138527065515518, 0.03892790526151657, 0.3182721734046936, 0.15775437653064728, 0.33006736636161804, 0.18388590216636658, 0.14602969586849213, -0.22788234055042267, 0.5329877138137817, 0.3842070698738098, -0.5173192024230957, 0.19824352860450745, -0.12635645270347595, 0.20640596747398376, 0.058951154351234436, 0.16807174682617188, -0.24966749548912048, -0.2868064045906067, 0.2118798941373825, -0.12786811590194702, 0.23673447966575623, 0.3310508131980896, 0.04077959433197975, 0.13272826373577118, -0.27262064814567566, -0.33139586448669434, 0.10821441560983658, 0.06734877824783325, 0.10241713374853134, -0.3355989158153534, 0.2068301886320114, 0.7503467798233032, -0.176081120967865, -0.19849106669425964, 0.3191021978855133, -0.31948918104171753, 0.016096213832497597, -0.10462456196546555, 0.35823506116867065, -0.24661169946193695, 0.2123555690050125, -0.06384176760911942, 0.014302048832178116, 0.07708126306533813, 0.10311921685934067, -0.05363418534398079, -0.16802522540092468, -0.33337676525115967, -0.04821903258562088, -0.21406961977481842, 0.003775498829782009, -0.3285370171070099, -0.16028766334056854, -0.36025717854499817, -0.23169894516468048, 0.048434626311063766, -0.2835023105144501, -0.1484088897705078, 0.08359990268945694, -0.18375591933727264, -0.4997631311416626, 0.28572800755500793, 0.05986013635993004, 0.6135467290878296, -0.13576970994472504, 0.007165468297898769, -0.23313559591770172, -0.2611614763736725, 0.043965913355350494, 0.11779136210680008, 0.17879915237426758, 0.15815097093582153, 0.10637246817350388, -0.3130263686180115, -0.3333944082260132, 0.016973305493593216, -0.0984543189406395, 0.24737341701984406, 0.7037586569786072, -0.42391133308410645, 0.11579998582601547, -0.19347721338272095, 0.05079898610711098, -0.32136568427085876, -0.05476074293255806, -0.5136941075325012, 0.27124467492103577, 0.28956741094589233, 0.12493069469928741, -0.03193524852395058, -0.09017448872327805, -0.7023348212242126, -0.0530768521130085, -0.10993587970733643, -0.08316690474748611, -0.07282934337854385, -0.03794693574309349, 0.26755839586257935, 0.027168015018105507, 0.20549479126930237, -0.19288314878940582, -0.029254306107759476, 0.47911444306373596, 0.28702613711357117, 0.33229175209999084, -0.06924732029438019, 0.22287894785404205, -0.437335729598999, 0.2145777940750122, -0.07947006821632385, 0.015287824906408787, 0.27526143193244934, -0.23339954018592834, 0.25263819098472595, 0.30602502822875977, -0.03868090733885765, -0.08396679162979126, 0.03333088010549545, 0.025831522420048714, 0.042922984808683395, -0.2649041712284088, -0.12866364419460297, 0.4154479205608368, 0.008601987734436989, -0.32621681690216064, 0.051323432475328445, -0.21316225826740265, -0.2801886200904846, 0.07288748025894165, -0.39330342411994934, 0.05925355479121208, 0.2642344534397125, -0.13519889116287231, 0.2041570097208023, 0.0499805323779583, 0.3549205958843231, -0.13178445398807526, 0.16752994060516357, -0.2913111746311188, -0.4054122567176819, -0.41404610872268677, 0.11061812937259674, -0.20719417929649353, -0.44016698002815247, -0.2849007248878479, 0.30006691813468933, -0.018827009946107864, -0.08288103342056274, 0.4069344699382782, -0.22353146970272064, -0.16073691844940186, 0.010194769129157066, 0.09967052191495895, -0.03117315098643303, 0.1842065006494522, 0.4396534562110901, 0.48006945848464966, 0.23076677322387695, 0.0718982145190239, -0.051829587668180466, 0.026281338185071945, -0.10028132796287537, 0.39268019795417786, 0.5847302079200745, -0.42348185181617737, -0.12730634212493896, 0.023421745747327805, -0.12645764648914337, 0.14978112280368805, -0.08727137744426727, -0.3895256221294403, -0.316405713558197, -0.14457733929157257, -0.05037292465567589, 0.16811145842075348, -0.0068750022910535336, -0.04583144560456276, 0.055451758205890656, 0.2139507532119751, 0.24581369757652283, 0.051586177200078964, -0.04901115968823433, 0.022214720025658607, -0.14300978183746338, 0.011116554029285908, 0.15016435086727142, 0.19437232613563538, -0.06755264848470688, 0.14295338094234467, -0.16013970971107483, -0.3141442835330963, -0.6935772895812988, -0.04716052487492561, 0.2002415508031845, -0.13493108749389648, 0.12367360293865204, -0.17895688116550446, -0.14932569861412048, -0.35737666487693787, 0.5385494232177734, -0.06187208369374275, -0.183836430311203, 0.2127377986907959, 0.29950451850891113, 0.16212120652198792, 0.43783873319625854, 0.3685432970523834, -0.12594620883464813, -0.20556841790676117, 0.13593435287475586, 0.01927170902490616, -0.10175804793834686, -0.4503883123397827, -0.11516934633255005, -0.1086796298623085, 0.3705168068408966, 0.16524480283260345, -0.41593724489212036, 0.29816585779190063, -0.07389909029006958, -0.19603270292282104, 0.5288832187652588, -0.0272569190710783, -0.1651505082845688, -0.009595193900167942, 0.3541204631328583, -0.05164288729429245, -0.1209789291024208, -0.01750762388110161, 0.15428107976913452, 0.23434418439865112, 0.1295781284570694, 0.25713831186294556, -0.4551621377468109, -0.10759461671113968, 0.12405644357204437, 0.0867907926440239, 0.06641197949647903, -0.12753744423389435, 0.08885318040847778, -0.6430838108062744, 0.4151393473148346, -0.17206618189811707, -0.5653821229934692, 0.07282427698373795, -0.2211044430732727, 0.032256290316581726, 0.09638577699661255, 0.05898178741335869, 0.6551027894020081, -0.3242684304714203, -0.07226765900850296, -0.38605162501335144, 0.156418576836586, -0.12792056798934937, 0.34035444259643555, -0.027110766619443893, -0.22680765390396118, 0.09260367602109909, 0.2426684945821762, 0.10937651246786118, 0.09206648170948029, 0.13083621859550476, 0.02126624993979931, -0.34407469630241394, 0.17361615598201752, -0.028531432151794434, -0.3000500798225403, 0.08806441724300385, 0.07798617333173752, 0.2239457070827484, 0.016937311738729477, -0.3390747308731079, 0.17559769749641418, -0.3608980178833008, -0.19822733104228973, -0.07195188105106354, 0.11879222840070724, 0.14618857204914093, -0.12466689199209213, -0.13657140731811523, -0.13281166553497314, 0.22050292789936066, -0.3009953200817108, -0.537128210067749, 0.19701941311359406, 0.10446779429912567, 0.18038469552993774, -0.17139066755771637, -0.050174176692962646, 0.166202113032341, -0.14329668879508972, 0.11729782074689865, -0.3493359088897705, 0.2503286898136139, 0.3089194595813751, -0.016438797116279602, 0.07706340402364731, 0.44491854310035706, -0.1363639086484909, -0.002081255428493023, -0.10974713414907455, -0.439660906791687, -0.25485965609550476, -0.25393858551979065, 0.23615843057632446, 0.3185696303844452, -0.0991637334227562, -0.6783620119094849, 0.28599491715431213, -0.0650508850812912, 0.3825238347053528, -0.23798768222332, 0.16778427362442017, -0.017053239047527313, 0.1405486762523651, 0.15579275786876678, 0.4309048652648926, -0.021374113857746124, 0.22380490601062775, -0.07759618014097214, 0.6303173303604126, 0.3961448669433594, -0.07191861420869827, -0.28081274032592773, 0.2687394917011261, 0.36797797679901123, -0.09518682211637497, 0.30845972895622253, 0.40513885021209717, -0.4401806890964508, 0.004827945958822966, -0.025697708129882812, -0.09196799248456955, 0.3173166811466217, 0.12207353860139847, 0.20884841680526733, -0.2470785230398178, -0.14184780418872833, 0.3342713713645935, -0.2296101450920105, 0.29883623123168945, 0.37206220626831055, 0.5312644839286804, -0.5501095652580261, 0.14557676017284393, -0.02214314043521881, -0.21307845413684845, 0.3564952313899994, 0.003560830606147647, -0.02678876928985119, -0.20582637190818787, 0.21193663775920868, 0.06956902891397476, -0.0013655874645337462, -1.0017154216766357, 0.14295420050621033, 0.2083408236503601, 0.3976875841617584, -0.05113891512155533, -0.22922095656394958, -0.45190155506134033, 0.020273303613066673, -0.30741381645202637, 0.1067364364862442, 0.13178490102291107, -0.46520528197288513, -0.18012867867946625, 0.25355643033981323, 0.5920997858047485, -0.17427343130111694, -0.14466014504432678, 0.34655794501304626, 0.109133280813694, -0.142724871635437, -0.353507399559021, 0.20620334148406982, -0.0443284809589386, -0.5107755661010742, -0.2889707684516907, 0.2509182393550873, 0.04229699447751045, -0.006218012887984514, -0.004723066929727793, -0.27007266879081726, 0.08344941586256027, -0.3217526376247406, -0.1256924569606781, 0.10797256976366043, 0.03779580816626549, 0.07700921595096588, -0.39483779668807983, 0.11552585661411285, 0.15427348017692566, -0.3510657250881195, 0.026830248534679413, -0.08745250850915909, -0.26131585240364075, -0.06087970361113548, -0.2696974277496338, 0.17155523598194122, -0.18538162112236023, 0.1804814636707306, 0.07627451419830322, -0.06447825580835342, 0.19929474592208862, -0.0012710702139884233, -0.40467923879623413, -0.44666168093681335, 0.245143324136734, -0.07293592393398285, 0.22865083813667297, -0.11857031285762787, 0.09880474954843521, -0.4442938268184662, -0.1693267524242401, 0.01051510963588953, -0.13203489780426025, -0.14027327299118042, -0.30844467878341675, 0.41983020305633545, -0.2639099657535553, -0.15044397115707397, 0.07540830969810486, -0.3498375713825226, 0.24299727380275726, 0.037235651165246964, -0.2801334261894226, -0.06464609503746033, 0.20247022807598114, 0.291277676820755, 0.3522090017795563, 0.37669065594673157, 0.2151554822921753, 0.008423964492976665, 0.12531021237373352, -0.020887883380055428, -0.08772056549787521, 0.3360171616077423, 0.1931668221950531, -0.05623703822493553, -0.04473751038312912, 0.4198928773403168, -0.27891892194747925, 0.21430036425590515, 0.011041484773159027, 0.035451389849185944, 0.4829634428024292, 0.3180229365825653, -0.1797255426645279, 0.1616518795490265, -0.31403085589408875, -0.2968966066837311, 0.11879260838031769, 0.16674791276454926, -0.11657661199569702, -0.27510640025138855, -0.1483294516801834, -0.2689549922943115, -0.16359415650367737, 0.20336729288101196, -0.19138619303703308, 0.3793902099132538, 0.12826086580753326, -0.30366250872612, 0.4165387451648712, 0.20091216266155243, -0.4823826253414154, -0.5591259002685547, -0.06899750977754593, 0.13070595264434814, -0.1099398136138916, -0.1829984188079834, -0.5351876616477966, -0.3916684091091156, -0.020701870322227478, -0.0792737677693367, -0.09904210269451141, 0.11358124762773514, -0.22162170708179474, 0.0736636221408844, -0.36650630831718445, 0.005426289979368448, -0.13107913732528687, 0.06725769490003586, -0.10634353756904602, -0.017909996211528778, -0.4429837465286255, 0.0802900493144989, 0.08115105330944061, -0.020475024357438087, 0.1864004284143448, -0.48622533679008484, 0.4676464796066284, 0.046773217618465424, -0.08716289699077606, -0.3067760169506073, -0.07883217185735703, -0.18893946707248688, -0.14515374600887299, 0.3306143283843994, -0.20309369266033173, -0.09522762894630432, 0.5461639761924744, 0.07503576576709747, 0.09279026091098785, 0.0554102398455143, 0.20247021317481995, 0.03500372916460037, 0.2722071707248688, 0.37366849184036255, -0.08184777945280075, -0.27849557995796204, -0.25112640857696533, 0.28018179535865784, 0.06821026653051376, 0.10126983374357224, -0.05918256565928459, -0.4940266013145447, 0.0017728687962517142, 0.49077385663986206, -1.673754013609141e-05, 0.8307745456695557, 0.16179658472537994, 0.010699109174311161, -0.23170194029808044, -0.24595020711421967, 0.027390412986278534, -0.3581514060497284, -0.1960878223180771, -0.2591889798641205, 0.35527515411376953, 0.1981356143951416, -0.03243666887283325, -0.052239228039979935, 0.04459287226200104, 0.09865497052669525, 0.062382280826568604, 0.03410651162266731, -0.12804344296455383, -0.0955657809972763, 0.24981319904327393, -0.14995890855789185, -0.08789347857236862, -0.22108213603496552, 0.6477357149124146, 0.05948695167899132, -0.0013020458864048123, -0.14478245377540588, -0.10162802040576935, -0.18770484626293182, 0.42127525806427, -0.13320617377758026, -0.26542043685913086, 0.2214445024728775, -0.28086331486701965, -0.06943336874246597, 0.20831359922885895, 0.5824766159057617, 0.04717540368437767, -0.3485977351665497, -0.4551500380039215, 0.3270510137081146, 0.4360038936138153, -0.133524551987648, 0.04302158206701279, -0.5200232863426208, 0.1703980416059494, -0.3472457826137543, -0.34007319808006287, 0.1525660902261734, 0.24671946465969086, -0.09666458517313004, -0.20956924557685852, 0.5009846091270447, 0.48897048830986023, 0.34427395462989807, 0.03438800200819969, 0.4378933012485504, 0.3610312342643738, 0.25565677881240845, -0.1915222853422165, -0.19455517828464508, 0.2570732533931732, -0.12297949939966202, 0.2008049190044403, -0.3176330327987671, 0.04897695779800415, 0.33858054876327515, 0.255271315574646, -0.4099518060684204, 0.17839008569717407, -0.14114083349704742, -0.4128485321998596, 0.6207808256149292, 0.1438528597354889, -0.034666527062654495, -0.004629121161997318, -0.040469031780958176, -0.32407474517822266, 0.24205222725868225, -0.04464956372976303, -0.07351381331682205, 0.27719008922576904, 0.044548191130161285, 0.07693920284509659, -0.26574981212615967, 0.07457588613033295, -0.10288099944591522, 0.1616092324256897, 0.0008499556570313871, 0.010317208245396614, -0.029047802090644836, 0.10925765335559845, 0.06724555790424347, -0.02134760282933712, 0.5089980363845825, -0.23909848928451538, -0.031195908784866333, 0.08493299037218094, 0.10108911246061325, -0.027157960459589958, -0.6483813524246216, 0.13199301064014435, -0.4433157742023468, 0.426561176776886, 0.42734766006469727, -0.15802784264087677, 0.1851949244737625, 0.02537107840180397, 0.0017911563627421856, 0.009391541592776775, -0.02312053181231022, 0.047721654176712036, -0.3829943835735321, 0.3632252812385559, 0.10577026754617691, 0.16868549585342407, 0.09747891873121262, -0.3058302700519562, -0.13209503889083862, -0.5285876393318176, 0.327184796333313, -0.1373886913061142, -0.24120278656482697, -0.019409222528338432, -0.15943869948387146, 0.1853874772787094, 0.030322378501296043, 0.23369100689888, 0.13034631311893463, -0.4953719973564148, 0.24964505434036255, 0.06352484971284866, 0.011157060042023659, 0.16255243122577667, -0.20308013260364532, -0.09787280112504959, 0.4601946771144867, -0.4126228392124176, 0.2192707359790802, -0.09963654726743698, -0.011251715011894703, -0.6253619194030762, -0.014829280786216259, 0.4592786729335785, -0.5262800455093384, -0.10997114330530167, -0.3031928539276123, 0.3229408860206604, -0.02714027278125286, 0.14466550946235657, -0.14022547006607056, 0.08944088220596313, 0.009215615689754486, 0.12491524964570999, -0.1451457291841507, 0.5279695987701416, 0.19090862572193146, -0.032220277935266495, -0.0450911745429039, -0.11792629212141037, 0.47441884875297546, -0.12856173515319824, 0.47831904888153076, 0.26828476786613464, 0.033580232411623, 0.6595548987388611, -0.5277701020240784, 0.2743629217147827, 0.03762684762477875, -0.04124370962381363, -0.32621514797210693, -0.025640670210123062, 0.4473482370376587, -0.19715140759944916, 0.014141401275992393, -0.32334959506988525, -0.01217272225767374, 0.22715924680233002, -0.5643863677978516, -0.29881832003593445, -0.4393872320652008, 0.05747051537036896, 0.08029834181070328, -0.2593574523925781, 0.23238736391067505, 0.2748798727989197, 0.30046430230140686, -0.12064727395772934, -0.38059061765670776, 0.06249146908521652, 0.16280439496040344, -0.10944411158561707, 0.18998953700065613, -0.1193394660949707, -0.4412041902542114, 0.07867961376905441, 0.5528861284255981, 0.2258969247341156, 0.00149339041672647, -0.1079452633857727, 0.08489993214607239, -0.17900879681110382, -0.10834188759326935, -0.2405012995004654, -0.050843387842178345, 0.34632495045661926, -0.12787722051143646, 0.20573844015598297, 0.07321105897426605, 0.038020458072423935, 0.04135823994874954, -0.12257841974496841, -0.21297793090343475, -0.27843114733695984, -0.11249221861362457, 0.11343549937009811, 0.030272580683231354, 0.11814041435718536, 0.24708051979541779, -0.22547350823879242, 0.006495098117738962, -0.323726087808609, 0.35775044560432434, 0.0352935865521431, 0.2457597255706787, 0.08246707916259766, 0.11620745807886124, 0.075604647397995, -0.34140121936798096, -0.4873569905757904, 0.09786461293697357, 0.03008934110403061, -0.2812436819076538, -0.04632607474923134, 0.08939728885889053, 0.2879575788974762, 0.011369394138455391, 0.05829090252518654, -0.04209045320749283, -0.3088327944278717, -0.404377818107605, 0.24061299860477448, -0.02940729446709156, -0.08857455104589462, 0.007070634514093399, 0.3669866621494293, 0.27949053049087524, -0.11974546313285828, -0.23507943749427795, -0.6651568412780762, -0.5054942965507507, -0.0637102946639061, 0.06928432732820511, 0.056403350085020065, 0.11262659728527069, -0.05397627875208855, -0.13293498754501343, -0.33693352341651917, -0.5204522609710693, 0.051677968353033066, 0.19370579719543457, 0.005065851379185915, -0.12048456817865372, 0.5005565881729126, 0.08575940877199173, 0.664306104183197, 0.15308506786823273, -0.00485055148601532, 0.05724763870239258, 0.44767534732818604, -0.14968529343605042, -0.031321365386247635, -0.1953427791595459, -0.06485230475664139, 0.5394757390022278, -0.06912385672330856, 0.10903144627809525, 0.1915155053138733, -0.4465932846069336, 0.20043353736400604, 0.004394493531435728, 0.12381678819656372, 0.09104294329881668, -0.2193942666053772, 0.46530282497406006, -0.1561872363090515, 0.06433597207069397, -0.83806312084198, -0.2554435431957245, 0.17223292589187622, -0.1984213888645172, -0.2454066127538681, -0.2168627828359604, 0.016334444284439087, 0.08545277267694473, 0.204039067029953, 0.2784389555454254, -0.10864786803722382, -0.14582911133766174, 0.08950447291135788, -0.36141806840896606, 0.28031790256500244, -0.08908936381340027, -0.07013627886772156, -0.07945509999990463, 0.21175798773765564, 0.15649613738059998, -0.13772769272327423, 0.12260802835226059, 0.10800894349813461, -0.11095339804887772, -0.03231760114431381, -0.1771053522825241, -0.15047197043895721, 0.017589576542377472, 0.27722224593162537, 0.002284700982272625, -0.08450799435377121, 0.11237179487943649, 0.139027401804924, 0.21645034849643707, -0.08145591616630554, -0.13719098269939423, -0.21261122822761536, 0.21265089511871338, 0.20396070182323456, 0.27343782782554626, 0.6513700485229492, -0.10917636007070541, -0.34408438205718994, 0.3028919994831085, 0.1310950517654419, -0.007243616506457329, -0.23672346770763397, 0.07199019938707352, -0.33759552240371704, -0.1100301668047905, 0.13933272659778595, 0.02709432877600193, 0.18965446949005127, 0.34456372261047363, -0.410631000995636, 0.2563808262348175, -0.03682463988661766, -0.4284466505050659, -0.050629112869501114, 0.2639903128147125, -0.4017064869403839, -0.16282130777835846, -0.24099363386631012, -0.07146590948104858, -0.1939517706632614, 0.05016815662384033, -0.2901114523410797, -0.011766009032726288, -0.7107430100440979, 0.14686809480190277, 0.2707972228527069, 0.13459861278533936, 0.06654944270849228, -0.4258749783039093, 0.26626837253570557, 0.24031555652618408, 0.41911089420318604, 0.19121518731117249, 0.1144581139087677, -0.30101633071899414, 0.47830432653427124, -0.07763273268938065, -0.25798988342285156, -0.1738377958536148, 0.2123834490776062, 0.28882113099098206, 0.07228468358516693, -0.008954609744250774, 0.27546337246894836, -0.0563528798520565, 0.24471290409564972, -0.01726970262825489, -0.20932388305664062, -0.004007826093584299, 0.03214631602168083, 0.04189253970980644, 0.23238493502140045, -0.04174110293388367, -0.013541826978325844, -0.09672720730304718, -0.09465448558330536, -0.040054090321063995, -0.11021718382835388, 0.31112995743751526, -0.2688223123550415, 0.2477252036333084, -0.07818911969661713, -0.22373034060001373, 0.22132465243339539, -0.06882433593273163, -0.2011108249425888, 0.10379969328641891, -0.2590133845806122, -0.05810712277889252, -0.35644224286079407, -0.10391082614660263, 0.25796210765838623, 0.16973620653152466, -0.21880172193050385, 0.06563743203878403, -0.06621408462524414, -0.04147668927907944, 0.1610260009765625, 0.4522942900657654, -0.18368278443813324, -0.29403772950172424, 0.11933279037475586, -0.15770846605300903, 0.23785455524921417, 0.029588697478175163, 0.16351917386054993, 0.020317960530519485, -0.0958269014954567, 0.11732586473226547, 0.3808238208293915, -0.15338709950447083, -0.1023205891251564, 0.08464653789997101, -0.08618627488613129, 0.011690479703247547, -0.31300005316734314, 0.45681387186050415, -0.2165272831916809, 0.04900144040584564, 0.29485732316970825, -0.07080733776092529, -0.34731966257095337, -0.10053610801696777, -0.2069302797317505, 0.2711080014705658, 0.007000169716775417, 0.3532405495643616, 0.017668042331933975, 0.1747308373451233, -0.9204283952713013, -0.008846400305628777, 0.1593906730413437, 0.37479397654533386, -0.05994372069835663, -0.10788340121507645, -0.5408215522766113, -0.21450303494930267, 0.1844348907470703, 0.3712220788002014, -0.5244972109794617, 0.21920490264892578, -0.18295031785964966, -0.4185578525066376, 0.4772205054759979, -0.024221433326601982, -0.28273844718933105, 0.08534568548202515, -0.33286258578300476, -0.2139756828546524, 0.20188771188259125, 0.2881448268890381, -0.08443035185337067, 0.14149117469787598, -0.026707151904702187, -0.2884756028652191, -0.11193034052848816, -0.10010965168476105, -0.1330394297838211, 0.13657276332378387, 0.032110545784235, 0.2865040898323059, -0.2561400830745697, 0.2830524742603302, -0.4084112048149109, 0.030835049226880074, 0.02094278857111931, -0.03892127051949501, -0.15654423832893372, 0.04423876479268074, 0.24534250795841217, -0.048340898007154465, -0.07991266250610352, -0.01717361994087696, -0.21523281931877136, -0.10047358274459839, -0.33454304933547974, -0.46917515993118286, 0.17774121463298798, 0.1645563244819641, 0.13212725520133972, 0.056731436401605606, 0.1021869033575058, -0.024123143404722214, 0.1869170069694519, 0.4170735776424408, -0.2708563208580017, -0.044201891869306564, -0.2884701192378998, -0.06590129435062408, 0.01723366044461727, -0.6958580613136292, 0.19920428097248077, 0.07244709879159927, -0.02735246531665325, 0.16768448054790497, 0.4132860004901886, 0.22200016677379608, -0.5302270650863647, 0.12961098551750183, 0.2281220555305481, -0.1959846466779709, 0.15191109478473663, 0.4805128276348114, 0.18711532652378082, -0.1579015552997589, 0.31817683577537537, 0.06384673714637756, 0.03379688784480095, -0.18304719030857086, -0.165267676115036, 0.3146880269050598, 0.7022923231124878, 0.315291166305542, 0.05094825103878975, 0.015440376475453377, 0.44740840792655945, -0.20110727846622467, 0.7358461022377014, -0.18629145622253418, -0.09240975230932236, -0.4624544382095337, 0.2641473412513733, -0.07001062482595444, -0.2555218040943146, -0.06382345408201218, 0.16181132197380066, 0.5489813685417175, 0.21496686339378357, 0.6577931642532349, 0.5412571430206299, -0.103000208735466, 0.27255165576934814, 0.07204461097717285, 0.12043001502752304, 0.08295948803424835, 0.5849183201789856, -0.2928149402141571, 0.1102849692106247, -0.057680923491716385, 0.1821500062942505, 0.32357335090637207, -0.26153889298439026, -0.09754674881696701, 0.053732652217149734, -0.47842317819595337, -0.20688866078853607, 0.14951646327972412, 0.44838747382164, 0.14524351060390472, -0.06533285230398178, -0.007105703931301832, 0.10970225185155869, 0.13142406940460205, -0.16857782006263733, 0.6117310523986816, -0.469184011220932, -0.43700164556503296, -0.08349652588367462, 0.04005957394838333, 0.03319272771477699, 0.09320873767137527, 0.05240950360894203, 0.005169416777789593, 0.12614794075489044, -0.18846891820430756, 0.30123043060302734, -0.05025377497076988, -0.017715945839881897, 0.3729603588581085, -0.20505496859550476, 0.12998934090137482, -0.3256887197494507, -0.6038056015968323, -0.21400347352027893, -0.17975439131259918, -0.03549601882696152, -0.09598817676305771, -0.46593227982521057, -0.2716807425022125, -0.0486767552793026, 0.14126504957675934, -0.3357084393501282, -0.1274467259645462, -0.009448129683732986, -0.10535240918397903, 0.14233890175819397, -0.0883721336722374, 0.014239928685128689, -0.02078290656208992, 0.8280668258666992, -0.06783537566661835, -0.21389257907867432, -0.19796575605869293, 0.3164111077785492, 0.20037724077701569, -0.007739713881164789, -0.019283412024378777, -0.1543770283460617, -0.3973469138145447, -0.14222727715969086, 0.15676790475845337, 0.0026995025109499693, 0.4827222526073456, -0.28523239493370056, 0.37933287024497986, -0.23608990013599396, 0.07253070920705795, -0.16349582374095917, -0.21670332551002502, -0.4600067436695099, -0.4325462579727173, -0.30464962124824524, 0.05532762035727501, -0.07494126260280609, -0.06917005032300949, 0.010595311410725117, 0.20044684410095215, -0.1972309947013855, 0.2520216405391693, -0.008332457393407822, 0.21147513389587402, -0.30657514929771423, 0.35718873143196106, 0.31389254331588745, -0.28029683232307434, 0.2575525641441345, -0.1878325343132019, -0.002393564209342003, -0.16520927846431732, -0.3906151354312897, 0.13165219128131866, -0.10013685375452042, -0.22287966310977936, 0.247037872672081, 0.3060052990913391, -0.06048667058348656, -0.2760451138019562, 0.23967568576335907, -0.14149227738380432, -0.4075431823730469, 0.15427130460739136, 0.28943341970443726, 0.18761679530143738, 0.024092422798275948, -0.05958128347992897, 0.32889288663864136, -0.04512329399585724, 0.03658537194132805, -0.21532872319221497, 0.1188119500875473, 0.05702861770987511, 0.35029223561286926, 0.4311788082122803, -0.6045475602149963, -0.07925701886415482, 0.4471966326236725, 0.28386539220809937, -0.35709625482559204, 0.3663390874862671, 0.4483744502067566, 0.054294876754283905, 0.1809999942779541, -0.04382993280887604, 0.33768004179000854, 0.27498090267181396, 0.07388273626565933, 0.014969564974308014, -0.19344036281108856, 0.34010201692581177, -0.11617447435855865, 0.35198119282722473]" /programs/dev/projects/testproject1 test_hist TCGA-05-4244 TCGA-05-4244-01Z-00-DX1.d4ff32cd-38cf-40ea-8213-45c2b100ac01 hist +"[-0.2422751635313034, -0.19156047701835632, 0.17423947155475616, -0.6961766481399536, -0.07623741775751114, -0.43636444211006165, 0.024083763360977173, 0.1123393252491951, 0.019690755754709244, 0.2294916957616806, -0.17337580025196075, -0.030815748497843742, 0.12434622645378113, 0.29981887340545654, 0.09637437760829926, -0.21874640882015228, 0.4427817165851593, 0.49762511253356934, 0.2950475811958313, 0.34434133768081665, -0.14771248400211334, 0.8751331567764282, -0.3044511675834656, -0.038916196674108505, 0.03382367268204689, 0.015322101302444935, 0.011417454108595848, 0.3404381573200226, -0.1270066648721695, -0.12437380850315094, -0.11408110707998276, -0.01565445028245449, -0.11295740306377411, -0.1910908967256546, 0.07587192207574844, 0.2465374916791916, 0.09013792127370834, 0.019632671028375626, 0.398668497800827, 0.2101159691810608, 0.2916657626628876, -0.02811267226934433, 0.4464501738548279, -0.5690780282020569, -0.2792591154575348, -0.03726795315742493, -0.12209481000900269, -0.029383953660726547, 0.26867061853408813, 0.229985773563385, 0.30268585681915283, 0.310729056596756, 0.21381664276123047, 0.1823876053094864, -0.24265611171722412, 0.2898450791835785, 0.21996596455574036, -0.25233951210975647, 0.30932512879371643, 0.11290279775857925, 0.6437631249427795, -0.08845086395740509, 0.0008616407867521048, 0.147410050034523, 0.22454458475112915, 0.19999082386493683, -0.14660359919071198, 0.0634554997086525, -0.21330943703651428, 0.13477689027786255, -0.42131567001342773, 0.03508366644382477, -0.10120511800050735, 0.002721731783822179, 0.09958530962467194, -0.3186537027359009, 0.2621344327926636, -0.14139965176582336, 0.38137754797935486, -0.31157419085502625, -0.11944655328989029, -0.28859183192253113, -0.8651900291442871, -0.06101176142692566, 0.09352094680070877, 0.041583213955163956, -0.13602404296398163, -0.23875050246715546, 0.03639005869626999, 0.03989725932478905, 0.26372262835502625, -0.12642832100391388, -0.126268669962883, -0.01529174204915762, 0.14861083030700684, 0.0648474469780922, -0.11979974806308746, -0.027420049533247948, -0.02632063627243042, -0.3028145730495453, 0.4521016478538513, 0.43737801909446716, 0.13500429689884186, -0.059484370052814484, -0.6335053443908691, 0.07030223309993744, 0.20264708995819092, -0.03492697700858116, -0.15298205614089966, 0.1806296557188034, -0.02422264777123928, 0.15182597935199738, 0.28224605321884155, 0.23157911002635956, -0.1905621588230133, -0.4159320592880249, 0.10815677791833878, -0.09094015508890152, -0.027300186455249786, 0.049443911761045456, 0.15749220550060272, 0.21138834953308105, -0.0455017164349556, 0.02346113882958889, -0.08210009336471558, -0.2371068298816681, 0.14134521782398224, -0.4173205494880676, 0.564729630947113, -0.11518523842096329, 0.10242991149425507, -0.5300824046134949, 0.17308981716632843, -0.3145581781864166, 0.424477756023407, -0.16896800696849823, -0.04178111255168915, -0.07624433934688568, -0.16959235072135925, 0.06338658928871155, 0.2868473529815674, -0.06357678771018982, -0.17068803310394287, -0.026248546317219734, -0.33691006898880005, -0.05234088376164436, -0.03666169196367264, -0.1865922212600708, 0.4443294107913971, -0.0448872447013855, -0.0014361655339598656, -0.01053626649081707, -0.00601997273042798, -0.12174534797668457, 0.149423748254776, -0.26437878608703613, -0.24569840729236603, -0.13461215794086456, -0.154512420296669, 0.3371795415878296, 0.14551977813243866, -0.04002705588936806, -0.059006307274103165, 0.04278174042701721, -0.1521117389202118, -0.5350311398506165, -0.01646946556866169, 0.2621167302131653, -0.1862824261188507, -0.6370884776115417, -0.20556342601776123, 0.39941155910491943, -0.19551382958889008, -0.11372336745262146, -0.035868410021066666, 0.4223746955394745, 0.001699577085673809, -0.13319452106952667, 0.04218136891722679, -0.11164357513189316, 0.06712617725133896, -0.06806542724370956, -0.061309102922677994, -0.23085445165634155, 0.17828723788261414, 0.12527111172676086, -0.05562837794423103, -0.2808569073677063, 0.3874916434288025, 0.0004596871149260551, 0.009344857186079025, 0.08840726315975189, 0.21144390106201172, 0.20682838559150696, 0.06178729981184006, 0.050268981605768204, -0.08593414723873138, -0.0487326979637146, 0.01227693259716034, 0.21669796109199524, 0.009584934450685978, -0.11340592801570892, 0.23753975331783295, 0.3457641005516052, 0.09608599543571472, 0.2645610272884369, -0.24300312995910645, 0.12678006291389465, 0.6495593190193176, 0.17521366477012634, 0.025983888655900955, 0.1353543996810913, 0.12212659418582916, -0.07334114611148834, -0.14319102466106415, 0.10888568311929703, 0.07622324675321579, -0.4230372905731201, 0.016992060467600822, 0.22900232672691345, -0.030587099492549896, 0.13677668571472168, 0.2513795793056488, 0.13436390459537506, 0.022562753409147263, 0.0013417843729257584, -0.031205296516418457, 0.10484732687473297, 0.23718883097171783, 0.0071348026394844055, 0.28366178274154663, 0.15560488402843475, -0.1275864541530609, -0.27593696117401123, -0.08425790816545486, -0.06840703636407852, 0.12867063283920288, -0.33315950632095337, 0.04049692302942276, -0.08553355932235718, -0.1497241109609604, -0.40899401903152466, -0.01873769797384739, -0.181904137134552, 0.1337631344795227, 0.3970034122467041, 0.22553379833698273, 0.36652833223342896, 0.1573910415172577, -0.8666275143623352, -0.12108833342790604, -0.05828577280044556, -0.04493441805243492, 0.38728147745132446, -0.0792747214436531, 0.3933441638946533, 0.30655035376548767, -0.024632250890135765, 0.14601628482341766, -0.06969977915287018, 0.5230111479759216, 0.11597564816474915, 0.12907670438289642, -0.2701079845428467, 0.3136879801750183, -0.050173353403806686, 0.00952222477644682, -0.21606720983982086, 0.21651121973991394, -0.27642500400543213, -0.20930548012256622, -0.2709471881389618, 0.3240745961666107, -0.277609258890152, -0.415738582611084, 0.21671396493911743, -0.1968773603439331, 0.023106388747692108, -0.23779727518558502, -0.03238436207175255, 0.17651309072971344, 0.3583691716194153, 0.07979673147201538, -0.20241738855838776, -0.5851300954818726, -0.5173640251159668, 0.06883078068494797, -0.10372298210859299, 0.0619271956384182, 0.2457083910703659, -0.2978776693344116, 0.31699731945991516, -0.21249081194400787, -0.20531967282295227, 0.20425085723400116, 0.0060919807292521, -0.21097086369991302, -0.09364393353462219, -0.19244268536567688, 0.3497353494167328, -0.29157131910324097, -0.13436004519462585, -0.017451953142881393, -0.24396057426929474, -0.22118058800697327, 0.26016637682914734, 0.5284312963485718, -0.23984624445438385, 0.09116223454475403, 0.04162060096859932, 0.10022836178541183, 0.2954694330692291, 0.19237148761749268, 0.22480322420597076, -0.1518702358007431, -0.1677330583333969, -0.05124318227171898, -0.15542323887348175, 0.5863812565803528, 0.11501459777355194, 0.18413178622722626, 0.4391504228115082, -0.30334001779556274, -0.009808436036109924, -0.5193591117858887, 0.09048589318990707, 0.09096083045005798, 0.08490321040153503, -0.18010728061199188, 0.14576777815818787, 0.0011890266323462129, 0.14528818428516388, 0.07990775257349014, 0.040081560611724854, 0.21091493964195251, -0.27675914764404297, 0.17061714828014374, 0.055184200406074524, -0.05793410539627075, 0.32086998224258423, 0.3768148422241211, -0.48849010467529297, 0.13097110390663147, -0.11714407801628113, 0.1329052746295929, -0.06882729381322861, 0.3282771408557892, -0.11238204687833786, -0.23665191233158112, 0.2434665858745575, 0.009468781761825085, 0.254753053188324, 0.26076972484588623, 0.027813926339149475, 0.073555588722229, -0.530153751373291, -0.12183964252471924, 0.18917232751846313, 0.07774495333433151, -0.1187114268541336, -0.1849992424249649, 0.2799311578273773, 0.6586003303527832, -0.08791783452033997, -0.225792795419693, -0.10738929361104965, -0.19572772085666656, 0.09904233366250992, -0.041592806577682495, 0.47808265686035156, -0.39373719692230225, 0.2658788561820984, -0.14546695351600647, -0.08210616558790207, 0.26662924885749817, -0.1045488491654396, -0.2573747932910919, -0.3225111663341522, -0.5081708431243896, -0.1692373901605606, -0.3521956205368042, -0.08459626883268356, -0.2883281707763672, -0.08611195534467697, -0.2997075319290161, -0.38304072618484497, -0.31306925415992737, -0.35754358768463135, 0.08074411749839783, -0.04652875289320946, -0.0788680911064148, -0.14036761224269867, 0.4501511752605438, -0.0889260396361351, 0.5202757716178894, -0.05688798055052757, 0.08924422413110733, -0.18403983116149902, -0.35658547282218933, 0.24087196588516235, 0.03575214743614197, -0.25667205452919006, 0.2720349431037903, 0.0030399044044315815, -0.21621933579444885, -0.03669534623622894, -0.09190379083156586, -0.13600516319274902, 0.18444018065929413, 0.44220876693725586, -0.3789066970348358, -0.11661709100008011, -0.13532017171382904, 0.15964576601982117, -0.22520965337753296, -0.04191878065466881, -0.2784949243068695, 0.3483494520187378, 0.1162835881114006, 0.15543504059314728, 0.014641528949141502, -0.12254028022289276, -0.352666437625885, -0.11246484518051147, -0.013864615932106972, -0.07857650518417358, 0.049724385142326355, 0.1035194844007492, 0.44118738174438477, 0.0539737343788147, 0.2812623381614685, -0.32795023918151855, 0.4069497585296631, 0.41165560483932495, 0.3540135324001312, 0.7743960022926331, -0.16196182370185852, 0.22254027426242828, -0.5279088020324707, 0.08700212091207504, 0.022289490327239037, -0.19719761610031128, 0.25126540660858154, -0.26500779390335083, 0.319698303937912, 0.04094577208161354, -0.12977853417396545, 0.07145258784294128, 0.10329683125019073, -0.02585894986987114, 0.10413157939910889, 0.14623622596263885, -0.21778354048728943, 0.3430931270122528, 0.11611845344305038, -0.25426748394966125, -0.022074783220887184, -0.006674581207334995, -0.13149498403072357, 0.12509092688560486, -0.3680766224861145, 0.06693848222494125, 0.5278906226158142, -0.4778217375278473, 0.03606640174984932, -0.03034728579223156, -0.0637090727686882, -0.12649373710155487, 0.0829799622297287, -0.20523041486740112, -0.2617558538913727, -0.38937321305274963, 0.08720663189888, -0.1990419328212738, -0.43281787633895874, -0.0944630429148674, 0.4924187660217285, 0.05032286047935486, -0.13684971630573273, 0.4906918704509735, -0.11399675905704498, -0.2376149743795395, -0.00799871888011694, 0.12087036669254303, -0.27945902943611145, -0.021096862852573395, 0.2885887324810028, 0.3740416467189789, 0.22593970596790314, -0.01098528690636158, -0.07118489593267441, -0.017614807933568954, -0.02045554481446743, 0.5146793127059937, 0.3873457908630371, -0.3371168076992035, -0.1863938868045807, -0.008475102484226227, -0.22443757951259613, 0.3134922683238983, 0.02402806282043457, -0.1684689223766327, -0.4090140461921692, -0.033716872334480286, -0.1368998885154724, 0.30309462547302246, -0.08145948499441147, 0.047871291637420654, 0.0709410235285759, 0.2859799265861511, 0.14595475792884827, 0.018507277593016624, -0.024424416944384575, 0.03148259222507477, 0.0869567021727562, -0.11464294046163559, 0.28089985251426697, 0.07528315484523773, -0.1693502813577652, -0.014925521798431873, 0.01251167431473732, -0.43612906336784363, -0.34997856616973877, 0.17949126660823822, 0.012938253581523895, -0.24457071721553802, 0.038713354617357254, -0.23068057000637054, -0.2354753315448761, -0.2672223150730133, 0.23363307118415833, 0.2076774388551712, -0.1348261684179306, 0.008930410258471966, 0.36557191610336304, 0.1521596759557724, 0.4256863296031952, 0.26385393738746643, -0.2027740478515625, -0.3281485438346863, 0.007624200079590082, 0.07906628400087357, -0.025851983577013016, -0.34167781472206116, -0.0007739702705293894, -0.0825284942984581, 0.233296200633049, 0.5259566307067871, -0.11032237112522125, 0.2544979751110077, 0.000916888820938766, -0.08755741268396378, 0.5025894641876221, -0.0029440796934068203, 0.047405049204826355, 0.15466271340847015, 0.19431661069393158, -0.09697596728801727, 0.05665038898587227, -0.04245726391673088, -0.2777082026004791, 0.165487602353096, -0.032945357263088226, 0.2337423712015152, -0.12256558984518051, -0.09592188894748688, -0.07206650823354721, 0.16122418642044067, -0.07713618129491806, -0.1614074409008026, -0.15269558131694794, -0.23402558267116547, 0.488731324672699, -0.2849574089050293, -0.6969545483589172, -0.11762121319770813, -0.19709108769893646, 0.013945492915809155, 0.178875133395195, 0.527648389339447, 0.7227571606636047, 0.07075038552284241, -0.18257197737693787, -0.24292752146720886, 0.23699478805065155, 0.1679125428199768, 0.10930263251066208, -0.10214459896087646, -0.21063433587551117, 0.16926786303520203, 0.08375836163759232, -0.14296814799308777, 0.288536936044693, 0.20686247944831848, 0.09364701062440872, 0.04678025469183922, 0.10757821053266525, 0.23833656311035156, -0.3316793441772461, -0.3461304306983948, -0.25469374656677246, 0.43374404311180115, -0.04971913993358612, -0.18365804851055145, 0.20735859870910645, -0.13559161126613617, -0.15143218636512756, 0.09928818792104721, -0.1729009598493576, 0.11126364767551422, -0.1691320240497589, -0.20445303618907928, 0.031872060149908066, 0.1850646585226059, -0.38598623871803284, -0.35605865716934204, 0.2590886056423187, -0.08694392442703247, -0.13832534849643707, -0.05330287665128708, 0.07748148590326309, -0.07254480570554733, 0.031924884766340256, 0.14387737214565277, -0.36532506346702576, 0.34594279527664185, 0.3390432298183441, -0.1483006328344345, 0.36390817165374756, 0.5039706230163574, -0.04119604080915451, -0.2670513093471527, -0.09133360534906387, -0.28499868512153625, -0.28054264187812805, -0.19525942206382751, 0.06237794831395149, 0.32302477955818176, -0.23396053910255432, -0.7668575048446655, 0.22326205670833588, 0.06308519840240479, 0.07183763384819031, -0.20152266323566437, -0.2983167767524719, -0.008808741346001625, 0.10282807797193527, 0.2183777242898941, 0.36241909861564636, 0.26369327306747437, 0.16063924133777618, 0.029012365266680717, 0.422811359167099, 0.18207022547721863, -0.2763347625732422, -0.1781187802553177, 0.22771328687667847, 0.6784306168556213, -0.011990142986178398, 0.2430780977010727, 0.11741906404495239, -0.3622174859046936, 0.1566675752401352, -0.05329226329922676, 0.02583993598818779, 0.18884439766407013, 0.03420537710189819, 0.09537331014871597, -0.1468077301979065, 0.1037905290722847, 0.12007370591163635, 0.10416033864021301, 0.1660664975643158, 0.33549362421035767, 0.6497362852096558, -0.26058053970336914, 0.21756714582443237, 0.16782110929489136, -0.26056748628616333, 0.045848358422517776, -0.05317869782447815, -0.2722230553627014, -0.20725972950458527, 0.1184004619717598, -0.0342194028198719, 0.026563310995697975, -0.9793315529823303, 0.16921287775039673, 0.11534593999385834, 0.2532254457473755, -0.0153642687946558, -0.18140770494937897, -0.4960947334766388, -0.17583703994750977, -0.24251681566238403, -0.05404561758041382, 0.11958423256874084, -0.30283862352371216, -0.24315521121025085, 0.1478709578514099, 0.5970451831817627, -0.05578961223363876, -0.3794042766094208, 0.3699195086956024, -0.03769533336162567, -0.12057501077651978, -0.5397108793258667, 0.09600147604942322, -0.10229543596506119, -0.33031123876571655, -0.41735008358955383, 0.4450048804283142, 0.21960987150669098, 0.00539927976205945, 0.2436097413301468, -0.24463118612766266, -0.2827534079551697, -0.3808489739894867, -0.08002132177352905, 0.1832188069820404, -0.28804251551628113, 0.20089364051818848, 0.0015061963349580765, 0.2216741293668747, 0.27645179629325867, -0.43248504400253296, -0.07754700630903244, -0.2025671899318695, -0.14782845973968506, 0.15261609852313995, -0.13963092863559723, 0.1550348848104477, -0.5661994218826294, 0.2655847370624542, -0.029490919783711433, -0.06758615374565125, -0.13312046229839325, -0.11590185016393661, -0.16155189275741577, -0.22850196063518524, -0.021650154143571854, -0.4146355986595154, 0.11581502109766006, 0.09879571944475174, -0.04711069166660309, -0.13082270324230194, -0.0289327222853899, -0.03160492330789566, 0.003098188666626811, -0.14516808092594147, 0.06724458932876587, 0.5727214217185974, 0.35385313630104065, -0.2965446412563324, 0.020141733810305595, -0.2636314332485199, 0.4089573621749878, 0.006032129283994436, -0.3573490381240845, 0.21852350234985352, 0.22993917763233185, 0.24025128781795502, 0.3968631327152252, 0.49243292212486267, 0.2085069864988327, -0.10562743246555328, 0.09046182781457901, -0.018190506845712662, -0.055699534714221954, 0.5430160164833069, 0.19992925226688385, -0.2113095074892044, 0.007329799234867096, 0.4539390206336975, -0.14894871413707733, 0.025512801483273506, 0.16847507655620575, 0.0396006740629673, 0.43225568532943726, 0.26488354802131653, -0.11606770008802414, 0.03474077209830284, -0.23140180110931396, -0.1437930464744568, 0.24183781445026398, 0.20333178341388702, -0.1479039341211319, 0.16600240767002106, -0.08652661740779877, -0.05738893896341324, -0.22147369384765625, 0.29525327682495117, -0.39897722005844116, 0.5007946491241455, 0.05660437420010567, -0.18584851920604706, 0.22923076152801514, -0.07490967214107513, -0.2988458275794983, -0.40359580516815186, -0.20369580388069153, 0.33460530638694763, -0.042787496000528336, -0.046136628836393356, -0.6015438437461853, -0.3454231321811676, -0.09660384804010391, -0.025325750932097435, -0.13864094018936157, 0.06305483728647232, -0.38478225469589233, -0.17865273356437683, -0.23845353722572327, -0.3038068413734436, -0.1946469098329544, 0.45284050703048706, 0.004056101199239492, -0.05090687796473503, -0.14081867039203644, 0.03012143261730671, -0.0008182107121683657, 0.15307356417179108, 0.17221428453922272, 0.027085432782769203, 0.04897825047373772, 0.028294216841459274, -0.13969455659389496, -0.10925300419330597, 0.0859619751572609, -0.052102599292993546, -0.17110690474510193, 0.19812798500061035, -0.17317263782024384, -0.061798445880413055, 0.48381513357162476, -0.09965743869543076, 0.05004516616463661, 0.06996936351060867, 0.029331833124160767, 0.08842641860246658, 0.22586385905742645, 0.24168838560581207, -0.032409604638814926, -0.3106183707714081, -0.09256842732429504, 0.2620949447154999, 0.034095648676157, 0.06656796485185623, -0.16872970759868622, -0.5584902167320251, 0.25211670994758606, 0.5618711113929749, 0.11712516099214554, 0.6977795958518982, 0.26735442876815796, 0.03339502215385437, -0.5303307771682739, -0.4200689196586609, 0.21077993512153625, -0.08698412775993347, 0.0989966094493866, -0.08640370517969131, 0.1456104815006256, -0.034056853502988815, -0.039532165974378586, 0.19949832558631897, -0.004386709537357092, -0.21460698544979095, 0.029561391100287437, -0.14734980463981628, -0.20823612809181213, -0.34143760800361633, -0.0354112908244133, 0.15369202196598053, 0.22583405673503876, -0.0687594786286354, 0.14852482080459595, -0.19611422717571259, 0.2641412615776062, -0.30467063188552856, -0.018585244193673134, -0.1778223216533661, 0.6001653075218201, -0.40274637937545776, -0.1376482993364334, 0.005149995908141136, -0.16011880338191986, -0.007811581250280142, -0.06111612543463707, 0.49459803104400635, -0.10556826740503311, -0.284657746553421, -0.3687081038951874, 0.25770634412765503, 0.551018476486206, -0.1983940452337265, 0.0484357625246048, -0.8155703544616699, -0.12495087087154388, -0.6655929088592529, -0.24717721343040466, 0.009095778688788414, -0.0467597134411335, 0.12920376658439636, 0.08841627836227417, 0.09411738812923431, 0.3408396244049072, 0.36794933676719666, -0.1701045036315918, 0.34325453639030457, 0.3040392994880676, 0.16392385959625244, 0.06556812673807144, -0.1616971492767334, 0.11791787296533585, 0.007307376712560654, 0.3269254267215729, -0.5652672052383423, 0.10534242540597916, 0.4007783830165863, 0.3526769280433655, -0.07119324803352356, 0.150580495595932, -0.2627609074115753, -0.12451962381601334, 0.441234827041626, 0.09589462727308273, -0.20806661248207092, 0.08005225658416748, 0.19857291877269745, -0.2608458399772644, 0.13181348145008087, 0.02883617952466011, 0.11141461133956909, 0.2974065840244293, -0.28757497668266296, -0.060249533504247665, 0.004728645086288452, 0.2845288813114166, -0.12174350768327713, 0.2682209014892578, -0.10611679404973984, 0.18673641979694366, -0.020611988380551338, 0.11007068306207657, -0.007488665636628866, -0.01153803151100874, 0.31967100501060486, -0.43474164605140686, 0.1962049901485443, 0.30822309851646423, -0.23891694843769073, -0.03262621536850929, -0.5672454237937927, 0.010072479955852032, -0.31788623332977295, 0.34452614188194275, 0.5382270812988281, -0.026478072628378868, 0.4856902062892914, -0.41323918104171753, 0.14000530540943146, -0.30221277475357056, -0.07004722207784653, -0.12935766577720642, -0.12164343148469925, 0.2289992868900299, -0.07266876846551895, -0.004672475624829531, 0.22034573554992676, -0.14630311727523804, -0.14889171719551086, -0.5566733479499817, 0.3572169840335846, -0.0077012269757688046, -0.4798368215560913, 0.03043542243540287, -0.04913227632641792, 0.20304524898529053, -0.135219544172287, 0.33586323261260986, -0.04789816960692406, 0.015513818711042404, 0.1417919248342514, -0.04533107578754425, -0.17022064328193665, 0.1806098371744156, -0.2090788632631302, -0.3091489374637604, 0.15254780650138855, -0.34587928652763367, 0.11169325560331345, 0.05864342302083969, -0.030001915991306305, -0.6565760374069214, -0.017029447481036186, 0.3359045684337616, -0.2916512191295624, 0.07811836153268814, -0.1879482865333557, 0.42646098136901855, -0.13765062391757965, 0.23537029325962067, 0.013789431191980839, -0.04831791669130325, -0.02175058051943779, 0.05057898536324501, -0.29784029722213745, 0.5934965014457703, 0.2834761142730713, -0.08086197078227997, 0.19144198298454285, 0.012770896777510643, 0.18086758255958557, 0.06802350282669067, 0.618518590927124, 0.0757962241768837, 0.15861351788043976, 0.39399653673171997, -0.255046546459198, 0.13212032616138458, 0.04654345288872719, -0.1668824404478073, -0.0144340293481946, 0.014413380064070225, 0.07724218815565109, -0.32441750168800354, 0.009816042147576809, -0.31508558988571167, -0.10824166983366013, 0.3289811313152313, -0.07136969268321991, -0.40158599615097046, -0.08006144315004349, 0.0025320048443973064, 0.27934548258781433, -0.21607816219329834, 0.10364198684692383, 0.3946990668773651, 0.052481237798929214, -0.043409187346696854, -0.21532125771045685, -0.08655716478824615, 0.12276813387870789, 0.023307157680392265, 0.103165403008461, -0.19272252917289734, -0.42191436886787415, -0.06162914261221886, 0.5979376435279846, 0.20583415031433105, 0.03314035013318062, 0.1943076103925705, 0.10918203741312027, -0.17222677171230316, -0.11548645794391632, -0.3578179180622101, 0.03665730729699135, 0.05955568701028824, 0.06691422313451767, -0.0976165235042572, 0.016569912433624268, -0.013973022811114788, 0.315727561712265, -0.06160078942775726, -0.18993526697158813, -0.25811251997947693, 0.1468248814344406, 0.08092869818210602, -0.10301842540502548, 0.12233352661132812, -0.0075173149816691875, -0.385188490152359, -0.18472830951213837, -0.4408397078514099, 0.04400532320141792, 0.5276130437850952, 0.3039218783378601, -0.1438581794500351, -0.14107663929462433, 0.19636417925357819, -0.6300530433654785, -0.19782161712646484, 0.09994396567344666, -0.08901393413543701, -0.2826559245586395, 0.20895463228225708, -0.19750291109085083, 0.28731030225753784, -0.09677552431821823, -0.08987367153167725, -0.08700345456600189, -0.5348994731903076, -0.05120684579014778, -0.1343981921672821, -0.2828451097011566, -0.39440837502479553, -0.18860918283462524, 0.08853220194578171, 0.06180601194500923, -0.843929648399353, -0.08086574077606201, -0.8147438764572144, -0.2935338318347931, -0.15461450815200806, 0.10567499697208405, 0.05407612770795822, 0.10719326883554459, -0.02526385337114334, -0.06426697969436646, -0.08363057672977448, -0.2234455794095993, -0.15180185437202454, 0.311175674200058, -0.19726911187171936, -0.16174939274787903, 0.29466962814331055, 0.2682286202907562, 0.6323903799057007, 0.3712518811225891, -0.005701964721083641, 0.05718638375401497, 0.014510128647089005, -0.022808615118265152, 0.0395234115421772, 0.10035374760627747, -0.0983569473028183, 0.3748917579650879, -0.1391320526599884, 0.07894868403673172, 0.31800737977027893, -0.6381383538246155, -0.024181010201573372, -0.09317056089639664, 0.06830479949712753, 0.15302391350269318, -0.05180184915661812, 0.6799538731575012, -0.1986890584230423, 0.15085086226463318, -0.618879497051239, -0.18829327821731567, 0.4302273392677307, -0.4887777864933014, -0.13359799981117249, -0.347820520401001, -0.12070799618959427, -0.053479645401239395, 0.03429974988102913, 0.3528536558151245, -0.26526179909706116, -0.11196911334991455, 0.12514781951904297, -0.24875260889530182, 0.5521084666252136, 0.1714676469564438, -0.09520602971315384, -0.11290633678436279, 0.25399652123451233, 0.20795094966888428, -0.132423534989357, 0.03795207291841507, 0.07816870510578156, -0.045767832547426224, 0.18575647473335266, -0.050310440361499786, -0.2807742655277252, 0.15582476556301117, 0.37975025177001953, 0.026390036568045616, 0.16135762631893158, 0.057307373732328415, 0.35769760608673096, 0.008418654091656208, -0.22930632531642914, -0.1345375031232834, -0.24320422112941742, 0.26547396183013916, 0.08745009452104568, 0.05313534289598465, 0.7356760501861572, -0.22962383925914764, -0.6452073454856873, -0.002168838633224368, -0.024230865761637688, -0.1765030324459076, -0.3265053927898407, 0.2398279756307602, -0.26405519247055054, -0.17561763525009155, 0.07502526044845581, 0.09773845970630646, -0.15939658880233765, 0.16745921969413757, -0.27294450998306274, -0.2378520369529724, 0.16058331727981567, -0.44585534930229187, -0.2693730592727661, 0.3234651982784271, -0.10409129410982132, -0.0637274906039238, -0.2741107642650604, 0.038142696022987366, 0.023874567821621895, 0.0647592544555664, -0.12875641882419586, 0.0873454287648201, -0.3752762973308563, 0.2658339738845825, -0.020941298454999924, 0.1466706395149231, 0.18507890403270721, -0.2908192574977875, 0.3226028382778168, 0.29630038142204285, 0.2373366504907608, -0.031117944046854973, 0.33164310455322266, -0.07817455381155014, 0.4274263083934784, 0.037739451974630356, -0.46560198068618774, -0.2301049530506134, 0.3247861862182617, 0.23464596271514893, 0.11211643368005753, 0.01537700928747654, 0.1433735489845276, 0.034522682428359985, 0.22557485103607178, -0.04198414087295532, -0.14279784262180328, 0.11597559601068497, -0.043677929788827896, 0.0984615832567215, 0.060963988304138184, -0.34095683693885803, -0.104892797768116, -0.14591452479362488, 0.14151762425899506, 0.15457187592983246, -0.17112718522548676, 0.2720773220062256, -0.2063373476266861, 0.5194429159164429, -0.061943888664245605, -0.2111402153968811, 0.14443202316761017, -0.419341117143631, -0.06645345687866211, -0.20940515398979187, -0.31957414746284485, 0.05886735022068024, -0.2717567980289459, -0.23794928193092346, 0.1339646875858307, 0.055804312229156494, 0.019987531006336212, -0.0038142958655953407, -0.3194873631000519, -0.31594741344451904, 0.026498954743146896, 0.3975476324558258, -0.052738677710294724, -0.15798428654670715, 0.2256258875131607, -0.28888240456581116, 0.06845240294933319, 0.08766279369592667, 0.2908604145050049, -0.01585232838988304, -0.32619214057922363, 0.11404573917388916, 0.10323671251535416, 0.07481700927019119, -0.08916781097650528, 0.057758111506700516, -0.0478658489882946, 0.13201074302196503, -0.5922290682792664, 0.3411223292350769, -0.18228060007095337, 0.09544377774000168, 0.2366178184747696, -0.08306402713060379, -0.3662654459476471, -0.0034625125117599964, -0.20580144226551056, 0.20387233793735504, -0.04013770446181297, 0.5247009992599487, -0.07070332020521164, 0.033961329609155655, -0.7457894086837769, 0.0646771490573883, -0.06709017604589462, 0.01263726782053709, -0.14024941623210907, -0.09991947561502457, -0.35911431908607483, -0.2500850260257721, 0.18199481070041656, -0.16271163523197174, -0.37091660499572754, -0.0392746776342392, 0.20240238308906555, -0.002745352452620864, 0.23612304031848907, -0.15564410388469696, -0.3436656594276428, 0.05527568981051445, -0.1521572470664978, -0.2361273467540741, 0.340916246175766, 0.12167409062385559, -0.24234899878501892, 0.009925699792802334, -0.2156173139810562, -0.23712779581546783, -0.07667020708322525, 0.020101265981793404, -0.08276597410440445, 0.04465531185269356, -0.11744379252195358, 0.31460514664649963, -0.1458749771118164, 0.3551766872406006, -0.301101952791214, 0.3577595353126526, 0.1606445014476776, -0.1384018063545227, -0.26408228278160095, -0.036787249147892, 0.3166068494319916, 0.25086817145347595, -0.27010756731033325, 0.31378668546676636, -0.3362709879875183, -0.30312034487724304, -0.33825796842575073, -0.14115235209465027, 0.10550244152545929, 0.07152045518159866, -0.0791664868593216, -0.0031667794100940228, 0.10554295778274536, -0.08314211666584015, 0.2610922157764435, 0.3064464032649994, -0.059237852692604065, -0.06415564566850662, -0.21524746716022491, -0.38428857922554016, -0.08372221887111664, -0.4010375142097473, 0.013349558226764202, -0.03235766291618347, -0.0023093975614756346, -0.07375999540090561, 0.2577466368675232, 0.1623840630054474, -0.3824237883090973, 0.11911648511886597, 0.11781033873558044, -0.2088615745306015, 0.17484059929847717, 0.38360854983329773, 0.13634523749351501, -0.02156646177172661, 0.21080465614795685, 0.15312430262565613, -0.05067071318626404, -0.08643587678670883, -0.09288859367370605, 0.7523702383041382, 0.5912035703659058, 0.2750389575958252, -0.046681396663188934, -0.07470744848251343, 0.4083568751811981, 0.28699490427970886, 0.6431576013565063, -0.1414608508348465, -0.06192798167467117, -0.3063799738883972, 0.509726345539093, -0.32632994651794434, -0.26630645990371704, -0.3314153552055359, 0.2384868711233139, 0.34973812103271484, 0.4025108814239502, 0.15940099954605103, 0.42904046177864075, -0.17645137012004852, 0.25468629598617554, 0.030183931812644005, 0.06965597718954086, 0.09451797604560852, 0.5230814218521118, -0.3733346462249756, 0.10684949904680252, -0.09940166026353836, 0.16808685660362244, 0.46425661444664, -0.25419357419013977, -0.25283655524253845, -0.15418347716331482, -0.31728917360305786, -0.3910357654094696, 0.3240547776222229, 0.2158532440662384, -0.05926899611949921, 0.054275993257761, 0.2202059030532837, 0.27030012011528015, 0.2224915623664856, -0.2915904223918915, 0.5215838551521301, -0.42473286390304565, -0.357267290353775, 0.1198204830288887, 0.10875137150287628, -0.017516586929559708, -0.015999162569642067, -0.12474721670150757, -0.0675547644495964, 0.12532325088977814, -0.054357849061489105, 0.20158272981643677, 0.17905296385288239, -0.08152204751968384, 0.4579283595085144, -0.04906957224011421, 0.19593821465969086, -0.2968904376029968, -0.0767325684428215, -0.0349392294883728, -0.2190035730600357, -0.028377842158079147, 0.03481367975473404, -0.29787158966064453, -0.3337225019931793, 0.0314539335668087, 0.09264086186885834, -0.5232900381088257, 0.10646441578865051, 0.036053914576768875, -0.4579782783985138, 0.3374321758747101, 0.09841969609260559, -0.08311323076486588, 0.07368558645248413, 0.6650004982948303, -0.09159576147794724, -0.20594492554664612, -0.13108085095882416, 0.39977866411209106, 0.1616898626089096, -0.05756516009569168, 0.020196978002786636, -0.1927211433649063, -0.46759530901908875, -0.3222140669822693, 0.18436801433563232, -0.07150747627019882, 0.5460859537124634, -0.41092801094055176, 0.35670706629753113, 0.003774113254621625, 0.31818854808807373, 0.14943498373031616, -0.04764069616794586, -0.30532515048980713, -0.3103145360946655, 0.02286658249795437, 0.04819969832897186, -0.10423266142606735, -0.015958979725837708, -0.08170522004365921, 0.21105007827281952, -0.00847145076841116, 0.03913361206650734, 0.20144277811050415, 0.10560813546180725, -0.4076780676841736, 0.3842373490333557, 0.1788415163755417, -0.18028709292411804, -0.13726375997066498, -0.15531477332115173, 0.09621880948543549, -0.20652435719966888, -0.07093241065740585, -0.23374146223068237, -0.23700575530529022, -0.5314130187034607, 0.2700868844985962, 0.3513839542865753, -0.035368531942367554, -0.22781874239444733, 0.05358773097395897, -0.12004701048135757, -0.3053721487522125, 0.18099135160446167, 0.023987609893083572, 0.020851245149970055, 0.20030272006988525, -0.10330748558044434, 0.22544348239898682, 0.08171553164720535, -0.06831628829240799, -0.08300112932920456, 0.01532136369496584, 0.3007936179637909, 0.33788415789604187, 0.44443628191947937, -0.6066787838935852, -0.2007606327533722, 0.3504824936389923, 0.3459891080856323, -0.19890660047531128, 0.3041965067386627, 0.35248610377311707, -0.07445140182971954, 0.26383867859840393, -0.29814577102661133, 0.4578312635421753, 0.19295066595077515, 0.14253464341163635, 0.06749021261930466, 0.1210445761680603, -0.05388856679201126, -0.11521271616220474, 0.3063693046569824]" /programs/dev/projects/testproject1 test_hist TCGA-05-4249 TCGA-05-4249-01Z-00-DX1.9fce0297-cc19-4c04-872c-4466ee4024db hist +"[-0.15457499027252197, 0.021765941753983498, 0.25907450914382935, -0.6947646737098694, 0.05174737796187401, -0.02346775121986866, -0.1869194209575653, -0.023499632254242897, 0.15704414248466492, -0.07802990823984146, -0.23048751056194305, -0.04757693037390709, 0.12480157613754272, 0.10924703627824783, -0.024077128618955612, 0.14698351919651031, 0.3093893527984619, 0.48098933696746826, 0.3476145267486572, 0.07938093692064285, 0.2227410227060318, 0.8040478825569153, -0.3448813557624817, -0.13064944744110107, 0.1182287260890007, 0.15621165931224823, 0.3501763641834259, 0.42044365406036377, -0.09009122103452682, -0.06763439625501633, -0.14126507937908173, 0.027548419311642647, -0.001960086403414607, 0.09825696051120758, 0.21253632009029388, 0.27632763981819153, 0.04445985332131386, 0.07178065925836563, 0.40791165828704834, -0.15775540471076965, 0.010139510035514832, 0.012066035531461239, 0.16046258807182312, -0.6960747241973877, 0.03416018933057785, -0.14892619848251343, 0.06457535922527313, 0.27306491136550903, 0.22107331454753876, -0.07419108599424362, -0.03313998505473137, 0.27452653646469116, 0.18107503652572632, 0.12923498451709747, 0.24320131540298462, 0.6241917610168457, 0.3871769309043884, 0.055480170994997025, 0.22585873305797577, 0.06239647790789604, 0.3302135765552521, -0.057076167315244675, -0.23490111529827118, -0.12298576533794403, -0.22461488842964172, -0.08788403868675232, -0.2363710254430771, -0.1733226627111435, -0.3416110575199127, 0.193262979388237, -0.20083792507648468, -0.1179325133562088, -0.07100006937980652, 0.23215515911579132, 0.07698723673820496, -0.45346885919570923, 0.3126657009124756, -0.03490888699889183, 0.2380959689617157, 0.14682674407958984, 0.09006498754024506, -0.2499466985464096, -0.5401005148887634, -0.14465396106243134, 0.026652133092284203, -0.003866149578243494, -0.16976788640022278, -0.31802764534950256, -0.13287128508090973, -0.1570836752653122, 0.14906154572963715, -0.08707424998283386, -0.14142678678035736, -0.1016126275062561, 0.16051085293293, 0.02988234907388687, -0.21440064907073975, 0.20087754726409912, 0.20802617073059082, -0.12324760109186172, 0.4750165641307831, 0.5119273662567139, 0.28100326657295227, 0.09792561829090118, -0.6152109503746033, 0.22012972831726074, 0.325222373008728, -0.043766412883996964, -0.15319913625717163, 0.19341100752353668, -0.057793330401182175, 0.39187464118003845, 0.029660072177648544, 0.24306674301624298, -0.10757812857627869, -0.5290420651435852, 0.028010817244648933, -0.11875348538160324, -0.1027994453907013, 0.004013932775706053, 0.23785942792892456, -0.23335134983062744, 0.09730905294418335, -0.08773025125265121, -0.0476129874587059, -0.11251407116651535, -0.020562147721648216, -0.6518493890762329, 0.8940566182136536, 0.2477835863828659, -0.0005074811051599681, -0.044871985912323, 0.272688090801239, -0.17014724016189575, 0.5263109803199768, -0.188057079911232, -0.01658789813518524, 0.2534869611263275, -0.05868200585246086, 0.030671967193484306, 0.3729209005832672, 0.2576353847980499, 0.0473715141415596, -0.10815286636352539, -0.15470902621746063, 0.03921246901154518, -0.10008817911148071, 0.08242685347795486, 0.22953841090202332, -0.09602916240692139, 0.35337820649147034, -0.18392089009284973, 0.0010914095910266042, 0.11364129185676575, -0.02655034326016903, -0.20449009537696838, 0.09084548056125641, 0.22240523993968964, 0.10421215742826462, 0.12780801951885223, 0.1119239553809166, -0.33840641379356384, -0.027921492233872414, 0.4251185655593872, -0.12315621972084045, -0.5017836093902588, 0.058915119618177414, -0.036374207586050034, -0.08887617290019989, -0.3053842782974243, -0.07977824658155441, 0.12711398303508759, 0.010965147987008095, 0.15702874958515167, -0.2544139623641968, 0.2854762673377991, 0.2075924575328827, -0.1425642967224121, -0.06360016018152237, 0.008876543492078781, -0.03905121609568596, -0.06902528554201126, -0.021565347909927368, -0.1129680722951889, -0.12272758781909943, -0.19689024984836578, -0.1659020334482193, 0.03345941752195358, 0.3430536389350891, -0.03313228115439415, -0.1759326010942459, -0.19218075275421143, 0.3089364469051361, 0.3255295157432556, -0.09729471802711487, 0.21179917454719543, -0.14976707100868225, -0.16411903500556946, -0.10718349367380142, 0.23941554129123688, -0.358209490776062, 0.08364826440811157, 0.3980250954627991, 0.17626823484897614, 0.1500542014837265, 0.49939945340156555, 0.052833590656518936, 0.14559698104858398, 0.6144595146179199, 0.0200333409011364, -0.2760273516178131, 0.2494542896747589, -0.16399218142032623, 0.07703131437301636, 0.24868977069854736, 0.13733349740505219, 0.20343266427516937, -0.4178551435470581, -0.2810765206813812, 0.06933800131082535, -0.35296735167503357, -0.09145381301641464, 0.0327373743057251, 0.2185279279947281, 0.09604861587285995, -0.2553854286670685, -0.07092291861772537, 0.1403016597032547, 0.07529416680335999, 0.05713732913136482, -0.04435528814792633, -0.1582048237323761, 0.014461807906627655, -0.05812692642211914, 0.029497457668185234, 0.20640969276428223, 0.05800570920109749, -0.25923848152160645, 0.04969527944922447, 0.003807714208960533, -0.004141293000429869, -0.656256914138794, 0.0015812375349923968, -0.29784274101257324, 0.3418733775615692, 0.17413459718227386, -0.01578669063746929, 0.21359823644161224, 0.1890213042497635, -0.17339560389518738, 0.07433217763900757, -0.3030995726585388, -0.005233655218034983, 0.23850223422050476, 0.002997146686539054, 0.05905768647789955, 0.09719402343034744, -0.08782550692558289, 0.12589921057224274, 0.023994801566004753, 0.06997708231210709, -0.008801867254078388, -0.0255893487483263, -0.022752730175852776, 0.2695188820362091, -0.07799914479255676, 0.04192771390080452, -0.04862510785460472, -0.1397942304611206, 0.1678621917963028, -0.44614675641059875, 0.18242929875850677, 0.2924904227256775, -0.06095777079463005, -0.10860896855592728, -0.08637521415948868, -0.15446503460407257, 0.18093888461589813, 0.025627415627241135, 0.19425058364868164, -0.10188260674476624, 0.17581038177013397, -0.19233790040016174, -0.2974967062473297, -0.5777889490127563, -0.052097611129283905, 0.04799691215157509, 0.10318854451179504, 0.05021015554666519, -0.07429619878530502, -0.11866689473390579, 0.23624224960803986, 0.02289540506899357, -0.32054269313812256, -0.04586513713002205, 0.07955562323331833, -0.266367644071579, 0.11937481164932251, -0.15257833898067474, -0.007818680256605148, -0.12183340638875961, -0.09024711698293686, 0.27608388662338257, -0.2866220474243164, -0.31367483735084534, -0.12724195420742035, 0.3107307255268097, -0.1638060212135315, 0.1018030121922493, 0.004745283164083958, -0.10709135234355927, 0.15531115233898163, 0.12939417362213135, 0.2086375504732132, -0.20149864256381989, 0.023143449798226357, 0.030028104782104492, 0.28938165307044983, 0.4024104177951813, 0.26827630400657654, 0.11143296957015991, 0.3766745328903198, -0.31468838453292847, -0.23262616991996765, -0.6398705840110779, -0.14573563635349274, 0.07096333056688309, -0.04319864138960838, 0.08948457986116409, 0.14892716705799103, 0.08408920466899872, -0.21281029284000397, 0.031959377229213715, 0.13872887194156647, 0.05540299043059349, 0.05964594706892967, 0.03917809575796127, -0.12224483489990234, 0.08374182134866714, 0.3071189224720001, 0.4522756338119507, -0.42653679847717285, 0.3824754059314728, -0.295335978269577, 0.07457167655229568, -0.12203259766101837, 0.27803391218185425, -0.19090308248996735, -0.4513075053691864, 0.31944090127944946, 0.017344605177640915, -0.013853831216692924, 0.2978883385658264, 0.031056545674800873, -0.0021827691234648228, 0.024338170886039734, -0.3248651921749115, 0.3008354902267456, -0.03739876672625542, -0.0036173921544104815, -0.03684810921549797, -0.20987319946289062, 0.5252761840820312, -0.23896682262420654, -0.24562601745128632, 0.24355001747608185, -0.24998179078102112, 0.03602460399270058, -0.021400362253189087, 0.31428128480911255, -0.4260951578617096, 0.17975173890590668, -0.062279969453811646, 0.11490455269813538, -0.050968848168849945, 0.25687676668167114, -0.13699693977832794, -0.08725002408027649, -0.11715951561927795, -0.03615565598011017, -0.10564792901277542, -0.20362024009227753, -0.4968338906764984, -0.08023642748594284, -0.4924468696117401, -0.003238260978832841, -0.1860174685716629, -0.2961748242378235, -0.15607142448425293, -0.06949316710233688, -0.21862728893756866, -0.3075436055660248, 0.12553168833255768, 0.04821907356381416, 0.7459040284156799, 0.1938926726579666, 0.0701051875948906, -0.332873672246933, -0.1937274932861328, 0.15493294596672058, -0.1923060566186905, -0.1526230126619339, 0.33407559990882874, 0.20450372993946075, -0.13128556311130524, -0.34575355052948, 0.2257823348045349, 0.05845877528190613, 0.10548938810825348, 0.43567168712615967, -0.3378106355667114, 0.14139710366725922, -0.08653096854686737, 0.09488144516944885, -0.2143048495054245, 0.10394727438688278, -0.3657150864601135, 0.42503416538238525, 0.02931501902639866, 0.18811635673046112, -0.0013521795626729727, -0.09748886525630951, -0.36903658509254456, -0.11599449068307877, 0.11926548928022385, -0.2850840985774994, -0.1300765573978424, 0.08314402401447296, 0.5092543363571167, -0.04649825021624565, 0.34585151076316833, -0.3434901237487793, 0.16298209130764008, 0.27987492084503174, 0.13351617753505707, 0.27191466093063354, 0.1247195154428482, -0.20179010927677155, -0.23475897312164307, 0.01564793288707733, 0.06663020700216293, -0.002151328371837735, 0.1912068873643875, -0.2462550550699234, 0.19813820719718933, 0.14327658712863922, -0.14100852608680725, 0.20758222043514252, -0.27107706665992737, -0.15142039954662323, 0.1709054857492447, -0.06091662496328354, -0.03584717586636543, 0.3610893487930298, 0.04842224344611168, -0.26271164417266846, -0.04314481467008591, -0.0588095486164093, -0.19189375638961792, 0.06711863726377487, -0.3659333884716034, 0.11689350754022598, -0.032699257135391235, -0.18127167224884033, 0.28655001521110535, 0.06802081316709518, 0.04919523745775223, -0.06423158943653107, 0.1656823456287384, -0.4102731943130493, -0.2339455485343933, -0.5125275254249573, -0.04497533664107323, -0.17714644968509674, -0.45429134368896484, -0.27799078822135925, 0.1479332149028778, 0.0877823531627655, -0.017933012917637825, 0.06779591739177704, -0.1334202140569687, -0.40931040048599243, 0.03628981113433838, -0.00569770485162735, 0.06679696589708328, 0.10599123686552048, 0.46588268876075745, 0.30338525772094727, -0.020660854876041412, -0.051573608070611954, 0.051611870527267456, 0.17940889298915863, -0.02592182718217373, 0.4154648184776306, 0.33616235852241516, -0.35828644037246704, -0.19560295343399048, 0.27717655897140503, -0.19851981103420258, 0.17122526466846466, -0.16372919082641602, 0.011541157029569149, 0.2627456784248352, -0.16384415328502655, -0.03594944626092911, 0.2241438925266266, -0.21352256834506989, -0.06512405723333359, -0.18765805661678314, 0.19798551499843597, -0.08254672586917877, -0.11445995420217514, 0.08582925796508789, -0.16706480085849762, 0.007921827025711536, -0.2081698626279831, 0.07958868145942688, 0.10567627102136612, -0.07840689271688461, 0.1412418633699417, -0.10224669426679611, -0.2541472911834717, -0.40099087357521057, -0.02481001242995262, -0.1541329026222229, -0.08097963780164719, 0.2998190224170685, -0.24280595779418945, -0.3357883393764496, -0.35443365573883057, 0.19781409204006195, -0.008448065258562565, -0.052355993539094925, 0.21320267021656036, 0.32159945368766785, -0.006864385679364204, 0.2500457763671875, 0.1379888951778412, -0.07065574079751968, -0.34450605511665344, 0.0935748815536499, -0.07698729634284973, -0.07790239155292511, -0.156884104013443, -0.1044868528842926, -0.25446435809135437, 0.18602193892002106, 0.26552677154541016, -0.23719869554042816, 0.06460274010896683, -0.07853631675243378, -0.22551415860652924, 0.40616363286972046, -0.14675836265087128, -0.22620521485805511, 0.12768875062465668, 0.0005327030085027218, -0.16813169419765472, -0.09433790296316147, 0.11511114239692688, 0.3258112668991089, 0.21295350790023804, -0.03447330370545387, 0.013028469868004322, -0.3259463608264923, 0.007637954317033291, -0.18049846589565277, 0.15968304872512817, -0.10798574984073639, 0.028851760551333427, -0.16352760791778564, -0.2712520658969879, 0.11128992587327957, -0.3621719181537628, -0.7930665612220764, 0.199858620762825, -0.14900802075862885, 0.002712623681873083, 0.0711493194103241, -0.045481085777282715, 0.47692549228668213, -0.07929560542106628, 0.0027860556729137897, -0.37865257263183594, 0.26384279131889343, -0.045750800520181656, 0.2828509509563446, -0.000677437346894294, -0.25670909881591797, 0.36530861258506775, 0.20732221007347107, 0.17112068831920624, 0.29135727882385254, 0.12516170740127563, 0.161692813038826, -0.053249165415763855, 0.035795025527477264, 0.23022355139255524, -0.38438475131988525, -0.2822894752025604, -0.26469334959983826, 0.05786551535129547, -0.15771356225013733, -0.38086995482444763, 0.4730464816093445, -0.4618684649467468, -0.21345211565494537, -0.106854148209095, 0.11572196334600449, 0.043589647859334946, -0.2447606772184372, -0.15790009498596191, 0.05263471603393555, 0.20457294583320618, -0.11071612685918808, -0.10619129240512848, 0.19013337790966034, 0.051478397101163864, 0.10153535008430481, 0.20972931385040283, 0.13108812272548676, 0.08358132094144821, -0.034805070608854294, 0.08468051999807358, -0.5661476850509644, 0.24918675422668457, 0.5142462849617004, -0.24990710616111755, 0.20062658190727234, 0.43260297179222107, -0.26106739044189453, -0.17329950630664825, -0.09433267265558243, -0.5442301630973816, -0.19075940549373627, -0.17824596166610718, 0.2408342808485031, 0.11365290731191635, -0.16206228733062744, -0.3591177761554718, 0.09969281405210495, -0.08436595648527145, 0.1974526047706604, -0.027197517454624176, -0.024967191740870476, -0.05896463245153427, 0.19009682536125183, 0.158404141664505, 0.42809295654296875, 0.255989134311676, 0.15793746709823608, -0.1703605353832245, 0.3900659680366516, 0.1753925383090973, -0.33003273606300354, -0.08291174471378326, 0.1885775625705719, 0.2490067332983017, -0.15947933495044708, 0.05748993158340454, 0.25530150532722473, -0.8266187906265259, -0.0609024278819561, -0.05831568315625191, 0.10257495194673538, 0.03299681469798088, -0.12932650744915009, 0.5308698415756226, -0.08554568886756897, -0.04388853907585144, 0.4978061616420746, 0.14047661423683167, 0.047745123505592346, 0.5413001775741577, 0.6859618425369263, -0.5782914161682129, 0.15027792751789093, 0.06896121054887772, -0.033276431262493134, 0.3432234525680542, -0.006576754152774811, 0.03228778764605522, -0.3104996979236603, -0.0031419440638273954, -0.12210270017385483, 0.03569088876247406, -1.2054623365402222, 0.20314721763134003, 0.03838193044066429, 0.0044862693175673485, -0.24348770081996918, -0.40519869327545166, -0.4849127233028412, 0.004886290989816189, -0.18145880103111267, -0.11958526819944382, 0.12793591618537903, -0.31318041682243347, -0.4334922730922699, 0.05181482061743736, 0.5103561878204346, -0.12664389610290527, -0.21432645618915558, 0.0054172794334590435, -0.031095052137970924, 0.12822014093399048, -0.4146953523159027, 0.4660756587982178, 0.11405333876609802, -0.46660709381103516, -0.2121955156326294, 0.4363710880279541, 0.13353151082992554, -0.15504391491413116, 0.0121407276019454, -0.1551792472600937, 0.03429802507162094, -0.3561323285102844, 0.026555616408586502, -0.07754521816968918, -0.20832374691963196, -0.08000385016202927, -0.17391085624694824, 0.164145827293396, 0.04127543047070503, -0.3634016811847687, 0.084095299243927, -0.03564392030239105, -0.07661505788564682, 0.23938150703907013, -0.06991170346736908, 0.06306414306163788, -0.23689325153827667, 0.05991600826382637, 0.13594308495521545, -0.29517465829849243, 0.017466548830270767, -0.209076926112175, 0.013573692180216312, -0.19560016691684723, 0.12109865248203278, -0.31891244649887085, 0.3322741687297821, 0.14415395259857178, -0.058810360729694366, 0.023505154997110367, -0.11953645199537277, 0.14617617428302765, -0.026826664805412292, -0.06674349308013916, -0.02688508667051792, 0.37000611424446106, 0.08762020617723465, -0.16292649507522583, 0.12799198925495148, -0.3306162655353546, 0.06837499141693115, -0.014830213040113449, -0.24913297593593597, 0.10451540350914001, 0.011052831076085567, 0.24558547139167786, 0.292087584733963, 0.23163092136383057, -0.2509416937828064, 0.14570319652557373, -0.0060776835307478905, 0.0962391123175621, -0.06812272220849991, 0.17693951725959778, 0.2146010845899582, -0.06987455487251282, 0.02184661105275154, 0.38262152671813965, -0.05347251519560814, -0.003427674528211355, 0.07787323743104935, -0.05222208425402641, 0.10998041927814484, -0.059442125260829926, 0.1414133608341217, 0.23159366846084595, -0.3277095854282379, -0.18856464326381683, 0.3096621632575989, 0.2379719465970993, -0.09170296043157578, -0.18430224061012268, -0.13473908603191376, -0.21506713330745697, -0.30349916219711304, 0.3500872850418091, -0.19311711192131042, 0.504130482673645, 0.08033270388841629, -0.24226616322994232, 0.07972243428230286, 0.12609004974365234, -0.3610226511955261, -0.23957324028015137, 0.01543981209397316, 0.42068716883659363, -0.18860211968421936, -0.24283704161643982, -0.09357084333896637, -0.08320269733667374, 0.0971577912569046, -0.14640206098556519, 0.031061865389347076, -0.0221642404794693, -0.2139793187379837, 0.2724764049053192, -0.6733481884002686, -0.1737671047449112, 0.17854249477386475, 0.42439883947372437, -0.1643560379743576, -0.008364690467715263, -0.21031317114830017, 0.14300812780857086, 0.13921529054641724, -0.014435423538088799, 0.20061646401882172, -0.39208707213401794, 0.40605753660202026, -0.07967246323823929, 0.2120445817708969, -0.22295737266540527, -0.17668980360031128, -0.2938411235809326, 0.044490616768598557, 0.3747420907020569, 0.1462707221508026, 0.034941576421260834, 0.2865697145462036, -0.18444526195526123, 0.1342712640762329, 0.007025863043963909, -0.21943114697933197, 0.0008021949324756861, 0.18888793885707855, 0.08834132552146912, -0.17380556464195251, -0.18586373329162598, -0.0365176647901535, 0.22401435673236847, -0.003890182124450803, -0.00820925086736679, 0.021934177726507187, -0.484340101480484, 0.0470927469432354, 0.1598684936761856, -0.22577673196792603, 0.5781901478767395, 0.045523546636104584, 0.30155158042907715, -0.42500659823417664, -0.23132498562335968, -0.020790796726942062, -0.0622510127723217, 0.15766894817352295, -0.11569099873304367, 0.19976961612701416, 0.1742931455373764, -0.20729416608810425, -0.14313441514968872, 0.3827526867389679, 0.010925698094069958, 0.20670633018016815, -0.3306407034397125, -0.08389562368392944, -0.07183387130498886, 0.12962064146995544, -0.2723972201347351, -0.07412125170230865, 0.0940825566649437, 0.22701451182365417, -0.0810481607913971, 0.24347226321697235, -0.25092270970344543, 0.17680472135543823, -0.3697388172149658, 0.2535494565963745, -0.3119133710861206, -0.1915769726037979, 0.06313293427228928, -0.4492286741733551, 0.037835974246263504, 0.12003044039011002, 0.2660028040409088, 0.027901383116841316, -0.369111567735672, -0.4182238280773163, -0.1663413941860199, 0.4241003096103668, 0.0961010679602623, 0.12528067827224731, -0.014607098884880543, -0.0559576191008091, -0.32129499316215515, -0.0733402818441391, 0.0010407279478386045, 0.04648284986615181, 0.0034504032228142023, -0.03111802041530609, 0.14794106781482697, 0.6201419830322266, 0.3595537841320038, 0.1924102008342743, 0.3088992238044739, 0.1671675741672516, 0.1855696588754654, 0.08144119381904602, -0.20341403782367706, -0.018730657175183296, -0.28740113973617554, 0.30910590291023254, -0.06376903504133224, -0.10886837542057037, 0.6398678421974182, 0.23850955069065094, -0.3349706828594208, -0.2553931176662445, 0.40620359778404236, -0.303792268037796, 0.556836724281311, -0.04888271540403366, -0.465799480676651, -0.04112936556339264, 0.14037564396858215, -0.32899248600006104, 0.17159005999565125, 0.16226913034915924, -0.31208914518356323, 0.11527843773365021, 0.33509549498558044, 0.03143135830760002, -0.1839827597141266, 0.02492498606443405, -0.38184094429016113, 0.15638233721256256, -0.1112108901143074, 0.010658965446054935, -0.14174425601959229, -0.006479712203145027, 0.03493154048919678, -0.15242375433444977, 0.15965454280376434, -0.35314247012138367, -0.20542921125888824, -0.005209434777498245, -0.13851694762706757, -0.22318267822265625, -0.12056257575750351, 0.08303189277648926, -0.1187797263264656, 0.20083832740783691, 0.0683642253279686, -0.2119576781988144, 0.5990307331085205, -0.07257875055074692, -0.02119780145585537, 0.033983416855335236, 0.08140017837285995, 0.027887670323252678, -0.19438722729682922, 0.2633762061595917, 0.1935826987028122, 0.19574180245399475, -0.03135613724589348, 0.005170784890651703, -0.3200342357158661, -0.7390036582946777, 0.16152691841125488, -0.03485377877950668, -0.4650782346725464, -0.04661703109741211, 0.18453258275985718, 0.22404824197292328, -0.03842528909444809, 0.2646467089653015, 0.10137610882520676, 0.03139078617095947, 0.06906379014253616, 0.02738351933658123, 0.12244676798582077, 0.0733691155910492, -0.17208166420459747, -0.2168319970369339, 0.32073816657066345, -0.258723646402359, 0.03037247806787491, -0.24332448840141296, 0.1691981554031372, -0.5388903021812439, 0.07899750024080276, 0.31979304552078247, -0.16217295825481415, 0.1570299118757248, -0.3637791574001312, 0.28483930230140686, 0.026170985773205757, -0.07083284854888916, -0.2329004555940628, -0.06901341676712036, -0.05211424082517624, 0.09876331686973572, -0.25889503955841064, 0.28598448634147644, -0.24135354161262512, 0.15604041516780853, -0.0669882521033287, 0.17004871368408203, 0.3500959575176239, -0.10918855667114258, 0.45594877004623413, 0.20529703795909882, -0.051530126482248306, 0.2300727516412735, -0.33381572365760803, 0.06639213860034943, 0.05619858577847481, -0.24471735954284668, -0.2016673982143402, -0.0363311693072319, 0.1101609617471695, -0.22031420469284058, -0.13199394941329956, -0.13273854553699493, 0.2826918959617615, 0.15411894023418427, -0.1652393937110901, -0.535764217376709, -0.4204638600349426, -0.07516393810510635, 0.056075289845466614, -0.32416588068008423, 0.1325926035642624, 0.11284209787845612, 0.07804132252931595, 0.10425621271133423, -0.09377270191907883, 0.04013805463910103, 0.11586081236600876, 0.00029899939545430243, 0.07268582284450531, 0.08298693597316742, -0.32346510887145996, 0.03295820206403732, 0.36536407470703125, -0.0020459843799471855, 0.13490822911262512, 0.12169881165027618, 0.14846499264240265, -0.25800949335098267, -0.061035964637994766, -0.025434667244553566, 0.04027259349822998, 0.35979408025741577, -0.15545344352722168, 0.16970400512218475, 0.010943024419248104, -0.24118198454380035, 0.23546966910362244, 0.03214994817972183, 0.009520580060780048, -0.048539672046899796, 0.1458175927400589, 0.14964264631271362, 0.0664343386888504, 0.12031964212656021, 0.06664489209651947, -0.1534925401210785, -0.008488211780786514, -0.2692202031612396, 0.13663624227046967, 0.35773298144340515, 0.004714478272944689, -0.06027291715145111, 0.2903955578804016, 0.07223353534936905, -0.20219425857067108, -0.10062375664710999, -0.09950698167085648, -0.019325532019138336, -0.0446920171380043, -0.062230516225099564, -0.044674381613731384, 0.23901158571243286, 0.15979182720184326, 0.06461625546216965, 0.019082479178905487, -0.42711952328681946, -0.16094531118869781, 0.09111902862787247, -0.2636168897151947, -0.1674545705318451, -0.019125085324048996, 0.20231834053993225, 0.12145492434501648, -0.20554666221141815, -0.05697181820869446, -0.6316224932670593, -0.10616765916347504, 0.004686736036092043, 0.08716529607772827, -0.08214829117059708, -0.03689790889620781, 0.08010680228471756, 0.05892897769808769, -0.2166689932346344, -0.3408990204334259, -0.062312401831150055, 0.4448230266571045, -0.13484449684619904, -0.2611554265022278, 0.20442365109920502, 0.3780505061149597, 0.6178486943244934, 0.02849331870675087, -0.16082027554512024, -0.022417524829506874, 0.16024483740329742, 0.04965353012084961, 0.06132972240447998, -0.24866938591003418, -0.16937454044818878, 0.4861033260822296, -0.30018946528434753, -0.1635126918554306, 0.26600560545921326, -0.3162783682346344, 0.05222003534436226, 0.10815723985433578, 0.05769016593694687, -0.1781981736421585, -0.20546302199363708, 0.3762545883655548, 0.07165349274873734, -0.17365388572216034, -0.7745639681816101, -0.18252500891685486, 0.14432935416698456, -0.11888693273067474, -0.3398946225643158, -0.06569692492485046, -0.31790366768836975, 0.0993342325091362, 0.3069784641265869, 0.18125542998313904, -0.19319704174995422, -0.2695874571800232, 0.09498840570449829, -0.3646869957447052, 0.22935855388641357, 0.0019849149975925684, -0.1171671524643898, 0.08560126274824142, 0.22733265161514282, 0.3054424226284027, -0.06895166635513306, 0.07345888763666153, 0.1366158127784729, -0.0223817341029644, 0.15901318192481995, -0.016446927562355995, -0.35353022813796997, 0.03554509952664375, 0.09515587240457535, 0.023304995149374008, -0.006826017051935196, 0.0535515695810318, 0.2502191960811615, -0.14384743571281433, 0.08027462661266327, 0.1459745168685913, -0.3455958068370819, 0.2627846598625183, 0.2051905393600464, 0.219059556722641, 0.626753568649292, -0.12618625164031982, -0.481935977935791, 0.10286211967468262, 0.10958597809076309, -0.052778780460357666, -0.24133677780628204, 0.38525667786598206, -0.32440900802612305, -0.2379690706729889, -0.09241313487291336, 0.029516955837607384, 0.07975572347640991, 0.0542471818625927, -0.038304176181554794, -0.09013840556144714, 0.1475462168455124, 0.06879506260156631, -0.4429018497467041, 0.1516372412443161, -0.3128226399421692, -0.01265723630785942, -0.14215289056301117, 0.27071887254714966, -0.09450042247772217, -0.05147368088364601, -0.43865615129470825, -0.016986725851893425, -0.4162095785140991, 0.14895761013031006, -0.057663582265377045, -0.0021232415456324816, 0.1564333289861679, -0.23926714062690735, 0.03387651592493057, 0.27128395438194275, 0.27197203040122986, -0.019804634153842926, 0.1240607425570488, 0.09840057790279388, 0.35048526525497437, -0.23072494566440582, -0.07261893898248672, -0.04499874264001846, 0.4501000642776489, 0.2950626313686371, 0.0876435935497284, 0.08370573073625565, 0.24972942471504211, -0.08089415729045868, 0.3330424726009369, -0.00454327929764986, 0.05058388039469719, -0.002468074206262827, -0.03656648099422455, 0.04199797660112381, -0.031422436237335205, -0.08307841420173645, 0.0921933576464653, 0.02234681136906147, -0.1491927206516266, 0.4824162721633911, -0.258033812046051, 0.30045005679130554, -0.3640136420726776, 0.11644546687602997, 0.0036130959633737803, -0.0564548633992672, 0.22076614201068878, -0.3132106065750122, -0.011075851507484913, -0.2514754831790924, -0.006475597154349089, 0.24699895083904266, -0.24070416390895844, 0.12989413738250732, 0.30680495500564575, -0.04835611954331398, 0.10015518963336945, -0.3244134187698364, 0.2798224985599518, -0.06695385277271271, -0.08649390935897827, 0.5926641225814819, -0.2669316530227661, -0.009515996091067791, 0.17972780764102936, -0.2445220798254013, -0.2426898330450058, -0.016209719702601433, 0.19496233761310577, -0.1785358488559723, -0.13346636295318604, -0.0962265133857727, 0.4139510989189148, 0.10298669338226318, 0.06425711512565613, 0.23221030831336975, -0.29630836844444275, -0.06943587213754654, -0.3842494487762451, 0.3755934238433838, -0.1835610270500183, 0.11415428668260574, -0.004057088866829872, -0.08192416280508041, -0.05559643730521202, -0.04345887154340744, -0.3342887759208679, 0.49397772550582886, 0.13628897070884705, 0.18991196155548096, -0.029928239062428474, 0.12243029475212097, -0.5474483966827393, 0.036760568618774414, 0.17160862684249878, 0.2978540062904358, 0.09880892932415009, -0.09433422237634659, -0.2602747976779938, -0.03386745601892471, 0.22292768955230713, 0.1880754679441452, 0.01819182187318802, -0.2880076467990875, -0.11354418843984604, -0.1116132140159607, 0.14127203822135925, -0.1892586499452591, -0.2350974977016449, 0.09590128809213638, -0.3375566601753235, -0.20420800149440765, 0.4244910776615143, 0.30642539262771606, -0.2166750729084015, -0.09523129463195801, -0.13254328072071075, -0.3457612991333008, -0.02159791998565197, 0.0428975485265255, 0.025386298075318336, -0.04221827909350395, -0.35745540261268616, 0.4280812740325928, -0.12966300547122955, 0.3470510244369507, -0.18609561026096344, 0.01358325220644474, -0.05532209202647209, -0.1365400105714798, -0.2806515097618103, 0.1385810673236847, 0.2581039071083069, -0.01478813961148262, -0.4406532943248749, -0.1868205964565277, -0.0391719751060009, -0.3428550064563751, -0.1376608908176422, -0.022077417001128197, 0.3296869099140167, 0.1403484046459198, -0.039138052612543106, -0.12469390779733658, 0.09621070325374603, 0.11557946354150772, 0.2330678403377533, 0.46032220125198364, 0.003395277773961425, 0.3502505421638489, -0.27393871545791626, -0.16363656520843506, 0.012341809459030628, -0.44574499130249023, 0.02638733759522438, -0.21413542330265045, -0.09499149024486542, 0.03802807256579399, 0.293645977973938, 0.09754671901464462, -0.5995052456855774, 0.25046178698539734, 0.000482931878650561, -0.15842172503471375, 0.28751346468925476, 0.4502018690109253, 0.24319124221801758, -0.1816403716802597, 0.035413507372140884, 0.16893884539604187, -0.301425039768219, -0.035266775637865067, 0.07989940792322159, 0.4669172763824463, 0.6539630889892578, 0.04821334779262543, -0.08391349762678146, 0.2482934296131134, 0.3790286183357239, 0.22993889451026917, 0.519439160823822, -0.38867512345314026, -0.2071295529603958, -0.18875664472579956, 0.20857606828212738, -0.18395781517028809, 0.061558403074741364, 0.030020806938409805, 0.17493651807308197, 0.37277400493621826, 0.2492065578699112, 0.3108054995536804, 0.4527551531791687, -0.07248025387525558, 0.3403708338737488, -0.2405899316072464, 0.029676564037799835, 0.10775374621152878, 0.3796224594116211, -0.2365715056657791, 0.19109457731246948, -0.09991046041250229, 0.1949690282344818, 0.2666666805744171, -0.3098507821559906, 0.09290648251771927, 0.2345823049545288, -0.2900504767894745, -0.17338307201862335, -0.05245811492204666, 0.39278659224510193, 0.1065819039940834, -0.0034952897112816572, 0.05703866854310036, 0.06635688990354538, 0.43685486912727356, -0.25046437978744507, 0.27762487530708313, -0.564230740070343, -0.210421621799469, -0.05270283669233322, -0.29796963930130005, 0.03071458823978901, 0.17184202373027802, -0.1362731158733368, -0.15558096766471863, 0.06740790605545044, -0.15944913029670715, 0.18461874127388, 0.032672759145498276, -0.10506229847669601, 0.2775906026363373, -0.24864411354064941, -0.14645057916641235, -0.3058565557003021, -0.3722950220108032, -0.31289446353912354, -0.16074594855308533, -0.10395411401987076, -0.01196089293807745, -0.39092299342155457, -0.14185112714767456, -0.10723723471164703, 0.3908192217350006, -0.18308952450752258, -0.03281281888484955, -0.024518728256225586, 0.07366534322500229, 0.30055156350135803, -0.04424675926566124, 0.30206066370010376, 0.2241804599761963, 0.5555912852287292, -0.015084191225469112, -0.17835311591625214, -0.04702005162835121, 0.27170342206954956, -0.033540934324264526, 0.49823832511901855, -0.24289283156394958, -0.1102457195520401, -0.049221932888031006, -0.1578783541917801, -0.06003805249929428, -0.2863682806491852, 0.4784742295742035, -0.22228148579597473, 0.49995699524879456, -0.1677335649728775, -0.006231117993593216, 0.2787790596485138, 0.0018226216780021787, -0.47007644176483154, -0.23431392014026642, -0.027950121089816093, 0.08902737498283386, -0.07296723127365112, -0.01017696037888527, -0.0022204278502613306, 0.19240020215511322, -0.06735724210739136, -0.08466263115406036, -0.1562933623790741, 0.3510688245296478, -0.4414070248603821, 0.14171193540096283, 0.07288183271884918, -0.12675711512565613, 0.21101044118404388, -0.11757279187440872, -0.10004029422998428, -0.05572570487856865, -0.07689843326807022, 0.06407462060451508, -0.15295714139938354, -0.25601860880851746, 0.08039525896310806, 0.11901262402534485, -0.010839646682143211, -0.11363059282302856, 0.21894387900829315, -0.14430293440818787, -0.36528968811035156, 0.1938469111919403, 0.13941991329193115, 0.0631573498249054, 0.2948704659938812, -0.09407539665699005, 0.059932466596364975, -0.050542935729026794, 0.017875516787171364, -0.33702415227890015, -0.07444867491722107, 0.06800162047147751, 0.20362037420272827, 0.26825660467147827, -0.09959143400192261, 0.02459593676030636, 0.031270142644643784, 0.10748264938592911, 0.06729768216609955, 0.2338356375694275, 0.38827061653137207, -0.10892073810100555, 0.185979425907135, 0.04862436279654503, 0.2971632480621338, 0.3463371694087982, 0.09387710690498352, 0.2879868447780609, -0.40460526943206787, -0.017261965200304985, -0.1348349004983902, 0.2046329379081726]" /programs/dev/projects/testproject1 test_hist TCGA-05-4250 TCGA-05-4250-01Z-00-DX1.90f67fdf-dff9-46ca-af71-0978d7c221ba hist \ No newline at end of file diff --git a/tests/embeddings_tests/test_summ.tsv b/tests/embeddings_tests/test_summ.tsv index d90df13c0..666a399ed 100644 --- a/tests/embeddings_tests/test_summ.tsv +++ b/tests/embeddings_tests/test_summ.tsv @@ -1,4 +1,4 @@ embedding authz collection_name collection_id case_id file_id model -[0.0166015625, -0.0108642578125, 0.0002899169921875, 0.01397705078125, 0.0159912109375, 0.014404296875, 0.00909423828125, 0.0050048828125, -0.0032196044921875, -0.0115966796875, 0.0093994140625, -0.000873565673828125, 0.00182342529296875, -0.00116729736328125, -0.002044677734375, -0.01904296875, -0.01397705078125, 0.002532958984375, 0.0093994140625, 0.0036468505859375, 0.00897216796875, -0.00860595703125, 0.00836181640625, -0.0021820068359375, 0.01226806640625, 0.0081787109375, -0.006103515625, 0.007781982421875, -0.0211181640625, 0.01129150390625, 0.0008544921875, -0.002777099609375, -0.0159912109375, -0.001678466796875, 0.00579833984375, 0.006195068359375, 0.017822265625, 0.00384521484375, 0.0128173828125, -0.0054931640625, -0.004638671875, -0.0032501220703125, -0.00457763671875, 0.006011962890625, 0.02001953125, -0.005584716796875, -0.0034332275390625, -0.023193359375, -0.01544189453125, -0.0030975341796875, -6.818771362304688e-05, 0.0079345703125, 0.0106201171875, -0.2080078125, -0.002288818359375, 0.022705078125, -0.01397705078125, 0.00396728515625, 0.00133514404296875, 0.043701171875, -0.0015869140625, -0.01068115234375, 0.0177001953125, 0.013671875, 0.03076171875, 0.005767822265625, -0.02392578125, -0.004638671875, -0.00537109375, -0.0022430419921875, -0.0103759765625, 0.006866455078125, -0.00762939453125, -0.01202392578125, 0.009033203125, 0.0035247802734375, -0.00128936767578125, -0.0086669921875, -0.0002307891845703125, 0.0189208984375, 0.018310546875, -0.01806640625, -0.00653076171875, 0.00628662109375, 0.0011138916015625, -0.021484375, -0.0026092529296875, 0.0076904296875, -0.0108642578125, -0.00946044921875, -0.01171875, -0.041748046875, 0.01007080078125, 0.017333984375, -0.01239013671875, -0.0062255859375, -0.01458740234375, -0.0035247802734375, 0.0098876953125, -0.011962890625, 0.00787353515625, 0.018310546875, 0.006744384765625, -0.01373291015625, -0.019287109375, -0.019775390625, 0.006500244140625, -0.0166015625, 0.000331878662109375, 0.00836181640625, 0.00885009765625, 0.005584716796875, 0.00665283203125, -0.005157470703125, 0.003997802734375, 0.0021514892578125, -0.0034637451171875, -0.00469970703125, 0.00543212890625, 0.00787353515625, -0.001953125, 0.013671875, 0.015625, 0.007720947265625, -0.018310546875, -0.026123046875, 0.005401611328125, -0.0101318359375, 0.01409912109375, 0.01129150390625, -0.01226806640625, 0.0004730224609375, -0.00860595703125, -0.020751953125, -0.006195068359375, 0.0230712890625, 0.00186920166015625, 0.00823974609375, 0.0107421875, 0.004364013671875, -0.0157470703125, 0.00011491775512695312, -0.011962890625, 0.006988525390625, 0.00482177734375, -0.00151824951171875, 0.0157470703125, 0.0030059814453125, 0.0017852783203125, -0.000408172607421875, 0.01214599609375, -0.01019287109375, 0.00714111328125, -0.0062255859375, 0.002685546875, -0.0011444091796875, 0.0164794921875, -0.002532958984375, -0.00070953369140625, -0.01043701171875, -0.00115203857421875, 0.00518798828125, -0.01519775390625, 0.0177001953125, -0.013916015625, 0.01409912109375, 0.0179443359375, -0.01019287109375, 0.01708984375, 0.004241943359375, -0.0194091796875, 0.0206298828125, -0.005126953125, -0.01116943359375, -0.005645751953125, 0.0111083984375, -0.0081787109375, -0.004425048828125, 0.02099609375, 0.01055908203125, 0.005340576171875, -0.007293701171875, 0.0135498046875, 0.0034332275390625, 0.00823974609375, 0.030517578125, -0.005462646484375, -0.002838134765625, 0.006072998046875, 0.01141357421875, 0.0036773681640625, -0.00885009765625, -0.02392578125, 0.0025787353515625, -0.00433349609375, -0.01116943359375, 0.0634765625, 0.0037994384765625, 0.0030670166015625, -0.00897216796875, -0.005279541015625, 0.011962890625, -0.0067138671875, -0.01324462890625, 0.009033203125, 0.005279541015625, 0.0020904541015625, -0.00147247314453125, 0.005035400390625, -0.01226806640625, -0.002166748046875, -0.01055908203125, 0.00115966796875, 0.0007476806640625, 0.00830078125, -0.000469207763671875, 0.0133056640625, 0.00457763671875, -0.037109375, 0.004180908203125, 0.01312255859375, -0.006317138671875, 0.006622314453125, -0.0142822265625, 0.0107421875, -0.0106201171875, 0.0067138671875, 0.00592041015625, -0.000530242919921875, 0.0069580078125, 0.003814697265625, -0.0023193359375, 0.00555419921875, -0.00970458984375, 0.003814697265625, 0.005706787109375, 0.0113525390625, -0.0108642578125, 0.01171875, 0.0027313232421875, -0.004730224609375, -0.00946044921875, 0.006744384765625, -0.00103759765625, 0.00445556640625, -0.002716064453125, 0.006500244140625, 0.0218505859375, -0.006072998046875, -0.014404296875, 0.00579833984375, 0.0091552734375, -0.01324462890625, 0.007476806640625, -0.01611328125, -0.004730224609375, -0.002532958984375, 0.000896453857421875, 0.00074005126953125, -0.01708984375, 0.0091552734375, 0.01019287109375, 0.0125732421875, 0.0118408203125, -0.0029296875, 0.003631591796875, -0.01043701171875, 0.004638671875, 0.021484375, 0.0128173828125, -0.01397705078125, -0.01300048828125, 0.0223388671875, -0.01177978515625, -0.0034637451171875, 0.00970458984375, 0.0205078125, 0.000579833984375, 0.018798828125, -0.0107421875, -0.00109100341796875, -0.00130462646484375, -0.0034942626953125, -0.0025634765625, 0.01470947265625, 0.0108642578125, -0.031494140625, -0.00970458984375, -0.0235595703125, 0.000507354736328125, 0.006072998046875, 0.0054931640625, -0.00933837890625, -0.005401611328125, -0.00225830078125, 0.01806640625, 0.008056640625, 0.01806640625, 0.005096435546875, 0.00927734375, 0.0037078857421875, 0.0234375, 0.0068359375, -0.01385498046875, -0.01092529296875, 0.0008392333984375, 0.02392578125, -0.004364013671875, 0.01483154296875, 0.00994873046875, 0.01348876953125, 0.01300048828125, 0.0157470703125, -0.01226806640625, 0.002593994140625, 0.007781982421875, -0.0004634857177734375, -0.003936767578125, -0.0019989013671875, 0.0009613037109375, -0.0103759765625, 0.0089111328125, 0.032958984375, -0.0147705078125, 0.02685546875, -0.0036773681640625, -0.007171630859375, 0.00665283203125, -0.007080078125, 0.0076904296875, 0.01324462890625, -0.00958251953125, 0.009033203125, -0.0025634765625, 0.003997802734375, 0.00408935546875, 0.000949859619140625, 0.01055908203125, -0.002044677734375, 0.0113525390625, -0.00714111328125, 0.01416015625, 0.018310546875, 0.000583648681640625, 0.005279541015625, 0.025634765625, 0.006072998046875, 0.01239013671875, -0.0111083984375, -0.00098419189453125, -0.0010986328125, -0.00958251953125, -0.000820159912109375, -0.0174560546875, -0.01434326171875, -0.005584716796875, -0.01214599609375, -0.00390625, 0.0159912109375, -0.005279541015625, 0.006744384765625, -0.01348876953125, 0.00189208984375, 0.01806640625, 0.0169677734375, 0.009033203125, 0.0019683837890625, -0.0031585693359375, -0.005096435546875, -0.0010223388671875, 0.0218505859375, -0.01080322265625, 0.022216796875, 0.000640869140625, -0.0218505859375, 0.019775390625, -0.0194091796875, 0.0269775390625, -0.00567626953125, -0.019775390625, 0.00762939453125, -0.00518798828125, -0.0033111572265625, 0.0001964569091796875, 0.00469970703125, 0.0029449462890625, -0.004638671875, -4.4345855712890625e-05, 0.0108642578125, -3.24249267578125e-05, 0.000885009765625, -0.0062255859375, -0.01068115234375, 0.00168609619140625, -0.01495361328125, -0.00543212890625, 0.013671875, 0.0279541015625, -0.019775390625, 0.01416015625, -0.0045166015625, 0.0037384033203125, -0.004730224609375, -0.007415771484375, -0.00160980224609375, 0.00396728515625, 0.0341796875, 0.0032501220703125, -0.0576171875, -0.00897216796875, -0.019775390625, 0.01031494140625, 0.00115966796875, 0.005126953125, -0.027099609375, 0.004241943359375, 0.00628662109375, -0.0013275146484375, -0.0303955078125, 0.0172119140625, 0.0181884765625, 0.00830078125, 0.01080322265625, -0.0113525390625, -0.00787353515625, -0.00384521484375, -0.0157470703125, -0.000537872314453125, 0.006195068359375, -0.022216796875, -0.005279541015625, -0.0096435546875, -0.01397705078125, 0.01116943359375, -0.00121307373046875, -0.0034332275390625, -0.001556396484375, 0.0023956298828125, 0.00640869140625, -0.0069580078125, 0.045166015625, 0.007049560546875, 0.0084228515625, -0.00089263916015625, -0.01055908203125, 0.00052642822265625, 0.0184326171875, -0.01177978515625, -0.0157470703125, 0.002105712890625, -0.00634765625, 0.00921630859375, -0.003936767578125, 0.0026092529296875, -0.005157470703125, -0.0174560546875, 0.027099609375, -0.00653076171875, -0.003173828125, -0.0142822265625, 0.00494384765625, -0.017333984375, -0.00022792816162109375, 0.0011749267578125, 0.000896453857421875, -0.0152587890625, -0.022216796875, -0.00051116943359375, 0.0081787109375, 0.0037841796875, 0.0128173828125, -0.0157470703125, 0.003936767578125, 0.01458740234375, 0.01416015625, 0.0174560546875, 0.00482177734375, 0.0223388671875, -0.0098876953125, -0.01287841796875, 0.031982421875, 0.008544921875, 0.0050048828125, 0.004302978515625, -0.0103759765625, 0.01348876953125, 0.01287841796875, -0.010986328125, -0.0167236328125, -0.00628662109375, 0.0030059814453125, -0.011962890625, -0.01806640625, 0.004852294921875, -0.005645751953125, -0.005157470703125, 0.00543212890625, 0.01397705078125, 0.0274658203125, -0.00182342529296875, -0.00579833984375, 0.0185546875, 0.001922607421875, 0.008544921875, -0.0130615234375, 0.00433349609375, 0.00070953369140625, 0.00160980224609375, -0.00311279296875, 0.007476806640625, -0.0040283203125, -0.005035400390625, 1.6808509826660156e-05, 0.01177978515625, -0.00116729736328125, -0.0142822265625, 0.01324462890625, 0.03515625, -0.019775390625, -0.00958251953125, 0.0179443359375, -0.00469970703125, -0.0091552734375, 0.00274658203125, -0.0087890625, -0.0108642578125, 0.015869140625, 0.015625, 0.01055908203125, 0.013916015625, 0.00048065185546875, 0.000606536865234375, -0.0002880096435546875, -0.0135498046875, -0.0091552734375, 0.0093994140625, 0.021484375, -0.0009613037109375, -0.0059814453125, -0.01312255859375, 0.0130615234375, 0.0012359619140625, -0.006317138671875, 0.01806640625, 0.002288818359375, 0.0128173828125, -0.00958251953125, 0.01116943359375, -0.0001697540283203125, -0.00579833984375, -0.0230712890625, -0.0172119140625, -0.03662109375, 0.00543212890625, -0.01544189453125, -0.0013885498046875, 0.002899169921875, 0.005218505859375, -0.01177978515625, -0.004730224609375, 0.004364013671875, 0.007354736328125, -0.007171630859375, -0.0001678466796875, -0.004302978515625, -0.004180908203125, 0.002105712890625, -0.004791259765625, -0.00469970703125, 0.00933837890625, -0.00067138671875, -0.03125, 0.00011920928955078125, 0.01495361328125, 0.00628662109375, -0.0244140625, -0.0096435546875, -0.0150146484375, 0.03564453125, -0.00171661376953125, -0.007415771484375, 0.003936767578125, 0.0037078857421875, 0.004791259765625, -0.01202392578125, -0.0078125, -0.010986328125, 0.003997802734375, -0.006011962890625, 0.006011962890625, -0.00677490234375, -0.019287109375, 0.000186920166015625, 0.0274658203125, 0.005889892578125, -0.010009765625, 0.0091552734375, -0.029541015625, 0.0033721923828125, -0.00189208984375, -0.0028839111328125, -0.00885009765625, 0.01556396484375, -1.728534698486328e-05, -0.0054931640625, 0.00860595703125, 0.019775390625, 0.01611328125, -0.00970458984375, 0.0059814453125, -0.0098876953125, 0.0045166015625, -0.01300048828125, -0.00095367431640625, 0.00067138671875, -0.00119781494140625, -0.021728515625, -0.0257568359375, -0.013671875, 0.0225830078125, 0.0029449462890625, 0.0108642578125, 0.01409912109375, 0.00142669677734375, -0.0084228515625, -0.000652313232421875, -0.01202392578125, 0.00872802734375, -0.003692626953125, -0.01312255859375, 0.00390625, -0.0166015625, -0.01019287109375, 0.00872802734375, 0.023681640625, 0.0033721923828125, 0.0006256103515625, 0.0128173828125, -0.0277099609375, 0.006988525390625, -0.0054931640625, 0.002960205078125, 0.0211181640625, -0.004852294921875, 0.007720947265625, -0.0062255859375, 0.00335693359375, -0.0216064453125, -0.00099945068359375, -0.0125732421875, -0.0042724609375, -0.01458740234375, -0.043701171875, 0.0026092529296875, 0.00063323974609375, -0.00098419189453125, -0.021728515625, 0.0191650390625, 0.020263671875, 0.01202392578125, -0.0067138671875, -0.0003299713134765625, 0.010986328125, 0.0201416015625, -0.005584716796875, -0.030517578125, 0.0274658203125, 0.016357421875, -0.00341796875, 0.0012664794921875, 0.0162353515625, -6.532669067382812e-05, -0.0001678466796875, -0.0062255859375, 0.023193359375, -0.01385498046875, -0.005889892578125, 0.01214599609375, -0.0021514892578125, -0.00823974609375, 0.00121307373046875, 0.0179443359375, 0.01214599609375, 0.009033203125, -0.041259765625, 0.00146484375, -0.00628662109375, -0.00038909912109375, 0.0076904296875, -0.0003566741943359375, -0.01385498046875, -0.0093994140625, -0.007568359375, 0.0030517578125, 0.017333984375, -0.0098876953125, -0.01177978515625, -0.0107421875, -0.0264892578125, 0.00537109375, -0.00787353515625, -0.021728515625, 0.0087890625, 0.0157470703125, -0.01287841796875, 0.07080078125, 0.0027313232421875, 0.0213623046875, 0.00390625, 0.0277099609375, -0.00098419189453125, -0.0130615234375, 0.0308837890625, 0.0142822265625, -0.0015716552734375, -0.001800537109375, 0.0035858154296875, 0.01141357421875, -0.0107421875, 0.00909423828125, -0.01409912109375, -0.0174560546875, 0.03271484375, 0.00848388671875, -0.008544921875, -0.0174560546875, 4.2438507080078125e-05, -0.00360107421875, 0.023193359375, -0.016845703125, 0.0130615234375, -0.0034942626953125, -0.01416015625, -0.018310546875, 0.002288818359375, -0.008056640625, -0.0078125, 0.00107574462890625, -0.002166748046875, -0.021484375, -0.000682830810546875, -0.01220703125, -0.006927490234375, 5.936622619628906e-05, -0.00750732421875, -0.01129150390625, -0.01055908203125, -0.0089111328125, -0.00017833709716796875, 0.006011962890625, -0.02099609375, -0.0067138671875, 0.0045166015625, 0.004638671875, -0.0206298828125, 0.0091552734375, 0.00311279296875, -0.00653076171875, -0.005157470703125, -0.00185394287109375, -0.016357421875, -3.2901763916015625e-05, 0.0107421875, 0.004302978515625, 0.00384521484375, -0.02490234375, 0.006744384765625, -0.01141357421875, -0.003570556640625, -0.00848388671875, 0.0145263671875, -0.000362396240234375, 0.008544921875, 0.0093994140625, 0.0029296875, 0.01458740234375, 0.0223388671875, -0.03955078125, -0.00555419921875, 0.003936767578125, 0.0081787109375, -0.00154876708984375, 0.0169677734375, 0.0006866455078125, -0.006195068359375, -0.0089111328125, 0.0194091796875, 0.0021820068359375, 0.0234375, -0.004364013671875, 0.00885009765625, -0.028564453125, -0.0010223388671875, -0.00762939453125, -0.007476806640625, 0.000133514404296875, -0.0234375, -0.005706787109375, -0.0032501220703125, 0.015869140625, 0.0157470703125, -0.000946044921875, -0.00177001953125, 0.0108642578125, -0.006561279296875, 0.00787353515625, -0.0142822265625, 0.003997802734375, -0.007049560546875, 0.003387451171875, -0.009521484375, 0.01116943359375, -0.01409912109375, -0.00457763671875, -0.01409912109375, 0.0030975341796875, 0.00125885009765625, 0.006744384765625, 0.01556396484375, -0.006011962890625, -0.0081787109375, -0.0035247802734375, 0.007568359375, 0.02001953125, 0.005706787109375, -0.01239013671875, -0.01434326171875, -0.0084228515625, 0.0002536773681640625, 0.0198974609375, -0.004638671875, 0.0014495849609375, -0.007415771484375, -0.06494140625, -0.0078125, 0.017822265625, -0.012451171875, 0.00099945068359375, 0.002166748046875, 0.00823974609375, -0.0185546875, -0.00787353515625, 0.0019683837890625, 0.0032806396484375, -0.00860595703125, 0.01348876953125, -0.0185546875, -0.003936767578125, 0.00640869140625, 0.0118408203125, 0.006195068359375, 0.016357421875, -0.01263427734375, 0.05029296875, -0.0098876953125, 0.00439453125, -0.00121307373046875, 0.0033721923828125, -0.00154876708984375, 0.018798828125, 0.013427734375, -0.010986328125, 0.0174560546875, 0.0026397705078125, -0.005889892578125, 7.915496826171875e-05, 0.002960205078125, 0.020751953125, 0.0028839111328125, 0.0084228515625, -0.0081787109375, 0.00010585784912109375, 0.0037994384765625, 0.005035400390625, -0.004852294921875, -0.0142822265625, 0.0196533203125, 0.01220703125, -0.00537109375, 0.01373291015625, -0.0185546875, -0.01611328125, 0.017822265625, -0.004852294921875, -0.0400390625, 0.0089111328125, 0.0037994384765625, -0.00052642822265625, -0.007049560546875, 0.002349853515625, -0.0240478515625, 0.026123046875, -0.00799560546875, -0.0174560546875, 0.0113525390625, -0.0142822265625, -0.0027008056640625, 0.00567626953125, 0.01129150390625, 0.020751953125, 0.0206298828125, 0.005126953125, -0.00177001953125, -0.0027008056640625, 0.01708984375, -0.023681640625, 0.0150146484375, -0.0026397705078125, 0.00543212890625, 0.00628662109375, -0.0016021728515625, -0.00823974609375, 0.00494384765625, -0.006744384765625, -0.004058837890625, 0.00897216796875, 0.01031494140625, -0.0128173828125, 0.0072021484375, 0.0130615234375, -0.0037994384765625, 0.0101318359375, -0.0009002685546875, -0.0225830078125, 0.0196533203125, 0.01287841796875, 0.0040283203125, 0.00408935546875, -0.00830078125, -0.0087890625, -0.0096435546875, 0.0027923583984375, 0.004302978515625, 0.000926971435546875, 0.00921630859375, 0.0035400390625, 0.00176239013671875, 0.0025177001953125, 0.01458740234375, 0.020263671875, 0.0194091796875, -0.00160980224609375, 0.0002689361572265625, -0.00141143798828125, 0.000293731689453125, 0.0157470703125, -0.0244140625, 0.00762939453125, 0.0118408203125, -0.01153564453125, -0.00335693359375, -0.007049560546875, 0.0181884765625, -0.0228271484375, 0.00830078125, -0.0234375, 0.000370025634765625, 0.01220703125, -0.0028228759765625, -0.004364013671875, -0.011962890625, -0.0003032684326171875, -0.01116943359375, 0.01409912109375, 0.001739501953125, -0.00927734375, 0.0125732421875, -0.0016632080078125, 0.000873565673828125, -0.00909423828125, 0.00093841552734375, -0.0084228515625, -0.0089111328125, 0.0208740234375, 0.0157470703125, -0.019287109375, 0.01904296875, 0.0019683837890625, -0.0028228759765625, -0.00176239013671875, 0.01287841796875, -0.01153564453125, 0.00341796875, -0.0047607421875, -0.0159912109375, 0.04345703125, -0.005157470703125, 0.01171875, 0.0027923583984375, 0.00250244140625, 0.016845703125, -0.0213623046875, -2.5153160095214844e-05, 0.02001953125, 0.006195068359375, 0.01324462890625, 0.002288818359375, 0.0166015625, 0.0157470703125, -0.00634765625, -0.0115966796875, 0.0167236328125, -0.046875, 0.0032196044921875, 0.0150146484375, 0.0157470703125, 0.0157470703125, 0.00799560546875, 0.026123046875, 0.007476806640625, 0.0014495849609375, 0.0125732421875, 0.01202392578125, -0.00958251953125, -0.000637054443359375, -0.00164031982421875, -0.001251220703125, -0.007293701171875, 0.00836181640625, 0.0087890625, 0.01141357421875, 0.00634765625, 0.0126953125, 0.01226806640625, -0.0013580322265625, 0.00121307373046875, -0.007598876953125, -0.0030975341796875, -0.015869140625, -0.0098876953125, -0.09765625, -0.01214599609375, -0.00946044921875, -0.0135498046875, -0.00860595703125, -0.0019989013671875, -0.0208740234375, -0.006622314453125, -0.00182342529296875, 0.0157470703125, -0.016845703125, -0.02490234375, -0.01434326171875, -0.0098876953125, -0.00518798828125, -0.0042724609375, 0.00860595703125, -0.0150146484375, -0.0010223388671875, -0.0108642578125, -0.002777099609375, -0.00592041015625, 0.002288818359375, -0.01220703125, 0.0028533935546875, 0.000919342041015625, -0.01458740234375, 0.007080078125, 0.0186767578125, 0.01409912109375, -0.00421142578125, 0.0021209716796875, -0.00274658203125, 0.001190185546875, -0.000843048095703125, 0.0037994384765625, -0.0172119140625, -0.007415771484375, -0.08447265625, 0.006744384765625, 0.0028533935546875, 0.007049560546875, -0.00439453125, 0.0159912109375, -0.002227783203125, -0.000579833984375, -0.031494140625, -0.01300048828125, 0.013671875, 0.00119781494140625, 0.0068359375, -0.00147247314453125, 0.006927490234375, 0.007080078125, -0.01092529296875, 0.009521484375, -0.022705078125, 0.006134033203125, 0.00946044921875, 0.01495361328125, 0.00555419921875, -0.001556396484375, -0.00811767578125, 0.000335693359375, 0.0087890625, -0.0169677734375, -0.00150299072265625, 0.0030975341796875, 0.0245361328125, -0.006561279296875, -0.013427734375, -0.00439453125, -0.010498046875, 0.0133056640625, -0.01470947265625, 0.0078125, 0.00023174285888671875, -0.00830078125, -0.005096435546875, -0.007049560546875, 4.1484832763671875e-05, 0.0150146484375, 0.0076904296875, 0.00994873046875, -0.000629425048828125, -0.0111083984375, 0.056640625, 0.0152587890625, 0.0118408203125, 0.006011962890625, -0.00830078125, -0.0194091796875, -0.0169677734375, 0.006103515625, -0.0108642578125, 0.058837890625, -0.0026702880859375, 0.0147705078125, 0.0091552734375, -0.00250244140625, 0.0019683837890625, 0.00341796875, 0.00909423828125, 0.0111083984375, -0.010009765625, -0.0037078857421875, -0.006195068359375, -0.0189208984375, 0.004058837890625, -0.00714111328125, -0.007598876953125, 0.003387451171875, -0.01239013671875, -0.021728515625, 0.0076904296875, 0.0302734375, -0.019287109375, -0.00127410888671875, 0.0045166015625, 0.003692626953125, 0.0030670166015625, -0.00115966796875, 0.00970458984375, -0.006561279296875, -0.00970458984375, 0.006988525390625, -0.00872802734375, -0.000762939453125, 0.00811767578125, -0.020751953125, 0.00054168701171875, -0.000946044921875, 0.00146484375, -0.0022125244140625, -0.0118408203125, -0.022705078125, 0.051513671875, 0.001953125, -0.006988525390625, -0.004791259765625, -0.0067138671875, -0.000499725341796875, 0.0179443359375, 0.01092529296875, 0.005584716796875, 0.00543212890625, -0.0115966796875, -0.010498046875, 0.00299072265625, -0.004150390625, 0.00933837890625, -0.01043701171875, -0.003936767578125, 0.0021820068359375, 0.025634765625, 0.015869140625, -0.005157470703125, 0.00390625, -0.0172119140625, -0.01458740234375, -0.01483154296875, -0.0032501220703125, -0.0015869140625, 0.003692626953125, -0.0157470703125, -0.009765625, 0.0040283203125, 0.021484375, 0.00147247314453125, 0.00872802734375, 0.007354736328125, 0.01025390625, -0.0019683837890625, 0.003692626953125, -0.00634765625, -0.0096435546875, 0.0107421875, -0.03369140625, 0.006927490234375, 0.01202392578125, 0.00921630859375, 0.00173187255859375, -0.00244140625, -0.002899169921875, 0.01007080078125, 0.009521484375, 0.00168609619140625, -0.008544921875, 0.00225830078125, 0.01263427734375, 0.0016937255859375, -0.003814697265625, -0.0184326171875, 0.00124359130859375, -0.0225830078125, -0.0111083984375, -0.00064849853515625, 0.0106201171875, -0.0177001953125, -0.0194091796875, -0.01611328125, 0.0166015625, 0.004425048828125, -0.0004634857177734375, -0.00665283203125, -0.005859375, 0.01043701171875, -0.006500244140625, 0.004638671875, 0.006134033203125, 0.000896453857421875, -0.0164794921875, 0.00189208984375, -0.05126953125, -0.00799560546875, -0.0211181640625, 0.00836181640625, -0.0107421875, 0.0030364990234375, -0.005126953125, 0.0026702880859375, 0.00347900390625, -0.01513671875, 0.0012054443359375, -0.00154876708984375, 0.01397705078125, -0.007476806640625, 0.0654296875, -0.013916015625, 0.0111083984375, 0.0025482177734375, -0.0128173828125, 0.0050048828125, 0.0247802734375, 0.0115966796875, -0.010498046875, 0.003997802734375, -0.0002765655517578125, 0.08154296875, 0.025634765625, -0.002105712890625, -0.0208740234375, -0.010498046875, 0.00274658203125, 0.00537109375, 0.00335693359375, -0.0125732421875, 0.00750732421875, -0.0004673004150390625, 0.0091552734375, 0.0242919921875, -0.0147705078125, -0.01397705078125, -0.0079345703125, -0.016845703125, -0.01556396484375, 0.019775390625, 0.0118408203125, 0.0240478515625, -0.004974365234375, 0.003692626953125, -0.00494384765625, 0.01495361328125, 0.019775390625, 0.007598876953125, 0.0166015625, -0.0244140625, 0.00860595703125, -0.0130615234375, -0.0023651123046875, 0.0013427734375, -0.007049560546875, 0.01214599609375, -0.0130615234375, -0.0152587890625, 0.0184326171875, 0.00970458984375, -0.01171875, 0.006927490234375, -0.005889892578125, -0.01239013671875, 0.008056640625, 0.000713348388671875, -0.00762939453125, -0.00469970703125, -0.00518798828125, 0.0029449462890625, 0.008056640625, 0.0009002685546875, -0.0037841796875, 0.00555419921875, -0.023681640625, -0.0032501220703125, -0.0029296875, 0.01171875, 0.0014801025390625, -0.01214599609375, 0.00860595703125, -0.007598876953125, 0.0014190673828125, 0.00299072265625, -0.01239013671875, 0.006744384765625, -0.0101318359375, 0.0184326171875, 0.017578125, 0.003326416015625, 0.01373291015625, 0.01904296875, -0.01031494140625, 0.0033111572265625, 0.0034637451171875, -0.000720977783203125, 0.003570556640625, -0.0191650390625, -0.0010223388671875, 0.009033203125, 0.0038604736328125, 0.00592041015625, 0.01025390625, -0.00927734375, -0.00537109375, -0.037353515625, 0.0244140625, 0.0157470703125, -0.0019073486328125, 0.02001953125, 0.008056640625, 0.00567626953125, -0.021484375, 0.025390625, 0.01116943359375, 0.005340576171875, -0.01171875, 0.006927490234375, -0.01287841796875, -0.0035247802734375, -0.0101318359375, 0.00970458984375, 0.0026092529296875, 0.0087890625, -0.009033203125, 0.115234375, 0.012451171875, -0.0054931640625, -0.17578125, 0.00738525390625, 0.01019287109375, -0.0211181640625, 0.00677490234375, -0.000335693359375, 0.0213623046875, 0.006744384765625, 0.01263427734375, -0.010009765625, -0.0020751953125, -0.0142822265625, -0.004547119140625, 0.004302978515625, 0.0072021484375, 0.006317138671875, -0.0026702880859375, -0.00927734375, -0.010986328125, -0.00665283203125, 0.009033203125, 0.00518798828125, -0.0159912109375, 0.004730224609375, 0.008544921875, 0.02783203125, 0.006866455078125, 0.001739501953125, 0.0030059814453125, -0.006561279296875, -0.0206298828125, -0.001251220703125, -0.002288818359375, 0.0235595703125, 0.0230712890625, 0.0038604736328125, -0.007293701171875, -0.0028533935546875, 0.004730224609375, 0.00927734375, 0.00653076171875, -0.002685546875, -0.0206298828125, 0.0230712890625, 0.00014019012451171875, 0.015625, 0.009521484375, 0.00311279296875, 0.01031494140625, 0.0048828125, 0.0111083984375, 0.010009765625, 0.00030517578125, 0.107421875, 0.021484375, 9.870529174804688e-05, -0.00494384765625, -0.01141357421875, -0.033203125, 0.013916015625, -8.535385131835938e-05, 0.01055908203125, 0.0004062652587890625, -0.00058746337890625, 0.0069580078125, 0.00299072265625, 0.01470947265625, -0.00537109375, 0.01214599609375, -0.000392913818359375, -0.000606536865234375, -0.005218505859375, 0.00927734375, 0.0205078125, -0.020263671875, -0.0084228515625, -0.00885009765625, 0.0, -0.000171661376953125, 0.00909423828125, -0.0084228515625, 0.022705078125, 0.00970458984375, -0.0242919921875, 0.0062255859375, 0.00142669677734375, -0.01434326171875, 0.00872802734375, 0.0034332275390625, -0.0004215240478515625, -0.00021839141845703125, -0.003143310546875, 0.0260009765625, 0.0130615234375, 0.01806640625, 0.026123046875, 0.0208740234375, 0.007049560546875, -0.0174560546875, -0.01263427734375, -0.000507354736328125, -0.00408935546875, 0.01416015625, 0.00133514404296875, 0.01129150390625, 0.017822265625, -0.0026397705078125, -0.00567626953125, -0.00579833984375, 0.007781982421875, -0.01177978515625, 0.038330078125, 0.0128173828125, -0.0172119140625, -0.00933837890625, 0.0225830078125, 0.015380859375, 0.00421142578125, -0.0028839111328125, 0.000499725341796875, 0.006927490234375, 0.027099609375, -0.0303955078125, -0.00927734375, 0.023681640625, 0.004913330078125, -0.00179290771484375, -0.016357421875, 0.006927490234375, 0.0011444091796875, -0.0042724609375, -0.021728515625, -0.01348876953125, -0.005706787109375, -0.01904296875, -0.0045166015625, 0.01019287109375, -0.00154876708984375, 0.00109100341796875, 0.010009765625, 0.016357421875, 0.0034942626953125, 0.01397705078125, 0.0084228515625, -0.0033111572265625, -0.00555419921875, -0.0150146484375, -0.00118255615234375, -0.004486083984375, -0.0128173828125, 0.00848388671875, -0.0030364990234375, -0.0235595703125, -0.003326416015625, 0.02880859375, 0.0206298828125, -0.004425048828125, 0.01092529296875, 0.003326416015625, 0.0002593994140625, -0.00543212890625, 0.000759124755859375, -0.0021209716796875, 0.0103759765625, 0.0038909912109375, 0.0010528564453125, -0.00677490234375, -0.0006866455078125, 0.002716064453125, -0.00153350830078125, -0.003997802734375, 0.0128173828125, -0.0152587890625, -0.01177978515625, -0.0019989013671875, -0.01007080078125, -0.0076904296875, -0.0086669921875, 0.00830078125, -0.0030059814453125, 0.0218505859375, -0.00921630859375, 0.0115966796875, 0.012451171875, 0.0054931640625, -0.00860595703125, 0.01129150390625, 0.0004425048828125, 0.007781982421875, 0.006134033203125, -0.004425048828125, 0.00089263916015625, -0.000469207763671875, -0.00125885009765625, 0.004730224609375, -0.0008544921875, -0.0016632080078125, -0.0177001953125, 0.0211181640625, 0.0037384033203125, 0.011962890625, 0.00799560546875, 0.00787353515625, 0.0145263671875, 0.000598907470703125, -0.0277099609375, -0.006866455078125, 0.0059814453125, -0.00109100341796875, 0.004241943359375, -0.004150390625, 3.62396240234375e-05, -0.00946044921875, -0.0025634765625, -0.00066375732421875, -0.01263427734375, -0.0128173828125, -0.002288818359375, -0.004302978515625, -0.0036468505859375, 0.0025482177734375, 0.01092529296875, 0.028564453125, -0.006866455078125, 0.016845703125, 0.018798828125, -0.0091552734375, 0.00872802734375, -0.00390625, 0.003692626953125, 0.00640869140625, -0.0147705078125, 0.00653076171875, 0.01519775390625, 0.0047607421875, -0.0150146484375, -0.00640869140625, -0.005462646484375, -0.0004634857177734375, -0.00176239013671875, 0.005706787109375, 0.0196533203125, 0.02197265625, -0.005462646484375, 0.010986328125, 0.01373291015625, -0.00078582763671875, 0.00186920166015625, 0.00762939453125, 0.0111083984375, -0.01129150390625, -0.00640869140625, 0.0111083984375, -0.01904296875, 0.0245361328125, 0.00130462646484375, -0.0033721923828125, -0.00396728515625, 0.0028533935546875, 0.00168609619140625, 0.016845703125, 0.006561279296875, 0.0081787109375, -0.00640869140625, -0.016845703125, -0.00634765625, 0.0400390625, -0.001220703125, -0.00933837890625, 0.00421142578125, 0.061767578125, -0.00531005859375, -0.0076904296875, 0.0130615234375, -0.005096435546875, -0.01544189453125, -0.00058746337890625, -0.01202392578125, 0.006072998046875, 0.00592041015625, -0.0115966796875, 0.00010347366333007812, -0.021484375, -0.01611328125, -0.006927490234375, -0.00738525390625, 0.05126953125, 0.00970458984375, 0.00112152099609375, 0.01214599609375, 0.0150146484375, -0.012451171875, -0.0184326171875, -0.01483154296875, 7.724761962890625e-05, 0.004241943359375, 0.006011962890625, -0.0004291534423828125, -0.00128936767578125, -0.00019168853759765625, -0.013671875, -0.0069580078125, -0.0084228515625, 0.0035247802734375, 0.005401611328125, 0.0030975341796875, -0.0216064453125, -0.002288818359375, -0.01202392578125, -0.003570556640625, -0.01409912109375, 0.004425048828125, -0.01141357421875, 5.1021575927734375e-05, 0.0107421875, -0.0004138946533203125, 0.0021820068359375, -0.003143310546875, -0.00165557861328125, -0.004791259765625, 0.0191650390625, -0.007080078125, -0.01287841796875, -0.009033203125, 0.009033203125, -0.0184326171875, -0.006439208984375, -0.00750732421875, 0.01409912109375, 0.007598876953125, 0.0024566650390625, -0.005645751953125, -0.01226806640625, -0.00118255615234375, 0.006317138671875, -0.005035400390625, -0.00970458984375, 0.004180908203125, -0.0029296875, 0.0159912109375, -0.02099609375, -0.0021209716796875, 0.00152587890625, -0.00131988525390625, 0.00860595703125, -0.00860595703125, -0.01141357421875, 0.0091552734375, -0.00274658203125, -0.021728515625, 0.0040283203125, 0.0194091796875, 0.00060272216796875, 0.02197265625, -0.0030670166015625, 0.0194091796875, -0.0022430419921875, -0.0037841796875, -0.00439453125, 0.016845703125, -0.0167236328125, 0.01007080078125, -0.01025390625, 0.0142822265625, 0.00469970703125, 0.018310546875, -0.031982421875, -0.005889892578125, 0.0194091796875, -0.000240325927734375, 0.017822265625, -0.01495361328125, 0.00164031982421875, 0.018798828125, 0.0032501220703125, -0.01031494140625, -0.004180908203125, -0.006744384765625, 0.00787353515625, -0.007568359375, 0.00494384765625, -0.003143310546875, -0.006866455078125, -0.006134033203125, -0.001251220703125, -0.0068359375, -0.002166748046875, 0.01239013671875, -0.003997802734375, -0.0030364990234375, -0.00927734375, 0.01220703125, 0.00885009765625, -0.005889892578125, 0.0050048828125, 0.00799560546875, 0.00750732421875, -0.00160980224609375, 0.00445556640625, 0.00787353515625, 0.0115966796875, -0.0018157958984375, 0.004730224609375, -0.0014801025390625, 0.0230712890625, -0.0054931640625, -0.00396728515625, 0.0157470703125, 0.0084228515625, -0.00787353515625, -0.00165557861328125, -0.0087890625, 0.0111083984375, -0.00421142578125, -0.00421142578125, 0.0189208984375, 0.013916015625, 0.0189208984375, -0.016357421875, -0.00885009765625, -0.019775390625, 0.013671875, -0.0038909912109375, -0.0037384033203125, -0.0208740234375, 0.007720947265625, 0.013427734375, 0.004913330078125, -0.00193023681640625, -0.003570556640625, 0.00640869140625, 0.00445556640625, -0.010986328125, 0.0115966796875, -0.010009765625, 0.0032806396484375, -0.001800537109375, 0.0054931640625, 0.009033203125, -0.0045166015625, -0.0023040771484375, 0.01202392578125, 0.0047607421875, -0.010009765625, 0.0133056640625, -0.007049560546875, 0.004852294921875, -0.003204345703125, 0.0196533203125, -0.00439453125, -0.006500244140625, -0.014404296875, -0.00836181640625, -0.0294189453125, -0.0052490234375, 0.001953125, -0.0150146484375, -0.00830078125, 0.01129150390625, -0.00131988525390625, -3.9577484130859375e-05, 0.00121307373046875, -0.010986328125, -0.00738525390625, -0.01116943359375, 0.0162353515625, -0.005218505859375, 0.00885009765625, 0.005035400390625, -0.00653076171875, 0.000972747802734375, -0.004486083984375, 0.01287841796875, -0.01007080078125, 0.0054931640625, 0.0262451171875, 0.0225830078125, -0.002685546875, 0.015380859375, 0.01129150390625, 0.000446319580078125, 0.0177001953125, -0.00787353515625, -0.018310546875, -0.00127410888671875, -0.007781982421875, -0.01031494140625, 0.040283203125, 0.002685546875, -0.00738525390625, -0.0029296875, -0.0159912109375, -0.00457763671875, 0.0068359375, -0.006317138671875, 0.0125732421875, -0.01080322265625, 0.01513671875, 0.006744384765625, -0.0069580078125, 0.005706787109375, -0.0107421875, 0.0247802734375, -0.00537109375, 0.007781982421875, 0.0045166015625, -0.00799560546875, 0.0025177001953125, -0.0020751953125, 0.002471923828125, -0.00127410888671875, -0.0177001953125, 0.007293701171875, 0.0242919921875, 0.00823974609375, -0.0150146484375, -0.010009765625, -0.011962890625, -0.000606536865234375, 0.000644683837890625, 0.0037384033203125, -0.01324462890625, -0.00885009765625, -0.007171630859375, 0.0098876953125, 0.01129150390625, -0.00396728515625, 0.0145263671875, -0.004638671875, -0.02099609375, 0.01171875, 0.0091552734375, -0.004302978515625, 0.000446319580078125, 0.000934600830078125, 0.01202392578125, 0.00787353515625, -0.0032501220703125, 0.01239013671875, 0.0125732421875, 0.006317138671875, -0.00506591796875, -0.0223388671875, -0.0135498046875, 0.01348876953125, 0.0091552734375, -0.00860595703125, -0.00482177734375, 0.00982666015625, 0.004486083984375, 0.019775390625, -0.00189208984375, 0.0054931640625, -0.0033721923828125, 0.0279541015625, -0.000873565673828125, -0.00811767578125, 0.0003223419189453125, 0.0159912109375, 0.01300048828125, 0.0017852783203125, 0.004058837890625, 0.0067138671875, 0.00116729736328125, -0.0223388671875, -0.0118408203125, -0.01373291015625, -0.007080078125, -0.006866455078125, 0.0010223388671875, 0.00128173828125, -0.013916015625, -0.01171875, -0.01806640625, -0.0093994140625, -0.0002727508544921875, 0.0206298828125, -0.004058837890625, -0.005096435546875, -0.00011014938354492188, -0.019775390625, 0.01068115234375, 0.00860595703125, -0.00469970703125, -0.01409912109375, 0.00506591796875, -0.004638671875, -0.01416015625, -0.00396728515625, 0.011962890625, 0.020263671875, 0.062255859375, -0.014404296875, -0.003753662109375, 0.00311279296875, -0.00250244140625, -0.00274658203125, -0.01434326171875, -0.0091552734375, 0.00023746490478515625, 0.006561279296875, -0.003631591796875, -0.006317138671875, -0.0001392364501953125, 0.000518798828125, -0.0045166015625, -0.10595703125, 0.0068359375, 0.01324462890625, 0.00146484375, 0.00024127960205078125, -0.0067138671875, 0.000858306884765625, -0.035888671875, -0.006011962890625, -0.0111083984375, 0.0023193359375, -0.0036468505859375, 0.00830078125, -0.00457763671875, -0.00982666015625, 0.00147247314453125, -0.01495361328125, -0.01385498046875, 0.001190185546875, 0.00927734375, 0.00433349609375, -0.0115966796875, 0.00185394287109375, -0.00164031982421875, 0.0001354217529296875, -0.01519775390625, 0.01324462890625, -0.017333984375, 0.038330078125, -0.0091552734375, -0.007568359375, 0.00067138671875, -0.0091552734375, 0.0042724609375, -0.0030059814453125, -0.0037384033203125, -0.0032196044921875, -0.01153564453125, -0.01129150390625, 0.00518798828125, -0.0166015625, 0.0177001953125, -0.06787109375, 0.0162353515625, 0.01470947265625, 0.01055908203125, -0.014404296875, 0.0033111572265625, -0.00946044921875, 0.000885009765625, 0.00506591796875, -0.00592041015625, 0.028564453125, -0.016357421875, 0.01025390625, -0.004425048828125, 0.0115966796875, -0.005157470703125, 0.0135498046875, 0.00927734375, 0.015869140625, 0.00811767578125, 0.004150390625, 0.007415771484375, -0.0030670166015625, 0.002044677734375, 0.01904296875, -0.0054931640625, -0.00421142578125, -0.0157470703125, -0.005645751953125, -0.0206298828125, -0.004638671875, 0.00537109375, -0.0162353515625, -0.01904296875, 0.0125732421875, 0.00182342529296875, -0.0052490234375, 0.0036773681640625, 0.0024261474609375, 0.0069580078125, 0.0264892578125, 5.245208740234375e-05, 0.00970458984375, 0.0103759765625, -0.01129150390625, 0.01434326171875, -0.01416015625, 0.01025390625, -0.005889892578125, 0.002593994140625, 0.0113525390625, 0.00543212890625, 0.0145263671875, 0.01806640625, 0.00872802734375, 0.0322265625, 0.010009765625, -0.02734375, 0.0034637451171875, 0.00506591796875, -0.0025482177734375, -0.00860595703125, 0.00640869140625, 0.01348876953125, -0.000881195068359375, -0.00933837890625, -0.0008392333984375, 0.00081634521484375, -0.0201416015625, 0.015380859375, -0.01177978515625, 0.00107574462890625, -0.005584716796875, 0.004150390625, -0.005645751953125, -0.006561279296875, 0.0196533203125, -0.006622314453125, -0.0026397705078125, -7.581710815429688e-05, -0.00335693359375, 0.006927490234375, 0.00885009765625, -0.007354736328125, -0.01226806640625, -0.002777099609375, 0.01519775390625, -0.01239013671875, -0.005218505859375, -0.004852294921875, 0.004638671875, 0.0126953125, 0.0145263671875, -0.022705078125, -0.01287841796875, -0.0196533203125, 0.03173828125, -0.01141357421875, -0.007049560546875, 0.015625, -0.01556396484375, -0.00811767578125, -1.6927719116210938e-05, 0.005218505859375, -0.00160980224609375, 0.004486083984375, 0.00445556640625, -0.0126953125, 0.0089111328125, 0.01019287109375, -0.0004482269287109375, -0.010009765625, 0.007415771484375, 0.0294189453125, 0.0008697509765625, -0.0142822265625, 0.0052490234375, 0.00634765625, -0.00628662109375, 0.0107421875, -0.00970458984375, -0.006988525390625, 0.00823974609375, 0.0091552734375, -0.0269775390625, 0.004180908203125, -0.00750732421875, -0.0012359619140625, -0.008544921875, 0.007476806640625, -0.01007080078125, -0.0194091796875, 0.0079345703125, 0.0145263671875, 0.041015625, 0.006195068359375, -0.0026397705078125, -0.0004558563232421875, -0.01055908203125, -0.0091552734375, -0.01068115234375, -0.01153564453125, -0.0223388671875, 0.0157470703125, -0.0126953125, 0.002716064453125, -0.013427734375, 0.0208740234375, -0.00311279296875, -0.00872802734375, 0.0228271484375, -0.01019287109375, 0.00144195556640625, 0.00665283203125, -0.0028839111328125, -0.0185546875, 0.00628662109375, -0.00811767578125, 0.0177001953125, -0.007080078125, -0.00457763671875, -0.0262451171875, 0.006500244140625, 0.004669189453125, -0.00860595703125, -0.0003662109375, -0.0052490234375, -0.014404296875, -0.018310546875, 0.0150146484375, 0.01300048828125, -0.010009765625, -0.0201416015625, -0.031494140625, -0.0012359619140625, -0.000518798828125, -0.0016937255859375, -0.0194091796875, -0.0111083984375, 0.0303955078125, -0.057373046875, -0.014404296875, 0.00067138671875, 0.007781982421875, -0.00750732421875, -0.0052490234375, 0.003326416015625, -0.0030059814453125, 0.02001953125, 0.005035400390625, -0.0027923583984375, -0.023681640625, -0.0107421875, 0.004302978515625, 0.002838134765625, -0.0028839111328125, 0.0101318359375, 0.00750732421875, -0.00164031982421875, 0.018310546875, 0.025634765625, 0.00112152099609375, 0.015380859375, 0.000499725341796875, -0.0016021728515625, -0.00738525390625, -0.00168609619140625, 0.00714111328125, 0.006561279296875, -0.07470703125, 0.001800537109375, 0.005340576171875, -0.025390625, -0.015625, 0.00066375732421875, -0.00433349609375, 0.0098876953125, 0.0159912109375, 0.0223388671875, -0.0133056640625, -0.0014190673828125, 0.01348876953125, -0.00115966796875, -0.0106201171875, -0.01312255859375, -0.034423828125, 0.0072021484375, 0.01007080078125, 0.006927490234375, 0.012451171875, 0.00787353515625, -0.01141357421875, 0.0020751953125, 0.006072998046875, -0.0098876953125, 2.4199485778808594e-05, 0.00836181640625, -0.013916015625, -0.002838134765625, 0.0026702880859375, -0.01129150390625, 0.00970458984375, -0.002777099609375, 0.002197265625, 0.006134033203125, -0.005706787109375, 0.00555419921875, -0.006134033203125, -0.0234375, -0.01300048828125, 0.0062255859375, 0.0059814453125, -0.00946044921875, -0.006561279296875, 0.005157470703125, -0.01312255859375, -0.0012969970703125, -0.004150390625, -0.00157928466796875, 0.0169677734375, 0.016845703125, -0.01458740234375, -0.00250244140625, 0.0400390625, 0.007171630859375, 0.00421142578125, -0.004150390625, 0.0098876953125, 0.00421142578125, -0.00250244140625, -0.005218505859375, -0.0115966796875, 0.00457763671875, -0.0037078857421875, 0.0013427734375, 0.0101318359375, 0.004364013671875, -0.00194549560546875, -0.003753662109375, -0.007080078125, -0.00750732421875, 0.001983642578125, -0.00162506103515625, -0.034423828125, -9.822845458984375e-05, 0.022216796875, 0.00482177734375, -0.0196533203125, 0.002227783203125, 0.010498046875, -0.0022125244140625, -0.000537872314453125, 0.00799560546875, -0.004364013671875, 0.0107421875, -0.0037078857421875, 0.003387451171875, 0.017822265625, -0.0004425048828125, 0.0091552734375, 0.00421142578125, -0.00095367431640625, -0.01202392578125, 0.00433349609375, 0.00592041015625, -0.02001953125, 0.0013275146484375, 0.0111083984375, 0.00250244140625, -0.010986328125, -0.004547119140625, 0.0, 0.01300048828125, 0.0093994140625, -0.01092529296875, 0.018310546875, -0.01153564453125, -0.001007080078125, 0.0028839111328125, -0.004302978515625, 0.0230712890625, 0.03271484375, -0.0093994140625, -0.00897216796875, 0.006500244140625, 0.000873565673828125, 0.0003261566162109375, -0.01080322265625, 0.000858306884765625, 0.0038909912109375, -0.0016021728515625, 0.0084228515625, 0.0203857421875, 0.006317138671875, -0.00994873046875, -0.00439453125, -0.0076904296875, -0.01806640625, -0.0052490234375, 0.0234375, -0.036376953125, 0.004364013671875, 0.0185546875, 0.003936767578125, 0.00933837890625, -0.004974365234375, 0.0115966796875, 0.02880859375, -0.0081787109375, 0.0179443359375, 0.0108642578125, 0.0023193359375, -0.0018157958984375, 0.00110626220703125, -0.00958251953125, 0.003997802734375, 0.0079345703125, 0.01153564453125, 0.00830078125, -0.0211181640625, 0.00836181640625, -0.0223388671875, -0.0035247802734375, 0.01177978515625, 0.004425048828125, 0.000751495361328125, 0.00799560546875, -0.00122833251953125, -0.0098876953125, 0.00408935546875, 0.00494384765625, 0.0018768310546875, -0.01519775390625, -0.0091552734375, -0.033203125, 0.00347900390625, -0.0213623046875, -0.004791259765625, 0.0032501220703125, 0.000545501708984375, 0.12158203125, 0.01007080078125, -0.0059814453125, -0.00136566162109375, -0.014404296875, -0.00946044921875, 0.00555419921875, 0.0128173828125, -0.0025177001953125, 0.0030517578125, 0.017578125, -0.0020904541015625, -0.007568359375, 0.003265380859375, 0.007354736328125, 0.00057220458984375, 0.016845703125, -0.017822265625, -0.001678466796875, -0.0037078857421875, -0.004119873046875, -0.0130615234375, 0.020263671875, 0.00677490234375, -0.006500244140625, -0.0038604736328125, -0.0213623046875, 0.003143310546875, 0.0091552734375, 0.0142822265625, -0.01263427734375, 0.01556396484375, -0.0079345703125, 0.01312255859375, 0.0225830078125, -0.0084228515625, -0.0025482177734375, -0.00958251953125, 0.007049560546875, -0.00799560546875, -0.00023746490478515625, 0.01129150390625, 0.01116943359375, -0.01220703125, -0.0072021484375, -0.0054931640625, 0.0113525390625, 0.007171630859375, 0.00131988525390625, 0.013916015625, -0.000400543212890625, -0.0045166015625, 0.01708984375, 0.006317138671875, 0.00092315673828125, -0.005706787109375, 0.01214599609375, -0.0101318359375, 0.005157470703125, 0.01129150390625, -0.00994873046875, 0.0225830078125, -0.00830078125, 0.00640869140625, -0.007171630859375, 0.0283203125, -0.0157470703125, -0.0091552734375, -0.009033203125, 0.005645751953125, -0.007049560546875, 0.00041961669921875, 0.0035247802734375, 0.0059814453125, 0.001739501953125, -0.018310546875, -0.03125, 0.00848388671875, 0.0025482177734375, -0.00555419921875, -0.015869140625, -0.006072998046875, -0.000499725341796875, -0.006317138671875, -0.0079345703125, -0.00787353515625, -0.0025787353515625, -0.01483154296875, -0.00787353515625, -0.004150390625, -0.0024261474609375, 0.0038909912109375, 0.00860595703125, 0.00994873046875, 0.00299072265625, 0.0125732421875, -0.023681640625, 0.00897216796875, -0.002197265625, 0.0111083984375, -0.0172119140625, -0.01220703125, 0.01177978515625, 0.007720947265625, 0.016357421875, 0.0101318359375, -0.002471923828125, -0.00927734375, -0.0157470703125, 0.0216064453125, -0.00347900390625, -0.0311279296875, -0.01806640625, -0.0081787109375, 0.00119781494140625, 0.004150390625, 0.01129150390625, 0.0101318359375, 0.01043701171875, -0.00592041015625, -0.0133056640625, 0.1328125, -0.01019287109375, 0.0025787353515625, 0.0009918212890625, -0.00193023681640625, -0.017822265625, -0.00194549560546875, -0.01080322265625, 0.004852294921875, 0.0072021484375, -0.00118255615234375, -0.0028839111328125, 0.01416015625, -0.016845703125, -0.01287841796875, -0.00738525390625, -0.003265380859375, -0.0068359375, -0.0087890625, 0.06591796875, 0.01519775390625, -0.0054931640625, 8.344650268554688e-06, -0.001953125, -0.0014801025390625, -0.004913330078125, 0.00238037109375, 0.0260009765625, 0.00250244140625, 0.00830078125, -0.08447265625, 0.002349853515625, 0.00225830078125, -0.01300048828125, -0.005706787109375, -0.00653076171875, -0.0036773681640625, -0.00186920166015625, -0.00921630859375, -0.0032806396484375, 0.01171875, -0.0033721923828125, 0.0162353515625, 0.01324462890625, -0.006011962890625, 0.001739501953125, -0.01409912109375, -0.003814697265625, -0.007171630859375, -0.0052490234375, -0.0242919921875, 0.01129150390625, -0.0179443359375, 0.0185546875, 0.0032806396484375, -0.006317138671875, -0.01202392578125, -0.00799560546875, 0.0810546875, -0.01202392578125, -0.0111083984375, -0.000446319580078125, -0.021240234375, -0.0087890625, 0.00927734375, -0.0091552734375, 0.001190185546875, -0.00174713134765625, 0.01116943359375, 0.011962890625, 0.021484375, -0.0142822265625, 0.0079345703125, 0.0024566650390625, 0.0035858154296875, 0.006988525390625, 0.0054931640625, -0.0225830078125, -0.00341796875, -0.01953125, 0.00762939453125, -0.0172119140625, -0.003143310546875, -0.00147247314453125, 0.0218505859375, 0.006317138671875, -0.00543212890625, 0.0157470703125, 0.012451171875, 0.016357421875, 0.005157470703125, 0.0166015625, -0.0012359619140625, -0.01373291015625, 0.00147247314453125, 0.007293701171875, -0.01385498046875, 0.0157470703125, -0.00494384765625, -0.0194091796875, 0.013427734375, -0.025634765625, -0.001983642578125, -0.008544921875, -0.0181884765625, -0.0072021484375, 0.01397705078125, -0.0181884765625, 0.000804901123046875, -0.00537109375, -0.018310546875, -0.032958984375, 0.0269775390625, -0.0036468505859375, 0.01458740234375, -0.006439208984375, -0.0011749267578125, 0.023193359375, -0.004425048828125, 0.0004673004150390625, -0.00186920166015625, -0.002899169921875, -0.0252685546875, 0.00147247314453125, 0.01007080078125, 0.021484375, 0.004669189453125, 0.000522613525390625, 0.01007080078125, 0.001922607421875, 0.00093841552734375, 0.0012359619140625, 0.00193023681640625, 0.00665283203125, 0.01324462890625, 0.0029296875, 0.01214599609375, 0.034912109375, -0.00274658203125, 0.01068115234375, -0.00139617919921875, 0.006134033203125, -0.0093994140625, 0.00994873046875, 0.00506591796875, -0.01068115234375, -0.00543212890625, 0.0012054443359375, 0.00173187255859375, 0.0166015625, -0.01544189453125, 0.0208740234375, -0.0002498626708984375, 0.0091552734375, -0.01129150390625, -0.047119140625, -0.01092529296875, -0.00982666015625, -0.037109375, -0.007598876953125, 0.002044677734375, -0.00506591796875, -0.00927734375, 0.006011962890625, -0.0201416015625, -0.0011444091796875, 0.007080078125, -0.023681640625, -0.0033111572265625, -0.017578125, 0.00665283203125, -0.006195068359375, 0.00185394287109375, 0.018310546875, 0.0380859375, -0.00537109375, -0.015380859375, -0.0113525390625, -0.002716064453125, 0.01611328125, -0.00799560546875, -0.002471923828125, -0.01031494140625, -0.00168609619140625, -0.01385498046875, 0.0022125244140625, -0.00299072265625, 0.0189208984375, 0.016845703125, -0.0174560546875, -0.017822265625, -0.00131988525390625, -0.0108642578125, 0.0186767578125, -0.0211181640625, -0.003265380859375, -0.007293701171875, -0.0089111328125, 0.006011962890625, 0.00299072265625, 0.017578125, 0.00115966796875, 0.00885009765625, 0.0113525390625, 0.004638671875, 0.000476837158203125, -0.000499725341796875, 0.014404296875, 0.020263671875, -0.00726318359375, -0.00872802734375, -0.005584716796875, 0.003936767578125, 0.0294189453125, 0.0142822265625, 0.0135498046875, 0.004302978515625, 0.01220703125, 0.0035400390625, 0.003570556640625, 0.0054931640625, -0.01171875, 0.01904296875, -0.0012359619140625, 0.01239013671875, 0.0299072265625, 0.004119873046875, -0.00677490234375, 0.004486083984375, -0.00144195556640625, -0.004608154296875, -0.009521484375, 0.0040283203125, -0.00811767578125, -0.009521484375, 0.007080078125, -0.031982421875, 0.0004367828369140625, -0.0026702880859375, 0.1064453125, 0.01214599609375, -0.022216796875, 0.0205078125, 0.016845703125, 0.0081787109375, 0.01129150390625, -0.01409912109375, 0.01171875, -0.00885009765625, -0.01519775390625, -0.006866455078125, -0.0206298828125, 0.01513671875, -0.01226806640625, 0.001220703125, 0.000560760498046875, -0.007049560546875, 0.02197265625, 0.0079345703125, -0.00107574462890625, 0.00885009765625, 0.006439208984375, -0.00836181640625, 0.01513671875, 0.013916015625, -0.0072021484375, -0.009521484375, 0.01458740234375, -0.037841796875, 0.00958251953125, 0.004791259765625, 0.00927734375, -0.00634765625, -0.00909423828125, -0.042236328125, 0.0054931640625, -0.010009765625, -0.01416015625, -9.679794311523438e-05, 0.01806640625, -0.01202392578125, -0.005279541015625, -0.0185546875, 0.012451171875, 0.007049560546875, -0.006103515625, -0.01202392578125, 0.017333984375, 0.0177001953125, -0.006317138671875, -0.01092529296875, 0.019775390625, -0.0244140625, 0.00482177734375, 0.01324462890625, -0.006439208984375, -0.002716064453125, 0.0189208984375, -0.0111083984375, 0.0002040863037109375, 0.00147247314453125, -0.01287841796875, -0.01458740234375, 0.0125732421875, -0.0196533203125, 0.0037841796875, -0.004913330078125, 0.0023651123046875, -0.01055908203125, -0.010009765625, 0.0206298828125, -0.01385498046875, -0.0084228515625, 0.015625, 0.0126953125, -0.0291748046875, 0.022216796875, -0.0125732421875, 0.004364013671875, 0.00390625, -0.00151824951171875, -0.000751495361328125, 0.00653076171875, -0.0016937255859375, -0.0194091796875, -0.02490234375, -0.01141357421875, -0.00408935546875, 0.00579833984375, -0.00799560546875, -0.00146484375, 0.005859375, -0.0025787353515625, -0.0023193359375, -0.01007080078125, 0.0007781982421875, -0.02734375, 0.00054931640625, -0.0023040771484375, -0.0103759765625, -0.00193023681640625, 0.004669189453125, 0.00457763671875, 0.01043701171875, 0.0021514892578125, -0.00823974609375, -0.00927734375, -0.00830078125, -0.00041961669921875, 0.0019683837890625, -0.00025177001953125, 0.01043701171875, -0.0157470703125, -0.0211181640625, -0.003692626953125, -0.00970458984375, 0.018310546875, 0.00799560546875, -0.00408935546875, 0.005462646484375, 0.00238037109375, -0.023193359375, 0.001190185546875, -0.003570556640625, -0.0159912109375, -0.0027313232421875, -0.0274658203125, -0.006317138671875, 0.000926971435546875, -0.00081634521484375, -0.012451171875, 0.011962890625, -0.00469970703125, -0.006866455078125, -0.00860595703125, -0.031982421875, 0.0211181640625, -0.00982666015625, 0.012451171875, -0.0014190673828125, 0.01171875, 0.01300048828125, -0.016845703125, -0.01556396484375, -0.0020751953125, -0.006927490234375, -0.0019073486328125, 0.018798828125, -0.01470947265625, 0.00665283203125, 0.00897216796875, 0.00579833984375, 0.0101318359375, -0.0142822265625, 0.00408935546875, 0.0081787109375, -0.01239013671875, -0.007293701171875, 0.0087890625, 0.02392578125, -0.007781982421875, -0.00031280517578125, 0.0115966796875, -0.003936767578125, 0.00897216796875, 0.0260009765625, 0.0032806396484375, 0.01239013671875, 0.005279541015625, 0.010986328125, 0.00023174285888671875, 0.0086669921875, -0.0145263671875, -0.0179443359375, 0.0035247802734375, 0.0019683837890625, 0.002105712890625, 0.00193023681640625, -0.0091552734375, 0.00860595703125, 0.0244140625, 0.01153564453125, -0.003326416015625, 0.0047607421875, 0.0108642578125, 0.01312255859375, 0.007354736328125, -0.008544921875, 0.0194091796875, -0.00057220458984375, -0.0016937255859375, 0.0014190673828125, 0.005157470703125, 0.0128173828125, -0.01409912109375, -0.01434326171875, 0.0111083984375, -0.0106201171875, -0.00946044921875, 0.003753662109375, 0.0157470703125, -0.0050048828125, -0.003143310546875, -0.0128173828125, 0.005889892578125, 0.01416015625, -0.00494384765625, 0.005035400390625, -0.01239013671875, -0.0194091796875, 0.0230712890625, -0.006134033203125, 0.09130859375, -0.01495361328125, 0.01153564453125, 0.0269775390625, 0.01470947265625, 0.01129150390625, 0.00787353515625, 0.009033203125, -0.002685546875, -0.0025177001953125, -0.00830078125, -0.022216796875, -0.01202392578125, 0.004638671875, -0.00714111328125, 0.007354736328125, -0.004486083984375, -0.026123046875, 0.0166015625, 0.000972747802734375, 0.0166015625, -0.0011444091796875, 0.0091552734375, -0.003997802734375, -0.005706787109375, 0.0125732421875, 0.0162353515625, 0.0101318359375, -0.005157470703125, -0.01708984375, 0.00933837890625, -0.00154876708984375, 0.00927734375, -0.01141357421875, 0.01904296875, 9.34600830078125e-05, 0.0091552734375, -0.005645751953125, 0.01263427734375, 0.00384521484375, -0.006927490234375, 0.0084228515625, -0.0015869140625, -0.01312255859375, -0.0023345947265625, -0.0125732421875, 0.01068115234375, -0.00311279296875, -0.02001953125, 0.00872802734375, -0.00433349609375, -0.004302978515625, -0.018798828125, -0.0034942626953125, 0.00457763671875, 0.0028533935546875, 0.0076904296875, -0.0213623046875, -0.0014801025390625, -0.01544189453125, -0.009033203125, 0.034912109375, 0.00176239013671875, 0.006103515625, 0.0011444091796875, 0.01025390625, -0.00067138671875, 0.0032196044921875, 0.022705078125, -0.006134033203125, 0.006134033203125, -0.00457763671875, -0.0201416015625, 0.007476806640625, 0.0032806396484375, 0.0028228759765625, -0.0252685546875, 0.0086669921875, -0.007415771484375, 0.00927734375, 0.00119781494140625, 0.004180908203125, -0.006072998046875, -0.0133056640625, 0.005584716796875, 0.006317138671875, -0.01031494140625, -0.00958251953125, 0.00799560546875, -0.002471923828125, 0.001495361328125, 0.01519775390625, 0.018310546875, 0.0020904541015625, 0.01239013671875, -0.038330078125, 0.007781982421875, -0.039794921875, 0.021240234375, 0.0107421875, 0.016357421875, 0.004913330078125, -0.009521484375, 0.00665283203125, -0.002960205078125, -0.0098876953125, 0.0135498046875, -0.001556396484375, -0.0023193359375, -0.031494140625, -0.0023956298828125, 0.009033203125, 0.01043701171875, 0.0162353515625, -6.914138793945312e-05, 0.018310546875, -0.0002002716064453125, -0.009033203125, 0.0108642578125, -0.0103759765625, -0.019775390625, -0.0084228515625, 0.005218505859375, 0.0179443359375, 0.01312255859375, -0.0189208984375, -0.00970458984375, 0.02392578125, 0.000736236572265625, -0.0011749267578125, -0.005584716796875, -0.0034942626953125, 0.001373291015625, -0.017578125, -0.01043701171875, 0.0062255859375, -0.004150390625, 0.01055908203125, 0.0012664794921875, -0.0052490234375, -0.034423828125, 0.00506591796875, -0.012451171875, -0.0047607421875, 0.001373291015625, 0.1162109375, 0.00555419921875, -0.00022983551025390625, 0.006866455078125, -0.0172119140625, 0.012451171875, -0.0162353515625, -0.02099609375, -0.014404296875, 0.0021820068359375, 0.004913330078125, 0.00592041015625, -0.00640869140625, -0.0021820068359375, -0.031494140625, 0.0115966796875, -0.002593994140625, -0.002288818359375, 0.005767822265625, 0.00299072265625, -0.00133514404296875, -0.00762939453125, 0.0020751953125, 0.010986328125, -0.006561279296875, -0.005126953125, 0.0252685546875, 0.01611328125, 0.002288818359375, 0.0037078857421875, 0.01953125, 0.022705078125, -0.005767822265625, 0.00179290771484375, -0.0007476806640625, 0.0019073486328125, -0.005157470703125, -0.01141357421875, 0.006866455078125, -0.000591278076171875, 0.0201416015625, 0.0054931640625, -0.026611328125, 0.0106201171875, -0.007720947265625, -0.01220703125, -0.002105712890625, -0.00555419921875, 0.01483154296875, -0.0029449462890625, -0.0027923583984375, -0.004425048828125, -0.00153350830078125, 0.005645751953125, 0.01092529296875, -0.0045166015625, 0.01544189453125, 0.0234375, -0.00022411346435546875, 0.0164794921875, -0.01324462890625, -0.0172119140625, -0.0037841796875, 0.0045166015625, 0.021240234375, -0.0010528564453125, -0.0101318359375, -0.0194091796875, 0.0001678466796875, 0.010009765625, 0.01141357421875, 0.000751495361328125, -0.004150390625, -0.0111083984375, 0.0208740234375, -0.0244140625, 0.003173828125, 0.004302978515625, -0.0130615234375, -0.00408935546875, -0.013671875, 0.0133056640625, -0.00457763671875, 0.0291748046875, -0.004425048828125, 0.0030517578125, 0.0029449462890625, -0.01092529296875, 0.0101318359375, 0.0054931640625, -0.00640869140625, -0.003631591796875, 0.019287109375, -0.00341796875, 0.00139617919921875, -0.004486083984375, -0.009033203125, -0.0022735595703125, -0.0174560546875, 0.009033203125, 0.00048065185546875, -0.00836181640625, -0.0133056640625, -0.0125732421875, 0.0023956298828125, -0.01171875, -0.002685546875, 0.00067138671875, 0.000667572021484375, -0.005767822265625, -0.007354736328125, 0.0135498046875, -0.007720947265625, 0.0068359375, -0.00848388671875, 0.01043701171875, -0.0164794921875, 0.004547119140625, -0.002593994140625, -0.00885009765625, 0.00994873046875, -0.0012359619140625, 0.000896453857421875, 0.0703125, -0.00726318359375, -0.0118408203125, 0.0247802734375, 0.000911712646484375, -0.0029449462890625, -0.0035247802734375, 0.01470947265625, -0.01025390625, 0.00860595703125, 0.00830078125, -0.00823974609375, -0.018798828125, -0.0189208984375, -0.0034637451171875, 0.00927734375, 0.0048828125, 0.001251220703125, 0.004638671875, 0.02001953125, -0.018310546875, -0.008544921875, 0.0234375, -0.0054931640625, -0.0087890625, -0.00543212890625, 0.00799560546875, -0.007080078125, -0.00179290771484375, -0.007476806640625, 0.0181884765625, 0.0390625, 0.0167236328125, 0.00128173828125, -0.0194091796875, 0.002410888671875, -0.019775390625, -0.00634765625, -0.0087890625, 0.0035858154296875, 0.0023651123046875, -0.0072021484375, -0.00799560546875, 0.0478515625, -0.0084228515625, -0.0128173828125, 0.007781982421875, -0.0034637451171875, -0.017822265625, -0.01177978515625, -0.003387451171875, -0.00848388671875, 0.00830078125, 0.0004673004150390625, 0.03271484375, 0.00063323974609375, -0.0021820068359375, -0.00885009765625, -0.01239013671875, -0.0172119140625, 0.0003795623779296875, -0.0181884765625, -0.010009765625, 0.016845703125, 0.006439208984375, -0.0281982421875, -0.005126953125, -0.00136566162109375, -0.0113525390625, -0.0211181640625, 0.02734375, -0.00750732421875, -0.01556396484375, 0.005096435546875, -0.0069580078125, -0.004730224609375, 0.0027313232421875, -0.0032196044921875, 0.0010986328125, 0.0108642578125, -0.0045166015625, -0.0111083984375, 0.005859375, -0.0135498046875, 0.0101318359375, -0.0029296875, 0.021728515625, 0.00927734375, -0.000408172607421875, 0.002960205078125, 0.006561279296875, -0.0159912109375, -0.00714111328125, -0.00118255615234375, -0.010009765625, -0.00738525390625, -0.01300048828125, -0.00408935546875, 0.0133056640625, 0.00015163421630859375, -0.003997802734375, -0.02001953125, 0.019775390625, 0.006134033203125, -0.0013427734375, 0.0028228759765625, 0.08740234375, -0.00250244140625, 0.00555419921875, 0.0035400390625, -0.01373291015625, -0.0157470703125, 0.022705078125, -0.018798828125, 0.0026092529296875, -0.0022125244140625, -0.001739501953125, -0.0208740234375, 0.0019683837890625, -0.0002727508544921875, 0.011962890625, 0.006988525390625, 0.0234375, -0.010986328125, 0.0045166015625, -0.0147705078125, -0.0234375, 0.002777099609375, -0.00823974609375, -0.021728515625, -0.006561279296875, -0.005126953125, -0.000335693359375, -0.00182342529296875, -0.01055908203125, 0.01171875, -0.005218505859375, 0.01116943359375, -0.004058837890625, 0.01019287109375, 0.005035400390625, -0.0281982421875, 0.002838134765625, 0.00628662109375, -0.0150146484375, -0.1845703125, -0.01226806640625, -0.005218505859375, 0.01263427734375, 0.00115966796875, -0.005218505859375, -0.0050048828125, 0.0026397705078125, -0.016845703125, -0.00811767578125, 0.0111083984375, 0.00799560546875, 0.009521484375, 0.02001953125, 0.0225830078125, -0.017578125, 0.002288818359375, 0.0035247802734375, -0.009033203125, 0.01129150390625, -0.0279541015625, -0.00927734375, 0.0106201171875, 0.00029754638671875, -0.0018463134765625, 0.00518798828125, -0.005859375, 0.00341796875, 0.002716064453125, -0.033203125, 0.008056640625, 0.006011962890625, -0.0009002685546875, -0.022216796875, -0.0020294189453125, -0.0294189453125, -0.01806640625, -0.03515625, 0.0021820068359375, -0.00183868408203125, 0.0045166015625, 0.0198974609375, -0.0157470703125, -0.018310546875, 0.005889892578125, 0.00714111328125, -0.0162353515625, 0.0240478515625, 0.0101318359375, -0.00750732421875, 0.004302978515625, -0.002105712890625, 0.007568359375, 0.0235595703125, -0.006134033203125, -0.00860595703125, 0.0203857421875, 0.00445556640625, 0.010986328125, 0.021728515625, -0.018310546875, 0.0035247802734375, 0.018310546875, 0.009765625, 0.006561279296875, -0.0028533935546875, -0.006744384765625, 0.00494384765625, -0.00750732421875, 0.0003566741943359375, -0.0098876953125, 0.01470947265625, -0.020263671875, 0.0194091796875, -0.007568359375, 0.0166015625, -0.00579833984375, 0.00225830078125, -0.0115966796875, -0.0133056640625, -0.004852294921875, -0.0159912109375, -0.0177001953125, -0.01055908203125, -0.004608154296875, -0.010498046875, -0.0030364990234375, 0.0098876953125, -0.0068359375, -0.01153564453125, 0.00970458984375, 0.0198974609375, -0.004638671875, 0.045654296875, -0.0096435546875, -0.0291748046875, 0.00555419921875, 0.00014781951904296875, -0.011962890625, -0.0022125244140625, 0.000705718994140625, 0.00506591796875, 0.01055908203125, 0.0034332275390625, 0.01055908203125, 0.005889892578125, 0.0107421875, 0.007568359375, -0.01708984375, -0.00083160400390625, -0.007476806640625, 0.00335693359375, -0.099609375, 0.014404296875, 0.0091552734375, 0.0361328125, -0.004638671875, 0.00421142578125, 0.02099609375, -0.0244140625, 0.002960205078125, -0.10498046875, -0.009033203125, 0.00927734375, 8.869171142578125e-05, 0.0142822265625, 0.02734375, 0.00347900390625, 0.00970458984375, 0.0211181640625, 0.001739501953125, -0.017333984375, 0.0098876953125, -0.021728515625, 0.000705718994140625, -0.010986328125, -0.00714111328125, 0.00970458984375, -0.00823974609375, -0.0203857421875, -0.000537872314453125, 0.01092529296875, 0.00543212890625, 0.0032501220703125, -0.004119873046875, 0.0118408203125, 0.0225830078125, -0.000789642333984375, 0.002227783203125, -0.00714111328125, -0.00897216796875, -0.013427734375, 0.0023956298828125, 0.0174560546875, -0.00958251953125, 0.01043701171875, -0.003326416015625, -0.01324462890625, -0.0106201171875, 0.00653076171875, -0.016845703125, -0.0028228759765625, -0.00848388671875, 0.00125885009765625, -0.018310546875, -0.01080322265625, -0.0021820068359375, -0.0142822265625, 0.003936767578125, 0.01025390625, -0.00021648406982421875, 0.002777099609375, 0.0026092529296875, -0.0191650390625, -0.02099609375, 0.001800537109375, 0.0013275146484375, 0.006072998046875, -0.00396728515625, -0.000278472900390625, -0.01092529296875, 0.006103515625, -0.0157470703125, -0.01300048828125, 0.004852294921875, 0.0093994140625, 0.0150146484375, -0.005401611328125, -0.00555419921875, 0.0361328125, 0.013916015625, 0.0002727508544921875, 0.0172119140625, -0.01055908203125, 0.0194091796875, 0.0166015625, 0.0038909912109375, 0.00927734375, 0.01373291015625, 0.006988525390625, -0.00823974609375, -0.003265380859375, -0.000698089599609375, -0.0194091796875, -0.0106201171875, -0.000301361083984375, 0.002655029296875, 0.0084228515625, 0.004364013671875, -0.00830078125, 0.01544189453125, 0.022216796875, 0.0081787109375, -0.00185394287109375, -0.023681640625, -0.01043701171875, 0.000652313232421875, -0.005401611328125, 0.00225830078125, 0.009033203125, 0.01470947265625, -0.0001659393310546875, -0.0084228515625, 0.006072998046875, -0.0159912109375, 0.01300048828125, 0.0050048828125, -0.010498046875, 0.008544921875, -0.010498046875, 0.00110626220703125, 0.0107421875, -0.0006256103515625, 0.02392578125, 0.0036773681640625, -0.004791259765625, -0.01385498046875, -0.004150390625, 0.003814697265625, 0.01312255859375, 0.0174560546875, 0.005645751953125, 0.0206298828125, -0.0025787353515625, -0.00543212890625, 0.000732421875, -0.0031585693359375, -0.0002689361572265625, 0.015625, 0.010986328125, 0.00360107421875, -0.00238037109375, 0.01544189453125, -0.0167236328125, 0.000583648681640625, -0.0030059814453125, 0.018310546875, 0.003387451171875, 0.01171875, -0.02001953125, 0.006622314453125, -0.006744384765625, 0.005462646484375, 0.004638671875, 0.022216796875, 0.00750732421875, 0.025634765625, -0.0037384033203125, 0.0130615234375, 0.000286102294921875, -0.00787353515625, -0.005462646484375, 0.00031280517578125, 0.013671875, -0.00860595703125, 0.006561279296875, -0.019775390625, -0.006439208984375, 0.0186767578125, 0.006134033203125, -0.0001983642578125, 0.0037994384765625, -0.010986328125, -0.00153350830078125, -0.01513671875, -0.0203857421875, -0.00946044921875, 0.003387451171875, -0.01300048828125, 0.0030517578125, -0.005462646484375, -0.00010204315185546875, 0.00421142578125, -0.00982666015625, 0.0274658203125, -0.007415771484375, -0.0260009765625, -0.0015869140625, -0.004852294921875, -0.020263671875, 0.00482177734375, -0.005157470703125, -0.01373291015625, -0.016357421875, 0.0036468505859375, 0.0014495849609375, 0.00457763671875, 0.0032501220703125, 0.029052734375, 0.001190185546875, -0.021728515625, -0.00038909912109375, -0.09375, -0.007598876953125, -0.00421142578125, -0.0011749267578125, 0.00250244140625, 0.001708984375, 0.0115966796875, -0.0128173828125, 0.006500244140625, -0.006622314453125, -0.0033111572265625, 0.0089111328125, -0.0103759765625, 0.00020122528076171875, -0.000881195068359375, -0.00457763671875, 0.01214599609375, 0.01708984375, -0.16015625, -0.00927734375, 0.00384521484375, 0.00144195556640625, -0.00174713134765625, -0.009033203125, 0.0177001953125, 0.0208740234375, 0.004791259765625, -0.006866455078125, -0.0020904541015625, -0.004547119140625, -0.0026092529296875, -0.007781982421875, 0.008056640625, 0.0286865234375, -0.020751953125, -0.0059814453125, -0.0101318359375, -0.00567626953125, -0.000858306884765625, 0.004364013671875, -0.01458740234375, 0.005218505859375, 0.01397705078125, 0.006622314453125, -0.00933837890625, 0.0014801025390625, 0.0067138671875, -0.002593994140625, -0.002899169921875, -0.00653076171875, -0.0004329681396484375, -0.01611328125, 0.0196533203125, -0.0211181640625, -0.000598907470703125, 0.025146484375, 0.00830078125, -0.007415771484375, 0.02001953125, 0.0157470703125, -0.0037841796875, -0.0030059814453125, 0.0186767578125, 0.0257568359375, -0.0126953125, 0.01416015625, -0.0194091796875, -0.013916015625, -0.01611328125, 0.007720947265625, 0.01470947265625, 0.00189208984375, 0.00665283203125, 0.0019989013671875, -0.0006256103515625, 0.0010223388671875, 0.01611328125, -0.0072021484375, -0.00092315673828125, -0.016357421875, 0.002349853515625, 0.0181884765625, -0.01312255859375, 0.00146484375, -0.0027008056640625, 0.008056640625, 0.010009765625, -0.0191650390625, -0.01116943359375, 0.00115203857421875, 0.0113525390625, 0.01171875, 0.00726318359375, 0.0196533203125, -0.004364013671875, -0.017822265625, -0.008056640625, -0.006439208984375, 0.005279541015625, -0.00970458984375, 0.00445556640625, 0.01055908203125, -0.0028839111328125, -0.01458740234375, -0.0042724609375, -0.0084228515625, -0.00830078125, -0.00098419189453125, -0.005218505859375, -0.01373291015625, -0.01263427734375, 0.041748046875, 0.00885009765625, -0.00555419921875, -0.00799560546875, 0.00677490234375, 0.0037994384765625, -0.00107574462890625, 0.00189971923828125, 0.000213623046875, 0.0216064453125, 0.00124359130859375, -0.00830078125, 0.005645751953125, 0.01055908203125, -0.007598876953125, -0.003631591796875, 0.005645751953125, 0.005767822265625, 0.025390625, 0.006561279296875, -0.0086669921875, 0.00131988525390625, 0.00421142578125, -0.0145263671875, 0.0223388671875, 0.0038604736328125, 0.0034637451171875, 0.0157470703125, -0.0025787353515625, 0.019287109375, 0.00144195556640625, 0.0091552734375, 0.00099945068359375, 0.0026092529296875, -0.01409912109375, 0.00726318359375, 0.0021820068359375, 0.00179290771484375, 0.0177001953125, 0.01348876953125, -0.00640869140625, 0.0185546875, 0.0024566650390625, -0.1259765625, 0.006317138671875, 0.008056640625, -0.00726318359375, 0.016357421875, -0.01470947265625, -0.004150390625, -0.00058746337890625, -0.00121307373046875, 0.007476806640625, 0.02490234375, 0.01068115234375, 0.00183868408203125, -0.0269775390625, -0.0179443359375, 0.0024261474609375, 0.000934600830078125, -0.0035400390625, 0.01385498046875, -0.01153564453125, 0.007293701171875, 0.05810546875, -0.0027923583984375, 0.003265380859375, 0.0194091796875, 0.011962890625, 0.009033203125, -0.000545501708984375, -0.00057220458984375, -0.00909423828125, 0.006988525390625, 0.006439208984375, 0.0118408203125, 0.004058837890625, 0.0054931640625, 0.01434326171875, -0.01806640625, -0.0072021484375, -0.01495361328125, -0.0081787109375, 0.01495361328125, -0.00653076171875, 0.015869140625, -0.00714111328125, -0.0096435546875, -0.004180908203125, 1.0132789611816406e-06, 0.00131988525390625, 0.0030975341796875, -0.002685546875, -0.01226806640625, -0.0016937255859375, -0.00909423828125, -0.02001953125, 0.01177978515625, 0.018310546875, -0.01434326171875, 0.003936767578125, -0.00927734375, -0.000896453857421875, 0.01055908203125, -0.0084228515625, -0.00139617919921875, 0.01220703125, -0.01611328125, -0.001708984375, 0.042236328125, -0.0205078125, 0.01312255859375, 0.0128173828125, -0.00390625, -0.01409912109375, 0.00970458984375, 0.002288818359375, 0.006561279296875, 0.008544921875, 0.00506591796875, -0.0107421875, -0.016845703125, -0.005767822265625, 0.010009765625, -0.007415771484375, 0.00567626953125, 0.00153350830078125, 0.039306640625, 0.00885009765625, 0.0240478515625, -0.004608154296875, -0.008056640625, 0.0034942626953125, -0.041259765625, 0.0014801025390625, -0.0159912109375, -0.015625, -0.002838134765625, -0.01373291015625, 0.005706787109375, -0.010986328125, -0.01519775390625, 0.00970458984375, 0.003631591796875, -0.00408935546875, -0.000263214111328125, 0.00665283203125, -0.000583648681640625, 0.02001953125, 0.020263671875, 0.0086669921875, -0.007171630859375, 0.01470947265625, -0.0036773681640625, 0.0081787109375, 0.006988525390625, -0.016357421875, -0.002777099609375, -0.0106201171875, 0.00049591064453125, -0.00029754638671875, -0.0034637451171875, -0.0218505859375, -0.008544921875, -0.0019989013671875, 0.0022125244140625, 0.005584716796875, -0.00946044921875, 0.003173828125, -0.0030517578125, 0.005584716796875, -0.001190185546875, 0.016357421875, -0.00078582763671875, 0.006744384765625, 0.049560546875, 0.0118408203125, -0.000553131103515625, 0.0002899169921875, -0.004730224609375, -0.0211181640625, 0.00408935546875, 0.02197265625, -0.002655029296875, 0.0113525390625, -0.001251220703125, 0.019775390625, -0.0004138946533203125, -0.0034637451171875, -0.0067138671875, -0.0108642578125, 0.01239013671875, -0.00787353515625, -0.0118408203125, -0.0133056640625, -0.0181884765625, -0.0157470703125, 0.0096435546875, 0.00185394287109375, -6.818771362304688e-05, -0.00115203857421875, 0.003173828125, 0.00020122528076171875, -0.00439453125, 0.0157470703125, 0.00102996826171875, 0.00119781494140625, -0.0035858154296875, -0.0208740234375, -0.0022125244140625, -0.00714111328125, -0.016357421875, 0.0009002685546875, -0.02392578125, 0.01312255859375, -0.01055908203125, -0.0157470703125, 0.00958251953125, -0.011962890625, -0.008056640625, 0.00019359588623046875, 0.00066375732421875, -0.00836181640625, 0.033203125, 0.0030059814453125, -0.0230712890625, 0.0274658203125, -0.00665283203125, 0.013427734375, -0.01416015625, -0.028564453125, 0.025146484375, 0.01348876953125, -0.011962890625, -0.002593994140625, -0.0145263671875, 0.0225830078125, -0.0118408203125, 0.0133056640625, -0.003997802734375, 0.013671875, 0.0084228515625, 0.006439208984375, 0.004852294921875, 0.00628662109375, -0.01141357421875, 0.0024261474609375, 0.022705078125, -0.0157470703125, -0.00112152099609375, -0.013671875, 0.003326416015625, -0.0111083984375, 0.018310546875, -0.012451171875, 0.006317138671875, -0.0034637451171875, -0.021728515625, 0.005218505859375, 0.01397705078125, 8.487701416015625e-05, 0.0196533203125, -0.006011962890625, -0.00506591796875, -0.00127410888671875, 0.00360107421875, 0.013916015625, 0.005096435546875, -0.0089111328125, 0.0042724609375, -0.0023040771484375, 0.0177001953125, -0.0011749267578125, -0.01141357421875, -0.0157470703125, -0.019775390625, -0.0011138916015625, 0.0257568359375, 0.01397705078125, 0.031982421875, 0.01055908203125, -0.004547119140625, -0.00016689300537109375, 0.000415802001953125] /programs/dev/projects/testproject1 summ TCGA-02-2466 TCGA-02-2466.e9e97b51-1474-463b-8693-7b66f74319c9 summ -[0.00726318359375, -0.007080078125, -0.0030670166015625, -0.007568359375, 1.823902130126953e-05, -0.007568359375, 0.026123046875, -0.0098876953125, 0.000751495361328125, -0.01806640625, 0.01025390625, 0.01385498046875, 0.00147247314453125, 0.004669189453125, 0.0001964569091796875, -0.03173828125, -0.018798828125, -0.00579833984375, -0.0067138671875, 0.00506591796875, -1.8358230590820312e-05, 0.002716064453125, 0.0033721923828125, 0.0072021484375, 0.0274658203125, 0.007598876953125, 0.013916015625, -0.00042724609375, 0.002288818359375, -0.0030975341796875, 0.004669189453125, 0.01397705078125, -0.01043701171875, 0.018310546875, 0.008056640625, 0.00421142578125, 0.03466796875, -0.0002593994140625, 0.001190185546875, -0.0111083984375, 0.00885009765625, 0.00634765625, -0.01611328125, 0.002685546875, 0.0054931640625, -0.00162506103515625, -0.0086669921875, -0.017333984375, -0.00897216796875, 0.0026397705078125, -0.022705078125, -0.00421142578125, 0.018310546875, -0.1328125, -0.01300048828125, 0.03564453125, -0.0111083984375, 0.0179443359375, -0.0052490234375, 0.034912109375, 0.0001583099365234375, -0.00016498565673828125, -0.0004825592041015625, 0.007354736328125, 0.007171630859375, 0.005859375, -0.00506591796875, -0.00494384765625, -0.00958251953125, -0.01397705078125, -0.01300048828125, -0.00173187255859375, -0.00787353515625, -0.01300048828125, 0.00811767578125, 0.0098876953125, 0.0189208984375, -0.01556396484375, 0.0033111572265625, 0.009033203125, 0.014404296875, -0.017333984375, -0.00494384765625, -0.0096435546875, 0.016357421875, -0.015869140625, 0.0068359375, 0.01129150390625, -0.00787353515625, -0.006866455078125, -0.0206298828125, -0.007476806640625, 0.00518798828125, -0.0034637451171875, -0.0115966796875, -0.0023651123046875, -0.007598876953125, -0.0174560546875, 0.0028839111328125, -0.00537109375, 0.00860595703125, 0.02001953125, 0.021728515625, -0.0034332275390625, -0.0159912109375, -0.0166015625, 0.00836181640625, -0.017578125, -0.007720947265625, 0.0019683837890625, 0.01214599609375, 0.01611328125, 0.006134033203125, 0.017333984375, 0.0084228515625, -0.00518798828125, 0.006103515625, -0.018310546875, 0.0076904296875, 0.0098876953125, 0.0035247802734375, 0.02001953125, 0.0034942626953125, -0.00153350830078125, -0.01708984375, -0.01141357421875, -0.003814697265625, 0.003997802734375, 0.007171630859375, 0.0145263671875, -0.000579833984375, -0.014404296875, -0.0003414154052734375, -0.01416015625, 0.00872802734375, 0.01806640625, 0.01141357421875, 0.0003299713134765625, 0.004913330078125, 0.013916015625, -0.00885009765625, 0.01373291015625, -0.0125732421875, 0.001556396484375, -0.006011962890625, 0.00445556640625, 0.0125732421875, -0.006622314453125, 0.0152587890625, 0.0130615234375, 0.006988525390625, -0.01055908203125, 0.016357421875, -0.0230712890625, 0.01153564453125, -0.0135498046875, 0.0252685546875, -0.0054931640625, -0.002288818359375, -0.00677490234375, -0.00506591796875, 0.002197265625, -0.0167236328125, 0.0115966796875, -0.00506591796875, 0.01153564453125, 0.0113525390625, 0.0022125244140625, 0.0135498046875, 0.0027313232421875, -0.0206298828125, 0.021728515625, -0.0054931640625, -0.0067138671875, 0.004791259765625, 0.004150390625, -0.008544921875, -0.00677490234375, 0.0216064453125, 0.002777099609375, 0.0234375, -0.0235595703125, -0.0028839111328125, 0.00634765625, 0.00518798828125, 0.038818359375, -0.00677490234375, -0.007781982421875, 0.002899169921875, -0.0059814453125, -0.001068115234375, 0.004425048828125, -0.026123046875, 0.0029296875, -0.00341796875, -0.021484375, 0.044677734375, 0.007293701171875, -0.0108642578125, 0.00146484375, -0.00299072265625, 0.00872802734375, -0.0174560546875, -0.026611328125, -0.006744384765625, -0.004730224609375, -0.0177001953125, -0.011962890625, 0.01708984375, -0.00543212890625, -0.014404296875, -0.004302978515625, 0.00335693359375, -0.001495361328125, 0.00457763671875, 0.00579833984375, 0.006072998046875, 0.00021648406982421875, -0.0184326171875, 0.0157470703125, 0.0096435546875, 0.00714111328125, 0.0027313232421875, -0.00885009765625, 0.01031494140625, 0.00274658203125, 0.0206298828125, 0.0159912109375, 0.00762939453125, 0.002166748046875, 0.013916015625, -0.0002727508544921875, 0.0016937255859375, -0.01416015625, 0.00183868408203125, -0.0115966796875, 0.0167236328125, -0.01708984375, 0.0244140625, -0.006072998046875, -0.00131988525390625, 0.0030059814453125, 0.0084228515625, -0.0019073486328125, 0.00160980224609375, -0.016357421875, 0.004638671875, 0.0169677734375, -0.0147705078125, -0.0235595703125, 0.018310546875, 0.001129150390625, -0.01611328125, 0.0040283203125, -0.004241943359375, 0.0045166015625, -0.0118408203125, 0.01348876953125, -0.002593994140625, -0.01806640625, 0.000476837158203125, 0.00154876708984375, 0.00787353515625, 0.032470703125, -0.0027313232421875, 0.0203857421875, -0.0023651123046875, 0.00897216796875, -0.00421142578125, 0.01068115234375, -0.01483154296875, -0.0234375, 0.0181884765625, 0.006072998046875, -0.00421142578125, 0.0194091796875, 0.021728515625, -0.0177001953125, 0.05078125, 0.00151824951171875, 0.002838134765625, 0.00885009765625, -0.007568359375, -0.00885009765625, 0.022705078125, 0.02099609375, -0.0281982421875, -0.006317138671875, -0.01708984375, 0.004730224609375, 0.0130615234375, 0.010009765625, -0.043701171875, -0.00567626953125, -0.0157470703125, -0.0076904296875, 0.0242919921875, 0.030029296875, 0.0025177001953125, -0.001983642578125, 0.00518798828125, 0.0054931640625, 0.0018463134765625, -0.0062255859375, 0.00885009765625, -0.0218505859375, 0.0245361328125, 0.003936767578125, 0.011962890625, 0.0166015625, 0.0037994384765625, 0.000873565673828125, 0.0128173828125, 0.004364013671875, -0.01263427734375, -0.00469970703125, -0.007568359375, -0.0002384185791015625, -0.004608154296875, 0.003814697265625, -0.01470947265625, 0.00433349609375, 0.0390625, -0.01904296875, -0.001129150390625, 0.0274658203125, 0.004852294921875, -0.0098876953125, -0.000762939453125, 0.0157470703125, 0.0257568359375, -0.0186767578125, -0.003143310546875, 0.0111083984375, 0.009521484375, 0.0004558563232421875, 0.007415771484375, 0.01141357421875, 0.00927734375, 0.00153350830078125, 0.003204345703125, -0.00115203857421875, 0.0291748046875, 0.0018157958984375, -0.0017852783203125, 0.016357421875, -0.00830078125, 0.0087890625, 0.0024566650390625, -0.00186920166015625, -0.0042724609375, -0.0191650390625, 0.0054931640625, 0.006317138671875, -0.0194091796875, -0.019775390625, -0.01141357421875, 0.00017452239990234375, 0.02197265625, -0.0026092529296875, 0.005279541015625, -0.0135498046875, -0.002349853515625, 0.010986328125, 0.01470947265625, 0.0257568359375, -0.00927734375, 0.00579833984375, 0.007171630859375, 0.009033203125, 0.01025390625, -0.006927490234375, 0.01458740234375, 0.0208740234375, -0.01806640625, 0.0196533203125, -0.0172119140625, 0.029541015625, -0.013427734375, -0.0247802734375, 0.011962890625, -0.01031494140625, -0.004791259765625, -0.01202392578125, -0.004608154296875, 0.01519775390625, -0.0086669921875, -0.00092315673828125, 0.00933837890625, -0.014404296875, 0.00927734375, 0.0027008056640625, -0.00970458984375, 0.00750732421875, -0.006866455078125, -0.0111083984375, 0.01556396484375, 0.022216796875, -0.02001953125, 0.012451171875, -0.0177001953125, -0.007720947265625, -0.0031585693359375, 0.006195068359375, -0.006195068359375, -0.00115966796875, 0.0260009765625, 0.00628662109375, -0.03271484375, -0.004150390625, 0.0079345703125, 0.01129150390625, -0.002197265625, 0.00537109375, -0.0206298828125, 0.00830078125, 0.0169677734375, -0.00738525390625, -0.031494140625, 0.01483154296875, 0.0150146484375, 0.0106201171875, 0.005096435546875, 0.003997802734375, 0.0213623046875, -0.01904296875, -0.00927734375, -0.00640869140625, 0.004669189453125, 0.00335693359375, 0.002471923828125, -0.0084228515625, -0.0166015625, 0.01129150390625, -0.0081787109375, -0.0157470703125, -0.00933837890625, 0.00099945068359375, 0.007781982421875, -0.0164794921875, 0.042236328125, 0.0098876953125, 0.003936767578125, -0.0031585693359375, 0.0018768310546875, 0.004425048828125, 0.016357421875, -0.004302978515625, -0.028564453125, 0.00823974609375, -0.01153564453125, 0.005157470703125, -0.005889892578125, -0.00408935546875, -0.01171875, -0.0228271484375, 0.025146484375, -0.007720947265625, 0.006500244140625, 0.006439208984375, -0.003936767578125, -0.00653076171875, 0.0128173828125, 0.00579833984375, -0.0030670166015625, -0.0133056640625, -0.0030975341796875, -0.01177978515625, 0.0128173828125, 0.0069580078125, -0.0020294189453125, 0.0078125, 0.009765625, 0.0150146484375, -0.0013427734375, 0.002593994140625, 0.01129150390625, 0.003631591796875, -0.009033203125, -0.0098876953125, 0.0096435546875, -0.01348876953125, 0.006317138671875, 0.00183868408203125, -0.0179443359375, -0.01031494140625, 0.0194091796875, -0.0196533203125, -0.01171875, 0.0101318359375, 0.0081787109375, 0.004791259765625, -0.025390625, 0.0034637451171875, 0.00848388671875, -0.01483154296875, 0.01068115234375, 0.01416015625, 0.02099609375, 0.006195068359375, -0.01519775390625, 0.0023193359375, 0.005889892578125, 0.001251220703125, 0.004425048828125, 0.0081787109375, -0.0113525390625, -0.008056640625, 0.0021209716796875, 0.003204345703125, 0.01171875, -0.004547119140625, -0.006561279296875, 0.005340576171875, -0.0081787109375, 0.003326416015625, 0.00179290771484375, 0.03173828125, -0.01544189453125, -0.00787353515625, 0.0020599365234375, -0.00421142578125, -0.007476806640625, -0.00970458984375, 0.0023193359375, -0.01177978515625, 0.01025390625, 0.0007781982421875, 0.00848388671875, 0.02734375, -0.002471923828125, 0.00982666015625, 0.0072021484375, -0.019775390625, 0.001495361328125, -0.00750732421875, 0.01495361328125, 0.007415771484375, -0.0103759765625, -0.0103759765625, 0.0185546875, -0.003631591796875, -0.00970458984375, 0.00653076171875, 0.0026702880859375, 0.0194091796875, -0.01416015625, 0.02001953125, 0.0167236328125, -0.000335693359375, -0.02099609375, -0.035888671875, 0.018310546875, 0.0242919921875, -0.00579833984375, -0.022705078125, 0.00531005859375, 0.01043701171875, -0.00518798828125, 0.006988525390625, 0.002227783203125, -0.01141357421875, -0.008544921875, -0.0038909912109375, -0.01043701171875, 0.002960205078125, 0.013671875, -0.00640869140625, -0.006195068359375, 0.0230712890625, -0.0027923583984375, -0.02001953125, -0.0152587890625, 0.0206298828125, 0.0062255859375, -0.01312255859375, -0.0081787109375, -0.01055908203125, 0.040771484375, 0.0038909912109375, -0.0084228515625, 0.000606536865234375, 0.004852294921875, 0.00518798828125, -0.00494384765625, -0.0025482177734375, -0.01043701171875, -0.006744384765625, -0.01611328125, 0.025390625, -0.0021209716796875, -0.0166015625, -0.00193023681640625, 0.0235595703125, 0.0009613037109375, -0.015625, 0.00787353515625, -0.014404296875, -0.00119781494140625, 0.0186767578125, 0.005218505859375, -0.01092529296875, 0.020263671875, 0.0303955078125, -0.0037841796875, -0.006134033203125, 0.0194091796875, 0.0230712890625, -0.0142822265625, 0.00872802734375, -0.00421142578125, 0.0130615234375, -0.00830078125, 0.010009765625, 0.0169677734375, 0.004150390625, -0.004852294921875, -0.00579833984375, -0.016357421875, 0.02734375, 0.01416015625, -0.00421142578125, 0.01904296875, 0.0035400390625, -0.016357421875, 0.0037384033203125, -0.01708984375, 0.00762939453125, 0.01263427734375, 0.000335693359375, -0.00390625, -0.0198974609375, -0.0174560546875, 0.025146484375, -0.000530242919921875, 0.00013828277587890625, 0.01495361328125, 0.006072998046875, -0.0142822265625, -0.0159912109375, 0.0002841949462890625, 0.003936767578125, 0.01397705078125, 0.00347900390625, -0.00141143798828125, 0.00927734375, -0.01092529296875, -0.00946044921875, 0.0028839111328125, -0.025634765625, -0.0196533203125, -0.0179443359375, -0.04296875, 0.001983642578125, 9.655952453613281e-06, 0.005889892578125, -0.0177001953125, 0.01019287109375, 0.015380859375, 0.0098876953125, 0.016357421875, 0.014404296875, 0.0162353515625, 0.01385498046875, -0.01385498046875, -0.01055908203125, 0.03955078125, -0.00335693359375, 0.01214599609375, 0.00061798095703125, 0.0107421875, 0.00970458984375, 0.0098876953125, -0.00118255615234375, 0.0172119140625, -0.01116943359375, 0.011962890625, 0.01092529296875, -0.001983642578125, -0.00335693359375, 0.00543212890625, 0.004241943359375, 0.000713348388671875, 0.0184326171875, -0.0277099609375, 0.0113525390625, 0.0019683837890625, -0.01312255859375, -0.0184326171875, 0.0059814453125, -0.01116943359375, -0.01263427734375, -0.006439208984375, 0.004180908203125, 0.0213623046875, -0.0103759765625, -0.0096435546875, -0.0067138671875, 0.00157928466796875, 0.00958251953125, -0.0128173828125, -0.0206298828125, 0.00927734375, 0.02001953125, -0.01385498046875, 0.050537109375, 0.0004558563232421875, 0.009033203125, 0.02490234375, 0.013671875, 0.017333984375, -0.02099609375, 0.033447265625, -0.0079345703125, 0.004119873046875, 0.0014801025390625, 0.0002002716064453125, 0.017822265625, -0.0194091796875, -0.002532958984375, -0.00506591796875, -0.02880859375, 0.03369140625, 0.00830078125, -0.00872802734375, 0.000759124755859375, -0.0014495849609375, 0.00147247314453125, 0.01300048828125, -0.0228271484375, 0.000591278076171875, -0.001556396484375, -0.0001125335693359375, 0.00421142578125, 0.016845703125, -0.006622314453125, -0.0086669921875, -0.00872802734375, 0.0023956298828125, -0.01220703125, 0.00994873046875, -0.0054931640625, 0.0010223388671875, -0.002166748046875, 0.01080322265625, -0.00909423828125, -0.002105712890625, -0.0205078125, -0.00567626953125, -0.01220703125, -0.0115966796875, 0.013671875, 0.0159912109375, -0.00445556640625, -0.0281982421875, 0.0159912109375, 0.010986328125, 0.00537109375, -0.0152587890625, -0.005157470703125, -0.0101318359375, 0.004547119140625, 0.0142822265625, -0.005157470703125, 0.005859375, -0.0216064453125, 0.00341796875, 0.00665283203125, -0.00634765625, -0.006927490234375, 0.01214599609375, -0.0142822265625, 0.01080322265625, -0.006317138671875, 3.218650817871094e-05, 0.0157470703125, 0.032958984375, -0.022705078125, 0.0078125, 0.00183868408203125, -0.0111083984375, 0.005340576171875, -0.0050048828125, -0.0036468505859375, -0.0026397705078125, 0.00787353515625, 0.0035400390625, -0.0045166015625, -0.006927490234375, 0.001251220703125, 0.0152587890625, -0.03173828125, 0.0033111572265625, -0.01226806640625, 0.00153350830078125, -0.0019683837890625, -0.01513671875, 0.005584716796875, -0.01348876953125, 0.000766754150390625, 0.01312255859375, -0.001800537109375, -0.0107421875, 0.014404296875, -0.00872802734375, -0.00665283203125, -0.00970458984375, -0.00185394287109375, -0.0052490234375, 0.022216796875, 0.002899169921875, 0.0164794921875, -0.023193359375, 0.00970458984375, -0.00201416015625, -0.002532958984375, 0.000469207763671875, 0.0054931640625, 0.013427734375, -0.00787353515625, -0.0172119140625, 0.00089263916015625, 0.00139617919921875, 0.0194091796875, 0.01239013671875, -0.023193359375, -0.004791259765625, 0.0108642578125, 0.007720947265625, 0.01348876953125, -0.01239013671875, 0.007476806640625, 0.002471923828125, -0.0537109375, -0.01806640625, 0.03369140625, -0.00494384765625, 0.00118255615234375, -0.01300048828125, -0.0059814453125, -0.003753662109375, -0.007720947265625, -0.0047607421875, -0.003631591796875, 0.00677490234375, 0.00982666015625, -0.0107421875, 0.0015716552734375, 0.00653076171875, -0.002960205078125, 0.0084228515625, 0.001708984375, -0.003570556640625, 0.046875, -0.0213623046875, 0.00762939453125, 0.01397705078125, 0.00579833984375, -0.00081634521484375, 0.0086669921875, 0.01953125, 0.0015716552734375, 0.00885009765625, 0.00567626953125, -0.0037078857421875, -0.00994873046875, -0.005889892578125, 0.002777099609375, -0.0030975341796875, 0.02197265625, -0.00494384765625, 0.0125732421875, 0.0050048828125, 0.000789642333984375, -0.00165557861328125, -0.0177001953125, -0.006927490234375, 0.01287841796875, -0.018310546875, 0.006439208984375, 0.006500244140625, -0.006561279296875, 0.02001953125, -0.00811767578125, -0.0308837890625, 0.01171875, -0.007293701171875, -0.004852294921875, -0.0050048828125, -0.0019683837890625, -0.00958251953125, 0.0235595703125, 0.0034332275390625, -0.0018157958984375, 0.00634765625, -0.0218505859375, 0.01287841796875, 0.0194091796875, 0.01214599609375, 0.039306640625, 0.005767822265625, -0.0024566650390625, -0.0126953125, -0.0040283203125, -0.0081787109375, -0.0162353515625, 0.0031585693359375, -0.0050048828125, 0.00439453125, 0.02099609375, 0.031494140625, -0.0025787353515625, -0.00139617919921875, 0.00157928466796875, 0.00051116943359375, 0.00634765625, 0.019287109375, 0.00885009765625, -0.0030364990234375, 0.00860595703125, -0.0186767578125, 0.00897216796875, 0.001251220703125, -0.0014190673828125, 0.01470947265625, 0.0142822265625, -0.002838134765625, 0.0142822265625, -0.01513671875, -0.002410888671875, -0.008056640625, 0.0023193359375, 0.00885009765625, 0.002105712890625, 0.019287109375, -0.00537109375, -0.007080078125, -0.0024261474609375, 0.0011138916015625, 0.0189208984375, -0.00799560546875, 0.000186920166015625, -0.004547119140625, 0.0035858154296875, -0.00124359130859375, 0.006500244140625, -0.025390625, 0.00836181640625, 0.0225830078125, -0.00787353515625, 0.004119873046875, -0.0228271484375, 0.01495361328125, -0.01806640625, 0.01300048828125, -0.01904296875, -0.0157470703125, 0.00848388671875, 0.018798828125, 0.00128936767578125, -0.0091552734375, -0.00909423828125, -0.016845703125, 0.0159912109375, 0.00433349609375, 0.0015869140625, 0.014404296875, 0.01214599609375, 0.0002994537353515625, -0.0194091796875, -0.006072998046875, -0.00714111328125, -0.0068359375, 0.00531005859375, 0.018310546875, -0.02001953125, 0.009033203125, 0.00189971923828125, -0.00445556640625, 0.00653076171875, 0.0126953125, -0.00421142578125, 0.0147705078125, -0.01385498046875, -0.0091552734375, 0.006927490234375, -0.003936767578125, -0.0004482269287109375, 0.01806640625, -0.0115966796875, 0.0027923583984375, -0.00970458984375, -0.01385498046875, 0.0089111328125, 0.016845703125, 0.01239013671875, 0.0150146484375, 0.00885009765625, 0.0045166015625, -0.01031494140625, -0.0115966796875, 0.01483154296875, -0.043701171875, -0.002899169921875, 0.006500244140625, 0.00457763671875, 0.000705718994140625, 0.006500244140625, 0.0225830078125, 0.0038909912109375, -0.0022735595703125, 0.0062255859375, 0.0048828125, -0.0040283203125, -0.00555419921875, -0.010986328125, 0.00970458984375, 0.00147247314453125, 0.01226806640625, 0.01171875, -0.0196533203125, 0.0098876953125, 0.02490234375, 0.005584716796875, -0.00128936767578125, -0.01202392578125, 0.000720977783203125, 0.01171875, -0.00970458984375, -0.004119873046875, -0.10498046875, -0.0012664794921875, -0.0164794921875, 0.01171875, -0.00579833984375, -0.006866455078125, -0.004302978515625, 0.003997802734375, -0.00494384765625, 0.01806640625, -0.0089111328125, -0.010009765625, -0.01116943359375, 0.0203857421875, -0.00518798828125, 0.0269775390625, -0.005889892578125, -0.0181884765625, -0.01312255859375, -0.005889892578125, -0.0150146484375, -0.0130615234375, 0.00037384033203125, 0.002105712890625, -0.0022430419921875, 0.00640869140625, -0.033203125, 0.0174560546875, 0.013916015625, 0.01116943359375, 0.00543212890625, 0.0118408203125, 0.0133056640625, -0.01043701171875, -0.0032501220703125, 0.01220703125, -0.0174560546875, -0.007476806640625, -0.04736328125, 0.004638671875, 0.0157470703125, 0.010009765625, -0.02392578125, 0.019775390625, -0.000606536865234375, 0.01556396484375, -0.01171875, -0.010009765625, -0.00469970703125, -0.0016021728515625, 0.01214599609375, 0.0030517578125, -0.00135040283203125, -0.00860595703125, -0.0034332275390625, 0.00946044921875, -0.02490234375, 0.00347900390625, -0.00103759765625, 0.0179443359375, 0.006988525390625, 0.00799560546875, -0.023681640625, -0.00101470947265625, 0.01458740234375, -0.0234375, 0.0023193359375, -0.0101318359375, 0.014404296875, -0.01043701171875, -0.01385498046875, -0.0014495849609375, 0.0013427734375, 0.005279541015625, -0.01239013671875, 0.01385498046875, -0.0029449462890625, -0.0013427734375, -0.00860595703125, -0.007171630859375, 0.0150146484375, 0.025634765625, 0.00121307373046875, 0.01025390625, 0.00494384765625, -0.00946044921875, 0.03515625, -0.000606536865234375, 0.00872802734375, 0.002838134765625, 0.0113525390625, -0.00567626953125, -0.00885009765625, 0.004150390625, -0.015625, 0.09814453125, -0.0045166015625, 0.0181884765625, 0.0091552734375, -0.0025787353515625, 0.01141357421875, 0.0040283203125, 0.005706787109375, 0.004852294921875, -0.021240234375, 3.457069396972656e-05, -0.0145263671875, -0.00921630859375, 0.0159912109375, 0.023681640625, -0.00933837890625, 0.00494384765625, -0.0037078857421875, -0.019287109375, 0.00194549560546875, 0.023681640625, -0.00823974609375, -0.015869140625, 0.0228271484375, 0.0032501220703125, 0.006500244140625, -0.018310546875, 0.005889892578125, 0.0242919921875, 0.00811767578125, 0.00811767578125, -0.0206298828125, 0.002960205078125, 0.01202392578125, -0.0242919921875, -0.003997802734375, 0.0185546875, 0.005126953125, 0.00628662109375, -0.0191650390625, -0.0133056640625, 0.048583984375, 0.01141357421875, -0.0026702880859375, -0.00445556640625, -0.0150146484375, -0.0145263671875, 0.007720947265625, 0.006195068359375, 0.00860595703125, -0.016357421875, 0.009521484375, -0.00958251953125, -0.010009765625, -0.0147705078125, -0.0028533935546875, -0.018798828125, 0.00109100341796875, 0.000926971435546875, 0.010009765625, 0.0279541015625, 0.01226806640625, -0.01458740234375, -0.0101318359375, 0.001129150390625, -0.01116943359375, -0.01348876953125, 0.0107421875, -0.0024566650390625, -0.00677490234375, -0.01287841796875, 0.0191650390625, 0.00958251953125, -0.00061798095703125, -0.005126953125, 0.010009765625, 0.00109100341796875, 0.00579833984375, -0.01513671875, 0.01141357421875, -0.00653076171875, 0.0068359375, -0.02685546875, -0.002471923828125, 0.015869140625, 0.0211181640625, -0.00927734375, 0.00726318359375, 0.00506591796875, 0.002227783203125, -0.0012664794921875, 0.01806640625, -0.013916015625, 0.00762939453125, -0.0087890625, 0.00157928466796875, 0.00537109375, -0.0111083984375, -0.004974365234375, -0.0245361328125, 0.01116943359375, -0.00653076171875, 0.00927734375, -0.025146484375, -0.021484375, -0.01470947265625, 0.01226806640625, 0.005126953125, 0.0047607421875, 0.0022430419921875, 0.006439208984375, 0.01397705078125, 0.00150299072265625, -0.00555419921875, -0.006134033203125, 0.00933837890625, -0.0194091796875, -0.00013446807861328125, -0.03076171875, 0.002685546875, -0.0260009765625, 0.0206298828125, 0.004150390625, 0.00165557861328125, -0.01031494140625, -0.0030670166015625, -0.0091552734375, -0.005401611328125, -0.000637054443359375, 0.0010833740234375, 0.0228271484375, 0.00830078125, 0.052978515625, -0.01239013671875, 0.0150146484375, 0.00836181640625, -0.0166015625, 0.0133056640625, 0.0169677734375, 0.00274658203125, 0.002349853515625, -0.00628662109375, -0.00897216796875, 0.0927734375, 0.0159912109375, -0.005126953125, -0.0166015625, -0.01019287109375, 0.00537109375, 0.0177001953125, -0.00848388671875, -0.0169677734375, 0.00433349609375, -0.004852294921875, 0.00665283203125, 0.0189208984375, -0.00494384765625, -0.003997802734375, -0.0020599365234375, 0.0019989013671875, -0.02197265625, 0.00750732421875, 0.000965118408203125, 0.0274658203125, 0.000732421875, 0.016845703125, 0.005218505859375, 0.0072021484375, 0.029541015625, -0.01153564453125, 0.01202392578125, -0.01129150390625, 0.007568359375, -0.0198974609375, -0.020751953125, -0.01263427734375, 0.00177001953125, 0.02880859375, -0.0108642578125, -0.00555419921875, 0.0208740234375, -0.00970458984375, 0.0174560546875, -0.002960205078125, -0.0101318359375, -0.01300048828125, 0.00885009765625, 0.00836181640625, 0.0029449462890625, -0.006439208984375, 0.00037384033203125, -0.0247802734375, 0.02880859375, 0.00872802734375, -0.00024318695068359375, -0.01025390625, -0.004302978515625, -0.000308990478515625, -0.0145263671875, 0.013671875, -0.01025390625, -0.00946044921875, 0.01544189453125, -0.000885009765625, 0.0167236328125, 0.0240478515625, -0.011962890625, -0.00457763671875, -0.031494140625, 0.0101318359375, 0.01153564453125, 0.0098876953125, -0.00052642822265625, -0.006439208984375, -0.025146484375, 0.007171630859375, -0.0045166015625, -0.0001125335693359375, 0.0032196044921875, -0.0235595703125, -0.01348876953125, 0.0101318359375, -0.0030517578125, 0.025146484375, 0.00154876708984375, -0.0201416015625, 0.0037841796875, -0.0234375, 0.037109375, 0.014404296875, -0.00274658203125, 0.0091552734375, 0.0069580078125, 0.0152587890625, -0.01129150390625, 0.004638671875, 0.01495361328125, 0.02734375, -0.0072021484375, 0.0001354217529296875, 0.002685546875, 0.0021820068359375, -0.0113525390625, 0.019775390625, -0.0076904296875, 0.011962890625, -0.009033203125, 0.09130859375, 0.01708984375, -0.0167236328125, -0.2119140625, 0.01214599609375, 0.0247802734375, -0.028564453125, 0.0296630859375, 2.8133392333984375e-05, 0.0072021484375, -0.000949859619140625, -0.006500244140625, -0.0126953125, 0.00494384765625, -0.01177978515625, -0.00157928466796875, 0.00115966796875, 0.00787353515625, 0.0034942626953125, 0.004119873046875, 0.0021820068359375, -0.01806640625, 0.00142669677734375, 0.00064849853515625, 0.00823974609375, 0.00194549560546875, 0.005218505859375, -0.005767822265625, 0.02685546875, 0.0081787109375, 0.00946044921875, -0.0113525390625, -0.00677490234375, -0.023193359375, -0.00628662109375, -0.01287841796875, 0.0029296875, 0.00750732421875, -0.0016632080078125, -0.000949859619140625, -0.004119873046875, 0.00738525390625, -0.007476806640625, 0.010009765625, -0.0126953125, -0.002532958984375, 0.0166015625, -0.01129150390625, 0.0157470703125, 0.0019989013671875, -0.00341796875, -0.0150146484375, 0.01409912109375, 0.0152587890625, 0.0004863739013671875, 0.0118408203125, 0.09423828125, 0.0142822265625, -0.00543212890625, 0.0172119140625, -0.0162353515625, -0.02685546875, 0.0223388671875, 0.005279541015625, -0.0147705078125, -0.0021514892578125, -0.0040283203125, 0.00494384765625, 0.01348876953125, -0.005157470703125, 5.6743621826171875e-05, 0.007171630859375, 0.0026702880859375, 0.00537109375, -0.0036468505859375, -0.006195068359375, 0.0203857421875, -0.014404296875, -0.0004405975341796875, -0.0107421875, -0.006072998046875, -0.000453948974609375, 0.022216796875, -0.0072021484375, 0.00970458984375, 0.00885009765625, -0.0089111328125, -0.00823974609375, -0.00012683868408203125, -0.018798828125, 0.00592041015625, -0.0027008056640625, 0.0113525390625, 0.0103759765625, -0.005706787109375, 0.0274658203125, 0.00146484375, 0.006072998046875, 0.038330078125, 0.01287841796875, -0.0087890625, -0.0252685546875, -0.0172119140625, -0.01513671875, 0.01092529296875, -0.002197265625, -0.01202392578125, 0.0169677734375, 0.0026092529296875, 0.00185394287109375, -0.0181884765625, -0.012451171875, 0.00665283203125, -0.002899169921875, 0.04736328125, 0.02880859375, -0.01226806640625, 0.0087890625, -0.000919342041015625, 0.01385498046875, -0.00677490234375, 0.004241943359375, -0.003997802734375, -0.0145263671875, 0.0240478515625, -0.016357421875, -0.01171875, 0.0196533203125, 0.01177978515625, -0.014404296875, -0.004608154296875, 0.019775390625, 0.0006256103515625, -0.00946044921875, -0.00579833984375, -0.00150299072265625, 0.0072021484375, -0.025146484375, -0.0260009765625, 0.001373291015625, -0.01171875, 0.00144195556640625, -0.000659942626953125, 0.003570556640625, 0.015625, 0.0103759765625, 0.00946044921875, 0.00335693359375, -0.0108642578125, -0.003936767578125, 0.00335693359375, -0.0002899169921875, -0.016845703125, 0.02001953125, -0.0022125244140625, -0.0311279296875, -0.004852294921875, 0.013916015625, 0.007080078125, 0.0027313232421875, 0.00189971923828125, -0.006134033203125, -0.000804901123046875, -0.00634765625, 0.0087890625, -0.00335693359375, 0.01409912109375, -0.01129150390625, 0.0145263671875, -0.00390625, 0.01031494140625, 0.00677490234375, -0.01092529296875, 0.003570556640625, 0.002288818359375, -0.0019989013671875, 0.004852294921875, -0.007049560546875, 0.00555419921875, -0.00665283203125, -0.0147705078125, 0.0118408203125, -0.022705078125, -0.002044677734375, -0.00811767578125, 0.01416015625, 0.0118408203125, 0.00213623046875, 0.01080322265625, 0.00341796875, 0.000560760498046875, 0.0020599365234375, 0.01116943359375, -0.0184326171875, -0.002838134765625, 0.0118408203125, 0.0133056640625, 0.0277099609375, 0.01226806640625, 0.00384521484375, -0.0172119140625, 0.00665283203125, 0.0235595703125, 0.0079345703125, -0.00128173828125, 0.00860595703125, 0.018798828125, -0.002899169921875, -0.0125732421875, -0.022216796875, 0.015869140625, 0.00872802734375, -0.005096435546875, -0.01171875, -0.006103515625, 0.00179290771484375, 0.0019989013671875, 0.0003261566162109375, 0.010986328125, 0.00083160400390625, -0.0133056640625, 0.005889892578125, -0.000774383544921875, 0.0145263671875, 0.00396728515625, 0.00830078125, -0.017578125, 0.01434326171875, 0.0189208984375, -0.003753662109375, 0.01171875, -0.01226806640625, -0.00750732421875, 0.0234375, -0.00787353515625, 0.0113525390625, 0.016845703125, 0.0264892578125, -0.007080078125, 0.002044677734375, 0.0021820068359375, -0.00128936767578125, 0.0115966796875, -0.0098876953125, -0.01043701171875, 0.0152587890625, -0.01153564453125, 0.006500244140625, 0.011962890625, 0.004791259765625, -0.01416015625, -0.0125732421875, -0.00946044921875, -0.0177001953125, -0.0260009765625, 0.01239013671875, -0.03564453125, 0.0159912109375, 0.02197265625, 0.0198974609375, -0.0098876953125, 0.019775390625, 0.00958251953125, 0.005706787109375, 0.019775390625, -0.006622314453125, -0.0093994140625, 0.0003223419189453125, 0.002777099609375, 0.01416015625, 0.0020751953125, 0.00341796875, 0.004150390625, 0.054931640625, 0.002349853515625, 0.0069580078125, 0.0062255859375, 0.0045166015625, -0.00118255615234375, 0.0126953125, -0.0206298828125, 0.01214599609375, -0.01226806640625, -0.0206298828125, -0.004425048828125, -0.00970458984375, -0.0247802734375, -0.0093994140625, -0.0203857421875, 0.0400390625, 0.0157470703125, -0.01214599609375, -0.0023956298828125, -0.0115966796875, -0.01177978515625, 0.004852294921875, -0.000514984130859375, 0.00860595703125, 0.010009765625, -0.003143310546875, -0.01019287109375, 0.012451171875, 0.000644683837890625, -0.004302978515625, -0.01220703125, -0.0113525390625, -0.00179290771484375, 0.00457763671875, 0.00408935546875, -0.00909423828125, -0.016357421875, -0.00567626953125, -0.00872802734375, -0.031982421875, 0.00347900390625, -0.006103515625, 0.012451171875, 0.006011962890625, -0.011962890625, 0.0029449462890625, 0.00750732421875, -0.005584716796875, -0.00537109375, 0.036865234375, -0.00341796875, -8.392333984375e-05, -0.0081787109375, 0.006134033203125, -0.01324462890625, -0.006927490234375, -0.0213623046875, 0.00146484375, 0.01470947265625, -0.00885009765625, -0.0147705078125, -0.0125732421875, 0.005859375, 0.013671875, -0.00390625, -0.002471923828125, -0.0042724609375, -0.007476806640625, 0.0164794921875, -0.0196533203125, 0.00176239013671875, 0.0033111572265625, -0.00762939453125, 0.0004405975341796875, -0.000347137451171875, -0.006622314453125, 0.0032196044921875, 0.01116943359375, -0.0181884765625, 0.01708984375, 0.0167236328125, 0.00909423828125, 0.006500244140625, -0.0147705078125, 0.0242919921875, 0.002044677734375, -0.01214599609375, -0.00860595703125, -0.0035247802734375, -0.0172119140625, 0.00811767578125, -0.00579833984375, 0.0098876953125, 0.01611328125, 0.0179443359375, -0.0308837890625, -0.01397705078125, -0.00139617919921875, -0.01556396484375, 0.006011962890625, -0.0128173828125, 0.006103515625, 0.0091552734375, -0.00124359130859375, -0.0111083984375, 0.0016326904296875, -0.01385498046875, -0.01129150390625, -0.003936767578125, -0.0021820068359375, 0.0084228515625, -0.0174560546875, -0.003814697265625, 0.02392578125, -0.01055908203125, -0.010009765625, 0.0067138671875, 0.0228271484375, -0.002349853515625, -0.02001953125, 0.021484375, 0.006927490234375, 0.00109100341796875, 0.002777099609375, 0.0091552734375, 0.000713348388671875, 0.00189971923828125, 0.01129150390625, 0.00982666015625, 0.01904296875, -0.0106201171875, 0.00457763671875, -0.0022430419921875, 0.01171875, -0.0059814453125, 0.0023651123046875, 0.003997802734375, 0.006011962890625, -0.016845703125, 0.0034942626953125, -0.017578125, 0.007415771484375, -0.00182342529296875, -0.01043701171875, 0.03173828125, 0.0150146484375, 0.00885009765625, -0.01220703125, -0.03271484375, -0.01458740234375, 0.005035400390625, -0.007293701171875, -0.00439453125, -0.01153564453125, -0.007720947265625, -0.002471923828125, -0.01220703125, 0.00116729736328125, -0.0079345703125, 0.0186767578125, 0.00799560546875, 0.0172119140625, 0.021728515625, -0.007080078125, 0.00885009765625, -0.01171875, 0.01416015625, 0.01519775390625, 0.001190185546875, -0.0274658203125, 0.01092529296875, 0.009033203125, -0.00921630859375, 0.00628662109375, -0.023193359375, -0.00146484375, -0.0135498046875, 0.0101318359375, 0.016845703125, -0.01708984375, -0.00494384765625, -0.00860595703125, -0.005218505859375, -0.01068115234375, -0.0004730224609375, -0.0203857421875, -0.01708984375, 0.00885009765625, 0.00946044921875, 0.00084686279296875, -0.00081634521484375, -0.005340576171875, -0.0029296875, -0.00023174285888671875, 0.03759765625, -0.007720947265625, 0.016845703125, -0.007781982421875, -0.0113525390625, -0.0087890625, 0.004638671875, 0.00787353515625, -0.006317138671875, 0.0252685546875, 0.01068115234375, 0.017822265625, -0.00885009765625, 0.0245361328125, -0.001708984375, 0.00518798828125, 0.01495361328125, -0.00543212890625, -0.01556396484375, -0.00408935546875, -0.0030975341796875, -0.02392578125, 0.047119140625, -0.00799560546875, 0.0020599365234375, -0.00335693359375, -0.02880859375, 0.01324462890625, -0.00506591796875, -0.0128173828125, 0.004791259765625, -0.003753662109375, 0.02197265625, -0.00799560546875, -0.0035400390625, 0.01116943359375, -0.0081787109375, 0.0208740234375, -0.001190185546875, 0.0194091796875, -0.007354736328125, -0.00164031982421875, 0.003753662109375, 0.006317138671875, -5.435943603515625e-05, 0.00152587890625, -0.0274658203125, 0.01263427734375, 0.03369140625, 0.0113525390625, -0.006622314453125, -0.0169677734375, -0.01043701171875, 0.01416015625, 0.0037078857421875, 0.0040283203125, -0.011962890625, -0.0172119140625, 0.00653076171875, 0.00445556640625, 0.0218505859375, 0.005767822265625, 0.0179443359375, -0.0025482177734375, -0.00093841552734375, 0.015869140625, 0.02001953125, -0.00726318359375, -0.00933837890625, 0.0002956390380859375, 0.0086669921875, 0.01556396484375, 0.0194091796875, 0.033203125, 0.006103515625, 0.000934600830078125, -0.021240234375, -0.020263671875, -0.01470947265625, 0.0072021484375, 0.019287109375, 0.0108642578125, -0.006988525390625, -0.0157470703125, -0.005279541015625, 0.00543212890625, -0.007049560546875, -0.0177001953125, 0.000732421875, 0.01312255859375, 0.000720977783203125, -0.012451171875, 0.0016326904296875, -0.0162353515625, 0.01513671875, -0.0014801025390625, 0.004302978515625, -0.0017852783203125, -0.0113525390625, -0.0185546875, -0.0157470703125, -0.0003604888916015625, 0.004730224609375, -0.002685546875, -0.0142822265625, 0.0050048828125, -0.006317138671875, 0.0021820068359375, 0.010009765625, 0.00390625, -0.013427734375, 0.0150146484375, -0.0186767578125, -0.0159912109375, 0.0016326904296875, -0.0264892578125, -0.0032501220703125, 0.0030364990234375, 0.0015869140625, 0.00074005126953125, 0.003387451171875, 0.0054931640625, -0.015625, -0.0098876953125, -0.01019287109375, 0.0159912109375, 0.04736328125, -0.005889892578125, -0.005706787109375, -6.580352783203125e-05, 0.01214599609375, 0.0157470703125, 0.001922607421875, -0.013916015625, 0.00433349609375, 0.01300048828125, -0.01324462890625, -0.003143310546875, -0.0181884765625, -0.0023193359375, 0.0020751953125, -0.09423828125, 0.015380859375, 0.00927734375, -0.01007080078125, -0.000537872314453125, -0.00066375732421875, -0.0032806396484375, -0.0234375, -0.001556396484375, -0.020263671875, -0.0040283203125, -0.0030517578125, -0.0096435546875, 0.001007080078125, -0.00726318359375, 0.0014190673828125, -0.0115966796875, -0.00750732421875, 0.0174560546875, -0.00726318359375, -0.0029449462890625, -0.0179443359375, -0.007293701171875, -0.0177001953125, 0.00933837890625, -0.0021820068359375, 0.00347900390625, -0.0196533203125, 0.038818359375, -0.01220703125, -0.003204345703125, 0.00408935546875, -0.014404296875, -0.007354736328125, 0.0101318359375, 0.004150390625, -0.006072998046875, -0.00830078125, -0.0037078857421875, 0.0012054443359375, -0.0194091796875, 0.015380859375, -0.09228515625, 0.000705718994140625, 0.01141357421875, 0.0244140625, -0.0162353515625, 0.01055908203125, -0.00016117095947265625, -0.00408935546875, -0.0026092529296875, -0.00823974609375, 0.022705078125, -0.01202392578125, 0.01263427734375, -0.001800537109375, 0.02197265625, -0.01324462890625, 0.0078125, 0.0059814453125, 0.014404296875, 0.007080078125, -0.00144195556640625, 0.0152587890625, 0.003997802734375, -0.004302978515625, 0.022216796875, -0.0108642578125, 0.006134033203125, -0.0260009765625, 0.0025177001953125, -0.019775390625, 0.0014495849609375, 0.02783203125, -0.018310546875, 0.00347900390625, 0.00543212890625, 0.004730224609375, 0.002899169921875, 0.00494384765625, 0.00063323974609375, 0.0028533935546875, 0.018310546875, -0.0078125, -0.00013828277587890625, 0.01055908203125, 0.00640869140625, 0.005126953125, -0.006866455078125, 0.004638671875, -0.01141357421875, -0.0086669921875, 0.00396728515625, -0.0025634765625, 0.012451171875, 0.0274658203125, 0.01116943359375, 0.023681640625, 0.0098876953125, -0.03369140625, -0.01214599609375, 0.01611328125, -0.0003185272216796875, -0.018310546875, 0.023681640625, 0.013671875, 0.006622314453125, -0.01483154296875, -0.00830078125, 0.02783203125, -0.007476806640625, 0.01348876953125, -0.00982666015625, -0.0142822265625, -0.004150390625, 0.014404296875, -0.00836181640625, 0.0029449462890625, 0.025634765625, -0.0037994384765625, -0.01055908203125, -0.0028839111328125, 0.0004405975341796875, 0.005859375, 0.00787353515625, -0.01348876953125, -0.016845703125, -0.00543212890625, -0.001922607421875, 0.001373291015625, -0.00665283203125, -0.008056640625, -0.003570556640625, 0.0191650390625, -0.00018310546875, -0.01544189453125, -0.0001697540283203125, 0.0024261474609375, 0.0234375, 0.007293701171875, 0.001251220703125, 0.00933837890625, -0.010009765625, -0.016357421875, -0.008544921875, 0.007598876953125, -0.00860595703125, -0.00872802734375, 0.01116943359375, -0.016845703125, 0.013427734375, 0.00836181640625, 0.003936767578125, -0.0181884765625, 0.00750732421875, 0.0244140625, 0.01239013671875, -0.000759124755859375, 0.0166015625, 8.487701416015625e-05, -0.00186920166015625, 0.0111083984375, -0.019775390625, 0.0034332275390625, -0.0027313232421875, 0.0213623046875, -0.0177001953125, -0.0208740234375, -0.0242919921875, 0.0019989013671875, -0.00897216796875, -0.0076904296875, -0.0030059814453125, 0.000720977783203125, 0.0166015625, 0.0128173828125, 0.000579833984375, -0.0023956298828125, 0.00885009765625, -0.00640869140625, -0.0045166015625, 0.00579833984375, -0.00750732421875, -0.002105712890625, -0.0262451171875, -0.000415802001953125, -0.01263427734375, -0.00579833984375, -0.0244140625, 0.00714111328125, 0.00787353515625, -0.00909423828125, 0.01513671875, -0.01129150390625, 0.0021209716796875, 0.00726318359375, 0.0019989013671875, -0.0281982421875, 0.007354736328125, 0.000213623046875, 0.0240478515625, -0.0130615234375, 0.00341796875, -0.013427734375, 0.00579833984375, 0.01434326171875, -0.00640869140625, 0.00982666015625, -0.00152587890625, -0.0164794921875, -0.0159912109375, 0.01116943359375, 0.003997802734375, -0.0040283203125, 0.001251220703125, -0.021728515625, 0.0030517578125, 0.00506591796875, 0.0086669921875, -0.0081787109375, -0.010986328125, 0.0126953125, -0.07470703125, -0.00144195556640625, -0.006134033203125, -0.001678466796875, 0.00726318359375, -0.01904296875, 0.0185546875, -0.0096435546875, 0.0244140625, 0.00390625, 0.00787353515625, -0.0234375, -0.0194091796875, -0.0020294189453125, -0.00640869140625, 0.0228271484375, -0.00121307373046875, -0.005889892578125, -0.00970458984375, 0.0235595703125, 0.010009765625, -0.002716064453125, 0.00714111328125, 0.004638671875, 0.0126953125, -0.01470947265625, -0.004638671875, 0.0013885498046875, 0.0111083984375, 0.0390625, 0.00958251953125, -0.000308990478515625, -0.01556396484375, -0.00118255615234375, 0.00958251953125, -0.0087890625, 0.00543212890625, 0.007781982421875, 0.03759765625, 0.00189208984375, -0.02001953125, 0.00927734375, -0.000896453857421875, 0.000553131103515625, -0.022216796875, -0.022705078125, 0.00848388671875, 0.0084228515625, 0.00335693359375, 0.0111083984375, 0.0115966796875, 0.00189208984375, 0.01458740234375, 0.0107421875, -0.0162353515625, -0.00445556640625, 0.000629425048828125, -0.03125, -0.01409912109375, -0.00543212890625, -0.0033111572265625, -0.005340576171875, 0.006988525390625, -0.00079345703125, -0.008544921875, -0.0159912109375, 0.0159912109375, -0.0211181640625, -0.035400390625, 0.01007080078125, -0.004180908203125, 0.00640869140625, -0.0390625, 0.0032196044921875, 0.0133056640625, -0.0091552734375, -0.00872802734375, -0.01611328125, 0.00726318359375, 0.0038909912109375, 0.0020904541015625, -0.0269775390625, -0.003173828125, 0.014404296875, 0.01312255859375, 0.008544921875, -0.0011444091796875, 0.02734375, 0.016357421875, -0.0004425048828125, -0.0023193359375, -0.003204345703125, 0.01287841796875, -0.006439208984375, -0.01495361328125, 0.000392913818359375, 0.00677490234375, 0.014404296875, -0.007720947265625, -0.005462646484375, -0.01287841796875, -0.0013275146484375, 0.00665283203125, -0.0115966796875, 0.02099609375, 0.0203857421875, -0.00738525390625, -0.026611328125, 0.009521484375, 0.0166015625, -0.0133056640625, -0.0145263671875, 0.004486083984375, -0.002410888671875, 0.01220703125, 0.00506591796875, -0.01470947265625, 0.0264892578125, 0.006439208984375, -0.01055908203125, -0.010009765625, -0.0025177001953125, -0.004425048828125, 0.01239013671875, 0.0078125, -0.00885009765625, -0.006103515625, 0.0166015625, -0.003997802734375, -0.0091552734375, -0.01806640625, -0.0257568359375, 0.0162353515625, -0.0115966796875, 0.0038604736328125, 0.009033203125, -0.01080322265625, 0.019775390625, 0.00099945068359375, 0.01177978515625, 0.0184326171875, 0.02880859375, -0.00921630859375, -0.005218505859375, 0.00506591796875, 0.0033721923828125, 0.00958251953125, 0.0125732421875, -0.01556396484375, -0.010009765625, -0.0206298828125, 0.0087890625, 0.005859375, 0.005401611328125, -0.01007080078125, 0.004486083984375, -0.005279541015625, -0.01043701171875, -0.010986328125, 0.006072998046875, -0.038818359375, -0.0030975341796875, 0.0036468505859375, 0.00396728515625, -0.00836181640625, -0.0025787353515625, 0.002685546875, 0.025390625, -0.00970458984375, 0.021240234375, 0.0203857421875, 0.01434326171875, -0.0017852783203125, 0.015625, -0.0014801025390625, -0.005645751953125, 0.00909423828125, 0.00860595703125, 0.0005645751953125, -0.002197265625, 0.0108642578125, -0.0059814453125, -0.01806640625, 0.00139617919921875, -0.006500244140625, -0.00099945068359375, 0.0162353515625, -0.006011962890625, -0.00927734375, -0.007171630859375, -0.01226806640625, 0.0003814697265625, -0.031982421875, -0.0072021484375, -0.0091552734375, 0.002960205078125, -0.01226806640625, -0.01434326171875, -0.00176239013671875, -0.0128173828125, 0.1025390625, 0.00164031982421875, 0.005157470703125, -0.00152587890625, 0.01434326171875, -0.003814697265625, -0.0067138671875, 0.0087890625, -0.006561279296875, -0.001068115234375, 0.008056640625, -0.0218505859375, -0.00311279296875, 0.00677490234375, -0.00750732421875, 0.009033203125, 0.00921630859375, -0.007049560546875, -0.01141357421875, -0.002349853515625, 0.00677490234375, -0.005859375, 0.0107421875, 0.00714111328125, -0.0167236328125, -0.00860595703125, -0.01068115234375, 0.003936767578125, -0.01239013671875, 0.00885009765625, -0.0091552734375, 0.01068115234375, 0.0034332275390625, 0.0228271484375, 0.01287841796875, -0.0247802734375, -0.007354736328125, -0.01708984375, -0.01007080078125, -0.0035858154296875, -0.0024566650390625, 0.021484375, 0.0194091796875, -0.007781982421875, -0.006103515625, 0.00092315673828125, -0.005584716796875, 0.01434326171875, 0.0103759765625, 0.0087890625, 0.00640869140625, 0.0019683837890625, 0.00921630859375, -0.0130615234375, -0.0012359619140625, -0.0042724609375, 0.002838134765625, -0.0032196044921875, -0.00142669677734375, 0.0205078125, -0.013427734375, 0.0299072265625, -0.00299072265625, 0.01287841796875, 0.0004100799560546875, 0.0225830078125, -0.01611328125, 0.004425048828125, 0.00079345703125, 0.00787353515625, -0.0072021484375, 0.002777099609375, -3.7670135498046875e-05, 0.0007476806640625, 0.004302978515625, -0.0107421875, -0.00193023681640625, 0.0091552734375, -0.005767822265625, 0.0201416015625, -0.01483154296875, -0.00176239013671875, -0.0030670166015625, -0.00714111328125, -0.005706787109375, -0.01397705078125, 0.0069580078125, -0.01226806640625, -0.008056640625, -0.005218505859375, -0.01263427734375, -0.002716064453125, 0.01116943359375, 0.023681640625, 0.016357421875, 0.0150146484375, -0.0024261474609375, 0.01708984375, -0.0177001953125, -0.01214599609375, 0.005401611328125, -0.0184326171875, -0.0019683837890625, 0.000751495361328125, 0.01226806640625, 0.021484375, -0.01483154296875, -0.0196533203125, -0.0018157958984375, 0.01312255859375, -0.00714111328125, -0.031982421875, -0.01434326171875, -0.006439208984375, 0.00506591796875, -0.0022125244140625, 0.01397705078125, 0.0028228759765625, -0.00136566162109375, -0.0062255859375, 0.0107421875, 0.08642578125, -0.0068359375, -0.003570556640625, -0.00787353515625, -0.00058746337890625, -0.01312255859375, 0.0260009765625, 0.01806640625, 0.0159912109375, -0.01458740234375, 0.0034332275390625, -0.0034942626953125, 0.0091552734375, -0.022705078125, -0.0032501220703125, -0.0045166015625, -0.0150146484375, -0.007568359375, -0.00131988525390625, 0.029052734375, 7.343292236328125e-05, 0.00653076171875, 0.0038909912109375, 0.00469970703125, -0.01031494140625, -0.00787353515625, -0.007080078125, 0.00885009765625, 0.0223388671875, 0.0145263671875, -0.05126953125, 0.00592041015625, 0.00018787384033203125, -0.00482177734375, -0.02099609375, 0.0157470703125, -0.0027923583984375, -0.01385498046875, -0.01171875, 0.006439208984375, -0.001129150390625, -0.01043701171875, 0.0189208984375, 0.0211181640625, 0.0037841796875, -0.001251220703125, 0.000301361083984375, -0.01043701171875, -0.00848388671875, 0.0008392333984375, -0.01324462890625, 0.0218505859375, -0.00579833984375, 0.005767822265625, -0.006927490234375, -0.013916015625, -0.01348876953125, 0.00189971923828125, 0.057373046875, -0.033203125, -0.01324462890625, 0.00762939453125, -0.00921630859375, 0.004486083984375, 0.00750732421875, 0.00115203857421875, -0.01556396484375, 0.0067138671875, 0.01495361328125, 0.00579833984375, 0.0087890625, 0.005889892578125, 0.01116943359375, 0.00469970703125, 0.0162353515625, 0.004638671875, 0.01409912109375, -0.00177001953125, -0.01220703125, -0.00640869140625, -5.6743621826171875e-05, -0.02490234375, 0.0023956298828125, -0.005218505859375, 0.00830078125, 0.00970458984375, -0.005157470703125, 0.01416015625, 0.00860595703125, -0.00494384765625, -0.010009765625, 0.016845703125, 0.0098876953125, 0.013916015625, 0.01483154296875, -0.00860595703125, -0.0234375, 0.0093994140625, 0.009521484375, -0.006500244140625, 0.00762939453125, -0.0208740234375, 0.00909423828125, -0.0026702880859375, -0.004058837890625, -0.0157470703125, 0.0172119140625, -0.0211181640625, 0.01171875, -0.000514984130859375, -0.002777099609375, -0.029052734375, 0.02001953125, -0.00653076171875, -0.0068359375, -0.0166015625, -0.0013885498046875, 0.000614166259765625, 0.01287841796875, 0.01556396484375, 0.0179443359375, 0.00592041015625, -0.011962890625, -0.0032501220703125, -0.0147705078125, 0.013427734375, 0.01324462890625, 0.010498046875, 0.0185546875, 0.0023193359375, -0.00482177734375, 0.00579833984375, 0.0, -0.0245361328125, -0.0004749298095703125, 0.0078125, -0.0003261566162109375, 0.015380859375, -0.005859375, 0.011962890625, 0.01458740234375, 0.01025390625, -0.0172119140625, 0.004425048828125, -0.019775390625, 0.00946044921875, 0.00109100341796875, -0.01214599609375, -0.010009765625, 0.00860595703125, -0.0091552734375, -0.00095367431640625, 0.00433349609375, 0.00738525390625, -0.00762939453125, 0.0069580078125, -0.0034942626953125, -0.002899169921875, -0.0087890625, -0.0311279296875, 0.00012493133544921875, -0.000621795654296875, -0.00665283203125, 0.0191650390625, -0.005859375, -0.018310546875, 0.01153564453125, -0.003173828125, 0.001983642578125, -0.006744384765625, 0.006439208984375, -0.005645751953125, 0.007415771484375, 0.01544189453125, 0.013671875, 0.0054931640625, -0.0291748046875, 0.004241943359375, -0.01226806640625, 0.0067138671875, -0.022705078125, 0.00921630859375, -0.0196533203125, 0.01153564453125, -0.016357421875, 0.0037384033203125, -0.016357421875, 0.013671875, 0.03076171875, -0.0125732421875, -0.012451171875, -0.00384521484375, -0.0206298828125, -0.003387451171875, -0.016357421875, -0.0157470703125, -0.0047607421875, -0.0019989013671875, 0.01007080078125, -0.01324462890625, 0.012451171875, 0.0157470703125, 0.00677490234375, 0.01312255859375, 0.011962890625, -0.0034942626953125, -0.00482177734375, 0.01007080078125, 0.016845703125, -0.01611328125, -0.028564453125, 0.0009002685546875, 0.01031494140625, 0.035400390625, 0.0322265625, -0.003997802734375, 0.00141143798828125, 0.0081787109375, -0.003387451171875, -0.012451171875, 0.021484375, -0.013916015625, 0.01470947265625, 0.01263427734375, -0.00872802734375, 0.037353515625, 0.00185394287109375, 0.00927734375, -0.01348876953125, 0.0089111328125, -0.01153564453125, -0.0252685546875, -0.005706787109375, 0.006439208984375, -0.01177978515625, 0.00970458984375, -0.02685546875, -0.0096435546875, 0.0024261474609375, 0.11279296875, -0.00836181640625, -0.020263671875, -0.00970458984375, 0.006195068359375, 0.01348876953125, 0.01385498046875, -0.0005950927734375, -0.0162353515625, -0.0208740234375, -0.0103759765625, -0.0003032684326171875, -0.00885009765625, 0.021484375, -0.013427734375, 0.007171630859375, 0.0016326904296875, -0.0169677734375, 0.00494384765625, 0.002716064453125, -0.00109100341796875, 0.006103515625, 0.005706787109375, -0.015625, 0.026611328125, 0.004638671875, -0.0234375, -0.0145263671875, 0.01544189453125, -0.043701171875, 0.018310546875, 0.022705078125, 0.0147705078125, 0.01300048828125, -0.0076904296875, -0.004302978515625, 0.018310546875, 0.006011962890625, 0.00445556640625, 0.00347900390625, 0.01312255859375, -0.0142822265625, -0.00098419189453125, 0.0027923583984375, 0.0081787109375, 0.013916015625, 6.437301635742188e-05, -0.0172119140625, 0.0145263671875, 0.009033203125, 0.0025634765625, -0.00099945068359375, 0.0211181640625, -0.0152587890625, -0.001251220703125, 0.01483154296875, -0.0172119140625, 0.00160980224609375, 0.0257568359375, -0.0101318359375, 0.00041961669921875, -0.002349853515625, 0.00090789794921875, -0.01007080078125, 0.00171661376953125, -0.0145263671875, -0.01611328125, 0.001739501953125, -0.007293701171875, -0.023681640625, 0.003631591796875, 0.03271484375, -0.01397705078125, 0.00860595703125, 0.0128173828125, 0.010009765625, -0.0400390625, 0.021484375, -0.01263427734375, 0.01611328125, 0.00823974609375, -0.0030059814453125, 0.00982666015625, -0.00030517578125, 0.0128173828125, -0.035400390625, -0.0230712890625, -0.00726318359375, -0.0068359375, -0.002777099609375, -0.011962890625, 0.01202392578125, -0.00439453125, -0.00173187255859375, 0.0128173828125, -0.00885009765625, -0.00799560546875, -0.0177001953125, -0.0016021728515625, -0.005889892578125, 0.00341796875, 0.00811767578125, 0.02001953125, 0.0020904541015625, 0.011962890625, 0.0004138946533203125, -0.001953125, 0.00738525390625, -0.00341796875, 0.015380859375, -0.0032196044921875, 0.000843048095703125, 0.006927490234375, -0.0230712890625, -0.02001953125, -0.005126953125, -0.01287841796875, 0.019775390625, 0.00194549560546875, -0.0159912109375, 0.0159912109375, -0.0030975341796875, -0.023193359375, -0.00860595703125, -0.0079345703125, -0.01904296875, -0.01373291015625, -0.0247802734375, -0.00238037109375, -0.01226806640625, -0.0001697540283203125, -0.008056640625, 0.0004825592041015625, -0.0247802734375, -0.01385498046875, -0.01513671875, -0.010009765625, -0.0001316070556640625, -0.011962890625, 0.01287841796875, 0.004058837890625, 0.0223388671875, 0.0108642578125, -0.01324462890625, -0.007781982421875, 0.005401611328125, -0.00176239013671875, -0.00099945068359375, 0.00726318359375, 0.003570556640625, 0.006744384765625, -0.0023956298828125, 0.009521484375, -0.01470947265625, -0.0177001953125, 0.025634765625, -0.00018978118896484375, -0.013427734375, -0.018310546875, 0.016845703125, 0.006317138671875, -0.00347900390625, 0.019287109375, 0.02392578125, -0.0018463134765625, -0.0069580078125, 0.02001953125, 0.00823974609375, 0.01458740234375, 0.007781982421875, -0.010009765625, -0.0113525390625, -0.00885009765625, -0.010498046875, -0.025390625, 0.00970458984375, 0.005462646484375, 0.000858306884765625, -0.005035400390625, -0.0040283203125, 0.015869140625, 0.0194091796875, 0.0050048828125, 0.01055908203125, 0.00787353515625, 0.013671875, 0.0194091796875, 0.01239013671875, -0.001220703125, 0.03857421875, -0.019287109375, 0.007171630859375, -0.0035400390625, 0.00139617919921875, -0.017578125, -0.007171630859375, -0.01416015625, 0.0225830078125, 0.000545501708984375, -0.000209808349609375, 0.0142822265625, 0.005584716796875, 0.0196533203125, -0.01226806640625, -0.0283203125, 0.0277099609375, 0.0034332275390625, -0.00823974609375, -0.00012159347534179688, -0.010009765625, -0.0294189453125, 0.021484375, -0.031982421875, 0.08935546875, -0.003814697265625, 0.00335693359375, 0.017333984375, 0.005767822265625, 0.0194091796875, 0.007293701171875, 0.0108642578125, -0.016357421875, -0.008056640625, -0.0169677734375, -0.023193359375, -0.01202392578125, 0.0234375, 0.007171630859375, -0.00174713134765625, -0.0101318359375, -0.0025787353515625, 0.01409912109375, -0.0012664794921875, 0.0142822265625, 0.00921630859375, 0.005584716796875, -0.013916015625, -0.0072021484375, 0.0098876953125, 0.0150146484375, 0.00933837890625, -0.0004100799560546875, -0.0038909912109375, -0.00445556640625, 0.00079345703125, -0.0028533935546875, 0.01312255859375, 0.018798828125, -0.006866455078125, 0.00250244140625, 0.005706787109375, 0.006195068359375, 0.0115966796875, -0.027099609375, -0.000911712646484375, 0.006927490234375, -0.004852294921875, -0.0166015625, -0.01153564453125, 0.01312255859375, 0.00750732421875, -0.01300048828125, 0.0050048828125, -0.00994873046875, -0.00250244140625, -0.0091552734375, -0.015869140625, 0.0004558563232421875, 0.0023651123046875, -0.01177978515625, -0.01300048828125, -0.004119873046875, 5.602836608886719e-05, 0.0001068115234375, 0.025634765625, -0.002960205078125, 0.01385498046875, 0.00677490234375, 0.007080078125, -0.00274658203125, 0.0162353515625, 0.0294189453125, 0.014404296875, 0.0322265625, -0.006011962890625, -0.0035858154296875, 0.0093994140625, 0.01129150390625, 0.008056640625, -0.026611328125, 0.006500244140625, -0.01708984375, 0.0030364990234375, -0.022705078125, 0.0034332275390625, 0.009521484375, -0.0189208984375, -0.00104522705078125, 0.01177978515625, 0.0029296875, -0.0089111328125, -0.003204345703125, -0.00799560546875, 0.0030059814453125, 0.00885009765625, 0.023681640625, -0.00714111328125, 0.031982421875, 0.046142578125, 0.02001953125, -0.020751953125, 0.0118408203125, 0.00506591796875, 0.0247802734375, -0.008544921875, 0.0037841796875, 0.0177001953125, 0.0030517578125, 0.0024566650390625, 0.022216796875, 0.0024566650390625, 0.0166015625, -0.0286865234375, 0.019775390625, 0.0167236328125, 0.02197265625, 0.000820159912109375, 0.01263427734375, 0.0240478515625, 0.01043701171875, -0.0019073486328125, 0.005584716796875, 0.01483154296875, -0.0174560546875, -0.0108642578125, -0.00946044921875, -0.00494384765625, 0.0177001953125, -0.0093994140625, -0.00836181640625, 0.0189208984375, -0.0111083984375, -0.01348876953125, 0.00634765625, -0.01220703125, 0.007781982421875, -0.02392578125, -0.01312255859375, 0.0172119140625, 0.0098876953125, 0.0281982421875, 0.0126953125, 0.001953125, -0.01708984375, 0.0021820068359375, -0.02685546875, -0.00677490234375, 0.01055908203125, 0.099609375, 0.0152587890625, -0.0081787109375, 0.0125732421875, -0.0247802734375, 0.00457763671875, -0.00970458984375, 0.006988525390625, -0.01287841796875, -0.0010223388671875, -0.0179443359375, 0.0037841796875, -0.004364013671875, -0.01495361328125, -0.0194091796875, 0.00189971923828125, -0.00341796875, 0.00107574462890625, -0.001678466796875, -0.005157470703125, -0.00494384765625, 0.0084228515625, 0.01348876953125, 0.0211181640625, 0.008056640625, 0.004364013671875, 0.028564453125, 0.01495361328125, 0.0150146484375, -0.00183868408203125, 0.00970458984375, 0.00762939453125, -0.006439208984375, -0.005584716796875, 0.007720947265625, 0.000415802001953125, -0.00762939453125, -0.0208740234375, 0.01385498046875, 0.005462646484375, 0.019775390625, 0.0164794921875, -0.02783203125, 0.012451171875, 0.01287841796875, 0.016357421875, 0.0098876953125, -0.016845703125, 0.009033203125, 0.0108642578125, -0.00787353515625, -0.000804901123046875, -0.0152587890625, -0.013916015625, 0.005035400390625, -0.01263427734375, -0.0159912109375, 0.006103515625, -0.0035858154296875, -0.007293701171875, -0.00787353515625, -0.00628662109375, -0.018310546875, 0.00958251953125, 0.01483154296875, -0.0037841796875, 0.0029449462890625, -0.0218505859375, -0.003692626953125, 0.0208740234375, 0.00421142578125, -0.0191650390625, 0.0069580078125, -0.0126953125, 0.0281982421875, -0.000804901123046875, 0.00457763671875, 0.0059814453125, -0.0194091796875, 0.00445556640625, -0.0103759765625, 0.005889892578125, -0.01141357421875, 0.018798828125, -0.006988525390625, 0.0177001953125, 0.0157470703125, 0.003753662109375, 0.0111083984375, 0.0022735595703125, -0.01409912109375, -0.01116943359375, 0.0091552734375, 0.00799560546875, -0.0091552734375, 0.002044677734375, 0.00872802734375, -0.00653076171875, 0.00144195556640625, 0.00848388671875, 0.005889892578125, -0.006744384765625, -0.000766754150390625, -0.007415771484375, 0.0024261474609375, -0.021728515625, -0.00165557861328125, -0.020263671875, -0.004302978515625, -0.001708984375, -0.006317138671875, 0.025634765625, -0.0185546875, 0.0037078857421875, -0.00457763671875, -0.00555419921875, -0.0135498046875, -0.003631591796875, 0.00110626220703125, -0.01348876953125, 0.002655029296875, 0.01031494140625, -0.003936767578125, 0.0576171875, -0.0015869140625, -0.019775390625, 0.022705078125, -0.001953125, -0.000263214111328125, -0.0252685546875, 0.010009765625, -0.00970458984375, 0.009521484375, -0.004241943359375, -0.00494384765625, -0.0213623046875, 0.005767822265625, -0.021240234375, 0.02783203125, 0.00640869140625, 0.004364013671875, -0.00469970703125, 0.016845703125, -0.027099609375, 0.0024261474609375, 0.010009765625, 0.0142822265625, -0.0181884765625, 0.005767822265625, 0.01092529296875, 0.00060272216796875, 0.00714111328125, -0.004913330078125, 0.023193359375, 0.04248046875, 0.010009765625, 0.0068359375, -0.00543212890625, -0.0029449462890625, -0.0361328125, -0.0108642578125, -0.0016937255859375, -0.0020904541015625, 0.003570556640625, -0.0091552734375, -0.014404296875, 0.0390625, -0.01171875, -0.012451171875, 0.00897216796875, -0.01055908203125, -0.0185546875, -0.01171875, -0.0050048828125, -0.0157470703125, 0.025390625, 0.004058837890625, -0.058349609375, 0.01239013671875, -0.00408935546875, -0.0078125, -0.0152587890625, -0.0126953125, -0.01129150390625, -0.0115966796875, -0.00299072265625, -0.0213623046875, -0.00090789794921875, -0.023681640625, -0.004730224609375, -0.00543212890625, -0.00885009765625, -0.0279541015625, 0.035888671875, -0.0133056640625, -0.025390625, 0.01080322265625, 0.0185546875, 0.006195068359375, 0.0004863739013671875, -0.009033203125, -0.00811767578125, 0.00872802734375, 0.01129150390625, -0.006195068359375, 0.0001850128173828125, -0.021728515625, 0.0028533935546875, 0.00225830078125, 0.026611328125, 0.00011205673217773438, -0.00970458984375, 0.0113525390625, 0.00823974609375, -0.012451171875, -0.012451171875, -0.007720947265625, -0.018310546875, 0.0019073486328125, -0.026123046875, 0.00946044921875, 0.0179443359375, 0.00054931640625, 0.00041961669921875, -0.0185546875, 0.0174560546875, 0.005767822265625, 0.0126953125, -0.011962890625, 0.08154296875, -0.005218505859375, 0.01458740234375, 0.01177978515625, -0.0093994140625, -0.027099609375, 0.01397705078125, -0.01373291015625, 0.0115966796875, -0.0003833770751953125, 0.006744384765625, -0.018310546875, -7.43865966796875e-05, 0.00860595703125, -0.00787353515625, 0.0135498046875, 0.023193359375, -0.0026092529296875, 0.005645751953125, -0.0142822265625, -0.0130615234375, 0.01611328125, -0.000789642333984375, -0.00537109375, 0.0086669921875, -0.0174560546875, 0.01153564453125, 0.01019287109375, -0.020263671875, 0.005401611328125, -0.00933837890625, 0.006988525390625, -0.00421142578125, 0.001556396484375, 0.0107421875, -0.0019073486328125, 0.000934600830078125, 0.00958251953125, -0.0311279296875, -0.142578125, -0.000614166259765625, -0.016357421875, -0.005340576171875, -0.0089111328125, -0.006927490234375, -0.000362396240234375, 0.00116729736328125, -0.016845703125, -0.0302734375, 0.00909423828125, 0.00142669677734375, 0.00131988525390625, 0.0260009765625, 0.03466796875, -0.0274658203125, -0.005035400390625, 0.00130462646484375, -0.0059814453125, 0.01043701171875, -0.0135498046875, -0.01348876953125, -0.00121307373046875, 0.003326416015625, -0.006134033203125, 0.000606536865234375, 0.00152587890625, -0.003997802734375, 0.000789642333984375, -0.031982421875, -0.0014495849609375, 0.0223388671875, 0.005401611328125, -0.031982421875, -0.035888671875, -0.0281982421875, 0.00506591796875, -0.03125, -0.01129150390625, 0.0003814697265625, -0.013427734375, -0.0003662109375, -0.0037841796875, -0.01300048828125, 0.0264892578125, 0.019775390625, -0.027099609375, 0.00396728515625, -0.01214599609375, -0.01495361328125, 0.004486083984375, -0.00579833984375, -0.00787353515625, -0.0006866455078125, -0.00933837890625, -0.01312255859375, 0.0111083984375, -0.00677490234375, 0.0201416015625, 0.0302734375, -0.00506591796875, 0.01385498046875, 0.00958251953125, 0.0032501220703125, 0.00147247314453125, -0.007354736328125, -0.01544189453125, 0.010009765625, -0.0133056640625, -0.00677490234375, 0.00360107421875, -0.002777099609375, -0.02001953125, 0.00811767578125, -0.0159912109375, 0.010498046875, 0.00274658203125, -0.005157470703125, -0.014404296875, -0.0087890625, 0.0240478515625, -0.003814697265625, -0.029052734375, 0.0228271484375, -0.00848388671875, -0.00885009765625, 0.018310546875, 0.0179443359375, 0.0014801025390625, -0.0157470703125, -0.001739501953125, 0.01080322265625, 0.00823974609375, 0.05908203125, -0.01416015625, -0.006195068359375, 0.01116943359375, 0.001129150390625, -0.0079345703125, 0.01287841796875, 0.01806640625, 0.00244140625, 0.007049560546875, -0.0107421875, -0.00872802734375, -0.0157470703125, 0.01153564453125, 0.0101318359375, -0.016357421875, 0.0024261474609375, -0.00921630859375, 0.00787353515625, -0.09228515625, 0.00811767578125, 0.01385498046875, 0.016357421875, -0.000255584716796875, 0.0208740234375, 0.0172119140625, -0.0201416015625, 0.0052490234375, -0.08349609375, -0.0142822265625, 0.00872802734375, 0.004486083984375, 0.0166015625, 0.0050048828125, 0.0191650390625, -0.01214599609375, 0.00860595703125, 0.00634765625, -0.0225830078125, 0.01153564453125, 0.00150299072265625, -0.00970458984375, 0.010498046875, -0.004852294921875, -0.019775390625, -0.018310546875, -0.0111083984375, 0.003692626953125, 0.01116943359375, 0.0118408203125, -0.00799560546875, 0.000225067138671875, 0.01019287109375, 0.0244140625, 0.021484375, 0.01495361328125, 0.00185394287109375, -0.01708984375, 0.0028839111328125, 0.0191650390625, 0.019775390625, -0.0015869140625, 0.0015869140625, -0.007476806640625, 0.004150390625, -0.0115966796875, 0.005157470703125, 0.0013427734375, -0.00555419921875, -0.00543212890625, 0.0125732421875, -0.018310546875, -0.00830078125, 0.007720947265625, -0.00787353515625, 0.00408935546875, 0.01287841796875, -0.01129150390625, 0.005889892578125, 0.0107421875, -0.01397705078125, -0.019775390625, -0.0037994384765625, 0.0118408203125, 0.004547119140625, -0.0108642578125, -0.035400390625, -0.0147705078125, 0.0206298828125, 0.00250244140625, -0.018310546875, -0.005462646484375, 0.00592041015625, 0.01324462890625, 0.0025787353515625, -0.00341796875, 0.025634765625, 0.0166015625, -0.0115966796875, 0.013916015625, -0.0172119140625, 0.021728515625, 0.01153564453125, 0.0191650390625, 0.023681640625, 0.0022430419921875, -0.0005645751953125, -0.0125732421875, -0.01153564453125, 0.01220703125, 0.00982666015625, 0.0013885498046875, -0.00347900390625, 0.0108642578125, 0.0296630859375, 0.011962890625, -0.019775390625, -0.002105712890625, 0.01324462890625, 0.0194091796875, -0.0033721923828125, -0.01513671875, -0.037109375, -0.0016937255859375, 0.00176239013671875, 0.00125885009765625, 0.019775390625, -0.00872802734375, -0.0091552734375, 0.006744384765625, -0.00396728515625, -0.0115966796875, 0.00494384765625, -7.152557373046875e-05, 0.0002536773681640625, -0.007476806640625, -0.00136566162109375, 0.000392913818359375, 0.0262451171875, -0.0040283203125, 0.0172119140625, -0.00250244140625, -0.0069580078125, 0.000598907470703125, -0.01458740234375, 0.0030059814453125, 0.018798828125, -0.007568359375, 0.006622314453125, 0.0022430419921875, -0.006103515625, -0.00157928466796875, 0.00927734375, 0.01324462890625, -0.004638671875, 0.019775390625, 0.0230712890625, 0.01177978515625, -0.0172119140625, 0.02734375, -0.00830078125, -7.677078247070312e-05, 0.000308990478515625, 0.00811767578125, -0.0004749298095703125, 0.0177001953125, -0.0225830078125, 0.013916015625, -0.005279541015625, 0.00089263916015625, 0.01806640625, 0.0296630859375, 0.0087890625, 0.01153564453125, -0.009521484375, 0.0087890625, -0.004638671875, 0.00151824951171875, -0.0014190673828125, 0.01806640625, 0.0023193359375, -0.0184326171875, 0.0012359619140625, -0.007598876953125, -0.000972747802734375, 0.0242919921875, -0.01043701171875, 0.00970458984375, -0.00084686279296875, -0.01513671875, 0.00677490234375, -0.0164794921875, 0.000514984130859375, -0.0228271484375, -0.0021820068359375, -0.01263427734375, -0.002685546875, -0.000804901123046875, -0.00142669677734375, 0.007720947265625, -0.006195068359375, 0.0311279296875, -0.002899169921875, -0.0186767578125, -0.01385498046875, -0.007781982421875, -0.0206298828125, -0.01055908203125, 0.00176239013671875, -0.017333984375, -0.0035858154296875, 0.00543212890625, -0.002685546875, -0.004302978515625, -0.000713348388671875, 0.0234375, 0.00130462646484375, -0.006866455078125, 0.01153564453125, -0.072265625, -0.00396728515625, -0.010009765625, -0.004425048828125, 0.0045166015625, 0.001953125, -0.01129150390625, -0.012451171875, 0.004302978515625, -0.01007080078125, -0.0162353515625, 0.002349853515625, 0.001556396484375, -0.00445556640625, 0.00408935546875, 0.00189971923828125, 0.00762939453125, 0.01239013671875, -0.1416015625, -0.0091552734375, -0.0059814453125, -0.0108642578125, -0.0033721923828125, -0.013671875, 0.017822265625, 0.035400390625, 0.0189208984375, 0.00665283203125, -0.007720947265625, 0.004180908203125, 0.005218505859375, 0.013427734375, 0.004486083984375, 0.022216796875, -0.0228271484375, 0.00112152099609375, -0.00927734375, -0.01092529296875, -0.002227783203125, -0.015625, -0.01397705078125, 0.01141357421875, 0.007415771484375, -0.002044677734375, -0.003570556640625, -0.0010833740234375, -0.0125732421875, 0.0001621246337890625, 0.005584716796875, 0.00579833984375, 0.0299072265625, -0.01129150390625, 0.01434326171875, -0.01116943359375, 0.010986328125, 0.0211181640625, 0.0164794921875, -0.0142822265625, 0.017333984375, 0.00015735626220703125, -0.001556396484375, -0.0026702880859375, 0.0107421875, 0.0113525390625, -0.0018157958984375, 0.01116943359375, -0.0279541015625, -0.0223388671875, -0.00634765625, -0.003997802734375, -0.0022125244140625, 0.00872802734375, 0.005584716796875, 0.025390625, -0.01239013671875, -0.02197265625, 0.02001953125, 0.00186920166015625, 0.0068359375, 0.00118255615234375, 0.00958251953125, 0.019775390625, 0.0029296875, 0.00860595703125, -0.00055694580078125, 0.00299072265625, 0.015625, -0.00970458984375, -0.016357421875, -0.002716064453125, 0.01409912109375, 0.01220703125, 0.01031494140625, 0.0076904296875, 0.01171875, -0.020751953125, -0.010498046875, 0.01470947265625, -0.004180908203125, -0.00408935546875, 0.00052642822265625, 0.00628662109375, 0.00299072265625, 0.01470947265625, 0.00714111328125, 0.0023345947265625, -0.0150146484375, 0.006561279296875, -0.00946044921875, -0.0084228515625, 0.01544189453125, 0.027099609375, 0.004241943359375, 0.0179443359375, -0.00213623046875, -0.00860595703125, -0.0014801025390625, 0.006744384765625, -0.00848388671875, 0.0012969970703125, 0.0211181640625, -0.0017852783203125, -0.00860595703125, -0.007354736328125, 0.01611328125, -0.0084228515625, -0.020263671875, 0.013671875, 0.01470947265625, 0.016845703125, 0.00665283203125, 0.005584716796875, -0.009033203125, 0.00162506103515625, -0.0125732421875, 0.0277099609375, 0.01177978515625, 0.025634765625, 0.0087890625, 0.01409912109375, 0.0235595703125, -0.002471923828125, 0.00408935546875, 0.013671875, 0.006561279296875, -0.001922607421875, 0.00762939453125, -0.006866455078125, 0.0004138946533203125, 0.00787353515625, 0.016845703125, -0.000560760498046875, 0.025390625, 0.00982666015625, -0.11474609375, 0.00830078125, -0.005706787109375, -0.0225830078125, -0.00238037109375, -0.0185546875, -0.0038909912109375, 0.00885009765625, 0.0126953125, -0.000812530517578125, 0.021484375, 0.013671875, 0.004547119140625, -0.021484375, -0.01153564453125, 0.0157470703125, -0.01226806640625, -0.0021820068359375, -0.00118255615234375, 0.00118255615234375, -0.0081787109375, 0.03662109375, -0.01348876953125, 0.0050048828125, 0.031494140625, 0.00238037109375, 0.00787353515625, -0.0211181640625, 0.00909423828125, -0.0059814453125, 0.001800537109375, 0.0113525390625, -0.0047607421875, 0.000965118408203125, 0.004852294921875, -0.012451171875, -0.01373291015625, -0.0126953125, -0.027099609375, -0.000579833984375, 0.002166748046875, 0.0027008056640625, 0.016357421875, -0.014404296875, -0.016845703125, -0.0020904541015625, 4.041939973831177e-07, 0.0050048828125, -0.002471923828125, -0.025146484375, -0.01300048828125, 0.00078582763671875, 0.00634765625, -0.0218505859375, 0.0091552734375, 0.0341796875, -0.0078125, 6.532669067382812e-05, -0.016357421875, -0.02685546875, 0.013671875, -0.0125732421875, -0.007598876953125, 0.0020751953125, -0.02392578125, -0.0166015625, 0.0302734375, -0.0181884765625, 0.01470947265625, -0.00151824951171875, -0.0118408203125, -0.0162353515625, 0.02001953125, -0.0135498046875, 0.00262451171875, -0.007293701171875, -0.00933837890625, -0.0201416015625, -0.0113525390625, -0.0026702880859375, 0.01171875, -0.00982666015625, -0.00927734375, 2.2172927856445312e-05, 0.0184326171875, -0.009033203125, 0.020751953125, -0.01483154296875, -0.000736236572265625, -0.0107421875, -0.0380859375, -0.00021076202392578125, -0.003173828125, -0.0086669921875, -0.0013580322265625, -0.01416015625, -0.00970458984375, -0.0133056640625, 0.003265380859375, -0.000865936279296875, -0.01287841796875, 0.007476806640625, 0.0019989013671875, 0.006500244140625, -0.006622314453125, 0.019287109375, 0.007568359375, 0.017822265625, -0.005157470703125, 0.013916015625, -0.0260009765625, 0.01409912109375, 0.00121307373046875, -0.01397705078125, -0.0203857421875, -0.0068359375, -0.003173828125, -0.021484375, 0.014404296875, -0.0252685546875, -0.002593994140625, -0.0024261474609375, 0.006103515625, 0.007080078125, -0.001708984375, -0.0042724609375, 0.005462646484375, 0.0283203125, 0.01397705078125, 0.01007080078125, -0.0040283203125, 0.0218505859375, 0.05322265625, 0.010986328125, 0.00347900390625, 0.01220703125, -0.0030059814453125, -0.0026092529296875, -0.0142822265625, -0.0106201171875, 0.00665283203125, 0.006927490234375, 0.01031494140625, 0.01409912109375, 0.00154876708984375, -0.006011962890625, -0.01324462890625, -0.0042724609375, 0.0198974609375, -0.0162353515625, -0.005584716796875, -0.00958251953125, -0.0223388671875, -0.0084228515625, 0.0101318359375, -0.0008697509765625, -0.0096435546875, -0.013427734375, 0.00579833984375, 0.00885009765625, -0.00457763671875, 0.0031585693359375, -0.0069580078125, 0.01385498046875, 0.000820159912109375, -0.002716064453125, 0.006317138671875, -0.0185546875, -0.00750732421875, 0.0118408203125, -0.006744384765625, 0.0196533203125, -0.004669189453125, -0.0076904296875, 0.002960205078125, -0.0150146484375, -0.0169677734375, -0.010009765625, -0.00653076171875, -0.01470947265625, 0.03076171875, -0.00225830078125, -0.0157470703125, 0.030517578125, 0.00026702880859375, 0.00439453125, -0.0054931640625, -0.016357421875, 0.0228271484375, 0.000476837158203125, -0.0059814453125, 0.006439208984375, -0.000926971435546875, 0.038818359375, -0.000926971435546875, 0.01409912109375, -0.003265380859375, 0.032470703125, 0.00555419921875, 0.0191650390625, 0.004058837890625, 0.01055908203125, -0.0107421875, -0.003173828125, 0.0002727508544921875, -0.008544921875, -0.0194091796875, -0.017822265625, -0.0028533935546875, -0.00714111328125, 0.01324462890625, -0.0247802734375, -0.00885009765625, -0.016357421875, -0.03662109375, 0.0024261474609375, 0.0206298828125, 0.0101318359375, 0.021728515625, 0.0135498046875, 0.0011749267578125, -0.006988525390625, 0.0084228515625, 0.004058837890625, 0.005767822265625, -0.007415771484375, 0.00714111328125, 0.00799560546875, 0.0235595703125, 0.0021209716796875, 0.00189208984375, -0.0115966796875, -0.02001953125, -0.007720947265625, 0.02001953125, 0.006439208984375, 0.01055908203125, 0.0159912109375, -0.007049560546875, -0.003997802734375, -0.00592041015625] /programs/dev/projects/testproject1 summ TCGA-02-2470 TCGA-02-2470.e21f66d9-e124-43d7-81fe-489d15d69cbf summ -[0.022216796875, -0.0111083984375, -0.0159912109375, 0.0026092529296875, 0.015625, 0.02197265625, 0.01263427734375, -0.00750732421875, -0.006195068359375, 0.005767822265625, 0.011962890625, 0.007568359375, 0.0079345703125, 0.00299072265625, -0.01416015625, -0.010009765625, -0.01434326171875, -0.005706787109375, -0.0032806396484375, 0.00848388671875, -0.005767822265625, -0.0098876953125, 0.005889892578125, -0.008544921875, 0.0281982421875, 0.0022125244140625, 0.00567626953125, -0.007568359375, -0.038818359375, -0.00133514404296875, -0.0003299713134765625, -0.00927734375, 0.000537872314453125, 0.0026092529296875, -0.0034332275390625, -0.025146484375, 0.026123046875, 0.008544921875, 0.0157470703125, -0.005767822265625, 0.0029296875, -0.00179290771484375, 0.000522613525390625, 0.00238037109375, 0.0142822265625, -0.021728515625, 0.005340576171875, -0.00872802734375, -0.01324462890625, 0.005645751953125, -0.0179443359375, -0.0027923583984375, 0.0076904296875, -0.142578125, -0.0030059814453125, 0.0252685546875, -0.01416015625, 0.007293701171875, -0.013671875, 0.0135498046875, -0.012451171875, -0.0093994140625, 0.0147705078125, 0.0078125, 0.0257568359375, 0.00043487548828125, -0.009033203125, -0.0164794921875, -0.003936767578125, -0.00897216796875, -0.0026092529296875, 0.003997802734375, 0.0002765655517578125, -0.021484375, 0.01434326171875, 0.00823974609375, 0.0012359619140625, -0.00015926361083984375, -0.004150390625, 0.007293701171875, 0.01031494140625, -0.01373291015625, 0.0037841796875, -0.00677490234375, 0.00946044921875, -0.0106201171875, 0.005218505859375, 0.00567626953125, 0.006866455078125, 0.00750732421875, -0.02099609375, -0.006195068359375, 0.0040283203125, -0.025390625, 0.0001430511474609375, 0.010009765625, 0.004547119140625, -0.01116943359375, 0.002777099609375, -0.018798828125, -0.01055908203125, 0.0177001953125, 0.018798828125, -0.0279541015625, -0.0244140625, -0.004241943359375, 0.0203857421875, -0.01092529296875, -0.00194549560546875, -0.00128936767578125, 0.004180908203125, 0.000774383544921875, 0.01397705078125, 0.0218505859375, -0.004791259765625, -0.0185546875, -0.0030517578125, -0.01263427734375, 0.022705078125, 0.00799560546875, -0.0062255859375, 0.0069580078125, 0.00762939453125, 0.0150146484375, -0.0189208984375, -0.021484375, -0.00112152099609375, -0.01300048828125, 0.016845703125, 0.01068115234375, -0.00189971923828125, -0.0023651123046875, -0.00933837890625, -0.002197265625, -0.007171630859375, 0.0189208984375, -0.004425048828125, -0.003173828125, -0.00885009765625, 0.00174713134765625, 0.000732421875, 0.0172119140625, 0.0010223388671875, 0.012451171875, 0.01434326171875, -0.00482177734375, 0.01214599609375, -0.013671875, 0.004364013671875, 0.007568359375, -0.0091552734375, -0.01544189453125, -0.001007080078125, -0.0274658203125, 0.01007080078125, -0.0223388671875, 0.02001953125, 0.021484375, -0.0106201171875, -0.01171875, -0.004302978515625, 0.023193359375, -0.00872802734375, 0.00982666015625, -0.000263214111328125, 0.022705078125, 0.0167236328125, -0.018310546875, 0.015625, -0.00118255615234375, -0.0145263671875, 0.0213623046875, -0.00185394287109375, 0.0022125244140625, 0.0113525390625, 0.01141357421875, -0.007476806640625, -0.000762939453125, 0.03271484375, 0.0196533203125, -0.00860595703125, -0.00860595703125, 0.01202392578125, 0.003387451171875, -0.000637054443359375, 0.00183868408203125, -0.0029449462890625, -0.008056640625, 0.003570556640625, 0.0045166015625, 0.00311279296875, -0.0169677734375, -0.02685546875, 0.0147705078125, -0.02001953125, 0.007598876953125, 0.03076171875, -0.003570556640625, -0.0150146484375, -0.0142822265625, -0.01177978515625, 0.0126953125, -0.02392578125, -0.01458740234375, -0.01202392578125, 0.01129150390625, -0.02001953125, -0.0218505859375, 0.002105712890625, -0.02880859375, -0.0264892578125, 0.00010395050048828125, -0.005279541015625, -0.00014972686767578125, 0.0111083984375, -0.01904296875, 0.01129150390625, -0.0004482269287109375, -0.02099609375, 0.01708984375, 0.0009002685546875, -0.006072998046875, -0.0006256103515625, -0.0291748046875, 0.00189208984375, -0.0022430419921875, 0.0101318359375, -0.0098876953125, -0.0078125, -0.001556396484375, 0.0045166015625, -0.0038909912109375, 0.003814697265625, -0.000270843505859375, 0.0068359375, 0.006103515625, -9.894371032714844e-06, -0.01434326171875, 0.00628662109375, -0.004150390625, -0.0032501220703125, -0.011962890625, -0.01092529296875, -0.019287109375, -0.0006256103515625, -0.0179443359375, 0.0157470703125, 0.0218505859375, -0.004302978515625, -0.005767822265625, 0.00213623046875, 0.0130615234375, -0.0194091796875, 0.00970458984375, -0.005096435546875, -0.00927734375, 0.00811767578125, 0.020263671875, -0.01513671875, -0.0067138671875, -0.0034332275390625, 0.0020294189453125, 0.00135040283203125, 0.005889892578125, 0.0062255859375, -0.003936767578125, -0.004547119140625, -3.457069396972656e-05, 0.022216796875, 0.005218505859375, -0.0029449462890625, -0.01611328125, 0.038818359375, -0.015380859375, -0.000946044921875, 0.0189208984375, 0.020263671875, 0.00274658203125, 0.03271484375, -0.01495361328125, -0.0002460479736328125, 0.00885009765625, 0.003753662109375, 0.014404296875, 0.016357421875, 0.018310546875, -0.0247802734375, 0.00726318359375, -0.004730224609375, -0.00057220458984375, 0.003204345703125, 0.004913330078125, -0.014404296875, 0.00109100341796875, 0.00335693359375, -0.01080322265625, 0.01007080078125, 0.034423828125, 0.00262451171875, 0.004852294921875, 0.00185394287109375, 0.0185546875, 0.004302978515625, -0.007049560546875, 0.00182342529296875, -0.0302734375, 0.0211181640625, 0.010009765625, 0.01025390625, 0.017578125, 0.0107421875, 0.00738525390625, 0.0128173828125, -0.00677490234375, -0.0211181640625, 0.01019287109375, -5.0067901611328125e-05, -0.01153564453125, -0.0045166015625, 0.00665283203125, -0.007568359375, 0.02392578125, 0.045166015625, -0.014404296875, 0.017333984375, 0.01434326171875, -0.0126953125, -0.00811767578125, -0.0107421875, 0.0159912109375, 0.0225830078125, 0.00177001953125, 0.00860595703125, -0.002288818359375, 0.0181884765625, -0.01019287109375, 0.0023956298828125, 0.0128173828125, 0.004364013671875, 0.002227783203125, -0.031494140625, 0.0186767578125, -0.0018463134765625, -0.01544189453125, -0.0062255859375, 0.0150146484375, 0.0032196044921875, -0.0009765625, -0.021728515625, 0.008056640625, -0.021728515625, -0.0159912109375, 0.00714111328125, 0.007293701171875, 0.00714111328125, -0.00457763671875, 0.001739501953125, 0.00482177734375, 0.00982666015625, 0.01324462890625, -0.00592041015625, -0.0179443359375, -0.0089111328125, 0.004669189453125, 0.0084228515625, 0.0093994140625, 0.006072998046875, 0.0034332275390625, -0.015380859375, -0.01141357421875, 0.0228271484375, -0.019287109375, 0.006622314453125, 0.006561279296875, -0.0228271484375, -0.00150299072265625, -0.0164794921875, 0.0194091796875, -0.002960205078125, -0.035400390625, 0.005859375, 0.0018768310546875, -0.0023040771484375, 0.000499725341796875, 0.00592041015625, 0.0118408203125, -0.002960205078125, 0.0062255859375, 0.0118408203125, -0.002960205078125, 0.015380859375, -0.0174560546875, -0.008544921875, 0.0030517578125, -0.004638671875, -0.022216796875, 0.0157470703125, 0.00640869140625, -0.01483154296875, 0.0135498046875, -0.0106201171875, -0.0032196044921875, 0.01263427734375, -0.000682830810546875, 0.004425048828125, 0.00640869140625, 0.03759765625, -0.01300048828125, -0.0576171875, 0.005462646484375, -0.00787353515625, 0.0194091796875, -0.01068115234375, 0.009521484375, -0.01556396484375, 0.0150146484375, 0.021240234375, -0.00482177734375, -0.0185546875, 0.01300048828125, 0.0186767578125, 0.006988525390625, 0.018310546875, -0.025146484375, -0.0004329681396484375, -4.839897155761719e-05, -0.007568359375, 0.00640869140625, 0.00135040283203125, -0.00677490234375, 0.000392913818359375, 0.01177978515625, -0.0174560546875, 0.00421142578125, 0.00070953369140625, -0.01708984375, -0.01129150390625, 0.000614166259765625, 0.0130615234375, 0.022705078125, 0.036865234375, -0.010986328125, -0.01043701171875, -0.0030364990234375, 7.915496826171875e-05, -0.002685546875, 0.0130615234375, 0.00274658203125, -0.01434326171875, -0.0079345703125, 0.0084228515625, 0.010009765625, -0.01202392578125, 0.00107574462890625, -0.01556396484375, -0.0279541015625, 0.021240234375, -0.0072021484375, 0.006011962890625, -0.018310546875, 0.01055908203125, -0.013916015625, -0.0106201171875, 0.00836181640625, -0.006317138671875, -0.0223388671875, -0.0196533203125, 0.0133056640625, 0.02490234375, -0.0035400390625, 0.0257568359375, -0.005096435546875, -0.00927734375, 0.013916015625, -0.005279541015625, 0.0201416015625, -0.00762939453125, -0.00010728836059570312, 0.0084228515625, -0.014404296875, 0.03076171875, 0.00299072265625, -0.00799560546875, -0.00762939453125, -0.007080078125, 0.01043701171875, 0.006439208984375, -0.01806640625, 0.0164794921875, 0.0150146484375, 0.00074005126953125, -0.01434326171875, -0.01300048828125, -0.01373291015625, -0.021728515625, 0.00634765625, -0.0201416015625, 0.00787353515625, 0.00946044921875, 0.00726318359375, 0.01312255859375, 0.01324462890625, -0.001129150390625, 0.0025787353515625, -0.00665283203125, 0.0107421875, -0.004364013671875, -0.01409912109375, -0.00311279296875, 0.007415771484375, -0.0022125244140625, 0.0003032684326171875, -0.01519775390625, 0.01080322265625, -0.01324462890625, 0.00262451171875, -0.0179443359375, 0.0186767578125, -0.0201416015625, -0.0142822265625, 0.01904296875, 0.0013580322265625, 0.0012054443359375, -0.0050048828125, 0.00128936767578125, 0.001922607421875, 0.001190185546875, 0.013916015625, 0.002471923828125, 0.009033203125, 0.00153350830078125, 0.0027313232421875, -0.0228271484375, -0.0189208984375, 0.00628662109375, 0.000759124755859375, 0.0093994140625, 0.02880859375, -0.00665283203125, -0.007568359375, 0.01708984375, -0.019775390625, -0.00457763671875, 0.00360107421875, -0.0022125244140625, 0.0194091796875, 0.0021820068359375, 0.0107421875, -0.006439208984375, -0.01513671875, -0.0101318359375, -0.02197265625, -0.031494140625, 0.01177978515625, 0.00811767578125, -0.00171661376953125, -0.00634765625, -0.00109100341796875, -0.029052734375, -0.007415771484375, -0.00107574462890625, -0.00579833984375, 0.012451171875, -0.0045166015625, -0.0118408203125, 0.0206298828125, 0.01348876953125, 0.00634765625, -0.021728515625, 0.0052490234375, -0.0087890625, -0.0179443359375, -0.0067138671875, 0.002288818359375, 0.01226806640625, -0.0196533203125, -0.001251220703125, -0.01470947265625, 0.01385498046875, -0.0103759765625, -0.00494384765625, 0.0078125, 0.003570556640625, 0.0186767578125, -0.00640869140625, 0.00081634521484375, 0.0021514892578125, -0.01483154296875, -0.0032196044921875, 0.003997802734375, -0.0067138671875, 0.005340576171875, 0.0021820068359375, 0.036376953125, 0.015625, -0.00299072265625, -0.006072998046875, -0.0296630859375, -0.0023651123046875, 0.01031494140625, 0.009033203125, 0.004852294921875, 0.023681640625, 0.01904296875, 0.01031494140625, -0.006866455078125, 0.00982666015625, 0.001129150390625, -0.0164794921875, 0.0016021728515625, -0.0174560546875, -0.003387451171875, 0.020751953125, 0.01263427734375, 0.02001953125, -0.006927490234375, -0.004791259765625, -0.0211181640625, -0.016357421875, 0.0264892578125, 0.0037384033203125, -0.00830078125, 0.014404296875, -0.01214599609375, -0.0130615234375, -0.0218505859375, -0.01904296875, 0.00189208984375, 0.007415771484375, -0.0252685546875, -0.004180908203125, -0.01483154296875, -0.0245361328125, -0.0021514892578125, 0.0286865234375, 0.017578125, 0.00433349609375, 0.019287109375, -0.0257568359375, -0.0076904296875, -0.00592041015625, 0.022216796875, 0.0211181640625, -0.01202392578125, 0.00162506103515625, -0.005340576171875, -0.00640869140625, -0.022705078125, -0.000499725341796875, -0.021240234375, -0.00738525390625, -0.01263427734375, -0.02880859375, -0.00408935546875, -0.0133056640625, 0.002593994140625, 0.00384521484375, 0.01416015625, -0.0032196044921875, -0.00787353515625, -0.01519775390625, 0.00186920166015625, -0.01556396484375, 0.0260009765625, 0.002288818359375, -0.003997802734375, -0.01202392578125, -0.018310546875, 0.00311279296875, -0.013671875, 0.0069580078125, -0.00130462646484375, 0.0014190673828125, -0.00787353515625, 0.00640869140625, -0.01483154296875, -0.00640869140625, 0.01495361328125, 0.001129150390625, -0.01055908203125, -0.00012683868408203125, 0.0021820068359375, 0.031494140625, 0.016357421875, -0.01031494140625, 0.004425048828125, -0.0111083984375, -0.014404296875, -0.0004062652587890625, -0.00543212890625, -0.026123046875, -0.0225830078125, -0.0181884765625, 0.01263427734375, 0.0133056640625, -0.01019287109375, -0.0025482177734375, -0.01239013671875, 0.0050048828125, 0.00131988525390625, 0.00872802734375, -0.016845703125, 0.0003681182861328125, -0.0084228515625, -0.005767822265625, 0.0673828125, -0.0038909912109375, 0.015625, -0.01202392578125, 0.0296630859375, 0.0091552734375, -0.018310546875, 0.02685546875, 0.000720977783203125, -0.00592041015625, -0.001190185546875, -0.00179290771484375, 0.004364013671875, -0.00726318359375, 0.0164794921875, 0.0018768310546875, -0.01348876953125, 0.0205078125, 0.0172119140625, 0.0027923583984375, -0.012451171875, 0.0133056640625, 0.00048828125, 0.01226806640625, -0.0108642578125, 0.00592041015625, -0.006011962890625, -0.0189208984375, 0.002410888671875, 0.0185546875, -0.010009765625, -0.006500244140625, 0.0147705078125, -0.0004329681396484375, -0.0164794921875, -0.00408935546875, -0.01220703125, 0.00921630859375, 0.004638671875, 0.0245361328125, -0.005035400390625, 0.002716064453125, -0.00836181640625, -0.0004062652587890625, -0.005645751953125, -0.0086669921875, 0.001556396484375, 0.0002460479736328125, -0.0196533203125, -0.0091552734375, 0.0003299713134765625, 0.0096435546875, -0.00665283203125, -0.009033203125, 0.00506591796875, -0.00823974609375, 0.0047607421875, -0.00194549560546875, -0.0008697509765625, 0.004302978515625, -0.01202392578125, -0.007476806640625, 0.00153350830078125, 0.005218505859375, 0.0111083984375, 0.0240478515625, -0.01416015625, -0.00168609619140625, 0.007293701171875, 0.0004730224609375, 0.0050048828125, 0.034912109375, -0.048095703125, -0.006072998046875, -0.014404296875, 0.0196533203125, -0.014404296875, -5.8650970458984375e-05, -0.00762939453125, -0.0032806396484375, 0.007293701171875, 0.03662109375, 0.0031585693359375, 0.00787353515625, 0.00080108642578125, 0.0174560546875, -0.01202392578125, -0.005096435546875, -0.004058837890625, 0.005889892578125, -0.0098876953125, -0.0172119140625, 0.006500244140625, 0.005889892578125, 0.01519775390625, 0.00811767578125, -0.003814697265625, -0.01226806640625, 0.0179443359375, 0.002532958984375, 0.0213623046875, -0.030029296875, -0.0045166015625, -0.002349853515625, 0.022705078125, 0.0106201171875, 0.01483154296875, -0.015380859375, -0.0037384033203125, -0.007720947265625, -0.000270843505859375, -0.01416015625, 0.00104522705078125, 0.00860595703125, -0.003936767578125, -0.0145263671875, -0.00421142578125, 0.0035247802734375, 0.0228271484375, 0.01312255859375, -0.0157470703125, -0.00848388671875, -0.010986328125, 0.00032806396484375, 0.006103515625, -0.00579833984375, -0.006072998046875, -0.0035858154296875, -0.054931640625, -0.031982421875, 0.0400390625, -0.00787353515625, -0.00799560546875, -0.00194549560546875, 0.019775390625, -0.007293701171875, -0.0087890625, -0.0135498046875, 0.0021209716796875, -0.0078125, 0.00628662109375, -0.014404296875, -0.008544921875, -0.0111083984375, 0.0062255859375, 0.01177978515625, 0.01141357421875, -0.00335693359375, 0.0556640625, -0.026611328125, -0.002838134765625, -0.00921630859375, 0.0096435546875, 0.009033203125, 0.0027923583984375, 0.00933837890625, -0.0133056640625, 0.01141357421875, -0.0003147125244140625, -0.0023651123046875, 0.00823974609375, 0.0113525390625, -0.0069580078125, -0.00164031982421875, 0.0098876953125, 0.019775390625, 0.016845703125, 0.015625, -0.004241943359375, 0.0010223388671875, -0.013671875, -0.005218505859375, 0.002227783203125, 0.0028839111328125, 0.01171875, -0.01483154296875, 0.00081634521484375, 0.00872802734375, -0.00189208984375, -0.041259765625, 0.015625, -0.0030059814453125, 0.01513671875, -0.00897216796875, 0.0252685546875, -0.023681640625, 0.00390625, -0.02099609375, 0.0093994140625, 0.002685546875, -0.016357421875, -0.0159912109375, 0.010986328125, 0.01373291015625, 0.0311279296875, 0.001495361328125, -0.0062255859375, 0.013427734375, 0.0001201629638671875, -0.004302978515625, -0.009033203125, 5.698204040527344e-05, -0.0018157958984375, 0.0166015625, 0.0186767578125, 0.0279541015625, 0.0091552734375, 0.0084228515625, -0.00262451171875, 0.005706787109375, 0.0033721923828125, 0.01019287109375, 0.004669189453125, 0.0126953125, 0.00750732421875, -0.005218505859375, 0.023193359375, -0.0106201171875, 0.00592041015625, 0.025146484375, 0.018310546875, 0.004852294921875, -0.007049560546875, -0.01141357421875, -0.0003299713134765625, -0.0106201171875, -0.000820159912109375, 0.0087890625, 0.006072998046875, -0.00982666015625, 0.00469970703125, -0.01373291015625, 0.017333984375, 0.0081787109375, 0.01263427734375, -0.0023193359375, 0.00457763671875, -0.000946044921875, 0.0021514892578125, 0.000949859619140625, 0.017578125, -0.01416015625, -0.01239013671875, 0.00677490234375, -0.002960205078125, -0.01385498046875, -0.0166015625, 0.009033203125, -0.0150146484375, 0.009033203125, -0.01385498046875, -0.00421142578125, 0.0014495849609375, 0.010986328125, 0.0113525390625, -0.0203857421875, -0.00970458984375, 0.0159912109375, 0.0194091796875, -0.02490234375, 0.00982666015625, 0.025390625, 0.003265380859375, 0.0126953125, -0.0167236328125, 0.004425048828125, -0.00194549560546875, -0.0115966796875, 0.010009765625, 0.0157470703125, -0.034423828125, 0.029052734375, 0.0012969970703125, -0.00531005859375, -0.00390625, -0.0189208984375, -0.00074005126953125, -0.006439208984375, -0.00726318359375, -0.0211181640625, 0.020751953125, -0.0115966796875, 0.0045166015625, 0.02197265625, -0.016357421875, 0.01416015625, -0.0145263671875, 0.005340576171875, 0.018310546875, 0.0235595703125, 0.01397705078125, 0.00738525390625, 0.00860595703125, 0.01080322265625, -0.00592041015625, 0.000156402587890625, 0.01708984375, -0.030029296875, 0.007354736328125, 0.004364013671875, 0.00738525390625, 0.00860595703125, -0.0118408203125, 0.01226806640625, -0.0035247802734375, 0.002105712890625, 0.0019073486328125, 0.01177978515625, 0.00653076171875, -0.01116943359375, -0.005218505859375, 0.0016937255859375, -0.002197265625, 0.007293701171875, 0.0069580078125, -0.002685546875, 0.01348876953125, 0.01324462890625, 0.033203125, 0.00860595703125, -0.00537109375, 0.0025482177734375, 0.0302734375, -0.021484375, -0.00201416015625, -0.06982421875, 0.00185394287109375, -0.01031494140625, 0.00144195556640625, -0.0111083984375, 0.0019073486328125, -0.00579833984375, 0.000518798828125, -0.0034942626953125, 0.005859375, -0.004425048828125, -0.004425048828125, -0.0101318359375, -0.0072021484375, 0.003814697265625, -0.00482177734375, 0.002044677734375, -0.0150146484375, -0.01519775390625, -0.013671875, 0.000537872314453125, -0.01483154296875, 0.0189208984375, -0.007293701171875, 0.000171661376953125, 0.01031494140625, -0.037109375, 0.01116943359375, 0.0184326171875, 0.0130615234375, -0.0023956298828125, -0.009033203125, 0.003387451171875, -0.017822265625, 0.0108642578125, -0.002471923828125, -0.0157470703125, -0.0223388671875, -0.0908203125, -0.0107421875, -0.00045013427734375, 0.0228271484375, -0.00592041015625, 0.015380859375, -0.002685546875, 0.0054931640625, -0.0126953125, -0.0108642578125, 0.003570556640625, 0.0113525390625, 0.015869140625, -0.00213623046875, 0.00787353515625, 0.0009002685546875, 0.007293701171875, 0.0107421875, -0.0087890625, 0.007080078125, 0.0111083984375, 0.0189208984375, 0.0020751953125, -0.001922607421875, -0.0081787109375, 0.0050048828125, 0.0223388671875, -0.00830078125, 0.01055908203125, -0.00799560546875, 0.006744384765625, -0.01495361328125, -0.020263671875, 0.005584716796875, -0.0035400390625, 0.007293701171875, -0.021728515625, 0.007598876953125, -0.0174560546875, -0.0181884765625, -0.02001953125, 0.005096435546875, 0.002349853515625, 0.0024566650390625, 0.00848388671875, 0.00897216796875, 0.00069427490234375, -0.0162353515625, 0.02783203125, 0.0069580078125, 0.0052490234375, 0.0186767578125, 0.01385498046875, -0.0087890625, -0.007415771484375, 0.018310546875, 0.00439453125, 0.0771484375, 0.003387451171875, -0.0030517578125, 0.002899169921875, -0.0126953125, -0.0147705078125, 0.0128173828125, 0.004791259765625, 0.00750732421875, -0.00634765625, -0.00176239013671875, -0.009033203125, -0.00872802734375, 0.019775390625, -0.0019989013671875, -0.01904296875, 0.00154876708984375, -0.01806640625, -0.00927734375, -0.000423431396484375, 0.018798828125, 0.00579833984375, -0.02197265625, -0.0081787109375, 0.0281982421875, -0.00408935546875, 0.00494384765625, 0.0142822265625, -0.00457763671875, 0.0191650390625, 0.0126953125, -0.00714111328125, -0.00034332275390625, 0.0196533203125, -0.042236328125, -0.00799560546875, 0.007720947265625, -0.00408935546875, 0.02392578125, -0.016357421875, -0.03271484375, 0.034423828125, -0.0026397705078125, -0.007598876953125, -0.017578125, -0.00726318359375, -0.0078125, 0.0089111328125, -0.00408935546875, 0.0101318359375, -0.01153564453125, 0.00494384765625, -0.006866455078125, -0.0111083984375, -0.013427734375, 0.008544921875, 0.007293701171875, 0.0223388671875, -0.0174560546875, 0.006927490234375, 0.03564453125, -0.0010528564453125, 0.000911712646484375, -0.004730224609375, -0.0003337860107421875, -0.01513671875, -0.00147247314453125, -0.004730224609375, -0.002288818359375, -0.00154876708984375, -0.013427734375, 0.022705078125, 0.0030670166015625, 0.018310546875, 0.000156402587890625, 0.01202392578125, 0.007476806640625, -0.004425048828125, -0.007354736328125, 0.0022735595703125, 0.00634765625, 0.0078125, -0.03515625, 0.002288818359375, -0.00054168701171875, 0.0277099609375, -0.010986328125, -0.0118408203125, 0.0028228759765625, 0.01544189453125, 0.011962890625, 0.013427734375, -0.0206298828125, 0.006103515625, 0.003173828125, 0.00090789794921875, 0.0023651123046875, -0.0252685546875, -0.00830078125, -0.006011962890625, 0.00311279296875, -0.0008392333984375, 0.000125885009765625, -0.006500244140625, -0.0101318359375, -0.01434326171875, 0.0218505859375, -0.0011444091796875, -0.00518798828125, -0.007171630859375, -0.01092529296875, 0.00799560546875, 0.00970458984375, -0.006317138671875, 0.002288818359375, -0.009033203125, -0.01348876953125, 0.009033203125, -0.0264892578125, -0.025634765625, -0.030029296875, 0.0225830078125, -0.0179443359375, -0.0218505859375, 0.0125732421875, -0.006988525390625, -0.005279541015625, -0.0010986328125, 0.002349853515625, -0.000579833984375, 0.01141357421875, -0.00787353515625, 0.07568359375, -0.0089111328125, 0.01324462890625, 0.01416015625, -0.003387451171875, 0.00115966796875, 0.0174560546875, 0.005218505859375, 0.00958251953125, 0.005889892578125, -0.000789642333984375, 0.08154296875, 0.0283203125, -0.00250244140625, -0.013671875, 0.007781982421875, 0.01263427734375, 0.01300048828125, 0.0072021484375, -0.0177001953125, -0.00144195556640625, 0.00714111328125, 0.004852294921875, -0.0013427734375, -0.0166015625, -0.0264892578125, -0.015380859375, 0.01416015625, -0.0257568359375, 0.0108642578125, 0.0142822265625, 0.0281982421875, -7.200241088867188e-05, 0.00084686279296875, -0.00274658203125, 0.0205078125, 0.035400390625, 0.000518798828125, 0.0084228515625, -0.007598876953125, -0.0093994140625, -0.0186767578125, 0.0091552734375, -0.02099609375, 0.002838134765625, 0.022705078125, -0.014404296875, -0.0106201171875, 0.03369140625, -0.01385498046875, 0.0081787109375, 0.00567626953125, -0.021728515625, -0.017822265625, 0.007720947265625, 0.0150146484375, -0.0115966796875, -0.018310546875, -0.0172119140625, -0.0208740234375, 0.005645751953125, 0.015380859375, -0.0098876953125, 0.006866455078125, -0.00836181640625, 0.0038604736328125, -0.0034637451171875, 0.005584716796875, -0.0033721923828125, -0.0247802734375, 0.00830078125, -0.005157470703125, 0.001312255859375, 0.005767822265625, -0.01611328125, -0.0008544921875, -0.0181884765625, 0.0157470703125, 0.0045166015625, 0.00799560546875, 0.0113525390625, 0.0014801025390625, -0.0107421875, 0.00787353515625, -0.0128173828125, -0.004730224609375, 0.0130615234375, -0.00933837890625, -0.0235595703125, -0.00872802734375, 0.002685546875, 0.01043701171875, 0.010986328125, 0.01239013671875, 0.00628662109375, -0.02490234375, 0.026123046875, 0.041015625, 0.001495361328125, 0.007293701171875, 0.005706787109375, -0.004364013671875, -0.0208740234375, -0.0027923583984375, 0.004638671875, 0.0194091796875, -0.00946044921875, 0.00494384765625, -0.0150146484375, 0.0021820068359375, 0.0047607421875, 0.0244140625, 0.005859375, 0.00537109375, -0.0159912109375, 0.0888671875, 0.0223388671875, 0.000926971435546875, -0.09423828125, 0.016357421875, -0.005035400390625, -0.0019683837890625, 0.013427734375, 0.007415771484375, 0.0159912109375, -0.00909423828125, 0.000370025634765625, -0.00069427490234375, -0.00860595703125, -0.010986328125, -0.0130615234375, -0.0062255859375, 0.00726318359375, 0.01434326171875, -0.01141357421875, 0.0035858154296875, -0.02392578125, -0.005859375, 0.00848388671875, -0.01239013671875, -0.00897216796875, -0.01141357421875, 0.00634765625, 0.0218505859375, 0.008056640625, -0.002288818359375, -0.01214599609375, -0.003997802734375, -0.03271484375, 0.0081787109375, 0.00982666015625, 0.001251220703125, 0.007415771484375, -0.005584716796875, 0.0031585693359375, 0.007354736328125, -0.0103759765625, 0.005462646484375, -0.00665283203125, -0.000858306884765625, -0.0009918212890625, 0.013427734375, -0.01708984375, 0.01416015625, 0.0029296875, -0.0011444091796875, 0.0242919921875, 0.00860595703125, 0.0228271484375, -0.004486083984375, 0.00010251998901367188, 0.1044921875, 0.01055908203125, -0.00897216796875, -0.01312255859375, -0.0194091796875, -0.0296630859375, 0.000885009765625, 0.0166015625, -0.00799560546875, 0.0006103515625, 0.0054931640625, 0.00665283203125, 0.00173187255859375, 0.0150146484375, -0.02001953125, 0.0023040771484375, -0.004730224609375, -0.021728515625, 0.0025482177734375, 0.0235595703125, 0.00970458984375, -0.0152587890625, 0.00860595703125, -0.0059814453125, -0.01214599609375, 0.002410888671875, 0.0035247802734375, -0.00360107421875, 0.0223388671875, 0.014404296875, -0.0081787109375, -0.007171630859375, -0.0145263671875, -0.022705078125, 0.000812530517578125, 0.00823974609375, 0.004302978515625, 0.0024871826171875, -0.000499725341796875, 0.0008697509765625, 0.01611328125, 0.007415771484375, 0.030029296875, 0.0281982421875, 0.0059814453125, -0.0277099609375, -0.01434326171875, -0.0030517578125, -0.00225830078125, 0.0030975341796875, 0.0118408203125, 0.0283203125, -0.0034942626953125, -0.00592041015625, 0.006134033203125, 0.00079345703125, 0.006744384765625, -0.00927734375, 0.0206298828125, 0.03955078125, -0.0078125, -0.0172119140625, 0.00179290771484375, 0.02197265625, -0.002227783203125, 0.002960205078125, -0.00567626953125, -0.00726318359375, 0.00011730194091796875, -0.02880859375, -0.0023193359375, 0.012451171875, 0.02197265625, -0.00457763671875, -0.016357421875, 0.0106201171875, -0.000347137451171875, -0.00274658203125, -0.004669189453125, -0.0040283203125, -0.0030670166015625, -0.0167236328125, 0.000705718994140625, 0.0042724609375, -0.01141357421875, 0.0086669921875, -0.01141357421875, 0.0020751953125, -0.0013427734375, 0.0118408203125, 0.006195068359375, -0.013427734375, 0.01202392578125, -0.0150146484375, 0.0157470703125, -0.0054931640625, -0.0169677734375, 0.026611328125, -0.00162506103515625, -0.0174560546875, -0.00634765625, -0.00628662109375, 0.0230712890625, -0.003326416015625, 0.00653076171875, 0.0162353515625, -0.00084686279296875, -0.007476806640625, 0.007293701171875, 0.006103515625, 0.01153564453125, -0.01556396484375, 0.0130615234375, 0.004058837890625, 0.01116943359375, 0.006866455078125, 7.152557373046875e-05, -0.00164031982421875, -0.000335693359375, -0.01202392578125, 0.0006256103515625, -0.0135498046875, 0.00970458984375, 0.01226806640625, 0.0007781982421875, -0.01080322265625, -0.015869140625, 0.0033721923828125, -0.01092529296875, -0.01019287109375, 0.014404296875, -0.00830078125, -0.004669189453125, -0.0004558563232421875, 0.006439208984375, 0.006561279296875, -0.000492095947265625, -0.00982666015625, -0.0038909912109375, -0.0103759765625, -0.0016632080078125, 0.01226806640625, 0.006622314453125, 0.0031585693359375, 0.00125885009765625, 0.0162353515625, 0.0166015625, 0.0054931640625, 0.0081787109375, 0.019287109375, 0.0208740234375, -0.00860595703125, -0.0150146484375, 0.01202392578125, -0.01129150390625, -0.003204345703125, -0.007598876953125, -0.01263427734375, -0.0159912109375, 0.0021820068359375, 0.0260009765625, 0.0186767578125, -0.0145263671875, -0.0069580078125, 0.005584716796875, -0.00335693359375, 0.002960205078125, 0.007720947265625, -0.0002307891845703125, -0.00885009765625, -0.00927734375, 0.01708984375, -0.004425048828125, -0.01043701171875, 0.01043701171875, -0.00518798828125, -0.000873565673828125, 0.0244140625, -0.015380859375, 0.0067138671875, 0.01177978515625, 0.00933837890625, -0.00860595703125, -0.00799560546875, -0.011962890625, -0.01287841796875, -0.006500244140625, -0.0025482177734375, 0.005096435546875, 0.007781982421875, -0.00799560546875, 0.0022735595703125, 0.01226806640625, 0.00144195556640625, 0.002838134765625, -0.0174560546875, 0.0166015625, -0.016357421875, -0.01434326171875, 0.00921630859375, 0.0003871917724609375, 0.026123046875, 0.00189208984375, 0.01513671875, 0.00112152099609375, 0.0152587890625, 0.004119873046875, 0.00921630859375, 0.007476806640625, 0.0014190673828125, 0.00109100341796875, -0.01214599609375, -0.005645751953125, -0.0115966796875, 0.00189208984375, 0.00494384765625, 0.0166015625, 0.072265625, -0.0037841796875, -0.0091552734375, 0.0218505859375, -0.004150390625, -0.01226806640625, 0.013671875, 0.0037994384765625, 0.018310546875, 0.0145263671875, -0.02783203125, -0.0101318359375, -0.01019287109375, -0.038330078125, -0.00439453125, 0.00109100341796875, 0.0196533203125, -0.0096435546875, -0.018310546875, 0.01226806640625, -0.0030364990234375, 0.00421142578125, -0.00958251953125, -0.018310546875, 0.00927734375, 0.00176239013671875, -0.0068359375, -0.0159912109375, -0.02197265625, 0.01080322265625, -0.003814697265625, -0.0283203125, -0.0172119140625, 0.01177978515625, 0.0164794921875, 0.00157928466796875, -0.01806640625, -0.01483154296875, 0.0001544952392578125, -0.003387451171875, -0.010986328125, 0.00958251953125, -0.0021820068359375, -0.002288818359375, 0.00193023681640625, 0.00640869140625, 0.017333984375, -0.000396728515625, -0.0084228515625, 0.004974365234375, 0.0269775390625, -0.0218505859375, -0.01025390625, 0.0076904296875, 0.004791259765625, -0.0142822265625, 0.005645751953125, -0.0068359375, -0.004364013671875, 0.0079345703125, 0.0003814697265625, -0.0201416015625, -0.005279541015625, -0.00457763671875, 0.000652313232421875, -0.006988525390625, 0.0034637451171875, 0.0037841796875, 0.0019989013671875, 0.031494140625, 0.003997802734375, -0.00103759765625, -0.003326416015625, 0.004180908203125, 0.002105712890625, 0.0050048828125, 0.0023345947265625, -0.0072021484375, 0.0067138671875, -0.007171630859375, 0.0172119140625, 0.01397705078125, -0.0126953125, 0.009033203125, -0.018310546875, 0.0079345703125, -0.00848388671875, -0.01373291015625, -0.0101318359375, 0.0118408203125, 0.0034332275390625, 0.004638671875, 0.0025634765625, -0.00958251953125, 0.01239013671875, 0.0021820068359375, -0.038330078125, 0.0087890625, 0.0201416015625, 0.00726318359375, 0.018310546875, -0.0106201171875, -0.005889892578125, 0.00341796875, -0.00171661376953125, -0.0166015625, -0.0029449462890625, -0.005645751953125, 0.0169677734375, -0.0076904296875, 0.006134033203125, 0.000537872314453125, 0.00628662109375, 0.0162353515625, 0.0062255859375, -0.006622314453125, 0.004852294921875, -0.0108642578125, 0.001312255859375, -0.006988525390625, -0.0235595703125, 0.0107421875, 0.0040283203125, 0.02001953125, -0.006988525390625, 0.01153564453125, 0.01153564453125, -0.00421142578125, -0.00555419921875, -0.004791259765625, 0.00103759765625, -0.017333984375, -0.001220703125, -0.0034332275390625, 0.0003261566162109375, 0.0086669921875, 0.01806640625, 0.0191650390625, 0.00982666015625, 0.00567626953125, -0.006195068359375, -0.0125732421875, 0.01043701171875, 0.0017852783203125, -0.001068115234375, 0.035400390625, 0.00946044921875, 0.01141357421875, -0.03271484375, 0.0, -0.0174560546875, 0.00738525390625, -0.006011962890625, -0.0093994140625, -0.0013885498046875, -0.006622314453125, -0.0021820068359375, -0.00154876708984375, -0.004150390625, -0.01324462890625, 0.002899169921875, 0.0194091796875, 0.007598876953125, 0.002044677734375, 0.0103759765625, 0.00909423828125, 0.01287841796875, 0.0147705078125, 0.005218505859375, 0.019775390625, -0.0166015625, 0.01177978515625, -0.006866455078125, -0.005157470703125, -0.001739501953125, -0.006134033203125, -0.0018463134765625, 0.000583648681640625, 0.004730224609375, -0.0103759765625, -0.005889892578125, -0.01904296875, -0.0038909912109375, -0.004638671875, -0.01239013671875, -0.008056640625, -0.0211181640625, -0.00994873046875, 0.00537109375, -0.0093994140625, 0.003631591796875, 0.00982666015625, -0.0004215240478515625, -0.006500244140625, -0.005279541015625, 0.0230712890625, -0.0036773681640625, 0.0091552734375, -0.01513671875, 0.0022125244140625, -0.007354736328125, 0.00799560546875, 0.0194091796875, -0.0091552734375, -0.000537872314453125, 0.03369140625, 0.016357421875, 0.0098876953125, 0.00885009765625, 0.01287841796875, 0.0011444091796875, 0.0218505859375, -0.000881195068359375, -0.0185546875, -0.00738525390625, -0.0247802734375, -0.004852294921875, 0.038818359375, -0.004852294921875, 0.00494384765625, -0.007476806640625, -0.02685546875, -0.011962890625, -0.0186767578125, -0.0206298828125, 0.01068115234375, 0.0023956298828125, 0.025146484375, -0.00421142578125, -0.00012302398681640625, 0.01031494140625, -0.0252685546875, 0.023681640625, -0.00830078125, 0.00872802734375, 0.000667572021484375, -0.007354736328125, -0.0118408203125, -0.0036468505859375, 0.007171630859375, 0.0091552734375, -0.0225830078125, -0.00494384765625, 0.0291748046875, 0.0260009765625, -0.00714111328125, -0.0101318359375, -0.0098876953125, -0.00457763671875, 0.00122833251953125, -0.00182342529296875, 0.002227783203125, -0.004669189453125, -0.00164031982421875, 0.00640869140625, 0.0019989013671875, -0.0045166015625, 0.00250244140625, -0.005859375, -0.0247802734375, 0.00518798828125, 0.0142822265625, -0.0269775390625, -0.0027313232421875, -0.003814697265625, 0.0009002685546875, -0.00885009765625, 0.004852294921875, 0.01385498046875, -0.00982666015625, 0.00909423828125, -0.005279541015625, -0.0166015625, -0.010986328125, 0.002471923828125, 0.01153564453125, -0.00823974609375, -0.0034637451171875, -0.0177001953125, -0.00653076171875, 0.0087890625, -0.01141357421875, -0.00970458984375, -0.013427734375, 0.0279541015625, -0.0059814453125, 0.005889892578125, 0.0079345703125, 0.00823974609375, 0.010009765625, 0.000476837158203125, -0.019775390625, 0.0128173828125, -0.005859375, -0.0191650390625, -0.00653076171875, -0.033203125, 0.000766754150390625, -0.00518798828125, -0.007171630859375, -0.00070953369140625, -0.01373291015625, -0.0106201171875, -0.007476806640625, -0.01129150390625, 0.0062255859375, 0.0159912109375, -0.01226806640625, -0.0091552734375, -0.017822265625, -0.012451171875, -0.0087890625, 0.017578125, -0.0245361328125, 0.0054931640625, 0.0032196044921875, 0.0010986328125, -0.0035247802734375, -0.0062255859375, -0.01220703125, 0.0062255859375, 0.054931640625, -0.0242919921875, -0.00179290771484375, -0.001983642578125, 0.004364013671875, -0.00555419921875, 0.00555419921875, -0.010986328125, -0.002288818359375, 0.005157470703125, 0.01220703125, -0.00396728515625, -0.00872802734375, -0.0017852783203125, 0.007476806640625, -0.08447265625, -0.002777099609375, 0.00811767578125, -0.01007080078125, -0.00078582763671875, -0.01458740234375, 0.007568359375, -0.052490234375, -0.0157470703125, -0.01806640625, 0.0005035400390625, 0.006134033203125, 0.000698089599609375, -0.02197265625, -0.0021514892578125, 0.0125732421875, -0.023193359375, -0.006317138671875, 0.00174713134765625, 0.013427734375, 0.001495361328125, -0.00185394287109375, 0.0126953125, -0.006622314453125, 0.0172119140625, 0.00665283203125, 0.01409912109375, -0.0150146484375, 0.046875, -0.0010528564453125, -0.004150390625, 0.0098876953125, -0.01556396484375, -0.000934600830078125, 0.016357421875, 0.0002918243408203125, -0.0096435546875, -0.009521484375, -0.01806640625, 0.0150146484375, -0.023681640625, -0.001495361328125, -0.045654296875, 0.00921630859375, -0.01904296875, 0.01312255859375, -0.01397705078125, -0.00110626220703125, -0.003326416015625, 0.01904296875, -0.00872802734375, 0.00274658203125, 0.017333984375, -0.01806640625, 0.0087890625, -0.003570556640625, -0.00946044921875, -0.015625, 0.010986328125, -0.006439208984375, 0.0012054443359375, 0.00144195556640625, -0.001983642578125, -0.00885009765625, 0.000446319580078125, -0.0029449462890625, 0.0242919921875, -0.01263427734375, 0.003631591796875, -0.00933837890625, 0.0081787109375, 0.00640869140625, -0.00799560546875, 0.016845703125, -0.0223388671875, -0.022705078125, 0.0252685546875, -0.0084228515625, -0.004180908203125, 0.01300048828125, -0.0003871917724609375, 0.005096435546875, 0.0218505859375, 0.00139617919921875, 0.0142822265625, 0.0228271484375, 0.01434326171875, -0.012451171875, 0.004730224609375, 0.002960205078125, -0.01373291015625, 0.006744384765625, -0.0026397705078125, 0.000354766845703125, 0.0072021484375, 0.0164794921875, 0.03173828125, 0.03271484375, 0.00390625, -0.018798828125, 0.0028533935546875, 0.007598876953125, -0.002593994140625, 0.0022735595703125, 0.0228271484375, 0.00927734375, 0.00750732421875, 0.01611328125, 0.00311279296875, -0.0068359375, -0.01373291015625, 0.0111083984375, -0.012451171875, 0.0032196044921875, -0.0010223388671875, 0.0169677734375, -0.0035400390625, -0.0011749267578125, 0.035400390625, -0.00860595703125, -0.000270843505859375, -0.006744384765625, -0.0089111328125, 0.0174560546875, 0.0091552734375, -0.0159912109375, -0.0159912109375, -0.005584716796875, -0.00579833984375, -0.00799560546875, -0.0213623046875, -0.017578125, 0.02099609375, 0.00750732421875, 0.0054931640625, -0.0128173828125, 0.0045166015625, 0.0037841796875, 0.031494140625, -0.0247802734375, 0.00860595703125, 0.0133056640625, 0.005706787109375, -0.017822265625, -0.007781982421875, 0.026611328125, -0.0084228515625, 0.01031494140625, 0.0150146484375, -0.00799560546875, 0.006500244140625, 0.022705078125, 0.0103759765625, -0.0166015625, 0.0133056640625, 0.0191650390625, -0.0016632080078125, 0.00151824951171875, -0.00628662109375, -0.001678466796875, -0.00927734375, 0.003570556640625, -0.013427734375, 0.00121307373046875, 0.01483154296875, 0.02099609375, -0.01806640625, 0.002685546875, 0.00107574462890625, -0.00157928466796875, -0.0087890625, -0.0021820068359375, -0.0091552734375, 0.002777099609375, 0.00028228759765625, 0.009521484375, -0.01226806640625, -0.004791259765625, 0.00830078125, -0.0098876953125, 0.0084228515625, -0.0035247802734375, -0.012451171875, -0.007598876953125, -0.023681640625, 0.0125732421875, 0.0011138916015625, -0.005035400390625, 0.01031494140625, 0.022705078125, -0.00098419189453125, -0.00830078125, -0.0059814453125, -0.0098876953125, 0.00872802734375, -0.00165557861328125, 0.01092529296875, -0.0201416015625, -0.0106201171875, -0.00179290771484375, 0.0302734375, 0.001922607421875, -0.015625, -3.910064697265625e-05, -0.003753662109375, -0.00201416015625, -0.00162506103515625, 0.012451171875, 0.0026397705078125, 0.0026397705078125, -0.013916015625, 0.002105712890625, -0.0166015625, -0.0024566650390625, -0.00885009765625, -0.032470703125, 0.006622314453125, 0.0069580078125, -0.01129150390625, -0.013916015625, -0.0174560546875, 0.0400390625, -0.0228271484375, -0.01214599609375, 0.0025787353515625, -0.015625, -5.340576171875e-05, -0.00830078125, 0.019775390625, -0.01470947265625, 0.0240478515625, 0.004852294921875, -0.0125732421875, -0.0240478515625, -0.03125, 0.00135040283203125, -0.003936767578125, 0.00579833984375, -0.002105712890625, 0.00299072265625, 0.005340576171875, 0.0162353515625, 0.0072021484375, 0.014404296875, 0.0225830078125, -0.006011962890625, 0.003326416015625, -0.01177978515625, 0.016845703125, -0.002105712890625, -0.01202392578125, -0.1484375, -0.002716064453125, -0.00469970703125, -0.01483154296875, 0.009521484375, 0.01385498046875, -0.0172119140625, 0.001129150390625, 0.00021648406982421875, 0.0191650390625, -0.03564453125, 0.010986328125, -0.00445556640625, -0.0004730224609375, -0.022216796875, -0.02197265625, -0.022216796875, 0.016357421875, 0.01153564453125, 0.01202392578125, 0.022705078125, 0.015625, 0.004058837890625, 0.0206298828125, 0.0037994384765625, -0.0242919921875, 0.01141357421875, 0.0205078125, -0.008544921875, -0.010009765625, -0.01556396484375, 0.00506591796875, 0.01031494140625, 0.01495361328125, 0.01397705078125, -0.00177001953125, -0.00360107421875, 0.004913330078125, -0.01434326171875, -0.0286865234375, -0.0048828125, -0.0211181640625, 0.002838134765625, -0.01025390625, -0.01409912109375, 0.0033111572265625, -0.0247802734375, -0.01214599609375, -0.01239013671875, -0.007476806640625, 0.020263671875, 0.0115966796875, -0.026123046875, 0.00193023681640625, 0.0025177001953125, -0.009521484375, 0.005859375, 0.007293701171875, 0.0218505859375, 0.00872802734375, 0.0012359619140625, -0.00811767578125, -0.007598876953125, 0.0034332275390625, 0.01092529296875, 0.0038909912109375, 0.009765625, 0.0034637451171875, -0.00194549560546875, -0.006317138671875, -0.01458740234375, -0.0028533935546875, 0.01513671875, 0.007354736328125, -0.01483154296875, 0.000278472900390625, 0.034912109375, -0.004302978515625, -0.01312255859375, 0.0030975341796875, 0.01116943359375, -0.004425048828125, -0.00341796875, -0.00150299072265625, -0.004425048828125, -0.000415802001953125, 0.000751495361328125, -0.004638671875, 0.0225830078125, 0.00555419921875, -0.00933837890625, -0.00927734375, 0.0027008056640625, -0.015625, -0.00927734375, -0.0020294189453125, -0.0279541015625, 0.006011962890625, 0.0019683837890625, -0.0225830078125, -0.01141357421875, 0.005645751953125, -0.021484375, 0.0103759765625, -0.022216796875, -0.006134033203125, -0.005706787109375, 0.0002117156982421875, 0.0036773681640625, -0.0118408203125, 0.0078125, 0.030517578125, 0.0196533203125, -0.0194091796875, 0.01116943359375, 0.0174560546875, -0.00653076171875, -0.0033721923828125, 0.004791259765625, -0.0031585693359375, 0.00933837890625, -0.00384521484375, 0.019775390625, 0.01202392578125, -0.00714111328125, -0.005706787109375, 0.0257568359375, -0.0037078857421875, -0.0189208984375, 0.00799560546875, -0.00135040283203125, -0.0252685546875, 0.0033721923828125, 0.019775390625, -0.01171875, -0.005035400390625, 0.00482177734375, -0.0004291534423828125, 0.0279541015625, -0.00897216796875, 0.021728515625, 0.01806640625, -0.01141357421875, 0.00799560546875, 0.0130615234375, -0.00537109375, 0.01806640625, 0.00567626953125, 0.0142822265625, 0.0247802734375, -0.0004634857177734375, -0.00311279296875, -0.0152587890625, -0.004425048828125, 0.005706787109375, 0.0062255859375, -9.393692016601562e-05, -7.2479248046875e-05, -0.0269775390625, -0.005889892578125, -0.00787353515625, -0.0091552734375, 0.00830078125, -0.015625, -0.0093994140625, -0.03515625, -0.0015869140625, -0.026611328125, -0.016357421875, 0.001251220703125, -0.01470947265625, 0.11328125, 0.0201416015625, 0.0174560546875, 0.0001983642578125, 0.0002593994140625, 0.011962890625, -0.005767822265625, 0.011962890625, 0.01226806640625, 0.0048828125, -0.0172119140625, -0.002777099609375, 0.007354736328125, 0.010986328125, 0.0010223388671875, -0.00262451171875, 0.027099609375, 0.0, -0.00201416015625, 0.0068359375, 0.00106048583984375, -0.01214599609375, 0.0115966796875, 0.0218505859375, -0.020263671875, 0.0111083984375, -0.03271484375, 0.00115966796875, 0.0228271484375, 0.0128173828125, 0.0002765655517578125, 0.01324462890625, -0.00592041015625, 0.018310546875, 0.010986328125, -0.00341796875, -0.003936767578125, -0.01373291015625, 0.00311279296875, 0.0166015625, -0.0162353515625, 0.00031280517578125, 0.01556396484375, -0.00726318359375, -0.0030975341796875, -0.00095367431640625, 0.02880859375, 0.0206298828125, 0.0002498626708984375, 0.03759765625, 0.005096435546875, 0.00225830078125, 0.0279541015625, 0.007354736328125, -0.00927734375, 0.0084228515625, 0.0034332275390625, 4.029273986816406e-05, -0.00970458984375, 0.015625, -0.01043701171875, 0.0059814453125, -0.00726318359375, 0.01312255859375, -0.01434326171875, 0.026611328125, -0.016845703125, -0.005767822265625, 0.005035400390625, -0.00506591796875, 0.00799560546875, -0.004852294921875, 0.0113525390625, 0.0087890625, 0.01806640625, -0.007415771484375, -0.0274658203125, 0.00185394287109375, -0.00653076171875, 0.0150146484375, -0.0091552734375, -0.01495361328125, 0.0027923583984375, -0.0004482269287109375, -0.00176239013671875, 0.0020904541015625, 0.00823974609375, -0.01031494140625, -0.0023651123046875, 0.01416015625, -0.00543212890625, 0.00112152099609375, 0.011962890625, 0.0084228515625, 0.0159912109375, 0.008056640625, -0.022705078125, 0.01055908203125, -0.00677490234375, 0.010986328125, -0.005645751953125, 3.9577484130859375e-05, 0.0079345703125, -0.0020599365234375, -0.005584716796875, 0.01141357421875, -0.007415771484375, -0.01373291015625, -0.00185394287109375, 0.0277099609375, 0.0018157958984375, -0.048583984375, -0.027099609375, 2.4318695068359375e-05, -0.0025787353515625, -0.0072021484375, 0.00726318359375, -0.00110626220703125, 0.01312255859375, 0.0050048828125, 0.0118408203125, 0.111328125, -0.0240478515625, 0.0191650390625, -0.004547119140625, 0.00750732421875, 0.0091552734375, 0.01348876953125, 0.0128173828125, 0.0257568359375, 0.004486083984375, 0.0016632080078125, -0.00341796875, 0.0034332275390625, -0.029541015625, 0.0035400390625, -0.0172119140625, 0.01141357421875, -0.02001953125, -0.0166015625, 0.05712890625, 0.0159912109375, 0.010986328125, 0.00162506103515625, -0.013427734375, -0.0032806396484375, 0.0086669921875, 0.005859375, 0.01129150390625, -0.00299072265625, 0.00927734375, -0.0380859375, 0.0030059814453125, -0.002197265625, -0.005157470703125, 0.005706787109375, -0.0014190673828125, -0.002410888671875, -0.013916015625, 0.00506591796875, 0.00555419921875, 0.01116943359375, -0.00101470947265625, 0.0081787109375, -0.0032501220703125, -0.01470947265625, -0.00189208984375, -0.0089111328125, -0.018798828125, -0.005859375, 0.006439208984375, -0.002960205078125, 0.001495361328125, -0.0059814453125, 0.005218505859375, 0.00093841552734375, -0.011962890625, -0.015380859375, 0.0084228515625, 0.058837890625, -0.0244140625, -0.00579833984375, -0.004302978515625, -0.0142822265625, 0.004150390625, 0.006134033203125, -0.004669189453125, -0.005096435546875, -0.0050048828125, -0.00909423828125, -0.0185546875, 0.01373291015625, 0.0172119140625, -0.003631591796875, 0.009033203125, -0.01025390625, -0.00146484375, 0.01019287109375, -0.00726318359375, -0.00408935546875, -0.01226806640625, -0.004058837890625, -0.01483154296875, -0.01397705078125, -0.00021076202392578125, 0.025634765625, 0.01495361328125, -0.0113525390625, 0.00750732421875, 0.006561279296875, 0.00927734375, 0.0096435546875, -0.0028839111328125, -0.013427734375, 0.000667572021484375, 0.02197265625, -0.029541015625, -0.00179290771484375, -0.000858306884765625, -0.004241943359375, -0.0152587890625, -0.00390625, -0.0203857421875, -0.01025390625, -0.002197265625, -0.0228271484375, -0.0008392333984375, 0.01214599609375, -0.02734375, -0.00262451171875, 0.0023956298828125, -0.02685546875, -0.01611328125, 0.036865234375, -0.00128936767578125, 0.00543212890625, -0.00909423828125, -0.0010986328125, 0.006927490234375, 0.001922607421875, 0.00335693359375, 0.0034637451171875, -0.0159912109375, -0.0240478515625, -0.0079345703125, 0.0037994384765625, 0.01470947265625, 0.015380859375, 0.01385498046875, 0.0211181640625, 0.006988525390625, 0.00122833251953125, 0.01171875, -0.006744384765625, -0.010498046875, 0.0181884765625, 0.0033111572265625, -0.000255584716796875, 0.023681640625, -0.00946044921875, 0.003326416015625, -0.0098876953125, 0.0166015625, -0.0260009765625, 0.00628662109375, -0.018798828125, -0.003387451171875, -0.01458740234375, 0.004302978515625, 0.004486083984375, 0.004852294921875, -0.003143310546875, 0.01226806640625, 0.0032806396484375, -0.00836181640625, 0.001922607421875, -0.054931640625, 0.01556396484375, -0.01007080078125, -0.06640625, 0.009765625, 0.016357421875, -0.0108642578125, -0.005859375, 0.0225830078125, -0.005889892578125, 0.010009765625, 0.018798828125, 0.0012054443359375, -0.000453948974609375, 0.00018787384033203125, -0.003936767578125, -0.005340576171875, -0.00421142578125, -0.0028228759765625, 0.01409912109375, -0.00128936767578125, -0.01416015625, -0.01141357421875, 0.004791259765625, 0.01953125, -0.00579833984375, -0.001708984375, -0.0252685546875, -0.0157470703125, -0.0286865234375, 0.00182342529296875, 0.0076904296875, 0.0135498046875, 0.01397705078125, -0.040283203125, -0.01324462890625, 0.005645751953125, -0.03564453125, 0.0038909912109375, -0.0118408203125, 0.005645751953125, -0.00013828277587890625, -0.010498046875, 0.00726318359375, -0.0169677734375, 0.006072998046875, -9.059906005859375e-05, 0.0147705078125, 0.00469970703125, 0.0101318359375, 0.00677490234375, 0.00109100341796875, 0.00115966796875, 0.0157470703125, -0.00927734375, -0.01116943359375, -0.0133056640625, 0.001373291015625, 0.045166015625, 0.037841796875, -0.013427734375, 0.002655029296875, -0.00445556640625, 0.00860595703125, 0.002410888671875, 0.0177001953125, -0.000545501708984375, 0.0177001953125, 0.00099945068359375, 0.015380859375, 0.0286865234375, -0.00225830078125, 0.005096435546875, -0.006134033203125, -0.0034637451171875, 0.005279541015625, -0.018310546875, 0.0033111572265625, -0.00823974609375, 0.00506591796875, 0.018798828125, -0.013427734375, 0.0032196044921875, -0.001708984375, 0.078125, 0.01806640625, -0.016357421875, 0.01226806640625, -0.006561279296875, 0.014404296875, -0.004425048828125, -0.01019287109375, 0.0032806396484375, -0.0033111572265625, -0.0037994384765625, -0.005706787109375, -0.00982666015625, 0.00421142578125, -0.01312255859375, -0.0023193359375, 0.005157470703125, -0.0096435546875, 0.015380859375, 0.0019073486328125, -0.00726318359375, 0.0194091796875, 0.005401611328125, -0.00457763671875, 0.02197265625, 0.01043701171875, -0.00092315673828125, -0.0203857421875, -0.00107574462890625, -0.018310546875, 0.01708984375, 0.0101318359375, -0.00457763671875, -0.00015163421630859375, -0.013916015625, -0.002838134765625, 0.0068359375, 0.00070953369140625, -0.00186920166015625, 0.01055908203125, 0.01043701171875, -0.00567626953125, -0.0032196044921875, -0.01556396484375, 0.004241943359375, 0.019775390625, -0.0030670166015625, -0.0142822265625, 0.0033111572265625, 0.0166015625, -0.01177978515625, -0.0157470703125, 0.017822265625, -0.0303955078125, 0.00093841552734375, 0.013427734375, 0.00439453125, -0.007568359375, 0.0150146484375, -0.001953125, 0.00057220458984375, -0.010009765625, 0.006927490234375, -0.0118408203125, 0.00189971923828125, -0.00445556640625, 0.007476806640625, -0.0068359375, 0.006011962890625, -0.021484375, -0.007415771484375, 0.048828125, 0.00421142578125, -0.006744384765625, 0.0159912109375, 0.0111083984375, -0.03955078125, 0.0025482177734375, -0.0252685546875, -0.003936767578125, 0.008544921875, 0.003570556640625, 0.00131988525390625, -0.00107574462890625, -0.00592041015625, -0.030029296875, -0.031494140625, 0.010986328125, -0.009033203125, -0.001983642578125, 0.002716064453125, -0.00921630859375, 0.0159912109375, -0.0162353515625, 0.017822265625, 0.00194549560546875, 0.0030364990234375, -0.010009765625, -0.01397705078125, -0.00121307373046875, -0.0113525390625, 0.0034942626953125, -0.011962890625, 0.004119873046875, -0.00274658203125, 0.0009765625, -0.0299072265625, 0.0019989013671875, 0.00274658203125, 0.0035247802734375, -0.013427734375, -0.01397705078125, 0.005767822265625, 0.00179290771484375, -0.0179443359375, 0.005645751953125, -0.0012359619140625, 0.00970458984375, 0.0218505859375, -0.0216064453125, 0.017333984375, -0.010498046875, -0.0108642578125, -0.004730224609375, 0.0001392364501953125, -0.01312255859375, -0.00799560546875, 0.0103759765625, 0.00457763671875, -0.00799560546875, -0.01068115234375, 0.00151824951171875, 0.001373291015625, -0.00653076171875, -0.0113525390625, 0.006195068359375, -0.023681640625, 0.0194091796875, -0.01129150390625, -0.01177978515625, -0.00098419189453125, 0.0234375, 0.0038604736328125, -0.003936767578125, -0.006011962890625, -0.00933837890625, -0.00518798828125, 0.000774383544921875, 0.007293701171875, 0.0025177001953125, 0.0086669921875, 8.106231689453125e-05, -0.00183868408203125, -0.006011962890625, -0.01397705078125, 0.0091552734375, -0.00160980224609375, -0.007720947265625, -0.0034942626953125, 0.00016880035400390625, 0.0142822265625, -0.00162506103515625, 0.0145263671875, 0.00921630859375, -0.006134033203125, 0.006500244140625, 0.0172119140625, 0.0038909912109375, 0.0166015625, -0.00933837890625, 0.006927490234375, -0.0040283203125, -0.00543212890625, -0.0213623046875, -0.014404296875, 0.01409912109375, -0.00084686279296875, 0.027099609375, 0.0142822265625, 0.002716064453125, 0.0021514892578125, 0.006561279296875, 0.0, 0.001708984375, 0.01300048828125, 0.0216064453125, 0.0264892578125, 0.01153564453125, -0.0004749298095703125, 0.009765625, -0.0059814453125, -0.003692626953125, 0.0103759765625, 0.00799560546875, 0.008544921875, -0.0018157958984375, -0.0115966796875, 0.0159912109375, -0.005035400390625, -0.005645751953125, 0.00194549560546875, 0.0196533203125, -0.0081787109375, 0.000453948974609375, -0.01055908203125, 0.012451171875, -0.01031494140625, -0.0113525390625, 0.0026397705078125, -0.0035247802734375, -0.0101318359375, 0.0216064453125, -0.005645751953125, 0.03125, -0.01226806640625, -0.0115966796875, 0.01434326171875, 0.0103759765625, 0.00543212890625, 0.00189971923828125, 0.0042724609375, -0.01202392578125, 0.0068359375, -0.015625, -0.02490234375, -0.008056640625, 0.007171630859375, -0.0076904296875, 0.00024318695068359375, -0.0091552734375, -0.01019287109375, 0.01300048828125, -0.0028533935546875, 0.005096435546875, -0.003143310546875, 0.0177001953125, -0.0037994384765625, -0.0242919921875, 0.0135498046875, 0.0235595703125, -0.01043701171875, 0.022216796875, -0.01544189453125, -0.0030059814453125, -0.0101318359375, -0.004791259765625, 0.00347900390625, 0.00860595703125, -0.0108642578125, -0.005645751953125, 0.002105712890625, 0.00537109375, 0.015625, -0.006195068359375, -0.0130615234375, 0.00122833251953125, -0.004150390625, 0.00787353515625, -0.0096435546875, 0.003692626953125, 0.01953125, -0.01043701171875, 0.00830078125, -0.0081787109375, 0.00433349609375, -0.0152587890625, -0.01171875, -0.0034637451171875, 0.00136566162109375, 0.005157470703125, -0.01300048828125, -0.00823974609375, 0.01397705078125, -0.000530242919921875, 0.0177001953125, 0.0029296875, 0.00579833984375, 0.00445556640625, -0.0069580078125, -0.002838134765625, 0.006500244140625, 0.0166015625, 0.013916015625, 0.007415771484375, -0.0023956298828125, -0.009765625, 0.020751953125, -0.016357421875, -0.013671875, -0.0166015625, 0.0245361328125, 0.01129150390625, 0.0052490234375, -0.01409912109375, -0.004730224609375, -0.01300048828125, -0.0017852783203125, -0.00080108642578125, 0.01055908203125, -0.00494384765625, -0.01043701171875, -0.0030059814453125, 0.01031494140625, 3.8623809814453125e-05, -0.000274658203125, 0.019775390625, 0.00469970703125, 0.03125, 0.032470703125, 0.01226806640625, -0.025634765625, 0.004486083984375, -0.0084228515625, 0.0098876953125, -0.00885009765625, 0.000843048095703125, 0.0081787109375, -0.0130615234375, 0.007171630859375, 0.0174560546875, -0.006744384765625, 0.0023193359375, -0.04736328125, 0.0040283203125, -0.01031494140625, 0.02685546875, -0.00439453125, 0.0042724609375, 0.0108642578125, 0.007781982421875, -0.0087890625, 0.00982666015625, -0.000370025634765625, -0.0277099609375, -0.0035858154296875, 0.018310546875, 0.004547119140625, 0.02880859375, -0.000965118408203125, -0.0128173828125, 0.0203857421875, -0.004638671875, 0.0016326904296875, -0.00124359130859375, -0.012451171875, -0.002655029296875, -0.01202392578125, -0.03857421875, 0.01519775390625, -0.01220703125, -0.00341796875, -0.0012664794921875, -0.0026397705078125, -0.0172119140625, 0.016357421875, -0.00072479248046875, -0.0030670166015625, 0.006561279296875, 0.11962890625, 0.010009765625, -0.016357421875, 0.021728515625, -0.01312255859375, 0.004058837890625, -0.0025787353515625, -0.0179443359375, -0.01409912109375, -0.0037078857421875, -0.0016632080078125, -0.0059814453125, 0.00640869140625, -0.0274658203125, -0.0145263671875, 0.0072021484375, -0.00762939453125, -0.007720947265625, 0.007568359375, 0.0225830078125, -0.000698089599609375, 0.001129150390625, 0.013671875, 0.012451171875, -0.0115966796875, 0.0078125, 0.0322265625, 0.01055908203125, 0.01385498046875, 0.003753662109375, 0.003692626953125, 0.03173828125, -0.01214599609375, -0.006011962890625, 0.0079345703125, 0.0206298828125, -0.00122833251953125, -0.03125, -0.005279541015625, 0.00115966796875, 0.001922607421875, 0.0006561279296875, -0.0311279296875, -0.005340576171875, 0.000278472900390625, -0.0107421875, 0.005035400390625, -0.01031494140625, -0.00341796875, -0.004608154296875, -0.0101318359375, -0.0211181640625, -0.0087890625, -0.007598876953125, 0.0135498046875, 0.00726318359375, 0.0096435546875, 0.0135498046875, -0.0142822265625, 0.015625, -0.019775390625, -0.0054931640625, -0.0128173828125, 0.006744384765625, 0.0177001953125, -0.00147247314453125, -0.006072998046875, -0.018798828125, 0.0037078857421875, 0.035400390625, 0.0006866455078125, -0.00421142578125, 0.01483154296875, 0.00299072265625, 0.0252685546875, -0.01513671875, -0.00119781494140625, 0.004638671875, -0.00457763671875, -0.019287109375, -0.0015869140625, -0.01092529296875, 0.00384521484375, 0.0234375, -0.01495361328125, 0.0098876953125, -0.005706787109375, -0.0107421875, -0.0091552734375, 0.00174713134765625, -0.01495361328125, 0.00021076202392578125, -0.00176239013671875, 0.00250244140625, 0.002960205078125, -0.0036468505859375, -0.018310546875, -0.0040283203125, -0.0113525390625, 0.019775390625, 0.01055908203125, 0.0157470703125, -0.0036773681640625, -0.01031494140625, 0.0021820068359375, -0.013671875, -0.007049560546875, -0.018310546875, -0.00927734375, -0.015380859375, -0.01611328125, 0.019775390625, 0.007781982421875, 0.006103515625, -0.006195068359375, -0.01214599609375, -0.00927734375, 0.018310546875, -0.005157470703125, -0.007049560546875, 0.0003795623779296875, -0.0013427734375, -0.0152587890625, 0.064453125, 0.0034942626953125, -0.02099609375, 0.042236328125, -0.002166748046875, -0.01434326171875, -0.00128936767578125, -0.000759124755859375, -0.0234375, 0.023193359375, 0.01141357421875, -0.0032501220703125, -0.00506591796875, -0.020751953125, -0.0091552734375, 0.01409912109375, 0.0013275146484375, 0.002410888671875, -0.003814697265625, 0.01043701171875, -0.0244140625, 0.00457763671875, 0.007171630859375, -0.00433349609375, 0.000812530517578125, -0.01312255859375, 0.01263427734375, -0.0091552734375, -0.00194549560546875, -0.0028839111328125, 0.025146484375, 0.095703125, 0.00396728515625, -0.007720947265625, -0.0157470703125, -0.006134033203125, -0.01055908203125, 0.01092529296875, 0.005584716796875, 0.0108642578125, -0.0050048828125, -0.0185546875, 0.006988525390625, 0.01171875, 0.011962890625, 0.006072998046875, 0.02392578125, 0.007568359375, -0.0174560546875, -0.0118408203125, 0.00799560546875, -0.001556396484375, 0.004425048828125, 0.006134033203125, -0.0244140625, -0.006561279296875, 0.00958251953125, -0.002685546875, -0.0030670166015625, -0.01904296875, 0.0022125244140625, -0.0186767578125, -0.002349853515625, 0.00628662109375, 0.00946044921875, -0.04150390625, 0.00830078125, -0.00634765625, -0.0096435546875, -0.0260009765625, 0.0234375, -0.007171630859375, -0.0030364990234375, 0.01171875, 0.00482177734375, -0.0108642578125, -0.00127410888671875, -0.00024318695068359375, -0.00665283203125, 0.00543212890625, 0.0023651123046875, -0.00921630859375, -0.007568359375, -0.01385498046875, -0.00168609619140625, -0.003692626953125, 0.01300048828125, 0.010986328125, -0.00592041015625, -0.0135498046875, 0.00982666015625, -0.0189208984375, -0.00872802734375, -0.00439453125, -0.01116943359375, -0.004425048828125, -0.01287841796875, -0.006134033203125, -0.0023193359375, -0.0034942626953125, 0.001678466796875, -0.0169677734375, 0.0159912109375, -0.00079345703125, -0.001556396484375, -0.01153564453125, 0.053955078125, -0.0172119140625, -0.0011444091796875, 0.004669189453125, 0.00185394287109375, -0.00274658203125, 0.0029296875, -0.0081787109375, -0.00799560546875, -0.01239013671875, 0.011962890625, -0.0113525390625, 0.00946044921875, -0.009033203125, 0.00421142578125, 0.0260009765625, 0.0252685546875, -0.0108642578125, 0.005859375, -0.0010986328125, -0.01177978515625, -0.0028839111328125, 0.01171875, -0.022216796875, 0.00787353515625, -0.0091552734375, -0.01409912109375, 0.01177978515625, -0.0196533203125, 0.010009765625, 0.00726318359375, 0.00933837890625, 0.0002384185791015625, -0.0172119140625, 0.007598876953125, -0.0091552734375, -0.0010986328125, 0.0091552734375, -0.0228271484375, -0.15234375, -0.00970458984375, 0.00011873245239257812, -0.00933837890625, 0.010009765625, -0.004150390625, 0.0030975341796875, 0.0081787109375, -0.02734375, 0.0174560546875, 0.021484375, -0.0179443359375, -0.007080078125, 0.0159912109375, 0.041748046875, -0.0302734375, -0.007049560546875, 0.007781982421875, -0.0024261474609375, 0.000598907470703125, -0.0152587890625, 0.00811767578125, 0.01385498046875, 0.01226806640625, -0.006195068359375, -0.00787353515625, -0.000553131103515625, -0.003631591796875, 0.000732421875, -0.034423828125, 0.003173828125, 0.0022735595703125, 0.00043487548828125, -0.01397705078125, -0.0029449462890625, -0.05712890625, -0.0135498046875, -0.01177978515625, 0.0157470703125, 0.0028533935546875, -0.0235595703125, 0.001129150390625, -0.01177978515625, -0.03466796875, 0.0037078857421875, -0.0067138671875, -0.01055908203125, 0.017333984375, -0.006195068359375, -0.004669189453125, -0.0012664794921875, 0.001190185546875, -0.0010223388671875, 0.0172119140625, -0.0022125244140625, -0.0081787109375, -0.0027008056640625, -0.002288818359375, 0.01324462890625, 0.015380859375, -0.01434326171875, -0.01434326171875, 0.022216796875, 0.016845703125, -0.01348876953125, 0.0126953125, -0.00628662109375, -0.0113525390625, -0.0034942626953125, -0.000591278076171875, -0.007049560546875, 0.0081787109375, -0.018310546875, 0.006744384765625, -0.01214599609375, 0.012451171875, -0.00830078125, 0.0281982421875, -0.033203125, -0.01324462890625, -0.00069427490234375, -0.00640869140625, -0.0111083984375, 0.0021820068359375, -0.010009765625, 0.01019287109375, 0.00738525390625, 0.01202392578125, -0.00946044921875, -0.01171875, 0.0069580078125, 0.00946044921875, 0.002655029296875, 0.0498046875, -0.01171875, -0.000682830810546875, 0.01043701171875, 0.006195068359375, 0.0150146484375, 0.02197265625, -0.000148773193359375, 0.00341796875, -0.0029449462890625, -0.00506591796875, 0.004150390625, -0.00848388671875, 0.010009765625, -0.0052490234375, -0.0279541015625, -0.00201416015625, -0.012451171875, -0.004364013671875, -0.062255859375, -0.0024261474609375, 0.005584716796875, 0.0206298828125, 0.01385498046875, 0.0096435546875, 0.01483154296875, -0.004486083984375, 0.0009765625, -0.12158203125, -0.0013580322265625, 0.008544921875, -0.00860595703125, 0.007720947265625, 0.0218505859375, -0.007080078125, 0.014404296875, 0.00982666015625, 0.0023651123046875, -0.016845703125, -0.001495361328125, 0.0013885498046875, -0.01483154296875, -0.02197265625, -0.002838134765625, -0.01031494140625, -0.00860595703125, 0.01385498046875, -0.00811767578125, -0.002685546875, -0.016357421875, 0.0078125, 0.000885009765625, 0.0069580078125, 0.048095703125, 0.018310546875, 0.0029449462890625, 0.003997802734375, -0.0211181640625, -0.039306640625, 0.01556396484375, 0.01556396484375, -0.010009765625, 0.025634765625, 0.010009765625, -0.0067138671875, -0.00799560546875, 0.0024566650390625, -0.0069580078125, -0.016845703125, -0.016845703125, -0.019287109375, -0.00799560546875, -0.0003108978271484375, 0.00787353515625, -0.010986328125, -0.01129150390625, 0.01385498046875, -0.026611328125, 0.004180908203125, 0.008056640625, -0.0126953125, 7.867813110351562e-05, -0.0252685546875, -0.01171875, 0.00885009765625, 0.005859375, -0.0130615234375, -0.006072998046875, -0.01031494140625, 0.01031494140625, -0.0196533203125, -0.0091552734375, 0.006500244140625, 0.0150146484375, 0.01171875, 0.0067138671875, 0.038330078125, 0.019775390625, 0.001922607421875, 0.01300048828125, -0.007781982421875, 0.0235595703125, 0.01141357421875, 0.0260009765625, 0.01385498046875, 0.0206298828125, -0.004241943359375, 0.0011444091796875, 0.0003223419189453125, 0.0145263671875, -0.02001953125, 0.009033203125, 0.0021514892578125, -0.0118408203125, 0.0174560546875, -0.000736236572265625, -0.006072998046875, 0.00665283203125, 0.004547119140625, 0.016845703125, -0.00113677978515625, -0.03076171875, -0.01458740234375, -0.003936767578125, -0.01324462890625, -0.0130615234375, 0.0098876953125, 0.00848388671875, -0.00274658203125, -0.01348876953125, 0.004364013671875, -0.0076904296875, 0.0142822265625, 0.00970458984375, -0.0045166015625, 0.000934600830078125, 0.00113677978515625, 0.021484375, 0.03271484375, 0.0045166015625, 0.01300048828125, 0.002288818359375, 0.0257568359375, -0.02099609375, 0.006011962890625, -0.003753662109375, -0.00421142578125, 0.01239013671875, 0.01409912109375, 0.0191650390625, -0.0206298828125, -0.01397705078125, -0.0023956298828125, 0.023681640625, -0.0234375, 0.0177001953125, 0.010986328125, 0.0047607421875, -0.01312255859375, 0.0087890625, 0.00836181640625, -0.00555419921875, -0.00982666015625, 0.0062255859375, 0.0023193359375, 0.01153564453125, -0.02001953125, 0.007354736328125, -0.002655029296875, 0.000522613525390625, 0.01312255859375, 0.021484375, -0.0035247802734375, 0.03369140625, -0.0023345947265625, -0.0026092529296875, -0.00054931640625, -0.004058837890625, -0.007171630859375, -0.007415771484375, 0.005706787109375, -0.00250244140625, -0.01470947265625, -0.0194091796875, -0.00982666015625, 0.00738525390625, 0.0034332275390625, -0.00823974609375, 0.00506591796875, -0.00909423828125, 0.001312255859375, 0.0003223419189453125, -0.0059814453125, -0.030029296875, -0.006195068359375, -0.01263427734375, -0.006103515625, -0.01220703125, -0.00049591064453125, 0.0196533203125, 0.0001392364501953125, 0.009521484375, 0.0118408203125, -0.00421142578125, -0.01495361328125, -0.01385498046875, -0.025634765625, 0.00543212890625, -0.00970458984375, -0.00157928466796875, -0.002105712890625, 0.003204345703125, 0.00506591796875, -0.0108642578125, -0.005645751953125, 0.02685546875, -0.004852294921875, -0.01068115234375, -0.00390625, -0.09375, -0.0167236328125, -0.003326416015625, -0.01544189453125, -0.013671875, -0.01263427734375, -0.01611328125, -0.00421142578125, -0.0128173828125, -0.01806640625, -0.01068115234375, 0.0050048828125, -0.00787353515625, 0.0126953125, -0.0054931640625, 0.0018768310546875, 0.01611328125, 0.017578125, -0.1416015625, -0.018310546875, -0.0177001953125, -0.004913330078125, -0.01043701171875, -0.00830078125, 0.005340576171875, 0.0260009765625, 0.006500244140625, -0.0032806396484375, -0.00384521484375, 0.007568359375, 0.0084228515625, 0.00194549560546875, 0.01373291015625, 0.04296875, 0.002410888671875, 0.0079345703125, -0.00933837890625, -0.021728515625, -7.724761962890625e-05, 0.01153564453125, -0.004364013671875, 0.002899169921875, -0.01055908203125, 0.00640869140625, -0.0118408203125, -0.00445556640625, 0.0019683837890625, -0.0032196044921875, 0.002471923828125, -0.00555419921875, 0.0174560546875, -0.0196533203125, -0.00238037109375, -0.0277099609375, -0.007781982421875, 0.0380859375, 0.025146484375, 0.0026397705078125, -0.006103515625, 0.007049560546875, -0.01239013671875, 0.004241943359375, 0.01348876953125, 0.003204345703125, -0.0009765625, -0.00173187255859375, -0.0242919921875, 0.001220703125, -0.0169677734375, -0.002655029296875, 0.00457763671875, -0.01220703125, 0.0013427734375, 0.021484375, 0.00543212890625, 0.0002899169921875, 0.0174560546875, -0.0177001953125, -0.0081787109375, -0.022216796875, 0.004058837890625, 0.0299072265625, -0.01025390625, 0.01214599609375, 0.004852294921875, 0.01153564453125, 0.01483154296875, -0.03271484375, -0.0093994140625, -0.000308990478515625, 0.01458740234375, 0.006072998046875, 0.0050048828125, 0.0194091796875, 0.006744384765625, -0.0299072265625, -0.0029296875, 0.00567626953125, -0.003387451171875, -0.017578125, 0.0078125, 0.00640869140625, -0.021484375, 0.0021820068359375, 0.003387451171875, 0.004425048828125, -0.00457763671875, 7.581710815429688e-05, 0.0025787353515625, -0.00025177001953125, -0.0021514892578125, 0.034423828125, -0.00011730194091796875, -0.005401611328125, -0.0108642578125, 0.0079345703125, -0.0022125244140625, 0.000286102294921875, 0.01239013671875, 0.030517578125, 0.0240478515625, -0.004302978515625, -0.002105712890625, -0.0108642578125, 0.004058837890625, -0.014404296875, -0.013671875, 0.00927734375, 0.01220703125, 0.00946044921875, 0.0274658203125, -0.0019989013671875, -0.007049560546875, 0.01043701171875, 0.00013637542724609375, 0.01202392578125, 0.002532958984375, 0.02001953125, -0.01373291015625, 0.0029449462890625, 0.0203857421875, 0.0027923583984375, 0.006072998046875, -0.006011962890625, -0.0036773681640625, 0.01007080078125, 0.0042724609375, -0.00787353515625, -0.01055908203125, 0.01007080078125, 0.01458740234375, -0.00665283203125, 0.009033203125, 0.005645751953125, -0.10498046875, 0.00079345703125, 0.010009765625, -0.0211181640625, 0.00677490234375, -0.022705078125, 0.00182342529296875, 0.00171661376953125, 0.00016689300537109375, 0.00433349609375, 0.01483154296875, 0.0115966796875, -0.01043701171875, -0.0081787109375, -0.017333984375, 0.01513671875, -0.0084228515625, 0.019775390625, 0.0166015625, -0.01385498046875, 0.00225830078125, 0.03271484375, 0.00482177734375, 0.011962890625, 0.00726318359375, 0.0206298828125, 0.01348876953125, -0.01214599609375, -0.001800537109375, -0.002105712890625, 0.000453948974609375, 0.0111083984375, -0.01263427734375, -0.0002384185791015625, 0.013671875, -0.0034942626953125, -0.000911712646484375, 0.00147247314453125, -0.01806640625, -0.018310546875, 0.0023956298828125, -0.0107421875, 0.005645751953125, -0.01171875, -0.0135498046875, -0.00421142578125, 1.4994293451309204e-07, 0.0020751953125, 0.03515625, -0.03564453125, -0.003265380859375, 0.0084228515625, -0.008544921875, -0.025390625, -0.006927490234375, 0.0203857421875, -0.010009765625, 0.006439208984375, 0.003997802734375, -0.0072021484375, 0.0260009765625, -0.000736236572265625, -0.0191650390625, 0.0106201171875, -0.0213623046875, 0.007568359375, 0.057373046875, -0.01171875, 0.01141357421875, 0.006622314453125, -0.0037384033203125, -0.0152587890625, 0.017333984375, -0.006622314453125, 0.01153564453125, -0.00958251953125, -0.00762939453125, -0.023681640625, 0.016845703125, -0.000732421875, 0.0062255859375, -0.00457763671875, 0.0101318359375, 0.0023956298828125, 0.0257568359375, 0.00567626953125, 0.0113525390625, -0.00933837890625, -0.0111083984375, 0.02685546875, -0.029541015625, -0.00225830078125, -0.03125, -0.023681640625, -0.0166015625, -0.01214599609375, 0.0159912109375, -0.000919342041015625, 0.0032501220703125, -0.0098876953125, 0.01409912109375, 0.000423431396484375, -0.0011749267578125, 0.00506591796875, 0.0111083984375, 0.0103759765625, 0.01239013671875, 0.005157470703125, 0.000244140625, -0.0002899169921875, 0.00433349609375, 0.0245361328125, -0.01220703125, -0.005157470703125, -0.00830078125, -0.006134033203125, 0.0021514892578125, -0.0194091796875, 0.0067138671875, -0.0247802734375, 0.00872802734375, -0.0098876953125, -0.00885009765625, -0.007080078125, 0.00494384765625, 0.00183868408203125, -0.0159912109375, 0.0203857421875, 0.01513671875, 0.0107421875, -0.006866455078125, 0.021728515625, 0.03515625, 0.00927734375, -0.0089111328125, -0.0030670166015625, 0.004425048828125, -0.0203857421875, 0.00567626953125, 0.00921630859375, -0.0115966796875, 0.004852294921875, 0.00469970703125, 0.020751953125, 0.00189208984375, 0.01153564453125, -0.00799560546875, -9.834766387939453e-06, 0.00168609619140625, -0.003265380859375, -0.007049560546875, -0.0030517578125, -0.03271484375, -0.0162353515625, 0.003326416015625, 0.00665283203125, -0.00384521484375, -0.00885009765625, 0.01397705078125, 0.018310546875, 0.000762939453125, -0.000629425048828125, 0.01263427734375, -0.00738525390625, -0.0020599365234375, -0.035400390625, 0.0054931640625, -0.003753662109375, -0.004150390625, 0.005218505859375, -0.01300048828125, -0.00109100341796875, -0.00653076171875, -0.01806640625, 0.013916015625, -0.0096435546875, -0.0225830078125, -0.005859375, -0.0211181640625, -0.0111083984375, 0.034912109375, -0.000308990478515625, -0.00811767578125, 0.0098876953125, -0.0050048828125, 0.01141357421875, -0.021484375, -0.0218505859375, 0.041259765625, 0.001373291015625, -0.00025177001953125, -0.005462646484375, 0.00048065185546875, 0.031494140625, -0.0107421875, 0.01373291015625, -0.0081787109375, 0.00750732421875, 0.0166015625, -0.00099945068359375, -0.001251220703125, -0.002349853515625, -0.01116943359375, 0.0101318359375, 0.00885009765625, 0.002410888671875, -0.006744384765625, -0.02001953125, 0.00628662109375, -0.01312255859375, 0.00408935546875, -0.0159912109375, 0.01458740234375, -0.0062255859375, -0.0216064453125, -0.000667572021484375, -0.0062255859375, -0.0032196044921875, 0.03271484375, -0.00970458984375, -0.000762939453125, -0.00153350830078125, 0.004791259765625, 0.0159912109375, 0.00750732421875, -0.00811767578125, 0.0017852783203125, -0.00093841552734375, 0.0133056640625, 0.0011749267578125, -0.00457763671875, -0.0177001953125, -0.01300048828125, -0.00885009765625, 0.0216064453125, 0.0024566650390625, 0.0269775390625, 0.0152587890625, -0.0185546875, -0.0023040771484375, 0.0189208984375] /programs/dev/projects/testproject1 summ TCGA-02-2483 TCGA-02-2483.e73f6ba1-564c-4fea-b088-f2357ff49ee7 summ \ No newline at end of file +[0.0166015625, -0.0108642578125, 0.0002899169921875, 0.01397705078125, 0.0159912109375, 0.014404296875, 0.00909423828125, 0.0050048828125, -0.0032196044921875, -0.0115966796875, 0.0093994140625, -0.000873565673828125, 0.00182342529296875, -0.00116729736328125, -0.002044677734375, -0.01904296875, -0.01397705078125, 0.002532958984375, 0.0093994140625, 0.0036468505859375, 0.00897216796875, -0.00860595703125, 0.00836181640625, -0.0021820068359375, 0.01226806640625, 0.0081787109375, -0.006103515625, 0.007781982421875, -0.0211181640625, 0.01129150390625, 0.0008544921875, -0.002777099609375, -0.0159912109375, -0.001678466796875, 0.00579833984375, 0.006195068359375, 0.017822265625, 0.00384521484375, 0.0128173828125, -0.0054931640625, -0.004638671875, -0.0032501220703125, -0.00457763671875, 0.006011962890625, 0.02001953125, -0.005584716796875, -0.0034332275390625, -0.023193359375, -0.01544189453125, -0.0030975341796875, -6.818771362304688e-05, 0.0079345703125, 0.0106201171875, -0.2080078125, -0.002288818359375, 0.022705078125, -0.01397705078125, 0.00396728515625, 0.00133514404296875, 0.043701171875, -0.0015869140625, -0.01068115234375, 0.0177001953125, 0.013671875, 0.03076171875, 0.005767822265625, -0.02392578125, -0.004638671875, -0.00537109375, -0.0022430419921875, -0.0103759765625, 0.006866455078125, -0.00762939453125, -0.01202392578125, 0.009033203125, 0.0035247802734375, -0.00128936767578125, -0.0086669921875, -0.0002307891845703125, 0.0189208984375, 0.018310546875, -0.01806640625, -0.00653076171875, 0.00628662109375, 0.0011138916015625, -0.021484375, -0.0026092529296875, 0.0076904296875, -0.0108642578125, -0.00946044921875, -0.01171875, -0.041748046875, 0.01007080078125, 0.017333984375, -0.01239013671875, -0.0062255859375, -0.01458740234375, -0.0035247802734375, 0.0098876953125, -0.011962890625, 0.00787353515625, 0.018310546875, 0.006744384765625, -0.01373291015625, -0.019287109375, -0.019775390625, 0.006500244140625, -0.0166015625, 0.000331878662109375, 0.00836181640625, 0.00885009765625, 0.005584716796875, 0.00665283203125, -0.005157470703125, 0.003997802734375, 0.0021514892578125, -0.0034637451171875, -0.00469970703125, 0.00543212890625, 0.00787353515625, -0.001953125, 0.013671875, 0.015625, 0.007720947265625, -0.018310546875, -0.026123046875, 0.005401611328125, -0.0101318359375, 0.01409912109375, 0.01129150390625, -0.01226806640625, 0.0004730224609375, -0.00860595703125, -0.020751953125, -0.006195068359375, 0.0230712890625, 0.00186920166015625, 0.00823974609375, 0.0107421875, 0.004364013671875, -0.0157470703125, 0.00011491775512695312, -0.011962890625, 0.006988525390625, 0.00482177734375, -0.00151824951171875, 0.0157470703125, 0.0030059814453125, 0.0017852783203125, -0.000408172607421875, 0.01214599609375, -0.01019287109375, 0.00714111328125, -0.0062255859375, 0.002685546875, -0.0011444091796875, 0.0164794921875, -0.002532958984375, -0.00070953369140625, -0.01043701171875, -0.00115203857421875, 0.00518798828125, -0.01519775390625, 0.0177001953125, -0.013916015625, 0.01409912109375, 0.0179443359375, -0.01019287109375, 0.01708984375, 0.004241943359375, -0.0194091796875, 0.0206298828125, -0.005126953125, -0.01116943359375, -0.005645751953125, 0.0111083984375, -0.0081787109375, -0.004425048828125, 0.02099609375, 0.01055908203125, 0.005340576171875, -0.007293701171875, 0.0135498046875, 0.0034332275390625, 0.00823974609375, 0.030517578125, -0.005462646484375, -0.002838134765625, 0.006072998046875, 0.01141357421875, 0.0036773681640625, -0.00885009765625, -0.02392578125, 0.0025787353515625, -0.00433349609375, -0.01116943359375, 0.0634765625, 0.0037994384765625, 0.0030670166015625, -0.00897216796875, -0.005279541015625, 0.011962890625, -0.0067138671875, -0.01324462890625, 0.009033203125, 0.005279541015625, 0.0020904541015625, -0.00147247314453125, 0.005035400390625, -0.01226806640625, -0.002166748046875, -0.01055908203125, 0.00115966796875, 0.0007476806640625, 0.00830078125, -0.000469207763671875, 0.0133056640625, 0.00457763671875, -0.037109375, 0.004180908203125, 0.01312255859375, -0.006317138671875, 0.006622314453125, -0.0142822265625, 0.0107421875, -0.0106201171875, 0.0067138671875, 0.00592041015625, -0.000530242919921875, 0.0069580078125, 0.003814697265625, -0.0023193359375, 0.00555419921875, -0.00970458984375, 0.003814697265625, 0.005706787109375, 0.0113525390625, -0.0108642578125, 0.01171875, 0.0027313232421875, -0.004730224609375, -0.00946044921875, 0.006744384765625, -0.00103759765625, 0.00445556640625, -0.002716064453125, 0.006500244140625, 0.0218505859375, -0.006072998046875, -0.014404296875, 0.00579833984375, 0.0091552734375, -0.01324462890625, 0.007476806640625, -0.01611328125, -0.004730224609375, -0.002532958984375, 0.000896453857421875, 0.00074005126953125, -0.01708984375, 0.0091552734375, 0.01019287109375, 0.0125732421875, 0.0118408203125, -0.0029296875, 0.003631591796875, -0.01043701171875, 0.004638671875, 0.021484375, 0.0128173828125, -0.01397705078125, -0.01300048828125, 0.0223388671875, -0.01177978515625, -0.0034637451171875, 0.00970458984375, 0.0205078125, 0.000579833984375, 0.018798828125, -0.0107421875, -0.00109100341796875, -0.00130462646484375, -0.0034942626953125, -0.0025634765625, 0.01470947265625, 0.0108642578125, -0.031494140625, -0.00970458984375, -0.0235595703125, 0.000507354736328125, 0.006072998046875, 0.0054931640625, -0.00933837890625, -0.005401611328125, -0.00225830078125, 0.01806640625, 0.008056640625, 0.01806640625, 0.005096435546875, 0.00927734375, 0.0037078857421875, 0.0234375, 0.0068359375, -0.01385498046875, -0.01092529296875, 0.0008392333984375, 0.02392578125, -0.004364013671875, 0.01483154296875, 0.00994873046875, 0.01348876953125, 0.01300048828125, 0.0157470703125, -0.01226806640625, 0.002593994140625, 0.007781982421875, -0.0004634857177734375, -0.003936767578125, -0.0019989013671875, 0.0009613037109375, -0.0103759765625, 0.0089111328125, 0.032958984375, -0.0147705078125, 0.02685546875, -0.0036773681640625, -0.007171630859375, 0.00665283203125, -0.007080078125, 0.0076904296875, 0.01324462890625, -0.00958251953125, 0.009033203125, -0.0025634765625, 0.003997802734375, 0.00408935546875, 0.000949859619140625, 0.01055908203125, -0.002044677734375, 0.0113525390625, -0.00714111328125, 0.01416015625, 0.018310546875, 0.000583648681640625, 0.005279541015625, 0.025634765625, 0.006072998046875, 0.01239013671875, -0.0111083984375, -0.00098419189453125, -0.0010986328125, -0.00958251953125, -0.000820159912109375, -0.0174560546875, -0.01434326171875, -0.005584716796875, -0.01214599609375, -0.00390625, 0.0159912109375, -0.005279541015625, 0.006744384765625, -0.01348876953125, 0.00189208984375, 0.01806640625, 0.0169677734375, 0.009033203125, 0.0019683837890625, -0.0031585693359375, -0.005096435546875, -0.0010223388671875, 0.0218505859375, -0.01080322265625, 0.022216796875, 0.000640869140625, -0.0218505859375, 0.019775390625, -0.0194091796875, 0.0269775390625, -0.00567626953125, -0.019775390625, 0.00762939453125, -0.00518798828125, -0.0033111572265625, 0.0001964569091796875, 0.00469970703125, 0.0029449462890625, -0.004638671875, -4.4345855712890625e-05, 0.0108642578125, -3.24249267578125e-05, 0.000885009765625, -0.0062255859375, -0.01068115234375, 0.00168609619140625, -0.01495361328125, -0.00543212890625, 0.013671875, 0.0279541015625, -0.019775390625, 0.01416015625, -0.0045166015625, 0.0037384033203125, -0.004730224609375, -0.007415771484375, -0.00160980224609375, 0.00396728515625, 0.0341796875, 0.0032501220703125, -0.0576171875, -0.00897216796875, -0.019775390625, 0.01031494140625, 0.00115966796875, 0.005126953125, -0.027099609375, 0.004241943359375, 0.00628662109375, -0.0013275146484375, -0.0303955078125, 0.0172119140625, 0.0181884765625, 0.00830078125, 0.01080322265625, -0.0113525390625, -0.00787353515625, -0.00384521484375, -0.0157470703125, -0.000537872314453125, 0.006195068359375, -0.022216796875, -0.005279541015625, -0.0096435546875, -0.01397705078125, 0.01116943359375, -0.00121307373046875, -0.0034332275390625, -0.001556396484375, 0.0023956298828125, 0.00640869140625, -0.0069580078125, 0.045166015625, 0.007049560546875, 0.0084228515625, -0.00089263916015625, -0.01055908203125, 0.00052642822265625, 0.0184326171875, -0.01177978515625, -0.0157470703125, 0.002105712890625, -0.00634765625, 0.00921630859375, -0.003936767578125, 0.0026092529296875, -0.005157470703125, -0.0174560546875, 0.027099609375, -0.00653076171875, -0.003173828125, -0.0142822265625, 0.00494384765625, -0.017333984375, -0.00022792816162109375, 0.0011749267578125, 0.000896453857421875, -0.0152587890625, -0.022216796875, -0.00051116943359375, 0.0081787109375, 0.0037841796875, 0.0128173828125, -0.0157470703125, 0.003936767578125, 0.01458740234375, 0.01416015625, 0.0174560546875, 0.00482177734375, 0.0223388671875, -0.0098876953125, -0.01287841796875, 0.031982421875, 0.008544921875, 0.0050048828125, 0.004302978515625, -0.0103759765625, 0.01348876953125, 0.01287841796875, -0.010986328125, -0.0167236328125, -0.00628662109375, 0.0030059814453125, -0.011962890625, -0.01806640625, 0.004852294921875, -0.005645751953125, -0.005157470703125, 0.00543212890625, 0.01397705078125, 0.0274658203125, -0.00182342529296875, -0.00579833984375, 0.0185546875, 0.001922607421875, 0.008544921875, -0.0130615234375, 0.00433349609375, 0.00070953369140625, 0.00160980224609375, -0.00311279296875, 0.007476806640625, -0.0040283203125, -0.005035400390625, 1.6808509826660156e-05, 0.01177978515625, -0.00116729736328125, -0.0142822265625, 0.01324462890625, 0.03515625, -0.019775390625, -0.00958251953125, 0.0179443359375, -0.00469970703125, -0.0091552734375, 0.00274658203125, -0.0087890625, -0.0108642578125, 0.015869140625, 0.015625, 0.01055908203125, 0.013916015625, 0.00048065185546875, 0.000606536865234375, -0.0002880096435546875, -0.0135498046875, -0.0091552734375, 0.0093994140625, 0.021484375, -0.0009613037109375, -0.0059814453125, -0.01312255859375, 0.0130615234375, 0.0012359619140625, -0.006317138671875, 0.01806640625, 0.002288818359375, 0.0128173828125, -0.00958251953125, 0.01116943359375, -0.0001697540283203125, -0.00579833984375, -0.0230712890625, -0.0172119140625, -0.03662109375, 0.00543212890625, -0.01544189453125, -0.0013885498046875, 0.002899169921875, 0.005218505859375, -0.01177978515625, -0.004730224609375, 0.004364013671875, 0.007354736328125, -0.007171630859375, -0.0001678466796875, -0.004302978515625, -0.004180908203125, 0.002105712890625, -0.004791259765625, -0.00469970703125, 0.00933837890625, -0.00067138671875, -0.03125, 0.00011920928955078125, 0.01495361328125, 0.00628662109375, -0.0244140625, -0.0096435546875, -0.0150146484375, 0.03564453125, -0.00171661376953125, -0.007415771484375, 0.003936767578125, 0.0037078857421875, 0.004791259765625, -0.01202392578125, -0.0078125, -0.010986328125, 0.003997802734375, -0.006011962890625, 0.006011962890625, -0.00677490234375, -0.019287109375, 0.000186920166015625, 0.0274658203125, 0.005889892578125, -0.010009765625, 0.0091552734375, -0.029541015625, 0.0033721923828125, -0.00189208984375, -0.0028839111328125, -0.00885009765625, 0.01556396484375, -1.728534698486328e-05, -0.0054931640625, 0.00860595703125, 0.019775390625, 0.01611328125, -0.00970458984375, 0.0059814453125, -0.0098876953125, 0.0045166015625, -0.01300048828125, -0.00095367431640625, 0.00067138671875, -0.00119781494140625, -0.021728515625, -0.0257568359375, -0.013671875, 0.0225830078125, 0.0029449462890625, 0.0108642578125, 0.01409912109375, 0.00142669677734375, -0.0084228515625, -0.000652313232421875, -0.01202392578125, 0.00872802734375, -0.003692626953125, -0.01312255859375, 0.00390625, -0.0166015625, -0.01019287109375, 0.00872802734375, 0.023681640625, 0.0033721923828125, 0.0006256103515625, 0.0128173828125, -0.0277099609375, 0.006988525390625, -0.0054931640625, 0.002960205078125, 0.0211181640625, -0.004852294921875, 0.007720947265625, -0.0062255859375, 0.00335693359375, -0.0216064453125, -0.00099945068359375, -0.0125732421875, -0.0042724609375, -0.01458740234375, -0.043701171875, 0.0026092529296875, 0.00063323974609375, -0.00098419189453125, -0.021728515625, 0.0191650390625, 0.020263671875, 0.01202392578125, -0.0067138671875, -0.0003299713134765625, 0.010986328125, 0.0201416015625, -0.005584716796875, -0.030517578125, 0.0274658203125, 0.016357421875, -0.00341796875, 0.0012664794921875, 0.0162353515625, -6.532669067382812e-05, -0.0001678466796875, -0.0062255859375, 0.023193359375, -0.01385498046875, -0.005889892578125, 0.01214599609375, -0.0021514892578125, -0.00823974609375, 0.00121307373046875, 0.0179443359375, 0.01214599609375, 0.009033203125, -0.041259765625, 0.00146484375, -0.00628662109375, -0.00038909912109375, 0.0076904296875, -0.0003566741943359375, -0.01385498046875, -0.0093994140625, -0.007568359375, 0.0030517578125, 0.017333984375, -0.0098876953125, -0.01177978515625, -0.0107421875, -0.0264892578125, 0.00537109375, -0.00787353515625, -0.021728515625, 0.0087890625, 0.0157470703125, -0.01287841796875, 0.07080078125, 0.0027313232421875, 0.0213623046875, 0.00390625, 0.0277099609375, -0.00098419189453125, -0.0130615234375, 0.0308837890625, 0.0142822265625, -0.0015716552734375, -0.001800537109375, 0.0035858154296875, 0.01141357421875, -0.0107421875, 0.00909423828125, -0.01409912109375, -0.0174560546875, 0.03271484375, 0.00848388671875, -0.008544921875, -0.0174560546875, 4.2438507080078125e-05, -0.00360107421875, 0.023193359375, -0.016845703125, 0.0130615234375, -0.0034942626953125, -0.01416015625, -0.018310546875, 0.002288818359375, -0.008056640625, -0.0078125, 0.00107574462890625, -0.002166748046875, -0.021484375, -0.000682830810546875, -0.01220703125, -0.006927490234375, 5.936622619628906e-05, -0.00750732421875, -0.01129150390625, -0.01055908203125, -0.0089111328125, -0.00017833709716796875, 0.006011962890625, -0.02099609375, -0.0067138671875, 0.0045166015625, 0.004638671875, -0.0206298828125, 0.0091552734375, 0.00311279296875, -0.00653076171875, -0.005157470703125, -0.00185394287109375, -0.016357421875, -3.2901763916015625e-05, 0.0107421875, 0.004302978515625, 0.00384521484375, -0.02490234375, 0.006744384765625, -0.01141357421875, -0.003570556640625, -0.00848388671875, 0.0145263671875, -0.000362396240234375, 0.008544921875, 0.0093994140625, 0.0029296875, 0.01458740234375, 0.0223388671875, -0.03955078125, -0.00555419921875, 0.003936767578125, 0.0081787109375, -0.00154876708984375, 0.0169677734375, 0.0006866455078125, -0.006195068359375, -0.0089111328125, 0.0194091796875, 0.0021820068359375, 0.0234375, -0.004364013671875, 0.00885009765625, -0.028564453125, -0.0010223388671875, -0.00762939453125, -0.007476806640625, 0.000133514404296875, -0.0234375, -0.005706787109375, -0.0032501220703125, 0.015869140625, 0.0157470703125, -0.000946044921875, -0.00177001953125, 0.0108642578125, -0.006561279296875, 0.00787353515625, -0.0142822265625, 0.003997802734375, -0.007049560546875, 0.003387451171875, -0.009521484375, 0.01116943359375, -0.01409912109375, -0.00457763671875, -0.01409912109375, 0.0030975341796875, 0.00125885009765625, 0.006744384765625, 0.01556396484375, -0.006011962890625, -0.0081787109375, -0.0035247802734375, 0.007568359375, 0.02001953125, 0.005706787109375, -0.01239013671875, -0.01434326171875, -0.0084228515625, 0.0002536773681640625, 0.0198974609375, -0.004638671875, 0.0014495849609375, -0.007415771484375, -0.06494140625, -0.0078125, 0.017822265625, -0.012451171875, 0.00099945068359375, 0.002166748046875, 0.00823974609375, -0.0185546875, -0.00787353515625, 0.0019683837890625, 0.0032806396484375, -0.00860595703125, 0.01348876953125, -0.0185546875, -0.003936767578125, 0.00640869140625, 0.0118408203125, 0.006195068359375, 0.016357421875, -0.01263427734375, 0.05029296875, -0.0098876953125, 0.00439453125, -0.00121307373046875, 0.0033721923828125, -0.00154876708984375, 0.018798828125, 0.013427734375, -0.010986328125, 0.0174560546875, 0.0026397705078125, -0.005889892578125, 7.915496826171875e-05, 0.002960205078125, 0.020751953125, 0.0028839111328125, 0.0084228515625, -0.0081787109375, 0.00010585784912109375, 0.0037994384765625, 0.005035400390625, -0.004852294921875, -0.0142822265625, 0.0196533203125, 0.01220703125, -0.00537109375, 0.01373291015625, -0.0185546875, -0.01611328125, 0.017822265625, -0.004852294921875, -0.0400390625, 0.0089111328125, 0.0037994384765625, -0.00052642822265625, -0.007049560546875, 0.002349853515625, -0.0240478515625, 0.026123046875, -0.00799560546875, -0.0174560546875, 0.0113525390625, -0.0142822265625, -0.0027008056640625, 0.00567626953125, 0.01129150390625, 0.020751953125, 0.0206298828125, 0.005126953125, -0.00177001953125, -0.0027008056640625, 0.01708984375, -0.023681640625, 0.0150146484375, -0.0026397705078125, 0.00543212890625, 0.00628662109375, -0.0016021728515625, -0.00823974609375, 0.00494384765625, -0.006744384765625, -0.004058837890625, 0.00897216796875, 0.01031494140625, -0.0128173828125, 0.0072021484375, 0.0130615234375, -0.0037994384765625, 0.0101318359375, -0.0009002685546875, -0.0225830078125, 0.0196533203125, 0.01287841796875, 0.0040283203125, 0.00408935546875, -0.00830078125, -0.0087890625, -0.0096435546875, 0.0027923583984375, 0.004302978515625, 0.000926971435546875, 0.00921630859375, 0.0035400390625, 0.00176239013671875, 0.0025177001953125, 0.01458740234375, 0.020263671875, 0.0194091796875, -0.00160980224609375, 0.0002689361572265625, -0.00141143798828125, 0.000293731689453125, 0.0157470703125, -0.0244140625, 0.00762939453125, 0.0118408203125, -0.01153564453125, -0.00335693359375, -0.007049560546875, 0.0181884765625, -0.0228271484375, 0.00830078125, -0.0234375, 0.000370025634765625, 0.01220703125, -0.0028228759765625, -0.004364013671875, -0.011962890625, -0.0003032684326171875, -0.01116943359375, 0.01409912109375, 0.001739501953125, -0.00927734375, 0.0125732421875, -0.0016632080078125, 0.000873565673828125, -0.00909423828125, 0.00093841552734375, -0.0084228515625, -0.0089111328125, 0.0208740234375, 0.0157470703125, -0.019287109375, 0.01904296875, 0.0019683837890625, -0.0028228759765625, -0.00176239013671875, 0.01287841796875, -0.01153564453125, 0.00341796875, -0.0047607421875, -0.0159912109375, 0.04345703125, -0.005157470703125, 0.01171875, 0.0027923583984375, 0.00250244140625, 0.016845703125, -0.0213623046875, -2.5153160095214844e-05, 0.02001953125, 0.006195068359375, 0.01324462890625, 0.002288818359375, 0.0166015625, 0.0157470703125, -0.00634765625, -0.0115966796875, 0.0167236328125, -0.046875, 0.0032196044921875, 0.0150146484375, 0.0157470703125, 0.0157470703125, 0.00799560546875, 0.026123046875, 0.007476806640625, 0.0014495849609375, 0.0125732421875, 0.01202392578125, -0.00958251953125, -0.000637054443359375, -0.00164031982421875, -0.001251220703125, -0.007293701171875, 0.00836181640625, 0.0087890625, 0.01141357421875, 0.00634765625, 0.0126953125, 0.01226806640625, -0.0013580322265625, 0.00121307373046875, -0.007598876953125, -0.0030975341796875, -0.015869140625, -0.0098876953125, -0.09765625, -0.01214599609375, -0.00946044921875, -0.0135498046875, -0.00860595703125, -0.0019989013671875, -0.0208740234375, -0.006622314453125, -0.00182342529296875, 0.0157470703125, -0.016845703125, -0.02490234375, -0.01434326171875, -0.0098876953125, -0.00518798828125, -0.0042724609375, 0.00860595703125, -0.0150146484375, -0.0010223388671875, -0.0108642578125, -0.002777099609375, -0.00592041015625, 0.002288818359375, -0.01220703125, 0.0028533935546875, 0.000919342041015625, -0.01458740234375, 0.007080078125, 0.0186767578125, 0.01409912109375, -0.00421142578125, 0.0021209716796875, -0.00274658203125, 0.001190185546875, -0.000843048095703125, 0.0037994384765625, -0.0172119140625, -0.007415771484375, -0.08447265625, 0.006744384765625, 0.0028533935546875, 0.007049560546875, -0.00439453125, 0.0159912109375, -0.002227783203125, -0.000579833984375, -0.031494140625, -0.01300048828125, 0.013671875, 0.00119781494140625, 0.0068359375, -0.00147247314453125, 0.006927490234375, 0.007080078125, -0.01092529296875, 0.009521484375, -0.022705078125, 0.006134033203125, 0.00946044921875, 0.01495361328125, 0.00555419921875, -0.001556396484375, -0.00811767578125, 0.000335693359375, 0.0087890625, -0.0169677734375, -0.00150299072265625, 0.0030975341796875, 0.0245361328125, -0.006561279296875, -0.013427734375, -0.00439453125, -0.010498046875, 0.0133056640625, -0.01470947265625, 0.0078125, 0.00023174285888671875, -0.00830078125, -0.005096435546875, -0.007049560546875, 4.1484832763671875e-05, 0.0150146484375, 0.0076904296875, 0.00994873046875, -0.000629425048828125, -0.0111083984375, 0.056640625, 0.0152587890625, 0.0118408203125, 0.006011962890625, -0.00830078125, -0.0194091796875, -0.0169677734375, 0.006103515625, -0.0108642578125, 0.058837890625, -0.0026702880859375, 0.0147705078125, 0.0091552734375, -0.00250244140625, 0.0019683837890625, 0.00341796875, 0.00909423828125, 0.0111083984375, -0.010009765625, -0.0037078857421875, -0.006195068359375, -0.0189208984375, 0.004058837890625, -0.00714111328125, -0.007598876953125, 0.003387451171875, -0.01239013671875, -0.021728515625, 0.0076904296875, 0.0302734375, -0.019287109375, -0.00127410888671875, 0.0045166015625, 0.003692626953125, 0.0030670166015625, -0.00115966796875, 0.00970458984375, -0.006561279296875, -0.00970458984375, 0.006988525390625, -0.00872802734375, -0.000762939453125, 0.00811767578125, -0.020751953125, 0.00054168701171875, -0.000946044921875, 0.00146484375, -0.0022125244140625, -0.0118408203125, -0.022705078125, 0.051513671875, 0.001953125, -0.006988525390625, -0.004791259765625, -0.0067138671875, -0.000499725341796875, 0.0179443359375, 0.01092529296875, 0.005584716796875, 0.00543212890625, -0.0115966796875, -0.010498046875, 0.00299072265625, -0.004150390625, 0.00933837890625, -0.01043701171875, -0.003936767578125, 0.0021820068359375, 0.025634765625, 0.015869140625, -0.005157470703125, 0.00390625, -0.0172119140625, -0.01458740234375, -0.01483154296875, -0.0032501220703125, -0.0015869140625, 0.003692626953125, -0.0157470703125, -0.009765625, 0.0040283203125, 0.021484375, 0.00147247314453125, 0.00872802734375, 0.007354736328125, 0.01025390625, -0.0019683837890625, 0.003692626953125, -0.00634765625, -0.0096435546875, 0.0107421875, -0.03369140625, 0.006927490234375, 0.01202392578125, 0.00921630859375, 0.00173187255859375, -0.00244140625, -0.002899169921875, 0.01007080078125, 0.009521484375, 0.00168609619140625, -0.008544921875, 0.00225830078125, 0.01263427734375, 0.0016937255859375, -0.003814697265625, -0.0184326171875, 0.00124359130859375, -0.0225830078125, -0.0111083984375, -0.00064849853515625, 0.0106201171875, -0.0177001953125, -0.0194091796875, -0.01611328125, 0.0166015625, 0.004425048828125, -0.0004634857177734375, -0.00665283203125, -0.005859375, 0.01043701171875, -0.006500244140625, 0.004638671875, 0.006134033203125, 0.000896453857421875, -0.0164794921875, 0.00189208984375, -0.05126953125, -0.00799560546875, -0.0211181640625, 0.00836181640625, -0.0107421875, 0.0030364990234375, -0.005126953125, 0.0026702880859375, 0.00347900390625, -0.01513671875, 0.0012054443359375, -0.00154876708984375, 0.01397705078125, -0.007476806640625, 0.0654296875, -0.013916015625, 0.0111083984375, 0.0025482177734375, -0.0128173828125, 0.0050048828125, 0.0247802734375, 0.0115966796875, -0.010498046875, 0.003997802734375, -0.0002765655517578125, 0.08154296875, 0.025634765625, -0.002105712890625, -0.0208740234375, -0.010498046875, 0.00274658203125, 0.00537109375, 0.00335693359375, -0.0125732421875, 0.00750732421875, -0.0004673004150390625, 0.0091552734375, 0.0242919921875, -0.0147705078125, -0.01397705078125, -0.0079345703125, -0.016845703125, -0.01556396484375, 0.019775390625, 0.0118408203125, 0.0240478515625, -0.004974365234375, 0.003692626953125, -0.00494384765625, 0.01495361328125, 0.019775390625, 0.007598876953125, 0.0166015625, -0.0244140625, 0.00860595703125, -0.0130615234375, -0.0023651123046875, 0.0013427734375, -0.007049560546875, 0.01214599609375, -0.0130615234375, -0.0152587890625, 0.0184326171875, 0.00970458984375, -0.01171875, 0.006927490234375, -0.005889892578125, -0.01239013671875, 0.008056640625, 0.000713348388671875, -0.00762939453125, -0.00469970703125, -0.00518798828125, 0.0029449462890625, 0.008056640625, 0.0009002685546875, -0.0037841796875, 0.00555419921875, -0.023681640625, -0.0032501220703125, -0.0029296875, 0.01171875, 0.0014801025390625, -0.01214599609375, 0.00860595703125, -0.007598876953125, 0.0014190673828125, 0.00299072265625, -0.01239013671875, 0.006744384765625, -0.0101318359375, 0.0184326171875, 0.017578125, 0.003326416015625, 0.01373291015625, 0.01904296875, -0.01031494140625, 0.0033111572265625, 0.0034637451171875, -0.000720977783203125, 0.003570556640625, -0.0191650390625, -0.0010223388671875, 0.009033203125, 0.0038604736328125, 0.00592041015625, 0.01025390625, -0.00927734375, -0.00537109375, -0.037353515625, 0.0244140625, 0.0157470703125, -0.0019073486328125, 0.02001953125, 0.008056640625, 0.00567626953125, -0.021484375, 0.025390625, 0.01116943359375, 0.005340576171875, -0.01171875, 0.006927490234375, -0.01287841796875, -0.0035247802734375, -0.0101318359375, 0.00970458984375, 0.0026092529296875, 0.0087890625, -0.009033203125, 0.115234375, 0.012451171875, -0.0054931640625, -0.17578125, 0.00738525390625, 0.01019287109375, -0.0211181640625, 0.00677490234375, -0.000335693359375, 0.0213623046875, 0.006744384765625, 0.01263427734375, -0.010009765625, -0.0020751953125, -0.0142822265625, -0.004547119140625, 0.004302978515625, 0.0072021484375, 0.006317138671875, -0.0026702880859375, -0.00927734375, -0.010986328125, -0.00665283203125, 0.009033203125, 0.00518798828125, -0.0159912109375, 0.004730224609375, 0.008544921875, 0.02783203125, 0.006866455078125, 0.001739501953125, 0.0030059814453125, -0.006561279296875, -0.0206298828125, -0.001251220703125, -0.002288818359375, 0.0235595703125, 0.0230712890625, 0.0038604736328125, -0.007293701171875, -0.0028533935546875, 0.004730224609375, 0.00927734375, 0.00653076171875, -0.002685546875, -0.0206298828125, 0.0230712890625, 0.00014019012451171875, 0.015625, 0.009521484375, 0.00311279296875, 0.01031494140625, 0.0048828125, 0.0111083984375, 0.010009765625, 0.00030517578125, 0.107421875, 0.021484375, 9.870529174804688e-05, -0.00494384765625, -0.01141357421875, -0.033203125, 0.013916015625, -8.535385131835938e-05, 0.01055908203125, 0.0004062652587890625, -0.00058746337890625, 0.0069580078125, 0.00299072265625, 0.01470947265625, -0.00537109375, 0.01214599609375, -0.000392913818359375, -0.000606536865234375, -0.005218505859375, 0.00927734375, 0.0205078125, -0.020263671875, -0.0084228515625, -0.00885009765625, 0.0, -0.000171661376953125, 0.00909423828125, -0.0084228515625, 0.022705078125, 0.00970458984375, -0.0242919921875, 0.0062255859375, 0.00142669677734375, -0.01434326171875, 0.00872802734375, 0.0034332275390625, -0.0004215240478515625, -0.00021839141845703125, -0.003143310546875, 0.0260009765625, 0.0130615234375, 0.01806640625, 0.026123046875, 0.0208740234375, 0.007049560546875, -0.0174560546875, -0.01263427734375, -0.000507354736328125, -0.00408935546875, 0.01416015625, 0.00133514404296875, 0.01129150390625, 0.017822265625, -0.0026397705078125, -0.00567626953125, -0.00579833984375, 0.007781982421875, -0.01177978515625, 0.038330078125, 0.0128173828125, -0.0172119140625, -0.00933837890625, 0.0225830078125, 0.015380859375, 0.00421142578125, -0.0028839111328125, 0.000499725341796875, 0.006927490234375, 0.027099609375, -0.0303955078125, -0.00927734375, 0.023681640625, 0.004913330078125, -0.00179290771484375, -0.016357421875, 0.006927490234375, 0.0011444091796875, -0.0042724609375, -0.021728515625, -0.01348876953125, -0.005706787109375, -0.01904296875, -0.0045166015625, 0.01019287109375, -0.00154876708984375, 0.00109100341796875, 0.010009765625, 0.016357421875, 0.0034942626953125, 0.01397705078125, 0.0084228515625, -0.0033111572265625, -0.00555419921875, -0.0150146484375, -0.00118255615234375, -0.004486083984375, -0.0128173828125, 0.00848388671875, -0.0030364990234375, -0.0235595703125, -0.003326416015625, 0.02880859375, 0.0206298828125, -0.004425048828125, 0.01092529296875, 0.003326416015625, 0.0002593994140625, -0.00543212890625, 0.000759124755859375, -0.0021209716796875, 0.0103759765625, 0.0038909912109375, 0.0010528564453125, -0.00677490234375, -0.0006866455078125, 0.002716064453125, -0.00153350830078125, -0.003997802734375, 0.0128173828125, -0.0152587890625, -0.01177978515625, -0.0019989013671875, -0.01007080078125, -0.0076904296875, -0.0086669921875, 0.00830078125, -0.0030059814453125, 0.0218505859375, -0.00921630859375, 0.0115966796875, 0.012451171875, 0.0054931640625, -0.00860595703125, 0.01129150390625, 0.0004425048828125, 0.007781982421875, 0.006134033203125, -0.004425048828125, 0.00089263916015625, -0.000469207763671875, -0.00125885009765625, 0.004730224609375, -0.0008544921875, -0.0016632080078125, -0.0177001953125, 0.0211181640625, 0.0037384033203125, 0.011962890625, 0.00799560546875, 0.00787353515625, 0.0145263671875, 0.000598907470703125, -0.0277099609375, -0.006866455078125, 0.0059814453125, -0.00109100341796875, 0.004241943359375, -0.004150390625, 3.62396240234375e-05, -0.00946044921875, -0.0025634765625, -0.00066375732421875, -0.01263427734375, -0.0128173828125, -0.002288818359375, -0.004302978515625, -0.0036468505859375, 0.0025482177734375, 0.01092529296875, 0.028564453125, -0.006866455078125, 0.016845703125, 0.018798828125, -0.0091552734375, 0.00872802734375, -0.00390625, 0.003692626953125, 0.00640869140625, -0.0147705078125, 0.00653076171875, 0.01519775390625, 0.0047607421875, -0.0150146484375, -0.00640869140625, -0.005462646484375, -0.0004634857177734375, -0.00176239013671875, 0.005706787109375, 0.0196533203125, 0.02197265625, -0.005462646484375, 0.010986328125, 0.01373291015625, -0.00078582763671875, 0.00186920166015625, 0.00762939453125, 0.0111083984375, -0.01129150390625, -0.00640869140625, 0.0111083984375, -0.01904296875, 0.0245361328125, 0.00130462646484375, -0.0033721923828125, -0.00396728515625, 0.0028533935546875, 0.00168609619140625, 0.016845703125, 0.006561279296875, 0.0081787109375, -0.00640869140625, -0.016845703125, -0.00634765625, 0.0400390625, -0.001220703125, -0.00933837890625, 0.00421142578125, 0.061767578125, -0.00531005859375, -0.0076904296875, 0.0130615234375, -0.005096435546875, -0.01544189453125, -0.00058746337890625, -0.01202392578125, 0.006072998046875, 0.00592041015625, -0.0115966796875, 0.00010347366333007812, -0.021484375, -0.01611328125, -0.006927490234375, -0.00738525390625, 0.05126953125, 0.00970458984375, 0.00112152099609375, 0.01214599609375, 0.0150146484375, -0.012451171875, -0.0184326171875, -0.01483154296875, 7.724761962890625e-05, 0.004241943359375, 0.006011962890625, -0.0004291534423828125, -0.00128936767578125, -0.00019168853759765625, -0.013671875, -0.0069580078125, -0.0084228515625, 0.0035247802734375, 0.005401611328125, 0.0030975341796875, -0.0216064453125, -0.002288818359375, -0.01202392578125, -0.003570556640625, -0.01409912109375, 0.004425048828125, -0.01141357421875, 5.1021575927734375e-05, 0.0107421875, -0.0004138946533203125, 0.0021820068359375, -0.003143310546875, -0.00165557861328125, -0.004791259765625, 0.0191650390625, -0.007080078125, -0.01287841796875, -0.009033203125, 0.009033203125, -0.0184326171875, -0.006439208984375, -0.00750732421875, 0.01409912109375, 0.007598876953125, 0.0024566650390625, -0.005645751953125, -0.01226806640625, -0.00118255615234375, 0.006317138671875, -0.005035400390625, -0.00970458984375, 0.004180908203125, -0.0029296875, 0.0159912109375, -0.02099609375, -0.0021209716796875, 0.00152587890625, -0.00131988525390625, 0.00860595703125, -0.00860595703125, -0.01141357421875, 0.0091552734375, -0.00274658203125, -0.021728515625, 0.0040283203125, 0.0194091796875, 0.00060272216796875, 0.02197265625, -0.0030670166015625, 0.0194091796875, -0.0022430419921875, -0.0037841796875, -0.00439453125, 0.016845703125, -0.0167236328125, 0.01007080078125, -0.01025390625, 0.0142822265625, 0.00469970703125, 0.018310546875, -0.031982421875, -0.005889892578125, 0.0194091796875, -0.000240325927734375, 0.017822265625, -0.01495361328125, 0.00164031982421875, 0.018798828125, 0.0032501220703125, -0.01031494140625, -0.004180908203125, -0.006744384765625, 0.00787353515625, -0.007568359375, 0.00494384765625, -0.003143310546875, -0.006866455078125, -0.006134033203125, -0.001251220703125, -0.0068359375, -0.002166748046875, 0.01239013671875, -0.003997802734375, -0.0030364990234375, -0.00927734375, 0.01220703125, 0.00885009765625, -0.005889892578125, 0.0050048828125, 0.00799560546875, 0.00750732421875, -0.00160980224609375, 0.00445556640625, 0.00787353515625, 0.0115966796875, -0.0018157958984375, 0.004730224609375, -0.0014801025390625, 0.0230712890625, -0.0054931640625, -0.00396728515625, 0.0157470703125, 0.0084228515625, -0.00787353515625, -0.00165557861328125, -0.0087890625, 0.0111083984375, -0.00421142578125, -0.00421142578125, 0.0189208984375, 0.013916015625, 0.0189208984375, -0.016357421875, -0.00885009765625, -0.019775390625, 0.013671875, -0.0038909912109375, -0.0037384033203125, -0.0208740234375, 0.007720947265625, 0.013427734375, 0.004913330078125, -0.00193023681640625, -0.003570556640625, 0.00640869140625, 0.00445556640625, -0.010986328125, 0.0115966796875, -0.010009765625, 0.0032806396484375, -0.001800537109375, 0.0054931640625, 0.009033203125, -0.0045166015625, -0.0023040771484375, 0.01202392578125, 0.0047607421875, -0.010009765625, 0.0133056640625, -0.007049560546875, 0.004852294921875, -0.003204345703125, 0.0196533203125, -0.00439453125, -0.006500244140625, -0.014404296875, -0.00836181640625, -0.0294189453125, -0.0052490234375, 0.001953125, -0.0150146484375, -0.00830078125, 0.01129150390625, -0.00131988525390625, -3.9577484130859375e-05, 0.00121307373046875, -0.010986328125, -0.00738525390625, -0.01116943359375, 0.0162353515625, -0.005218505859375, 0.00885009765625, 0.005035400390625, -0.00653076171875, 0.000972747802734375, -0.004486083984375, 0.01287841796875, -0.01007080078125, 0.0054931640625, 0.0262451171875, 0.0225830078125, -0.002685546875, 0.015380859375, 0.01129150390625, 0.000446319580078125, 0.0177001953125, -0.00787353515625, -0.018310546875, -0.00127410888671875, -0.007781982421875, -0.01031494140625, 0.040283203125, 0.002685546875, -0.00738525390625, -0.0029296875, -0.0159912109375, -0.00457763671875, 0.0068359375, -0.006317138671875, 0.0125732421875, -0.01080322265625, 0.01513671875, 0.006744384765625, -0.0069580078125, 0.005706787109375, -0.0107421875, 0.0247802734375, -0.00537109375, 0.007781982421875, 0.0045166015625, -0.00799560546875, 0.0025177001953125, -0.0020751953125, 0.002471923828125, -0.00127410888671875, -0.0177001953125, 0.007293701171875, 0.0242919921875, 0.00823974609375, -0.0150146484375, -0.010009765625, -0.011962890625, -0.000606536865234375, 0.000644683837890625, 0.0037384033203125, -0.01324462890625, -0.00885009765625, -0.007171630859375, 0.0098876953125, 0.01129150390625, -0.00396728515625, 0.0145263671875, -0.004638671875, -0.02099609375, 0.01171875, 0.0091552734375, -0.004302978515625, 0.000446319580078125, 0.000934600830078125, 0.01202392578125, 0.00787353515625, -0.0032501220703125, 0.01239013671875, 0.0125732421875, 0.006317138671875, -0.00506591796875, -0.0223388671875, -0.0135498046875, 0.01348876953125, 0.0091552734375, -0.00860595703125, -0.00482177734375, 0.00982666015625, 0.004486083984375, 0.019775390625, -0.00189208984375, 0.0054931640625, -0.0033721923828125, 0.0279541015625, -0.000873565673828125, -0.00811767578125, 0.0003223419189453125, 0.0159912109375, 0.01300048828125, 0.0017852783203125, 0.004058837890625, 0.0067138671875, 0.00116729736328125, -0.0223388671875, -0.0118408203125, -0.01373291015625, -0.007080078125, -0.006866455078125, 0.0010223388671875, 0.00128173828125, -0.013916015625, -0.01171875, -0.01806640625, -0.0093994140625, -0.0002727508544921875, 0.0206298828125, -0.004058837890625, -0.005096435546875, -0.00011014938354492188, -0.019775390625, 0.01068115234375, 0.00860595703125, -0.00469970703125, -0.01409912109375, 0.00506591796875, -0.004638671875, -0.01416015625, -0.00396728515625, 0.011962890625, 0.020263671875, 0.062255859375, -0.014404296875, -0.003753662109375, 0.00311279296875, -0.00250244140625, -0.00274658203125, -0.01434326171875, -0.0091552734375, 0.00023746490478515625, 0.006561279296875, -0.003631591796875, -0.006317138671875, -0.0001392364501953125, 0.000518798828125, -0.0045166015625, -0.10595703125, 0.0068359375, 0.01324462890625, 0.00146484375, 0.00024127960205078125, -0.0067138671875, 0.000858306884765625, -0.035888671875, -0.006011962890625, -0.0111083984375, 0.0023193359375, -0.0036468505859375, 0.00830078125, -0.00457763671875, -0.00982666015625, 0.00147247314453125, -0.01495361328125, -0.01385498046875, 0.001190185546875, 0.00927734375, 0.00433349609375, -0.0115966796875, 0.00185394287109375, -0.00164031982421875, 0.0001354217529296875, -0.01519775390625, 0.01324462890625, -0.017333984375, 0.038330078125, -0.0091552734375, -0.007568359375, 0.00067138671875, -0.0091552734375, 0.0042724609375, -0.0030059814453125, -0.0037384033203125, -0.0032196044921875, -0.01153564453125, -0.01129150390625, 0.00518798828125, -0.0166015625, 0.0177001953125, -0.06787109375, 0.0162353515625, 0.01470947265625, 0.01055908203125, -0.014404296875, 0.0033111572265625, -0.00946044921875, 0.000885009765625, 0.00506591796875, -0.00592041015625, 0.028564453125, -0.016357421875, 0.01025390625, -0.004425048828125, 0.0115966796875, -0.005157470703125, 0.0135498046875, 0.00927734375, 0.015869140625, 0.00811767578125, 0.004150390625, 0.007415771484375, -0.0030670166015625, 0.002044677734375, 0.01904296875, -0.0054931640625, -0.00421142578125, -0.0157470703125, -0.005645751953125, -0.0206298828125, -0.004638671875, 0.00537109375, -0.0162353515625, -0.01904296875, 0.0125732421875, 0.00182342529296875, -0.0052490234375, 0.0036773681640625, 0.0024261474609375, 0.0069580078125, 0.0264892578125, 5.245208740234375e-05, 0.00970458984375, 0.0103759765625, -0.01129150390625, 0.01434326171875, -0.01416015625, 0.01025390625, -0.005889892578125, 0.002593994140625, 0.0113525390625, 0.00543212890625, 0.0145263671875, 0.01806640625, 0.00872802734375, 0.0322265625, 0.010009765625, -0.02734375, 0.0034637451171875, 0.00506591796875, -0.0025482177734375, -0.00860595703125, 0.00640869140625, 0.01348876953125, -0.000881195068359375, -0.00933837890625, -0.0008392333984375, 0.00081634521484375, -0.0201416015625, 0.015380859375, -0.01177978515625, 0.00107574462890625, -0.005584716796875, 0.004150390625, -0.005645751953125, -0.006561279296875, 0.0196533203125, -0.006622314453125, -0.0026397705078125, -7.581710815429688e-05, -0.00335693359375, 0.006927490234375, 0.00885009765625, -0.007354736328125, -0.01226806640625, -0.002777099609375, 0.01519775390625, -0.01239013671875, -0.005218505859375, -0.004852294921875, 0.004638671875, 0.0126953125, 0.0145263671875, -0.022705078125, -0.01287841796875, -0.0196533203125, 0.03173828125, -0.01141357421875, -0.007049560546875, 0.015625, -0.01556396484375, -0.00811767578125, -1.6927719116210938e-05, 0.005218505859375, -0.00160980224609375, 0.004486083984375, 0.00445556640625, -0.0126953125, 0.0089111328125, 0.01019287109375, -0.0004482269287109375, -0.010009765625, 0.007415771484375, 0.0294189453125, 0.0008697509765625, -0.0142822265625, 0.0052490234375, 0.00634765625, -0.00628662109375, 0.0107421875, -0.00970458984375, -0.006988525390625, 0.00823974609375, 0.0091552734375, -0.0269775390625, 0.004180908203125, -0.00750732421875, -0.0012359619140625, -0.008544921875, 0.007476806640625, -0.01007080078125, -0.0194091796875, 0.0079345703125, 0.0145263671875, 0.041015625, 0.006195068359375, -0.0026397705078125, -0.0004558563232421875, -0.01055908203125, -0.0091552734375, -0.01068115234375, -0.01153564453125, -0.0223388671875, 0.0157470703125, -0.0126953125, 0.002716064453125, -0.013427734375, 0.0208740234375, -0.00311279296875, -0.00872802734375, 0.0228271484375, -0.01019287109375, 0.00144195556640625, 0.00665283203125, -0.0028839111328125, -0.0185546875, 0.00628662109375, -0.00811767578125, 0.0177001953125, -0.007080078125, -0.00457763671875, -0.0262451171875, 0.006500244140625, 0.004669189453125, -0.00860595703125, -0.0003662109375, -0.0052490234375, -0.014404296875, -0.018310546875, 0.0150146484375, 0.01300048828125, -0.010009765625, -0.0201416015625, -0.031494140625, -0.0012359619140625, -0.000518798828125, -0.0016937255859375, -0.0194091796875, -0.0111083984375, 0.0303955078125, -0.057373046875, -0.014404296875, 0.00067138671875, 0.007781982421875, -0.00750732421875, -0.0052490234375, 0.003326416015625, -0.0030059814453125, 0.02001953125, 0.005035400390625, -0.0027923583984375, -0.023681640625, -0.0107421875, 0.004302978515625, 0.002838134765625, -0.0028839111328125, 0.0101318359375, 0.00750732421875, -0.00164031982421875, 0.018310546875, 0.025634765625, 0.00112152099609375, 0.015380859375, 0.000499725341796875, -0.0016021728515625, -0.00738525390625, -0.00168609619140625, 0.00714111328125, 0.006561279296875, -0.07470703125, 0.001800537109375, 0.005340576171875, -0.025390625, -0.015625, 0.00066375732421875, -0.00433349609375, 0.0098876953125, 0.0159912109375, 0.0223388671875, -0.0133056640625, -0.0014190673828125, 0.01348876953125, -0.00115966796875, -0.0106201171875, -0.01312255859375, -0.034423828125, 0.0072021484375, 0.01007080078125, 0.006927490234375, 0.012451171875, 0.00787353515625, -0.01141357421875, 0.0020751953125, 0.006072998046875, -0.0098876953125, 2.4199485778808594e-05, 0.00836181640625, -0.013916015625, -0.002838134765625, 0.0026702880859375, -0.01129150390625, 0.00970458984375, -0.002777099609375, 0.002197265625, 0.006134033203125, -0.005706787109375, 0.00555419921875, -0.006134033203125, -0.0234375, -0.01300048828125, 0.0062255859375, 0.0059814453125, -0.00946044921875, -0.006561279296875, 0.005157470703125, -0.01312255859375, -0.0012969970703125, -0.004150390625, -0.00157928466796875, 0.0169677734375, 0.016845703125, -0.01458740234375, -0.00250244140625, 0.0400390625, 0.007171630859375, 0.00421142578125, -0.004150390625, 0.0098876953125, 0.00421142578125, -0.00250244140625, -0.005218505859375, -0.0115966796875, 0.00457763671875, -0.0037078857421875, 0.0013427734375, 0.0101318359375, 0.004364013671875, -0.00194549560546875, -0.003753662109375, -0.007080078125, -0.00750732421875, 0.001983642578125, -0.00162506103515625, -0.034423828125, -9.822845458984375e-05, 0.022216796875, 0.00482177734375, -0.0196533203125, 0.002227783203125, 0.010498046875, -0.0022125244140625, -0.000537872314453125, 0.00799560546875, -0.004364013671875, 0.0107421875, -0.0037078857421875, 0.003387451171875, 0.017822265625, -0.0004425048828125, 0.0091552734375, 0.00421142578125, -0.00095367431640625, -0.01202392578125, 0.00433349609375, 0.00592041015625, -0.02001953125, 0.0013275146484375, 0.0111083984375, 0.00250244140625, -0.010986328125, -0.004547119140625, 0.0, 0.01300048828125, 0.0093994140625, -0.01092529296875, 0.018310546875, -0.01153564453125, -0.001007080078125, 0.0028839111328125, -0.004302978515625, 0.0230712890625, 0.03271484375, -0.0093994140625, -0.00897216796875, 0.006500244140625, 0.000873565673828125, 0.0003261566162109375, -0.01080322265625, 0.000858306884765625, 0.0038909912109375, -0.0016021728515625, 0.0084228515625, 0.0203857421875, 0.006317138671875, -0.00994873046875, -0.00439453125, -0.0076904296875, -0.01806640625, -0.0052490234375, 0.0234375, -0.036376953125, 0.004364013671875, 0.0185546875, 0.003936767578125, 0.00933837890625, -0.004974365234375, 0.0115966796875, 0.02880859375, -0.0081787109375, 0.0179443359375, 0.0108642578125, 0.0023193359375, -0.0018157958984375, 0.00110626220703125, -0.00958251953125, 0.003997802734375, 0.0079345703125, 0.01153564453125, 0.00830078125, -0.0211181640625, 0.00836181640625, -0.0223388671875, -0.0035247802734375, 0.01177978515625, 0.004425048828125, 0.000751495361328125, 0.00799560546875, -0.00122833251953125, -0.0098876953125, 0.00408935546875, 0.00494384765625, 0.0018768310546875, -0.01519775390625, -0.0091552734375, -0.033203125, 0.00347900390625, -0.0213623046875, -0.004791259765625, 0.0032501220703125, 0.000545501708984375, 0.12158203125, 0.01007080078125, -0.0059814453125, -0.00136566162109375, -0.014404296875, -0.00946044921875, 0.00555419921875, 0.0128173828125, -0.0025177001953125, 0.0030517578125, 0.017578125, -0.0020904541015625, -0.007568359375, 0.003265380859375, 0.007354736328125, 0.00057220458984375, 0.016845703125, -0.017822265625, -0.001678466796875, -0.0037078857421875, -0.004119873046875, -0.0130615234375, 0.020263671875, 0.00677490234375, -0.006500244140625, -0.0038604736328125, -0.0213623046875, 0.003143310546875, 0.0091552734375, 0.0142822265625, -0.01263427734375, 0.01556396484375, -0.0079345703125, 0.01312255859375, 0.0225830078125, -0.0084228515625, -0.0025482177734375, -0.00958251953125, 0.007049560546875, -0.00799560546875, -0.00023746490478515625, 0.01129150390625, 0.01116943359375, -0.01220703125, -0.0072021484375, -0.0054931640625, 0.0113525390625, 0.007171630859375, 0.00131988525390625, 0.013916015625, -0.000400543212890625, -0.0045166015625, 0.01708984375, 0.006317138671875, 0.00092315673828125, -0.005706787109375, 0.01214599609375, -0.0101318359375, 0.005157470703125, 0.01129150390625, -0.00994873046875, 0.0225830078125, -0.00830078125, 0.00640869140625, -0.007171630859375, 0.0283203125, -0.0157470703125, -0.0091552734375, -0.009033203125, 0.005645751953125, -0.007049560546875, 0.00041961669921875, 0.0035247802734375, 0.0059814453125, 0.001739501953125, -0.018310546875, -0.03125, 0.00848388671875, 0.0025482177734375, -0.00555419921875, -0.015869140625, -0.006072998046875, -0.000499725341796875, -0.006317138671875, -0.0079345703125, -0.00787353515625, -0.0025787353515625, -0.01483154296875, -0.00787353515625, -0.004150390625, -0.0024261474609375, 0.0038909912109375, 0.00860595703125, 0.00994873046875, 0.00299072265625, 0.0125732421875, -0.023681640625, 0.00897216796875, -0.002197265625, 0.0111083984375, -0.0172119140625, -0.01220703125, 0.01177978515625, 0.007720947265625, 0.016357421875, 0.0101318359375, -0.002471923828125, -0.00927734375, -0.0157470703125, 0.0216064453125, -0.00347900390625, -0.0311279296875, -0.01806640625, -0.0081787109375, 0.00119781494140625, 0.004150390625, 0.01129150390625, 0.0101318359375, 0.01043701171875, -0.00592041015625, -0.0133056640625, 0.1328125, -0.01019287109375, 0.0025787353515625, 0.0009918212890625, -0.00193023681640625, -0.017822265625, -0.00194549560546875, -0.01080322265625, 0.004852294921875, 0.0072021484375, -0.00118255615234375, -0.0028839111328125, 0.01416015625, -0.016845703125, -0.01287841796875, -0.00738525390625, -0.003265380859375, -0.0068359375, -0.0087890625, 0.06591796875, 0.01519775390625, -0.0054931640625, 8.344650268554688e-06, -0.001953125, -0.0014801025390625, -0.004913330078125, 0.00238037109375, 0.0260009765625, 0.00250244140625, 0.00830078125, -0.08447265625, 0.002349853515625, 0.00225830078125, -0.01300048828125, -0.005706787109375, -0.00653076171875, -0.0036773681640625, -0.00186920166015625, -0.00921630859375, -0.0032806396484375, 0.01171875, -0.0033721923828125, 0.0162353515625, 0.01324462890625, -0.006011962890625, 0.001739501953125, -0.01409912109375, -0.003814697265625, -0.007171630859375, -0.0052490234375, -0.0242919921875, 0.01129150390625, -0.0179443359375, 0.0185546875, 0.0032806396484375, -0.006317138671875, -0.01202392578125, -0.00799560546875, 0.0810546875, -0.01202392578125, -0.0111083984375, -0.000446319580078125, -0.021240234375, -0.0087890625, 0.00927734375, -0.0091552734375, 0.001190185546875, -0.00174713134765625, 0.01116943359375, 0.011962890625, 0.021484375, -0.0142822265625, 0.0079345703125, 0.0024566650390625, 0.0035858154296875, 0.006988525390625, 0.0054931640625, -0.0225830078125, -0.00341796875, -0.01953125, 0.00762939453125, -0.0172119140625, -0.003143310546875, -0.00147247314453125, 0.0218505859375, 0.006317138671875, -0.00543212890625, 0.0157470703125, 0.012451171875, 0.016357421875, 0.005157470703125, 0.0166015625, -0.0012359619140625, -0.01373291015625, 0.00147247314453125, 0.007293701171875, -0.01385498046875, 0.0157470703125, -0.00494384765625, -0.0194091796875, 0.013427734375, -0.025634765625, -0.001983642578125, -0.008544921875, -0.0181884765625, -0.0072021484375, 0.01397705078125, -0.0181884765625, 0.000804901123046875, -0.00537109375, -0.018310546875, -0.032958984375, 0.0269775390625, -0.0036468505859375, 0.01458740234375, -0.006439208984375, -0.0011749267578125, 0.023193359375, -0.004425048828125, 0.0004673004150390625, -0.00186920166015625, -0.002899169921875, -0.0252685546875, 0.00147247314453125, 0.01007080078125, 0.021484375, 0.004669189453125, 0.000522613525390625, 0.01007080078125, 0.001922607421875, 0.00093841552734375, 0.0012359619140625, 0.00193023681640625, 0.00665283203125, 0.01324462890625, 0.0029296875, 0.01214599609375, 0.034912109375, -0.00274658203125, 0.01068115234375, -0.00139617919921875, 0.006134033203125, -0.0093994140625, 0.00994873046875, 0.00506591796875, -0.01068115234375, -0.00543212890625, 0.0012054443359375, 0.00173187255859375, 0.0166015625, -0.01544189453125, 0.0208740234375, -0.0002498626708984375, 0.0091552734375, -0.01129150390625, -0.047119140625, -0.01092529296875, -0.00982666015625, -0.037109375, -0.007598876953125, 0.002044677734375, -0.00506591796875, -0.00927734375, 0.006011962890625, -0.0201416015625, -0.0011444091796875, 0.007080078125, -0.023681640625, -0.0033111572265625, -0.017578125, 0.00665283203125, -0.006195068359375, 0.00185394287109375, 0.018310546875, 0.0380859375, -0.00537109375, -0.015380859375, -0.0113525390625, -0.002716064453125, 0.01611328125, -0.00799560546875, -0.002471923828125, -0.01031494140625, -0.00168609619140625, -0.01385498046875, 0.0022125244140625, -0.00299072265625, 0.0189208984375, 0.016845703125, -0.0174560546875, -0.017822265625, -0.00131988525390625, -0.0108642578125, 0.0186767578125, -0.0211181640625, -0.003265380859375, -0.007293701171875, -0.0089111328125, 0.006011962890625, 0.00299072265625, 0.017578125, 0.00115966796875, 0.00885009765625, 0.0113525390625, 0.004638671875, 0.000476837158203125, -0.000499725341796875, 0.014404296875, 0.020263671875, -0.00726318359375, -0.00872802734375, -0.005584716796875, 0.003936767578125, 0.0294189453125, 0.0142822265625, 0.0135498046875, 0.004302978515625, 0.01220703125, 0.0035400390625, 0.003570556640625, 0.0054931640625, -0.01171875, 0.01904296875, -0.0012359619140625, 0.01239013671875, 0.0299072265625, 0.004119873046875, -0.00677490234375, 0.004486083984375, -0.00144195556640625, -0.004608154296875, -0.009521484375, 0.0040283203125, -0.00811767578125, -0.009521484375, 0.007080078125, -0.031982421875, 0.0004367828369140625, -0.0026702880859375, 0.1064453125, 0.01214599609375, -0.022216796875, 0.0205078125, 0.016845703125, 0.0081787109375, 0.01129150390625, -0.01409912109375, 0.01171875, -0.00885009765625, -0.01519775390625, -0.006866455078125, -0.0206298828125, 0.01513671875, -0.01226806640625, 0.001220703125, 0.000560760498046875, -0.007049560546875, 0.02197265625, 0.0079345703125, -0.00107574462890625, 0.00885009765625, 0.006439208984375, -0.00836181640625, 0.01513671875, 0.013916015625, -0.0072021484375, -0.009521484375, 0.01458740234375, -0.037841796875, 0.00958251953125, 0.004791259765625, 0.00927734375, -0.00634765625, -0.00909423828125, -0.042236328125, 0.0054931640625, -0.010009765625, -0.01416015625, -9.679794311523438e-05, 0.01806640625, -0.01202392578125, -0.005279541015625, -0.0185546875, 0.012451171875, 0.007049560546875, -0.006103515625, -0.01202392578125, 0.017333984375, 0.0177001953125, -0.006317138671875, -0.01092529296875, 0.019775390625, -0.0244140625, 0.00482177734375, 0.01324462890625, -0.006439208984375, -0.002716064453125, 0.0189208984375, -0.0111083984375, 0.0002040863037109375, 0.00147247314453125, -0.01287841796875, -0.01458740234375, 0.0125732421875, -0.0196533203125, 0.0037841796875, -0.004913330078125, 0.0023651123046875, -0.01055908203125, -0.010009765625, 0.0206298828125, -0.01385498046875, -0.0084228515625, 0.015625, 0.0126953125, -0.0291748046875, 0.022216796875, -0.0125732421875, 0.004364013671875, 0.00390625, -0.00151824951171875, -0.000751495361328125, 0.00653076171875, -0.0016937255859375, -0.0194091796875, -0.02490234375, -0.01141357421875, -0.00408935546875, 0.00579833984375, -0.00799560546875, -0.00146484375, 0.005859375, -0.0025787353515625, -0.0023193359375, -0.01007080078125, 0.0007781982421875, -0.02734375, 0.00054931640625, -0.0023040771484375, -0.0103759765625, -0.00193023681640625, 0.004669189453125, 0.00457763671875, 0.01043701171875, 0.0021514892578125, -0.00823974609375, -0.00927734375, -0.00830078125, -0.00041961669921875, 0.0019683837890625, -0.00025177001953125, 0.01043701171875, -0.0157470703125, -0.0211181640625, -0.003692626953125, -0.00970458984375, 0.018310546875, 0.00799560546875, -0.00408935546875, 0.005462646484375, 0.00238037109375, -0.023193359375, 0.001190185546875, -0.003570556640625, -0.0159912109375, -0.0027313232421875, -0.0274658203125, -0.006317138671875, 0.000926971435546875, -0.00081634521484375, -0.012451171875, 0.011962890625, -0.00469970703125, -0.006866455078125, -0.00860595703125, -0.031982421875, 0.0211181640625, -0.00982666015625, 0.012451171875, -0.0014190673828125, 0.01171875, 0.01300048828125, -0.016845703125, -0.01556396484375, -0.0020751953125, -0.006927490234375, -0.0019073486328125, 0.018798828125, -0.01470947265625, 0.00665283203125, 0.00897216796875, 0.00579833984375, 0.0101318359375, -0.0142822265625, 0.00408935546875, 0.0081787109375, -0.01239013671875, -0.007293701171875, 0.0087890625, 0.02392578125, -0.007781982421875, -0.00031280517578125, 0.0115966796875, -0.003936767578125, 0.00897216796875, 0.0260009765625, 0.0032806396484375, 0.01239013671875, 0.005279541015625, 0.010986328125, 0.00023174285888671875, 0.0086669921875, -0.0145263671875, -0.0179443359375, 0.0035247802734375, 0.0019683837890625, 0.002105712890625, 0.00193023681640625, -0.0091552734375, 0.00860595703125, 0.0244140625, 0.01153564453125, -0.003326416015625, 0.0047607421875, 0.0108642578125, 0.01312255859375, 0.007354736328125, -0.008544921875, 0.0194091796875, -0.00057220458984375, -0.0016937255859375, 0.0014190673828125, 0.005157470703125, 0.0128173828125, -0.01409912109375, -0.01434326171875, 0.0111083984375, -0.0106201171875, -0.00946044921875, 0.003753662109375, 0.0157470703125, -0.0050048828125, -0.003143310546875, -0.0128173828125, 0.005889892578125, 0.01416015625, -0.00494384765625, 0.005035400390625, -0.01239013671875, -0.0194091796875, 0.0230712890625, -0.006134033203125, 0.09130859375, -0.01495361328125, 0.01153564453125, 0.0269775390625, 0.01470947265625, 0.01129150390625, 0.00787353515625, 0.009033203125, -0.002685546875, -0.0025177001953125, -0.00830078125, -0.022216796875, -0.01202392578125, 0.004638671875, -0.00714111328125, 0.007354736328125, -0.004486083984375, -0.026123046875, 0.0166015625, 0.000972747802734375, 0.0166015625, -0.0011444091796875, 0.0091552734375, -0.003997802734375, -0.005706787109375, 0.0125732421875, 0.0162353515625, 0.0101318359375, -0.005157470703125, -0.01708984375, 0.00933837890625, -0.00154876708984375, 0.00927734375, -0.01141357421875, 0.01904296875, 9.34600830078125e-05, 0.0091552734375, -0.005645751953125, 0.01263427734375, 0.00384521484375, -0.006927490234375, 0.0084228515625, -0.0015869140625, -0.01312255859375, -0.0023345947265625, -0.0125732421875, 0.01068115234375, -0.00311279296875, -0.02001953125, 0.00872802734375, -0.00433349609375, -0.004302978515625, -0.018798828125, -0.0034942626953125, 0.00457763671875, 0.0028533935546875, 0.0076904296875, -0.0213623046875, -0.0014801025390625, -0.01544189453125, -0.009033203125, 0.034912109375, 0.00176239013671875, 0.006103515625, 0.0011444091796875, 0.01025390625, -0.00067138671875, 0.0032196044921875, 0.022705078125, -0.006134033203125, 0.006134033203125, -0.00457763671875, -0.0201416015625, 0.007476806640625, 0.0032806396484375, 0.0028228759765625, -0.0252685546875, 0.0086669921875, -0.007415771484375, 0.00927734375, 0.00119781494140625, 0.004180908203125, -0.006072998046875, -0.0133056640625, 0.005584716796875, 0.006317138671875, -0.01031494140625, -0.00958251953125, 0.00799560546875, -0.002471923828125, 0.001495361328125, 0.01519775390625, 0.018310546875, 0.0020904541015625, 0.01239013671875, -0.038330078125, 0.007781982421875, -0.039794921875, 0.021240234375, 0.0107421875, 0.016357421875, 0.004913330078125, -0.009521484375, 0.00665283203125, -0.002960205078125, -0.0098876953125, 0.0135498046875, -0.001556396484375, -0.0023193359375, -0.031494140625, -0.0023956298828125, 0.009033203125, 0.01043701171875, 0.0162353515625, -6.914138793945312e-05, 0.018310546875, -0.0002002716064453125, -0.009033203125, 0.0108642578125, -0.0103759765625, -0.019775390625, -0.0084228515625, 0.005218505859375, 0.0179443359375, 0.01312255859375, -0.0189208984375, -0.00970458984375, 0.02392578125, 0.000736236572265625, -0.0011749267578125, -0.005584716796875, -0.0034942626953125, 0.001373291015625, -0.017578125, -0.01043701171875, 0.0062255859375, -0.004150390625, 0.01055908203125, 0.0012664794921875, -0.0052490234375, -0.034423828125, 0.00506591796875, -0.012451171875, -0.0047607421875, 0.001373291015625, 0.1162109375, 0.00555419921875, -0.00022983551025390625, 0.006866455078125, -0.0172119140625, 0.012451171875, -0.0162353515625, -0.02099609375, -0.014404296875, 0.0021820068359375, 0.004913330078125, 0.00592041015625, -0.00640869140625, -0.0021820068359375, -0.031494140625, 0.0115966796875, -0.002593994140625, -0.002288818359375, 0.005767822265625, 0.00299072265625, -0.00133514404296875, -0.00762939453125, 0.0020751953125, 0.010986328125, -0.006561279296875, -0.005126953125, 0.0252685546875, 0.01611328125, 0.002288818359375, 0.0037078857421875, 0.01953125, 0.022705078125, -0.005767822265625, 0.00179290771484375, -0.0007476806640625, 0.0019073486328125, -0.005157470703125, -0.01141357421875, 0.006866455078125, -0.000591278076171875, 0.0201416015625, 0.0054931640625, -0.026611328125, 0.0106201171875, -0.007720947265625, -0.01220703125, -0.002105712890625, -0.00555419921875, 0.01483154296875, -0.0029449462890625, -0.0027923583984375, -0.004425048828125, -0.00153350830078125, 0.005645751953125, 0.01092529296875, -0.0045166015625, 0.01544189453125, 0.0234375, -0.00022411346435546875, 0.0164794921875, -0.01324462890625, -0.0172119140625, -0.0037841796875, 0.0045166015625, 0.021240234375, -0.0010528564453125, -0.0101318359375, -0.0194091796875, 0.0001678466796875, 0.010009765625, 0.01141357421875, 0.000751495361328125, -0.004150390625, -0.0111083984375, 0.0208740234375, -0.0244140625, 0.003173828125, 0.004302978515625, -0.0130615234375, -0.00408935546875, -0.013671875, 0.0133056640625, -0.00457763671875, 0.0291748046875, -0.004425048828125, 0.0030517578125, 0.0029449462890625, -0.01092529296875, 0.0101318359375, 0.0054931640625, -0.00640869140625, -0.003631591796875, 0.019287109375, -0.00341796875, 0.00139617919921875, -0.004486083984375, -0.009033203125, -0.0022735595703125, -0.0174560546875, 0.009033203125, 0.00048065185546875, -0.00836181640625, -0.0133056640625, -0.0125732421875, 0.0023956298828125, -0.01171875, -0.002685546875, 0.00067138671875, 0.000667572021484375, -0.005767822265625, -0.007354736328125, 0.0135498046875, -0.007720947265625, 0.0068359375, -0.00848388671875, 0.01043701171875, -0.0164794921875, 0.004547119140625, -0.002593994140625, -0.00885009765625, 0.00994873046875, -0.0012359619140625, 0.000896453857421875, 0.0703125, -0.00726318359375, -0.0118408203125, 0.0247802734375, 0.000911712646484375, -0.0029449462890625, -0.0035247802734375, 0.01470947265625, -0.01025390625, 0.00860595703125, 0.00830078125, -0.00823974609375, -0.018798828125, -0.0189208984375, -0.0034637451171875, 0.00927734375, 0.0048828125, 0.001251220703125, 0.004638671875, 0.02001953125, -0.018310546875, -0.008544921875, 0.0234375, -0.0054931640625, -0.0087890625, -0.00543212890625, 0.00799560546875, -0.007080078125, -0.00179290771484375, -0.007476806640625, 0.0181884765625, 0.0390625, 0.0167236328125, 0.00128173828125, -0.0194091796875, 0.002410888671875, -0.019775390625, -0.00634765625, -0.0087890625, 0.0035858154296875, 0.0023651123046875, -0.0072021484375, -0.00799560546875, 0.0478515625, -0.0084228515625, -0.0128173828125, 0.007781982421875, -0.0034637451171875, -0.017822265625, -0.01177978515625, -0.003387451171875, -0.00848388671875, 0.00830078125, 0.0004673004150390625, 0.03271484375, 0.00063323974609375, -0.0021820068359375, -0.00885009765625, -0.01239013671875, -0.0172119140625, 0.0003795623779296875, -0.0181884765625, -0.010009765625, 0.016845703125, 0.006439208984375, -0.0281982421875, -0.005126953125, -0.00136566162109375, -0.0113525390625, -0.0211181640625, 0.02734375, -0.00750732421875, -0.01556396484375, 0.005096435546875, -0.0069580078125, -0.004730224609375, 0.0027313232421875, -0.0032196044921875, 0.0010986328125, 0.0108642578125, -0.0045166015625, -0.0111083984375, 0.005859375, -0.0135498046875, 0.0101318359375, -0.0029296875, 0.021728515625, 0.00927734375, -0.000408172607421875, 0.002960205078125, 0.006561279296875, -0.0159912109375, -0.00714111328125, -0.00118255615234375, -0.010009765625, -0.00738525390625, -0.01300048828125, -0.00408935546875, 0.0133056640625, 0.00015163421630859375, -0.003997802734375, -0.02001953125, 0.019775390625, 0.006134033203125, -0.0013427734375, 0.0028228759765625, 0.08740234375, -0.00250244140625, 0.00555419921875, 0.0035400390625, -0.01373291015625, -0.0157470703125, 0.022705078125, -0.018798828125, 0.0026092529296875, -0.0022125244140625, -0.001739501953125, -0.0208740234375, 0.0019683837890625, -0.0002727508544921875, 0.011962890625, 0.006988525390625, 0.0234375, -0.010986328125, 0.0045166015625, -0.0147705078125, -0.0234375, 0.002777099609375, -0.00823974609375, -0.021728515625, -0.006561279296875, -0.005126953125, -0.000335693359375, -0.00182342529296875, -0.01055908203125, 0.01171875, -0.005218505859375, 0.01116943359375, -0.004058837890625, 0.01019287109375, 0.005035400390625, -0.0281982421875, 0.002838134765625, 0.00628662109375, -0.0150146484375, -0.1845703125, -0.01226806640625, -0.005218505859375, 0.01263427734375, 0.00115966796875, -0.005218505859375, -0.0050048828125, 0.0026397705078125, -0.016845703125, -0.00811767578125, 0.0111083984375, 0.00799560546875, 0.009521484375, 0.02001953125, 0.0225830078125, -0.017578125, 0.002288818359375, 0.0035247802734375, -0.009033203125, 0.01129150390625, -0.0279541015625, -0.00927734375, 0.0106201171875, 0.00029754638671875, -0.0018463134765625, 0.00518798828125, -0.005859375, 0.00341796875, 0.002716064453125, -0.033203125, 0.008056640625, 0.006011962890625, -0.0009002685546875, -0.022216796875, -0.0020294189453125, -0.0294189453125, -0.01806640625, -0.03515625, 0.0021820068359375, -0.00183868408203125, 0.0045166015625, 0.0198974609375, -0.0157470703125, -0.018310546875, 0.005889892578125, 0.00714111328125, -0.0162353515625, 0.0240478515625, 0.0101318359375, -0.00750732421875, 0.004302978515625, -0.002105712890625, 0.007568359375, 0.0235595703125, -0.006134033203125, -0.00860595703125, 0.0203857421875, 0.00445556640625, 0.010986328125, 0.021728515625, -0.018310546875, 0.0035247802734375, 0.018310546875, 0.009765625, 0.006561279296875, -0.0028533935546875, -0.006744384765625, 0.00494384765625, -0.00750732421875, 0.0003566741943359375, -0.0098876953125, 0.01470947265625, -0.020263671875, 0.0194091796875, -0.007568359375, 0.0166015625, -0.00579833984375, 0.00225830078125, -0.0115966796875, -0.0133056640625, -0.004852294921875, -0.0159912109375, -0.0177001953125, -0.01055908203125, -0.004608154296875, -0.010498046875, -0.0030364990234375, 0.0098876953125, -0.0068359375, -0.01153564453125, 0.00970458984375, 0.0198974609375, -0.004638671875, 0.045654296875, -0.0096435546875, -0.0291748046875, 0.00555419921875, 0.00014781951904296875, -0.011962890625, -0.0022125244140625, 0.000705718994140625, 0.00506591796875, 0.01055908203125, 0.0034332275390625, 0.01055908203125, 0.005889892578125, 0.0107421875, 0.007568359375, -0.01708984375, -0.00083160400390625, -0.007476806640625, 0.00335693359375, -0.099609375, 0.014404296875, 0.0091552734375, 0.0361328125, -0.004638671875, 0.00421142578125, 0.02099609375, -0.0244140625, 0.002960205078125, -0.10498046875, -0.009033203125, 0.00927734375, 8.869171142578125e-05, 0.0142822265625, 0.02734375, 0.00347900390625, 0.00970458984375, 0.0211181640625, 0.001739501953125, -0.017333984375, 0.0098876953125, -0.021728515625, 0.000705718994140625, -0.010986328125, -0.00714111328125, 0.00970458984375, -0.00823974609375, -0.0203857421875, -0.000537872314453125, 0.01092529296875, 0.00543212890625, 0.0032501220703125, -0.004119873046875, 0.0118408203125, 0.0225830078125, -0.000789642333984375, 0.002227783203125, -0.00714111328125, -0.00897216796875, -0.013427734375, 0.0023956298828125, 0.0174560546875, -0.00958251953125, 0.01043701171875, -0.003326416015625, -0.01324462890625, -0.0106201171875, 0.00653076171875, -0.016845703125, -0.0028228759765625, -0.00848388671875, 0.00125885009765625, -0.018310546875, -0.01080322265625, -0.0021820068359375, -0.0142822265625, 0.003936767578125, 0.01025390625, -0.00021648406982421875, 0.002777099609375, 0.0026092529296875, -0.0191650390625, -0.02099609375, 0.001800537109375, 0.0013275146484375, 0.006072998046875, -0.00396728515625, -0.000278472900390625, -0.01092529296875, 0.006103515625, -0.0157470703125, -0.01300048828125, 0.004852294921875, 0.0093994140625, 0.0150146484375, -0.005401611328125, -0.00555419921875, 0.0361328125, 0.013916015625, 0.0002727508544921875, 0.0172119140625, -0.01055908203125, 0.0194091796875, 0.0166015625, 0.0038909912109375, 0.00927734375, 0.01373291015625, 0.006988525390625, -0.00823974609375, -0.003265380859375, -0.000698089599609375, -0.0194091796875, -0.0106201171875, -0.000301361083984375, 0.002655029296875, 0.0084228515625, 0.004364013671875, -0.00830078125, 0.01544189453125, 0.022216796875, 0.0081787109375, -0.00185394287109375, -0.023681640625, -0.01043701171875, 0.000652313232421875, -0.005401611328125, 0.00225830078125, 0.009033203125, 0.01470947265625, -0.0001659393310546875, -0.0084228515625, 0.006072998046875, -0.0159912109375, 0.01300048828125, 0.0050048828125, -0.010498046875, 0.008544921875, -0.010498046875, 0.00110626220703125, 0.0107421875, -0.0006256103515625, 0.02392578125, 0.0036773681640625, -0.004791259765625, -0.01385498046875, -0.004150390625, 0.003814697265625, 0.01312255859375, 0.0174560546875, 0.005645751953125, 0.0206298828125, -0.0025787353515625, -0.00543212890625, 0.000732421875, -0.0031585693359375, -0.0002689361572265625, 0.015625, 0.010986328125, 0.00360107421875, -0.00238037109375, 0.01544189453125, -0.0167236328125, 0.000583648681640625, -0.0030059814453125, 0.018310546875, 0.003387451171875, 0.01171875, -0.02001953125, 0.006622314453125, -0.006744384765625, 0.005462646484375, 0.004638671875, 0.022216796875, 0.00750732421875, 0.025634765625, -0.0037384033203125, 0.0130615234375, 0.000286102294921875, -0.00787353515625, -0.005462646484375, 0.00031280517578125, 0.013671875, -0.00860595703125, 0.006561279296875, -0.019775390625, -0.006439208984375, 0.0186767578125, 0.006134033203125, -0.0001983642578125, 0.0037994384765625, -0.010986328125, -0.00153350830078125, -0.01513671875, -0.0203857421875, -0.00946044921875, 0.003387451171875, -0.01300048828125, 0.0030517578125, -0.005462646484375, -0.00010204315185546875, 0.00421142578125, -0.00982666015625, 0.0274658203125, -0.007415771484375, -0.0260009765625, -0.0015869140625, -0.004852294921875, -0.020263671875, 0.00482177734375, -0.005157470703125, -0.01373291015625, -0.016357421875, 0.0036468505859375, 0.0014495849609375, 0.00457763671875, 0.0032501220703125, 0.029052734375, 0.001190185546875, -0.021728515625, -0.00038909912109375, -0.09375, -0.007598876953125, -0.00421142578125, -0.0011749267578125, 0.00250244140625, 0.001708984375, 0.0115966796875, -0.0128173828125, 0.006500244140625, -0.006622314453125, -0.0033111572265625, 0.0089111328125, -0.0103759765625, 0.00020122528076171875, -0.000881195068359375, -0.00457763671875, 0.01214599609375, 0.01708984375, -0.16015625, -0.00927734375, 0.00384521484375, 0.00144195556640625, -0.00174713134765625, -0.009033203125, 0.0177001953125, 0.0208740234375, 0.004791259765625, -0.006866455078125, -0.0020904541015625, -0.004547119140625, -0.0026092529296875, -0.007781982421875, 0.008056640625, 0.0286865234375, -0.020751953125, -0.0059814453125, -0.0101318359375, -0.00567626953125, -0.000858306884765625, 0.004364013671875, -0.01458740234375, 0.005218505859375, 0.01397705078125, 0.006622314453125, -0.00933837890625, 0.0014801025390625, 0.0067138671875, -0.002593994140625, -0.002899169921875, -0.00653076171875, -0.0004329681396484375, -0.01611328125, 0.0196533203125, -0.0211181640625, -0.000598907470703125, 0.025146484375, 0.00830078125, -0.007415771484375, 0.02001953125, 0.0157470703125, -0.0037841796875, -0.0030059814453125, 0.0186767578125, 0.0257568359375, -0.0126953125, 0.01416015625, -0.0194091796875, -0.013916015625, -0.01611328125, 0.007720947265625, 0.01470947265625, 0.00189208984375, 0.00665283203125, 0.0019989013671875, -0.0006256103515625, 0.0010223388671875, 0.01611328125, -0.0072021484375, -0.00092315673828125, -0.016357421875, 0.002349853515625, 0.0181884765625, -0.01312255859375, 0.00146484375, -0.0027008056640625, 0.008056640625, 0.010009765625, -0.0191650390625, -0.01116943359375, 0.00115203857421875, 0.0113525390625, 0.01171875, 0.00726318359375, 0.0196533203125, -0.004364013671875, -0.017822265625, -0.008056640625, -0.006439208984375, 0.005279541015625, -0.00970458984375, 0.00445556640625, 0.01055908203125, -0.0028839111328125, -0.01458740234375, -0.0042724609375, -0.0084228515625, -0.00830078125, -0.00098419189453125, -0.005218505859375, -0.01373291015625, -0.01263427734375, 0.041748046875, 0.00885009765625, -0.00555419921875, -0.00799560546875, 0.00677490234375, 0.0037994384765625, -0.00107574462890625, 0.00189971923828125, 0.000213623046875, 0.0216064453125, 0.00124359130859375, -0.00830078125, 0.005645751953125, 0.01055908203125, -0.007598876953125, -0.003631591796875, 0.005645751953125, 0.005767822265625, 0.025390625, 0.006561279296875, -0.0086669921875, 0.00131988525390625, 0.00421142578125, -0.0145263671875, 0.0223388671875, 0.0038604736328125, 0.0034637451171875, 0.0157470703125, -0.0025787353515625, 0.019287109375, 0.00144195556640625, 0.0091552734375, 0.00099945068359375, 0.0026092529296875, -0.01409912109375, 0.00726318359375, 0.0021820068359375, 0.00179290771484375, 0.0177001953125, 0.01348876953125, -0.00640869140625, 0.0185546875, 0.0024566650390625, -0.1259765625, 0.006317138671875, 0.008056640625, -0.00726318359375, 0.016357421875, -0.01470947265625, -0.004150390625, -0.00058746337890625, -0.00121307373046875, 0.007476806640625, 0.02490234375, 0.01068115234375, 0.00183868408203125, -0.0269775390625, -0.0179443359375, 0.0024261474609375, 0.000934600830078125, -0.0035400390625, 0.01385498046875, -0.01153564453125, 0.007293701171875, 0.05810546875, -0.0027923583984375, 0.003265380859375, 0.0194091796875, 0.011962890625, 0.009033203125, -0.000545501708984375, -0.00057220458984375, -0.00909423828125, 0.006988525390625, 0.006439208984375, 0.0118408203125, 0.004058837890625, 0.0054931640625, 0.01434326171875, -0.01806640625, -0.0072021484375, -0.01495361328125, -0.0081787109375, 0.01495361328125, -0.00653076171875, 0.015869140625, -0.00714111328125, -0.0096435546875, -0.004180908203125, 1.0132789611816406e-06, 0.00131988525390625, 0.0030975341796875, -0.002685546875, -0.01226806640625, -0.0016937255859375, -0.00909423828125, -0.02001953125, 0.01177978515625, 0.018310546875, -0.01434326171875, 0.003936767578125, -0.00927734375, -0.000896453857421875, 0.01055908203125, -0.0084228515625, -0.00139617919921875, 0.01220703125, -0.01611328125, -0.001708984375, 0.042236328125, -0.0205078125, 0.01312255859375, 0.0128173828125, -0.00390625, -0.01409912109375, 0.00970458984375, 0.002288818359375, 0.006561279296875, 0.008544921875, 0.00506591796875, -0.0107421875, -0.016845703125, -0.005767822265625, 0.010009765625, -0.007415771484375, 0.00567626953125, 0.00153350830078125, 0.039306640625, 0.00885009765625, 0.0240478515625, -0.004608154296875, -0.008056640625, 0.0034942626953125, -0.041259765625, 0.0014801025390625, -0.0159912109375, -0.015625, -0.002838134765625, -0.01373291015625, 0.005706787109375, -0.010986328125, -0.01519775390625, 0.00970458984375, 0.003631591796875, -0.00408935546875, -0.000263214111328125, 0.00665283203125, -0.000583648681640625, 0.02001953125, 0.020263671875, 0.0086669921875, -0.007171630859375, 0.01470947265625, -0.0036773681640625, 0.0081787109375, 0.006988525390625, -0.016357421875, -0.002777099609375, -0.0106201171875, 0.00049591064453125, -0.00029754638671875, -0.0034637451171875, -0.0218505859375, -0.008544921875, -0.0019989013671875, 0.0022125244140625, 0.005584716796875, -0.00946044921875, 0.003173828125, -0.0030517578125, 0.005584716796875, -0.001190185546875, 0.016357421875, -0.00078582763671875, 0.006744384765625, 0.049560546875, 0.0118408203125, -0.000553131103515625, 0.0002899169921875, -0.004730224609375, -0.0211181640625, 0.00408935546875, 0.02197265625, -0.002655029296875, 0.0113525390625, -0.001251220703125, 0.019775390625, -0.0004138946533203125, -0.0034637451171875, -0.0067138671875, -0.0108642578125, 0.01239013671875, -0.00787353515625, -0.0118408203125, -0.0133056640625, -0.0181884765625, -0.0157470703125, 0.0096435546875, 0.00185394287109375, -6.818771362304688e-05, -0.00115203857421875, 0.003173828125, 0.00020122528076171875, -0.00439453125, 0.0157470703125, 0.00102996826171875, 0.00119781494140625, -0.0035858154296875, -0.0208740234375, -0.0022125244140625, -0.00714111328125, -0.016357421875, 0.0009002685546875, -0.02392578125, 0.01312255859375, -0.01055908203125, -0.0157470703125, 0.00958251953125, -0.011962890625, -0.008056640625, 0.00019359588623046875, 0.00066375732421875, -0.00836181640625, 0.033203125, 0.0030059814453125, -0.0230712890625, 0.0274658203125, -0.00665283203125, 0.013427734375, -0.01416015625, -0.028564453125, 0.025146484375, 0.01348876953125, -0.011962890625, -0.002593994140625, -0.0145263671875, 0.0225830078125, -0.0118408203125, 0.0133056640625, -0.003997802734375, 0.013671875, 0.0084228515625, 0.006439208984375, 0.004852294921875, 0.00628662109375, -0.01141357421875, 0.0024261474609375, 0.022705078125, -0.0157470703125, -0.00112152099609375, -0.013671875, 0.003326416015625, -0.0111083984375, 0.018310546875, -0.012451171875, 0.006317138671875, -0.0034637451171875, -0.021728515625, 0.005218505859375, 0.01397705078125, 8.487701416015625e-05, 0.0196533203125, -0.006011962890625, -0.00506591796875, -0.00127410888671875, 0.00360107421875, 0.013916015625, 0.005096435546875, -0.0089111328125, 0.0042724609375, -0.0023040771484375, 0.0177001953125, -0.0011749267578125, -0.01141357421875, -0.0157470703125, -0.019775390625, -0.0011138916015625, 0.0257568359375, 0.01397705078125, 0.031982421875, 0.01055908203125, -0.004547119140625, -0.00016689300537109375, 0.000415802001953125] /programs/dev/projects/testproject1 test_summ TCGA-02-2466 TCGA-02-2466.e9e97b51-1474-463b-8693-7b66f74319c9 summ +[0.00726318359375, -0.007080078125, -0.0030670166015625, -0.007568359375, 1.823902130126953e-05, -0.007568359375, 0.026123046875, -0.0098876953125, 0.000751495361328125, -0.01806640625, 0.01025390625, 0.01385498046875, 0.00147247314453125, 0.004669189453125, 0.0001964569091796875, -0.03173828125, -0.018798828125, -0.00579833984375, -0.0067138671875, 0.00506591796875, -1.8358230590820312e-05, 0.002716064453125, 0.0033721923828125, 0.0072021484375, 0.0274658203125, 0.007598876953125, 0.013916015625, -0.00042724609375, 0.002288818359375, -0.0030975341796875, 0.004669189453125, 0.01397705078125, -0.01043701171875, 0.018310546875, 0.008056640625, 0.00421142578125, 0.03466796875, -0.0002593994140625, 0.001190185546875, -0.0111083984375, 0.00885009765625, 0.00634765625, -0.01611328125, 0.002685546875, 0.0054931640625, -0.00162506103515625, -0.0086669921875, -0.017333984375, -0.00897216796875, 0.0026397705078125, -0.022705078125, -0.00421142578125, 0.018310546875, -0.1328125, -0.01300048828125, 0.03564453125, -0.0111083984375, 0.0179443359375, -0.0052490234375, 0.034912109375, 0.0001583099365234375, -0.00016498565673828125, -0.0004825592041015625, 0.007354736328125, 0.007171630859375, 0.005859375, -0.00506591796875, -0.00494384765625, -0.00958251953125, -0.01397705078125, -0.01300048828125, -0.00173187255859375, -0.00787353515625, -0.01300048828125, 0.00811767578125, 0.0098876953125, 0.0189208984375, -0.01556396484375, 0.0033111572265625, 0.009033203125, 0.014404296875, -0.017333984375, -0.00494384765625, -0.0096435546875, 0.016357421875, -0.015869140625, 0.0068359375, 0.01129150390625, -0.00787353515625, -0.006866455078125, -0.0206298828125, -0.007476806640625, 0.00518798828125, -0.0034637451171875, -0.0115966796875, -0.0023651123046875, -0.007598876953125, -0.0174560546875, 0.0028839111328125, -0.00537109375, 0.00860595703125, 0.02001953125, 0.021728515625, -0.0034332275390625, -0.0159912109375, -0.0166015625, 0.00836181640625, -0.017578125, -0.007720947265625, 0.0019683837890625, 0.01214599609375, 0.01611328125, 0.006134033203125, 0.017333984375, 0.0084228515625, -0.00518798828125, 0.006103515625, -0.018310546875, 0.0076904296875, 0.0098876953125, 0.0035247802734375, 0.02001953125, 0.0034942626953125, -0.00153350830078125, -0.01708984375, -0.01141357421875, -0.003814697265625, 0.003997802734375, 0.007171630859375, 0.0145263671875, -0.000579833984375, -0.014404296875, -0.0003414154052734375, -0.01416015625, 0.00872802734375, 0.01806640625, 0.01141357421875, 0.0003299713134765625, 0.004913330078125, 0.013916015625, -0.00885009765625, 0.01373291015625, -0.0125732421875, 0.001556396484375, -0.006011962890625, 0.00445556640625, 0.0125732421875, -0.006622314453125, 0.0152587890625, 0.0130615234375, 0.006988525390625, -0.01055908203125, 0.016357421875, -0.0230712890625, 0.01153564453125, -0.0135498046875, 0.0252685546875, -0.0054931640625, -0.002288818359375, -0.00677490234375, -0.00506591796875, 0.002197265625, -0.0167236328125, 0.0115966796875, -0.00506591796875, 0.01153564453125, 0.0113525390625, 0.0022125244140625, 0.0135498046875, 0.0027313232421875, -0.0206298828125, 0.021728515625, -0.0054931640625, -0.0067138671875, 0.004791259765625, 0.004150390625, -0.008544921875, -0.00677490234375, 0.0216064453125, 0.002777099609375, 0.0234375, -0.0235595703125, -0.0028839111328125, 0.00634765625, 0.00518798828125, 0.038818359375, -0.00677490234375, -0.007781982421875, 0.002899169921875, -0.0059814453125, -0.001068115234375, 0.004425048828125, -0.026123046875, 0.0029296875, -0.00341796875, -0.021484375, 0.044677734375, 0.007293701171875, -0.0108642578125, 0.00146484375, -0.00299072265625, 0.00872802734375, -0.0174560546875, -0.026611328125, -0.006744384765625, -0.004730224609375, -0.0177001953125, -0.011962890625, 0.01708984375, -0.00543212890625, -0.014404296875, -0.004302978515625, 0.00335693359375, -0.001495361328125, 0.00457763671875, 0.00579833984375, 0.006072998046875, 0.00021648406982421875, -0.0184326171875, 0.0157470703125, 0.0096435546875, 0.00714111328125, 0.0027313232421875, -0.00885009765625, 0.01031494140625, 0.00274658203125, 0.0206298828125, 0.0159912109375, 0.00762939453125, 0.002166748046875, 0.013916015625, -0.0002727508544921875, 0.0016937255859375, -0.01416015625, 0.00183868408203125, -0.0115966796875, 0.0167236328125, -0.01708984375, 0.0244140625, -0.006072998046875, -0.00131988525390625, 0.0030059814453125, 0.0084228515625, -0.0019073486328125, 0.00160980224609375, -0.016357421875, 0.004638671875, 0.0169677734375, -0.0147705078125, -0.0235595703125, 0.018310546875, 0.001129150390625, -0.01611328125, 0.0040283203125, -0.004241943359375, 0.0045166015625, -0.0118408203125, 0.01348876953125, -0.002593994140625, -0.01806640625, 0.000476837158203125, 0.00154876708984375, 0.00787353515625, 0.032470703125, -0.0027313232421875, 0.0203857421875, -0.0023651123046875, 0.00897216796875, -0.00421142578125, 0.01068115234375, -0.01483154296875, -0.0234375, 0.0181884765625, 0.006072998046875, -0.00421142578125, 0.0194091796875, 0.021728515625, -0.0177001953125, 0.05078125, 0.00151824951171875, 0.002838134765625, 0.00885009765625, -0.007568359375, -0.00885009765625, 0.022705078125, 0.02099609375, -0.0281982421875, -0.006317138671875, -0.01708984375, 0.004730224609375, 0.0130615234375, 0.010009765625, -0.043701171875, -0.00567626953125, -0.0157470703125, -0.0076904296875, 0.0242919921875, 0.030029296875, 0.0025177001953125, -0.001983642578125, 0.00518798828125, 0.0054931640625, 0.0018463134765625, -0.0062255859375, 0.00885009765625, -0.0218505859375, 0.0245361328125, 0.003936767578125, 0.011962890625, 0.0166015625, 0.0037994384765625, 0.000873565673828125, 0.0128173828125, 0.004364013671875, -0.01263427734375, -0.00469970703125, -0.007568359375, -0.0002384185791015625, -0.004608154296875, 0.003814697265625, -0.01470947265625, 0.00433349609375, 0.0390625, -0.01904296875, -0.001129150390625, 0.0274658203125, 0.004852294921875, -0.0098876953125, -0.000762939453125, 0.0157470703125, 0.0257568359375, -0.0186767578125, -0.003143310546875, 0.0111083984375, 0.009521484375, 0.0004558563232421875, 0.007415771484375, 0.01141357421875, 0.00927734375, 0.00153350830078125, 0.003204345703125, -0.00115203857421875, 0.0291748046875, 0.0018157958984375, -0.0017852783203125, 0.016357421875, -0.00830078125, 0.0087890625, 0.0024566650390625, -0.00186920166015625, -0.0042724609375, -0.0191650390625, 0.0054931640625, 0.006317138671875, -0.0194091796875, -0.019775390625, -0.01141357421875, 0.00017452239990234375, 0.02197265625, -0.0026092529296875, 0.005279541015625, -0.0135498046875, -0.002349853515625, 0.010986328125, 0.01470947265625, 0.0257568359375, -0.00927734375, 0.00579833984375, 0.007171630859375, 0.009033203125, 0.01025390625, -0.006927490234375, 0.01458740234375, 0.0208740234375, -0.01806640625, 0.0196533203125, -0.0172119140625, 0.029541015625, -0.013427734375, -0.0247802734375, 0.011962890625, -0.01031494140625, -0.004791259765625, -0.01202392578125, -0.004608154296875, 0.01519775390625, -0.0086669921875, -0.00092315673828125, 0.00933837890625, -0.014404296875, 0.00927734375, 0.0027008056640625, -0.00970458984375, 0.00750732421875, -0.006866455078125, -0.0111083984375, 0.01556396484375, 0.022216796875, -0.02001953125, 0.012451171875, -0.0177001953125, -0.007720947265625, -0.0031585693359375, 0.006195068359375, -0.006195068359375, -0.00115966796875, 0.0260009765625, 0.00628662109375, -0.03271484375, -0.004150390625, 0.0079345703125, 0.01129150390625, -0.002197265625, 0.00537109375, -0.0206298828125, 0.00830078125, 0.0169677734375, -0.00738525390625, -0.031494140625, 0.01483154296875, 0.0150146484375, 0.0106201171875, 0.005096435546875, 0.003997802734375, 0.0213623046875, -0.01904296875, -0.00927734375, -0.00640869140625, 0.004669189453125, 0.00335693359375, 0.002471923828125, -0.0084228515625, -0.0166015625, 0.01129150390625, -0.0081787109375, -0.0157470703125, -0.00933837890625, 0.00099945068359375, 0.007781982421875, -0.0164794921875, 0.042236328125, 0.0098876953125, 0.003936767578125, -0.0031585693359375, 0.0018768310546875, 0.004425048828125, 0.016357421875, -0.004302978515625, -0.028564453125, 0.00823974609375, -0.01153564453125, 0.005157470703125, -0.005889892578125, -0.00408935546875, -0.01171875, -0.0228271484375, 0.025146484375, -0.007720947265625, 0.006500244140625, 0.006439208984375, -0.003936767578125, -0.00653076171875, 0.0128173828125, 0.00579833984375, -0.0030670166015625, -0.0133056640625, -0.0030975341796875, -0.01177978515625, 0.0128173828125, 0.0069580078125, -0.0020294189453125, 0.0078125, 0.009765625, 0.0150146484375, -0.0013427734375, 0.002593994140625, 0.01129150390625, 0.003631591796875, -0.009033203125, -0.0098876953125, 0.0096435546875, -0.01348876953125, 0.006317138671875, 0.00183868408203125, -0.0179443359375, -0.01031494140625, 0.0194091796875, -0.0196533203125, -0.01171875, 0.0101318359375, 0.0081787109375, 0.004791259765625, -0.025390625, 0.0034637451171875, 0.00848388671875, -0.01483154296875, 0.01068115234375, 0.01416015625, 0.02099609375, 0.006195068359375, -0.01519775390625, 0.0023193359375, 0.005889892578125, 0.001251220703125, 0.004425048828125, 0.0081787109375, -0.0113525390625, -0.008056640625, 0.0021209716796875, 0.003204345703125, 0.01171875, -0.004547119140625, -0.006561279296875, 0.005340576171875, -0.0081787109375, 0.003326416015625, 0.00179290771484375, 0.03173828125, -0.01544189453125, -0.00787353515625, 0.0020599365234375, -0.00421142578125, -0.007476806640625, -0.00970458984375, 0.0023193359375, -0.01177978515625, 0.01025390625, 0.0007781982421875, 0.00848388671875, 0.02734375, -0.002471923828125, 0.00982666015625, 0.0072021484375, -0.019775390625, 0.001495361328125, -0.00750732421875, 0.01495361328125, 0.007415771484375, -0.0103759765625, -0.0103759765625, 0.0185546875, -0.003631591796875, -0.00970458984375, 0.00653076171875, 0.0026702880859375, 0.0194091796875, -0.01416015625, 0.02001953125, 0.0167236328125, -0.000335693359375, -0.02099609375, -0.035888671875, 0.018310546875, 0.0242919921875, -0.00579833984375, -0.022705078125, 0.00531005859375, 0.01043701171875, -0.00518798828125, 0.006988525390625, 0.002227783203125, -0.01141357421875, -0.008544921875, -0.0038909912109375, -0.01043701171875, 0.002960205078125, 0.013671875, -0.00640869140625, -0.006195068359375, 0.0230712890625, -0.0027923583984375, -0.02001953125, -0.0152587890625, 0.0206298828125, 0.0062255859375, -0.01312255859375, -0.0081787109375, -0.01055908203125, 0.040771484375, 0.0038909912109375, -0.0084228515625, 0.000606536865234375, 0.004852294921875, 0.00518798828125, -0.00494384765625, -0.0025482177734375, -0.01043701171875, -0.006744384765625, -0.01611328125, 0.025390625, -0.0021209716796875, -0.0166015625, -0.00193023681640625, 0.0235595703125, 0.0009613037109375, -0.015625, 0.00787353515625, -0.014404296875, -0.00119781494140625, 0.0186767578125, 0.005218505859375, -0.01092529296875, 0.020263671875, 0.0303955078125, -0.0037841796875, -0.006134033203125, 0.0194091796875, 0.0230712890625, -0.0142822265625, 0.00872802734375, -0.00421142578125, 0.0130615234375, -0.00830078125, 0.010009765625, 0.0169677734375, 0.004150390625, -0.004852294921875, -0.00579833984375, -0.016357421875, 0.02734375, 0.01416015625, -0.00421142578125, 0.01904296875, 0.0035400390625, -0.016357421875, 0.0037384033203125, -0.01708984375, 0.00762939453125, 0.01263427734375, 0.000335693359375, -0.00390625, -0.0198974609375, -0.0174560546875, 0.025146484375, -0.000530242919921875, 0.00013828277587890625, 0.01495361328125, 0.006072998046875, -0.0142822265625, -0.0159912109375, 0.0002841949462890625, 0.003936767578125, 0.01397705078125, 0.00347900390625, -0.00141143798828125, 0.00927734375, -0.01092529296875, -0.00946044921875, 0.0028839111328125, -0.025634765625, -0.0196533203125, -0.0179443359375, -0.04296875, 0.001983642578125, 9.655952453613281e-06, 0.005889892578125, -0.0177001953125, 0.01019287109375, 0.015380859375, 0.0098876953125, 0.016357421875, 0.014404296875, 0.0162353515625, 0.01385498046875, -0.01385498046875, -0.01055908203125, 0.03955078125, -0.00335693359375, 0.01214599609375, 0.00061798095703125, 0.0107421875, 0.00970458984375, 0.0098876953125, -0.00118255615234375, 0.0172119140625, -0.01116943359375, 0.011962890625, 0.01092529296875, -0.001983642578125, -0.00335693359375, 0.00543212890625, 0.004241943359375, 0.000713348388671875, 0.0184326171875, -0.0277099609375, 0.0113525390625, 0.0019683837890625, -0.01312255859375, -0.0184326171875, 0.0059814453125, -0.01116943359375, -0.01263427734375, -0.006439208984375, 0.004180908203125, 0.0213623046875, -0.0103759765625, -0.0096435546875, -0.0067138671875, 0.00157928466796875, 0.00958251953125, -0.0128173828125, -0.0206298828125, 0.00927734375, 0.02001953125, -0.01385498046875, 0.050537109375, 0.0004558563232421875, 0.009033203125, 0.02490234375, 0.013671875, 0.017333984375, -0.02099609375, 0.033447265625, -0.0079345703125, 0.004119873046875, 0.0014801025390625, 0.0002002716064453125, 0.017822265625, -0.0194091796875, -0.002532958984375, -0.00506591796875, -0.02880859375, 0.03369140625, 0.00830078125, -0.00872802734375, 0.000759124755859375, -0.0014495849609375, 0.00147247314453125, 0.01300048828125, -0.0228271484375, 0.000591278076171875, -0.001556396484375, -0.0001125335693359375, 0.00421142578125, 0.016845703125, -0.006622314453125, -0.0086669921875, -0.00872802734375, 0.0023956298828125, -0.01220703125, 0.00994873046875, -0.0054931640625, 0.0010223388671875, -0.002166748046875, 0.01080322265625, -0.00909423828125, -0.002105712890625, -0.0205078125, -0.00567626953125, -0.01220703125, -0.0115966796875, 0.013671875, 0.0159912109375, -0.00445556640625, -0.0281982421875, 0.0159912109375, 0.010986328125, 0.00537109375, -0.0152587890625, -0.005157470703125, -0.0101318359375, 0.004547119140625, 0.0142822265625, -0.005157470703125, 0.005859375, -0.0216064453125, 0.00341796875, 0.00665283203125, -0.00634765625, -0.006927490234375, 0.01214599609375, -0.0142822265625, 0.01080322265625, -0.006317138671875, 3.218650817871094e-05, 0.0157470703125, 0.032958984375, -0.022705078125, 0.0078125, 0.00183868408203125, -0.0111083984375, 0.005340576171875, -0.0050048828125, -0.0036468505859375, -0.0026397705078125, 0.00787353515625, 0.0035400390625, -0.0045166015625, -0.006927490234375, 0.001251220703125, 0.0152587890625, -0.03173828125, 0.0033111572265625, -0.01226806640625, 0.00153350830078125, -0.0019683837890625, -0.01513671875, 0.005584716796875, -0.01348876953125, 0.000766754150390625, 0.01312255859375, -0.001800537109375, -0.0107421875, 0.014404296875, -0.00872802734375, -0.00665283203125, -0.00970458984375, -0.00185394287109375, -0.0052490234375, 0.022216796875, 0.002899169921875, 0.0164794921875, -0.023193359375, 0.00970458984375, -0.00201416015625, -0.002532958984375, 0.000469207763671875, 0.0054931640625, 0.013427734375, -0.00787353515625, -0.0172119140625, 0.00089263916015625, 0.00139617919921875, 0.0194091796875, 0.01239013671875, -0.023193359375, -0.004791259765625, 0.0108642578125, 0.007720947265625, 0.01348876953125, -0.01239013671875, 0.007476806640625, 0.002471923828125, -0.0537109375, -0.01806640625, 0.03369140625, -0.00494384765625, 0.00118255615234375, -0.01300048828125, -0.0059814453125, -0.003753662109375, -0.007720947265625, -0.0047607421875, -0.003631591796875, 0.00677490234375, 0.00982666015625, -0.0107421875, 0.0015716552734375, 0.00653076171875, -0.002960205078125, 0.0084228515625, 0.001708984375, -0.003570556640625, 0.046875, -0.0213623046875, 0.00762939453125, 0.01397705078125, 0.00579833984375, -0.00081634521484375, 0.0086669921875, 0.01953125, 0.0015716552734375, 0.00885009765625, 0.00567626953125, -0.0037078857421875, -0.00994873046875, -0.005889892578125, 0.002777099609375, -0.0030975341796875, 0.02197265625, -0.00494384765625, 0.0125732421875, 0.0050048828125, 0.000789642333984375, -0.00165557861328125, -0.0177001953125, -0.006927490234375, 0.01287841796875, -0.018310546875, 0.006439208984375, 0.006500244140625, -0.006561279296875, 0.02001953125, -0.00811767578125, -0.0308837890625, 0.01171875, -0.007293701171875, -0.004852294921875, -0.0050048828125, -0.0019683837890625, -0.00958251953125, 0.0235595703125, 0.0034332275390625, -0.0018157958984375, 0.00634765625, -0.0218505859375, 0.01287841796875, 0.0194091796875, 0.01214599609375, 0.039306640625, 0.005767822265625, -0.0024566650390625, -0.0126953125, -0.0040283203125, -0.0081787109375, -0.0162353515625, 0.0031585693359375, -0.0050048828125, 0.00439453125, 0.02099609375, 0.031494140625, -0.0025787353515625, -0.00139617919921875, 0.00157928466796875, 0.00051116943359375, 0.00634765625, 0.019287109375, 0.00885009765625, -0.0030364990234375, 0.00860595703125, -0.0186767578125, 0.00897216796875, 0.001251220703125, -0.0014190673828125, 0.01470947265625, 0.0142822265625, -0.002838134765625, 0.0142822265625, -0.01513671875, -0.002410888671875, -0.008056640625, 0.0023193359375, 0.00885009765625, 0.002105712890625, 0.019287109375, -0.00537109375, -0.007080078125, -0.0024261474609375, 0.0011138916015625, 0.0189208984375, -0.00799560546875, 0.000186920166015625, -0.004547119140625, 0.0035858154296875, -0.00124359130859375, 0.006500244140625, -0.025390625, 0.00836181640625, 0.0225830078125, -0.00787353515625, 0.004119873046875, -0.0228271484375, 0.01495361328125, -0.01806640625, 0.01300048828125, -0.01904296875, -0.0157470703125, 0.00848388671875, 0.018798828125, 0.00128936767578125, -0.0091552734375, -0.00909423828125, -0.016845703125, 0.0159912109375, 0.00433349609375, 0.0015869140625, 0.014404296875, 0.01214599609375, 0.0002994537353515625, -0.0194091796875, -0.006072998046875, -0.00714111328125, -0.0068359375, 0.00531005859375, 0.018310546875, -0.02001953125, 0.009033203125, 0.00189971923828125, -0.00445556640625, 0.00653076171875, 0.0126953125, -0.00421142578125, 0.0147705078125, -0.01385498046875, -0.0091552734375, 0.006927490234375, -0.003936767578125, -0.0004482269287109375, 0.01806640625, -0.0115966796875, 0.0027923583984375, -0.00970458984375, -0.01385498046875, 0.0089111328125, 0.016845703125, 0.01239013671875, 0.0150146484375, 0.00885009765625, 0.0045166015625, -0.01031494140625, -0.0115966796875, 0.01483154296875, -0.043701171875, -0.002899169921875, 0.006500244140625, 0.00457763671875, 0.000705718994140625, 0.006500244140625, 0.0225830078125, 0.0038909912109375, -0.0022735595703125, 0.0062255859375, 0.0048828125, -0.0040283203125, -0.00555419921875, -0.010986328125, 0.00970458984375, 0.00147247314453125, 0.01226806640625, 0.01171875, -0.0196533203125, 0.0098876953125, 0.02490234375, 0.005584716796875, -0.00128936767578125, -0.01202392578125, 0.000720977783203125, 0.01171875, -0.00970458984375, -0.004119873046875, -0.10498046875, -0.0012664794921875, -0.0164794921875, 0.01171875, -0.00579833984375, -0.006866455078125, -0.004302978515625, 0.003997802734375, -0.00494384765625, 0.01806640625, -0.0089111328125, -0.010009765625, -0.01116943359375, 0.0203857421875, -0.00518798828125, 0.0269775390625, -0.005889892578125, -0.0181884765625, -0.01312255859375, -0.005889892578125, -0.0150146484375, -0.0130615234375, 0.00037384033203125, 0.002105712890625, -0.0022430419921875, 0.00640869140625, -0.033203125, 0.0174560546875, 0.013916015625, 0.01116943359375, 0.00543212890625, 0.0118408203125, 0.0133056640625, -0.01043701171875, -0.0032501220703125, 0.01220703125, -0.0174560546875, -0.007476806640625, -0.04736328125, 0.004638671875, 0.0157470703125, 0.010009765625, -0.02392578125, 0.019775390625, -0.000606536865234375, 0.01556396484375, -0.01171875, -0.010009765625, -0.00469970703125, -0.0016021728515625, 0.01214599609375, 0.0030517578125, -0.00135040283203125, -0.00860595703125, -0.0034332275390625, 0.00946044921875, -0.02490234375, 0.00347900390625, -0.00103759765625, 0.0179443359375, 0.006988525390625, 0.00799560546875, -0.023681640625, -0.00101470947265625, 0.01458740234375, -0.0234375, 0.0023193359375, -0.0101318359375, 0.014404296875, -0.01043701171875, -0.01385498046875, -0.0014495849609375, 0.0013427734375, 0.005279541015625, -0.01239013671875, 0.01385498046875, -0.0029449462890625, -0.0013427734375, -0.00860595703125, -0.007171630859375, 0.0150146484375, 0.025634765625, 0.00121307373046875, 0.01025390625, 0.00494384765625, -0.00946044921875, 0.03515625, -0.000606536865234375, 0.00872802734375, 0.002838134765625, 0.0113525390625, -0.00567626953125, -0.00885009765625, 0.004150390625, -0.015625, 0.09814453125, -0.0045166015625, 0.0181884765625, 0.0091552734375, -0.0025787353515625, 0.01141357421875, 0.0040283203125, 0.005706787109375, 0.004852294921875, -0.021240234375, 3.457069396972656e-05, -0.0145263671875, -0.00921630859375, 0.0159912109375, 0.023681640625, -0.00933837890625, 0.00494384765625, -0.0037078857421875, -0.019287109375, 0.00194549560546875, 0.023681640625, -0.00823974609375, -0.015869140625, 0.0228271484375, 0.0032501220703125, 0.006500244140625, -0.018310546875, 0.005889892578125, 0.0242919921875, 0.00811767578125, 0.00811767578125, -0.0206298828125, 0.002960205078125, 0.01202392578125, -0.0242919921875, -0.003997802734375, 0.0185546875, 0.005126953125, 0.00628662109375, -0.0191650390625, -0.0133056640625, 0.048583984375, 0.01141357421875, -0.0026702880859375, -0.00445556640625, -0.0150146484375, -0.0145263671875, 0.007720947265625, 0.006195068359375, 0.00860595703125, -0.016357421875, 0.009521484375, -0.00958251953125, -0.010009765625, -0.0147705078125, -0.0028533935546875, -0.018798828125, 0.00109100341796875, 0.000926971435546875, 0.010009765625, 0.0279541015625, 0.01226806640625, -0.01458740234375, -0.0101318359375, 0.001129150390625, -0.01116943359375, -0.01348876953125, 0.0107421875, -0.0024566650390625, -0.00677490234375, -0.01287841796875, 0.0191650390625, 0.00958251953125, -0.00061798095703125, -0.005126953125, 0.010009765625, 0.00109100341796875, 0.00579833984375, -0.01513671875, 0.01141357421875, -0.00653076171875, 0.0068359375, -0.02685546875, -0.002471923828125, 0.015869140625, 0.0211181640625, -0.00927734375, 0.00726318359375, 0.00506591796875, 0.002227783203125, -0.0012664794921875, 0.01806640625, -0.013916015625, 0.00762939453125, -0.0087890625, 0.00157928466796875, 0.00537109375, -0.0111083984375, -0.004974365234375, -0.0245361328125, 0.01116943359375, -0.00653076171875, 0.00927734375, -0.025146484375, -0.021484375, -0.01470947265625, 0.01226806640625, 0.005126953125, 0.0047607421875, 0.0022430419921875, 0.006439208984375, 0.01397705078125, 0.00150299072265625, -0.00555419921875, -0.006134033203125, 0.00933837890625, -0.0194091796875, -0.00013446807861328125, -0.03076171875, 0.002685546875, -0.0260009765625, 0.0206298828125, 0.004150390625, 0.00165557861328125, -0.01031494140625, -0.0030670166015625, -0.0091552734375, -0.005401611328125, -0.000637054443359375, 0.0010833740234375, 0.0228271484375, 0.00830078125, 0.052978515625, -0.01239013671875, 0.0150146484375, 0.00836181640625, -0.0166015625, 0.0133056640625, 0.0169677734375, 0.00274658203125, 0.002349853515625, -0.00628662109375, -0.00897216796875, 0.0927734375, 0.0159912109375, -0.005126953125, -0.0166015625, -0.01019287109375, 0.00537109375, 0.0177001953125, -0.00848388671875, -0.0169677734375, 0.00433349609375, -0.004852294921875, 0.00665283203125, 0.0189208984375, -0.00494384765625, -0.003997802734375, -0.0020599365234375, 0.0019989013671875, -0.02197265625, 0.00750732421875, 0.000965118408203125, 0.0274658203125, 0.000732421875, 0.016845703125, 0.005218505859375, 0.0072021484375, 0.029541015625, -0.01153564453125, 0.01202392578125, -0.01129150390625, 0.007568359375, -0.0198974609375, -0.020751953125, -0.01263427734375, 0.00177001953125, 0.02880859375, -0.0108642578125, -0.00555419921875, 0.0208740234375, -0.00970458984375, 0.0174560546875, -0.002960205078125, -0.0101318359375, -0.01300048828125, 0.00885009765625, 0.00836181640625, 0.0029449462890625, -0.006439208984375, 0.00037384033203125, -0.0247802734375, 0.02880859375, 0.00872802734375, -0.00024318695068359375, -0.01025390625, -0.004302978515625, -0.000308990478515625, -0.0145263671875, 0.013671875, -0.01025390625, -0.00946044921875, 0.01544189453125, -0.000885009765625, 0.0167236328125, 0.0240478515625, -0.011962890625, -0.00457763671875, -0.031494140625, 0.0101318359375, 0.01153564453125, 0.0098876953125, -0.00052642822265625, -0.006439208984375, -0.025146484375, 0.007171630859375, -0.0045166015625, -0.0001125335693359375, 0.0032196044921875, -0.0235595703125, -0.01348876953125, 0.0101318359375, -0.0030517578125, 0.025146484375, 0.00154876708984375, -0.0201416015625, 0.0037841796875, -0.0234375, 0.037109375, 0.014404296875, -0.00274658203125, 0.0091552734375, 0.0069580078125, 0.0152587890625, -0.01129150390625, 0.004638671875, 0.01495361328125, 0.02734375, -0.0072021484375, 0.0001354217529296875, 0.002685546875, 0.0021820068359375, -0.0113525390625, 0.019775390625, -0.0076904296875, 0.011962890625, -0.009033203125, 0.09130859375, 0.01708984375, -0.0167236328125, -0.2119140625, 0.01214599609375, 0.0247802734375, -0.028564453125, 0.0296630859375, 2.8133392333984375e-05, 0.0072021484375, -0.000949859619140625, -0.006500244140625, -0.0126953125, 0.00494384765625, -0.01177978515625, -0.00157928466796875, 0.00115966796875, 0.00787353515625, 0.0034942626953125, 0.004119873046875, 0.0021820068359375, -0.01806640625, 0.00142669677734375, 0.00064849853515625, 0.00823974609375, 0.00194549560546875, 0.005218505859375, -0.005767822265625, 0.02685546875, 0.0081787109375, 0.00946044921875, -0.0113525390625, -0.00677490234375, -0.023193359375, -0.00628662109375, -0.01287841796875, 0.0029296875, 0.00750732421875, -0.0016632080078125, -0.000949859619140625, -0.004119873046875, 0.00738525390625, -0.007476806640625, 0.010009765625, -0.0126953125, -0.002532958984375, 0.0166015625, -0.01129150390625, 0.0157470703125, 0.0019989013671875, -0.00341796875, -0.0150146484375, 0.01409912109375, 0.0152587890625, 0.0004863739013671875, 0.0118408203125, 0.09423828125, 0.0142822265625, -0.00543212890625, 0.0172119140625, -0.0162353515625, -0.02685546875, 0.0223388671875, 0.005279541015625, -0.0147705078125, -0.0021514892578125, -0.0040283203125, 0.00494384765625, 0.01348876953125, -0.005157470703125, 5.6743621826171875e-05, 0.007171630859375, 0.0026702880859375, 0.00537109375, -0.0036468505859375, -0.006195068359375, 0.0203857421875, -0.014404296875, -0.0004405975341796875, -0.0107421875, -0.006072998046875, -0.000453948974609375, 0.022216796875, -0.0072021484375, 0.00970458984375, 0.00885009765625, -0.0089111328125, -0.00823974609375, -0.00012683868408203125, -0.018798828125, 0.00592041015625, -0.0027008056640625, 0.0113525390625, 0.0103759765625, -0.005706787109375, 0.0274658203125, 0.00146484375, 0.006072998046875, 0.038330078125, 0.01287841796875, -0.0087890625, -0.0252685546875, -0.0172119140625, -0.01513671875, 0.01092529296875, -0.002197265625, -0.01202392578125, 0.0169677734375, 0.0026092529296875, 0.00185394287109375, -0.0181884765625, -0.012451171875, 0.00665283203125, -0.002899169921875, 0.04736328125, 0.02880859375, -0.01226806640625, 0.0087890625, -0.000919342041015625, 0.01385498046875, -0.00677490234375, 0.004241943359375, -0.003997802734375, -0.0145263671875, 0.0240478515625, -0.016357421875, -0.01171875, 0.0196533203125, 0.01177978515625, -0.014404296875, -0.004608154296875, 0.019775390625, 0.0006256103515625, -0.00946044921875, -0.00579833984375, -0.00150299072265625, 0.0072021484375, -0.025146484375, -0.0260009765625, 0.001373291015625, -0.01171875, 0.00144195556640625, -0.000659942626953125, 0.003570556640625, 0.015625, 0.0103759765625, 0.00946044921875, 0.00335693359375, -0.0108642578125, -0.003936767578125, 0.00335693359375, -0.0002899169921875, -0.016845703125, 0.02001953125, -0.0022125244140625, -0.0311279296875, -0.004852294921875, 0.013916015625, 0.007080078125, 0.0027313232421875, 0.00189971923828125, -0.006134033203125, -0.000804901123046875, -0.00634765625, 0.0087890625, -0.00335693359375, 0.01409912109375, -0.01129150390625, 0.0145263671875, -0.00390625, 0.01031494140625, 0.00677490234375, -0.01092529296875, 0.003570556640625, 0.002288818359375, -0.0019989013671875, 0.004852294921875, -0.007049560546875, 0.00555419921875, -0.00665283203125, -0.0147705078125, 0.0118408203125, -0.022705078125, -0.002044677734375, -0.00811767578125, 0.01416015625, 0.0118408203125, 0.00213623046875, 0.01080322265625, 0.00341796875, 0.000560760498046875, 0.0020599365234375, 0.01116943359375, -0.0184326171875, -0.002838134765625, 0.0118408203125, 0.0133056640625, 0.0277099609375, 0.01226806640625, 0.00384521484375, -0.0172119140625, 0.00665283203125, 0.0235595703125, 0.0079345703125, -0.00128173828125, 0.00860595703125, 0.018798828125, -0.002899169921875, -0.0125732421875, -0.022216796875, 0.015869140625, 0.00872802734375, -0.005096435546875, -0.01171875, -0.006103515625, 0.00179290771484375, 0.0019989013671875, 0.0003261566162109375, 0.010986328125, 0.00083160400390625, -0.0133056640625, 0.005889892578125, -0.000774383544921875, 0.0145263671875, 0.00396728515625, 0.00830078125, -0.017578125, 0.01434326171875, 0.0189208984375, -0.003753662109375, 0.01171875, -0.01226806640625, -0.00750732421875, 0.0234375, -0.00787353515625, 0.0113525390625, 0.016845703125, 0.0264892578125, -0.007080078125, 0.002044677734375, 0.0021820068359375, -0.00128936767578125, 0.0115966796875, -0.0098876953125, -0.01043701171875, 0.0152587890625, -0.01153564453125, 0.006500244140625, 0.011962890625, 0.004791259765625, -0.01416015625, -0.0125732421875, -0.00946044921875, -0.0177001953125, -0.0260009765625, 0.01239013671875, -0.03564453125, 0.0159912109375, 0.02197265625, 0.0198974609375, -0.0098876953125, 0.019775390625, 0.00958251953125, 0.005706787109375, 0.019775390625, -0.006622314453125, -0.0093994140625, 0.0003223419189453125, 0.002777099609375, 0.01416015625, 0.0020751953125, 0.00341796875, 0.004150390625, 0.054931640625, 0.002349853515625, 0.0069580078125, 0.0062255859375, 0.0045166015625, -0.00118255615234375, 0.0126953125, -0.0206298828125, 0.01214599609375, -0.01226806640625, -0.0206298828125, -0.004425048828125, -0.00970458984375, -0.0247802734375, -0.0093994140625, -0.0203857421875, 0.0400390625, 0.0157470703125, -0.01214599609375, -0.0023956298828125, -0.0115966796875, -0.01177978515625, 0.004852294921875, -0.000514984130859375, 0.00860595703125, 0.010009765625, -0.003143310546875, -0.01019287109375, 0.012451171875, 0.000644683837890625, -0.004302978515625, -0.01220703125, -0.0113525390625, -0.00179290771484375, 0.00457763671875, 0.00408935546875, -0.00909423828125, -0.016357421875, -0.00567626953125, -0.00872802734375, -0.031982421875, 0.00347900390625, -0.006103515625, 0.012451171875, 0.006011962890625, -0.011962890625, 0.0029449462890625, 0.00750732421875, -0.005584716796875, -0.00537109375, 0.036865234375, -0.00341796875, -8.392333984375e-05, -0.0081787109375, 0.006134033203125, -0.01324462890625, -0.006927490234375, -0.0213623046875, 0.00146484375, 0.01470947265625, -0.00885009765625, -0.0147705078125, -0.0125732421875, 0.005859375, 0.013671875, -0.00390625, -0.002471923828125, -0.0042724609375, -0.007476806640625, 0.0164794921875, -0.0196533203125, 0.00176239013671875, 0.0033111572265625, -0.00762939453125, 0.0004405975341796875, -0.000347137451171875, -0.006622314453125, 0.0032196044921875, 0.01116943359375, -0.0181884765625, 0.01708984375, 0.0167236328125, 0.00909423828125, 0.006500244140625, -0.0147705078125, 0.0242919921875, 0.002044677734375, -0.01214599609375, -0.00860595703125, -0.0035247802734375, -0.0172119140625, 0.00811767578125, -0.00579833984375, 0.0098876953125, 0.01611328125, 0.0179443359375, -0.0308837890625, -0.01397705078125, -0.00139617919921875, -0.01556396484375, 0.006011962890625, -0.0128173828125, 0.006103515625, 0.0091552734375, -0.00124359130859375, -0.0111083984375, 0.0016326904296875, -0.01385498046875, -0.01129150390625, -0.003936767578125, -0.0021820068359375, 0.0084228515625, -0.0174560546875, -0.003814697265625, 0.02392578125, -0.01055908203125, -0.010009765625, 0.0067138671875, 0.0228271484375, -0.002349853515625, -0.02001953125, 0.021484375, 0.006927490234375, 0.00109100341796875, 0.002777099609375, 0.0091552734375, 0.000713348388671875, 0.00189971923828125, 0.01129150390625, 0.00982666015625, 0.01904296875, -0.0106201171875, 0.00457763671875, -0.0022430419921875, 0.01171875, -0.0059814453125, 0.0023651123046875, 0.003997802734375, 0.006011962890625, -0.016845703125, 0.0034942626953125, -0.017578125, 0.007415771484375, -0.00182342529296875, -0.01043701171875, 0.03173828125, 0.0150146484375, 0.00885009765625, -0.01220703125, -0.03271484375, -0.01458740234375, 0.005035400390625, -0.007293701171875, -0.00439453125, -0.01153564453125, -0.007720947265625, -0.002471923828125, -0.01220703125, 0.00116729736328125, -0.0079345703125, 0.0186767578125, 0.00799560546875, 0.0172119140625, 0.021728515625, -0.007080078125, 0.00885009765625, -0.01171875, 0.01416015625, 0.01519775390625, 0.001190185546875, -0.0274658203125, 0.01092529296875, 0.009033203125, -0.00921630859375, 0.00628662109375, -0.023193359375, -0.00146484375, -0.0135498046875, 0.0101318359375, 0.016845703125, -0.01708984375, -0.00494384765625, -0.00860595703125, -0.005218505859375, -0.01068115234375, -0.0004730224609375, -0.0203857421875, -0.01708984375, 0.00885009765625, 0.00946044921875, 0.00084686279296875, -0.00081634521484375, -0.005340576171875, -0.0029296875, -0.00023174285888671875, 0.03759765625, -0.007720947265625, 0.016845703125, -0.007781982421875, -0.0113525390625, -0.0087890625, 0.004638671875, 0.00787353515625, -0.006317138671875, 0.0252685546875, 0.01068115234375, 0.017822265625, -0.00885009765625, 0.0245361328125, -0.001708984375, 0.00518798828125, 0.01495361328125, -0.00543212890625, -0.01556396484375, -0.00408935546875, -0.0030975341796875, -0.02392578125, 0.047119140625, -0.00799560546875, 0.0020599365234375, -0.00335693359375, -0.02880859375, 0.01324462890625, -0.00506591796875, -0.0128173828125, 0.004791259765625, -0.003753662109375, 0.02197265625, -0.00799560546875, -0.0035400390625, 0.01116943359375, -0.0081787109375, 0.0208740234375, -0.001190185546875, 0.0194091796875, -0.007354736328125, -0.00164031982421875, 0.003753662109375, 0.006317138671875, -5.435943603515625e-05, 0.00152587890625, -0.0274658203125, 0.01263427734375, 0.03369140625, 0.0113525390625, -0.006622314453125, -0.0169677734375, -0.01043701171875, 0.01416015625, 0.0037078857421875, 0.0040283203125, -0.011962890625, -0.0172119140625, 0.00653076171875, 0.00445556640625, 0.0218505859375, 0.005767822265625, 0.0179443359375, -0.0025482177734375, -0.00093841552734375, 0.015869140625, 0.02001953125, -0.00726318359375, -0.00933837890625, 0.0002956390380859375, 0.0086669921875, 0.01556396484375, 0.0194091796875, 0.033203125, 0.006103515625, 0.000934600830078125, -0.021240234375, -0.020263671875, -0.01470947265625, 0.0072021484375, 0.019287109375, 0.0108642578125, -0.006988525390625, -0.0157470703125, -0.005279541015625, 0.00543212890625, -0.007049560546875, -0.0177001953125, 0.000732421875, 0.01312255859375, 0.000720977783203125, -0.012451171875, 0.0016326904296875, -0.0162353515625, 0.01513671875, -0.0014801025390625, 0.004302978515625, -0.0017852783203125, -0.0113525390625, -0.0185546875, -0.0157470703125, -0.0003604888916015625, 0.004730224609375, -0.002685546875, -0.0142822265625, 0.0050048828125, -0.006317138671875, 0.0021820068359375, 0.010009765625, 0.00390625, -0.013427734375, 0.0150146484375, -0.0186767578125, -0.0159912109375, 0.0016326904296875, -0.0264892578125, -0.0032501220703125, 0.0030364990234375, 0.0015869140625, 0.00074005126953125, 0.003387451171875, 0.0054931640625, -0.015625, -0.0098876953125, -0.01019287109375, 0.0159912109375, 0.04736328125, -0.005889892578125, -0.005706787109375, -6.580352783203125e-05, 0.01214599609375, 0.0157470703125, 0.001922607421875, -0.013916015625, 0.00433349609375, 0.01300048828125, -0.01324462890625, -0.003143310546875, -0.0181884765625, -0.0023193359375, 0.0020751953125, -0.09423828125, 0.015380859375, 0.00927734375, -0.01007080078125, -0.000537872314453125, -0.00066375732421875, -0.0032806396484375, -0.0234375, -0.001556396484375, -0.020263671875, -0.0040283203125, -0.0030517578125, -0.0096435546875, 0.001007080078125, -0.00726318359375, 0.0014190673828125, -0.0115966796875, -0.00750732421875, 0.0174560546875, -0.00726318359375, -0.0029449462890625, -0.0179443359375, -0.007293701171875, -0.0177001953125, 0.00933837890625, -0.0021820068359375, 0.00347900390625, -0.0196533203125, 0.038818359375, -0.01220703125, -0.003204345703125, 0.00408935546875, -0.014404296875, -0.007354736328125, 0.0101318359375, 0.004150390625, -0.006072998046875, -0.00830078125, -0.0037078857421875, 0.0012054443359375, -0.0194091796875, 0.015380859375, -0.09228515625, 0.000705718994140625, 0.01141357421875, 0.0244140625, -0.0162353515625, 0.01055908203125, -0.00016117095947265625, -0.00408935546875, -0.0026092529296875, -0.00823974609375, 0.022705078125, -0.01202392578125, 0.01263427734375, -0.001800537109375, 0.02197265625, -0.01324462890625, 0.0078125, 0.0059814453125, 0.014404296875, 0.007080078125, -0.00144195556640625, 0.0152587890625, 0.003997802734375, -0.004302978515625, 0.022216796875, -0.0108642578125, 0.006134033203125, -0.0260009765625, 0.0025177001953125, -0.019775390625, 0.0014495849609375, 0.02783203125, -0.018310546875, 0.00347900390625, 0.00543212890625, 0.004730224609375, 0.002899169921875, 0.00494384765625, 0.00063323974609375, 0.0028533935546875, 0.018310546875, -0.0078125, -0.00013828277587890625, 0.01055908203125, 0.00640869140625, 0.005126953125, -0.006866455078125, 0.004638671875, -0.01141357421875, -0.0086669921875, 0.00396728515625, -0.0025634765625, 0.012451171875, 0.0274658203125, 0.01116943359375, 0.023681640625, 0.0098876953125, -0.03369140625, -0.01214599609375, 0.01611328125, -0.0003185272216796875, -0.018310546875, 0.023681640625, 0.013671875, 0.006622314453125, -0.01483154296875, -0.00830078125, 0.02783203125, -0.007476806640625, 0.01348876953125, -0.00982666015625, -0.0142822265625, -0.004150390625, 0.014404296875, -0.00836181640625, 0.0029449462890625, 0.025634765625, -0.0037994384765625, -0.01055908203125, -0.0028839111328125, 0.0004405975341796875, 0.005859375, 0.00787353515625, -0.01348876953125, -0.016845703125, -0.00543212890625, -0.001922607421875, 0.001373291015625, -0.00665283203125, -0.008056640625, -0.003570556640625, 0.0191650390625, -0.00018310546875, -0.01544189453125, -0.0001697540283203125, 0.0024261474609375, 0.0234375, 0.007293701171875, 0.001251220703125, 0.00933837890625, -0.010009765625, -0.016357421875, -0.008544921875, 0.007598876953125, -0.00860595703125, -0.00872802734375, 0.01116943359375, -0.016845703125, 0.013427734375, 0.00836181640625, 0.003936767578125, -0.0181884765625, 0.00750732421875, 0.0244140625, 0.01239013671875, -0.000759124755859375, 0.0166015625, 8.487701416015625e-05, -0.00186920166015625, 0.0111083984375, -0.019775390625, 0.0034332275390625, -0.0027313232421875, 0.0213623046875, -0.0177001953125, -0.0208740234375, -0.0242919921875, 0.0019989013671875, -0.00897216796875, -0.0076904296875, -0.0030059814453125, 0.000720977783203125, 0.0166015625, 0.0128173828125, 0.000579833984375, -0.0023956298828125, 0.00885009765625, -0.00640869140625, -0.0045166015625, 0.00579833984375, -0.00750732421875, -0.002105712890625, -0.0262451171875, -0.000415802001953125, -0.01263427734375, -0.00579833984375, -0.0244140625, 0.00714111328125, 0.00787353515625, -0.00909423828125, 0.01513671875, -0.01129150390625, 0.0021209716796875, 0.00726318359375, 0.0019989013671875, -0.0281982421875, 0.007354736328125, 0.000213623046875, 0.0240478515625, -0.0130615234375, 0.00341796875, -0.013427734375, 0.00579833984375, 0.01434326171875, -0.00640869140625, 0.00982666015625, -0.00152587890625, -0.0164794921875, -0.0159912109375, 0.01116943359375, 0.003997802734375, -0.0040283203125, 0.001251220703125, -0.021728515625, 0.0030517578125, 0.00506591796875, 0.0086669921875, -0.0081787109375, -0.010986328125, 0.0126953125, -0.07470703125, -0.00144195556640625, -0.006134033203125, -0.001678466796875, 0.00726318359375, -0.01904296875, 0.0185546875, -0.0096435546875, 0.0244140625, 0.00390625, 0.00787353515625, -0.0234375, -0.0194091796875, -0.0020294189453125, -0.00640869140625, 0.0228271484375, -0.00121307373046875, -0.005889892578125, -0.00970458984375, 0.0235595703125, 0.010009765625, -0.002716064453125, 0.00714111328125, 0.004638671875, 0.0126953125, -0.01470947265625, -0.004638671875, 0.0013885498046875, 0.0111083984375, 0.0390625, 0.00958251953125, -0.000308990478515625, -0.01556396484375, -0.00118255615234375, 0.00958251953125, -0.0087890625, 0.00543212890625, 0.007781982421875, 0.03759765625, 0.00189208984375, -0.02001953125, 0.00927734375, -0.000896453857421875, 0.000553131103515625, -0.022216796875, -0.022705078125, 0.00848388671875, 0.0084228515625, 0.00335693359375, 0.0111083984375, 0.0115966796875, 0.00189208984375, 0.01458740234375, 0.0107421875, -0.0162353515625, -0.00445556640625, 0.000629425048828125, -0.03125, -0.01409912109375, -0.00543212890625, -0.0033111572265625, -0.005340576171875, 0.006988525390625, -0.00079345703125, -0.008544921875, -0.0159912109375, 0.0159912109375, -0.0211181640625, -0.035400390625, 0.01007080078125, -0.004180908203125, 0.00640869140625, -0.0390625, 0.0032196044921875, 0.0133056640625, -0.0091552734375, -0.00872802734375, -0.01611328125, 0.00726318359375, 0.0038909912109375, 0.0020904541015625, -0.0269775390625, -0.003173828125, 0.014404296875, 0.01312255859375, 0.008544921875, -0.0011444091796875, 0.02734375, 0.016357421875, -0.0004425048828125, -0.0023193359375, -0.003204345703125, 0.01287841796875, -0.006439208984375, -0.01495361328125, 0.000392913818359375, 0.00677490234375, 0.014404296875, -0.007720947265625, -0.005462646484375, -0.01287841796875, -0.0013275146484375, 0.00665283203125, -0.0115966796875, 0.02099609375, 0.0203857421875, -0.00738525390625, -0.026611328125, 0.009521484375, 0.0166015625, -0.0133056640625, -0.0145263671875, 0.004486083984375, -0.002410888671875, 0.01220703125, 0.00506591796875, -0.01470947265625, 0.0264892578125, 0.006439208984375, -0.01055908203125, -0.010009765625, -0.0025177001953125, -0.004425048828125, 0.01239013671875, 0.0078125, -0.00885009765625, -0.006103515625, 0.0166015625, -0.003997802734375, -0.0091552734375, -0.01806640625, -0.0257568359375, 0.0162353515625, -0.0115966796875, 0.0038604736328125, 0.009033203125, -0.01080322265625, 0.019775390625, 0.00099945068359375, 0.01177978515625, 0.0184326171875, 0.02880859375, -0.00921630859375, -0.005218505859375, 0.00506591796875, 0.0033721923828125, 0.00958251953125, 0.0125732421875, -0.01556396484375, -0.010009765625, -0.0206298828125, 0.0087890625, 0.005859375, 0.005401611328125, -0.01007080078125, 0.004486083984375, -0.005279541015625, -0.01043701171875, -0.010986328125, 0.006072998046875, -0.038818359375, -0.0030975341796875, 0.0036468505859375, 0.00396728515625, -0.00836181640625, -0.0025787353515625, 0.002685546875, 0.025390625, -0.00970458984375, 0.021240234375, 0.0203857421875, 0.01434326171875, -0.0017852783203125, 0.015625, -0.0014801025390625, -0.005645751953125, 0.00909423828125, 0.00860595703125, 0.0005645751953125, -0.002197265625, 0.0108642578125, -0.0059814453125, -0.01806640625, 0.00139617919921875, -0.006500244140625, -0.00099945068359375, 0.0162353515625, -0.006011962890625, -0.00927734375, -0.007171630859375, -0.01226806640625, 0.0003814697265625, -0.031982421875, -0.0072021484375, -0.0091552734375, 0.002960205078125, -0.01226806640625, -0.01434326171875, -0.00176239013671875, -0.0128173828125, 0.1025390625, 0.00164031982421875, 0.005157470703125, -0.00152587890625, 0.01434326171875, -0.003814697265625, -0.0067138671875, 0.0087890625, -0.006561279296875, -0.001068115234375, 0.008056640625, -0.0218505859375, -0.00311279296875, 0.00677490234375, -0.00750732421875, 0.009033203125, 0.00921630859375, -0.007049560546875, -0.01141357421875, -0.002349853515625, 0.00677490234375, -0.005859375, 0.0107421875, 0.00714111328125, -0.0167236328125, -0.00860595703125, -0.01068115234375, 0.003936767578125, -0.01239013671875, 0.00885009765625, -0.0091552734375, 0.01068115234375, 0.0034332275390625, 0.0228271484375, 0.01287841796875, -0.0247802734375, -0.007354736328125, -0.01708984375, -0.01007080078125, -0.0035858154296875, -0.0024566650390625, 0.021484375, 0.0194091796875, -0.007781982421875, -0.006103515625, 0.00092315673828125, -0.005584716796875, 0.01434326171875, 0.0103759765625, 0.0087890625, 0.00640869140625, 0.0019683837890625, 0.00921630859375, -0.0130615234375, -0.0012359619140625, -0.0042724609375, 0.002838134765625, -0.0032196044921875, -0.00142669677734375, 0.0205078125, -0.013427734375, 0.0299072265625, -0.00299072265625, 0.01287841796875, 0.0004100799560546875, 0.0225830078125, -0.01611328125, 0.004425048828125, 0.00079345703125, 0.00787353515625, -0.0072021484375, 0.002777099609375, -3.7670135498046875e-05, 0.0007476806640625, 0.004302978515625, -0.0107421875, -0.00193023681640625, 0.0091552734375, -0.005767822265625, 0.0201416015625, -0.01483154296875, -0.00176239013671875, -0.0030670166015625, -0.00714111328125, -0.005706787109375, -0.01397705078125, 0.0069580078125, -0.01226806640625, -0.008056640625, -0.005218505859375, -0.01263427734375, -0.002716064453125, 0.01116943359375, 0.023681640625, 0.016357421875, 0.0150146484375, -0.0024261474609375, 0.01708984375, -0.0177001953125, -0.01214599609375, 0.005401611328125, -0.0184326171875, -0.0019683837890625, 0.000751495361328125, 0.01226806640625, 0.021484375, -0.01483154296875, -0.0196533203125, -0.0018157958984375, 0.01312255859375, -0.00714111328125, -0.031982421875, -0.01434326171875, -0.006439208984375, 0.00506591796875, -0.0022125244140625, 0.01397705078125, 0.0028228759765625, -0.00136566162109375, -0.0062255859375, 0.0107421875, 0.08642578125, -0.0068359375, -0.003570556640625, -0.00787353515625, -0.00058746337890625, -0.01312255859375, 0.0260009765625, 0.01806640625, 0.0159912109375, -0.01458740234375, 0.0034332275390625, -0.0034942626953125, 0.0091552734375, -0.022705078125, -0.0032501220703125, -0.0045166015625, -0.0150146484375, -0.007568359375, -0.00131988525390625, 0.029052734375, 7.343292236328125e-05, 0.00653076171875, 0.0038909912109375, 0.00469970703125, -0.01031494140625, -0.00787353515625, -0.007080078125, 0.00885009765625, 0.0223388671875, 0.0145263671875, -0.05126953125, 0.00592041015625, 0.00018787384033203125, -0.00482177734375, -0.02099609375, 0.0157470703125, -0.0027923583984375, -0.01385498046875, -0.01171875, 0.006439208984375, -0.001129150390625, -0.01043701171875, 0.0189208984375, 0.0211181640625, 0.0037841796875, -0.001251220703125, 0.000301361083984375, -0.01043701171875, -0.00848388671875, 0.0008392333984375, -0.01324462890625, 0.0218505859375, -0.00579833984375, 0.005767822265625, -0.006927490234375, -0.013916015625, -0.01348876953125, 0.00189971923828125, 0.057373046875, -0.033203125, -0.01324462890625, 0.00762939453125, -0.00921630859375, 0.004486083984375, 0.00750732421875, 0.00115203857421875, -0.01556396484375, 0.0067138671875, 0.01495361328125, 0.00579833984375, 0.0087890625, 0.005889892578125, 0.01116943359375, 0.00469970703125, 0.0162353515625, 0.004638671875, 0.01409912109375, -0.00177001953125, -0.01220703125, -0.00640869140625, -5.6743621826171875e-05, -0.02490234375, 0.0023956298828125, -0.005218505859375, 0.00830078125, 0.00970458984375, -0.005157470703125, 0.01416015625, 0.00860595703125, -0.00494384765625, -0.010009765625, 0.016845703125, 0.0098876953125, 0.013916015625, 0.01483154296875, -0.00860595703125, -0.0234375, 0.0093994140625, 0.009521484375, -0.006500244140625, 0.00762939453125, -0.0208740234375, 0.00909423828125, -0.0026702880859375, -0.004058837890625, -0.0157470703125, 0.0172119140625, -0.0211181640625, 0.01171875, -0.000514984130859375, -0.002777099609375, -0.029052734375, 0.02001953125, -0.00653076171875, -0.0068359375, -0.0166015625, -0.0013885498046875, 0.000614166259765625, 0.01287841796875, 0.01556396484375, 0.0179443359375, 0.00592041015625, -0.011962890625, -0.0032501220703125, -0.0147705078125, 0.013427734375, 0.01324462890625, 0.010498046875, 0.0185546875, 0.0023193359375, -0.00482177734375, 0.00579833984375, 0.0, -0.0245361328125, -0.0004749298095703125, 0.0078125, -0.0003261566162109375, 0.015380859375, -0.005859375, 0.011962890625, 0.01458740234375, 0.01025390625, -0.0172119140625, 0.004425048828125, -0.019775390625, 0.00946044921875, 0.00109100341796875, -0.01214599609375, -0.010009765625, 0.00860595703125, -0.0091552734375, -0.00095367431640625, 0.00433349609375, 0.00738525390625, -0.00762939453125, 0.0069580078125, -0.0034942626953125, -0.002899169921875, -0.0087890625, -0.0311279296875, 0.00012493133544921875, -0.000621795654296875, -0.00665283203125, 0.0191650390625, -0.005859375, -0.018310546875, 0.01153564453125, -0.003173828125, 0.001983642578125, -0.006744384765625, 0.006439208984375, -0.005645751953125, 0.007415771484375, 0.01544189453125, 0.013671875, 0.0054931640625, -0.0291748046875, 0.004241943359375, -0.01226806640625, 0.0067138671875, -0.022705078125, 0.00921630859375, -0.0196533203125, 0.01153564453125, -0.016357421875, 0.0037384033203125, -0.016357421875, 0.013671875, 0.03076171875, -0.0125732421875, -0.012451171875, -0.00384521484375, -0.0206298828125, -0.003387451171875, -0.016357421875, -0.0157470703125, -0.0047607421875, -0.0019989013671875, 0.01007080078125, -0.01324462890625, 0.012451171875, 0.0157470703125, 0.00677490234375, 0.01312255859375, 0.011962890625, -0.0034942626953125, -0.00482177734375, 0.01007080078125, 0.016845703125, -0.01611328125, -0.028564453125, 0.0009002685546875, 0.01031494140625, 0.035400390625, 0.0322265625, -0.003997802734375, 0.00141143798828125, 0.0081787109375, -0.003387451171875, -0.012451171875, 0.021484375, -0.013916015625, 0.01470947265625, 0.01263427734375, -0.00872802734375, 0.037353515625, 0.00185394287109375, 0.00927734375, -0.01348876953125, 0.0089111328125, -0.01153564453125, -0.0252685546875, -0.005706787109375, 0.006439208984375, -0.01177978515625, 0.00970458984375, -0.02685546875, -0.0096435546875, 0.0024261474609375, 0.11279296875, -0.00836181640625, -0.020263671875, -0.00970458984375, 0.006195068359375, 0.01348876953125, 0.01385498046875, -0.0005950927734375, -0.0162353515625, -0.0208740234375, -0.0103759765625, -0.0003032684326171875, -0.00885009765625, 0.021484375, -0.013427734375, 0.007171630859375, 0.0016326904296875, -0.0169677734375, 0.00494384765625, 0.002716064453125, -0.00109100341796875, 0.006103515625, 0.005706787109375, -0.015625, 0.026611328125, 0.004638671875, -0.0234375, -0.0145263671875, 0.01544189453125, -0.043701171875, 0.018310546875, 0.022705078125, 0.0147705078125, 0.01300048828125, -0.0076904296875, -0.004302978515625, 0.018310546875, 0.006011962890625, 0.00445556640625, 0.00347900390625, 0.01312255859375, -0.0142822265625, -0.00098419189453125, 0.0027923583984375, 0.0081787109375, 0.013916015625, 6.437301635742188e-05, -0.0172119140625, 0.0145263671875, 0.009033203125, 0.0025634765625, -0.00099945068359375, 0.0211181640625, -0.0152587890625, -0.001251220703125, 0.01483154296875, -0.0172119140625, 0.00160980224609375, 0.0257568359375, -0.0101318359375, 0.00041961669921875, -0.002349853515625, 0.00090789794921875, -0.01007080078125, 0.00171661376953125, -0.0145263671875, -0.01611328125, 0.001739501953125, -0.007293701171875, -0.023681640625, 0.003631591796875, 0.03271484375, -0.01397705078125, 0.00860595703125, 0.0128173828125, 0.010009765625, -0.0400390625, 0.021484375, -0.01263427734375, 0.01611328125, 0.00823974609375, -0.0030059814453125, 0.00982666015625, -0.00030517578125, 0.0128173828125, -0.035400390625, -0.0230712890625, -0.00726318359375, -0.0068359375, -0.002777099609375, -0.011962890625, 0.01202392578125, -0.00439453125, -0.00173187255859375, 0.0128173828125, -0.00885009765625, -0.00799560546875, -0.0177001953125, -0.0016021728515625, -0.005889892578125, 0.00341796875, 0.00811767578125, 0.02001953125, 0.0020904541015625, 0.011962890625, 0.0004138946533203125, -0.001953125, 0.00738525390625, -0.00341796875, 0.015380859375, -0.0032196044921875, 0.000843048095703125, 0.006927490234375, -0.0230712890625, -0.02001953125, -0.005126953125, -0.01287841796875, 0.019775390625, 0.00194549560546875, -0.0159912109375, 0.0159912109375, -0.0030975341796875, -0.023193359375, -0.00860595703125, -0.0079345703125, -0.01904296875, -0.01373291015625, -0.0247802734375, -0.00238037109375, -0.01226806640625, -0.0001697540283203125, -0.008056640625, 0.0004825592041015625, -0.0247802734375, -0.01385498046875, -0.01513671875, -0.010009765625, -0.0001316070556640625, -0.011962890625, 0.01287841796875, 0.004058837890625, 0.0223388671875, 0.0108642578125, -0.01324462890625, -0.007781982421875, 0.005401611328125, -0.00176239013671875, -0.00099945068359375, 0.00726318359375, 0.003570556640625, 0.006744384765625, -0.0023956298828125, 0.009521484375, -0.01470947265625, -0.0177001953125, 0.025634765625, -0.00018978118896484375, -0.013427734375, -0.018310546875, 0.016845703125, 0.006317138671875, -0.00347900390625, 0.019287109375, 0.02392578125, -0.0018463134765625, -0.0069580078125, 0.02001953125, 0.00823974609375, 0.01458740234375, 0.007781982421875, -0.010009765625, -0.0113525390625, -0.00885009765625, -0.010498046875, -0.025390625, 0.00970458984375, 0.005462646484375, 0.000858306884765625, -0.005035400390625, -0.0040283203125, 0.015869140625, 0.0194091796875, 0.0050048828125, 0.01055908203125, 0.00787353515625, 0.013671875, 0.0194091796875, 0.01239013671875, -0.001220703125, 0.03857421875, -0.019287109375, 0.007171630859375, -0.0035400390625, 0.00139617919921875, -0.017578125, -0.007171630859375, -0.01416015625, 0.0225830078125, 0.000545501708984375, -0.000209808349609375, 0.0142822265625, 0.005584716796875, 0.0196533203125, -0.01226806640625, -0.0283203125, 0.0277099609375, 0.0034332275390625, -0.00823974609375, -0.00012159347534179688, -0.010009765625, -0.0294189453125, 0.021484375, -0.031982421875, 0.08935546875, -0.003814697265625, 0.00335693359375, 0.017333984375, 0.005767822265625, 0.0194091796875, 0.007293701171875, 0.0108642578125, -0.016357421875, -0.008056640625, -0.0169677734375, -0.023193359375, -0.01202392578125, 0.0234375, 0.007171630859375, -0.00174713134765625, -0.0101318359375, -0.0025787353515625, 0.01409912109375, -0.0012664794921875, 0.0142822265625, 0.00921630859375, 0.005584716796875, -0.013916015625, -0.0072021484375, 0.0098876953125, 0.0150146484375, 0.00933837890625, -0.0004100799560546875, -0.0038909912109375, -0.00445556640625, 0.00079345703125, -0.0028533935546875, 0.01312255859375, 0.018798828125, -0.006866455078125, 0.00250244140625, 0.005706787109375, 0.006195068359375, 0.0115966796875, -0.027099609375, -0.000911712646484375, 0.006927490234375, -0.004852294921875, -0.0166015625, -0.01153564453125, 0.01312255859375, 0.00750732421875, -0.01300048828125, 0.0050048828125, -0.00994873046875, -0.00250244140625, -0.0091552734375, -0.015869140625, 0.0004558563232421875, 0.0023651123046875, -0.01177978515625, -0.01300048828125, -0.004119873046875, 5.602836608886719e-05, 0.0001068115234375, 0.025634765625, -0.002960205078125, 0.01385498046875, 0.00677490234375, 0.007080078125, -0.00274658203125, 0.0162353515625, 0.0294189453125, 0.014404296875, 0.0322265625, -0.006011962890625, -0.0035858154296875, 0.0093994140625, 0.01129150390625, 0.008056640625, -0.026611328125, 0.006500244140625, -0.01708984375, 0.0030364990234375, -0.022705078125, 0.0034332275390625, 0.009521484375, -0.0189208984375, -0.00104522705078125, 0.01177978515625, 0.0029296875, -0.0089111328125, -0.003204345703125, -0.00799560546875, 0.0030059814453125, 0.00885009765625, 0.023681640625, -0.00714111328125, 0.031982421875, 0.046142578125, 0.02001953125, -0.020751953125, 0.0118408203125, 0.00506591796875, 0.0247802734375, -0.008544921875, 0.0037841796875, 0.0177001953125, 0.0030517578125, 0.0024566650390625, 0.022216796875, 0.0024566650390625, 0.0166015625, -0.0286865234375, 0.019775390625, 0.0167236328125, 0.02197265625, 0.000820159912109375, 0.01263427734375, 0.0240478515625, 0.01043701171875, -0.0019073486328125, 0.005584716796875, 0.01483154296875, -0.0174560546875, -0.0108642578125, -0.00946044921875, -0.00494384765625, 0.0177001953125, -0.0093994140625, -0.00836181640625, 0.0189208984375, -0.0111083984375, -0.01348876953125, 0.00634765625, -0.01220703125, 0.007781982421875, -0.02392578125, -0.01312255859375, 0.0172119140625, 0.0098876953125, 0.0281982421875, 0.0126953125, 0.001953125, -0.01708984375, 0.0021820068359375, -0.02685546875, -0.00677490234375, 0.01055908203125, 0.099609375, 0.0152587890625, -0.0081787109375, 0.0125732421875, -0.0247802734375, 0.00457763671875, -0.00970458984375, 0.006988525390625, -0.01287841796875, -0.0010223388671875, -0.0179443359375, 0.0037841796875, -0.004364013671875, -0.01495361328125, -0.0194091796875, 0.00189971923828125, -0.00341796875, 0.00107574462890625, -0.001678466796875, -0.005157470703125, -0.00494384765625, 0.0084228515625, 0.01348876953125, 0.0211181640625, 0.008056640625, 0.004364013671875, 0.028564453125, 0.01495361328125, 0.0150146484375, -0.00183868408203125, 0.00970458984375, 0.00762939453125, -0.006439208984375, -0.005584716796875, 0.007720947265625, 0.000415802001953125, -0.00762939453125, -0.0208740234375, 0.01385498046875, 0.005462646484375, 0.019775390625, 0.0164794921875, -0.02783203125, 0.012451171875, 0.01287841796875, 0.016357421875, 0.0098876953125, -0.016845703125, 0.009033203125, 0.0108642578125, -0.00787353515625, -0.000804901123046875, -0.0152587890625, -0.013916015625, 0.005035400390625, -0.01263427734375, -0.0159912109375, 0.006103515625, -0.0035858154296875, -0.007293701171875, -0.00787353515625, -0.00628662109375, -0.018310546875, 0.00958251953125, 0.01483154296875, -0.0037841796875, 0.0029449462890625, -0.0218505859375, -0.003692626953125, 0.0208740234375, 0.00421142578125, -0.0191650390625, 0.0069580078125, -0.0126953125, 0.0281982421875, -0.000804901123046875, 0.00457763671875, 0.0059814453125, -0.0194091796875, 0.00445556640625, -0.0103759765625, 0.005889892578125, -0.01141357421875, 0.018798828125, -0.006988525390625, 0.0177001953125, 0.0157470703125, 0.003753662109375, 0.0111083984375, 0.0022735595703125, -0.01409912109375, -0.01116943359375, 0.0091552734375, 0.00799560546875, -0.0091552734375, 0.002044677734375, 0.00872802734375, -0.00653076171875, 0.00144195556640625, 0.00848388671875, 0.005889892578125, -0.006744384765625, -0.000766754150390625, -0.007415771484375, 0.0024261474609375, -0.021728515625, -0.00165557861328125, -0.020263671875, -0.004302978515625, -0.001708984375, -0.006317138671875, 0.025634765625, -0.0185546875, 0.0037078857421875, -0.00457763671875, -0.00555419921875, -0.0135498046875, -0.003631591796875, 0.00110626220703125, -0.01348876953125, 0.002655029296875, 0.01031494140625, -0.003936767578125, 0.0576171875, -0.0015869140625, -0.019775390625, 0.022705078125, -0.001953125, -0.000263214111328125, -0.0252685546875, 0.010009765625, -0.00970458984375, 0.009521484375, -0.004241943359375, -0.00494384765625, -0.0213623046875, 0.005767822265625, -0.021240234375, 0.02783203125, 0.00640869140625, 0.004364013671875, -0.00469970703125, 0.016845703125, -0.027099609375, 0.0024261474609375, 0.010009765625, 0.0142822265625, -0.0181884765625, 0.005767822265625, 0.01092529296875, 0.00060272216796875, 0.00714111328125, -0.004913330078125, 0.023193359375, 0.04248046875, 0.010009765625, 0.0068359375, -0.00543212890625, -0.0029449462890625, -0.0361328125, -0.0108642578125, -0.0016937255859375, -0.0020904541015625, 0.003570556640625, -0.0091552734375, -0.014404296875, 0.0390625, -0.01171875, -0.012451171875, 0.00897216796875, -0.01055908203125, -0.0185546875, -0.01171875, -0.0050048828125, -0.0157470703125, 0.025390625, 0.004058837890625, -0.058349609375, 0.01239013671875, -0.00408935546875, -0.0078125, -0.0152587890625, -0.0126953125, -0.01129150390625, -0.0115966796875, -0.00299072265625, -0.0213623046875, -0.00090789794921875, -0.023681640625, -0.004730224609375, -0.00543212890625, -0.00885009765625, -0.0279541015625, 0.035888671875, -0.0133056640625, -0.025390625, 0.01080322265625, 0.0185546875, 0.006195068359375, 0.0004863739013671875, -0.009033203125, -0.00811767578125, 0.00872802734375, 0.01129150390625, -0.006195068359375, 0.0001850128173828125, -0.021728515625, 0.0028533935546875, 0.00225830078125, 0.026611328125, 0.00011205673217773438, -0.00970458984375, 0.0113525390625, 0.00823974609375, -0.012451171875, -0.012451171875, -0.007720947265625, -0.018310546875, 0.0019073486328125, -0.026123046875, 0.00946044921875, 0.0179443359375, 0.00054931640625, 0.00041961669921875, -0.0185546875, 0.0174560546875, 0.005767822265625, 0.0126953125, -0.011962890625, 0.08154296875, -0.005218505859375, 0.01458740234375, 0.01177978515625, -0.0093994140625, -0.027099609375, 0.01397705078125, -0.01373291015625, 0.0115966796875, -0.0003833770751953125, 0.006744384765625, -0.018310546875, -7.43865966796875e-05, 0.00860595703125, -0.00787353515625, 0.0135498046875, 0.023193359375, -0.0026092529296875, 0.005645751953125, -0.0142822265625, -0.0130615234375, 0.01611328125, -0.000789642333984375, -0.00537109375, 0.0086669921875, -0.0174560546875, 0.01153564453125, 0.01019287109375, -0.020263671875, 0.005401611328125, -0.00933837890625, 0.006988525390625, -0.00421142578125, 0.001556396484375, 0.0107421875, -0.0019073486328125, 0.000934600830078125, 0.00958251953125, -0.0311279296875, -0.142578125, -0.000614166259765625, -0.016357421875, -0.005340576171875, -0.0089111328125, -0.006927490234375, -0.000362396240234375, 0.00116729736328125, -0.016845703125, -0.0302734375, 0.00909423828125, 0.00142669677734375, 0.00131988525390625, 0.0260009765625, 0.03466796875, -0.0274658203125, -0.005035400390625, 0.00130462646484375, -0.0059814453125, 0.01043701171875, -0.0135498046875, -0.01348876953125, -0.00121307373046875, 0.003326416015625, -0.006134033203125, 0.000606536865234375, 0.00152587890625, -0.003997802734375, 0.000789642333984375, -0.031982421875, -0.0014495849609375, 0.0223388671875, 0.005401611328125, -0.031982421875, -0.035888671875, -0.0281982421875, 0.00506591796875, -0.03125, -0.01129150390625, 0.0003814697265625, -0.013427734375, -0.0003662109375, -0.0037841796875, -0.01300048828125, 0.0264892578125, 0.019775390625, -0.027099609375, 0.00396728515625, -0.01214599609375, -0.01495361328125, 0.004486083984375, -0.00579833984375, -0.00787353515625, -0.0006866455078125, -0.00933837890625, -0.01312255859375, 0.0111083984375, -0.00677490234375, 0.0201416015625, 0.0302734375, -0.00506591796875, 0.01385498046875, 0.00958251953125, 0.0032501220703125, 0.00147247314453125, -0.007354736328125, -0.01544189453125, 0.010009765625, -0.0133056640625, -0.00677490234375, 0.00360107421875, -0.002777099609375, -0.02001953125, 0.00811767578125, -0.0159912109375, 0.010498046875, 0.00274658203125, -0.005157470703125, -0.014404296875, -0.0087890625, 0.0240478515625, -0.003814697265625, -0.029052734375, 0.0228271484375, -0.00848388671875, -0.00885009765625, 0.018310546875, 0.0179443359375, 0.0014801025390625, -0.0157470703125, -0.001739501953125, 0.01080322265625, 0.00823974609375, 0.05908203125, -0.01416015625, -0.006195068359375, 0.01116943359375, 0.001129150390625, -0.0079345703125, 0.01287841796875, 0.01806640625, 0.00244140625, 0.007049560546875, -0.0107421875, -0.00872802734375, -0.0157470703125, 0.01153564453125, 0.0101318359375, -0.016357421875, 0.0024261474609375, -0.00921630859375, 0.00787353515625, -0.09228515625, 0.00811767578125, 0.01385498046875, 0.016357421875, -0.000255584716796875, 0.0208740234375, 0.0172119140625, -0.0201416015625, 0.0052490234375, -0.08349609375, -0.0142822265625, 0.00872802734375, 0.004486083984375, 0.0166015625, 0.0050048828125, 0.0191650390625, -0.01214599609375, 0.00860595703125, 0.00634765625, -0.0225830078125, 0.01153564453125, 0.00150299072265625, -0.00970458984375, 0.010498046875, -0.004852294921875, -0.019775390625, -0.018310546875, -0.0111083984375, 0.003692626953125, 0.01116943359375, 0.0118408203125, -0.00799560546875, 0.000225067138671875, 0.01019287109375, 0.0244140625, 0.021484375, 0.01495361328125, 0.00185394287109375, -0.01708984375, 0.0028839111328125, 0.0191650390625, 0.019775390625, -0.0015869140625, 0.0015869140625, -0.007476806640625, 0.004150390625, -0.0115966796875, 0.005157470703125, 0.0013427734375, -0.00555419921875, -0.00543212890625, 0.0125732421875, -0.018310546875, -0.00830078125, 0.007720947265625, -0.00787353515625, 0.00408935546875, 0.01287841796875, -0.01129150390625, 0.005889892578125, 0.0107421875, -0.01397705078125, -0.019775390625, -0.0037994384765625, 0.0118408203125, 0.004547119140625, -0.0108642578125, -0.035400390625, -0.0147705078125, 0.0206298828125, 0.00250244140625, -0.018310546875, -0.005462646484375, 0.00592041015625, 0.01324462890625, 0.0025787353515625, -0.00341796875, 0.025634765625, 0.0166015625, -0.0115966796875, 0.013916015625, -0.0172119140625, 0.021728515625, 0.01153564453125, 0.0191650390625, 0.023681640625, 0.0022430419921875, -0.0005645751953125, -0.0125732421875, -0.01153564453125, 0.01220703125, 0.00982666015625, 0.0013885498046875, -0.00347900390625, 0.0108642578125, 0.0296630859375, 0.011962890625, -0.019775390625, -0.002105712890625, 0.01324462890625, 0.0194091796875, -0.0033721923828125, -0.01513671875, -0.037109375, -0.0016937255859375, 0.00176239013671875, 0.00125885009765625, 0.019775390625, -0.00872802734375, -0.0091552734375, 0.006744384765625, -0.00396728515625, -0.0115966796875, 0.00494384765625, -7.152557373046875e-05, 0.0002536773681640625, -0.007476806640625, -0.00136566162109375, 0.000392913818359375, 0.0262451171875, -0.0040283203125, 0.0172119140625, -0.00250244140625, -0.0069580078125, 0.000598907470703125, -0.01458740234375, 0.0030059814453125, 0.018798828125, -0.007568359375, 0.006622314453125, 0.0022430419921875, -0.006103515625, -0.00157928466796875, 0.00927734375, 0.01324462890625, -0.004638671875, 0.019775390625, 0.0230712890625, 0.01177978515625, -0.0172119140625, 0.02734375, -0.00830078125, -7.677078247070312e-05, 0.000308990478515625, 0.00811767578125, -0.0004749298095703125, 0.0177001953125, -0.0225830078125, 0.013916015625, -0.005279541015625, 0.00089263916015625, 0.01806640625, 0.0296630859375, 0.0087890625, 0.01153564453125, -0.009521484375, 0.0087890625, -0.004638671875, 0.00151824951171875, -0.0014190673828125, 0.01806640625, 0.0023193359375, -0.0184326171875, 0.0012359619140625, -0.007598876953125, -0.000972747802734375, 0.0242919921875, -0.01043701171875, 0.00970458984375, -0.00084686279296875, -0.01513671875, 0.00677490234375, -0.0164794921875, 0.000514984130859375, -0.0228271484375, -0.0021820068359375, -0.01263427734375, -0.002685546875, -0.000804901123046875, -0.00142669677734375, 0.007720947265625, -0.006195068359375, 0.0311279296875, -0.002899169921875, -0.0186767578125, -0.01385498046875, -0.007781982421875, -0.0206298828125, -0.01055908203125, 0.00176239013671875, -0.017333984375, -0.0035858154296875, 0.00543212890625, -0.002685546875, -0.004302978515625, -0.000713348388671875, 0.0234375, 0.00130462646484375, -0.006866455078125, 0.01153564453125, -0.072265625, -0.00396728515625, -0.010009765625, -0.004425048828125, 0.0045166015625, 0.001953125, -0.01129150390625, -0.012451171875, 0.004302978515625, -0.01007080078125, -0.0162353515625, 0.002349853515625, 0.001556396484375, -0.00445556640625, 0.00408935546875, 0.00189971923828125, 0.00762939453125, 0.01239013671875, -0.1416015625, -0.0091552734375, -0.0059814453125, -0.0108642578125, -0.0033721923828125, -0.013671875, 0.017822265625, 0.035400390625, 0.0189208984375, 0.00665283203125, -0.007720947265625, 0.004180908203125, 0.005218505859375, 0.013427734375, 0.004486083984375, 0.022216796875, -0.0228271484375, 0.00112152099609375, -0.00927734375, -0.01092529296875, -0.002227783203125, -0.015625, -0.01397705078125, 0.01141357421875, 0.007415771484375, -0.002044677734375, -0.003570556640625, -0.0010833740234375, -0.0125732421875, 0.0001621246337890625, 0.005584716796875, 0.00579833984375, 0.0299072265625, -0.01129150390625, 0.01434326171875, -0.01116943359375, 0.010986328125, 0.0211181640625, 0.0164794921875, -0.0142822265625, 0.017333984375, 0.00015735626220703125, -0.001556396484375, -0.0026702880859375, 0.0107421875, 0.0113525390625, -0.0018157958984375, 0.01116943359375, -0.0279541015625, -0.0223388671875, -0.00634765625, -0.003997802734375, -0.0022125244140625, 0.00872802734375, 0.005584716796875, 0.025390625, -0.01239013671875, -0.02197265625, 0.02001953125, 0.00186920166015625, 0.0068359375, 0.00118255615234375, 0.00958251953125, 0.019775390625, 0.0029296875, 0.00860595703125, -0.00055694580078125, 0.00299072265625, 0.015625, -0.00970458984375, -0.016357421875, -0.002716064453125, 0.01409912109375, 0.01220703125, 0.01031494140625, 0.0076904296875, 0.01171875, -0.020751953125, -0.010498046875, 0.01470947265625, -0.004180908203125, -0.00408935546875, 0.00052642822265625, 0.00628662109375, 0.00299072265625, 0.01470947265625, 0.00714111328125, 0.0023345947265625, -0.0150146484375, 0.006561279296875, -0.00946044921875, -0.0084228515625, 0.01544189453125, 0.027099609375, 0.004241943359375, 0.0179443359375, -0.00213623046875, -0.00860595703125, -0.0014801025390625, 0.006744384765625, -0.00848388671875, 0.0012969970703125, 0.0211181640625, -0.0017852783203125, -0.00860595703125, -0.007354736328125, 0.01611328125, -0.0084228515625, -0.020263671875, 0.013671875, 0.01470947265625, 0.016845703125, 0.00665283203125, 0.005584716796875, -0.009033203125, 0.00162506103515625, -0.0125732421875, 0.0277099609375, 0.01177978515625, 0.025634765625, 0.0087890625, 0.01409912109375, 0.0235595703125, -0.002471923828125, 0.00408935546875, 0.013671875, 0.006561279296875, -0.001922607421875, 0.00762939453125, -0.006866455078125, 0.0004138946533203125, 0.00787353515625, 0.016845703125, -0.000560760498046875, 0.025390625, 0.00982666015625, -0.11474609375, 0.00830078125, -0.005706787109375, -0.0225830078125, -0.00238037109375, -0.0185546875, -0.0038909912109375, 0.00885009765625, 0.0126953125, -0.000812530517578125, 0.021484375, 0.013671875, 0.004547119140625, -0.021484375, -0.01153564453125, 0.0157470703125, -0.01226806640625, -0.0021820068359375, -0.00118255615234375, 0.00118255615234375, -0.0081787109375, 0.03662109375, -0.01348876953125, 0.0050048828125, 0.031494140625, 0.00238037109375, 0.00787353515625, -0.0211181640625, 0.00909423828125, -0.0059814453125, 0.001800537109375, 0.0113525390625, -0.0047607421875, 0.000965118408203125, 0.004852294921875, -0.012451171875, -0.01373291015625, -0.0126953125, -0.027099609375, -0.000579833984375, 0.002166748046875, 0.0027008056640625, 0.016357421875, -0.014404296875, -0.016845703125, -0.0020904541015625, 4.041939973831177e-07, 0.0050048828125, -0.002471923828125, -0.025146484375, -0.01300048828125, 0.00078582763671875, 0.00634765625, -0.0218505859375, 0.0091552734375, 0.0341796875, -0.0078125, 6.532669067382812e-05, -0.016357421875, -0.02685546875, 0.013671875, -0.0125732421875, -0.007598876953125, 0.0020751953125, -0.02392578125, -0.0166015625, 0.0302734375, -0.0181884765625, 0.01470947265625, -0.00151824951171875, -0.0118408203125, -0.0162353515625, 0.02001953125, -0.0135498046875, 0.00262451171875, -0.007293701171875, -0.00933837890625, -0.0201416015625, -0.0113525390625, -0.0026702880859375, 0.01171875, -0.00982666015625, -0.00927734375, 2.2172927856445312e-05, 0.0184326171875, -0.009033203125, 0.020751953125, -0.01483154296875, -0.000736236572265625, -0.0107421875, -0.0380859375, -0.00021076202392578125, -0.003173828125, -0.0086669921875, -0.0013580322265625, -0.01416015625, -0.00970458984375, -0.0133056640625, 0.003265380859375, -0.000865936279296875, -0.01287841796875, 0.007476806640625, 0.0019989013671875, 0.006500244140625, -0.006622314453125, 0.019287109375, 0.007568359375, 0.017822265625, -0.005157470703125, 0.013916015625, -0.0260009765625, 0.01409912109375, 0.00121307373046875, -0.01397705078125, -0.0203857421875, -0.0068359375, -0.003173828125, -0.021484375, 0.014404296875, -0.0252685546875, -0.002593994140625, -0.0024261474609375, 0.006103515625, 0.007080078125, -0.001708984375, -0.0042724609375, 0.005462646484375, 0.0283203125, 0.01397705078125, 0.01007080078125, -0.0040283203125, 0.0218505859375, 0.05322265625, 0.010986328125, 0.00347900390625, 0.01220703125, -0.0030059814453125, -0.0026092529296875, -0.0142822265625, -0.0106201171875, 0.00665283203125, 0.006927490234375, 0.01031494140625, 0.01409912109375, 0.00154876708984375, -0.006011962890625, -0.01324462890625, -0.0042724609375, 0.0198974609375, -0.0162353515625, -0.005584716796875, -0.00958251953125, -0.0223388671875, -0.0084228515625, 0.0101318359375, -0.0008697509765625, -0.0096435546875, -0.013427734375, 0.00579833984375, 0.00885009765625, -0.00457763671875, 0.0031585693359375, -0.0069580078125, 0.01385498046875, 0.000820159912109375, -0.002716064453125, 0.006317138671875, -0.0185546875, -0.00750732421875, 0.0118408203125, -0.006744384765625, 0.0196533203125, -0.004669189453125, -0.0076904296875, 0.002960205078125, -0.0150146484375, -0.0169677734375, -0.010009765625, -0.00653076171875, -0.01470947265625, 0.03076171875, -0.00225830078125, -0.0157470703125, 0.030517578125, 0.00026702880859375, 0.00439453125, -0.0054931640625, -0.016357421875, 0.0228271484375, 0.000476837158203125, -0.0059814453125, 0.006439208984375, -0.000926971435546875, 0.038818359375, -0.000926971435546875, 0.01409912109375, -0.003265380859375, 0.032470703125, 0.00555419921875, 0.0191650390625, 0.004058837890625, 0.01055908203125, -0.0107421875, -0.003173828125, 0.0002727508544921875, -0.008544921875, -0.0194091796875, -0.017822265625, -0.0028533935546875, -0.00714111328125, 0.01324462890625, -0.0247802734375, -0.00885009765625, -0.016357421875, -0.03662109375, 0.0024261474609375, 0.0206298828125, 0.0101318359375, 0.021728515625, 0.0135498046875, 0.0011749267578125, -0.006988525390625, 0.0084228515625, 0.004058837890625, 0.005767822265625, -0.007415771484375, 0.00714111328125, 0.00799560546875, 0.0235595703125, 0.0021209716796875, 0.00189208984375, -0.0115966796875, -0.02001953125, -0.007720947265625, 0.02001953125, 0.006439208984375, 0.01055908203125, 0.0159912109375, -0.007049560546875, -0.003997802734375, -0.00592041015625] /programs/dev/projects/testproject1 test_summ TCGA-02-2470 TCGA-02-2470.e21f66d9-e124-43d7-81fe-489d15d69cbf summ +[0.022216796875, -0.0111083984375, -0.0159912109375, 0.0026092529296875, 0.015625, 0.02197265625, 0.01263427734375, -0.00750732421875, -0.006195068359375, 0.005767822265625, 0.011962890625, 0.007568359375, 0.0079345703125, 0.00299072265625, -0.01416015625, -0.010009765625, -0.01434326171875, -0.005706787109375, -0.0032806396484375, 0.00848388671875, -0.005767822265625, -0.0098876953125, 0.005889892578125, -0.008544921875, 0.0281982421875, 0.0022125244140625, 0.00567626953125, -0.007568359375, -0.038818359375, -0.00133514404296875, -0.0003299713134765625, -0.00927734375, 0.000537872314453125, 0.0026092529296875, -0.0034332275390625, -0.025146484375, 0.026123046875, 0.008544921875, 0.0157470703125, -0.005767822265625, 0.0029296875, -0.00179290771484375, 0.000522613525390625, 0.00238037109375, 0.0142822265625, -0.021728515625, 0.005340576171875, -0.00872802734375, -0.01324462890625, 0.005645751953125, -0.0179443359375, -0.0027923583984375, 0.0076904296875, -0.142578125, -0.0030059814453125, 0.0252685546875, -0.01416015625, 0.007293701171875, -0.013671875, 0.0135498046875, -0.012451171875, -0.0093994140625, 0.0147705078125, 0.0078125, 0.0257568359375, 0.00043487548828125, -0.009033203125, -0.0164794921875, -0.003936767578125, -0.00897216796875, -0.0026092529296875, 0.003997802734375, 0.0002765655517578125, -0.021484375, 0.01434326171875, 0.00823974609375, 0.0012359619140625, -0.00015926361083984375, -0.004150390625, 0.007293701171875, 0.01031494140625, -0.01373291015625, 0.0037841796875, -0.00677490234375, 0.00946044921875, -0.0106201171875, 0.005218505859375, 0.00567626953125, 0.006866455078125, 0.00750732421875, -0.02099609375, -0.006195068359375, 0.0040283203125, -0.025390625, 0.0001430511474609375, 0.010009765625, 0.004547119140625, -0.01116943359375, 0.002777099609375, -0.018798828125, -0.01055908203125, 0.0177001953125, 0.018798828125, -0.0279541015625, -0.0244140625, -0.004241943359375, 0.0203857421875, -0.01092529296875, -0.00194549560546875, -0.00128936767578125, 0.004180908203125, 0.000774383544921875, 0.01397705078125, 0.0218505859375, -0.004791259765625, -0.0185546875, -0.0030517578125, -0.01263427734375, 0.022705078125, 0.00799560546875, -0.0062255859375, 0.0069580078125, 0.00762939453125, 0.0150146484375, -0.0189208984375, -0.021484375, -0.00112152099609375, -0.01300048828125, 0.016845703125, 0.01068115234375, -0.00189971923828125, -0.0023651123046875, -0.00933837890625, -0.002197265625, -0.007171630859375, 0.0189208984375, -0.004425048828125, -0.003173828125, -0.00885009765625, 0.00174713134765625, 0.000732421875, 0.0172119140625, 0.0010223388671875, 0.012451171875, 0.01434326171875, -0.00482177734375, 0.01214599609375, -0.013671875, 0.004364013671875, 0.007568359375, -0.0091552734375, -0.01544189453125, -0.001007080078125, -0.0274658203125, 0.01007080078125, -0.0223388671875, 0.02001953125, 0.021484375, -0.0106201171875, -0.01171875, -0.004302978515625, 0.023193359375, -0.00872802734375, 0.00982666015625, -0.000263214111328125, 0.022705078125, 0.0167236328125, -0.018310546875, 0.015625, -0.00118255615234375, -0.0145263671875, 0.0213623046875, -0.00185394287109375, 0.0022125244140625, 0.0113525390625, 0.01141357421875, -0.007476806640625, -0.000762939453125, 0.03271484375, 0.0196533203125, -0.00860595703125, -0.00860595703125, 0.01202392578125, 0.003387451171875, -0.000637054443359375, 0.00183868408203125, -0.0029449462890625, -0.008056640625, 0.003570556640625, 0.0045166015625, 0.00311279296875, -0.0169677734375, -0.02685546875, 0.0147705078125, -0.02001953125, 0.007598876953125, 0.03076171875, -0.003570556640625, -0.0150146484375, -0.0142822265625, -0.01177978515625, 0.0126953125, -0.02392578125, -0.01458740234375, -0.01202392578125, 0.01129150390625, -0.02001953125, -0.0218505859375, 0.002105712890625, -0.02880859375, -0.0264892578125, 0.00010395050048828125, -0.005279541015625, -0.00014972686767578125, 0.0111083984375, -0.01904296875, 0.01129150390625, -0.0004482269287109375, -0.02099609375, 0.01708984375, 0.0009002685546875, -0.006072998046875, -0.0006256103515625, -0.0291748046875, 0.00189208984375, -0.0022430419921875, 0.0101318359375, -0.0098876953125, -0.0078125, -0.001556396484375, 0.0045166015625, -0.0038909912109375, 0.003814697265625, -0.000270843505859375, 0.0068359375, 0.006103515625, -9.894371032714844e-06, -0.01434326171875, 0.00628662109375, -0.004150390625, -0.0032501220703125, -0.011962890625, -0.01092529296875, -0.019287109375, -0.0006256103515625, -0.0179443359375, 0.0157470703125, 0.0218505859375, -0.004302978515625, -0.005767822265625, 0.00213623046875, 0.0130615234375, -0.0194091796875, 0.00970458984375, -0.005096435546875, -0.00927734375, 0.00811767578125, 0.020263671875, -0.01513671875, -0.0067138671875, -0.0034332275390625, 0.0020294189453125, 0.00135040283203125, 0.005889892578125, 0.0062255859375, -0.003936767578125, -0.004547119140625, -3.457069396972656e-05, 0.022216796875, 0.005218505859375, -0.0029449462890625, -0.01611328125, 0.038818359375, -0.015380859375, -0.000946044921875, 0.0189208984375, 0.020263671875, 0.00274658203125, 0.03271484375, -0.01495361328125, -0.0002460479736328125, 0.00885009765625, 0.003753662109375, 0.014404296875, 0.016357421875, 0.018310546875, -0.0247802734375, 0.00726318359375, -0.004730224609375, -0.00057220458984375, 0.003204345703125, 0.004913330078125, -0.014404296875, 0.00109100341796875, 0.00335693359375, -0.01080322265625, 0.01007080078125, 0.034423828125, 0.00262451171875, 0.004852294921875, 0.00185394287109375, 0.0185546875, 0.004302978515625, -0.007049560546875, 0.00182342529296875, -0.0302734375, 0.0211181640625, 0.010009765625, 0.01025390625, 0.017578125, 0.0107421875, 0.00738525390625, 0.0128173828125, -0.00677490234375, -0.0211181640625, 0.01019287109375, -5.0067901611328125e-05, -0.01153564453125, -0.0045166015625, 0.00665283203125, -0.007568359375, 0.02392578125, 0.045166015625, -0.014404296875, 0.017333984375, 0.01434326171875, -0.0126953125, -0.00811767578125, -0.0107421875, 0.0159912109375, 0.0225830078125, 0.00177001953125, 0.00860595703125, -0.002288818359375, 0.0181884765625, -0.01019287109375, 0.0023956298828125, 0.0128173828125, 0.004364013671875, 0.002227783203125, -0.031494140625, 0.0186767578125, -0.0018463134765625, -0.01544189453125, -0.0062255859375, 0.0150146484375, 0.0032196044921875, -0.0009765625, -0.021728515625, 0.008056640625, -0.021728515625, -0.0159912109375, 0.00714111328125, 0.007293701171875, 0.00714111328125, -0.00457763671875, 0.001739501953125, 0.00482177734375, 0.00982666015625, 0.01324462890625, -0.00592041015625, -0.0179443359375, -0.0089111328125, 0.004669189453125, 0.0084228515625, 0.0093994140625, 0.006072998046875, 0.0034332275390625, -0.015380859375, -0.01141357421875, 0.0228271484375, -0.019287109375, 0.006622314453125, 0.006561279296875, -0.0228271484375, -0.00150299072265625, -0.0164794921875, 0.0194091796875, -0.002960205078125, -0.035400390625, 0.005859375, 0.0018768310546875, -0.0023040771484375, 0.000499725341796875, 0.00592041015625, 0.0118408203125, -0.002960205078125, 0.0062255859375, 0.0118408203125, -0.002960205078125, 0.015380859375, -0.0174560546875, -0.008544921875, 0.0030517578125, -0.004638671875, -0.022216796875, 0.0157470703125, 0.00640869140625, -0.01483154296875, 0.0135498046875, -0.0106201171875, -0.0032196044921875, 0.01263427734375, -0.000682830810546875, 0.004425048828125, 0.00640869140625, 0.03759765625, -0.01300048828125, -0.0576171875, 0.005462646484375, -0.00787353515625, 0.0194091796875, -0.01068115234375, 0.009521484375, -0.01556396484375, 0.0150146484375, 0.021240234375, -0.00482177734375, -0.0185546875, 0.01300048828125, 0.0186767578125, 0.006988525390625, 0.018310546875, -0.025146484375, -0.0004329681396484375, -4.839897155761719e-05, -0.007568359375, 0.00640869140625, 0.00135040283203125, -0.00677490234375, 0.000392913818359375, 0.01177978515625, -0.0174560546875, 0.00421142578125, 0.00070953369140625, -0.01708984375, -0.01129150390625, 0.000614166259765625, 0.0130615234375, 0.022705078125, 0.036865234375, -0.010986328125, -0.01043701171875, -0.0030364990234375, 7.915496826171875e-05, -0.002685546875, 0.0130615234375, 0.00274658203125, -0.01434326171875, -0.0079345703125, 0.0084228515625, 0.010009765625, -0.01202392578125, 0.00107574462890625, -0.01556396484375, -0.0279541015625, 0.021240234375, -0.0072021484375, 0.006011962890625, -0.018310546875, 0.01055908203125, -0.013916015625, -0.0106201171875, 0.00836181640625, -0.006317138671875, -0.0223388671875, -0.0196533203125, 0.0133056640625, 0.02490234375, -0.0035400390625, 0.0257568359375, -0.005096435546875, -0.00927734375, 0.013916015625, -0.005279541015625, 0.0201416015625, -0.00762939453125, -0.00010728836059570312, 0.0084228515625, -0.014404296875, 0.03076171875, 0.00299072265625, -0.00799560546875, -0.00762939453125, -0.007080078125, 0.01043701171875, 0.006439208984375, -0.01806640625, 0.0164794921875, 0.0150146484375, 0.00074005126953125, -0.01434326171875, -0.01300048828125, -0.01373291015625, -0.021728515625, 0.00634765625, -0.0201416015625, 0.00787353515625, 0.00946044921875, 0.00726318359375, 0.01312255859375, 0.01324462890625, -0.001129150390625, 0.0025787353515625, -0.00665283203125, 0.0107421875, -0.004364013671875, -0.01409912109375, -0.00311279296875, 0.007415771484375, -0.0022125244140625, 0.0003032684326171875, -0.01519775390625, 0.01080322265625, -0.01324462890625, 0.00262451171875, -0.0179443359375, 0.0186767578125, -0.0201416015625, -0.0142822265625, 0.01904296875, 0.0013580322265625, 0.0012054443359375, -0.0050048828125, 0.00128936767578125, 0.001922607421875, 0.001190185546875, 0.013916015625, 0.002471923828125, 0.009033203125, 0.00153350830078125, 0.0027313232421875, -0.0228271484375, -0.0189208984375, 0.00628662109375, 0.000759124755859375, 0.0093994140625, 0.02880859375, -0.00665283203125, -0.007568359375, 0.01708984375, -0.019775390625, -0.00457763671875, 0.00360107421875, -0.0022125244140625, 0.0194091796875, 0.0021820068359375, 0.0107421875, -0.006439208984375, -0.01513671875, -0.0101318359375, -0.02197265625, -0.031494140625, 0.01177978515625, 0.00811767578125, -0.00171661376953125, -0.00634765625, -0.00109100341796875, -0.029052734375, -0.007415771484375, -0.00107574462890625, -0.00579833984375, 0.012451171875, -0.0045166015625, -0.0118408203125, 0.0206298828125, 0.01348876953125, 0.00634765625, -0.021728515625, 0.0052490234375, -0.0087890625, -0.0179443359375, -0.0067138671875, 0.002288818359375, 0.01226806640625, -0.0196533203125, -0.001251220703125, -0.01470947265625, 0.01385498046875, -0.0103759765625, -0.00494384765625, 0.0078125, 0.003570556640625, 0.0186767578125, -0.00640869140625, 0.00081634521484375, 0.0021514892578125, -0.01483154296875, -0.0032196044921875, 0.003997802734375, -0.0067138671875, 0.005340576171875, 0.0021820068359375, 0.036376953125, 0.015625, -0.00299072265625, -0.006072998046875, -0.0296630859375, -0.0023651123046875, 0.01031494140625, 0.009033203125, 0.004852294921875, 0.023681640625, 0.01904296875, 0.01031494140625, -0.006866455078125, 0.00982666015625, 0.001129150390625, -0.0164794921875, 0.0016021728515625, -0.0174560546875, -0.003387451171875, 0.020751953125, 0.01263427734375, 0.02001953125, -0.006927490234375, -0.004791259765625, -0.0211181640625, -0.016357421875, 0.0264892578125, 0.0037384033203125, -0.00830078125, 0.014404296875, -0.01214599609375, -0.0130615234375, -0.0218505859375, -0.01904296875, 0.00189208984375, 0.007415771484375, -0.0252685546875, -0.004180908203125, -0.01483154296875, -0.0245361328125, -0.0021514892578125, 0.0286865234375, 0.017578125, 0.00433349609375, 0.019287109375, -0.0257568359375, -0.0076904296875, -0.00592041015625, 0.022216796875, 0.0211181640625, -0.01202392578125, 0.00162506103515625, -0.005340576171875, -0.00640869140625, -0.022705078125, -0.000499725341796875, -0.021240234375, -0.00738525390625, -0.01263427734375, -0.02880859375, -0.00408935546875, -0.0133056640625, 0.002593994140625, 0.00384521484375, 0.01416015625, -0.0032196044921875, -0.00787353515625, -0.01519775390625, 0.00186920166015625, -0.01556396484375, 0.0260009765625, 0.002288818359375, -0.003997802734375, -0.01202392578125, -0.018310546875, 0.00311279296875, -0.013671875, 0.0069580078125, -0.00130462646484375, 0.0014190673828125, -0.00787353515625, 0.00640869140625, -0.01483154296875, -0.00640869140625, 0.01495361328125, 0.001129150390625, -0.01055908203125, -0.00012683868408203125, 0.0021820068359375, 0.031494140625, 0.016357421875, -0.01031494140625, 0.004425048828125, -0.0111083984375, -0.014404296875, -0.0004062652587890625, -0.00543212890625, -0.026123046875, -0.0225830078125, -0.0181884765625, 0.01263427734375, 0.0133056640625, -0.01019287109375, -0.0025482177734375, -0.01239013671875, 0.0050048828125, 0.00131988525390625, 0.00872802734375, -0.016845703125, 0.0003681182861328125, -0.0084228515625, -0.005767822265625, 0.0673828125, -0.0038909912109375, 0.015625, -0.01202392578125, 0.0296630859375, 0.0091552734375, -0.018310546875, 0.02685546875, 0.000720977783203125, -0.00592041015625, -0.001190185546875, -0.00179290771484375, 0.004364013671875, -0.00726318359375, 0.0164794921875, 0.0018768310546875, -0.01348876953125, 0.0205078125, 0.0172119140625, 0.0027923583984375, -0.012451171875, 0.0133056640625, 0.00048828125, 0.01226806640625, -0.0108642578125, 0.00592041015625, -0.006011962890625, -0.0189208984375, 0.002410888671875, 0.0185546875, -0.010009765625, -0.006500244140625, 0.0147705078125, -0.0004329681396484375, -0.0164794921875, -0.00408935546875, -0.01220703125, 0.00921630859375, 0.004638671875, 0.0245361328125, -0.005035400390625, 0.002716064453125, -0.00836181640625, -0.0004062652587890625, -0.005645751953125, -0.0086669921875, 0.001556396484375, 0.0002460479736328125, -0.0196533203125, -0.0091552734375, 0.0003299713134765625, 0.0096435546875, -0.00665283203125, -0.009033203125, 0.00506591796875, -0.00823974609375, 0.0047607421875, -0.00194549560546875, -0.0008697509765625, 0.004302978515625, -0.01202392578125, -0.007476806640625, 0.00153350830078125, 0.005218505859375, 0.0111083984375, 0.0240478515625, -0.01416015625, -0.00168609619140625, 0.007293701171875, 0.0004730224609375, 0.0050048828125, 0.034912109375, -0.048095703125, -0.006072998046875, -0.014404296875, 0.0196533203125, -0.014404296875, -5.8650970458984375e-05, -0.00762939453125, -0.0032806396484375, 0.007293701171875, 0.03662109375, 0.0031585693359375, 0.00787353515625, 0.00080108642578125, 0.0174560546875, -0.01202392578125, -0.005096435546875, -0.004058837890625, 0.005889892578125, -0.0098876953125, -0.0172119140625, 0.006500244140625, 0.005889892578125, 0.01519775390625, 0.00811767578125, -0.003814697265625, -0.01226806640625, 0.0179443359375, 0.002532958984375, 0.0213623046875, -0.030029296875, -0.0045166015625, -0.002349853515625, 0.022705078125, 0.0106201171875, 0.01483154296875, -0.015380859375, -0.0037384033203125, -0.007720947265625, -0.000270843505859375, -0.01416015625, 0.00104522705078125, 0.00860595703125, -0.003936767578125, -0.0145263671875, -0.00421142578125, 0.0035247802734375, 0.0228271484375, 0.01312255859375, -0.0157470703125, -0.00848388671875, -0.010986328125, 0.00032806396484375, 0.006103515625, -0.00579833984375, -0.006072998046875, -0.0035858154296875, -0.054931640625, -0.031982421875, 0.0400390625, -0.00787353515625, -0.00799560546875, -0.00194549560546875, 0.019775390625, -0.007293701171875, -0.0087890625, -0.0135498046875, 0.0021209716796875, -0.0078125, 0.00628662109375, -0.014404296875, -0.008544921875, -0.0111083984375, 0.0062255859375, 0.01177978515625, 0.01141357421875, -0.00335693359375, 0.0556640625, -0.026611328125, -0.002838134765625, -0.00921630859375, 0.0096435546875, 0.009033203125, 0.0027923583984375, 0.00933837890625, -0.0133056640625, 0.01141357421875, -0.0003147125244140625, -0.0023651123046875, 0.00823974609375, 0.0113525390625, -0.0069580078125, -0.00164031982421875, 0.0098876953125, 0.019775390625, 0.016845703125, 0.015625, -0.004241943359375, 0.0010223388671875, -0.013671875, -0.005218505859375, 0.002227783203125, 0.0028839111328125, 0.01171875, -0.01483154296875, 0.00081634521484375, 0.00872802734375, -0.00189208984375, -0.041259765625, 0.015625, -0.0030059814453125, 0.01513671875, -0.00897216796875, 0.0252685546875, -0.023681640625, 0.00390625, -0.02099609375, 0.0093994140625, 0.002685546875, -0.016357421875, -0.0159912109375, 0.010986328125, 0.01373291015625, 0.0311279296875, 0.001495361328125, -0.0062255859375, 0.013427734375, 0.0001201629638671875, -0.004302978515625, -0.009033203125, 5.698204040527344e-05, -0.0018157958984375, 0.0166015625, 0.0186767578125, 0.0279541015625, 0.0091552734375, 0.0084228515625, -0.00262451171875, 0.005706787109375, 0.0033721923828125, 0.01019287109375, 0.004669189453125, 0.0126953125, 0.00750732421875, -0.005218505859375, 0.023193359375, -0.0106201171875, 0.00592041015625, 0.025146484375, 0.018310546875, 0.004852294921875, -0.007049560546875, -0.01141357421875, -0.0003299713134765625, -0.0106201171875, -0.000820159912109375, 0.0087890625, 0.006072998046875, -0.00982666015625, 0.00469970703125, -0.01373291015625, 0.017333984375, 0.0081787109375, 0.01263427734375, -0.0023193359375, 0.00457763671875, -0.000946044921875, 0.0021514892578125, 0.000949859619140625, 0.017578125, -0.01416015625, -0.01239013671875, 0.00677490234375, -0.002960205078125, -0.01385498046875, -0.0166015625, 0.009033203125, -0.0150146484375, 0.009033203125, -0.01385498046875, -0.00421142578125, 0.0014495849609375, 0.010986328125, 0.0113525390625, -0.0203857421875, -0.00970458984375, 0.0159912109375, 0.0194091796875, -0.02490234375, 0.00982666015625, 0.025390625, 0.003265380859375, 0.0126953125, -0.0167236328125, 0.004425048828125, -0.00194549560546875, -0.0115966796875, 0.010009765625, 0.0157470703125, -0.034423828125, 0.029052734375, 0.0012969970703125, -0.00531005859375, -0.00390625, -0.0189208984375, -0.00074005126953125, -0.006439208984375, -0.00726318359375, -0.0211181640625, 0.020751953125, -0.0115966796875, 0.0045166015625, 0.02197265625, -0.016357421875, 0.01416015625, -0.0145263671875, 0.005340576171875, 0.018310546875, 0.0235595703125, 0.01397705078125, 0.00738525390625, 0.00860595703125, 0.01080322265625, -0.00592041015625, 0.000156402587890625, 0.01708984375, -0.030029296875, 0.007354736328125, 0.004364013671875, 0.00738525390625, 0.00860595703125, -0.0118408203125, 0.01226806640625, -0.0035247802734375, 0.002105712890625, 0.0019073486328125, 0.01177978515625, 0.00653076171875, -0.01116943359375, -0.005218505859375, 0.0016937255859375, -0.002197265625, 0.007293701171875, 0.0069580078125, -0.002685546875, 0.01348876953125, 0.01324462890625, 0.033203125, 0.00860595703125, -0.00537109375, 0.0025482177734375, 0.0302734375, -0.021484375, -0.00201416015625, -0.06982421875, 0.00185394287109375, -0.01031494140625, 0.00144195556640625, -0.0111083984375, 0.0019073486328125, -0.00579833984375, 0.000518798828125, -0.0034942626953125, 0.005859375, -0.004425048828125, -0.004425048828125, -0.0101318359375, -0.0072021484375, 0.003814697265625, -0.00482177734375, 0.002044677734375, -0.0150146484375, -0.01519775390625, -0.013671875, 0.000537872314453125, -0.01483154296875, 0.0189208984375, -0.007293701171875, 0.000171661376953125, 0.01031494140625, -0.037109375, 0.01116943359375, 0.0184326171875, 0.0130615234375, -0.0023956298828125, -0.009033203125, 0.003387451171875, -0.017822265625, 0.0108642578125, -0.002471923828125, -0.0157470703125, -0.0223388671875, -0.0908203125, -0.0107421875, -0.00045013427734375, 0.0228271484375, -0.00592041015625, 0.015380859375, -0.002685546875, 0.0054931640625, -0.0126953125, -0.0108642578125, 0.003570556640625, 0.0113525390625, 0.015869140625, -0.00213623046875, 0.00787353515625, 0.0009002685546875, 0.007293701171875, 0.0107421875, -0.0087890625, 0.007080078125, 0.0111083984375, 0.0189208984375, 0.0020751953125, -0.001922607421875, -0.0081787109375, 0.0050048828125, 0.0223388671875, -0.00830078125, 0.01055908203125, -0.00799560546875, 0.006744384765625, -0.01495361328125, -0.020263671875, 0.005584716796875, -0.0035400390625, 0.007293701171875, -0.021728515625, 0.007598876953125, -0.0174560546875, -0.0181884765625, -0.02001953125, 0.005096435546875, 0.002349853515625, 0.0024566650390625, 0.00848388671875, 0.00897216796875, 0.00069427490234375, -0.0162353515625, 0.02783203125, 0.0069580078125, 0.0052490234375, 0.0186767578125, 0.01385498046875, -0.0087890625, -0.007415771484375, 0.018310546875, 0.00439453125, 0.0771484375, 0.003387451171875, -0.0030517578125, 0.002899169921875, -0.0126953125, -0.0147705078125, 0.0128173828125, 0.004791259765625, 0.00750732421875, -0.00634765625, -0.00176239013671875, -0.009033203125, -0.00872802734375, 0.019775390625, -0.0019989013671875, -0.01904296875, 0.00154876708984375, -0.01806640625, -0.00927734375, -0.000423431396484375, 0.018798828125, 0.00579833984375, -0.02197265625, -0.0081787109375, 0.0281982421875, -0.00408935546875, 0.00494384765625, 0.0142822265625, -0.00457763671875, 0.0191650390625, 0.0126953125, -0.00714111328125, -0.00034332275390625, 0.0196533203125, -0.042236328125, -0.00799560546875, 0.007720947265625, -0.00408935546875, 0.02392578125, -0.016357421875, -0.03271484375, 0.034423828125, -0.0026397705078125, -0.007598876953125, -0.017578125, -0.00726318359375, -0.0078125, 0.0089111328125, -0.00408935546875, 0.0101318359375, -0.01153564453125, 0.00494384765625, -0.006866455078125, -0.0111083984375, -0.013427734375, 0.008544921875, 0.007293701171875, 0.0223388671875, -0.0174560546875, 0.006927490234375, 0.03564453125, -0.0010528564453125, 0.000911712646484375, -0.004730224609375, -0.0003337860107421875, -0.01513671875, -0.00147247314453125, -0.004730224609375, -0.002288818359375, -0.00154876708984375, -0.013427734375, 0.022705078125, 0.0030670166015625, 0.018310546875, 0.000156402587890625, 0.01202392578125, 0.007476806640625, -0.004425048828125, -0.007354736328125, 0.0022735595703125, 0.00634765625, 0.0078125, -0.03515625, 0.002288818359375, -0.00054168701171875, 0.0277099609375, -0.010986328125, -0.0118408203125, 0.0028228759765625, 0.01544189453125, 0.011962890625, 0.013427734375, -0.0206298828125, 0.006103515625, 0.003173828125, 0.00090789794921875, 0.0023651123046875, -0.0252685546875, -0.00830078125, -0.006011962890625, 0.00311279296875, -0.0008392333984375, 0.000125885009765625, -0.006500244140625, -0.0101318359375, -0.01434326171875, 0.0218505859375, -0.0011444091796875, -0.00518798828125, -0.007171630859375, -0.01092529296875, 0.00799560546875, 0.00970458984375, -0.006317138671875, 0.002288818359375, -0.009033203125, -0.01348876953125, 0.009033203125, -0.0264892578125, -0.025634765625, -0.030029296875, 0.0225830078125, -0.0179443359375, -0.0218505859375, 0.0125732421875, -0.006988525390625, -0.005279541015625, -0.0010986328125, 0.002349853515625, -0.000579833984375, 0.01141357421875, -0.00787353515625, 0.07568359375, -0.0089111328125, 0.01324462890625, 0.01416015625, -0.003387451171875, 0.00115966796875, 0.0174560546875, 0.005218505859375, 0.00958251953125, 0.005889892578125, -0.000789642333984375, 0.08154296875, 0.0283203125, -0.00250244140625, -0.013671875, 0.007781982421875, 0.01263427734375, 0.01300048828125, 0.0072021484375, -0.0177001953125, -0.00144195556640625, 0.00714111328125, 0.004852294921875, -0.0013427734375, -0.0166015625, -0.0264892578125, -0.015380859375, 0.01416015625, -0.0257568359375, 0.0108642578125, 0.0142822265625, 0.0281982421875, -7.200241088867188e-05, 0.00084686279296875, -0.00274658203125, 0.0205078125, 0.035400390625, 0.000518798828125, 0.0084228515625, -0.007598876953125, -0.0093994140625, -0.0186767578125, 0.0091552734375, -0.02099609375, 0.002838134765625, 0.022705078125, -0.014404296875, -0.0106201171875, 0.03369140625, -0.01385498046875, 0.0081787109375, 0.00567626953125, -0.021728515625, -0.017822265625, 0.007720947265625, 0.0150146484375, -0.0115966796875, -0.018310546875, -0.0172119140625, -0.0208740234375, 0.005645751953125, 0.015380859375, -0.0098876953125, 0.006866455078125, -0.00836181640625, 0.0038604736328125, -0.0034637451171875, 0.005584716796875, -0.0033721923828125, -0.0247802734375, 0.00830078125, -0.005157470703125, 0.001312255859375, 0.005767822265625, -0.01611328125, -0.0008544921875, -0.0181884765625, 0.0157470703125, 0.0045166015625, 0.00799560546875, 0.0113525390625, 0.0014801025390625, -0.0107421875, 0.00787353515625, -0.0128173828125, -0.004730224609375, 0.0130615234375, -0.00933837890625, -0.0235595703125, -0.00872802734375, 0.002685546875, 0.01043701171875, 0.010986328125, 0.01239013671875, 0.00628662109375, -0.02490234375, 0.026123046875, 0.041015625, 0.001495361328125, 0.007293701171875, 0.005706787109375, -0.004364013671875, -0.0208740234375, -0.0027923583984375, 0.004638671875, 0.0194091796875, -0.00946044921875, 0.00494384765625, -0.0150146484375, 0.0021820068359375, 0.0047607421875, 0.0244140625, 0.005859375, 0.00537109375, -0.0159912109375, 0.0888671875, 0.0223388671875, 0.000926971435546875, -0.09423828125, 0.016357421875, -0.005035400390625, -0.0019683837890625, 0.013427734375, 0.007415771484375, 0.0159912109375, -0.00909423828125, 0.000370025634765625, -0.00069427490234375, -0.00860595703125, -0.010986328125, -0.0130615234375, -0.0062255859375, 0.00726318359375, 0.01434326171875, -0.01141357421875, 0.0035858154296875, -0.02392578125, -0.005859375, 0.00848388671875, -0.01239013671875, -0.00897216796875, -0.01141357421875, 0.00634765625, 0.0218505859375, 0.008056640625, -0.002288818359375, -0.01214599609375, -0.003997802734375, -0.03271484375, 0.0081787109375, 0.00982666015625, 0.001251220703125, 0.007415771484375, -0.005584716796875, 0.0031585693359375, 0.007354736328125, -0.0103759765625, 0.005462646484375, -0.00665283203125, -0.000858306884765625, -0.0009918212890625, 0.013427734375, -0.01708984375, 0.01416015625, 0.0029296875, -0.0011444091796875, 0.0242919921875, 0.00860595703125, 0.0228271484375, -0.004486083984375, 0.00010251998901367188, 0.1044921875, 0.01055908203125, -0.00897216796875, -0.01312255859375, -0.0194091796875, -0.0296630859375, 0.000885009765625, 0.0166015625, -0.00799560546875, 0.0006103515625, 0.0054931640625, 0.00665283203125, 0.00173187255859375, 0.0150146484375, -0.02001953125, 0.0023040771484375, -0.004730224609375, -0.021728515625, 0.0025482177734375, 0.0235595703125, 0.00970458984375, -0.0152587890625, 0.00860595703125, -0.0059814453125, -0.01214599609375, 0.002410888671875, 0.0035247802734375, -0.00360107421875, 0.0223388671875, 0.014404296875, -0.0081787109375, -0.007171630859375, -0.0145263671875, -0.022705078125, 0.000812530517578125, 0.00823974609375, 0.004302978515625, 0.0024871826171875, -0.000499725341796875, 0.0008697509765625, 0.01611328125, 0.007415771484375, 0.030029296875, 0.0281982421875, 0.0059814453125, -0.0277099609375, -0.01434326171875, -0.0030517578125, -0.00225830078125, 0.0030975341796875, 0.0118408203125, 0.0283203125, -0.0034942626953125, -0.00592041015625, 0.006134033203125, 0.00079345703125, 0.006744384765625, -0.00927734375, 0.0206298828125, 0.03955078125, -0.0078125, -0.0172119140625, 0.00179290771484375, 0.02197265625, -0.002227783203125, 0.002960205078125, -0.00567626953125, -0.00726318359375, 0.00011730194091796875, -0.02880859375, -0.0023193359375, 0.012451171875, 0.02197265625, -0.00457763671875, -0.016357421875, 0.0106201171875, -0.000347137451171875, -0.00274658203125, -0.004669189453125, -0.0040283203125, -0.0030670166015625, -0.0167236328125, 0.000705718994140625, 0.0042724609375, -0.01141357421875, 0.0086669921875, -0.01141357421875, 0.0020751953125, -0.0013427734375, 0.0118408203125, 0.006195068359375, -0.013427734375, 0.01202392578125, -0.0150146484375, 0.0157470703125, -0.0054931640625, -0.0169677734375, 0.026611328125, -0.00162506103515625, -0.0174560546875, -0.00634765625, -0.00628662109375, 0.0230712890625, -0.003326416015625, 0.00653076171875, 0.0162353515625, -0.00084686279296875, -0.007476806640625, 0.007293701171875, 0.006103515625, 0.01153564453125, -0.01556396484375, 0.0130615234375, 0.004058837890625, 0.01116943359375, 0.006866455078125, 7.152557373046875e-05, -0.00164031982421875, -0.000335693359375, -0.01202392578125, 0.0006256103515625, -0.0135498046875, 0.00970458984375, 0.01226806640625, 0.0007781982421875, -0.01080322265625, -0.015869140625, 0.0033721923828125, -0.01092529296875, -0.01019287109375, 0.014404296875, -0.00830078125, -0.004669189453125, -0.0004558563232421875, 0.006439208984375, 0.006561279296875, -0.000492095947265625, -0.00982666015625, -0.0038909912109375, -0.0103759765625, -0.0016632080078125, 0.01226806640625, 0.006622314453125, 0.0031585693359375, 0.00125885009765625, 0.0162353515625, 0.0166015625, 0.0054931640625, 0.0081787109375, 0.019287109375, 0.0208740234375, -0.00860595703125, -0.0150146484375, 0.01202392578125, -0.01129150390625, -0.003204345703125, -0.007598876953125, -0.01263427734375, -0.0159912109375, 0.0021820068359375, 0.0260009765625, 0.0186767578125, -0.0145263671875, -0.0069580078125, 0.005584716796875, -0.00335693359375, 0.002960205078125, 0.007720947265625, -0.0002307891845703125, -0.00885009765625, -0.00927734375, 0.01708984375, -0.004425048828125, -0.01043701171875, 0.01043701171875, -0.00518798828125, -0.000873565673828125, 0.0244140625, -0.015380859375, 0.0067138671875, 0.01177978515625, 0.00933837890625, -0.00860595703125, -0.00799560546875, -0.011962890625, -0.01287841796875, -0.006500244140625, -0.0025482177734375, 0.005096435546875, 0.007781982421875, -0.00799560546875, 0.0022735595703125, 0.01226806640625, 0.00144195556640625, 0.002838134765625, -0.0174560546875, 0.0166015625, -0.016357421875, -0.01434326171875, 0.00921630859375, 0.0003871917724609375, 0.026123046875, 0.00189208984375, 0.01513671875, 0.00112152099609375, 0.0152587890625, 0.004119873046875, 0.00921630859375, 0.007476806640625, 0.0014190673828125, 0.00109100341796875, -0.01214599609375, -0.005645751953125, -0.0115966796875, 0.00189208984375, 0.00494384765625, 0.0166015625, 0.072265625, -0.0037841796875, -0.0091552734375, 0.0218505859375, -0.004150390625, -0.01226806640625, 0.013671875, 0.0037994384765625, 0.018310546875, 0.0145263671875, -0.02783203125, -0.0101318359375, -0.01019287109375, -0.038330078125, -0.00439453125, 0.00109100341796875, 0.0196533203125, -0.0096435546875, -0.018310546875, 0.01226806640625, -0.0030364990234375, 0.00421142578125, -0.00958251953125, -0.018310546875, 0.00927734375, 0.00176239013671875, -0.0068359375, -0.0159912109375, -0.02197265625, 0.01080322265625, -0.003814697265625, -0.0283203125, -0.0172119140625, 0.01177978515625, 0.0164794921875, 0.00157928466796875, -0.01806640625, -0.01483154296875, 0.0001544952392578125, -0.003387451171875, -0.010986328125, 0.00958251953125, -0.0021820068359375, -0.002288818359375, 0.00193023681640625, 0.00640869140625, 0.017333984375, -0.000396728515625, -0.0084228515625, 0.004974365234375, 0.0269775390625, -0.0218505859375, -0.01025390625, 0.0076904296875, 0.004791259765625, -0.0142822265625, 0.005645751953125, -0.0068359375, -0.004364013671875, 0.0079345703125, 0.0003814697265625, -0.0201416015625, -0.005279541015625, -0.00457763671875, 0.000652313232421875, -0.006988525390625, 0.0034637451171875, 0.0037841796875, 0.0019989013671875, 0.031494140625, 0.003997802734375, -0.00103759765625, -0.003326416015625, 0.004180908203125, 0.002105712890625, 0.0050048828125, 0.0023345947265625, -0.0072021484375, 0.0067138671875, -0.007171630859375, 0.0172119140625, 0.01397705078125, -0.0126953125, 0.009033203125, -0.018310546875, 0.0079345703125, -0.00848388671875, -0.01373291015625, -0.0101318359375, 0.0118408203125, 0.0034332275390625, 0.004638671875, 0.0025634765625, -0.00958251953125, 0.01239013671875, 0.0021820068359375, -0.038330078125, 0.0087890625, 0.0201416015625, 0.00726318359375, 0.018310546875, -0.0106201171875, -0.005889892578125, 0.00341796875, -0.00171661376953125, -0.0166015625, -0.0029449462890625, -0.005645751953125, 0.0169677734375, -0.0076904296875, 0.006134033203125, 0.000537872314453125, 0.00628662109375, 0.0162353515625, 0.0062255859375, -0.006622314453125, 0.004852294921875, -0.0108642578125, 0.001312255859375, -0.006988525390625, -0.0235595703125, 0.0107421875, 0.0040283203125, 0.02001953125, -0.006988525390625, 0.01153564453125, 0.01153564453125, -0.00421142578125, -0.00555419921875, -0.004791259765625, 0.00103759765625, -0.017333984375, -0.001220703125, -0.0034332275390625, 0.0003261566162109375, 0.0086669921875, 0.01806640625, 0.0191650390625, 0.00982666015625, 0.00567626953125, -0.006195068359375, -0.0125732421875, 0.01043701171875, 0.0017852783203125, -0.001068115234375, 0.035400390625, 0.00946044921875, 0.01141357421875, -0.03271484375, 0.0, -0.0174560546875, 0.00738525390625, -0.006011962890625, -0.0093994140625, -0.0013885498046875, -0.006622314453125, -0.0021820068359375, -0.00154876708984375, -0.004150390625, -0.01324462890625, 0.002899169921875, 0.0194091796875, 0.007598876953125, 0.002044677734375, 0.0103759765625, 0.00909423828125, 0.01287841796875, 0.0147705078125, 0.005218505859375, 0.019775390625, -0.0166015625, 0.01177978515625, -0.006866455078125, -0.005157470703125, -0.001739501953125, -0.006134033203125, -0.0018463134765625, 0.000583648681640625, 0.004730224609375, -0.0103759765625, -0.005889892578125, -0.01904296875, -0.0038909912109375, -0.004638671875, -0.01239013671875, -0.008056640625, -0.0211181640625, -0.00994873046875, 0.00537109375, -0.0093994140625, 0.003631591796875, 0.00982666015625, -0.0004215240478515625, -0.006500244140625, -0.005279541015625, 0.0230712890625, -0.0036773681640625, 0.0091552734375, -0.01513671875, 0.0022125244140625, -0.007354736328125, 0.00799560546875, 0.0194091796875, -0.0091552734375, -0.000537872314453125, 0.03369140625, 0.016357421875, 0.0098876953125, 0.00885009765625, 0.01287841796875, 0.0011444091796875, 0.0218505859375, -0.000881195068359375, -0.0185546875, -0.00738525390625, -0.0247802734375, -0.004852294921875, 0.038818359375, -0.004852294921875, 0.00494384765625, -0.007476806640625, -0.02685546875, -0.011962890625, -0.0186767578125, -0.0206298828125, 0.01068115234375, 0.0023956298828125, 0.025146484375, -0.00421142578125, -0.00012302398681640625, 0.01031494140625, -0.0252685546875, 0.023681640625, -0.00830078125, 0.00872802734375, 0.000667572021484375, -0.007354736328125, -0.0118408203125, -0.0036468505859375, 0.007171630859375, 0.0091552734375, -0.0225830078125, -0.00494384765625, 0.0291748046875, 0.0260009765625, -0.00714111328125, -0.0101318359375, -0.0098876953125, -0.00457763671875, 0.00122833251953125, -0.00182342529296875, 0.002227783203125, -0.004669189453125, -0.00164031982421875, 0.00640869140625, 0.0019989013671875, -0.0045166015625, 0.00250244140625, -0.005859375, -0.0247802734375, 0.00518798828125, 0.0142822265625, -0.0269775390625, -0.0027313232421875, -0.003814697265625, 0.0009002685546875, -0.00885009765625, 0.004852294921875, 0.01385498046875, -0.00982666015625, 0.00909423828125, -0.005279541015625, -0.0166015625, -0.010986328125, 0.002471923828125, 0.01153564453125, -0.00823974609375, -0.0034637451171875, -0.0177001953125, -0.00653076171875, 0.0087890625, -0.01141357421875, -0.00970458984375, -0.013427734375, 0.0279541015625, -0.0059814453125, 0.005889892578125, 0.0079345703125, 0.00823974609375, 0.010009765625, 0.000476837158203125, -0.019775390625, 0.0128173828125, -0.005859375, -0.0191650390625, -0.00653076171875, -0.033203125, 0.000766754150390625, -0.00518798828125, -0.007171630859375, -0.00070953369140625, -0.01373291015625, -0.0106201171875, -0.007476806640625, -0.01129150390625, 0.0062255859375, 0.0159912109375, -0.01226806640625, -0.0091552734375, -0.017822265625, -0.012451171875, -0.0087890625, 0.017578125, -0.0245361328125, 0.0054931640625, 0.0032196044921875, 0.0010986328125, -0.0035247802734375, -0.0062255859375, -0.01220703125, 0.0062255859375, 0.054931640625, -0.0242919921875, -0.00179290771484375, -0.001983642578125, 0.004364013671875, -0.00555419921875, 0.00555419921875, -0.010986328125, -0.002288818359375, 0.005157470703125, 0.01220703125, -0.00396728515625, -0.00872802734375, -0.0017852783203125, 0.007476806640625, -0.08447265625, -0.002777099609375, 0.00811767578125, -0.01007080078125, -0.00078582763671875, -0.01458740234375, 0.007568359375, -0.052490234375, -0.0157470703125, -0.01806640625, 0.0005035400390625, 0.006134033203125, 0.000698089599609375, -0.02197265625, -0.0021514892578125, 0.0125732421875, -0.023193359375, -0.006317138671875, 0.00174713134765625, 0.013427734375, 0.001495361328125, -0.00185394287109375, 0.0126953125, -0.006622314453125, 0.0172119140625, 0.00665283203125, 0.01409912109375, -0.0150146484375, 0.046875, -0.0010528564453125, -0.004150390625, 0.0098876953125, -0.01556396484375, -0.000934600830078125, 0.016357421875, 0.0002918243408203125, -0.0096435546875, -0.009521484375, -0.01806640625, 0.0150146484375, -0.023681640625, -0.001495361328125, -0.045654296875, 0.00921630859375, -0.01904296875, 0.01312255859375, -0.01397705078125, -0.00110626220703125, -0.003326416015625, 0.01904296875, -0.00872802734375, 0.00274658203125, 0.017333984375, -0.01806640625, 0.0087890625, -0.003570556640625, -0.00946044921875, -0.015625, 0.010986328125, -0.006439208984375, 0.0012054443359375, 0.00144195556640625, -0.001983642578125, -0.00885009765625, 0.000446319580078125, -0.0029449462890625, 0.0242919921875, -0.01263427734375, 0.003631591796875, -0.00933837890625, 0.0081787109375, 0.00640869140625, -0.00799560546875, 0.016845703125, -0.0223388671875, -0.022705078125, 0.0252685546875, -0.0084228515625, -0.004180908203125, 0.01300048828125, -0.0003871917724609375, 0.005096435546875, 0.0218505859375, 0.00139617919921875, 0.0142822265625, 0.0228271484375, 0.01434326171875, -0.012451171875, 0.004730224609375, 0.002960205078125, -0.01373291015625, 0.006744384765625, -0.0026397705078125, 0.000354766845703125, 0.0072021484375, 0.0164794921875, 0.03173828125, 0.03271484375, 0.00390625, -0.018798828125, 0.0028533935546875, 0.007598876953125, -0.002593994140625, 0.0022735595703125, 0.0228271484375, 0.00927734375, 0.00750732421875, 0.01611328125, 0.00311279296875, -0.0068359375, -0.01373291015625, 0.0111083984375, -0.012451171875, 0.0032196044921875, -0.0010223388671875, 0.0169677734375, -0.0035400390625, -0.0011749267578125, 0.035400390625, -0.00860595703125, -0.000270843505859375, -0.006744384765625, -0.0089111328125, 0.0174560546875, 0.0091552734375, -0.0159912109375, -0.0159912109375, -0.005584716796875, -0.00579833984375, -0.00799560546875, -0.0213623046875, -0.017578125, 0.02099609375, 0.00750732421875, 0.0054931640625, -0.0128173828125, 0.0045166015625, 0.0037841796875, 0.031494140625, -0.0247802734375, 0.00860595703125, 0.0133056640625, 0.005706787109375, -0.017822265625, -0.007781982421875, 0.026611328125, -0.0084228515625, 0.01031494140625, 0.0150146484375, -0.00799560546875, 0.006500244140625, 0.022705078125, 0.0103759765625, -0.0166015625, 0.0133056640625, 0.0191650390625, -0.0016632080078125, 0.00151824951171875, -0.00628662109375, -0.001678466796875, -0.00927734375, 0.003570556640625, -0.013427734375, 0.00121307373046875, 0.01483154296875, 0.02099609375, -0.01806640625, 0.002685546875, 0.00107574462890625, -0.00157928466796875, -0.0087890625, -0.0021820068359375, -0.0091552734375, 0.002777099609375, 0.00028228759765625, 0.009521484375, -0.01226806640625, -0.004791259765625, 0.00830078125, -0.0098876953125, 0.0084228515625, -0.0035247802734375, -0.012451171875, -0.007598876953125, -0.023681640625, 0.0125732421875, 0.0011138916015625, -0.005035400390625, 0.01031494140625, 0.022705078125, -0.00098419189453125, -0.00830078125, -0.0059814453125, -0.0098876953125, 0.00872802734375, -0.00165557861328125, 0.01092529296875, -0.0201416015625, -0.0106201171875, -0.00179290771484375, 0.0302734375, 0.001922607421875, -0.015625, -3.910064697265625e-05, -0.003753662109375, -0.00201416015625, -0.00162506103515625, 0.012451171875, 0.0026397705078125, 0.0026397705078125, -0.013916015625, 0.002105712890625, -0.0166015625, -0.0024566650390625, -0.00885009765625, -0.032470703125, 0.006622314453125, 0.0069580078125, -0.01129150390625, -0.013916015625, -0.0174560546875, 0.0400390625, -0.0228271484375, -0.01214599609375, 0.0025787353515625, -0.015625, -5.340576171875e-05, -0.00830078125, 0.019775390625, -0.01470947265625, 0.0240478515625, 0.004852294921875, -0.0125732421875, -0.0240478515625, -0.03125, 0.00135040283203125, -0.003936767578125, 0.00579833984375, -0.002105712890625, 0.00299072265625, 0.005340576171875, 0.0162353515625, 0.0072021484375, 0.014404296875, 0.0225830078125, -0.006011962890625, 0.003326416015625, -0.01177978515625, 0.016845703125, -0.002105712890625, -0.01202392578125, -0.1484375, -0.002716064453125, -0.00469970703125, -0.01483154296875, 0.009521484375, 0.01385498046875, -0.0172119140625, 0.001129150390625, 0.00021648406982421875, 0.0191650390625, -0.03564453125, 0.010986328125, -0.00445556640625, -0.0004730224609375, -0.022216796875, -0.02197265625, -0.022216796875, 0.016357421875, 0.01153564453125, 0.01202392578125, 0.022705078125, 0.015625, 0.004058837890625, 0.0206298828125, 0.0037994384765625, -0.0242919921875, 0.01141357421875, 0.0205078125, -0.008544921875, -0.010009765625, -0.01556396484375, 0.00506591796875, 0.01031494140625, 0.01495361328125, 0.01397705078125, -0.00177001953125, -0.00360107421875, 0.004913330078125, -0.01434326171875, -0.0286865234375, -0.0048828125, -0.0211181640625, 0.002838134765625, -0.01025390625, -0.01409912109375, 0.0033111572265625, -0.0247802734375, -0.01214599609375, -0.01239013671875, -0.007476806640625, 0.020263671875, 0.0115966796875, -0.026123046875, 0.00193023681640625, 0.0025177001953125, -0.009521484375, 0.005859375, 0.007293701171875, 0.0218505859375, 0.00872802734375, 0.0012359619140625, -0.00811767578125, -0.007598876953125, 0.0034332275390625, 0.01092529296875, 0.0038909912109375, 0.009765625, 0.0034637451171875, -0.00194549560546875, -0.006317138671875, -0.01458740234375, -0.0028533935546875, 0.01513671875, 0.007354736328125, -0.01483154296875, 0.000278472900390625, 0.034912109375, -0.004302978515625, -0.01312255859375, 0.0030975341796875, 0.01116943359375, -0.004425048828125, -0.00341796875, -0.00150299072265625, -0.004425048828125, -0.000415802001953125, 0.000751495361328125, -0.004638671875, 0.0225830078125, 0.00555419921875, -0.00933837890625, -0.00927734375, 0.0027008056640625, -0.015625, -0.00927734375, -0.0020294189453125, -0.0279541015625, 0.006011962890625, 0.0019683837890625, -0.0225830078125, -0.01141357421875, 0.005645751953125, -0.021484375, 0.0103759765625, -0.022216796875, -0.006134033203125, -0.005706787109375, 0.0002117156982421875, 0.0036773681640625, -0.0118408203125, 0.0078125, 0.030517578125, 0.0196533203125, -0.0194091796875, 0.01116943359375, 0.0174560546875, -0.00653076171875, -0.0033721923828125, 0.004791259765625, -0.0031585693359375, 0.00933837890625, -0.00384521484375, 0.019775390625, 0.01202392578125, -0.00714111328125, -0.005706787109375, 0.0257568359375, -0.0037078857421875, -0.0189208984375, 0.00799560546875, -0.00135040283203125, -0.0252685546875, 0.0033721923828125, 0.019775390625, -0.01171875, -0.005035400390625, 0.00482177734375, -0.0004291534423828125, 0.0279541015625, -0.00897216796875, 0.021728515625, 0.01806640625, -0.01141357421875, 0.00799560546875, 0.0130615234375, -0.00537109375, 0.01806640625, 0.00567626953125, 0.0142822265625, 0.0247802734375, -0.0004634857177734375, -0.00311279296875, -0.0152587890625, -0.004425048828125, 0.005706787109375, 0.0062255859375, -9.393692016601562e-05, -7.2479248046875e-05, -0.0269775390625, -0.005889892578125, -0.00787353515625, -0.0091552734375, 0.00830078125, -0.015625, -0.0093994140625, -0.03515625, -0.0015869140625, -0.026611328125, -0.016357421875, 0.001251220703125, -0.01470947265625, 0.11328125, 0.0201416015625, 0.0174560546875, 0.0001983642578125, 0.0002593994140625, 0.011962890625, -0.005767822265625, 0.011962890625, 0.01226806640625, 0.0048828125, -0.0172119140625, -0.002777099609375, 0.007354736328125, 0.010986328125, 0.0010223388671875, -0.00262451171875, 0.027099609375, 0.0, -0.00201416015625, 0.0068359375, 0.00106048583984375, -0.01214599609375, 0.0115966796875, 0.0218505859375, -0.020263671875, 0.0111083984375, -0.03271484375, 0.00115966796875, 0.0228271484375, 0.0128173828125, 0.0002765655517578125, 0.01324462890625, -0.00592041015625, 0.018310546875, 0.010986328125, -0.00341796875, -0.003936767578125, -0.01373291015625, 0.00311279296875, 0.0166015625, -0.0162353515625, 0.00031280517578125, 0.01556396484375, -0.00726318359375, -0.0030975341796875, -0.00095367431640625, 0.02880859375, 0.0206298828125, 0.0002498626708984375, 0.03759765625, 0.005096435546875, 0.00225830078125, 0.0279541015625, 0.007354736328125, -0.00927734375, 0.0084228515625, 0.0034332275390625, 4.029273986816406e-05, -0.00970458984375, 0.015625, -0.01043701171875, 0.0059814453125, -0.00726318359375, 0.01312255859375, -0.01434326171875, 0.026611328125, -0.016845703125, -0.005767822265625, 0.005035400390625, -0.00506591796875, 0.00799560546875, -0.004852294921875, 0.0113525390625, 0.0087890625, 0.01806640625, -0.007415771484375, -0.0274658203125, 0.00185394287109375, -0.00653076171875, 0.0150146484375, -0.0091552734375, -0.01495361328125, 0.0027923583984375, -0.0004482269287109375, -0.00176239013671875, 0.0020904541015625, 0.00823974609375, -0.01031494140625, -0.0023651123046875, 0.01416015625, -0.00543212890625, 0.00112152099609375, 0.011962890625, 0.0084228515625, 0.0159912109375, 0.008056640625, -0.022705078125, 0.01055908203125, -0.00677490234375, 0.010986328125, -0.005645751953125, 3.9577484130859375e-05, 0.0079345703125, -0.0020599365234375, -0.005584716796875, 0.01141357421875, -0.007415771484375, -0.01373291015625, -0.00185394287109375, 0.0277099609375, 0.0018157958984375, -0.048583984375, -0.027099609375, 2.4318695068359375e-05, -0.0025787353515625, -0.0072021484375, 0.00726318359375, -0.00110626220703125, 0.01312255859375, 0.0050048828125, 0.0118408203125, 0.111328125, -0.0240478515625, 0.0191650390625, -0.004547119140625, 0.00750732421875, 0.0091552734375, 0.01348876953125, 0.0128173828125, 0.0257568359375, 0.004486083984375, 0.0016632080078125, -0.00341796875, 0.0034332275390625, -0.029541015625, 0.0035400390625, -0.0172119140625, 0.01141357421875, -0.02001953125, -0.0166015625, 0.05712890625, 0.0159912109375, 0.010986328125, 0.00162506103515625, -0.013427734375, -0.0032806396484375, 0.0086669921875, 0.005859375, 0.01129150390625, -0.00299072265625, 0.00927734375, -0.0380859375, 0.0030059814453125, -0.002197265625, -0.005157470703125, 0.005706787109375, -0.0014190673828125, -0.002410888671875, -0.013916015625, 0.00506591796875, 0.00555419921875, 0.01116943359375, -0.00101470947265625, 0.0081787109375, -0.0032501220703125, -0.01470947265625, -0.00189208984375, -0.0089111328125, -0.018798828125, -0.005859375, 0.006439208984375, -0.002960205078125, 0.001495361328125, -0.0059814453125, 0.005218505859375, 0.00093841552734375, -0.011962890625, -0.015380859375, 0.0084228515625, 0.058837890625, -0.0244140625, -0.00579833984375, -0.004302978515625, -0.0142822265625, 0.004150390625, 0.006134033203125, -0.004669189453125, -0.005096435546875, -0.0050048828125, -0.00909423828125, -0.0185546875, 0.01373291015625, 0.0172119140625, -0.003631591796875, 0.009033203125, -0.01025390625, -0.00146484375, 0.01019287109375, -0.00726318359375, -0.00408935546875, -0.01226806640625, -0.004058837890625, -0.01483154296875, -0.01397705078125, -0.00021076202392578125, 0.025634765625, 0.01495361328125, -0.0113525390625, 0.00750732421875, 0.006561279296875, 0.00927734375, 0.0096435546875, -0.0028839111328125, -0.013427734375, 0.000667572021484375, 0.02197265625, -0.029541015625, -0.00179290771484375, -0.000858306884765625, -0.004241943359375, -0.0152587890625, -0.00390625, -0.0203857421875, -0.01025390625, -0.002197265625, -0.0228271484375, -0.0008392333984375, 0.01214599609375, -0.02734375, -0.00262451171875, 0.0023956298828125, -0.02685546875, -0.01611328125, 0.036865234375, -0.00128936767578125, 0.00543212890625, -0.00909423828125, -0.0010986328125, 0.006927490234375, 0.001922607421875, 0.00335693359375, 0.0034637451171875, -0.0159912109375, -0.0240478515625, -0.0079345703125, 0.0037994384765625, 0.01470947265625, 0.015380859375, 0.01385498046875, 0.0211181640625, 0.006988525390625, 0.00122833251953125, 0.01171875, -0.006744384765625, -0.010498046875, 0.0181884765625, 0.0033111572265625, -0.000255584716796875, 0.023681640625, -0.00946044921875, 0.003326416015625, -0.0098876953125, 0.0166015625, -0.0260009765625, 0.00628662109375, -0.018798828125, -0.003387451171875, -0.01458740234375, 0.004302978515625, 0.004486083984375, 0.004852294921875, -0.003143310546875, 0.01226806640625, 0.0032806396484375, -0.00836181640625, 0.001922607421875, -0.054931640625, 0.01556396484375, -0.01007080078125, -0.06640625, 0.009765625, 0.016357421875, -0.0108642578125, -0.005859375, 0.0225830078125, -0.005889892578125, 0.010009765625, 0.018798828125, 0.0012054443359375, -0.000453948974609375, 0.00018787384033203125, -0.003936767578125, -0.005340576171875, -0.00421142578125, -0.0028228759765625, 0.01409912109375, -0.00128936767578125, -0.01416015625, -0.01141357421875, 0.004791259765625, 0.01953125, -0.00579833984375, -0.001708984375, -0.0252685546875, -0.0157470703125, -0.0286865234375, 0.00182342529296875, 0.0076904296875, 0.0135498046875, 0.01397705078125, -0.040283203125, -0.01324462890625, 0.005645751953125, -0.03564453125, 0.0038909912109375, -0.0118408203125, 0.005645751953125, -0.00013828277587890625, -0.010498046875, 0.00726318359375, -0.0169677734375, 0.006072998046875, -9.059906005859375e-05, 0.0147705078125, 0.00469970703125, 0.0101318359375, 0.00677490234375, 0.00109100341796875, 0.00115966796875, 0.0157470703125, -0.00927734375, -0.01116943359375, -0.0133056640625, 0.001373291015625, 0.045166015625, 0.037841796875, -0.013427734375, 0.002655029296875, -0.00445556640625, 0.00860595703125, 0.002410888671875, 0.0177001953125, -0.000545501708984375, 0.0177001953125, 0.00099945068359375, 0.015380859375, 0.0286865234375, -0.00225830078125, 0.005096435546875, -0.006134033203125, -0.0034637451171875, 0.005279541015625, -0.018310546875, 0.0033111572265625, -0.00823974609375, 0.00506591796875, 0.018798828125, -0.013427734375, 0.0032196044921875, -0.001708984375, 0.078125, 0.01806640625, -0.016357421875, 0.01226806640625, -0.006561279296875, 0.014404296875, -0.004425048828125, -0.01019287109375, 0.0032806396484375, -0.0033111572265625, -0.0037994384765625, -0.005706787109375, -0.00982666015625, 0.00421142578125, -0.01312255859375, -0.0023193359375, 0.005157470703125, -0.0096435546875, 0.015380859375, 0.0019073486328125, -0.00726318359375, 0.0194091796875, 0.005401611328125, -0.00457763671875, 0.02197265625, 0.01043701171875, -0.00092315673828125, -0.0203857421875, -0.00107574462890625, -0.018310546875, 0.01708984375, 0.0101318359375, -0.00457763671875, -0.00015163421630859375, -0.013916015625, -0.002838134765625, 0.0068359375, 0.00070953369140625, -0.00186920166015625, 0.01055908203125, 0.01043701171875, -0.00567626953125, -0.0032196044921875, -0.01556396484375, 0.004241943359375, 0.019775390625, -0.0030670166015625, -0.0142822265625, 0.0033111572265625, 0.0166015625, -0.01177978515625, -0.0157470703125, 0.017822265625, -0.0303955078125, 0.00093841552734375, 0.013427734375, 0.00439453125, -0.007568359375, 0.0150146484375, -0.001953125, 0.00057220458984375, -0.010009765625, 0.006927490234375, -0.0118408203125, 0.00189971923828125, -0.00445556640625, 0.007476806640625, -0.0068359375, 0.006011962890625, -0.021484375, -0.007415771484375, 0.048828125, 0.00421142578125, -0.006744384765625, 0.0159912109375, 0.0111083984375, -0.03955078125, 0.0025482177734375, -0.0252685546875, -0.003936767578125, 0.008544921875, 0.003570556640625, 0.00131988525390625, -0.00107574462890625, -0.00592041015625, -0.030029296875, -0.031494140625, 0.010986328125, -0.009033203125, -0.001983642578125, 0.002716064453125, -0.00921630859375, 0.0159912109375, -0.0162353515625, 0.017822265625, 0.00194549560546875, 0.0030364990234375, -0.010009765625, -0.01397705078125, -0.00121307373046875, -0.0113525390625, 0.0034942626953125, -0.011962890625, 0.004119873046875, -0.00274658203125, 0.0009765625, -0.0299072265625, 0.0019989013671875, 0.00274658203125, 0.0035247802734375, -0.013427734375, -0.01397705078125, 0.005767822265625, 0.00179290771484375, -0.0179443359375, 0.005645751953125, -0.0012359619140625, 0.00970458984375, 0.0218505859375, -0.0216064453125, 0.017333984375, -0.010498046875, -0.0108642578125, -0.004730224609375, 0.0001392364501953125, -0.01312255859375, -0.00799560546875, 0.0103759765625, 0.00457763671875, -0.00799560546875, -0.01068115234375, 0.00151824951171875, 0.001373291015625, -0.00653076171875, -0.0113525390625, 0.006195068359375, -0.023681640625, 0.0194091796875, -0.01129150390625, -0.01177978515625, -0.00098419189453125, 0.0234375, 0.0038604736328125, -0.003936767578125, -0.006011962890625, -0.00933837890625, -0.00518798828125, 0.000774383544921875, 0.007293701171875, 0.0025177001953125, 0.0086669921875, 8.106231689453125e-05, -0.00183868408203125, -0.006011962890625, -0.01397705078125, 0.0091552734375, -0.00160980224609375, -0.007720947265625, -0.0034942626953125, 0.00016880035400390625, 0.0142822265625, -0.00162506103515625, 0.0145263671875, 0.00921630859375, -0.006134033203125, 0.006500244140625, 0.0172119140625, 0.0038909912109375, 0.0166015625, -0.00933837890625, 0.006927490234375, -0.0040283203125, -0.00543212890625, -0.0213623046875, -0.014404296875, 0.01409912109375, -0.00084686279296875, 0.027099609375, 0.0142822265625, 0.002716064453125, 0.0021514892578125, 0.006561279296875, 0.0, 0.001708984375, 0.01300048828125, 0.0216064453125, 0.0264892578125, 0.01153564453125, -0.0004749298095703125, 0.009765625, -0.0059814453125, -0.003692626953125, 0.0103759765625, 0.00799560546875, 0.008544921875, -0.0018157958984375, -0.0115966796875, 0.0159912109375, -0.005035400390625, -0.005645751953125, 0.00194549560546875, 0.0196533203125, -0.0081787109375, 0.000453948974609375, -0.01055908203125, 0.012451171875, -0.01031494140625, -0.0113525390625, 0.0026397705078125, -0.0035247802734375, -0.0101318359375, 0.0216064453125, -0.005645751953125, 0.03125, -0.01226806640625, -0.0115966796875, 0.01434326171875, 0.0103759765625, 0.00543212890625, 0.00189971923828125, 0.0042724609375, -0.01202392578125, 0.0068359375, -0.015625, -0.02490234375, -0.008056640625, 0.007171630859375, -0.0076904296875, 0.00024318695068359375, -0.0091552734375, -0.01019287109375, 0.01300048828125, -0.0028533935546875, 0.005096435546875, -0.003143310546875, 0.0177001953125, -0.0037994384765625, -0.0242919921875, 0.0135498046875, 0.0235595703125, -0.01043701171875, 0.022216796875, -0.01544189453125, -0.0030059814453125, -0.0101318359375, -0.004791259765625, 0.00347900390625, 0.00860595703125, -0.0108642578125, -0.005645751953125, 0.002105712890625, 0.00537109375, 0.015625, -0.006195068359375, -0.0130615234375, 0.00122833251953125, -0.004150390625, 0.00787353515625, -0.0096435546875, 0.003692626953125, 0.01953125, -0.01043701171875, 0.00830078125, -0.0081787109375, 0.00433349609375, -0.0152587890625, -0.01171875, -0.0034637451171875, 0.00136566162109375, 0.005157470703125, -0.01300048828125, -0.00823974609375, 0.01397705078125, -0.000530242919921875, 0.0177001953125, 0.0029296875, 0.00579833984375, 0.00445556640625, -0.0069580078125, -0.002838134765625, 0.006500244140625, 0.0166015625, 0.013916015625, 0.007415771484375, -0.0023956298828125, -0.009765625, 0.020751953125, -0.016357421875, -0.013671875, -0.0166015625, 0.0245361328125, 0.01129150390625, 0.0052490234375, -0.01409912109375, -0.004730224609375, -0.01300048828125, -0.0017852783203125, -0.00080108642578125, 0.01055908203125, -0.00494384765625, -0.01043701171875, -0.0030059814453125, 0.01031494140625, 3.8623809814453125e-05, -0.000274658203125, 0.019775390625, 0.00469970703125, 0.03125, 0.032470703125, 0.01226806640625, -0.025634765625, 0.004486083984375, -0.0084228515625, 0.0098876953125, -0.00885009765625, 0.000843048095703125, 0.0081787109375, -0.0130615234375, 0.007171630859375, 0.0174560546875, -0.006744384765625, 0.0023193359375, -0.04736328125, 0.0040283203125, -0.01031494140625, 0.02685546875, -0.00439453125, 0.0042724609375, 0.0108642578125, 0.007781982421875, -0.0087890625, 0.00982666015625, -0.000370025634765625, -0.0277099609375, -0.0035858154296875, 0.018310546875, 0.004547119140625, 0.02880859375, -0.000965118408203125, -0.0128173828125, 0.0203857421875, -0.004638671875, 0.0016326904296875, -0.00124359130859375, -0.012451171875, -0.002655029296875, -0.01202392578125, -0.03857421875, 0.01519775390625, -0.01220703125, -0.00341796875, -0.0012664794921875, -0.0026397705078125, -0.0172119140625, 0.016357421875, -0.00072479248046875, -0.0030670166015625, 0.006561279296875, 0.11962890625, 0.010009765625, -0.016357421875, 0.021728515625, -0.01312255859375, 0.004058837890625, -0.0025787353515625, -0.0179443359375, -0.01409912109375, -0.0037078857421875, -0.0016632080078125, -0.0059814453125, 0.00640869140625, -0.0274658203125, -0.0145263671875, 0.0072021484375, -0.00762939453125, -0.007720947265625, 0.007568359375, 0.0225830078125, -0.000698089599609375, 0.001129150390625, 0.013671875, 0.012451171875, -0.0115966796875, 0.0078125, 0.0322265625, 0.01055908203125, 0.01385498046875, 0.003753662109375, 0.003692626953125, 0.03173828125, -0.01214599609375, -0.006011962890625, 0.0079345703125, 0.0206298828125, -0.00122833251953125, -0.03125, -0.005279541015625, 0.00115966796875, 0.001922607421875, 0.0006561279296875, -0.0311279296875, -0.005340576171875, 0.000278472900390625, -0.0107421875, 0.005035400390625, -0.01031494140625, -0.00341796875, -0.004608154296875, -0.0101318359375, -0.0211181640625, -0.0087890625, -0.007598876953125, 0.0135498046875, 0.00726318359375, 0.0096435546875, 0.0135498046875, -0.0142822265625, 0.015625, -0.019775390625, -0.0054931640625, -0.0128173828125, 0.006744384765625, 0.0177001953125, -0.00147247314453125, -0.006072998046875, -0.018798828125, 0.0037078857421875, 0.035400390625, 0.0006866455078125, -0.00421142578125, 0.01483154296875, 0.00299072265625, 0.0252685546875, -0.01513671875, -0.00119781494140625, 0.004638671875, -0.00457763671875, -0.019287109375, -0.0015869140625, -0.01092529296875, 0.00384521484375, 0.0234375, -0.01495361328125, 0.0098876953125, -0.005706787109375, -0.0107421875, -0.0091552734375, 0.00174713134765625, -0.01495361328125, 0.00021076202392578125, -0.00176239013671875, 0.00250244140625, 0.002960205078125, -0.0036468505859375, -0.018310546875, -0.0040283203125, -0.0113525390625, 0.019775390625, 0.01055908203125, 0.0157470703125, -0.0036773681640625, -0.01031494140625, 0.0021820068359375, -0.013671875, -0.007049560546875, -0.018310546875, -0.00927734375, -0.015380859375, -0.01611328125, 0.019775390625, 0.007781982421875, 0.006103515625, -0.006195068359375, -0.01214599609375, -0.00927734375, 0.018310546875, -0.005157470703125, -0.007049560546875, 0.0003795623779296875, -0.0013427734375, -0.0152587890625, 0.064453125, 0.0034942626953125, -0.02099609375, 0.042236328125, -0.002166748046875, -0.01434326171875, -0.00128936767578125, -0.000759124755859375, -0.0234375, 0.023193359375, 0.01141357421875, -0.0032501220703125, -0.00506591796875, -0.020751953125, -0.0091552734375, 0.01409912109375, 0.0013275146484375, 0.002410888671875, -0.003814697265625, 0.01043701171875, -0.0244140625, 0.00457763671875, 0.007171630859375, -0.00433349609375, 0.000812530517578125, -0.01312255859375, 0.01263427734375, -0.0091552734375, -0.00194549560546875, -0.0028839111328125, 0.025146484375, 0.095703125, 0.00396728515625, -0.007720947265625, -0.0157470703125, -0.006134033203125, -0.01055908203125, 0.01092529296875, 0.005584716796875, 0.0108642578125, -0.0050048828125, -0.0185546875, 0.006988525390625, 0.01171875, 0.011962890625, 0.006072998046875, 0.02392578125, 0.007568359375, -0.0174560546875, -0.0118408203125, 0.00799560546875, -0.001556396484375, 0.004425048828125, 0.006134033203125, -0.0244140625, -0.006561279296875, 0.00958251953125, -0.002685546875, -0.0030670166015625, -0.01904296875, 0.0022125244140625, -0.0186767578125, -0.002349853515625, 0.00628662109375, 0.00946044921875, -0.04150390625, 0.00830078125, -0.00634765625, -0.0096435546875, -0.0260009765625, 0.0234375, -0.007171630859375, -0.0030364990234375, 0.01171875, 0.00482177734375, -0.0108642578125, -0.00127410888671875, -0.00024318695068359375, -0.00665283203125, 0.00543212890625, 0.0023651123046875, -0.00921630859375, -0.007568359375, -0.01385498046875, -0.00168609619140625, -0.003692626953125, 0.01300048828125, 0.010986328125, -0.00592041015625, -0.0135498046875, 0.00982666015625, -0.0189208984375, -0.00872802734375, -0.00439453125, -0.01116943359375, -0.004425048828125, -0.01287841796875, -0.006134033203125, -0.0023193359375, -0.0034942626953125, 0.001678466796875, -0.0169677734375, 0.0159912109375, -0.00079345703125, -0.001556396484375, -0.01153564453125, 0.053955078125, -0.0172119140625, -0.0011444091796875, 0.004669189453125, 0.00185394287109375, -0.00274658203125, 0.0029296875, -0.0081787109375, -0.00799560546875, -0.01239013671875, 0.011962890625, -0.0113525390625, 0.00946044921875, -0.009033203125, 0.00421142578125, 0.0260009765625, 0.0252685546875, -0.0108642578125, 0.005859375, -0.0010986328125, -0.01177978515625, -0.0028839111328125, 0.01171875, -0.022216796875, 0.00787353515625, -0.0091552734375, -0.01409912109375, 0.01177978515625, -0.0196533203125, 0.010009765625, 0.00726318359375, 0.00933837890625, 0.0002384185791015625, -0.0172119140625, 0.007598876953125, -0.0091552734375, -0.0010986328125, 0.0091552734375, -0.0228271484375, -0.15234375, -0.00970458984375, 0.00011873245239257812, -0.00933837890625, 0.010009765625, -0.004150390625, 0.0030975341796875, 0.0081787109375, -0.02734375, 0.0174560546875, 0.021484375, -0.0179443359375, -0.007080078125, 0.0159912109375, 0.041748046875, -0.0302734375, -0.007049560546875, 0.007781982421875, -0.0024261474609375, 0.000598907470703125, -0.0152587890625, 0.00811767578125, 0.01385498046875, 0.01226806640625, -0.006195068359375, -0.00787353515625, -0.000553131103515625, -0.003631591796875, 0.000732421875, -0.034423828125, 0.003173828125, 0.0022735595703125, 0.00043487548828125, -0.01397705078125, -0.0029449462890625, -0.05712890625, -0.0135498046875, -0.01177978515625, 0.0157470703125, 0.0028533935546875, -0.0235595703125, 0.001129150390625, -0.01177978515625, -0.03466796875, 0.0037078857421875, -0.0067138671875, -0.01055908203125, 0.017333984375, -0.006195068359375, -0.004669189453125, -0.0012664794921875, 0.001190185546875, -0.0010223388671875, 0.0172119140625, -0.0022125244140625, -0.0081787109375, -0.0027008056640625, -0.002288818359375, 0.01324462890625, 0.015380859375, -0.01434326171875, -0.01434326171875, 0.022216796875, 0.016845703125, -0.01348876953125, 0.0126953125, -0.00628662109375, -0.0113525390625, -0.0034942626953125, -0.000591278076171875, -0.007049560546875, 0.0081787109375, -0.018310546875, 0.006744384765625, -0.01214599609375, 0.012451171875, -0.00830078125, 0.0281982421875, -0.033203125, -0.01324462890625, -0.00069427490234375, -0.00640869140625, -0.0111083984375, 0.0021820068359375, -0.010009765625, 0.01019287109375, 0.00738525390625, 0.01202392578125, -0.00946044921875, -0.01171875, 0.0069580078125, 0.00946044921875, 0.002655029296875, 0.0498046875, -0.01171875, -0.000682830810546875, 0.01043701171875, 0.006195068359375, 0.0150146484375, 0.02197265625, -0.000148773193359375, 0.00341796875, -0.0029449462890625, -0.00506591796875, 0.004150390625, -0.00848388671875, 0.010009765625, -0.0052490234375, -0.0279541015625, -0.00201416015625, -0.012451171875, -0.004364013671875, -0.062255859375, -0.0024261474609375, 0.005584716796875, 0.0206298828125, 0.01385498046875, 0.0096435546875, 0.01483154296875, -0.004486083984375, 0.0009765625, -0.12158203125, -0.0013580322265625, 0.008544921875, -0.00860595703125, 0.007720947265625, 0.0218505859375, -0.007080078125, 0.014404296875, 0.00982666015625, 0.0023651123046875, -0.016845703125, -0.001495361328125, 0.0013885498046875, -0.01483154296875, -0.02197265625, -0.002838134765625, -0.01031494140625, -0.00860595703125, 0.01385498046875, -0.00811767578125, -0.002685546875, -0.016357421875, 0.0078125, 0.000885009765625, 0.0069580078125, 0.048095703125, 0.018310546875, 0.0029449462890625, 0.003997802734375, -0.0211181640625, -0.039306640625, 0.01556396484375, 0.01556396484375, -0.010009765625, 0.025634765625, 0.010009765625, -0.0067138671875, -0.00799560546875, 0.0024566650390625, -0.0069580078125, -0.016845703125, -0.016845703125, -0.019287109375, -0.00799560546875, -0.0003108978271484375, 0.00787353515625, -0.010986328125, -0.01129150390625, 0.01385498046875, -0.026611328125, 0.004180908203125, 0.008056640625, -0.0126953125, 7.867813110351562e-05, -0.0252685546875, -0.01171875, 0.00885009765625, 0.005859375, -0.0130615234375, -0.006072998046875, -0.01031494140625, 0.01031494140625, -0.0196533203125, -0.0091552734375, 0.006500244140625, 0.0150146484375, 0.01171875, 0.0067138671875, 0.038330078125, 0.019775390625, 0.001922607421875, 0.01300048828125, -0.007781982421875, 0.0235595703125, 0.01141357421875, 0.0260009765625, 0.01385498046875, 0.0206298828125, -0.004241943359375, 0.0011444091796875, 0.0003223419189453125, 0.0145263671875, -0.02001953125, 0.009033203125, 0.0021514892578125, -0.0118408203125, 0.0174560546875, -0.000736236572265625, -0.006072998046875, 0.00665283203125, 0.004547119140625, 0.016845703125, -0.00113677978515625, -0.03076171875, -0.01458740234375, -0.003936767578125, -0.01324462890625, -0.0130615234375, 0.0098876953125, 0.00848388671875, -0.00274658203125, -0.01348876953125, 0.004364013671875, -0.0076904296875, 0.0142822265625, 0.00970458984375, -0.0045166015625, 0.000934600830078125, 0.00113677978515625, 0.021484375, 0.03271484375, 0.0045166015625, 0.01300048828125, 0.002288818359375, 0.0257568359375, -0.02099609375, 0.006011962890625, -0.003753662109375, -0.00421142578125, 0.01239013671875, 0.01409912109375, 0.0191650390625, -0.0206298828125, -0.01397705078125, -0.0023956298828125, 0.023681640625, -0.0234375, 0.0177001953125, 0.010986328125, 0.0047607421875, -0.01312255859375, 0.0087890625, 0.00836181640625, -0.00555419921875, -0.00982666015625, 0.0062255859375, 0.0023193359375, 0.01153564453125, -0.02001953125, 0.007354736328125, -0.002655029296875, 0.000522613525390625, 0.01312255859375, 0.021484375, -0.0035247802734375, 0.03369140625, -0.0023345947265625, -0.0026092529296875, -0.00054931640625, -0.004058837890625, -0.007171630859375, -0.007415771484375, 0.005706787109375, -0.00250244140625, -0.01470947265625, -0.0194091796875, -0.00982666015625, 0.00738525390625, 0.0034332275390625, -0.00823974609375, 0.00506591796875, -0.00909423828125, 0.001312255859375, 0.0003223419189453125, -0.0059814453125, -0.030029296875, -0.006195068359375, -0.01263427734375, -0.006103515625, -0.01220703125, -0.00049591064453125, 0.0196533203125, 0.0001392364501953125, 0.009521484375, 0.0118408203125, -0.00421142578125, -0.01495361328125, -0.01385498046875, -0.025634765625, 0.00543212890625, -0.00970458984375, -0.00157928466796875, -0.002105712890625, 0.003204345703125, 0.00506591796875, -0.0108642578125, -0.005645751953125, 0.02685546875, -0.004852294921875, -0.01068115234375, -0.00390625, -0.09375, -0.0167236328125, -0.003326416015625, -0.01544189453125, -0.013671875, -0.01263427734375, -0.01611328125, -0.00421142578125, -0.0128173828125, -0.01806640625, -0.01068115234375, 0.0050048828125, -0.00787353515625, 0.0126953125, -0.0054931640625, 0.0018768310546875, 0.01611328125, 0.017578125, -0.1416015625, -0.018310546875, -0.0177001953125, -0.004913330078125, -0.01043701171875, -0.00830078125, 0.005340576171875, 0.0260009765625, 0.006500244140625, -0.0032806396484375, -0.00384521484375, 0.007568359375, 0.0084228515625, 0.00194549560546875, 0.01373291015625, 0.04296875, 0.002410888671875, 0.0079345703125, -0.00933837890625, -0.021728515625, -7.724761962890625e-05, 0.01153564453125, -0.004364013671875, 0.002899169921875, -0.01055908203125, 0.00640869140625, -0.0118408203125, -0.00445556640625, 0.0019683837890625, -0.0032196044921875, 0.002471923828125, -0.00555419921875, 0.0174560546875, -0.0196533203125, -0.00238037109375, -0.0277099609375, -0.007781982421875, 0.0380859375, 0.025146484375, 0.0026397705078125, -0.006103515625, 0.007049560546875, -0.01239013671875, 0.004241943359375, 0.01348876953125, 0.003204345703125, -0.0009765625, -0.00173187255859375, -0.0242919921875, 0.001220703125, -0.0169677734375, -0.002655029296875, 0.00457763671875, -0.01220703125, 0.0013427734375, 0.021484375, 0.00543212890625, 0.0002899169921875, 0.0174560546875, -0.0177001953125, -0.0081787109375, -0.022216796875, 0.004058837890625, 0.0299072265625, -0.01025390625, 0.01214599609375, 0.004852294921875, 0.01153564453125, 0.01483154296875, -0.03271484375, -0.0093994140625, -0.000308990478515625, 0.01458740234375, 0.006072998046875, 0.0050048828125, 0.0194091796875, 0.006744384765625, -0.0299072265625, -0.0029296875, 0.00567626953125, -0.003387451171875, -0.017578125, 0.0078125, 0.00640869140625, -0.021484375, 0.0021820068359375, 0.003387451171875, 0.004425048828125, -0.00457763671875, 7.581710815429688e-05, 0.0025787353515625, -0.00025177001953125, -0.0021514892578125, 0.034423828125, -0.00011730194091796875, -0.005401611328125, -0.0108642578125, 0.0079345703125, -0.0022125244140625, 0.000286102294921875, 0.01239013671875, 0.030517578125, 0.0240478515625, -0.004302978515625, -0.002105712890625, -0.0108642578125, 0.004058837890625, -0.014404296875, -0.013671875, 0.00927734375, 0.01220703125, 0.00946044921875, 0.0274658203125, -0.0019989013671875, -0.007049560546875, 0.01043701171875, 0.00013637542724609375, 0.01202392578125, 0.002532958984375, 0.02001953125, -0.01373291015625, 0.0029449462890625, 0.0203857421875, 0.0027923583984375, 0.006072998046875, -0.006011962890625, -0.0036773681640625, 0.01007080078125, 0.0042724609375, -0.00787353515625, -0.01055908203125, 0.01007080078125, 0.01458740234375, -0.00665283203125, 0.009033203125, 0.005645751953125, -0.10498046875, 0.00079345703125, 0.010009765625, -0.0211181640625, 0.00677490234375, -0.022705078125, 0.00182342529296875, 0.00171661376953125, 0.00016689300537109375, 0.00433349609375, 0.01483154296875, 0.0115966796875, -0.01043701171875, -0.0081787109375, -0.017333984375, 0.01513671875, -0.0084228515625, 0.019775390625, 0.0166015625, -0.01385498046875, 0.00225830078125, 0.03271484375, 0.00482177734375, 0.011962890625, 0.00726318359375, 0.0206298828125, 0.01348876953125, -0.01214599609375, -0.001800537109375, -0.002105712890625, 0.000453948974609375, 0.0111083984375, -0.01263427734375, -0.0002384185791015625, 0.013671875, -0.0034942626953125, -0.000911712646484375, 0.00147247314453125, -0.01806640625, -0.018310546875, 0.0023956298828125, -0.0107421875, 0.005645751953125, -0.01171875, -0.0135498046875, -0.00421142578125, 1.4994293451309204e-07, 0.0020751953125, 0.03515625, -0.03564453125, -0.003265380859375, 0.0084228515625, -0.008544921875, -0.025390625, -0.006927490234375, 0.0203857421875, -0.010009765625, 0.006439208984375, 0.003997802734375, -0.0072021484375, 0.0260009765625, -0.000736236572265625, -0.0191650390625, 0.0106201171875, -0.0213623046875, 0.007568359375, 0.057373046875, -0.01171875, 0.01141357421875, 0.006622314453125, -0.0037384033203125, -0.0152587890625, 0.017333984375, -0.006622314453125, 0.01153564453125, -0.00958251953125, -0.00762939453125, -0.023681640625, 0.016845703125, -0.000732421875, 0.0062255859375, -0.00457763671875, 0.0101318359375, 0.0023956298828125, 0.0257568359375, 0.00567626953125, 0.0113525390625, -0.00933837890625, -0.0111083984375, 0.02685546875, -0.029541015625, -0.00225830078125, -0.03125, -0.023681640625, -0.0166015625, -0.01214599609375, 0.0159912109375, -0.000919342041015625, 0.0032501220703125, -0.0098876953125, 0.01409912109375, 0.000423431396484375, -0.0011749267578125, 0.00506591796875, 0.0111083984375, 0.0103759765625, 0.01239013671875, 0.005157470703125, 0.000244140625, -0.0002899169921875, 0.00433349609375, 0.0245361328125, -0.01220703125, -0.005157470703125, -0.00830078125, -0.006134033203125, 0.0021514892578125, -0.0194091796875, 0.0067138671875, -0.0247802734375, 0.00872802734375, -0.0098876953125, -0.00885009765625, -0.007080078125, 0.00494384765625, 0.00183868408203125, -0.0159912109375, 0.0203857421875, 0.01513671875, 0.0107421875, -0.006866455078125, 0.021728515625, 0.03515625, 0.00927734375, -0.0089111328125, -0.0030670166015625, 0.004425048828125, -0.0203857421875, 0.00567626953125, 0.00921630859375, -0.0115966796875, 0.004852294921875, 0.00469970703125, 0.020751953125, 0.00189208984375, 0.01153564453125, -0.00799560546875, -9.834766387939453e-06, 0.00168609619140625, -0.003265380859375, -0.007049560546875, -0.0030517578125, -0.03271484375, -0.0162353515625, 0.003326416015625, 0.00665283203125, -0.00384521484375, -0.00885009765625, 0.01397705078125, 0.018310546875, 0.000762939453125, -0.000629425048828125, 0.01263427734375, -0.00738525390625, -0.0020599365234375, -0.035400390625, 0.0054931640625, -0.003753662109375, -0.004150390625, 0.005218505859375, -0.01300048828125, -0.00109100341796875, -0.00653076171875, -0.01806640625, 0.013916015625, -0.0096435546875, -0.0225830078125, -0.005859375, -0.0211181640625, -0.0111083984375, 0.034912109375, -0.000308990478515625, -0.00811767578125, 0.0098876953125, -0.0050048828125, 0.01141357421875, -0.021484375, -0.0218505859375, 0.041259765625, 0.001373291015625, -0.00025177001953125, -0.005462646484375, 0.00048065185546875, 0.031494140625, -0.0107421875, 0.01373291015625, -0.0081787109375, 0.00750732421875, 0.0166015625, -0.00099945068359375, -0.001251220703125, -0.002349853515625, -0.01116943359375, 0.0101318359375, 0.00885009765625, 0.002410888671875, -0.006744384765625, -0.02001953125, 0.00628662109375, -0.01312255859375, 0.00408935546875, -0.0159912109375, 0.01458740234375, -0.0062255859375, -0.0216064453125, -0.000667572021484375, -0.0062255859375, -0.0032196044921875, 0.03271484375, -0.00970458984375, -0.000762939453125, -0.00153350830078125, 0.004791259765625, 0.0159912109375, 0.00750732421875, -0.00811767578125, 0.0017852783203125, -0.00093841552734375, 0.0133056640625, 0.0011749267578125, -0.00457763671875, -0.0177001953125, -0.01300048828125, -0.00885009765625, 0.0216064453125, 0.0024566650390625, 0.0269775390625, 0.0152587890625, -0.0185546875, -0.0023040771484375, 0.0189208984375] /programs/dev/projects/testproject1 test_summ TCGA-02-2483 TCGA-02-2483.e73f6ba1-564c-4fea-b088-f2357ff49ee7 summ \ No newline at end of file