Skip to main content

DingoDB

DingoDB is a distributed multi-mode vector database, which combines the characteristics of data lakes and vector databases, and can store data of any type and size (Key-Value, PDF, audio, video, etc.). It has real-time low-latency processing capabilities to achieve rapid insight and response, and can efficiently conduct instant analysis and process multi-modal data.

In the walkthrough, we’ll demo the SelfQueryRetriever with a DingoDB vector store.

Creating a DingoDB index

First we’ll want to create a DingoDB vector store and seed it with some data. We’ve created a small demo set of documents that contain summaries of movies.

To use DingoDB, you should have a DingoDB instance up and running.

Note: The self-query retriever requires you to have lark package installed.

%pip install --upgrade --quiet  dingodb
# or install latest:
%pip install --upgrade --quiet git+https://git@github.com/dingodb/pydingo.git

We want to use OpenAIEmbeddings so we have to get the OpenAI API Key.

import os

OPENAI_API_KEY = ""

os.environ["OPENAI_API_KEY"] = OPENAI_API_KEY
from langchain.schema import Document
from langchain_community.vectorstores import Dingo
from langchain_openai import OpenAIEmbeddings

embeddings = OpenAIEmbeddings()
# create new index
from dingodb import DingoDB

index_name = "langchain_demo"

dingo_client = DingoDB(user="", password="", host=["172.30.14.221:13000"])
# First, check if our index already exists. If it doesn't, we create it
if (
index_name not in dingo_client.get_index()
and index_name.upper() not in dingo_client.get_index()
):
# we create a new index, modify to your own
dingo_client.create_index(
index_name=index_name, dimension=1536, metric_type="cosine", auto_id=False
)
docs = [
Document(
page_content="A bunch of scientists bring back dinosaurs and mayhem breaks loose",
metadata={"year": 1993, "rating": 7.7, "genre": '"action", "science fiction"'},
),
Document(
page_content="Leo DiCaprio gets lost in a dream within a dream within a dream within a ...",
metadata={"year": 2010, "director": "Christopher Nolan", "rating": 8.2},
),
Document(
page_content="A psychologist / detective gets lost in a series of dreams within dreams within dreams and Inception reused the idea",
metadata={"year": 2006, "director": "Satoshi Kon", "rating": 8.6},
),
Document(
page_content="A bunch of normal-sized women are supremely wholesome and some men pine after them",
metadata={"year": 2019, "director": "Greta Gerwig", "rating": 8.3},
),
Document(
page_content="Toys come alive and have a blast doing so",
metadata={"year": 1995, "genre": "animated"},
),
Document(
page_content="Three men walk into the Zone, three men walk out of the Zone",
metadata={
"year": 1979,
"director": "Andrei Tarkovsky",
"genre": '"science fiction", "thriller"',
"rating": 9.9,
},
),
]
vectorstore = Dingo.from_documents(
docs, embeddings, index_name=index_name, client=dingo_client
)
6 ['1183188982475', '1183189117163', '1183189148854', '1183189172623', '1183189196391', '1183189220159'] [{'year': 1993, 'rating': 7.7, 'genre': '"action", "science fiction"', 'text': 'A bunch of scientists bring back dinosaurs and mayhem breaks loose'}, {'year': 2010, 'director': 'Christopher Nolan', 'rating': 8.2, 'text': 'Leo DiCaprio gets lost in a dream within a dream within a dream within a ...'}, {'year': 2006, 'director': 'Satoshi Kon', 'rating': 8.6, 'text': 'A psychologist / detective gets lost in a series of dreams within dreams within dreams and Inception reused the idea'}, {'year': 2019, 'director': 'Greta Gerwig', 'rating': 8.3, 'text': 'A bunch of normal-sized women are supremely wholesome and some men pine after them'}, {'year': 1995, 'genre': 'animated', 'text': 'Toys come alive and have a blast doing so'}, {'year': 1979, 'director': 'Andrei Tarkovsky', 'genre': '"science fiction", "thriller"', 'rating': 9.9, 'text': 'Three men walk into the Zone, three men walk out of the Zone'}]
http://172.30.14.221:13000/vector/api/DINGO/langchain_demo
{'Content-Type': 'application/json'}
[{"scalarData": {"year": {"fieldType": "INT64", "fields": [{"data": 1993}]}, "rating": {"fieldType": "DOUBLE", "fields": [{"data": 7.7}]}, "genre": {"fieldType": "STRING", "fields": [{"data": "\"action\", \"science fiction\""}]}, "text": {"fieldType": "STRING", "fields": [{"data": "A bunch of scientists bring back dinosaurs and mayhem breaks loose"}]}}, "vector": {"binaryValues": [], "dimension": 1536, "floatValues": [-0.007757571357219309, -0.03807907697317788, -0.0027554660227859054, -0.017140785888443894, -0.022030721330712176, 0.015749235309143635, -0.006944749304555366, -0.021081345962962263, 0.0034593696633478397, -0.0036934622580528566, 0.017634981055713615, 0.024787814374098226, 0.024813824351957916, -0.005627978342924319, 0.024917866126041886, -0.006853713450723851, 0.025568123023114953, 0.005406890737149146, 0.0024254602377393754, -0.00822575701229065, -0.0035178928120240937, 0.0019458954501850754, 0.001066422247179052, -0.0016776641774625873, 0.005000479710817174, 0.015059962513958428, -0.00023185742044036335, -0.012966133219220508, 0.010787770565115993, 0.011769659336513125, 0.017140785888443894, 0.009753861837999487, -0.007393427010570635, -0.028377234159575156, -0.03459369523649448, -0.018636378241828126, 0.006525333289293551, 0.002155603457815983, 0.022472896542262522, -0.0079851609917981, 0.003192764130656908, 0.017179800855233424, -0.002327921656612285, -0.004438006954681857, -0.007562494194965129, -0.01217281958127394, 0.015515142714438619, -0.0033390718859322172, -0.027024698547064428, -0.0020840750873792327, 0.02294108359431778, 0.01607436375768017, -0.01862337325289828, -0.007126821477879704, -0.009539276726689236, -0.014175612090857735, 0.00022779331774403985, 0.009474250850717406, 0.01391550951829303, -0.009292179143054375, -0.006125425223087806, -0.021575541130231985, -0.008921532301940779, 0.010189534555084912, -0.00718534485938661, -0.015307060097593288, 0.012745045613445334, 0.004906192609753197, 0.0013582252951675345, -0.009370210007956048, 0.022641965123640934, -0.004746879167056086, 0.010891812339199964, -0.021354454455779423, 0.005059003092324081, -0.011756654347583282, -0.002166982823129596, 0.005019987659873245, 0.0072243602918374466, 0.020834249310650015, 0.02266797510150062, -0.013486339295672526, 0.00394056007451837, 0.020834249310650015, 0.027232782095232368, 0.009370210007956048, -0.011015360665356088, 0.0011387633130085916, -0.017348869436611836, -0.004896438402394509, -0.00444450944914678, 0.014877890806295396, -0.01798612134475506, 0.023318231998573687, -0.005666993775375155, 0.015437111849536946, -0.016204415509623826, 0.022407871597613305, 0.0025327527933945012, -0.06112420047893441, 0.014825869919253411, -0.003553656997242469, -0.02287605678702334, -0.007686042986782559, -0.015424106860607103, -0.021042330996172733, 0.028611327685602785, -0.019858862102395194, 0.009961944454844817, -0.009025573144702138, 0.002787978727941167, 0.018948501701434813, -0.02646547843514549, -0.06148834389426047, -0.0009501887034269956, -0.02186165461197899, 0.020886269266369387, 0.004451012409273006, 0.0015476127747649088, -0.015216024243761773, 0.023526313684096405, 0.002605906787447482, 0.0029359123396633592, -0.009441738378392798, 0.0218356446341193, 0.024722787566803787, 0.009844897691831002, -0.01381146774420906, 0.02988583150188923, -0.011210438293271575, -0.00035601593752920645, -0.0019020030304702216, 0.022511913371697275, -0.012517455513205239, -0.046428380448979435, 0.018220213008137465, 0.0033715848239181316, -0.018181198041347935, -0.0012745046311937293, 0.007250370735358439, 0.01593130701680667, 0.025334029497087324, -0.02496988608176126, -0.008810988033391887, -0.022199789912090585, 0.03240883101924765, 0.00453229452140714, 0.005341864861177317, -0.003882036925842116, -0.013551365171644356, 0.029963863298113513, -0.0020791982165305413, 0.004701361240140328, 0.007933141036078725, -0.0058230555051784995, 0.0056539883207840065, 0.007529981256979214, 0.02493087111497173, -0.019156585249602752, -0.02447569091449154, 0.015385090962494961, -0.007959151013938412, 0.017491926177485337, -0.017205812695738332, 0.02061316077355223, 0.02580221468649736, 0.002854630227529226, -0.01793409952639046, 0.0025652657313804156, -0.027180762139512996, -0.006317251138109527, 0.020899274255299232, -0.02252491836062712, 0.023253207053924467, -0.02007995063949298, 0.014136597124068204, 0.0017231822207936715, 0.0167376275063283, -0.0311083153624563, -0.023864448984208003, 0.002490486113711204, -0.012699528152190881, 0.016230425487483515, 0.016269440454273046, -0.0035601594917073908, 0.013018154106262492, 0.013382298452911168, -0.016750632495258145, 0.023526313684096405, -0.01688068238455658, 0.02803910072210878, -0.0028692610729059527, -0.00788112014903674, 0.007302391156739119, -0.6650312797531334, -0.012471938051950786, 0.002965174030416813, -0.00808920276588207, -0.007738063408163239, 0.04008186762011645, 0.008752465583207589, -0.013824473664461514, -0.009357205019026203, 0.004174652669223387, -0.011034869080073464, -0.0034398619471224215, 0.0005962047954180772, -0.025620142978834325, -0.013102687465629087, -0.026530503379794707, 0.0014313791728051892, -0.020600155784622386, -4.086334840412183e-06, 0.03160251052972602, -0.050824122586623215, 0.04169450859915971, 0.0075754991838949725, -0.014838874908183254, 0.006144932706482572, 0.011990746942288298, -0.0006693587312633951, -0.0016695359429661086, 0.01161359760670978, -0.008817490527856808, -0.03867731391453157, 0.01848031651202478, -0.022134763104796146, -0.0004905379797945082, 0.043463209445361105, 0.012478440546415708, 0.0077965867896701456, 0.046896567501034686, 0.005202059367536277, 0.027414853802895402, -0.016646590721174172, -0.010891812339199964, 0.014240637966829563, 0.02402051071401135, -0.012179322075738862, 0.00871995217956037, 0.007139826932470852, -0.0035471542699468945, 0.020001918843268695, 0.00896054726873031, 0.018506326489884466, 0.025099937833704917, 0.008843501437039106, 0.008752465583207589, 0.014864884886042942, 0.03292903802702228, 0.031186347158680582, -0.0037162212215107356, -0.0003147652435022218, -0.012719035635585647, -0.02816915247405244, 0.030744171947130236, -0.0027717222589482096, 0.010852796441087822, -0.02036606412123998, 0.03615431253452793, -0.005205311080430043, 0.017687002874078213, 0.0011818429209153301, -0.034749758828943045, 0.031056295406736927, 0.024215587410604224, -0.008394823731023838, 0.004434755707449396, 0.013018154106262492, 0.0411482916135254, 0.027102730343288712, 0.005101269772007378, 0.004964715525598799, 0.011561577650990406, 0.015164003356719788, -0.008492362079320276, -0.014617787302408081, 0.019858862102395194, 0.038001043314308376, -0.012732040624515491, -0.020001918843268695, 0.013902504529363187, 0.008258269484615258, -0.010443134633184694, 0.012816573983882085, 0.029339616378900132, -0.014630792291337924, -0.0001245649375448165, 0.014773849032211427, 0.018610368263968436, 0.014565766415366097, 0.011353495034145076, -0.00353089803378459, -0.027310812028811433, -0.007276380713218127, -0.008654926303588542, 0.012387404692584193, -0.009006065661307372, -0.023058128494686372, -0.0056182241355656306, -0.006366020312257746, -0.001768700264124756, 0.03152448059614696, -0.008349305338446774, 0.005575957455882334, 0.007386924516105713, -0.008141223652924055, -0.004490027841723842, -0.022915071753812872, -0.029027492919293442, 0.009220650772617625, 0.00819324360864343, 0.011041371574538387, -0.026166359964468644, 0.009506764254364626, -0.005585711663241022, 0.017374879414471522, -0.0103586012738181, 0.01974181533938138, 0.009461245861787563, -0.012881599859853914, -0.02461874765536504, -0.013128697443488775, -0.018688398197547498, 0.0009144245182086203, 0.0022190034773409287, 0.006375774053955128, -0.008102207754811913, 0.0010891812106369311, 0.017765032807657274, 0.018922491723575127, -0.003020445931860606, 0.018337259771151276, -0.010365103768283023, -0.00460057164461143, -0.006222963571384244, 0.015385090962494961, -0.00659361041249784, 8.204420323977813e-05, -0.023136160290910653, -0.0159703219835962, -0.004138888484005012, -0.01862337325289828, -0.002451470681260368, -0.001337904650718675, 0.002547383638771228, -0.006437548682694496, -0.018675393208617656, 0.007510473307923144, 0.020027928821128384, -0.008284279462474946, -0.015020946615846287, 0.001768700264124756, -0.01949471868706913, 0.023383256943222904, 0.012992144128402806, -0.009253163244942233, -0.024189577432744535, -0.018428296556305405, -0.014500741470716878, -0.013694421912517856, 0.028481275933659126, -0.013265251689897353, -0.02322719521341956, -0.0037812470974825643, -0.022863051798093496, -0.028403246000080064, 0.033943438339421414, 0.006535087496652239, -0.004041350135708574, -0.03129038707011933, 0.014422710605815205, -0.015684210364494418, -0.01667260069903386, -0.003140743476445576, 0.006840708461794007, -0.01046264211657946, 0.00699026769713243, 0.003745482912264189, -0.002394573156200344, 0.026634545153878676, 0.011984244447823377, 0.0033195641697067995, 0.02762293548841812, 0.015567163601480603, 0.015528147703368463, 0.019767827179886288, -0.009812385219506394, -0.001175340310035082, -0.015528147703368463, 0.004935453834845345, 0.007555991700500207, 0.004379484038836256, 0.034255561799028104, 0.025360039474947013, 0.005553198725255107, 0.014513746459646721, 0.0031569999454385328, 0.022329839801389022, -0.0102155445329446, 0.0013964279158102555, -0.027909048970165124, 0.01663358573224433, 0.003771493122954529, 0.01792109453746062, -0.00024262730786513224, -0.0008656552276450751, -0.0159703219835962, -0.011847690201414797, 0.022446886564402836, -0.03264292454527528, -0.0018971260432062039, -0.010235052016339365, 0.004672099549386874, -0.00805668936223485, -0.011138909922834825, 0.020665180729271607, 0.0037584881340246854, -0.02762293548841812, 0.015333071006775587, 0.005283341945331715, 0.011516059258413341, 0.008004669406515475, 0.007608012121880886, 0.005904337617312633, 0.023565330513531157, -0.004385986533301178, 0.011242951696918795, 0.03090023367693358, 0.007029283129583266, -0.0019491466974175364, 0.005933599308066087, 0.008186741114178508, 0.011164919900694511, 0.006645631299539826, 0.02534703448601717, 0.029417646312479194, -0.030926243654793267, 0.010013964410564192, -0.003100102420378509, 0.01119093080987681, -0.012088286221907347, -0.013785457766349372, -0.009708343445422424, -0.012699528152190881, -0.00030399534152553717, -0.01959875859850788, 0.00794614602500857, 0.0029521688086563166, -0.02451470588128107, 0.03170655416645521, 0.008687439707235761, 0.02448869590342138, 0.008459849606995666, -0.006808195523808092, -0.0040673601135682615, 0.03623234619339743, 0.01524203422162146, 0.015580168590410448, 0.0023490549964539334, 0.011236448271131261, 0.020249017358226165, 0.01524203422162146, -0.00033244413315938065, -0.026634545153878676, -0.0023604345945981995, 0.002423834614123145, -0.01893549671250497, 0.011353495034145076, -0.00823225950675557, 0.014838874908183254, 0.013499344284602371, 0.004320960657329349, 0.02032704729180523, 0.030744171947130236, -0.025021906037480633, 0.01168512597714653, 0.038131096928897254, -0.008863008920433872, -0.023292222020713998, -0.005172798142444129, -0.018389279726870652, -0.0020564392530726624, 0.013733436879307387, 0.011620100101174702, 0.0178560695928114, -0.01255647141131738, 0.008706947190630527, -0.005910840111777555, -0.002301911445921945, 0.016308457283707795, -0.011320982561820467, 0.0003139524316941066, -0.006964257253611437, -0.007842105182247209, 0.009805882725041471, -0.01195823446996369, -0.01998891385433885, 0.00355690824447493, 0.008557387955292104, 0.014617787302408081, -0.012582481389177069, -0.0004352660783507148, -0.018220213008137465, 0.010794273990903526, -0.004548550757569444, -0.008095705260346992, -0.011184428315411887, -0.013824473664461514, -0.010742253103861541, -0.009740856849069644, 0.001207040436212881, 0.013512349273532214, -0.00013147392522529068, -0.014838874908183254, -0.02337025195429306, -0.016997729147570393, -0.013135199937953696, 0.11933524618467942, 0.03378737847226329, -0.004802151301330532, 0.0258672414937918, 0.010137513668042927, -0.0011314480067355543, -0.02434563916254788, -0.0108462939466229, 0.012426419659373723, -0.044659679602778043, 0.0040868680626243315, 0.020040933810058226, 0.00395681677634198, 0.03238282104138797, 0.004834664239316447, -0.00019030190743341973, 0.0015199768240430121, 0.000601894536282547, 0.0018662388452518465, -0.005897835122847711, -0.030770181924989922, 0.004438006954681857, 0.007347909083654877, 0.02243388157547299, 0.027050710387569336, -0.03644042601627493, -0.009916426062267754, 0.029755781612590793, -0.020418084076959355, -0.011138909922834825, -0.02011896560628251, 0.011620100101174702, 0.0077965867896701456, 0.004958213031133877, 0.023162170268770342, -0.011652613504821921, -0.010618703846382804, 0.007399929505035557, 0.022160773082655835, -0.0032772974900235024, -0.002908276505356789, 0.006970759748076359, 0.011529064247343186, -0.02047010403267873, 0.0035276465537214764, -0.0002790010873876781, -0.01011150369018324, 0.023513308695166563, -0.01945570185763438, -0.02252491836062712, 0.04083616815391871, -0.0052508290073458004, -0.013473334306742683, -0.01803814130047443, 0.01617840553176414, 0.004145391444131239, 0.01175015185311836, 0.013486339295672526, -0.013304267588009495, 0.012042767829330283, -0.022225799889950274, -0.01729684761824724, 0.010534170487016211, -0.015294055108663445, -0.03058811021732689, -0.026868636817261083, -0.017478919325910273, 0.0015573666328776178, -0.02022300738036648, 0.00987090766969069, -0.00563122959015678, -0.04783293787985476, -0.017543946133204712, -0.014032555349984233, 0.009604302602661064, -0.007159334415865618, 0.008043684373305006, 0.003986078001434128, 0.015606178568270134, 0.01779104278551696, 0.012647507265148896, -0.0013614765423999955, -0.015333071006775587, -0.034307581754747477, -0.0006604177431664644, 0.010696734711284477, -0.010547175475946054, 0.002708322239423264, -0.0017833309930861563, 0.011307976641568013, 0.014474730561534581, -0.009929431051197597, 0.014448720583674893, -0.004158396433061083, -0.014968926660126912, 0.003433359219826847, 0.004028344681117425, 0.009233655761547468, -0.005523937034501654, 0.0035666619861723127, 0.03162852050758571, -0.028299204225996095, -0.024189577432744535, 0.027388843825035713, -0.009168629885575638, -0.015567163601480603, -0.009168629885575638, 0.012114296199767033, 0.0006344074160607981, 0.003960068023574441, 0.012088286221907347, -0.017595966088924084, 0.005657239568016467, -0.01760897107785393, 0.007803089284135067, -0.016958714180780862, 0.005510932045571811, 0.007484463330063456, 0.0024677269174226725, 0.016893689236131645, 0.011841187706949875, -0.02034005228073507, 0.010091995275465863, 0.029807801568310168, 0.006180696891700947, 0.011314479136032934, 0.02039207409909967, -0.035347995770296736, -0.01827223482650206, 0.002731081202881143, -0.022772015012939368, 0.015177008345649631, -0.007334904094725033, 0.008212751092038196, -0.024605742666435195, 0.007373919527175869, -0.004545299510336984, 0.013850483642321202, -0.0017508181715155684, -0.02832521420385578, -0.037792963491430874, -0.0006031137539947198, -0.011711136886328829, -0.015124988389930257, -0.02227781984566965, -0.022550928338486806, -0.00014773036511441626, 0.002324670409379824, 0.0028562558511454565, 0.006951252264681593, -0.025542113045255263, -0.018857466778925906, -0.021770619689470083, -0.0032935539590164594, 0.0219787013749928, -0.04481574319522661, -0.009493758334112172, -0.004158396433061083, 0.015476126816326478, 0.035165922199988486, 0.05124028595766865, -0.02785702901444575, 0.02391646893992738, 0.0021832392921225536, 0.0007132511509782489, 0.0031732564144314897, 0.0017768284986212344, 0.004519289066815991, -0.050902152520202276, -0.010378108757212866, 0.02642646346835596, -0.013824473664461514, 0.016204415509623826, -0.015281050119733602, -0.0010509785899942101, 0.009357205019026203, 0.021081345962962263, -0.009987954432704504, 0.014058566259166532, -0.006232717778742933, -0.008869511414898792, -0.0018629875980193855, -0.011529064247343186, 0.007842105182247209, -0.016659595710104017, -0.007172339404795462, 0.04083616815391871, 0.012575978894712146, -0.009337696604308828, 0.008667931292518385, 0.03662249958658318, -0.010618703846382804, 0.007777078840614075, -0.013642401025475872, -0.0006904921293127067, -0.010683729722354634, -0.005891332628382789, -0.00913611741325103, -0.005732019185685678, 0.01997590886540901, 0.011490049280553655, 0.009142619907715952, 0.0068862263887097645, 0.018467311523094936, 0.00718534485938661, 0.006515579547596169, 0.01608736874661001, 0.013382298452911168, 0.010787770565115993, -0.0023523062436863946, -0.024787814374098226, -0.01949471868706913, -0.011698131897398984, -0.04965365868177552, 0.00620670733522194, 0.0057905425671925855, 0.0019995417280126385, 0.017322857596106928, -0.02082124432172017, -0.01974181533938138, 0.017673997885148368, 0.012289865412965143, 0.027596925510558434, -0.009194639863435326, 0.013668411934658169, 0.03932757081160464, -0.0005514996221027713, -0.017218817684668177, 0.03383939842798266, -0.006044143110953673, -0.007868115160106897, 0.017908089548530775, 0.0074584528865424635, 0.005982368482214305, -0.02391646893992738, -0.02444967907398663, -0.0035113903175591718, -0.03555607559317424, -0.03566011922990343, 0.013733436879307387, -0.0314464506625679, 0.009786374310324097, -0.02874137943754644, -0.019546738642788504, 0.016958714180780862, -0.014409704685562751, -0.009838395197366082, 0.0026335426217540528, 0.01837627473794081, -0.03227878112994922, -0.0036934622580528566, -0.010391113746142709, -0.01548913273657893, 0.027466873758614774, 0.004057606371870879, -0.011457535876906436, 0.022967093572177466, -0.008674434718305918, -0.0015752486090714792, -0.008147726147388977, 0.004919197598683041, 0.02845526595579944, 0.0012883225483470144, -0.005601967899403326, 0.00620670733522194, -0.02005393879898807, -0.0054946753437482, -0.003534149281017051, -0.010722745620466774, 0.03209670755964096, -0.03742882007610481, 0.009740856849069644, -0.028793399393265817, 0.02175761470054024, -0.004815156290260376, -0.02590625646058133, -0.014734834065421896, -0.02214776809372599, -0.017973116355825214, 0.012445927142768489, 0.02058715079569254, -0.004652592065992109, -0.016230425487483515, -0.009597800108196141, -0.021159377759186547, 0.0006766741539517584, -0.015528147703368463, -0.008869511414898792, 0.00427219148318113, -0.02053513083997317, -0.001411871456579771, 0.0102155445329446, -0.0037812470974825643, -0.010898314833664885, 0.029131532830732193, -0.0018906235487412821, -0.010781268070651072, 0.019169590238532597, -0.018753425004841937, 0.012062275312725048, -0.011945229481033845, 0.013343282554799026, -0.0062262148186167056, 0.0007144703686904218, 0.00920114328922286, 0.002765219764483288, 0.006795190534878249, -0.008453347112530743, -0.015853277083227604, 0.019026533497659096, -0.01548913273657893, 0.009116608998533653, -0.008823993953644341, -0.03805306699531819, 0.020001918843268695, 0.013720431890377544, -0.005000479710817174, -0.016724620654753237, -0.030041893231692575, 0.014669808189450066, 0.017452909348050584, 0.010332590364635803, 0.0012094788716372267, -0.009909923567802832, -0.007380422021640791, -0.0016874180355752964, 0.016581565776524955, -0.01029357539784627, -0.002436839835883641, 0.016061358768750325, -0.013538360182714513, 0.02876738941540613, 0.014396699696632908, -0.019962903876479164, -0.016334467261567485, -0.017660992896218523, -0.015632188546129824, 0.004636335364168499, 0.015033952536098742, -0.0022645216370873393, 0.0016614078248849565, 0.027128740321148398, 0.018740420015912095, -0.0019865365062521423, 0.017205812695738332, -0.009500260828577094, -0.003521144059256555, -0.014500741470716878, -0.019052543475518782, -0.028299204225996095, 0.00399258049589905, 0.013304267588009495, 0.012302871333217598, -0.025503096215820514, -0.009318189120914063, 0.007861612665641974, -0.0071203189834147815, -0.014045561270236687, -0.01760897107785393, 0.017179800855233424, 0.06299694123657454, 0.002181613668506323, 0.01617840553176414, 0.03261691456741559, 0.007725058419233395, 0.02689464865776599, 0.012146808672091643, 0.006931744315625522, 0.021120360929751798, 0.001162335204689912, 0.015619183557199979, 0.0380270570174585, -0.017530941144274868, -0.028195162451912125, 0.028585317707743096, -0.007373919527175869, -0.02249890838276743, 0.0035471542699468945, -0.013577375149504044, 0.026660555131738366, -0.019260625161041503, 0.002692065770430307, -0.009617307591590908, -0.0006681395135512222, 0.005855568443164414, -0.005270336490740566, -0.01582726710536792, -0.006031137656362524, -0.010235052016339365, -0.002394573156200344, 0.01590529703894698, 0.010313082881241038, 0.00399258049589905, 0.025203977745143668, 0.014318668831731236, -0.012816573983882085, 0.0022482651680943823, -0.01412359213513836, 0.03659648960872349, -0.02200471135285249, 0.004730622930893782, 0.013863488631251045, 0.028585317707743096, -0.024566725837000446, -0.013382298452911168, 0.023318231998573687, 0.02803910072210878, -0.002384819181672309, 0.00458756619002028, -0.006629374597716216, -0.0005775098910007744, -0.0165945707654548, 0.008908527313010934, -0.0457000936183273, -0.0024108293923626486, -0.0021702343031927097, 0.007438945403147698, -0.03365732485767441, 0.02229082483459949, 0.011464038371371357, -0.009344199098773749, -0.0033780873183830535, -0.019936893898619478, -0.020040933810058226, -0.0012184199179418205, -0.013206728308390446, -0.004346971100850342, -0.012569476400247224, 0.02245989155333268, 0.01077476557618615, -0.016347472250497326, -0.02863733766346247, 0.012621497287289209, 0.01646451901351114, -0.04099222802107683, 0.013447324328882996, 0.22119157863138422, -0.014526751448576566, -0.019130573409097844, 0.03261691456741559, 0.023383256943222904, 0.023903463950997534, 0.020183990550931726, -0.0014451972063738007, -0.025672164797198922, -0.00836881375316415, 0.005572706208649873, 0.010065985297606177, 0.00822575701229065, -0.004665597054921953, 0.006723662164441498, 0.005384131540860614, -0.015359080984635275, -0.01346032931781284, -0.007822596767529832, -0.021809634656259614, 0.020964299199948452, 0.015606178568270134, -0.012478440546415708, -0.007790084295205224, 0.020457099043748886, 0.0019735312844916457, -0.008758968077672511, -0.01387649362018089, -0.004389237780533638, 0.013369293463981323, -0.006323753632574448, -0.028481275933659126, 0.0074974683189933, -0.010631708835312649, 0.009077594031744123, 0.010319585375705959, 0.004925700093147962, -0.014721828145169442, 0.004746879167056086, -0.0007510473657169123, 0.004278693977646052, -0.007360914072584721, 0.015033952536098742, -0.003804006060940443, -0.01255647141131738, 0.0008867885674867236, -0.015632188546129824, 0.004457514903737928, -0.008446844618065823, 0.01988487208025488, -0.04564807366260793, -0.008453347112530743, -0.0007892499863596332, 0.017374879414471522, -0.017830059614951713, -0.007673037997852715, 0.013447324328882996, 0.010371606262747943, 0.00020869199287076358, 0.004906192609753197, -0.00699026769713243, 0.0351399122221288, -0.011067381552398073, 0.007289386167809275, -0.03019795496149592, -0.004759884621647235, -0.045830143507625744, 0.04166849862130003, 0.02573718974184814, -0.01541110187167726, -0.019715805361521694, -0.023201185235559873, -0.037688919854701686, -0.016971719169710707, 0.0019085056413504697, -0.021328444477919737, 0.003569913466235426, 0.0013679791532802436, 0.01478685402114127, 0.013258749195432433, -0.00979937929925394, 0.0008965424255994327, 0.006951252264681593, -0.003784498344715025, -0.011646111010356999, -0.024852839318747447, 0.025269004552438107, -0.0006140868880272648, -0.014864884886042942, -0.008479357090390431, -0.008219254517825727, -0.009857902680760847, -0.0011883455317955782, 0.0027896043515573976, 0.016542548947090202, 0.02260294829420618, 0.008850003931504027, -0.003134240981980654, -0.010371606262747943, -0.019403681901915003, -0.03566011922990343, -0.008251766990150336, 0.015190014265902085, -0.021250412681695453, -0.014240637966829563, -0.011216940787736496, -0.0020564392530726624, 0.01279706650048732, 0.033709344813393785, -0.017478919325910273, -0.0039015446420675335, -0.006486317856842715, 0.01091782231705965, 0.010378108757212866, -0.005972614740516922, 0.016724620654753237, 0.00303345092079045, 6.629577800668245e-05, 0.033995458295140786, -0.014305663842801393, -0.010020466905029113, -0.026686565109598052, -0.0020564392530726624, -0.012517455513205239, 0.008115212743741758, -0.01617840553176414, 0.0122768604240353, 0.01638648721728686, 0.010963340709636714, -0.025581128012044794, 0.014760844043281582, -0.019273630149971348, 0.0204310890658892, -0.013135199937953696, 0.005390634035325536, -0.011678623482681609, -0.005904337617312633, -0.018883476756785596, 9.123924595845007e-05, -0.003982826754201667, -0.00711381648894986, 0.02030103731394554, 0.0023555574909188554, -0.0008810988266222539, 0.0025798963439264896, -0.013408308430770855, 0.012367896277866816, -0.004366478584245107, -0.02577620470863767, -0.005764532123671593, 0.0028920200363638316, -0.013564370160574199, -0.01663358573224433, 0.00608315854340451, 0.0034593696633478397, -0.03266893452313497, -0.01848031651202478, -0.027388843825035713, -0.015580168590410448, 0.023617350469250533, -0.015671203512919354, 0.0015029075432419397, 0.010573186385128351, -0.030536090261607515, -0.00744544789761262, -0.01998891385433885, -0.16532144583417285, -0.005182551884141511, 0.023721392243334503, -0.005010233452514556, 0.029365626356759822, -0.0018857465614772644, 0.020938289222088763, 8.687033155812545e-05, 0.0017491925478993378, -0.021094350951892108, 0.001778454122237465, 0.010553677970410976, -0.05118826600194928, -0.013941519496152717, 0.012751548107910257, 0.028975471100928848, -0.00372272394880631, 0.026738586927962646, -0.0029294098451984377, -0.007471457875472307, 0.010052980308676332, -0.013050666578587103, 0.0087849780555322, -0.017153790877373738, 0.016750632495258145, 0.0059270968136011645, 0.010891812339199964, 0.01192572199763908, -0.001046914530953634, 0.0002928190627486265, -0.03155049057400665, -0.002181613668506323, 0.004421750718519553, 0.0020775725929143107, 0.019754820328311225, -0.0010038349230468953, 0.009578292624801376, -0.011945229481033845, -0.01667260069903386, 0.007861612665641974, 0.012855589881994227, 0.02378641718798372, 0.012400409681514036, -0.02200471135285249, 0.014877890806295396, 0.008381818742093993, 0.008667931292518385, 0.0021263417670625297, 0.010943833226241949, -0.03417753186544904, 0.01130147414710309, -0.03160251052972602, -0.0019719056608754155, -0.00248560901003186, 0.018246224848642374, 0.028013090744249094, -0.004216919348906684, -0.0021767367976576316, -0.0012980764064597235, -0.008063192788022382, -0.010631708835312649, -0.0030594613643114424, 0.0319406439671924, -0.01224434795171069, -0.035087892266409425, -0.03337121137592741, -0.009948938534592363, 0.0058230555051784995, -0.02772697726250209, 0.012966133219220508, -0.014383694707703065, 0.0032301539394915136, 0.010228549521874443, 0.005497926590980661, 0.010852796441087822, -0.007959151013938412, 0.023006108538966997, 0.011346992539680153, -0.006092912285101892, -0.01858435828610875, -0.012654009759613819, 0.030145935005776545, -0.009363707513491125, -0.013089682476699243, 0.01524203422162146, 0.0029619225503536993, 0.001185094168147791, -0.010547175475946054, -0.019858862102395194, -0.007842105182247209, 0.00010002788277306439, -0.022915071753812872, -0.013369293463981323, -0.0030708407296250557, -0.009448240872857719, 0.03784498344715025, -0.0075754991838949725, -0.006372522806722667, 0.020873264277439546, -0.01217281958127394, -0.014656803200520223, 0.021731604722680552, -0.004730622930893782, 0.007829099261994755, 0.012081783727442424, 0.0244106641071971, 0.013369293463981323, 0.024995896059620947, 0.01803814130047443, -0.004704612487372789, -0.001446822829990031, 0.004223422309032911, 0.020600155784622386, 0.01816819305241809, 0.0063465128288629795, 0.02036606412123998, -0.011086889035792838, 0.0066846467319906615, 0.030744171947130236, 0.029521688086563164, 0.05319106037417829, 0.011145412417299745, -0.009077594031744123, 0.020704197558706356, 0.007939643530543647, -0.03755886996540325, -0.10685030034983095, -0.0035178928120240937, -0.010098497769930785, -0.003241533304805127, -0.027362833847176027, 0.02845526595579944, -0.007718555924768473, 0.010560180464875899, -0.012894604848783757, 0.022798026853444276, -0.005732019185685678, -0.029807801568310168, -0.006008378925735298, -0.013642401025475872, 0.017869074581741244, -0.018818449949491157, -0.017973116355825214, -0.010052980308676332, -0.007302391156739119, 0.018805444960561312, -0.011665618493751764, 0.021094350951892108, 0.018922491723575127, -0.014253642955759408, -0.019468708709209442, 0.0018824953142448034, -0.023396263794797968, 0.025789209697567515, 0.0032984308298651508, 0.004597319931717663, 0.012419917164908801, 0.00844034119227829, 0.002397824403432805, -0.02353931867302625, -0.010306580386776116, 0.00972785092881719, -0.024995896059620947, -0.034645715192213856, 0.016763637484187986, -0.04075813822033965, -0.01803814130047443, 0.0029261585979659765, -0.0024644756701902117, -0.011099894956045292, -0.008043684373305006, -0.02312315530198081, -0.021159377759186547, 0.00864842380912362, 0.006775682585822178, -0.03386540840584235, -0.04400942270570498, -0.012153312097879175, -0.03149847061828727, 0.018675393208617656, 0.015281050119733602, 0.006840708461794007, 0.0002625414445465237, 0.005930348060833626, 0.009688835962027659, -0.006775682585822178, 0.0030757178333043994, 0.013161210847135995, -0.02549009122689067, 0.03071816196927055, -0.019052543475518782, -0.012855589881994227, -0.009539276726689236, -0.004408745263928404, 0.018259229837572215, -0.026621540164948835, 0.00659361041249784, 0.01214030617762672, -0.012549968916852458, 0.017257832651457708, -0.03880736380383001, 0.009045080628096903, -0.02231683481245918, -0.00048362896301020245, 0.0151379933788601, -0.015320065086523133, -0.006775682585822178, -0.006622872103251294, -0.0028481275002336516, -0.015814260253792855, 0.02032704729180523, 0.015294055108663445, -0.0018581106107553678, -0.017257832651457708, -0.007731560913698317, 0.01599633382410111, -0.00608315854340451, 0.0008567141813404813, -0.0030171944517974926, -0.0018467311290264283, -0.013642401025475872, 0.015515142714438619, -0.0025652657313804156, -0.008349305338446774, -0.0023197935385311326, 0.0014435715827575701, -0.011242951696918795, 0.0077120534303035514, -0.05987570664050765, 0.025607137989904483, 0.017257832651457708, -0.0177130128519379, 0.01851933147881431, -0.041928598399896905, 0.00990342107333791, -0.014357684729843377, 0.015788250275933165, -0.0009753861605168834, -0.010807278979833369, 0.0261533549755388, -0.001682541164726605, -0.012263855435105457, -0.004129134742307629, -0.003943811321750831, 0.012875097365388992, -0.01360338605868634, 0.01802513631154459, -0.00938321499688589, -0.006307497396412144, -0.014201623000040032, 0.030354016691299262, 0.009539276726689236, 0.014942915750944615, -0.002469352541038903, 0.01401955036105439, 0.03950964065662245, -0.0014890895096733281, 0.004668848302154414, 0.0029602969267374687, -0.027102730343288712, 0.008401326225488759, -0.003472374652277683, 0.008108710249276835, -0.029729769772085884, -0.025021906037480633, 0.01650353398030067, 0.0028432506293849602, 0.03784498344715025, -0.015567163601480603, -0.02816915247405244, 0.03019795496149592, -0.02192668141927343, -0.008934537290870622, -0.00033711783015987477, -0.023396263794797968, 0.0006079906830510743, 0.009038578133631982, -0.002604281163831252, 0.028091122540473374, 0.023734397232264347, -0.008206248597573273, -0.009220650772617625, -0.0108462939466229, -0.005374377799163231, 0.01708876593272452, 0.008902024818546012, -0.013161210847135995, -0.010501658014691601, 0.0023230447857635938, 0.008030679384375163, 0.03610229257880855, -0.010839791452157977, -0.027258792073092057, -0.018961506690364657, -0.005042746390500471, -0.0038300162716307833, 0.008271274473545101, -0.013265251689897353, 0.002666055559739967, 0.0076925454812474805, 0.01321323173417798, 0.01586628207215745, -0.006808195523808092, 0.0047078637346052495, -0.03272095447885434, 0.011860696121667251, -0.020105960617352665, 0.01777803779658712, 0.004886684660697126, 0.0016028845597933759, -0.03181059407789396, 0.020131970595212354, 0.03989979777509864, 0.016646590721174172, -0.009981451938239582, 0.014149602112998047, -0.012654009759613819, 0.012634502276219053, -0.03142044068470821, 0.010709739700214322, -0.013161210847135995, -0.001485025450632752, -0.0006563536259182251, 0.023448283750517343, 0.0016662846957336479, -0.010248057005269208, 0.021445491240933548, 0.020210000528791416, 0.001513474213162764, -0.0047631358688796956, 0.017700007863008054, -0.012998646622867727, -0.0299898732759732, 0.009227153267082545, -0.003813759802637826, -0.027388843825035713, 0.010930827305989495, 0.005455659911297365, -0.002446593577581024, 0.004353473595315263, -0.013096184971164165, 0.015359080984635275, -0.017491926177485337, 0.0016532795903884778, 0.002992809864723383, -0.007172339404795462, -0.01777803779658712, 0.024436674085056787, 0.019715805361521694, 0.014422710605815205, 0.011977741953358455, -0.005670245022607616, 0.027570915532698744, -0.001622392276018794, 0.033397221353787095, -0.011880203605062017, 0.0015923178898725515, -0.006122173975855345, -0.001165586451922373, 0.013824473664461514, -0.0439574027499856, -0.017830059614951713, -0.0025327527933945012, 0.007087806045428868, -0.0009054834719040265, 0.02032704729180523, -0.04107026167994634, 0.03261691456741559, -0.01862337325289828, 0.005013484699747018, 0.007133323972344625, -0.04447760975776023, -3.3198689741348424e-05, 0.026166359964468644, 0.018922491723575127, -0.02590625646058133, -0.005280090232437949, 0.016620580743314486, 0.011847690201414797, 0.011776162762300656, -0.007627519605275652, -0.014032555349984233, 0.0025652657313804156, 0.009272670728336999, -0.007751068862754388, -0.011060879057933152, -0.021263417670625298, 0.027648947328923028, 0.006541589991117161, 0.027388843825035713, 0.004099873051554175, -0.028377234159575156, -0.021419479400428643, 0.0027570916464021355, -0.005546696230790186, -0.006473312867912871, -0.01820720801920762, -0.008609408842334089, -0.01827223482650206, -0.01241341467044388, -0.008823993953644341, -0.002599404060151908, 0.024423669096126942, 0.006044143110953673, -0.02580221468649736, -0.0009119860827842746, -0.0011216941486228455, -0.030952253632652957, 0.02067818758084667, -0.009084096526209045, -0.022225799889950274, -0.0015549280810379458, 0.021003316029383202, -0.013733436879307387, -0.0024449679539647936, -0.0039503138162157525], "valueType": "FLOAT"}, "id": 1183188982475}, {"scalarData": {"year": {"fieldType": "INT64", "fields": [{"data": 2010}]}, "director": {"fieldType": "STRING", "fields": [{"data": "Christopher Nolan"}]}, "rating": {"fieldType": "DOUBLE", "fields": [{"data": 8.2}]}, "text": {"fieldType": "STRING", "fields": [{"data": "Leo DiCaprio gets lost in a dream within a dream within a dream within a ..."}]}}, "vector": {"binaryValues": [], "dimension": 1536, "floatValues": [-0.01005473382348566, -0.026191480465668635, 0.010915273958845747, -0.04096948065309451, -0.003924193048490665, 0.01692611418010849, -0.008307772100249721, -0.02144233358053517, -0.018051934081481317, -0.007466642588615198, 0.01692611418010849, 0.02836547777351203, 0.02014828889442245, -0.007906617968158025, 0.025402111996420614, -0.030047736796781077, 0.008003671086785853, 0.007647808565274227, 0.020355334926613473, 0.004745911936399623, -0.003904782191934472, -0.015489724299126616, -0.01591675988373407, -0.005363818343867635, 0.017767243691743012, -0.022529332234456866, 0.009588876991427072, -0.009873567381165377, 0.0184660298711534, -0.010585292424188628, 0.020730609468834427, -0.015399141077966475, -0.007958379941867036, -0.01701669833259114, 0.007084899080249067, -0.007757802875821188, 0.01193109908401036, -0.0156708907414469, 0.004745911936399623, -0.012668705579549371, 0.02146821503305093, -0.0043350524924451435, -0.02632088586560242, -0.008366003971426419, -0.033541658380607936, -0.00753781472038852, -0.005299116109562, -0.0439457862251213, -0.006819619779897583, 0.016175568820956616, 0.018582493613506796, -0.001590058327741984, -0.030565354671226164, -0.015929699678669442, -0.0022176705127340338, 0.0200577047419398, -0.0340851595702138, -0.02271049867677715, 0.020937655501025453, -0.0258162077860927, 0.006767857806188573, 0.005166476692216884, -0.004500043259773704, -0.00011686848201893474, -0.003597446462567387, -0.012817520671886209, 0.005215003251530798, 0.004839730106293607, -0.007751332512692248, -0.004959429263042096, 0.050623059413165965, 0.0038627257629188713, 0.014079214939337994, -0.022723438471712522, -0.008217188879089581, -0.01630497235824538, 0.0004104550462589203, -0.006408760335943104, -0.0015245473562528872, 0.0010085467233440929, 0.0299700924392338, -0.011517005156983293, -0.04037422028374716, 0.04190119431721168, 0.02885721419544136, 0.008948324545838398, -0.016279092768374637, 0.022891665119097432, -0.007647808565274227, -0.010255309958208999, -0.005166476692216884, -0.005674389254799191, 0.0005560351607580866, 0.013328668648863612, -0.008346593347700852, -0.01385922724956658, 0.012332253216102056, -0.00012162005307835061, -0.025777386538641568, -0.033541658380607936, -0.020355334926613473, -0.014739178008652234, -0.007518404096662955, -0.01451919031888082, -0.00443210561107297, -0.03667324894243924, -0.009996501020986454, 0.009931799252342072, 0.00792602859188359, -0.013768644028406439, 0.01184051586285022, 0.019811835599652626, 0.0413059302225743, -0.059526092814085545, 0.004069773192093659, -0.008754217377260235, 0.03581917777322433, 0.017430792259618206, -0.015062689645841669, -0.028701929205636835, 0.011057618222392391, 0.012364604566085501, 0.012267551447457675, -0.012959865866755361, 0.016719068147917467, 0.008618343011181277, -0.00939476982284891, -0.025479756353967892, 0.009556525641443627, 0.009000086519547408, 0.0500795582235601, 0.006573751103271665, 0.016059105078603225, 0.01833662447121962, -0.0401154094838796, 0.013729822780955308, 0.011555826404434423, 0.03129001857786228, -0.0011581706692797046, -0.02821019092106249, 0.01109644040116603, 0.004441810922935753, -0.03794141217603621, 0.01702963812752651, -0.022270523297234324, 0.01107055894865027, 0.01387216797582446, 0.0007177908629374905, 0.018013112834030186, -0.006020546464448034, 0.03183351976746814, -0.017353149764715945, 0.009530645120250376, -0.0010457504964283024, 0.007712511265241117, 0.05209827054159897, 0.004629447728384976, 0.028805453153054855, -0.026967907277336268, -0.012869282645595219, 0.006204947855502159, 0.008048963163027178, 0.00061103208320094, 0.011950509707735925, 0.014545070840074071, 0.02004476494700443, 0.005839380022127751, -0.006774328169317513, -0.010695286269074334, -0.002311488682628018, -0.011795224717931402, 0.02397866191037411, -0.027330240161976833, 0.024379816042465807, -0.026786740835015987, 0.016369675058212272, 0.0174954949595851, 0.008256010126540711, -0.01626615111079425, -0.02657969480282496, 0.005742326903499924, 0.01768960119684075, 0.0329981609162921, 0.03085004506096447, -0.005451166616293934, -0.013108680959092197, 0.0107146968927999, -0.030332425323874364, 0.01626615111079425, 0.017379031217231704, -0.0024764794499565783, 0.006538164804554376, -0.024146888557759025, -0.00023333258089422494, -0.6613090166037612, -0.008831860803485005, 0.004237998908156062, -0.01284340119307946, 0.02185642750756224, 0.012636354229565926, 0.0010651612365691811, 0.011174082896068293, -0.023034010313966586, 0.007350178380600552, -0.005218238200264641, -0.006405524921548007, -5.323404898724545e-06, -0.0034389258255371397, -0.008223658776557266, -0.0022014948377423113, 0.0067355069218663815, -0.025596220096321287, -0.024832733079589026, 0.004105359490810948, -0.018543672366055662, 0.009414180446574475, -0.010436476400529282, -0.00048203195407756983, -0.00027640001870063674, 0.0005883862779109047, 0.03750143679649338, -0.023124592603804218, -0.0010174432980234148, 0.014506249592622941, -0.019837717052168385, 0.015580307520286758, 0.0258679688284792, 0.018660136108409057, 0.04216000139178921, -0.017340209969780574, -0.013419251870023753, 0.03260994471649076, 0.008113664931671559, 0.032765229706295286, -0.00028812731904121315, -0.0042347639594222195, 0.01946244437259245, -0.010190608189564618, -0.022516390576876478, 0.012189908021232904, 0.01457095229258983, -0.011698170667981067, 0.013141031377753135, -0.004817084068172944, 0.016097926326054356, 0.020821191758672062, -0.010125905489597726, 0.004933548276187591, 0.016279092768374637, -0.004060067880230877, 0.008605402284923397, 0.01200874251023513, 0.023046950108901957, -0.01317338272773658, -0.010242370163273628, -0.009155371509351931, 0.017353149764715945, -0.007570166070371965, 0.022464629534489976, 0.054556958239180664, -0.0026705863857041136, 0.015929699678669442, 0.021597618570339695, -0.011711111394238947, 0.011077028846117956, 0.004011540855255709, -0.005315291784553722, 0.0032868755516358324, -0.010455887024254847, 0.009058318390724103, 0.030617115713612666, 0.017922530544192555, 0.0019556261611163926, 0.014389785850269548, -0.012565181632131349, -0.018983647745598492, -0.026864383329918248, 0.019048348582920364, 0.006114365100003272, -0.002557357359253937, -0.03814846007087225, -0.007958379941867036, 0.01768960119684075, 0.001640202594253446, 0.018000173039094815, 0.026864383329918248, -0.0200577047419398, 0.002293695533269374, -0.002235463662092678, -0.008197778255364016, -0.01132289798840513, 0.0196047895674616, 0.010449417126787161, -0.042418812191656774, -0.004415930401742502, -0.016201450273472376, 0.00817836763163845, 0.002675439041635505, 0.023422222788477894, -0.002918072536696954, 0.005777913202217212, -0.008974205067031648, 0.05911199702441346, -0.01133583871466301, -0.008346593347700852, -0.01833662447121962, -0.014286261902851528, 0.002583238346108442, -0.01706845937497764, -0.02186936916514263, 0.010869981882604423, 0.0064669922071198, -0.004131240012004198, -0.029297189574984187, -0.011193493519793858, 0.009252425559302266, 0.010986446556280324, -0.0032092328239029435, 0.01005473382348566, 0.03457689412949811, -0.017909588886612166, -0.023422222788477894, -0.031859399357338884, 0.018970706088018104, -0.019760074557266125, -0.01674494773778821, 0.006858441027348714, -0.014208619407949265, -0.014118036186789125, -0.0009842833272718226, 0.005684094566661973, -0.006625513076980675, 0.01674494773778821, -0.00882538997469481, -0.004305936556856796, 0.005221473614659738, 0.012914573790514035, 0.011394070585839706, -0.018427206761057253, -0.033101683001065106, -0.015761473031284532, -0.018931884840566973, -0.018724838808375947, 0.00722077391198928, -0.010747047311460837, -0.005583806033639049, 0.008217188879089581, 0.018129576576383578, 0.03426632414988907, -0.01107055894865027, -0.021183524643312628, -0.014169798160498135, -0.020885894458638952, -0.024340994795014677, 0.006353763413500251, 0.015619128767737888, -0.013037508361657622, 0.0001817729515521357, -0.00109832109090546, -0.031885278947209626, 0.02382337692056959, -0.01385922724956658, -0.004396519312355683, -0.020989418406056972, 0.015192094114452942, -0.02632088586560242, 0.0002167526246222572, 0.0036847945021630584, -0.00546410687689056, 0.012442247060987763, 0.016188508615891987, -0.020562382821449517, -0.006683744948157371, 0.011439361730758522, 0.007084899080249067, 0.01446742834517181, -0.0005176181654833726, -0.010533530450479616, 0.02267167742932602, 0.011517005156983293, 0.03028066428148786, 0.019695371857299235, -0.02214111789730054, 0.0040827134526902845, -0.026864383329918248, 0.031160615040573516, 0.007414880614906188, -0.014325083150302658, -0.007783683397014439, 0.025220945554100333, 0.017844888049290294, -0.01383334579705082, -0.006085248698753669, 0.016939055837688878, 0.005072658056661646, -0.024703327679655242, -0.0107146968927999, -0.02529858991164761, 0.0024457460400013086, 0.003374223591231504, -0.0033871640846587564, -0.017275507269813684, 0.0012988981569513082, -0.018841302550729338, 0.012332253216102056, -0.006175831919913811, -0.016343793605696513, 0.02080825196373669, 0.015968520926120573, 0.045446876943425044, -0.004160356413253801, 0.02707143122475429, 0.009330068054204528, -0.014790939982361246, 0.02080825196373669, -0.0072790057831659755, -0.015903818226153683, -0.012972805661690732, -0.002397219247856768, 0.005444696253164994, 0.0009114932554703251, -0.009032437869530853, 0.0120216823051705, -0.045239829048589, 0.0014266851511956589, 0.0030248312000181908, 0.00939476982284891, 0.03100533005076899, -0.019811835599652626, -0.023486925488444783, -0.010656464090300695, -0.004619742416522193, 0.01964361081491273, 0.005295881160828157, -0.0022888428773379828, 0.006424936010934827, 0.03028066428148786, -0.025402111996420614, 0.022399926834523087, -0.004464456961056416, 0.021778785012659976, 0.0006939318936646072, -0.03279111302145606, -0.011245255493502868, -0.025065660564295808, -0.0015310176029665137, -0.013432191664959124, 0.02185642750756224, 0.01194403981026824, -0.008721866958599297, -0.002646323106047157, 0.02397866191037411, 0.03178175686243662, 0.018543672366055662, 0.0016207919705278808, -0.015295617130548453, -0.0015221210282871916, 0.03830374506067677, 0.021532915870372805, -0.0049109027037281825, -0.012066974381411827, -0.008139546384187318, -0.009155371509351931, -0.003846550087927149, -0.011950509707735925, -0.00782250464446557, -0.0013870550501457538, -0.038769603755380376, 0.01585205718376718, -0.0006389349712217539, 0.0019281278163102793, -0.005745561852233767, -0.00535087808327101, -0.008689515608615852, 0.009834745202391738, -0.04091771774806299, 0.028727808795507577, 0.008463057090054245, -0.0048526703668902325, -0.020911774048509694, -0.00457121585720828, 0.020510619916417998, -0.000446850082159669, 0.004005070957788024, -0.012778699424435078, 0.026217361918184395, 0.014700356761201103, -0.0029261603741928153, -0.0045582751309504, -0.012998687114206492, 0.03279111302145606, -0.0316264718726321, -0.004322111766187264, -0.013471013843732763, 0.00887715194840382, 0.0021384100778035968, 0.015023868398390539, 0.001803575887215085, 0.024884494121975527, 0.00659963209012617, -0.019993002041972907, 0.009892978004890942, 0.0036395028915829877, 0.008346593347700852, -0.00393713330908729, -0.003649208203445771, -0.014622714266298843, 0.001615130460997715, 0.003869195893217184, -0.009873567381165377, -0.0041765316225842695, 0.0004731353793982478, -0.007091369443378007, 0.0006114365100003272, -0.0051050094066450915, -0.020575322616384888, -0.014661535513749973, 0.004545334870353775, 0.11791342406921787, 0.0392095791349232, 0.0034809822545527405, 0.017081401032558032, 0.008068373786752743, -0.013082799506576438, -0.01700375667501075, -0.027796096994035423, 0.0022791375654752, -0.018051934081481317, 0.016732007942852838, -0.0193718602201098, -0.002683526879131366, 0.029478356017304468, 0.02324105634615761, 0.014622714266298843, 0.0038530204510560887, 0.013128091582817764, -0.021882308960078, -0.026178540670733264, -0.012267551447457675, -0.011542885678176544, 0.0008872299176057116, 0.006492873193974306, -0.030953567145737472, -0.03167823477766362, 0.013315727922605733, 0.011102910298633716, -0.008547170413746702, -0.01130995726214725, -0.010533530450479616, 0.002219287987100955, 0.0003645568827912541, 0.028701929205636835, -0.011478182978209654, -0.005017661134218793, 0.007123720327700199, 0.011724052120496826, 0.04218588098165995, -0.0038659609444833412, -0.007486053212340764, 0.006499343557103246, 0.006065838075028104, -0.019785956009781884, -0.009640638965136084, -0.011077028846117956, -0.025091542016811567, 0.03600034607818963, 0.020795310306156303, -0.007596047057226471, 0.030047736796781077, 0.024742148927106373, -0.0233057590461245, -0.021778785012659976, 0.01947538416752782, -0.010507648997963857, 0.0010174432980234148, -0.012901633064256155, 0.015476783572868736, 0.009161842338142125, -0.01630497235824538, -0.020510619916417998, 0.008702455403551223, -0.02898661959537514, 0.012610472777050167, -0.03491334742426794, -0.003136442752101446, -0.016486138800565663, -0.046430353512573734, -0.025971492775897224, 0.006347293050371311, -0.024082185857792135, -0.024392757700046196, -0.013005157011674177, 0.010151786942113486, 0.0015067542068942434, -0.004163591361987643, -0.013483953638668134, 0.0018828362057302086, -0.004529159195362052, -0.003129972388972506, -0.03612975147812341, -0.014389785850269548, -0.01674494773778821, 0.0019879772782692103, 0.011523475054450978, 0.005444696253164994, -0.0027563169509328637, -0.007097839340845693, 0.0008524524724871979, 0.017171983322395664, 0.011355249338388575, -0.003461571630827175, 0.0034842174361172104, -0.007990731291850482, -0.011989330955187056, 0.0015908671813407583, -0.01569677219396266, 0.014195678681691385, -0.01445448761891393, 0.03312756259093585, -0.017391971012167075, -0.013936869744468842, 0.016550841500532553, 0.013910989223275591, -0.012125206252588522, 0.005347643134537167, 0.003160706031758403, -0.014777999256103364, -0.012875752543062904, 0.01674494773778821, -0.02382337692056959, 0.011303487364679565, 0.005444696253164994, 0.002960128965712555, 0.02186936916514263, -0.0027272007825138883, 0.012513419658422339, -0.015399141077966475, -0.003097621271819688, -0.0007343707901056298, -0.024237472710241674, 0.017327268312200186, 0.026760861245145245, 0.009828275304924052, 0.026631455845211465, -0.007460172225486258, 0.00039913214361390263, 0.0010150169700577191, 0.0070525477302656224, -0.0057293861772420435, 0.027226716214558813, -0.007583106330968591, -0.019734193104750365, -0.01691317438517312, -0.00614348103559162, -0.0059817252169969025, -0.019773014352201496, -0.020471798668966867, 0.01194403981026824, -0.0008653929077067937, -0.011277605912163804, -0.0053282320451503475, 0.0048526703668902325, 0.005493223278140162, -0.028727808795507577, 0.00034170889320535357, -0.005308821421424782, -0.009375359199123344, 0.021183524643312628, -0.011672290146787816, -0.014933285177230396, -0.024742148927106373, -0.014169798160498135, 0.018686017560924816, -0.02400454336288987, -0.002482949813085518, -0.013024567635399742, 0.014868582477263506, 0.009666519486329335, 0.029374832069886447, 0.007589576694097531, 0.0302547828289721, -0.004153886050124861, -0.009977090397260888, 0.0159555811311852, 0.0024991252552466134, 0.00725959515944041, -0.041875311002050906, 0.018595433408442167, -0.005625862695485277, 0.008029552539301613, 0.02403042481540563, -0.007110780067103572, 0.02630794420802203, 0.015476783572868736, 0.009155371509351931, 0.003969484659070735, -0.006001135840722468, 0.0016709362370393428, -0.02320223509870648, 0.0024926551249483007, -0.004111829388278633, -0.007608987317823096, 0.001609469067882863, -0.013315727922605733, 0.04182354809701939, -0.0005050820988555071, -0.024108067310307894, 0.011206434246051738, 0.016667305242885944, -0.022412868492103475, 0.011264666117228433, 0.006379644400354756, 0.03126413898799154, -0.00026184202180263433, 0.0017388736529094489, -0.018686017560924816, 0.0013207352250578829, 0.0032448191226202316, -0.011834045965382532, 0.020924715706090082, -0.006166126608051028, 0.0071560716776836435, -0.009899447902358628, 0.03085004506096447, -0.0005665492680119868, -0.0006769475396970808, 0.0018812186149479737, 0.004826789845696982, -0.010442947229319476, -0.008909503298387267, -0.029090141680148143, -0.03139354438792532, -0.00887715194840382, 0.016123805915925098, -0.001594911100088689, 0.016732007942852838, -0.013141031377753135, -0.029116023132663902, 0.002474861975589657, 0.0010586909898555549, 0.04428223579460108, 0.014868582477263506, 0.009343008780462408, 0.017327268312200186, -0.008566581037472267, -0.017197864774911423, 0.02903838063776164, -8.552831544927098e-05, -0.004111829388278633, 0.005467342291285657, 0.034318087054920586, 0.004166826310721486, -0.019876538299619516, -0.015567366794028878, 0.007466642588615198, -0.0151015108932928, -0.019656550609848104, 0.004192707297575992, 0.004027716530247432, 0.013885107770759832, 0.0018116637247109462, -0.00783544537072345, -0.014260381381658277, 0.014752118734910113, -0.02076943071628556, -0.009731222186296224, -0.01233872404489225, -0.024884494121975527, -0.023422222788477894, 0.009465942420283487, -0.016434377758179162, -0.00817836763163845, -0.002808078691811247, 0.0013547038165776222, 0.01840132717118651, -0.0007105118208327466, 0.003875666256346124, 0.017935470339127926, -0.0177801853493234, 0.00484296505502745, -0.008670104984890287, -0.005596746759896929, -0.011167612067278098, -0.00874774747979255, 0.023499865283380154, -0.013975690991919972, -0.003998600594659084, 0.025570338643805528, -0.015942639473604813, -0.004490337947910921, -0.0009697253594776486, 0.0010279573470696583, 0.007563695707243025, 0.008262480024008397, -0.01442860709772068, -0.010248840060741313, -0.005260294862110868, 0.005286175848965374, 0.009207133483060941, 0.0020057704276278546, -0.004684444650827829, 0.0057293861772420435, 0.00027033419878639756, 0.005583806033639049, -0.018375445718670752, -0.0073307677568749865, 0.00517294658968457, -0.0517359376569584, -0.013923929018210962, -0.012131676150056208, 0.004370638791162432, 0.007285476146294915, -2.7195173863693285e-05, -0.006321412063516806, -0.000476370502755061, 0.0016135129866307937, -0.029323071027499946, 0.020627085521416406, -0.0007473112835328825, 0.0006073925912523965, -0.006172596971179968, 0.006612572350722795, 0.0026414704501157658, -0.028003144888871463, 0.022762259719163652, -0.021584678775404324, -0.020640025316351777, 0.0037624372298959473, 0.001130672208058278, 0.008514819063763255, 0.0031024739277510796, 0.0027272007825138883, 0.013496894364926015, -0.009084198911917354, -0.0028986619129713885, -0.021067060900959233, -0.008689515608615852, 0.011394070585839706, -0.0352756803089085, -0.0018213690365737288, 0.02575150508612581, 0.006424936010934827, 0.017391971012167075, -0.008974205067031648, 0.014946224972165767, 0.0025088305671093964, -0.027226716214558813, 0.012513419658422339, 0.00010372583339964532, 0.006897262274799845, -0.01379452454959969, -0.041409456032637335, -0.0037203808008803465, -0.0020413567263451423, -0.009931799252342072, 0.02010946764697132, -0.007971319736802407, 0.02309871115128846, 0.020976476748476584, 0.032092326842045674, 0.01699081688007538, 0.012060503552621633, 0.019190693777789515, -0.005215003251530798, -0.0010797192043633553, -0.023538686530831285, -0.03501686950904094, -0.028676047753121076, -0.013031037532867428, 0.016369675058212272, -0.0036880296837275284, -0.00219664218181092, 0.002172378902153963, -0.009562996470233821, -0.03545684488858376, -0.007466642588615198, -0.006289061179194615, 0.009562996470233821, 0.015243856088161952, 0.005777913202217212, 0.00725959515944041, 0.008327182723975287, -0.0013991866899742322, 0.01850485111860453, -0.026113837970766374, -0.0023260466504221923, 0.046896208481987306, -0.014765058529845485, 0.007117249964571259, 0.006479932933377681, -0.029892449944331535, -0.008831860803485005, -0.007447231499228379, 0.018673075903344428, -0.0042574095318816275, 0.020678846563802908, -0.04329876295074243, -0.026036195475864114, 0.016434377758179162, -0.002327664357619741, -0.015269736609355202, 0.032972277601131326, -0.0009341390607603605, -0.017171983322395664, 0.005554690098050701, 0.012112265526330643, 0.0038206693339032705, -0.033231088400998886, -0.004354463116170709, 0.008922444024645147, 0.012519889555890024, 0.0024505986959327, -0.025971492775897224, 0.0007606560873442087, -0.008954794443306083, -0.013483953638668134, 0.023409282993542523, 0.006806679053639703, -0.0003263421009162336, 0.020885894458638952, 0.006247004517348387, -0.007408410251777248, -0.01328984740141248, 0.0012519889555890026, -0.005955844230142397, 0.004098889127682008, -0.009912388628616507, -0.013121620754027568, 0.018453088213573013, -0.020251810979195452, 0.00885127142721057, -0.021041179448443473, 0.016084984668473967, -0.0015625598665205574, -0.002146497915299458, -0.032946398011260584, 0.03711322432198207, 0.011348778509598381, -0.026812622287531746, 0.02278814117167941, -0.01705551958004227, -0.0030264489072157393, -0.02136469108563291, 0.008741277582324864, 0.01850485111860453, -0.02999597389174956, 0.007440761601760693, 0.006968434872234421, -0.0036136219047284827, -0.0265538133503092, 0.0011209668961954954, 0.006806679053639703, 0.010734107516525464, 0.025182124306649203, 0.21470802992038004, 0.01499798694587478, -0.0219340700024645, 0.03356753797047868, -0.025984432570832595, 0.01825898197631736, 0.02758904909919938, 0.029297189574984187, -0.008611873113713591, -0.0028258718411698913, 0.007518404096662955, -0.014842701956070256, 0.025596220096321287, -0.0006983801810042683, 0.0032270259732615873, -0.03139354438792532, -0.042703502581395075, -0.000476370502755061, -0.0019313628814594357, -0.03615563106799415, 0.000960019989407209, -0.012765758698177199, -0.00883833070095269, -0.020898834253574323, 0.025531517396354397, -0.0012495626276233067, 0.006981375132831046, -0.009355948575397779, 0.041331813537735074, 0.0034098098899487915, 0.006360233310967936, -0.033075803411194364, -0.022348165792136585, 0.0022370811364595994, 0.014596832813783083, 0.0013005157477335432, -0.0017049049449743958, -0.0005604834480977477, 0.004804143807576319, 0.0075572258097753395, 0.0132769066751546, 0.017974291586579056, -0.007071958353991188, -0.008715396129809103, 0.013166912830268895, 0.019669490404783475, 0.0034421610071016097, 0.0048526703668902325, 0.013458073117474883, -0.0017728423608445018, -0.03975307659923903, -0.034318087054920586, 0.02642440795037542, 0.03434396664479133, -0.012694586100742622, 0.006981375132831046, 0.017417852464682835, 0.012474598410971208, -0.014402726576527428, 0.0007351795854967473, 0.0028630756142541004, 0.029763046407042772, 0.010876452711394617, 0.006657863961302866, -0.011581706925627674, 0.006583456415134447, -0.021351751290697538, 0.020458858874031496, 0.026010314023348354, -0.029633641007108993, -0.001247136299657611, -0.03954602870440299, -0.01941068146756093, -0.004344757804307926, -0.012151086773781773, -0.0151015108932928, 0.021701142517757715, -0.011394070585839706, -0.007414880614906188, 0.017379031217231704, -0.00971181156257066, -0.017120222280009163, 0.018090755328932447, -0.003568330294148412, -0.023435164446058282, -0.04016717238891112, 0.017353149764715945, 0.005664683942936408, -0.007505463836066329, -0.004622977365256036, 0.0031526181942625416, -0.017922530544192555, 0.008553640311214387, 0.0058070291378055595, 0.012028153133960696, 0.0009964149671003008, -0.003746261554904225, -0.001989594985466759, -0.004794438495713536, -0.0262691229605709, -0.02642440795037542, -0.01642143796324379, 0.015386200351708595, -0.019345980630239058, 0.0020623850572682565, -0.010611172945381879, 0.010941154480039, 0.01223520009747423, 0.02885721419544136, -0.0006789694990710461, -0.018440148418637642, -0.004496807845378607, 0.011950509707735925, -0.010164727668371365, -0.0033677534609331907, 0.020575322616384888, 0.01444154782397856, -0.009828275304924052, 0.024043364610341, 0.004079478503956442, -0.0073566487437294915, 0.0017485789647722315, 0.026023253818283725, 0.00012162005307835061, -0.011219374040987109, -0.011199963417261543, -0.008805979350969245, 0.009977090397260888, 0.013626298833537286, -0.013095740232834318, 0.005771442839088272, -0.021830547917691494, 0.023008128861450827, 0.0007008065089699639, -0.02584208737596344, -0.010242370163273628, 0.013471013843732763, 0.0035586249822856294, -0.002250021629886852, -0.014040393691886862, 0.008268950852798591, 0.012998687114206492, 0.008171896802848256, 0.019915359547070646, -0.0011403776363363744, -0.02327987759360874, 0.005654978631073625, 0.012396955916068948, -0.023551628188411673, -0.01499798694587478, -0.031134733588057757, -0.027149073719656552, -0.0024619214821624043, -0.004985310249896601, 0.015567366794028878, -0.012869282645595219, -0.010468827750512727, -0.025324469501518353, -0.015864996978702552, 0.0027158779962841843, -0.01583911738883181, 0.0003694095387226454, -0.0051050094066450915, -0.03284287592648758, -0.014273321176593648, 0.007608987317823096, -0.16439554421211316, -0.0060593681775604185, 0.024056306267921393, -0.015321498583064213, 0.0265538133503092, -0.0020898835184896833, 0.019850656847103756, -0.015192094114452942, -0.03838138755557903, -0.006741976819334067, 0.004325347180582361, -0.009051848493256418, -0.0366473693525685, 0.005745561852233767, 0.011976391160251685, -0.002525006242101119, -0.011102910298633716, 0.017262567474878313, 0.014299202629109407, 0.007447231499228379, 0.04557628234335882, -0.027174955172172312, -0.024780970174557503, -0.0030490947125057745, 0.01757313745448736, 0.014855641751005627, 0.011788753889141208, 0.003160706031758403, 0.0036427380731474577, -0.0074537018623573184, -0.013393370417507993, 0.006292296127928458, 0.045653924838261084, 0.005056482847331178, 0.014325083150302658, 0.018711897150795558, 0.022516390576876478, -0.014907403724714637, -0.00749899347293739, 0.012015212407702815, 0.011439361730758522, 0.020575322616384888, 0.022296402887105066, 0.0035100984229717155, -0.02123528568569913, 0.027640812004230898, 0.028080787383773724, -0.0015407229148292963, -0.0010942771721575294, 0.0019070994853871653, 0.012306372694908805, -0.03680265434237302, -0.010268250684466879, 0.009621228341410517, 0.0007942204266875313, 0.027304358709461074, 0.020730609468834427, 0.014635654061234214, 0.006741976819334067, -0.032247611831850195, -0.02008358619445556, -0.003746261554904225, 0.02201171436001178, -0.013613358107279407, -0.015450903051675485, 0.018608373203377538, 0.01104467842745702, -0.022425808287038846, 0.0020041529532609332, 0.023344580293575633, -0.014816820503554496, 0.0003338232982130142, -0.01692611418010849, -0.007686630278386612, -0.02582914758102807, 0.029219547080081926, -0.009187722859335376, 0.022309344544685455, 0.014803880708619125, 0.013069859711641067, -0.01950126562004358, 0.05367700748009501, -0.0005766590066741567, 0.007641338667806541, -0.0017404911272763703, 0.0047523818338673085, -0.01313456148028545, 0.011510534328193099, -0.0017550492114858578, -0.01759901890700312, 0.012998687114206492, -0.007460172225486258, -0.015192094114452942, -0.0012867665171228298, 0.0018278392832873553, 0.009401240651639104, 0.01829780322376849, 0.005092069146048465, 0.007143130951425764, 0.007000786222217866, 0.015334439309322094, 0.0012576504651191681, -0.00046343003843163675, 0.010320012658175889, 0.018129576576383578, 0.0327134705265538, -0.012196378850023098, 0.010759988037718717, 0.0002917668109897567, 0.003196292330475691, -0.02001888349448867, -0.024664506432204112, 0.007388999628051682, 0.0237586742206027, -0.026786740835015987, 0.007071958353991188, -0.014066274213080114, -0.011458772354484087, 0.013108680959092197, 0.016563781295467924, 0.05569571607284385, -0.005234413875256363, -0.02584208737596344, 0.0159555811311852, -0.008780098829775995, -0.006890792377332159, -0.09860626654907496, -0.016576722953048312, -0.0031671763948873427, 0.03248054304184701, 0.010261780786999193, 0.026760861245145245, -9.654792709857668e-05, 0.008346593347700852, -0.0007101074522410163, 0.015399141077966475, -0.0012608855302683245, -0.03589682026812659, -3.118851743382924e-05, -0.0021772315580853544, 0.009964150602325517, 0.0037236157496141893, 0.005596746759896929, -0.018155458028899337, -0.027459645561910617, 0.02146821503305093, -0.005645273319210843, -0.0034195152018115745, 0.016084984668473967, -0.012765758698177199, -0.01189227783655923, 0.004493572896644764, -0.012649294955823806, -0.013678060807246298, 0.02258109327684337, -0.0023486924557122274, 0.010190608189564618, 0.0015560897362222447, 0.006337587738508528, -0.026916146234949766, -0.006094954010616452, 0.004218588284430497, -0.002036504070413751, 0.001577117950730045, 0.022917544708968174, -0.027407882656879098, -0.003097621271819688, 0.019708313514879623, -0.015554426999093507, -0.0228528438716463, -0.017857827844225665, -0.013354549170056863, -0.0032739350582085794, -0.01514033214074393, 0.0051308903934995966, -0.01822016072886623, -0.02403042481540563, 0.003396869396521539, -0.041642383517344124, 0.013781584754664318, 0.033153445906096625, -0.010785869490234476, 0.02999597389174956, 0.015114451619550679, 0.01757313745448736, 0.02955599851220673, -0.011445832559548716, -0.0145321310451387, -0.003497157929544463, 0.009252425559302266, 0.015528545546577748, -0.011329367885872816, -0.018090755328932447, -0.01237754529234338, 0.0071301906908291385, 0.004804143807576319, -0.0014380080538406767, 0.008624812908648962, -0.008366003971426419, 0.02207641519733365, -0.02126116713821489, -0.012151086773781773, -0.005955844230142397, -0.018608373203377538, 0.01011943559213004, -0.02657969480282496, 0.004079478503956442, -0.009892978004890942, 0.0138462865233087, -0.012481068308438894, -0.01646025921069492, 0.021791726670240364, 0.00845658719258656, -0.007350178380600552, -0.0064508165321280776, -0.0091165502619008, -0.002371338261002263, -0.008702455403551223, 0.003940368257821133, -0.032454659726686236, 0.004095653713286911, -0.025415053654001003, 0.004804143807576319, -0.0044353410254680675, 0.023512806940960543, 0.008715396129809103, -0.013561597064892905, -0.007149601314554704, -0.05274529381597784, 0.04974310865408031, -0.001457418677566242, 0.004914137652462026, 0.013018097737932057, -0.02386219816802072, 0.003704205125888624, 0.0037171456193158766, -0.03587094067825585, 0.027977263436355704, 0.008488938542570004, 0.0177801853493234, 0.02219288080233206, 0.01199580178397725, -0.005955844230142397, -0.024897435779555915, 0.00018773769387035648, -0.021804666465175735, -0.012772228595644884, 0.0017113751916880222, -0.02625618316563553, 0.015606188041480009, -0.011542885678176544, -0.003668618827171336, 0.008469527918844439, -0.013509835091183895, -0.0018763659590165824, 0.0025120657486738663, -0.00580055877467662, -0.027614930551715138, 0.015515605751642377, -0.01701669833259114, 0.007376059367455057, 0.026864383329918248, 0.0014865347295699037, -0.029763046407042772, 0.010785869490234476, 0.0028177840036740297, 0.02212817810236517, 0.043014072561004126, -0.008488938542570004, -0.019229515025240645, 0.03447337204472511, -0.03638855855270094, -2.996587242413418e-06, -0.0022451689739554606, -0.023836318578149978, 9.295896667208527e-05, 0.0026624985482082524, 0.022283463092169695, 0.012474598410971208, 0.0163567352632769, -0.0026705863857041136, 0.013509835091183895, -0.003875666256346124, -0.019216575230305274, 0.032816992611326805, 0.003872431074781654, 0.0026317649054223556, -0.016822592095335487, 0.014558011566331951, 0.01759901890700312, 0.001167876097557801, -0.0017550492114858578, 0.009582407093959387, -0.00012081127951510441, 0.005037072223605612, -0.006761387443059633, 0.0019410681933222185, -0.013613358107279407, -0.019268336272691776, 0.004322111766187264, 0.014881523203521386, 0.03566389278341981, 0.02095059715860584, 0.003053947368437166, 0.014881523203521386, -0.0022710497279793385, -0.016563781295467924, 0.004995015561759384, 0.0016563782692451687, -0.020523561573998386, -0.014803880708619125, 0.014273321176593648, 0.015321498583064213, 0.008068373786752743, 0.0075572258097753395, 0.028546642353187296, 0.003574800657277352, -0.007020196845943431, 0.007039607469668997, 0.023422222788477894, -0.00323026092199543, -0.002908367224834171, 0.0219340700024645, 0.018660136108409057, -0.001667701055474873, -0.018414266966121882, -0.012481068308438894, 0.03532744321394002, -0.023512806940960543, 0.017146101869879905, -0.0066028670388600125, -0.03069475820851493, -0.02841723881589853, -0.0011088352563670169, -0.01581323593631605, -0.039778956189109774, 0.00592025793142511, -0.0011694935719247224, 0.03501686950904094, -0.02471626933723563, -0.02821019092106249, 0.011950509707735925, -0.016615544200499443, 0.007363118641197177, -0.0002654815137511778, -0.008573050934939952, -0.008941854648370712, 0.01512739141448605, 0.016330853810761138, 0.0214293937855998, 0.03988248199917281, -0.013011626909141863, 0.01184051586285022, 0.02758904909919938, 0.019229515025240645, -0.012597532982114796, -0.008094254307945994, -0.004668268975836107, -0.00042016038722553136, 0.01824604218138199, -0.012455187787245643, 0.007440761601760693, -0.016615544200499443, -0.015192094114452942, -0.006845500766752089, 0.01696493542755962, -0.028779571700539096, 0.03895076833505564, 0.0019459208492536098, -0.02030357388422697, 0.018634254655893297, -0.0120216823051705, 0.02914190458517966, 0.0013603653261077878, 0.009918858526084193, -0.019125992940467643, -0.006544635167683316, 0.029426594974917966, -0.0037009701771547813, 0.021830547917691494, -0.03530155989877924, -0.0023195765201238796, 0.005434990941302211, -0.005519103799333413, 0.004574450805942123, -0.0009721516874433442, 0.0015229297654706523, 0.023616330888378563, 0.01833662447121962, 0.029918331396847294, -0.001708140010123552, -0.007382529264922742, -0.006195242543639376, 0.02699378872985203, 0.01578735448380029, -0.016214390068407747, -0.03975307659923903, -0.0074537018623573184, -0.03436984623466207, -0.012034623031428382, -0.01943656292007669, 0.023292819251189128, 0.003047477005308226, -0.0011080264027682426, 0.008631283737439157, 0.013050449087915502, 0.020394156174064607, -0.035534487383486024, 0.019216575230305274, -0.019229515025240645, -0.015256795883097323, 0.005114714718507874, 0.005968784956400277, -0.008463057090054245, -0.011264666117228433, -0.03519803781400624], "valueType": "FLOAT"}, "id": 1183189117163}, {"scalarData": {"year": {"fieldType": "INT64", "fields": [{"data": 2006}]}, "director": {"fieldType": "STRING", "fields": [{"data": "Satoshi Kon"}]}, "rating": {"fieldType": "DOUBLE", "fields": [{"data": 8.6}]}, "text": {"fieldType": "STRING", "fields": [{"data": "A psychologist / detective gets lost in a series of dreams within dreams within dreams and Inception reused the idea"}]}}, "vector": {"binaryValues": [], "dimension": 1536, "floatValues": [0.002257353494896757, -0.008246555444769694, 0.0068533318787758, -0.009069220566755964, -0.001696747046927313, 0.024281893375833866, -0.013972039453140314, -0.027254103029072493, -0.005579527608627457, -0.006458585240549302, 0.015272381758508787, 0.021840435113772667, 0.038479501006071434, -0.016055240293326122, 0.006339166410365011, -0.025834340962197208, 0.018947836772226872, 0.014662017192993487, -0.003927563088680514, 0.004133229369177081, -0.012067968255214723, -0.00652492939727711, 0.015909283427921698, -0.01730250652825433, 0.01030321824973537, -0.010999829799901687, 0.025754727787859335, -0.009394306143098084, 0.010017939260562188, 0.007291202009327807, 0.0019040718964174813, -0.012048064961630254, -0.007695900294346539, -0.027917541802383015, -0.024388043654069352, -0.017329045494796982, -0.006395558454639325, -0.0052046842639854275, 0.022079272774141248, -0.0033337844459318503, 0.011391259067310354, 0.009978132673393252, -0.02219869253564806, -0.026657006084183477, -0.024467654965762184, 0.009779100668871086, -0.008080695285780802, -0.033623123448491686, -0.009142198999458175, 0.014914124336633394, 0.03858565314695196, 0.013036590242605416, -0.03449886464091822, -0.0009769149487740113, 0.005795145535916259, -0.012306805915583304, -0.013879158658176153, 0.005035507199839966, 0.019000912842667136, -0.027731778349809656, 0.0037417998689377842, -0.026457975010983834, 0.010216971265084354, 0.0026769790172732105, 0.008180211753703145, -0.001945536819749389, 0.001882510150254727, -0.01227363407005003, -0.006534881044069345, -0.022848861825687256, 0.04070865871166166, 0.019186676295240495, 0.0008122989784647798, -0.03349043606635859, 0.00959997195793339, -0.0078086853142176876, 0.0058382690282417675, -0.013481094649131824, 8.282629524107311e-05, 0.0035659882959872893, 0.017700570537298663, -0.007603018568059859, -0.03558690638981572, 0.048484173577329856, 0.012406322383505647, 0.011596925813468181, -0.024852451354180228, 0.024135936510429445, 0.008365974274953985, -0.008644619453814024, -0.01419760949288261, 0.022875400792229907, 0.00377828908528889, 0.010031207812510995, -0.009865347653522103, 0.00406025093647487, -0.018921299668329263, 0.0012248754953069444, -0.005476694701209804, -0.011072808232603898, -0.025237245879953234, 0.0007040753434681499, -0.04734305762063713, -0.02051355570450658, 0.002831228844060951, -0.025290320087748456, 0.012658429527145553, -0.0015234233856748767, 0.0031015805958764116, -0.003320515661152415, 0.005718850198057477, 0.033437361858563365, 0.016997325176819202, -0.02356537853208308, -0.005768607966357388, -0.022371186504950093, 0.015909283427921698, 0.007457062168316697, -0.005881392986228536, -0.04081481085254219, 0.00699265446820582, 0.016904442519210004, 0.002255695042318471, -0.010906948073615008, 0.014038384075529382, 0.017289238907628048, -0.010568593945324082, -0.002121348276284569, 0.009891885688742235, 0.00553972148711978, 0.017740377124467598, 0.004995700612671028, 0.01718308862939256, 0.013932233797293896, -0.038691801562542406, 0.014184340009611284, 0.006561418613628215, 0.01795267768093857, -0.014887586301413264, -0.022941744483296455, 0.016838098828143456, 0.006707375013371378, -0.03678109655430367, 0.018642655420791743, -0.010734454104312974, 0.03354351027415381, 0.0017315775778695029, 0.007835222883776558, 0.03147357891723933, -0.012028161668045784, 0.014184340009611284, -0.023300001905171848, -0.009732660271389007, 0.00023220389371118207, 0.011643366210950261, 0.028740206924369287, 0.0119220113898103, 0.016373691128032577, -0.032216632727532765, -0.018310935102813963, 0.0011734589251828024, 0.012804385461227455, 0.007569846722526585, 0.010920217556886333, 0.03500307892819803, 0.018934569151600588, 0.025263782983850843, 0.006262870606844969, 0.02530358957101978, -0.0002249475233969496, -0.005370544422974318, 0.013972039453140314, -0.05004989064696452, 0.023950173057856086, -0.005430253838066464, -0.012432859487403258, 0.024228817305393602, 0.015736789458619664, -0.020287985664764283, -0.01974396479031553, 0.0078086853142176876, 0.003629015081897266, 0.014914124336633394, 0.03043861323878209, -0.015033543166817685, -0.007549943428942117, 0.014025114592258055, -0.015670445767553116, 0.010887044780030539, 0.015909283427921698, -0.021230070548257367, 0.0024630197753933245, -0.015060081202037817, -0.005476694701209804, -0.6661995857901347, -0.03234932010966586, 0.005771925337175219, -0.034817313612979635, 0.024786105800468642, 0.018695729628586965, 0.011742882678872604, 0.003313881152347382, -0.023034625278260615, 0.004627492009664662, 0.0037053106525866786, -0.0075764809985009885, 0.016187927675459218, -0.009838810549624492, -0.01685136831141478, 0.00011382137083364693, -0.013182546176687317, -0.0363830306826143, 0.006879869448334672, 0.024388043654069352, -0.038771414736880276, 0.019677621099248983, -0.0255822338185573, -0.0070125572961290275, 0.002922451884938715, 0.018815149390093776, 0.027917541802383015, -0.005718850198057477, -0.0007559065849445209, 0.009135564257822512, -0.012121043394332464, 0.031287817327311014, 0.0055629416858608205, 0.012804385461227455, 0.03940831640629319, -0.00997149886308011, 0.017541346051267954, 0.01868246200796068, 0.01091358281525067, 0.03627688226702386, 0.004567782128911256, -0.0262854810416818, 0.03402118559489097, 0.018934569151600588, -0.009593338147620247, 0.026391631319917286, -0.005808414553526325, -0.015643908663655507, 0.021031037612412682, -0.008312899135836242, 0.006471854258159368, 0.015405069140641884, 0.018735536215755903, 0.011305012082659337, 0.023512302461642817, 0.025051482427379874, 0.009460649834164631, 0.009672950390635602, 0.018151710616783254, 0.0015748399557990185, -0.007868394729309832, 0.0057155328272396454, -0.007762244451074348, -0.004879598687643309, -0.005848220675034002, 0.04344203070453171, -0.008346070981369516, -0.0051880983412187906, 0.008624716160229555, -0.014489522292368934, 0.0320043321710618, 0.016599261167774874, -0.01511315634115556, 0.011364721963412743, 0.004110008704774781, 0.01046907840872426, 0.04434430713821081, 0.020314522768661896, 0.01030321824973537, 0.017780183711636536, -0.021203531581714716, -0.0320043321710618, -0.03441925146658035, 0.015192768584170914, 0.011444334206428096, 0.005042141475814368, -0.03524191472592157, -0.009447381282215825, -0.020128759316088537, -0.017010592797445486, -0.011311646824295, 0.02460034421054032, -0.02460034421054032, -0.007118708040025773, -0.005436888114040866, 0.01929282657347598, -0.011941914683394768, 0.0070258263137390935, 0.010117454797162011, -0.034658090989593965, -0.00153752151315877, -0.004935991197578883, -0.01199498982251251, 0.004972480413929989, 0.017090205971783363, -0.0025194122853288985, 0.012757945063745375, -0.004000541521382725, 0.04540581364585575, -0.008757403542362652, 0.004853061118084438, -0.021455638725354623, 0.00308665312568806, 0.010920217556886333, -0.02030125514803561, -0.03192471899672392, 0.018456891968218384, -0.006601224735135892, -0.017620957362960786, -0.008419049414071728, -0.0047071047183412755, 0.007901566574843106, 0.0019040718964174813, -0.0054700604252354, 0.019836847447924733, 0.010409368527970855, -0.015710252354722055, -0.008949801736571674, -0.00934123100398034, 0.00741725558114776, -0.018775342802924838, -0.01584293973685515, 0.007742341157489879, -0.004955894491163352, -0.009825541997675687, 0.009022780169273884, -0.003675455945040606, -0.02077893046877277, 0.015126424893104366, -0.030146699507973246, -0.011278474978761726, 0.009195274138575918, 0.014608942053875744, 0.00030808480760028, -0.021468908208625948, -0.02720102695863223, -0.02288866841285619, -0.02054009280840419, -0.014078189731375798, 0.02805022918451611, 0.0031281181654352827, -0.018854955977262715, -0.0024746301075944744, 0.027864467594587793, 0.013945502349242703, -0.025874147549366143, 0.012393052900234321, -0.012187387085399013, -0.0316858794737103, -0.0075234058593832455, 0.028554443471795928, 0.023631722223149628, -0.021256607652154976, -0.0014106385986343585, -0.0011543850907181068, -0.015391800588693078, 0.025250513500579518, 0.012917170481098604, 0.0005494109617434953, -0.004441728557091303, 0.011888839544277026, -0.011238668391592788, 0.0049691630431121575, 0.012539009765638742, 0.0025758045624338427, 0.039620616962764164, -0.0011096029129836827, -0.010316486801684175, -0.004435094281116899, -0.017209625733290174, 0.006966116898646948, 0.007224858318261258, -0.006342483315521582, -0.009745928823337812, 0.02219869253564806, 0.0031928034039235454, 0.021561789003590105, 0.011391259067310354, -0.001729919008875902, 0.013879158658176153, 0.010900314263301864, 0.019253019986307043, 0.005347323758572019, -0.015060081202037817, 0.002443116714639486, 0.01204143021999459, 0.007185051731092322, -0.007072267176882433, -0.005347323758572019, 0.021508714795794883, 0.0250647519106512, -0.018629385937520417, -0.01785979688597441, -0.017541346051267954, 0.025595503301828627, -0.01959800792491111, 0.004050299289682636, -0.028527906367898315, 0.01199498982251251, -0.014967199475751137, -0.007058998159272367, -0.004189621413451395, 0.006402192730613728, -0.006952847881036882, -8.313728420333043e-05, 0.05034180437777337, -0.014064921179426993, 0.04500774777416638, 0.0008840333971103042, 0.003765020300509454, -0.013773007448618148, -0.005294248619454276, 0.020261448560866674, 0.007569846722526585, -0.007131976591974579, 0.0143170283230669, 0.013693395205602794, -0.014449716636522517, 0.021986391979177088, -0.028342142915324955, 0.012048064961630254, 0.026550855805947994, -0.005373861328130889, 0.023154045039767427, -0.0023535523591706378, 0.009925057534275509, 0.013169277624738511, -0.006743864229722484, 0.042141688399163234, 0.004136546274333653, -0.0075234058593832455, 0.02396344067848237, 0.028607519542236188, -0.02820945553319186, 0.005834952123085197, 0.0032309513056835667, 0.02548935302359314, -0.01945205105950669, -0.02713468326756568, 0.005227904928387727, -0.02595376072370402, -0.0021860337476034613, -0.02262329364859, 0.012054698771943395, -0.002073248960562943, 0.001305317546688016, 0.014343566358287032, 0.008671156557711635, 0.02844829319356044, 0.027147952750837007, -0.019425513955609076, -0.0316858794737103, -0.0019604641735224255, 0.018125171650240603, 0.017262699941085397, 0.0016934297925247964, 0.008047523440247529, -0.015166231480273303, -0.012034795478358928, -0.02552915961076208, -0.00633584903954718, -0.022822324721789643, -0.010528787358155146, -0.0143170283230669, 0.010575228686959747, 0.008505296398722743, 0.008312899135836242, -0.008724231696829378, 0.005582844979445289, 0.005725484474031879, -0.02405632333609157, -0.022265036226714607, 0.007058998159272367, 0.023804216192451662, 0.0006310970271812539, -0.001369173675302451, 0.010210336523448691, 0.02112392027002188, 0.0013202450168763675, -0.00408347113521591, -0.01318918091832298, 0.012260365518101224, 0.006451950964574899, -0.026497781598152772, -0.01452932887953787, -0.013308599748507271, 0.016041970810054793, -0.03431309932569982, -0.012446128039352062, -0.004279185768920243, 0.017886333989872022, 0.012645160043874228, -0.005148291754049853, -0.003877804854719342, 0.03131435256856358, 0.002831228844060951, -0.014781436023177778, 0.005324103559830979, 0.004179670232320421, 0.008531834433942875, 0.009115660964238045, -0.0027549332733715387, -0.0009221811824550104, 0.0012082895725403072, 0.003983955132954828, -0.024706494488775807, -0.007437158874732229, -0.02966902232459104, 0.010296583508099706, 0.027917541802383015, -0.004196256155087058, -0.02563530988899756, -0.03325159654334497, 0.021203531581714716, 0.10434579242334846, 0.04882916151593392, -0.025874147549366143, 0.010203702713135547, 0.014821242610346714, -0.009367768107877952, -0.02823599263708947, -0.02154852138296382, 0.009095757670653576, -0.013063127346503027, 0.00429577215734814, -0.010210336523448691, 0.01767403343340105, 0.010416003269606518, 0.008611446676958229, 0.003851267285160471, -0.022477336783185576, 0.007198320748702387, -0.01673194854990797, -0.02866059375003141, -0.021535251899692496, 0.0008964728973929395, -0.006438681946964834, 0.004547878835326788, -0.027519477793338687, -0.027678704142014433, 0.03476423940518441, 0.020407405426271095, -0.02783792862804514, -0.02060643649947074, 0.007569846722526585, -0.016254271366525765, 0.016904442519210004, 0.03922255481636487, -0.014091459214647124, 0.02341942166667866, -0.0007115390785623257, 0.018390548277151836, 0.018350741689982897, -0.005310834542220913, -0.0070125572961290275, 0.011285108789074868, 0.014861049197515653, -0.006216429743701629, -0.002657075956519372, -0.022424260712745316, 0.004110008704774781, 0.020712586777706224, 0.014117996318544735, -0.004086788506033741, 0.004368750124389091, -0.00036344055184379546, -0.04471583404335753, 0.00039806380531752836, 0.031181665186430486, -0.00873086643846504, 0.002249060533513438, 0.008850285268649331, -0.006697423832240403, 0.011305012082659337, 0.0010357952539923289, -0.020261448560866674, 0.021628134557301695, -0.0070656324352467706, -0.00019063524433355966, -0.02797061787282328, 0.004428460005142497, -0.019677621099248983, -0.027944078906280628, -0.015484682314979757, -0.012306805915583304, -0.02215888594847912, -0.03829373941614311, 0.012174118533450207, 0.014555866914758003, 0.003612429159130629, 0.002116372685719082, -0.013600513479316114, -0.0016552820071800902, 0.002861083551607024, -0.026086448105837115, -0.04007175704224875, 0.0032840264448013093, -0.023751140122011398, 0.008671156557711635, 0.004053616660500467, -0.0008516907196585154, -0.024202280201495993, -0.0003026943419557627, -0.010668110413246426, 0.02347249587447388, 0.006932944587452414, -0.0024580439519972072, -0.0028229358826776327, 0.01608177739722373, 0.0014570794617776983, 0.019558201337742172, 0.025290320087748456, 0.02016856590325747, -0.01950512712994695, 0.02759909096767656, -0.03938178116504062, -0.02686930664065445, 0.01931936367737359, 0.01025677785225329, -0.0072182235766255955, -0.009619875251517859, 0.01358724492736731, -0.012028161668045784, -0.004836475195317801, 0.02527705246712217, -0.02112392027002188, 0.0070125572961290275, 0.0006024861590688955, 0.012724773218212101, 0.016294077953694704, -0.021110650786750555, 0.02652431870205038, 0.0009503773210074824, -0.014569135466706807, -0.005858172321826236, -0.009400939953411225, 0.003642283866676702, 0.028527906367898315, -0.01669214196273903, 0.008956435546884816, 0.02396344067848237, 0.0033171985231652133, -0.014157802905713673, 0.010143992832382142, -0.02797061787282328, 0.02591395413653508, -0.009055952014807158, -0.01730250652825433, -0.03144703995069668, -0.0255822338185573, -0.005768607966357388, -0.005748704672772919, 0.001985343290503011, -0.006578004536394853, -0.013421384768378418, -0.010840604382548458, -0.0029207931995297995, -0.009686218942584406, 0.010681378965195231, -0.031606266299372424, 0.00011838251560157795, -0.0027582504113587403, -0.028342142915324955, 0.006697423832240403, -0.002940696493114268, 0.009042682531535833, -0.017846527402703084, 0.009533628266866842, 0.00790820131647877, -0.05028872644468806, -0.018934569151600588, 0.0017946043637794796, 0.04652039063600582, 0.021575058486861434, 0.02402978623219396, -0.0003169997760119419, 0.01901418046329342, 0.010449175115139792, -0.008399146120487259, 0.0007467842808567444, 0.015564294557995111, 0.016055240293326122, -0.03717915870070296, 0.02414920413105573, -0.0012298513187030615, -0.00010501006298408506, 0.026312018145579413, -0.0017664081088116926, 0.011470872241648227, 0.031818566855843396, 0.003867853440757738, 0.012545644507274405, 0.007888298022894301, -0.013958770901191507, -0.006833428585191332, -0.018974375738769526, -0.00036240393167088065, -0.0026438071717399367, -0.012864095341980861, -0.006166671975401717, 0.04078827188599954, 0.01361378203126492, 0.0025907320326221937, 0.007616287585669925, 0.0376037598136449, -0.023459226391202556, 0.015909283427921698, 0.0064287307658338596, 0.01429049121916929, -0.02119026396108843, -0.00027118097810460305, -0.013414750026742755, -0.005380496069766553, 0.017090205971783363, 0.006186575268986186, 0.020924887334177196, -0.0015010322968076646, 0.023246925834731584, -0.00035452558343213356, 0.026179330763446314, -0.0034299830773751013, -0.005214635910777662, -0.0064287307658338596, -0.009374402849513614, -0.009500456421333568, -0.020380866459728444, -0.04195592680923492, -0.03187164106363862, -0.0033171985231652133, 0.012618622939976617, -0.005964322600061721, 0.038744875770337625, -0.01563063918038418, -0.027492940689441074, -0.011981720339241185, -0.01669214196273903, 0.03460501305650866, 0.013733201792771732, 0.015909283427921698, 0.024958601632415714, -0.00868442510966044, -0.033304670751140186, 0.03826720044960046, 0.01419760949288261, -0.0025227294233161, 0.014051652627478187, 0.01913360022480023, -0.011351453411463937, -0.02607318048521083, -0.014847779714244325, 0.0005348982211150304, -0.023751140122011398, -0.024162473614327055, -0.011265205495490399, -0.004189621413451395, 0.01575005894189099, -0.0052046842639854275, -0.015643908663655507, 0.009944960827859978, 0.024852451354180228, -0.023857290400246884, -0.011762785972457073, -0.01908052601700501, -0.020752393364875162, -0.021787359043332403, -0.004239379647412566, -0.007171783179143516, 0.015829670253583825, 0.0030103575549986477, -0.007888298022894301, -0.002119689823706283, -0.008783941577582782, -0.003569305433974491, 0.02307443186542955, 0.008764038283998314, 0.010887044780030539, -0.015206037136119718, -0.004262599846153606, 0.015564294557995111, -0.0042526481993613715, -0.0015483023862401472, -0.01541833862391321, -0.02717448985473462, 0.028262529740987082, -0.009301424416811404, 0.0005178976269961644, -0.011762785972457073, -0.005901295814151744, 0.011596925813468181, 0.0070258263137390935, -0.007324374320522341, -0.032216632727532765, 0.008246555444769694, 0.004959211861981183, 0.012844192048396392, -0.006233015666468266, 0.006846697602801397, -0.01483451116229552, -0.017262699941085397, -0.0029937716322320108, -0.00499901798348886, -0.004239379647412566, 0.008498662588409601, -0.04070865871166166, -0.0011543850907181068, -0.025661846992895174, 5.6910685416823466e-05, 0.024653418418335543, -0.003476423940518441, -0.009792370152142413, -0.0029075244147503637, 0.009142198999458175, -0.025595503301828627, 0.018443622484947058, -0.01206133351357906, 0.0005067020825625584, -0.02215888594847912, 0.008996242134053752, 0.004448363298726965, -0.011086076784552703, 0.021760821939434793, -0.013905695762073764, -0.008551737727527344, 0.009055952014807158, 0.00950709023164671, -0.01929282657347598, 0.018390548277151836, -0.013149374331154042, 0.007403987029198955, 0.0029788441620436593, -0.0019588057209441396, -0.015869476840752763, -0.01462221060582455, -0.004451680203883536, -0.023313271388443173, 0.010435906563190987, 0.01391896431402257, -0.012903901929149798, -0.006813525757268123, -0.02051355570450658, 0.0001393223274955606, 0.019186676295240495, -0.0525709620833636, 0.011291743530710531, 0.007430524598757826, 0.009560166302086974, -0.01718308862939256, -0.015896013944650372, -0.009228445984109192, -0.005616016824978563, -0.0005975103938804359, 0.013540803598562709, -0.00016451230247117415, -0.0015582539166170664, -0.005005652259463263, 0.009679585132271264, -0.019518394750573237, 0.011271840237126062, 0.019956265346786503, 0.003018650516381966, -0.016519647993436998, -0.023087701348700876, -0.027121413784294356, 0.0025061435005494627, -0.007961276455596512, 0.016997325176819202, 0.018496698555387322, -0.008677791299347298, -0.011583657261519376, -0.011165689958890578, -0.017567883155165564, -0.00214788607867407, -0.009679585132271264, 0.01752807656799663, 0.019956265346786503, 0.00987861713679343, 0.005556307409886417, 0.0002740835320510618, 0.014582404018655614, 0.02024817907759535, -0.011411162360894822, 0.018509968038658647, 0.03609112067709554, -0.005878075615410704, -0.0028693767458209726, 0.0024165791450806145, -0.01232007539885463, -0.009022780169273884, -0.01025677785225329, -0.018310935102813963, -0.007019192037764691, -0.00399058987459049, -0.01361378203126492, -0.023167314523038753, 0.010522153547842004, -0.0036157462971178308, 0.00010521738410828514, -0.00377828908528889, 0.012419590935454451, -0.009427477988631357, 0.006979385450595754, 0.004056933565657038, -0.0005838269377487713, -0.037550685605849676, -0.0019588057209441396, 0.02820945553319186, 0.0036323322198844677, 0.005665775058939734, -0.03189818003018127, 0.0018277763257280688, 0.010071014399679931, -0.02295501396656778, 0.029164808037311227, -0.008584909573060618, 0.0238440227796206, 0.01974396479031553, 0.02466668790160687, -0.006106962094648312, -0.025223976396681908, 0.015736789458619664, -0.009327961520709015, -0.004358798943258117, 0.013023320759334088, -0.020314522768661896, 0.029403647560324847, -0.009792370152142413, 0.01349436320108063, -0.016997325176819202, 0.005198049988011025, -0.017236162837187784, 0.009513724973282374, -0.020686049673808615, 0.018788612286196167, -0.000904765858776258, -0.03216355479444746, 0.01797921478483618, -0.018735536215755903, 0.0001724943185479785, -0.019651083995351374, -0.01987665217244863, 0.004892867705253375, -0.03802836092658684, -0.018509968038658647, -0.009075855308391627, 0.0026006836794144283, -0.005878075615410704, -0.022450799679287967, 0.014091459214647124, 0.005894661538177342, 0.006743864229722484, 0.20879774071286752, 0.01837727879388051, -0.00999803596697772, 0.02551589012749075, -0.01767403343340105, 0.010840604382548458, 0.015497950866928564, 0.0007849320662014507, -0.015378532036744273, 0.010926851367199475, 0.014555866914758003, -0.012107773911061138, -0.007238126870210064, -0.0025741458770249265, 0.003954100658239385, -0.012326709209167772, -0.028766744028266896, -0.022702906822927874, 0.0035062786480645138, -0.03197779320451914, 0.011271840237126062, 0.004408556711558029, -0.006027349385971698, -0.009984767415028914, 0.02093815681744852, 0.002749957449975422, 0.0025708287390377254, -0.012592084904756485, 0.01204143021999459, 0.00659459045916149, -0.008817113423116058, -0.026630468980285867, 0.004892867705253375, 0.015617370628435375, -0.0054800116063663746, 0.006747181600540315, 0.008020985405027397, -0.0047601798574590185, 0.009473918386113436, -0.002436482205834453, 0.013554073081834036, 0.009155467551406981, 0.020314522768661896, -0.007742341157489879, -0.0057851938891240245, 0.015192768584170914, -0.010462443667088598, 0.0034465692329723684, 0.03234932010966586, 0.009871982395157766, -0.03157972733282977, -0.02842175608966283, 0.005977591617671787, 0.027705241245912046, -0.017448463393658756, 0.00959997195793339, 0.0025923904852004796, 0.0062794565296116055, -0.01016389612596661, -0.0013733201559941101, -0.012147580498230075, 0.02311423845259849, -0.0015491316125292901, -0.005154926495685517, 0.001418931676432992, 0.014330296875015705, -0.013175912366374174, 0.02109738130347923, 0.014277221735897964, -0.004511390084636942, 0.0037417998689377842, -0.026948919814992322, -0.029350571489884587, 0.003388518270458509, -0.011331550117879468, -0.016864635932041065, 0.02919134700385388, 0.028925970376942646, 0.015484682314979757, 0.01563063918038418, -0.0016146463101373255, -0.01669214196273903, -0.005888027262202939, -0.004909453628020012, -0.015007006062920075, -0.02698872640216126, 0.01401184604030925, -0.0005577039813344714, -0.005042141475814368, -0.0036787730830278075, -0.004090105876851572, -0.03197779320451914, 0.002905865729341448, 0.015497950866928564, 0.021468908208625948, -0.0012820972315316613, 0.023021357657634328, 0.0011800933175725203, 0.0007675168007303558, -0.014303759771118094, -0.03739145925717393, 0.008034254888298724, 0.022901937896127517, 0.001792945794785879, -0.004445045927909134, -0.012200655637347818, 0.008578274831424955, -0.0006406339444136017, 0.036329956474819076, -0.011397893808946017, 0.0025028261297316313, -0.012950342326631878, 0.007569846722526585, 0.0019024133274238807, -0.009931692275911171, 0.028952507480840255, 0.010953389402419607, -0.00987861713679343, 0.013388212922845144, 0.0023120873194234152, -0.013945502349242703, -0.008093963837729609, 0.0018742170724560935, 0.013467825165860498, 0.009148832809771319, -2.4606874309359663e-05, 0.002895914315379844, 0.0040303959960981675, 0.007914835126791912, -0.0024912160303611113, 0.01220729037898348, -0.023923635953958473, 0.021031037612412682, -0.011902108096225831, -0.018576311729725195, 0.016161390571561605, 0.010780894501795053, 0.01245939752262339, 0.0068732351723602685, -0.00187753432685861, 0.010820701088963991, 0.0013708322442960515, -0.010615035274128683, 0.02473303159267342, -0.006740547324565912, -0.0206993172944349, -0.014449716636522517, 0.018602848833622808, -0.022052735670243635, -0.01140452855058168, -0.004116643446410444, -0.024281893375833866, -0.016294077953694704, -0.0017597737164219748, -0.00173655340126562, -0.01152394738076597, -0.009706122236168875, -0.023910366470687148, -0.005450157131650932, -0.0005543867851396124, -0.028103305254956374, 0.013733201792771732, -0.005251125127128767, 0.007569846722526585, -0.01715654966284991, 0.0009288155748447283, -0.16973440851988833, 0.003811460930822164, 0.014064921179426993, -0.030491687446577313, 0.018854955977262715, -0.02116372685719082, 0.028687132716574065, -0.0070258263137390935, -0.011577022519883714, -0.0068533318787758, 0.0030833359877008586, 0.011026367835121818, -0.03648918282349483, 0.008863553820598136, 0.006203161191752823, -0.007961276455596512, -0.018483429072115996, 0.02048701673796393, 0.021628134557301695, 0.0026288797015515853, 0.034286564084447246, -0.03043861323878209, -0.01321571895354311, 0.006106962094648312, 0.03495000099511273, 0.012611988198340954, -0.008014351594714255, 0.003041870947953636, 0.025834340962197208, -0.033039295986873995, -0.012525741213689937, -0.009288155864862598, 0.039965604901368225, -0.005682360981706372, 0.013487728459444967, 0.0073310085964967435, 0.017753646607738923, -0.021044307095684008, -0.013958770901191507, -0.0007882492623963096, 0.013746470344720537, 0.007848491435725365, 0.011484140793597034, -0.003015333378394765, 9.987877421066802e-05, 0.03380888503842001, 0.03410079876922885, -0.01459567350192694, -0.002691906487461562, -0.004309040709296946, 0.00711207329839011, -0.027864467594587793, 0.009792370152142413, -0.0031795346191441096, 0.012850826790032056, 0.008949801736571674, 0.021322951343221524, 0.00021955707230434667, -0.004229428000620332, -0.019226482882409433, -0.0195714708210135, -0.008047523440247529, 0.02262329364859, 0.00024236280341995888, -0.006717326660163612, -0.009374402849513614, -0.005888027262202939, -0.007563212446552183, -0.011046271128706287, 0.009400939953411225, -0.014953930923802332, 0.015166231480273303, -0.0036389667286895007, -0.027652165175471782, -0.009832175807988829, 0.02341942166667866, -0.011835764405159283, 0.008359340464640841, 0.028182918429294247, 0.0034797410785056427, -0.009487187869384763, 0.030332462960546605, -0.0006510002043504074, -0.017567883155165564, 0.017753646607738923, -0.019160137328697844, 0.017275969424356722, 0.011676538056483535, -0.009938326086224315, -0.011165689958890578, 0.01361378203126492, -0.03391503717930053, -0.004524658636585748, -0.0030501639093369545, -0.0028196187446904316, 0.018324204586085288, 0.025688384096792784, -0.0024281892444511345, 0.017130012558952298, -0.010714550810728505, -0.006528246302433681, 0.020221641973697736, -0.007072267176882433, 0.00929478967517574, 0.025131095601717748, 0.03065091379525306, 0.0020881764307512946, 0.006767084894124783, 0.01825786089501874, -0.011185593252475047, -0.006820160033242526, -0.02448092444903351, 0.004461631850675771, 0.03388849821275788, -0.019279557090204655, 0.03288006963819825, 0.0023054528106183822, 0.011888839544277026, 0.03001401212584015, 0.00903604872122269, 0.06894465134875113, -0.005254442497946599, -0.02100450050851507, -0.0012290219759986036, -0.0071784174551179185, 0.004756862486641187, -0.1187822377139546, -0.009042682531535833, 0.007788782020633218, 0.0031762174811569084, 0.003993906779747061, 0.021999659599803375, -0.004282503139738074, -0.00092715694764347, -0.002776495019534293, 0.037285310841583486, -0.01852323565928493, -0.03197779320451914, -0.006913041293867946, -0.013202449470271785, -0.0015391800821523709, -0.024388043654069352, -0.012784483098965507, -0.017594420259063177, -0.018881493081160324, 0.017687302916672375, -0.011431065654479291, 0.01929282657347598, 0.008551737727527344, -0.022716174443554157, -0.025807803858299595, 0.006189892174142757, -0.03272084701481258, 0.0036721385742227745, 0.006674203167838104, -0.011298378272346194, -0.0013534169788249567, 0.004050299289682636, 0.004090105876851572, -0.027254103029072493, -0.00851856588199407, 0.0008458856117655979, -0.009964864121444445, 0.00015777425679531349, 0.03349043606635859, -0.014383372014133448, 0.012485934626521, -0.008452221259605002, -0.0008106403512635217, 0.013759738896669343, -0.003154655734994154, 0.003182851989961941, -0.010893679521666201, 0.0017332361468631035, -0.004518024360611345, -0.02341942166667866, -0.023061164244803267, -0.001622939271520644, -0.026298748662308084, -0.004989066336696626, 0.04190284887614961, -0.0035129131568695468, 0.01734231311542327, 0.002454726814010006, 0.008352705723005178, 0.0019090477198135984, -0.019186676295240495, -0.013209084211907448, -0.0028710351983992585, 0.018337472206711572, 0.01825786089501874, -0.028103305254956374, -0.03006708633363537, -0.008923263701351542, -0.005032189829022134, -0.00668747218544817, -0.015073349753986623, 0.010734454104312974, -0.018934569151600588, 0.023830753296349275, -0.02674988874179268, -0.009991401225342056, 8.251531355477297e-05, -0.01755461367189424, 0.021866972217670276, -0.018178247720680867, -0.003947465916603722, -0.0075764809985009885, -0.0004648224296707643, -0.03452539988217079, -0.014754898919280167, 0.009109027153924901, 0.012738041770160908, 0.0064453166886004965, -0.013368309629260677, -0.008764038283998314, -0.006614493752745958, 0.012313440657218967, 0.0013202450168763675, -0.023326539009069457, 0.002607317955388831, 0.008160308460118677, 0.0010482346960673065, 0.009308059158447067, 0.00659459045916149, 0.03165934050716765, -0.017753646607738923, -0.021694478248368242, -0.03752415036459711, 0.02900558355128052, 0.010051111106095462, 0.00012325465660772346, 0.005055410493424434, -0.0037351653601327512, 0.015219306619391046, 0.012937073774683071, -0.008996242134053752, 0.01168980753975486, -0.002459702637406123, 0.01288399863556533, -0.005387130345740955, -0.006355752333131648, -0.019385707368440138, -0.022941744483296455, 0.0031811933045530253, 0.001882510150254727, -0.02320711924756265, 0.0030684085175125076, -0.02154852138296382, 0.016652335375570093, 0.008691059851296102, 0.006919676035503608, 0.012638526233561084, -0.03420695091010938, 0.0009238397514486111, 0.011417797102530484, -0.005181464065244387, -0.014370103462184643, 0.006352434962313817, -0.011159055217254915, 0.004378701771181326, 0.003015333378394765, -0.0009594996250952588, -0.01841708538104945, -0.007742341157489879, 0.00014606038772333566, 0.042937816417251896, 0.04352164387886959, -0.023061164244803267, -0.025900684653263756, 0.012485934626521, -0.03022631268231112, 0.0008541785731489165, 0.013507631753029435, -0.04200900101703014, -0.00171333296969395, -0.0052046842639854275, 0.015179500032222107, 0.012399687641869984, 0.029562872046355555, -0.025807803858299595, -0.0002127153442385144, -0.004604271345262362, -0.0057984629067340905, 0.012240462224516755, 0.006133499664207183, -0.004753545115823355, -0.01450279177564026, 0.04134556038107458, -0.006339166410365011, -0.0006066326397605547, -0.003343736092724085, 0.011795957817990347, -0.004173035490684758, -0.0005514842602969825, 0.003625697943910065, -0.0016834781457325623, 0.0011452627866303305, -0.004866330135694504, 0.004441728557091303, 0.027254103029072493, 0.032110480586652244, -0.01279111690927865, -0.006939579329088077, -0.0005498256330957243, 0.010124089538797674, -0.007967910265909655, 0.01480797405839791, 0.018085365063071665, -0.006352434962313817, -0.04283166427637137, 0.00029398670922021526, 0.028076768151058765, 0.000983549341163729, -0.002267305141688991, 0.02659066239311693, 0.032110480586652244, 0.002103103900939646, 0.016904442519210004, 0.0020334426062246364, -0.010966657954368412, -0.02215888594847912, -0.002232474610746801, 0.014569135466706807, -0.025409739849255267, -0.0020649559991796247, 0.010329756284955501, 0.005748704672772919, 0.004753545115823355, -0.0023087701814362136, 0.002958941101289821, -0.03723223663378827, -0.017130012558952298, 0.015604101145164048, -0.013255524609389528, -0.0388244889446755, 0.004488169420234642, 0.019398976851711467, 0.028793282994809547, -0.011086076784552703, -0.026736619258521353, 0.0009495480365106821, -0.010270046404202095, 0.011902108096225831, -0.0027731778815470918, -0.00755657817057778, -0.017873064506600696, 0.004673932407146741, 0.006160037699427315, 0.018629385937520417, 0.018218054307849802, -0.0016519648691928888, 0.019956265346786503, 0.005440205484858698, 0.025356665641460045, -0.030677450899150673, 0.01969089058252031, -0.02778485442024992, 0.001729919008875902, 0.007092170004805642, -0.005533086745484118, 0.00617330625137612, -0.023737872501385114, -0.02473303159267342, -0.001148579924617532, 0.006866600896385866, -0.00873086643846504, 0.05395091383777987, -0.010455809856775454, -0.019053987050462358, 0.02969555942848865, -0.021482177691897274, -0.012572181611172016, 0.009606606699569054, 0.010920217556886333, -0.033968111387095754, -0.008346070981369516, 0.021813896147230016, -0.009142198999458175, 0.03672802234650845, -0.007350911890081212, -0.007105439022415707, 0.010661475671610762, -0.01675848565380558, 0.00950709023164671, 0.008657888005762828, 0.011298378272346194, 0.03954100378842629, -0.002743323174001019, 0.008359340464640841, 0.008651253264127166, 0.00016150609523857257, 0.002766543372742059, 0.04115979879114626, -0.003489692725297877, -0.0286340566461338, -0.020234909594324023, -0.004119960351567016, -0.023485765357745207, -0.02326019531800291, -0.014728360884060035, 0.01208787061747667, 0.005612699919821992, 0.0033769079382573587, 0.0034133971546084644, 0.004328944002881414, 0.030093623437532982, -0.026086448105837115, 0.019611277408182436, -0.0274133275151032, -0.020805469435315426, -0.00828636203193863, -0.01025677785225329, 0.012870730083616524, -0.03229624217658056, -0.029324034385986974], "valueType": "FLOAT"}, "id": 1183189148854}, {"scalarData": {"year": {"fieldType": "INT64", "fields": [{"data": 2019}]}, "director": {"fieldType": "STRING", "fields": [{"data": "Greta Gerwig"}]}, "rating": {"fieldType": "DOUBLE", "fields": [{"data": 8.3}]}, "text": {"fieldType": "STRING", "fields": [{"data": "A bunch of normal-sized women are supremely wholesome and some men pine after them"}]}}, "vector": {"binaryValues": [], "dimension": 1536, "floatValues": [-0.012484282125958432, -0.01834560402354402, 0.025273220329289768, -0.005838140349350098, -0.01957747360156662, 0.014093662346209405, 0.005937484985606315, 0.00027692257402534725, 0.0028793325064370616, -0.051818049767485115, 0.002145839439955676, 0.0063249281822491885, -0.001907412848451191, -0.006381223367473421, 0.003569776121886462, 0.013391627723811637, 0.03478379252108467, -0.008676079296152174, 0.020862327979003205, -0.02147164013374901, -0.029352966065141428, -0.0029323161416979194, -0.010821918968938473, 0.004397646616094316, -0.009854966868728287, 0.011729264566791677, 0.031233885466147825, -0.020981540983717167, 0.0027385945433764827, -0.003039939303616634, 0.004609581157137748, -0.0205576719016303, 0.004559909071840264, -0.010345066018760127, -0.0079806682393424, -0.009854966868728287, -0.01912711211977277, -0.01798796314675714, 0.004387711733373571, 0.003377710414962024, -0.009457589255025916, -0.004463876218378044, 0.008934375071021588, 0.0018759538222910138, -0.006192468977681732, -0.011073591178219893, -0.019087374451534782, 0.009696015264453841, 0.004294990662705349, 0.002539905736525297, 0.035552055348782426, 0.007278634548267129, -0.012994250110109266, 0.015166582182602556, -0.009252277348247984, 0.0217762980737669, -0.011398117021034283, 0.015789140537201853, 0.0030366277536532605, -0.009927819570938762, -0.004997024353780622, -0.012636610164644884, -0.028478733638615722, 0.0011623297063439338, -0.006821650432207776, -0.00027485291350589475, -0.02291544704678253, 0.020266262955433392, 4.687815055279136e-05, -0.005132795341142076, 0.0141201538145939, 0.00016433223268071207, -0.019868884410408523, 0.011828608737386647, -0.011073591178219893, -0.04662564745832481, -0.02223990482409175, 0.0009114850935150778, -0.0004669187950533009, -0.005563287523155687, 0.03247900403799141, -0.022862462247368553, -0.0017567404683311153, 0.0021855773410242875, -0.01168952689855369, 0.03049211503815706, -0.017776027674391213, 0.011557067693986234, 0.016107041883105754, -0.006894502668757004, 0.0008431858016080689, -0.010980869641890423, 0.021034525783131145, 0.007901192902866425, -0.020213278156019414, 0.007815094932124952, 8.351140440914856e-05, 0.02323334839268643, 0.01377576006898301, -0.009583424894005379, -0.007854832600362939, 0.03510169386698857, -0.028876112183640588, -0.0068680112003725105, -0.015736155737787874, -0.0001571918558672847, -0.014239366819307861, -0.013305529753070163, 0.027260109329124114, 0.018557537633264953, -0.004341351430870085, 0.011795494634736654, 0.00358964518883608, -0.06527590942188673, 0.005536795589109946, -0.013212808216740694, 0.005510304120725454, 0.002963775284273409, -0.0036691207581426785, -0.01162329776193121, 0.03446589117518077, 0.007000470404939968, 0.027074666256465176, 0.005761976330006873, -0.00016557403481314917, 0.005576533723009182, 0.005285123379828527, -0.03226706856562548, -0.013669792332800046, 0.012808807037450328, 0.040453046849100824, 0.001552256623666994, 0.01294788980760578, -0.00947745808914491, -0.025312957997527755, -0.0019554293915976127, -0.006364665850487177, 0.01929930992390071, -0.004278433145719105, -0.007331618416358611, 0.007252142614221388, 0.03613487696646623, -0.02784292908416293, 0.0047751553956776925, -0.0028362832882357003, 0.017325668055242348, 0.00408305565600067, 0.003430694050222882, -0.005987157070903799, -0.02096829571518617, 0.012537265994049914, -0.01796147074705015, 0.018637012969740928, -0.0144248098919668, 0.008417784452605255, 0.007523684123283049, -0.00011000325114340555, 0.020663639637813265, -0.017881995410574177, -0.024544695169830003, 0.007377979184523345, 0.008358177018925777, -0.016107041883105754, -0.012530643359784415, -0.003096234488840866, 0.013159824348649212, 0.02821381522948081, 0.020822590310765218, 0.004910925917377899, -0.0038214487968291294, 0.02144514959668701, 0.007126306509580678, -0.04961922715792983, 0.009139686977799521, -0.016173271951050727, 0.012464413291839439, -0.002594545263183154, 0.014398318423582307, -0.006430895452770905, -0.0042055804435086296, -0.016120289014281742, 0.009133063412211526, -0.009921196005350769, 0.020173540487781427, -0.02592227201491855, 0.01614677955134374, 0.006036829156201283, -0.01235844648697897, 0.00898735893911307, 0.002857807780921069, -0.0034936121025432366, 0.02127295179255907, -0.004953975368409884, -0.004881122666199409, -0.6625080737936401, 0.0033893004905878954, 0.001909068623432878, -0.021153738787845107, 0.02114049351931411, 0.01736540572348034, 0.014014186078410935, 0.0011085181253845764, -0.008974112739259575, -0.01826612682442305, -0.02406784128832916, 0.020094065151305452, 0.009907950736819769, -0.005583156357274681, -0.007311749582239616, -0.022677019174709614, 0.013987694610026441, -0.02900857045688555, 0.010020541107268232, 0.015616942733073912, -0.02096829571518617, 0.010570246759657054, -0.006103058758485012, 0.007324995316431863, 0.019259572255662723, -0.007596536825493524, -0.0072124049459834, -0.021961739283780847, 0.007013716139132214, 0.01834560402354402, -0.02095505044665517, 0.04498315592939133, -0.014305596887252837, 0.008431029721136253, 0.06013648818685041, -0.003046562170712758, -0.029299981265727453, 0.012345200287125477, 0.01633222262400268, 0.024266531492164088, -0.04583089409356506, 0.013457857791756614, 0.004814893063915681, -0.005967288236784806, 0.00028023406578106487, 0.029035062856592537, -0.011225919216906344, 0.003271742911609684, -0.006232206645919719, 0.008709194330124662, 0.021219968855790083, 0.012053789478283573, 0.007106437675461684, 0.004801646864062186, 0.009013850407497564, -0.006516993889173627, 0.03512818812934055, 0.0026756764910561277, 0.005202336260558554, -0.008934375071021588, 0.0038479404980442467, 0.01980265434246355, -0.029379456602203428, 0.027657487874148984, -0.0030978901474072408, 0.04469174512054943, 0.019815901473639538, 0.016610388164313584, 0.003791645545650639, -0.011656411864581202, 0.018213143887654066, 0.015259302787609529, 0.004983778619588375, 0.0016424944393162771, 0.01021922944845817, 0.034200974628690844, 0.004175777192330139, 0.01194119910783511, -0.006252075480038713, 0.0014090350563415407, -0.002033249069507213, -0.013186315817033705, 0.005417582584395984, -0.0007860627288929938, 0.019365539991845687, 0.0038843668491494844, -0.02406784128832916, 0.0072653888140748815, -0.006685879444846322, -0.013524086928379093, 0.0007421856232007894, 0.02871716151068864, 0.005503681020798706, -0.0005277672450618592, 0.013086971646438735, 6.778186950118886e-05, -0.01695478190992447, 0.01577589340602586, 0.013828743937074492, -0.03340621753864111, -0.014279104487545848, -0.030571590374633036, 0.029591392074569355, 0.019206587456248744, 0.003139283707042227, -0.01384198920560549, -0.00988145833711278, 0.01813366855117809, 0.023511513932997333, -0.023458529133583355, 0.012497528325811927, 0.01736540572348034, -0.016848814173741507, 0.003394267699117644, -0.02227964249232974, -0.02703492858822719, -0.012908152139367792, -0.011470968791922264, -0.007874701434481933, -0.019352292860669695, 0.029564899674862366, 0.016862059442272505, 0.01341149655793063, -0.001960396600127361, -0.0026359385899875163, 0.02075636210546523, -0.0025713648791007866, 0.003463808851364746, 0.014318843087106332, -0.0014082072270583533, 0.01683556890521051, 0.015537467396597938, 0.00825221021406531, -0.02063714723810628, 0.002743561751906231, 0.010186114414485681, -0.019140359250948757, -0.016901797110510493, 0.04938080114850191, -0.00626200989709821, -0.007146175343699671, -0.009623162562243366, 0.006149419526649747, 0.009947688405057756, 0.024518202770123013, -0.032584969911529385, -0.03377710368395899, -0.0026673977325630057, -0.016822321774034518, -0.01929930992390071, -0.011808739903267654, -0.008881391202930106, -0.02922050592925148, 0.025485155801655696, 0.013192939382621699, 0.009994048707561244, 0.0018974784313916943, 0.0005939968473455877, -0.005752041912947376, -0.0049506635856158875, 0.0011449444764898144, 0.0174978639967253, -0.014067169946502417, -0.007192536111864406, 0.00988145833711278, 0.0009818540750453674, 0.014451302291673788, 0.015126843583042072, 0.019497998265090646, -0.020054327483067465, 0.030386147301974097, -0.015563959796304925, -0.005841452132144096, 0.01275582410068134, -0.01896816144682082, 0.0015696418535211135, -0.02408108841950515, 0.0032402840018648186, -0.0027485289604359795, 0.0020133802353882193, 0.008431029721136253, -0.01847806229678898, -0.043711546820485746, 0.009755621766810822, 0.043420136011643844, -0.005861320966263089, 0.026412371164950387, -0.011510707391482747, 0.009113194578092532, -0.0012848544938518938, 0.0003214206098875983, -0.009649654961950355, 0.018809210773868868, -0.0014355268739719698, 0.012212741082558019, -0.022080954151139802, 0.030439130238743083, 0.011802117269002155, 0.006987224205086473, 0.007411093752834585, 0.015073860646273085, -0.01580238580573285, 0.040479541111452806, -0.015696418069549887, 0.01974967140569456, -0.038280718501897515, 0.018517799965026966, 0.0027005125337048698, 0.016385207423416655, -0.00469567959354047, 0.012014051810045586, -0.006487190637995136, -0.012577003662287901, -0.024902334183971888, -0.0024074465319578403, 0.023670464605949283, 0.01119942774852185, 0.03020070422931516, -0.00613286247532475, 0.020862327979003205, 0.009371490352961946, -0.024624170506305977, -0.002890922582062933, -0.002119347738740559, 0.021219968855790083, 0.007285257648193875, 0.00849725978908123, -0.011457723523391266, 0.006344797016368183, -0.005285123379828527, -0.014093662346209405, -0.001658224010604022, -0.009676146430334848, 0.02723361692941713, -0.02335256139740039, -0.031392836139099774, 0.034545366511656746, -0.022014724083194825, 0.01813366855117809, -0.0029604637343100355, 0.01678258410579653, 0.004619515574197245, 0.007722372930134234, -0.03245250977563943, -0.009278768816632477, -0.03642628777530813, 0.019564228333035623, 0.0021789542410975402, 0.01377576006898301, -0.022226659555560753, 0.0067487977299973, 0.006808404232354282, -0.0007823373224956825, 0.03221408376621151, -0.007967422970811402, -0.025604368806369657, -0.004834761898034674, -0.0035995796058955767, 0.02406784128832916, 0.03610838642940423, 0.02227964249232974, -0.0020613966621193286, 0.015736155737787874, -0.009609917293712368, 0.027048173856758187, 0.015881861142208825, 0.01645143562871664, -0.00417246587519739, -0.012570381028022402, -0.005208959360485301, -0.011106706212192381, 0.0056990585105171415, -0.013113464046145724, -0.02402810362009117, 0.014438056091820294, -4.6619439349881294e-05, 0.004970532419734881, 0.020822590310765218, 0.01341149655793063, 0.0177892748055672, -0.013881726873843477, -0.03314129726686121, 0.008490636223493235, 0.025127514924868814, -0.023869152947139222, -0.005997091487963296, -0.0313133608026238, 0.0004499474507369471, -0.006960732271040732, -0.007894570268600926, 0.022981677114727508, -0.0008601571168205947, -0.012312085253152989, -0.0021027902217543148, -0.010517262891565573, 0.01680907650550352, 0.008338308184806784, -0.008007160639049389, 0.01153719885986724, -0.016623633432844582, 0.0060699441901737716, -0.01251739715993092, -0.0009247310023302924, -0.0196304584009806, -0.0014893384549313272, -0.010020541107268232, -0.02147164013374901, -0.024173809024512122, -0.004973844202528878, -0.0008278702031695738, 0.019895376810115512, -0.010947755539240432, -0.003937350717240966, 0.0035664648047537125, -0.015696418069549887, -0.016941534778748484, -0.019365539991845687, 0.011815363468855648, 0.02144514959668701, -0.0171932079193524, -0.011146443880430368, -0.029379456602203428, -0.03443940063811877, 0.01129214928485132, 0.13436663499462023, 0.018610522432678932, 0.0008493948122702544, 0.013358513621161645, -0.016120289014281742, 0.02642561643348139, -0.01070932859849001, 0.014411563692113305, 0.005381156233290746, 0.02473013824248894, 0.0015497730194021198, -0.005831517715084599, 0.02723361692941713, 0.003897612816172355, 0.018663505369447917, -0.006215649128933475, -0.0016391830057682156, -0.02673027251085429, -0.013166446982914711, -0.002885955373533185, -0.0013635022338753054, -0.007728996030060981, 0.015285795187316518, 0.027948896820345893, 0.011616674196343215, 0.0003429452189882789, 0.004265186945865611, 0.02649184650142636, -0.0038943012662089813, -0.0110470997098354, -0.006563354657338362, 0.014941401441705629, -0.00998080250770775, 0.012464413291839439, 0.019021144383589806, 0.008464144755108741, 0.0016375272307865287, 0.010735820066874504, 0.020213278156019414, 0.0008998949014738942, 0.04304924986632597, 0.018504554696495968, 0.03398903915632492, -0.016464682759892633, 0.009437720420906922, -0.009219162314275496, -0.004917549017304647, 0.022703511574416604, 0.015219565119371541, -0.034545366511656746, 0.0395523276108031, 0.01585537060514683, -0.008146242477882346, -0.031074934793195876, 0.0024935449683605626, -0.008907883602637095, -0.0013270758827700676, -0.0001259397579240761, -0.006927617702729492, -0.022001478814663827, -0.006881256934564758, -0.020491441833685325, 0.003457185984268623, -0.004444006918597803, -0.004142662158357651, -0.034889762119912626, -0.030783523984353973, -0.017855504873512177, -0.007623028759539265, -0.004811581281121683, -0.003738661677559157, -0.020716622574582254, 0.0003363222645806716, 0.008457522120843242, 0.023961875414791188, 0.01678258410579653, 0.008172734877589334, 0.004632761308389491, 0.005235450828869795, 0.006434207235564903, -0.01668986350078956, -0.02291544704678253, -0.004649318825375735, -0.00947745808914491, -0.005020204970693613, 0.023273086060924417, 0.005202336260558554, 0.007735619129987728, -0.01616002668251973, 0.01203392064416458, 0.02657132183790234, 0.004099613172986914, 0.006583223491457356, -0.00044084086296063764, -0.00898735893911307, 0.009159555811918515, 0.009848343303140293, 0.010186114414485681, -0.0022468397347782674, -0.004874499566272662, 0.026067975556694507, -0.027895913883576907, 0.004970532419734881, -0.006242141062979216, 0.0006544313536087244, 0.005040073804812607, -0.021074263451369132, 0.00588781290030883, -0.020451704165447337, -0.03247900403799141, 0.002630971381457768, -0.02324659552386242, 0.006033517839068534, 0.019723179005987572, -0.00024587743340293553, 0.02010731041983645, 0.009835098034609293, 0.026107713224932497, -0.003506858069566107, -0.007556799157255537, 0.006881256934564758, -0.028452243101553726, 0.03703559993005393, -0.004785089812737189, -0.018425079360019993, -0.006573289074397859, -0.03014772129254617, -0.05285123286696278, -0.008358177018925777, 0.02059740956986829, -0.021193476456083094, 0.0058679440661898365, -0.00693424080265624, -0.02690247031498223, -0.021021280514600144, -0.017179962650821397, -0.019550983064504625, 0.02194849401524985, -0.014663236832717221, 0.0007161077202119541, -0.01491490904199864, 0.02388239821567022, -0.015630189864249903, -0.01910062158271077, -0.012649856364498377, -0.035207663465816524, 0.004354597165062331, 0.00371216997634404, -0.005407648167336487, 0.03769789688421371, -0.0028462177052951975, 0.015630189864249903, -0.007927685302573415, 0.020570919032806292, 0.005321549730933765, -0.0031939232337000836, -0.026001747351394523, -0.006550108923146115, 0.027630995474441995, -0.003841317630948123, 0.013073725446585242, 0.003457185984268623, 0.007603159925420272, 0.023418791465345368, 0.004222137960494874, -0.0026756764910561277, 0.02262403623794063, -0.012014051810045586, -0.028081356956235846, 0.024266531492164088, 0.030518605575219057, 0.02075636210546523, -0.017656814669677248, -0.00755017605732879, -0.0022104133836730296, 0.020491441833685325, -0.00030589802502447845, -0.032346543902101454, -0.008272079048184304, -0.018372094560606015, 0.005944108085533062, -0.039234422539609216, -0.03205513309325955, 0.027789946147393944, 0.0025713648791007866, -0.009709261464307336, 0.013371758889692643, 0.009960933673588756, -0.01236506912124447, -0.014981139109943616, 0.040638491784404755, -0.023034660051496493, -0.006056698455981525, -0.011590182727958722, -0.002559774570644291, -0.012908152139367792, -0.007722372930134234, 0.008351554384660278, -0.010914640505267944, 0.013961203141641948, 0.017047502514931447, 0.017696552337915235, 0.012643233730232878, -0.0217895433422979, -0.007503815289164055, 0.006477256220935639, -0.03300884085626124, -0.014954646710236628, -0.021312689460797056, -0.030227196629022148, -0.016239502018995704, 0.0018511177796422715, -0.049089390339660005, -0.05059942545799351, 0.00011279731321734605, -0.016557403364899605, -0.018689997769154906, 0.017723044737622224, -0.02405459601979816, -0.031684246947941676, -0.017047502514931447, 3.33993892858309e-05, 0.029776835147228294, -0.006973978470894227, 0.03809527356659359, 0.014888417573614147, -0.005351352982112255, -0.004122793324238657, 0.01711373258287642, -0.031737231747355654, 0.016464682759892633, 0.014676483032570714, -0.003791645545650639, 0.0019951670598356, -0.012676347832882871, -0.013683038532653539, -0.004980466836794378, -0.0291410305927755, -0.0358699604199763, 0.011828608737386647, -0.007556799157255537, 0.013371758889692643, 0.005838140349350098, 0.002991922876885525, -0.014199629151069874, 0.005659320376617907, 0.0008216611342997324, 0.009073456909854545, 0.001403239902113293, -0.019511243533621644, -0.01826612682442305, 0.02649184650142636, -0.012656478998763878, 0.011947822673423106, -0.0177892748055672, -0.00035681205797353995, 0.007636274493731512, -0.02223990482409175, -0.0041559083582111455, -0.004185711609389636, 0.001072919719977838, 0.03396254489397294, 0.008530373891731223, 0.0013270758827700676, 0.012868414471129805, -0.008457522120843242, -0.02850522603832271, -0.003967153968419457, 0.004785089812737189, 0.026134205624639483, -0.013709530001038034, 0.0089012600370491, 0.008397914687163765, 0.004583089223092007, 0.03594943575645228, -0.0017385274091938083, -0.0029968900854152733, -0.02308764298826548, -0.008550243657172711, -0.021458394865218007, 0.012590249862141396, -0.009040342807204551, -0.008146242477882346, -0.00717929037767216, -0.018093930882940104, -0.0063249281822491885, -0.019590720732742612, -0.02159085500110796, -0.005301680431153523, -0.012338577652859976, -0.014689728301101714, -0.017100487314345422, -0.01279556176891933, 0.03512818812934055, 0.00601364900494954, -0.01924632512448673, 0.0058679440661898365, 0.013656546132946552, -0.019471505865383657, 0.010676213564517522, -0.008609850159529692, -0.012053789478283573, -0.03841317491249749, 0.008841653534692118, -0.0008758866299006835, 0.0017732979853173592, -0.0013262480534868802, 0.016226254887819716, -0.014504285228442776, -0.0007351487250477604, -0.0008419439994756318, -0.004953975368409884, -0.01764356940114625, -0.005348041199318258, -0.010239098282577163, 0.02223990482409175, 0.0011225919216906344, -0.03316779152921319, -0.0019736425671502316, -0.003306513604148547, 0.023167118324741453, 0.008523751257465724, 0.004632761308389491, -0.010782181300700485, 0.0011879936946911755, -0.0001967226540959593, -0.00037585306280934626, 0.004559909071840264, -0.016040811815160778, 0.017842257742336186, -0.020690132037520254, 0.022186920024677773, -0.0014777482628901435, -0.01812042328264709, -0.008219095180092822, -0.0032584969445868133, -0.01045765638920859, 0.04302275932926397, 0.013974448410172946, -0.016252747287526705, 0.014067169946502417, 0.038280718501897515, 0.012504150960077426, 0.028399258302139747, -0.02374993994242526, -0.009397982752668935, -0.019418522928614672, 0.00806676714140637, -0.010205983248604675, -0.021193476456083094, 0.007583291091301278, 0.019736424274518573, 0.016583895764606595, -0.030783523984353973, 0.00518246742643956, 0.028611193774505675, -0.03133985506497578, -0.045777909294151084, -0.037327010738895834, 0.018809210773868868, -0.006030206521935784, -0.0003501890744621047, 0.019524490664797636, 0.006076567290100519, 0.0017881996109066047, 0.021842526279066885, -0.025432172864886707, -0.015510975928213443, -0.01076893510084699, 4.569455152884986e-06, 0.014954646710236628, 0.009258899982513483, -0.03579048508350033, 0.005927550568546818, 0.023948628283615197, -0.0030184145781006417, -0.035366614138768473, 0.0013577070796470577, 0.013656546132946552, 0.006947486536848486, -0.015352024323938998, -0.017564094064670275, -0.0017120355915633792, -0.014504285228442776, 0.026650797174378314, -0.014292350687399343, -0.006093124341425516, 0.0034836776854837398, 0.00317736571671384, -0.001674781411174954, -0.006235518428713717, 0.005288434696961277, 0.012868414471129805, 0.004477121952570291, -0.0070203392390589614, -0.011722641932526178, -0.011278903084997826, -0.010245720916842662, 0.024173809024512122, -0.009835098034609293, -0.010874902837029955, 0.04469174512054943, 0.005569910623082435, -0.01745812632848731, -0.0021839214496272887, 0.003887678399112858, 0.006242141062979216, -0.013656546132946552, 0.0177892748055672, -0.02258429856970264, -0.005579845040141931, -0.00932513005045846, 0.006808404232354282, -0.01797471787822614, 0.004715548427659464, 0.006454076069683896, -0.026081222687870498, -0.008974112739259575, 0.02190875634701186, 0.01113319861189937, -0.036055401629990255, 0.023326070860338395, 0.005338106782258761, 0.009854966868728287, -0.008576735125557206, 0.0011126575046311374, -0.018491307565319977, -0.01714022498258341, 0.0021657085069052935, 0.004238695477481118, -0.019312555192431708, -0.017736290006153222, -0.019550983064504625, -0.004659253242435232, -0.015285795187316518, 0.028902604583347577, 0.21765701113884103, -0.014279104487545848, -0.01540500819203048, 0.0448242015311494, -0.0011333542844486307, -0.007781979898152463, 0.02041196649720935, -0.00947745808914491, -0.0025216925609726783, 0.011755756966498667, -0.0012062068702437944, 0.0009479113864126597, -0.022332625429098724, 0.003410825216103888, 0.014742712169193196, -0.03658523844826008, -0.003947285134300463, -0.025405680465179718, 0.014504285228442776, -0.03393605435691094, 0.008378045853044771, -0.003907547466062476, 0.016292484955764693, -0.029035062856592537, 0.022504823233226664, 0.0028710537479439396, -0.023961875414791188, -0.013232677050859688, 0.0174978639967253, 0.028876112183640588, 0.008954243905140581, -0.029405949001910417, 0.005778533846993117, -0.0042983019798381, -0.0014371826489536566, 0.0038843668491494844, -0.018080685614409103, -0.012199494882704524, 0.015722910469256876, -0.013630054664562057, 0.018014455546464126, 0.014663236832717221, 0.0223988554970437, 0.0018411832461674626, 0.011100083577926882, 0.016040811815160778, -0.021061018182838134, -0.003940662034373716, 0.015325532855554505, 0.0036459403740603112, -0.022557806169995653, 0.010543754359950065, 0.02140541192844902, 0.029352966065141428, -0.019696686606280586, 0.02094180331547918, 0.014239366819307861, 0.004208892226302627, -0.014292350687399343, 0.005506992337931456, 0.02245183843381269, 0.009411228021199933, -0.005457320252633972, 0.02254456090146465, -0.04085042725677068, 0.019709933737456574, -0.020544426633099303, 0.005980533970977052, -0.0009147965270631395, 0.00610968185841176, -0.0006730584438029369, -0.010623230627748536, -0.015352024323938998, 0.006470633121008892, -0.015616942733073912, -0.001962052258693736, 0.03322077632862717, 0.024875843646909892, -0.009212539680009997, 0.006275256096951704, -0.018822456042399866, -0.007106437675461684, 0.0010605016986534668, 0.018279373955599042, 0.0014454612910314666, -0.00966290116180385, 0.017550846933494284, 0.008205848980239327, -0.0013875104472408602, -0.023922135883908208, 0.009106571943827033, -0.011603428927812217, 0.017656814669677248, 0.0009835097336117421, 0.019537735933328634, -0.012378315321097965, -0.002962119625707034, 0.004977155519661628, -0.03753894621126176, -0.00577191074706637, -0.009523818391648398, -0.017855504873512177, 0.029061555256299526, 0.037009109392991936, -0.007490569554971808, -0.027392569465014067, 0.007040208073177955, 0.028319782965663773, -0.00782834020065595, -0.017842257742336186, -0.025988500220218532, -0.03306182193038523, 0.0066461417766083344, 0.010417918720970603, -0.0073581103504043515, 0.015391761992176987, 0.019365539991845687, -0.000296791466351997, -0.008397914687163765, 0.020703377306051252, -0.021802788610828898, -0.008636341627914186, 0.019405277660083674, 0.014729465969339701, 0.007960799405223406, -0.03706209046711593, -0.0023064462371352487, -0.004261875628732862, 0.005136106658274826, -0.02096829571518617, 0.019087374451534782, -0.025154007324575803, -0.00358964518883608, -0.004487056369629787, 0.0010803705327724607, -0.004059875504748926, -0.005901058634501077, -0.0077886025324179625, 0.016027566546629776, 0.017537601664963286, -0.001248428259161968, -0.005122860458421331, 0.011954445307688605, 0.002164052615508295, 0.02421354669275011, -0.024968564251916864, -0.003612825572918447, 0.003755219194545401, 0.002558118912077916, 0.00865621046203318, -0.00610968185841176, -0.025909024883742558, -0.0006473944554556954, 0.0029670868342367824, 0.02671702724232329, 0.002981988459826028, -0.04172465595800641, -0.029935785820180243, 0.001062985302918341, 0.01781576720527419, -0.011232542782494338, -0.009106571943827033, 0.04384400323108572, -0.009080080475442539, -0.010848410437322967, -0.01600107414692279, -0.16912394815451287, 0.029405949001910417, 0.0064938137379218835, -0.007073322641489196, 0.014795696037284678, -0.016371960292240667, 0.015524221196744443, -0.007742241764253228, -0.018544292364733955, -0.011232542782494338, 0.033803594221020986, -0.020054327483067465, -0.027339584665600093, 0.0038115143797696326, -0.004006891636657444, 0.002245183843381269, -0.002099478671790941, 0.012398184155216959, 0.011590182727958722, 0.0018693308387795786, 0.019259572255662723, 8.361489034550399e-05, 0.009523818391648398, 0.010788803934965986, -0.02094180331547918, 0.013067102812319742, 0.02982981808399728, 0.03624084656529418, 0.026359386365536412, 0.004877810883405411, 0.004612892474270497, -0.0134975954599946, 0.031074934793195876, 0.012941266242017784, 0.020332491160733376, 0.009444343055172421, -0.018279373955599042, -0.018213143887654066, 0.006374600267546673, 0.008046898307287376, 0.03266444524800536, 0.0012310429128925366, 0.008709194330124662, 0.02042521362838534, 0.005374533133363999, 0.008782047032335137, 0.017524356396432288, -0.015630189864249903, 0.004602958057211001, -0.02161734553816996, 0.01426585921901485, -0.0316047716114657, 0.029803325684290293, 0.01046427902347409, 0.010994115841743918, 0.03600241683057628, 0.00662296162535659, 0.01408041614635591, -0.01076893510084699, -0.025008301920154852, -0.00625869857996546, -0.015047368246566098, 0.019696686606280586, 0.010199360614339176, 0.005778533846993117, -0.013802251537367503, -0.012398184155216959, -0.007848209034774943, -0.033353232739227134, 0.004371154682048575, -0.009066834275589046, -0.02374993994242526, 0.014491039959911776, -0.027657487874148984, 0.02488908891544089, 0.019590720732742612, -0.025458663401948706, 0.023273086060924417, 0.008245586648477314, -0.0031177592143568585, -0.02488908891544089, 0.02322010312415543, -0.01070932859849001, 0.011159690080283863, -0.013226054416594187, 0.011358379352796296, 0.010146376746247694, 0.005927550568546818, 0.013212808216740694, -0.003602890923028326, -0.0018759538222910138, -0.025140762056044805, -0.022438593165281687, -0.012014051810045586, -0.006341485699235433, 0.0018262816205782174, -0.0028892669234965584, 0.004364531582121828, 0.0036095140229550735, -0.004308236396897596, 0.00932513005045846, -0.0012269036500612875, -0.018637012969740928, 0.0073912249187155915, 0.020875575110179193, 0.007450831421072573, 0.021829281010535887, 0.0074177168527613324, -0.0036360057241701907, -0.016862059442272505, -0.016226254887819716, 0.008464144755108741, 0.011318640753235814, -0.0023163806541947455, -0.00883503090042662, 0.03952583334845112, -0.01540500819203048, -0.024518202770123013, 0.05817609158672305, -0.01831911162383703, 0.0573813382219633, 0.0074177168527613324, -0.022491577964695666, 0.004092990073060167, 0.012351822921390976, -0.01929930992390071, -0.1163521831734461, -0.0013254201077883808, -0.004040006670629932, 0.03112791959260985, -0.017590586464377264, 0.020491441833685325, -0.020902065647241192, 0.0037585305116781507, -0.011232542782494338, 0.012272347584915001, 0.01202729800989908, -0.014663236832717221, -0.012225987282411513, -0.0017302486507006862, 0.011848478502828136, -0.01188159260547813, -0.03250549457505341, -0.004636073091183489, 0.0005256975554385787, 0.0349957279934506, 0.006252075480038713, -0.0016838879989512635, -0.022557806169995653, -0.009424474221053428, 0.01776278240586021, 0.010100016443744208, -0.02355125160123532, 0.006242141062979216, 0.019617211269804608, -0.010848410437322967, 0.004318170813957093, -0.00996755723917675, 0.011934576473569611, -0.019842392010701537, -0.012338577652859976, -0.009596671093858873, -0.029750342747521304, 0.011570313893839728, 0.01243129825786695, -0.025697091274021623, -0.004218826643362124, -0.015140089782895567, -0.005328172365199264, -0.012153134580201038, -0.012901528573779797, -0.004314859496824344, -0.02519374499281379, -0.007894570268600926, 0.026624304774671325, 0.017246190856121384, -0.030439130238743083, -0.0070203392390589614, -0.019339047592138697, 0.0024918893097941874, 0.026081222687870498, 0.010007294907414739, 0.03679717392062601, -0.010444410189355097, -0.0007049314428123641, -0.007483946455045061, -0.017232945587590386, 0.01500763057832811, -0.012252478750796006, 0.03949934281138912, 0.0006846486358441207, 0.0013841988972774866, -0.004006891636657444, 0.0006411854447935098, 0.011735888132379673, -0.020623901969575278, -0.008523751257465724, 0.016756091706089542, -0.020451704165447337, 0.01678258410579653, -0.012325331453006483, 0.01212001954622855, -0.018703243037685904, -0.021008033383424156, 0.01977616380540155, -0.036982615130639954, 0.005715615561842138, -0.018332356892368028, 0.008305194082156792, -0.01095437817350593, -0.005752041912947376, -0.005788468264052614, 0.017603831732908262, -0.0007831652099865259, -0.01834560402354402, -0.004198957343581882, 0.004473810635437541, 0.00385125204800762, 0.02254456090146465, -0.007219028045910147, -0.009013850407497564, -0.0002854082316316102, -0.01531228665570101, -0.01714022498258341, 0.02335256139740039, -0.00023159667977608079, -0.03396254489397294, -0.007007093039205468, -0.023511513932997333, 0.026597812374964336, 0.010729197432609004, 0.019021144383589806, -0.004914237234510649, -0.024293022029226084, -0.0003412894731104201, 0.0011126575046311374, -0.018093930882940104, -0.00015377688545116863, -0.0076627664277772525, 0.030333164365205112, 0.002806479804226586, -0.013987694610026441, -0.03936688267549917, -0.017908487810281162, 0.002831316079705952, -0.013828743937074492, 0.0048579420492864175, 0.018756225974454893, -0.002033249069507213, 0.00693424080265624, 0.014504285228442776, 0.019908622078646514, 0.004702302693467217, 0.007775356798225716, -0.02900857045688555, 0.007046831173104702, -0.0040797443388679204, 0.005334795465126011, 0.0013742644802179898, -0.03637330297589415, -0.021974986414956838, 0.022213412424384762, 0.005112926041361834, -0.02642561643348139, -0.013358513621161645, 0.002420692498980711, -0.0007380462439542284, 0.004437384284332303, -0.022941937583844527, -0.027578010675028016, 0.0028114472455869582, 0.0024736761342415686, -0.023869152947139222, 0.01695478190992447, -0.02140541192844902, -0.025021549051330843, 0.01797471787822614, 0.017749537137329213, 0.019312555192431708, 0.023273086060924417, 0.0028876112649301837, -0.032240578028563484, -0.020875575110179193, 0.013630054664562057, 0.02343203673387637, 0.007781979898152463, 0.0018875440143321974, 0.021246461255497073, -0.003755219194545401, 0.018226389156185064, 0.00037668092119636166, -0.012047166844018074, 0.011179558914402856, -0.012484282125958432, 0.004500302103822035, 0.014663236832717221, 0.0031078245644667376, -0.02372344754271827, 0.014279104487545848, 0.012841922071422816, 0.0019835769842097284, 0.01292139740789879, -0.00042718101040000145, 0.0018610521967017683, -0.028346275365370762, -0.006656076193667831, -0.01341149655793063, 0.03849265024897346, -0.01974967140569456, 0.015272548987463023, -0.022345872560274715, 0.017126977851407422, 0.019047636783296795, 0.01168952689855369, -0.0033826776234917723, -0.0013535677004004967, 0.004195646026449133, 0.019868884410408523, -0.0006531895514762873, 0.009351621518842952, 0.02324659552386242, -0.01325916851924418, 0.007053453807370202, 0.01162992039619671, -0.010828541603203973, -0.003533350003611848, 0.01715347025111441, 0.0239353830150842, -0.005361287399171752, -0.008013783273314888, 0.002375987389382351, -0.021352427129035043, -0.006457387386816646, -0.010292082150668645, -0.02389564534684621, 0.003735350360426407, -0.010967624373359425, 0.010662968295986524, 0.017034257246400446, -0.006705748278965315, 0.0072653888140748815, 0.009960933673588756, -0.003586333638872706, 0.005245385245929292, -0.014636744433010232, -0.006444141652624399, -0.019590720732742612, 0.03049211503815706, -0.01245779065757394, 0.01335189005557365, 0.009888081902700775, 0.0038380060809847494, -0.003523415586552351, 0.009285392382220472, 0.017087240183169435, -0.02096829571518617, 0.009378112987227447, -0.008848276168957617, -0.001874298047309327, -0.052718772731072824, -0.028346275365370762, -0.02061065670104428, -0.00957680225973988, 0.0002392544789953283, -0.010345066018760127, 0.0396053086849271, -0.02258429856970264, 0.023392299065638382, 0.013338644787042652, -0.012550512193903409, 0.007404471118569086, -0.0011350100594303173, 0.018067438483233115, 0.004069809921808423, 0.00019899930104003667, -0.0038644980150304904, -0.007159421543553166, -0.01433208835563733, -0.02325984079239342, 0.01212001954622855, 0.00098930488783999, -0.010530509091419067, 0.011749133400910673, -0.013027365144081754, -0.02242534789675069, 0.002472020475675194, -0.029352966065141428, -0.020504688964861316, 0.0036658092081793053, -0.005828205932290601, 0.0012906496480801417, -0.0024554629586889497, -0.02030600062367138, -0.012232609916677012, 0.0013792316887477382, 0.014941401441705629, 0.009696015264453841, 0.013987694610026441, 0.006821650432207776, -0.002164052615508295, -0.005954042502592559, 0.02237236309733671, -0.006268632997024957, 0.007735619129987728, -0.004944040951350388, 0.0037684651615682713, 0.009027096607351057, -0.0023445282468068616, 7.424960591819847e-05, -0.013027365144081754, 0.00017747467738744212, 0.025962009683156536, -0.001568814024237926, -0.005920927468620071, -0.011517330025748247, -0.011590182727958722], "valueType": "FLOAT"}, "id": 1183189172623}, {"scalarData": {"year": {"fieldType": "INT64", "fields": [{"data": 1995}]}, "genre": {"fieldType": "STRING", "fields": [{"data": "animated"}]}, "text": {"fieldType": "STRING", "fields": [{"data": "Toys come alive and have a blast doing so"}]}}, "vector": {"binaryValues": [], "dimension": 1536, "floatValues": [-0.020142471418994806, -0.008391619815784407, -0.004731994616289453, -0.012015714131018736, -0.020491313158240564, 0.0191993025083917, -0.007687472959222365, -0.0029425578732186525, -0.008811523323551411, -0.03266206826921797, -0.002868267209629606, 0.00796525572391434, 0.017442165193376883, -0.008985945124496778, 0.014560977514033017, -0.0017199912847284287, 0.01745508449893803, 0.011040244162545294, 0.00313958962304914, -0.023139938436323938, -0.006405150857221875, 0.012545439186635412, -0.006750764167061077, -0.019457703520774486, 0.0024322129400968107, -0.019858228070199768, 0.0010715626586887935, -0.020891837707665846, 0.008772763544222989, 0.018992580580898484, 0.008578960922290923, -0.020194150503884376, -0.013889131715341311, -0.023979747314502926, -0.02687385429940794, -0.019315583709021946, -0.01180253161942246, -0.012474378349436653, -0.009806373181689065, 0.010504059454148045, 0.0009270187891215261, 0.024444872117023904, -0.005943256346752428, -0.0014737014228173527, -0.013889131715341311, 0.006750764167061077, -0.012564819076299623, 0.021279441088885003, -0.0029167176322820007, -0.01020689679979186, 0.026512091391956056, 0.016098471733348493, -0.02173164658584483, -0.005164818826601339, 0.0039632475066317145, -0.006679703329862318, -0.01082060292949093, -0.0149615020634583, 0.023385422005790555, -0.02321745985762576, -0.0058754258016052, -0.007138367548280234, -0.004803055453488212, 0.02003910952392571, -0.020026190218364562, 0.00012031863641319933, -0.0013356176134842483, 0.0016876910417652693, 0.02025875261962505, 0.002575949294858851, 0.02635705041199739, -0.00651174164735877, 0.011421387890983877, 0.006298559601423736, 0.01565918740459479, -0.006065997665824491, -0.024664513350078267, 0.0031089044096964356, 0.010426538964168711, 0.0074032300760885714, 0.016679877736499718, -0.009386468742599572, -0.008016935740126399, 0.024121868988900445, 0.018204452650254048, -0.011964033183484189, -0.0025097336629067665, 0.01939310326767879, -0.011498909312285699, -0.001255674404466266, 0.013772850514711067, 0.02028459123074735, -0.004192579615840672, 0.0085402011429625, 0.017080402285925, 0.024535312843886874, -0.01930266254081582, 0.019005499886459633, -0.013462767623471244, -0.025917766083243685, 0.006392230620338238, 0.004961327191159655, -0.00764225259579088, -0.005019467325813533, 0.008753382723236289, 0.014328416044095016, 0.021111480803365185, -0.013462767623471244, 0.023747184913242438, -0.00757119175859212, -0.014431777007841623, 0.020026190218364562, 0.01578838977343116, -0.049148145246430595, -0.0006565037158842528, 0.001349345306965457, 0.005184199181926794, 0.017287124213418215, -0.02036211265204917, -0.001984853812536766, 0.015723789520335464, 0.02718393812197025, 0.02497459717264058, 0.00371776510131821, 0.012248275600956737, 0.009018245251044627, -0.007887734302612517, -0.011440768711970577, -0.002750371095804218, -0.01343692714970397, 0.010691401491977049, -0.002448363236201357, 0.009018245251044627, -0.01629227435528056, -0.041473593455414355, 0.012190135000641615, -0.0019170231509742274, 0.03284294972294391, -0.002643780072836701, 0.0282692268443259, 0.027597381976956683, 0.020103709777021406, -0.017519686614678703, -0.008430379595112829, -0.0077520732123180615, 0.02290737603506345, 0.007396769957646753, 0.0028698821228247498, -0.002542034022285237, 0.0010069620563471638, 0.0031848102193112477, -0.007493670802951542, 0.019754866175130673, -0.005342470453936993, 0.0009883893904499021, 0.009321868489503875, -0.0026841554638521335, 0.024212309715763415, -0.005000087436149322, -0.01860497533703435, 0.015297424497142907, 0.008333479215469284, 0.02271357527577636, -0.02031043170451462, 0.009244347999524541, 0.029767961284312954, 0.0038049760017908932, 0.01842409388330841, 0.009774072123818728, -0.010349018474189378, 0.007099607303290567, 0.031059973796806792, -0.03284294972294391, 0.015452466408424063, -0.039587255634208146, 0.02801082583194311, -0.0028408118226671887, 0.014573897750916654, -0.018760018179637995, -0.02922531692313513, 0.003217110578689718, -0.010290877873874255, 0.010058315472613766, 0.017713487373965792, 0.00291994769150291, 0.005549192381430208, 0.00981283283446964, -0.01887629938026824, 0.020478393852679414, -0.003213880519468809, 0.005500742191608436, 0.0207755565070356, -0.006873505020471896, -0.00981283283446964, -0.6813555922269161, -0.00429594057958728, 0.022300131420789928, -0.025452641280722707, -0.011007944035997447, 0.022325971894557203, 0.005830205438173714, 0.00290218248220322, -0.016046792648458923, -0.011208206310710088, -0.020194150503884376, 0.019922828323295467, 0.01569794904656819, -0.004589873407553178, 0.0039341772064741525, -0.015762549299663885, 0.013359406659724637, -0.023630903712612193, 0.00020389568388257522, 0.0255818417869141, 0.005920646165036685, 0.020439634073350994, -0.0011571584131357113, -0.009192667051989994, 0.0009488215142396969, 0.009082846435462812, 0.0009851593312289928, -0.0024305980269016675, -0.008139677524859706, 0.011485989075402062, -0.0013937582137993705, 0.013914972189108586, -0.0017942819483174751, 0.02359214393328377, 0.04752020843760717, -0.001791052005511877, -0.005927106283478503, 0.0490447833513615, -0.00274068091814149, 0.03633138574185125, -0.021873766397597375, -0.002750371095804218, 0.0028650371504086967, 0.006931645620787018, 0.0058237453197318954, 0.003918027143200229, 0.01214491463721013, -0.009560890543544939, -0.00261470977267914, -0.005907725928153048, 0.01273924087724499, -0.017377564940281184, 0.013682409787848095, -0.0019008729712849922, 0.006107987737204445, 0.03491016899787606, 0.02834674826562772, 0.011305106690353632, -0.0031331297374379437, 0.00893426417696223, -0.013979572442204283, -0.010594500181011015, -0.016008031006485523, -0.029121955028066034, -0.02801082583194311, 0.039768137087934086, 0.0034916630513301614, 0.00782313404951682, -0.005571802563145951, -0.021860847092036225, 0.0057882149011325166, 0.0012895896770398802, -0.02470327312940669, -0.0049419468358342, -0.004467132088481115, 0.018824618432733694, 0.016085552427787347, -0.018475774830842957, -0.009980794982634433, 0.01584007072096571, 0.003517503292266813, -0.0019800088401207136, -0.03881204887176983, -0.02050423432644669, 0.0362021815103699, 0.0019428633919108792, -0.0019041030305059013, -0.009877433087565337, 6.354075734966127e-05, 0.004851506108971229, 0.020723875559501052, 0.029483719798162892, -0.0029651680549343954, -0.00927664812607239, -0.0032187254918848614, -0.0085402011429625, -0.010200436215688797, 0.005252029727074023, 0.0013606503978233285, -0.019754866175130673, -0.019948668797062738, -0.01551706666151976, 0.01264880015038202, -0.0002341772125922357, -0.01934142232014424, 0.01662819678896517, -0.007829593702297395, 0.022881537423941153, 0.0288118730681487, -0.02891523310057282, -0.011182365836942813, 0.00041586642850594024, 0.0036790048563285433, 0.004977477254433579, -0.01290074244130672, -0.027649061061846253, 0.016356874608376256, -0.001052182419778649, 0.03723579301048095, -0.026512091391956056, 0.013695330024731733, 0.004325010879744841, 0.01205447391034716, -0.014832300625944417, -0.01020689679979186, 0.018269052903349743, -0.008869663923866533, -0.017480924972705304, -0.009231427762640906, -0.02556892248135295, 0.01930266254081582, -0.007157747903605689, -0.014199214606581134, -0.010465298743497133, 0.011712090892559488, 0.010723701618524897, 0.0038017459425699843, 0.004328241171796372, 0.04739100793141578, 0.01366948955096446, -0.029767961284312954, 0.009392929326702635, 0.0007122217717836932, 0.005852815619889457, 0.02165412516454301, -0.017532605920239853, -0.008365779342017134, -0.019212221813952848, -0.005148668763327415, -0.012887822204423083, -0.005016237499423246, 0.00990327356133261, 0.004299170871638811, -0.011692711002895277, 0.00014222228633010975, 0.006075687610656596, -0.017803928100828766, 0.009851593545120552, -0.0041602794892928235, -0.011298647037573058, 0.0018814928487901586, 0.02427690996885911, -0.001934788360273917, -0.007390309839204934, -0.0202716719251862, 0.003276866092199984, -0.01864373697900775, 0.006563422129232073, -0.024018507093831347, -0.026796332878106118, 0.0016909209845708676, -0.023527543680188074, -0.005959406410026352, 0.014948581826574662, -0.004660934244751938, 0.006298559601423736, -0.02034919334648802, -0.030103885580642538, 0.010426538964168711, -0.0009213662436925904, 0.006250109411601964, -0.009993714288195581, -0.002685770377047277, 0.0019832386665110005, 0.0319643810654365, 0.0041505890787994736, 0.03589209955045257, 0.004060148351936503, -0.030594848994285814, 0.019263902761487397, 5.319456485714809e-05, 0.03330807452546489, -0.0069251855023452005, 0.011634570402580155, -0.020840156760131297, -0.009425229453250483, 0.0009157136982636548, 0.018075250281417675, 0.023734265607681288, 0.036977391998098165, 0.001346115247744548, 0.005248799900683735, 0.020142471418994806, -0.01574962999410274, 0.0017522916441068991, -0.010290877873874255, 0.013682409787848095, -0.02888939448945052, 0.01824321242958247, 0.015310344734026544, 0.0003407682210078387, -0.016692798904705843, 0.011725011129443125, 0.001082867749546665, 0.03149925998820548, 0.02031043170451462, -0.008404540052668044, -0.001243561740595512, -0.00012506274223816815, -0.022868616255735028, 0.010342557890086314, -0.027028895279366607, 0.03173181866417601, -0.0033172414832154163, -0.005684853937385909, 0.016770318463362688, -0.006970405865776685, 0.008830903213215623, -0.004034308343830473, -0.02839842921316227, -0.019703187090241103, 0.015969271227157102, 0.020000349744597287, 0.014315495807211379, 0.0013105849455604791, -0.0020171541719152366, 0.01851453461017138, 0.0028036664908726652, 0.020672196474611482, 0.0362021815103699, 0.018850458906500965, 0.038191881226645207, 0.010969184256669023, -0.003582104011023754, 0.0012443693136083948, 0.02173164658584483, 0.006705543337968348, -0.008042776213893673, -0.0303622884556703, 0.0008575730979485325, -0.025245919353229493, -0.00934770896327115, -0.03961309424533044, 0.014548058208471869, 0.01910886178152873, -0.0023433871264289838, 0.024858315972010336, -0.011834831745970307, 0.013217284985327118, 0.018850458906500965, -0.0012274116773215878, 0.015258664717814485, 0.016137233375321892, 0.02173164658584483, -0.006059537547382672, 0.01322374556943018, 0.009082846435462812, -0.012493758239100865, -0.016770318463362688, -0.021072719161391786, -0.008688782470140592, 0.009173287162325783, 0.0032461806460166573, -0.024690353823845542, 0.026667132371914724, 0.0031056743504755263, -0.014431777007841623, 0.01246791776533359, 0.002784286368377832, 0.028553470193120937, 1.599874519740579e-05, -0.022274290947022657, 0.010536359580695893, -0.0012823221020004899, 0.0056073329817453305, -0.028734351646846876, -0.04888974423404781, -0.009192667051989994, -0.0070091665764275965, 0.011175906184162239, 0.004861196053803335, 0.008798603086667774, 0.01944478421521334, 0.01010353583604525, 0.0085402011429625, -0.0008171977651407554, 0.008837363797318686, -0.023863466113872682, 0.014354255586539801, 2.3455573333819675e-05, 0.007312789349225601, 0.011880052109401792, -0.016873680358431783, -0.041111830547962476, 0.010684940907873986, -0.003212265373443043, 0.001493889118325069, -0.028656832088190032, -0.006282409538149811, -0.009948493924764096, 0.006705543337968348, 0.0019364033898843717, -0.008727542249469014, -0.019225142982158973, -0.00013778099855710115, 0.003908337198368124, 0.003060453987044041, -0.01017459667324401, 0.025400960333188158, 0.005332780509104887, -0.01324312545909439, -0.012958883041621842, 0.013579048824101488, 0.005765604719416773, 0.12010545663736287, 0.007138367548280234, -7.792448748852632e-05, 0.0019670886032370763, -0.01883753773829484, -0.0009092536380294918, -0.02257145360137884, 0.0026583152229154817, 0.012351636564703346, -0.002638935100420648, 0.0125066784759845, 0.002546879227531912, 0.009011785598264052, -0.015762549299663885, -0.011214665963490661, -0.0037080751564861044, 0.0034948931105510707, 0.001676385834492087, 0.010187516910127647, -0.04671916306404656, 0.0016537756527763444, 0.03116333569187589, 0.00932832814228445, 0.01221597547440889, 0.017610127341541673, -0.00909576574102396, -0.019186381340185577, 0.03555617525412298, -0.00974177199727088, -0.03175766100058826, 0.0007081841977575566, -0.01537494591844473, -0.004363771124734507, -0.009186207399209419, -0.008947184413845868, -0.02529760030076404, 0.006117678147697795, 0.02409602851513317, 0.010284417289771192, -0.009993714288195581, 0.02470327312940669, 0.01813985239715835, 0.010646181128545564, -0.023734265607681288, 0.00866294199637332, -0.013566128587217851, 0.001820122189254127, 0.002364382394949583, 0.0036370145521179673, -0.008566040685407285, 0.061654822791092606, -0.014560977514033017, -0.011873592456621219, 0.0052229594269164615, 0.009709471870723033, -0.000378721096711417, -0.01675739915780154, -0.014741859899081446, 0.011376167527552392, -0.02648625091818878, -0.02034919334648802, 0.006269489301266175, 0.022054649713968293, -0.010704321728860686, -0.008927804524181656, -0.03573705670784892, -0.019599825195172005, -0.019121781087089878, -0.02811418586436723, 0.006983326102660323, -0.033643998821794474, -0.013876211478457674, -0.040155738606508264, -0.007584111995475757, 0.017015802032829302, -0.002201265917692709, 0.00012566837834208865, -0.004531732807238056, -0.0038469665388320916, 0.01961274636337813, 0.0018508075190221429, -0.012048014257566585, -0.0036305544336761486, -0.014806460152177143, 0.0050905281630122924, -0.00333662160571025, -0.000943976425408333, 0.0057494546561428495, -0.0029474028456347055, 0.0092960280157366, 0.02102103821385724, 0.0009229812150953895, 0.03276543016428706, -0.004279790516313355, 0.006059537547382672, 0.019599825195172005, 0.02736481957569619, 0.011641030055360728, 0.004082758533652246, 0.012409777165018468, -0.0018185072760589836, -0.024793715718914637, -0.016498996282773775, 0.008669401649153892, -0.006233958882666795, -0.0070479268214172636, -0.012041553673463523, 0.02359214393328377, -0.0009068310936138098, 0.006996246339543959, 0.0007832824343594859, 0.01329480547530645, -0.002248101194319338, -0.014095853642834527, 0.004231339860830339, 0.012067394147230796, 0.0007800523751385767, 0.012099694273778645, -0.012409777165018468, -0.005765604719416773, -0.004938716543782668, -0.046176518702868735, 0.012836141256888535, 0.00506791798129655, -0.013475687860354881, 0.005878655627995487, 0.012461458112553015, -0.0036596247338337097, -0.019741946869569524, 0.02736481957569619, -0.0033883020875835534, 0.0022642514904238843, 0.012500218823203927, -0.006847665012365866, -0.017390484245842334, -0.008184897888291192, -0.007099607303290567, 0.01713208137081457, -0.015310344734026544, -0.012461458112553015, -0.01361780860342991, 0.022648975022680665, 0.002231951131045414, -0.011621650165696518, 0.01864373697900775, -0.028088345390599956, 0.0009480139994344696, 0.02142156276328252, -0.0008640331581826954, 0.022739415749543634, -0.018617896505240476, 0.03103413332303952, -0.046202357313991034, 0.004299170871638811, 0.010432998616949286, -0.04199039920546988, -0.01080122210850423, 0.005397381227861828, 0.03343727503165628, 0.028191707285669054, 0.05628005267626901, -0.014677258714663261, 0.016460236503445354, -0.01010353583604525, 0.00708668706640693, -0.01131802692723727, 0.003209035314222134, -0.0050356178547487015, -0.02971628219942338, 0.024586991928776447, 0.003869576720547834, 0.012396857859457319, 0.006608642492663559, -0.013081623895032661, -0.00965133127040791, 0.019548144247637456, 0.0029554778772716674, -0.01722252396032252, -0.016188912460211466, -0.004522042862405951, 0.008876124507969596, -0.001128895685991033, 0.015969271227157102, 0.004283020342703643, -0.020930597486994267, 0.013101003784696873, 0.017713487373965792, 0.007726233204212032, 0.0027519860089993617, 0.015400785460889514, 0.01855329625214478, -0.028734351646846876, 0.008785682849784138, 0.006544041773906618, 0.0025274988722064563, 0.005087298336622005, -0.013139764495347784, -0.02183500661826895, 0.012590659550066897, 0.008475599958544315, 0.02197712829266647, 0.00031270732890872557, 0.0008285028559986267, -0.0027099957047887853, -0.008178437304188128, 0.006770144056725289, 0.011524748854730484, -0.02174456589140598, 0.004919336654118457, -0.00504207797319052, -0.013914972189108586, -0.027752422956915348, -0.005659013463618635, -0.038114361667988365, -0.011259886326922146, 0.003840506420390273, -0.013914972189108586, 0.019057180833994183, -0.021964207124460344, 0.00189279793964803, -0.001014229631386554, 0.0019751636348740386, 0.02202880924020102, 0.007868354412948305, 0.011938192709716914, 0.02164120585898186, -0.001001309510918228, -0.006795984530492563, -0.012997642820950265, -0.020607594358870808, -0.013824530530923126, 0.016860759190225658, 0.014987341605903084, -0.017946049775226285, -0.02788162346310674, -0.0004384766393255107, 0.0024305980269016675, -0.019406024435884916, -0.019160540866418302, 0.00443160213554298, -0.013811611225361977, 0.01749384614091143, -0.03023308608683393, 0.0005470864202022681, 0.004454212317258723, 0.008927804524181656, -0.030336447981903027, 0.004334700824576946, -0.012364556801586983, 0.0019929288441737285, -0.015594588082821582, 0.011686250418792215, -0.017080402285925, 0.015542907135287033, 0.001514884386845668, 0.003914796851148697, 0.024225229021324565, 0.014754780135965083, -0.024057268735804747, -0.008746923070455714, -0.012726320640361354, 0.036770668207959975, 0.021589524911447312, 0.010038934651627066, 0.007848974523284095, 0.004974246962382048, 0.00708668706640693, -0.007784373804527154, 0.024548232149448023, 0.029328676955559248, -0.009586731017312214, 0.004231339860830339, -0.002698690613930914, 0.02728729815439437, -0.004777215445382182, -0.010284417289771192, -0.002898952422982311, -0.004935486717392381, -0.014728939662197809, -0.003160584891569739, 0.008281798267934737, 0.008708162359804804, -0.0015423396573927745, -0.024677434518284393, -0.014522217734704594, -0.025271759826996764, 0.00017916575397524003, 0.0007800523751385767, 0.015685027878362064, -0.010626800307558864, -0.01846285552528181, 0.002571104322442798, -0.002690615582293952, -0.003905106906316592, 0.009677171744175183, -0.002105979985583064, 0.008398079468564981, 0.035271935630617895, -0.013004103405053327, 0.007112527540174204, -0.021279441088885003, -0.0034012223244671907, -0.0037113052157070137, -0.019212221813952848, 0.02271357527577636, 6.762876830931832e-05, -0.00934770896327115, 0.005633173455512605, -0.027390660049463465, 0.011059624983531994, -0.00017886294319923674, 0.012474378349436653, 0.011240506437257936, -0.012616499092511682, -0.0031089044096964356, 0.011292187384792483, -0.010038934651627066, -0.016369795776582385, -0.015917590279622553, 0.00907638585135975, 0.010626800307558864, -0.0117314707822237, 0.032326147698178334, -0.01953522494207631, -0.001668310802855125, 0.010445918853832923, 0.006560192302841787, 0.0029522480508813805, -0.024871235277571485, -0.009799912597586002, -0.015581667845937945, 0.004786905390214288, -0.012758620766909201, -0.023049497709460968, -0.02068511578017263, -0.001192688831735091, -0.008113837051092433, 0.01361780860342991, -0.0007186818320178562, 0.004938716543782668, 0.003039458718523442, 0.02173164658584483, 0.018617896505240476, 0.016821999410897237, 0.006634482966430833, -0.0004255565188571847, -0.002997468414312866, -0.0066732432114205, -0.024690353823845542, -0.0018281973373064002, 0.0002303415609231476, 0.032300305361766084, -0.003633784492897058, -0.033463117368068535, -0.01634395530281511, -0.0038017459425699843, -0.0223905721476529, -0.005216499308474643, -0.017700568068404646, 0.020736796727707178, 0.03426416274162914, -0.004460672435700541, 0.008578960922290923, 0.016318114829047835, 0.0038178962386745305, 0.015426625934656789, -0.019134700392651027, -0.004027848225388655, 0.022351812368324477, -0.0025727194684685636, -0.00013374345363479235, 0.0018475774598012335, -0.01782976857459604, -0.026124488010736902, 0.03568537948560433, -0.003018463682833465, -0.0009795067858000572, 0.012099694273778645, -0.00866294199637332, 0.00114585332227784, -0.025375119859420883, 0.02028459123074735, 0.002487123481191024, 0.020736796727707178, 0.028630991614422757, -0.03596961910910941, -0.015116543043416966, -0.014677258714663261, -0.008139677524859706, -0.014005412915971556, -0.01440593653407435, -0.0028327367910302263, -0.005487821954724799, -0.003417372387741115, -0.008830903213215623, -0.015129463280300603, -0.027778263430682622, -0.009554430890764364, 0.023979747314502926, -0.019173462034624427, -0.004444521906765373, 0.00046350939456076305, 0.01182191150908667, -0.027597381976956683, -0.02294613767703685, 0.020052030692131836, 0.009554430890764364, 0.00837869957890077, -0.010439459201052348, -0.0240055877882702, -0.00027899389138067674, -0.012526058365648712, -0.010917503309134475, -0.02267481549644794, -0.018617896505240476, 0.0011014404154439264, 0.003446442687898676, -0.049509908153882475, 0.01573670882589661, 0.0018766477599587948, -0.028966914048107365, -0.007564731640150302, -0.0019509384235478413, -0.0019170231509742274, -0.012228895711292527, -0.0024305980269016675, 0.0103877782535178, -0.0021398952581566776, 0.0141216941166018, -0.0031412047690749056, -0.008320558978585647, -0.022997818624571398, 0.005797904845964622, 0.017842689742802165, -0.030129726054409812, 0.01810109075518495, 0.24434535927516995, -0.03715827345182411, -0.017067481117718875, 0.035426974747931585, 0.01846285552528181, 0.00859188115917456, 0.010704321728860686, -0.02413478829446159, -0.02811418586436723, -0.012816761367224323, -0.00773269332265385, 0.007545351284824846, -0.00026809252882159133, -0.0015100392980143041, 0.004786905390214288, -0.010814142345387868, -0.010898123419470265, -0.004722304671457347, -0.01726128373965094, -0.01772640854217192, 0.005326320390663069, -0.017015802032829302, -0.014212134843464772, -0.02118900036202203, 0.01372116956717652, -0.012713400403477716, -0.005668703874111985, -0.003021693509223752, 0.006963945747334867, 0.011576429802265033, -0.012371017385690046, -0.004919336654118457, 0.008385159231681344, -0.01907010013955533, -0.002763291099857233, -0.015568747609054308, -0.005878655627995487, -0.004199039734282491, 0.029354517429326522, 0.022959056982597998, 0.004105368715367989, 0.013979572442204283, 0.0022222609533826864, -0.0038340463019484548, -0.0012475993728293042, 0.0372099506740687, -0.023488782038214674, -0.0004586643348332269, 0.0010109995721656448, -0.003113749382112488, -0.036408905300508096, -0.014974421369019447, 0.00261470977267914, 0.017739327847733067, -0.006233958882666795, -0.0017845918870700586, 0.011576429802265033, 0.0027245308548675662, 0.01573670882589661, 0.007816674396736247, -0.009967874745750796, 0.02364382301817334, -0.032041904349383296, 0.023617984407051044, -0.028295067318093173, 0.024444872117023904, -0.010077695362277978, 0.029354517429326522, 0.020387953125816444, 0.0016699258324655796, -0.005058228036464444, -0.002711610617983929, -0.022997818624571398, -0.0036693146786658153, -0.013107464368799936, -0.030103885580642538, 0.0003896224301666747, 0.005000087436149322, 0.01785560904836331, 0.011615189581593455, -0.01205447391034716, -0.0027859012815729754, -0.0034012223244671907, -0.010898123419470265, -0.010323178000422104, -0.02303657840389982, 0.022868616255735028, -0.015219904007163573, -0.008501440432311588, 0.0020946748947251923, 0.0004667394246778445, -0.011550589328497759, 0.0046867742528579675, -0.0013517677931734835, 0.001082060292949093, 0.0049871671992656845, -0.003882496724600849, 0.016266433881513286, 0.007926495013263429, -0.004948406954276018, -0.02979380175808023, -0.008817983907654474, 0.029070275943176464, -0.009224967178537841, -0.00837869957890077, -0.00044493669955967364, 0.009961414161647733, 0.02604696658943508, 0.005051767918022625, -0.02321745985762576, 0.011156525363175539, -0.03418664318297229, 0.014483457024053683, -0.0020333042351891608, 0.00902470583514769, -0.013184984858779268, 0.004005238043672912, -0.002154430408235458, 0.013850371004690401, 0.011628109818477093, 0.0030281536276655706, -0.019754866175130673, -0.013004103405053327, 0.007332169238889812, 0.00038619053590020026, -0.03591794188686482, -0.014780619678409868, 0.007164208022047508, 0.0016400480757104467, -0.006327629901581297, -0.0002071257139996567, -0.00628886965659163, 0.009896813908552037, -0.005022697617865064, 0.007041466702975445, -0.0032914012422787645, -0.009942034271983521, -0.010290877873874255, -0.005794675019574334, 0.0070479268214172636, 0.007816674396736247, 0.012603579786950534, 0.0058818859200470185, 0.008417459358229192, 0.01897965941269236, -0.019418943741446065, 0.02179624683894053, 0.006505281528916951, -0.004754604798005196, -0.024057268735804747, -0.01184129233007337, -0.004961327191159655, 0.011498909312285699, -0.0062662594748758875, 0.025594762955120226, -0.03876036792423528, -0.038191881226645207, -0.008430379595112829, -0.004551113162563512, 0.003775905701633332, -0.04289480647409959, 0.0008995635185744196, 0.0006419685658054723, 0.00900532501416099, -0.006808904301714955, -0.020052030692131836, -0.16558429558703006, -0.0020300741759682515, 0.01790728999589786, -0.020323352872720746, 0.01860497533703435, -0.02565936320821592, 0.01413461342216295, 0.0003219936618573564, -0.013837450767806764, -0.006737843930177441, 0.022829856476406604, -0.006847665012365866, -0.03925133133787856, -0.014302575570327741, 0.028863554015683246, 0.003417372387741115, -0.007506591039835179, 0.0181527717027195, 0.016253514575952137, 0.01938018396211764, 0.019703187090241103, -0.013630728840313548, 0.00927664812607239, -0.0010683325994678841, -0.004224880208049764, -0.013398166439053059, 0.0034109122692992963, -0.006951025976112474, 0.011395548348539092, -0.038476124575440245, -0.004247490389765508, -0.022791096697078184, 0.018385334103979988, 0.0008026626150619749, 0.0025274988722064563, 0.009541510653880729, -0.0020607596221515786, -0.007661632485455091, -0.00407306858882014, 0.028553470193120937, -0.006369620438622495, 0.009980794982634433, -0.009987254635415006, -0.005936796228310609, 0.029018594995641914, 0.015478306882191336, -0.006343779964855221, 0.0023950676083022877, 0.01860497533703435, -0.027907463936874016, 0.02971628219942338, -0.03266206826921797, 0.0038178962386745305, -0.004531732807238056, 0.011628109818477093, 0.010432998616949286, -0.010471759327600196, 0.016098471733348493, 0.012513138128765075, 0.005484592128334511, -0.00011002291723399133, -0.008410999705448619, 0.006563422129232073, -0.003772675642412423, -0.01361780860342991, -0.013501528334122154, -0.0016666957732446703, 0.008404540052668044, -0.050026713903938, 0.010097075251942188, -0.018927978465157813, 0.01560750738838273, 0.015039022553437632, -0.013230205222210755, 0.013553208350334214, 0.001132933201809514, 0.0032058052550012245, -0.014935661589691025, 0.02736481957569619, 0.0024806635955798273, -0.012958883041621842, 0.041266869665276165, -0.014263814859676831, 0.0020607596221515786, -0.01221597547440889, 0.0029312527823607813, -0.0035788739518028446, 0.002944172786413796, -0.02456115331765415, -0.005581492973639301, 0.016033871480252797, -0.04217128065919582, -0.015439546171540426, -0.01481938038906078, -0.005584722800029588, 0.025840244661941864, 0.00025759495276894733, -0.00570423382705012, 0.01860497533703435, -0.005432911646461208, 0.00040536885245329624, 0.01620183362841759, 0.00427010057148125, 0.015775468605225034, 0.015452466408424063, -0.005329550682714601, 0.02041379359958372, 0.014289655333444106, 0.028605151140655483, 5.803960935064936e-07, -0.010006634525079218, 0.012312876785374923, 0.005329550682714601, 0.030207245613066657, 0.004596333525994997, 0.02312701913076279, -0.014237974385909557, 0.019832387596432494, 0.03465176798549328, 0.014754780135965083, 0.03938053184406995, -9.528590300581779e-05, -0.01842409388330841, 0.009218507525757268, -0.010827062582271505, 0.0006197621123885154, -0.10108703930798706, -0.012513138128765075, -0.007280488757016508, 0.009405848632263783, -0.03454840609042418, -0.004990397491317217, 0.0006080532350242027, 0.007125447311396597, 0.004702924316131891, 0.0119834130731484, -0.00787481499705137, -0.004680314134416149, -0.011363247290668755, -0.012926581983751505, 0.014948581826574662, -0.017390484245842334, -0.0007525971045914702, 6.914284401720565e-05, -0.028734351646846876, 0.013604889297868763, -0.004670624189584044, 0.011311567274456695, 0.008727542249469014, -0.013333566185957362, -0.008998865361380415, 0.003378611909920826, -0.03860532508163164, 0.02335958153202328, 0.005791444727522803, 0.009108685977907597, 0.017558446394007127, -0.003042688777744351, 0.011473068838518424, -0.01888921868582939, -0.015478306882191336, 0.007655172367013272, -0.02452239167568075, 0.001715146195897065, 0.0058754258016052, -0.039716456140399536, -0.01578838977343116, -0.02059467505330966, 0.02312701913076279, -0.0002468954543592548, 0.0022254910126035957, -0.02312701913076279, 0.007312789349225601, 0.014935661589691025, 0.021667044470104157, -0.03860532508163164, -0.018359493630212713, -0.011292187384792483, -0.022842775781967754, 0.0120027938941351, 0.03173181866417601, -0.010600960765114078, -0.0026066347410421777, 0.015723789520335464, 0.0020510694444888507, 0.01711916206525342, -0.010368398363853589, -0.004095678770535883, -0.010407158143182011, 0.010542820164798955, 0.0005777717499702838, -0.00948982970634618, -0.017377564940281184, -0.006230729056276508, 0.0282433882332036, -0.03426416274162914, -0.017054561812157726, 0.015013182079670359, 0.004127978897083731, 0.007584111995475757, -0.028682672561957306, -0.0021415101713518213, 0.0026890004362681865, -0.012157834874093767, 0.013953731968437008, 0.0019751636348740386, -0.016834918716458383, -0.011692711002895277, 0.010413618727285074, -0.016886599663992932, 0.02199004759822762, -0.017571365699568277, -0.008533740558859438, -0.011395548348539092, -0.02192544734513192, 0.0031589699783745955, -0.007118987192954778, 0.019173462034624427, -0.003979397569905638, -0.022325971894557203, -0.023191619383858487, 0.00371776510131821, -0.010471759327600196, 0.0021786557359769667, 0.019922828323295467, 0.013902051952224949, -0.014250894622793194, -0.033669837432916766, -0.05178385121895282, 0.018760018179637995, 0.006808904301714955, -0.005197119418810432, -0.0010400698723232059, -0.02821754775943633, 0.01528450519158176, -0.01806233097585653, 0.026292448296256717, -0.004454212317258723, 0.0034852029328883427, 0.0051292884080019596, 0.005994936828625732, -0.012816761367224323, -0.007532431513602453, -0.018850458906500965, 0.019548144247637456, 0.004767525034888832, 0.013359406659724637, -0.007241728512026841, 0.006065997665824491, 0.0012427542839979402, 0.03160261815798462, 0.01735172446651391, -0.00030342099596009477, 0.012784461240676476, -0.015594588082821582, 0.019703187090241103, -0.010006634525079218, -0.0017942819483174751, 0.010310257763538467, -0.04405761848040204, -0.014974421369019447, 0.010652640781326137, -0.01934142232014424, -0.013682409787848095, -0.002482278508774971, 0.01980654712266522, 0.0016796158937129962, -0.00561702339223868, -0.010426538964168711, -0.03162846049439687, -0.006563422129232073, -0.03235198630930063, 0.007687472959222365, -0.010607420417894652, 0.019134700392651027, -0.008585421506393985, 0.00586573539111185, 0.02174456589140598, 0.01490982111592375, 0.02447071259079118, -0.0010400698723232059, -0.012377477038470619, -0.020000349744597287, -0.015775468605225034, 0.02443195094881778, -0.019057180833994183, 0.003582104011023754, -0.0009795067858000572, 0.01842409388330841, -0.002567874263221889, 0.030853251869313578, -0.011557049912600821, -0.00900532501416099, 0.009838673308236914, -0.014199214606581134, -0.001057027508610013, 0.03891540704154897, -0.010116456072928888, 0.0076099520035817865, -0.004586643581162892, 0.03069821088935491, 0.007151287785163871, -0.008346399452352922, 0.0009738542403711216, -0.026899694773175213, 0.01080122210850423, -0.038321081732836604, 0.021951287818899195, 6.091005053435866e-06, 0.0038308162427275454, -0.03790763787785017, 0.0047901352166045755, 0.039819818035468635, 0.02447071259079118, -0.018294893377117018, 0.004373461535227857, -0.011789611382538822, 0.00932832814228445, -0.027700742009380802, -0.003553033710866193, -0.01293304256785457, -2.33420174738292e-05, 0.008404540052668044, 0.05302418278391211, -0.01230641620127186, -0.007971715376694914, 0.024225229021324565, 0.01487106040527284, 0.007713312967328394, 0.0022852467589444835, 0.005096988281454111, -0.03914796944280946, 0.008087996577325158, 0.008766302960119926, -0.02594360655701096, -0.03491016899787606, 0.006085377555488702, 0.004841815698477879, 0.02418646924199614, -0.00895364499794893, -0.004551113162563512, -0.001989698784952819, -0.005171278945043157, 0.009677171744175183, -0.00320742040102699, -0.01555582737217067, -0.02461283240254372, 0.019909909017734317, 0.01934142232014424, -0.008475599958544315, 0.004673854481635575, -0.010484679564483833, 0.015452466408424063, 0.0019477084807422431, 0.006095067500320807, -0.01624059340774601, 0.003186425132506391, -0.008585421506393985, -0.00017553198100745876, -0.0031379747098539967, -0.04330825032908602, -0.0062759494197079935, -0.004522042862405951, -0.01658943700963675, -0.008966565234832568, 0.04899310240382695, -0.021705806112077557, 0.05059520060152808, 0.011737931366326762, -0.004786905390214288, 0.0024079878451859246, -0.012655259803162594, 0.010271497052887556, 0.01823029312402132, 0.02585316396750301, -0.02488415644577761, -0.01017459667324401, 0.003272020886953309, 0.01897965941269236, 0.002627629776732155, -0.003966477333022001, -0.0016093627459424307, -0.012681100276929869, -0.019871147375760918, -0.006595722255779922, -0.010342557890086314, 0.006996246339543959, 0.03919965039034401, -0.014263814859676831, 0.02461283240254372, 0.009754692234154518, -0.004528502980847769, -0.007332169238889812, 0.02987132317938205, 0.017442165193376883, -0.012325797022258559, -0.02271357527577636, 0.0036854649747703615, -0.016511915588334924, -0.044858663853962644, -0.010038934651627066, -0.006004626773457837, 0.02058175574774851, -0.003853426424443288, -0.00976115281825758, -0.005701004000659832, 0.016227674102184866, -0.004179659378957035, 0.032145266244452395, 0.005096988281454111, 0.009315407905400813, 0.018372414798418838, 0.04325656938155147, -0.002592099590963397, -0.005287560145673402, -0.009709471870723033], "valueType": "FLOAT"}, "id": 1183189196391}, {"scalarData": {"year": {"fieldType": "INT64", "fields": [{"data": 1979}]}, "director": {"fieldType": "STRING", "fields": [{"data": "Andrei Tarkovsky"}]}, "genre": {"fieldType": "STRING", "fields": [{"data": "\"science fiction\", \"thriller\""}]}, "rating": {"fieldType": "DOUBLE", "fields": [{"data": 9.9}]}, "text": {"fieldType": "STRING", "fields": [{"data": "Three men walk into the Zone, three men walk out of the Zone"}]}}, "vector": {"binaryValues": [], "dimension": 1536, "floatValues": [0.018773253864215834, -0.025814849686838393, 0.019786620362006648, 0.0004656774072854922, -0.005433850414671566, 0.03687093006323779, -0.01016613926451525, -0.02827031330109084, -0.017110295463510283, -0.021852327344394153, 0.0029783865675884714, -0.0022979373868745024, 0.02215114032754008, -0.0014843213026128595, 0.01879923776384984, -0.010159643289606748, 0.012075944711743853, 0.004251589966243565, 0.004219110091701058, -0.006820732675733509, -0.01695439206570625, 0.0025252951116882007, -0.00872404214805361, -0.04175587711739896, 0.00027607727469298646, -0.002054339724789551, 0.005677448076756517, -0.005934037222997187, 0.030167126798502444, -0.009912798105728829, 0.01700635986497426, -0.0012813233672907209, 0.003475325621290485, -0.003277199550734401, -0.027490800037360943, -0.0006987191101441289, -0.007041594425638705, -0.011608237312299454, 0.019111042696812772, -0.009458082656101433, 0.016629595182926313, -0.005057086198284902, -0.018136652048472965, -0.014758766516471287, -0.005394874565220557, 0.015798115982573538, 0.00033027774519366255, -0.01649967754740142, -0.05072026661177685, 0.01773390532943615, 0.016200864564255492, 0.014291059117026888, -0.023632215156097862, -0.00635302527628911, 0.0031261690654343106, -0.008314797591463157, 0.007048090400547206, -0.008853960714901072, 0.005895061839207463, -0.013732408068863469, -0.022891677741818973, -0.028608102133687783, -0.007087065784336931, -0.0012999991787373416, -0.009120293823504495, -0.008516171882304134, 0.007704179675354295, -0.02954351693257658, 0.012322789895621772, -0.020670067361627437, 0.011627725237024959, 0.007113049683970937, -0.004586130811386253, -0.0020884433602285416, 0.021410604775906325, -0.036559126992919994, -0.002923171013696851, -0.021709417759052257, 0.023814100590890768, -0.0005038410270422961, 0.016681562982194326, -0.034714281294776404, -0.022255075926076104, 0.03533789116070227, 0.024736523439962563, -0.009074821999144984, -0.0009378507312718254, 0.03601346882589615, -0.010380505505173228, -0.025892799523095273, 0.020592115662725417, 0.000833915773020068, 0.01979961231182365, 0.02322946657441591, -0.009250212390351955, -0.006106179626749907, -0.026945141870337096, 0.012218855228408316, 0.010952147571831081, -0.0013308548267220812, -0.005986005022265199, -0.008529163832121137, -0.005690439560912236, -0.011270448479702516, -0.01892915726201987, -0.032141890132170926, 0.009776383563972866, -0.007541781699625611, 0.014667822867752266, -0.018721287927592957, 0.01594102743056057, 0.028634086033321786, 0.006583630988557058, -0.059398836935470954, 0.004014488279067115, -0.013160766002205615, 0.0032983114691870308, -0.008853960714901072, -0.023749140841805752, -0.025295173556803413, 0.014862701183684742, 0.029699418467735477, 0.02339836005939181, -0.005089565607166125, 0.016863450279632364, 0.00665183825943504, -0.016174880664621485, -0.025697922138485367, 0.014252083267575879, 0.003231727959205533, 0.031180491433648126, 0.022644832557941055, 0.025178247871095523, -0.011575757437756946, -0.0018984372583080846, 0.003796874516616169, 0.0005757022838063092, 0.011725163929329912, -0.014070196901460408, -0.01295939171136464, 0.01753902608218111, -0.000665833411792822, 0.0007851962522446097, 0.0046186102202674766, -0.005774886769061471, 0.019669692813653623, 0.0002442066015249631, 0.016551645346669433, 0.0061484034636551665, -0.016473693647767417, 0.009536033423680881, -0.027023093569239112, 0.02678923847253306, -0.0065803830011028075, 0.008581131631389148, 0.01685045832981536, -0.02322946657441591, 0.023697173042537743, -0.022657824507758058, -0.019474815429043717, 0.004030728216338369, 0.0048069925612914495, 0.007834098242201756, -0.014836717284050735, 0.007281944100269406, 0.029855321865539512, 0.020722035160895446, 0.006846716575367514, -0.013745400018680472, 0.0007056210252767512, -0.004375012558182525, 0.004267829903514819, -0.023021597239989, 0.02373614889198875, -0.011699180029695905, 0.031180491433648126, 0.006658334234343541, 0.00897088733193153, -0.01700635986497426, -0.018955141161653873, -0.005849590014847953, -0.002431103941176214, 0.00695714721748947, 0.021709417759052257, -0.008827976815267067, -0.01920198634553179, 0.003777386591890665, -0.012771010301663234, -0.005781382743969972, -0.010698806413044661, 0.010451960297844176, 0.012751522376937729, -0.002064083687152303, -0.0004608054552079464, -0.6834763832524261, -0.0070091145510961985, -0.016707546881828333, 0.0017668945813181776, 0.034402474499168334, 0.007684692216290074, 0.0012926912069652775, 0.011296432379336521, -0.009691935890162349, 0.021709417759052257, -0.0025658947220356925, 0.020851954659065475, -0.007100057734153934, -0.011504302645086, -0.03203795453363491, -0.010757270187221174, 0.011608237312299454, -0.00969843186507085, 0.016993367915157258, 0.015252456884227123, -0.018695304027958954, 0.022008230742198185, 0.007294936050086409, 0.004254837953697816, -0.004027480228884118, 0.018513416730520912, -0.01240723756943229, -0.00824334279879221, -0.01477175846628829, 0.0015509046961790362, -0.02691915797070309, -0.003855337825131398, 0.010374009530264726, 0.006736285467584274, 0.04271727395327663, -0.0068597080595232335, -0.013784375868131481, 0.01917600244589779, -0.0009540905521277579, 0.04027480228884118, 0.00902285513119954, -0.029985239501064406, 0.015902051581109564, -0.0023856323496473457, 0.002937786957240979, 0.008431725139816182, 0.011056083170367104, 0.006671326184160544, -0.009893310181003324, 0.003312927179900517, 0.02676325643554419, -0.0036669557169380666, -0.00380012250407042, 0.018786245814032838, 0.02154052241143122, 0.021761385558320266, 0.005586504893698781, 0.020514165826468537, 0.014953643901081193, -0.01481073338441673, -0.01390130248516194, 0.007022106500913201, -0.013732408068863469, 0.0019747644978216922, -0.0012553395840720362, 0.015252456884227123, -0.0016938152128434998, 0.03034901223329535, 0.006538159629858833, -0.005781382743969972, 0.004319797237121547, 0.01804571026239908, 0.006151651451109417, 0.011400367046549975, 0.017188245299767167, 0.014745774566654284, 0.018409482994630025, 0.0020332278063369216, 0.014966635850898196, -0.004063208090880876, -0.0076067409830493414, -0.005807366643603978, -0.03027106053439333, 0.0007839782569492657, 0.023242458524232915, 0.014784749484782724, -0.018227595697191987, 0.0062815700179568775, 0.00777563539934781, 0.014953643901081193, -0.0010450336769778335, -0.003533789162636355, -0.0119850019943474, 0.010315545756088213, 0.01240723756943229, -0.007359895333510139, -0.025230215670363536, 0.036689046491090026, 0.026971125769971103, -0.025269189657169407, -0.0038520898376771476, -0.02391803618942679, 0.013550521702747998, 0.008217358899158204, 0.012420229519249293, 0.01648668559758442, -0.009795871488698371, -0.01581110793239054, 0.05711226866883954, -0.02676325643554419, 0.002841972025832509, 0.00222323414108802, -0.013030847435358154, -0.015603237666641064, -0.0130958062531206, -0.0261916125062412, 0.019773628412189645, 0.0035110532504566004, 0.018032718312582078, -0.030530897668088253, 0.030426963932197366, -0.003218736242219172, 0.02626956420514322, 0.0017522786377740496, 0.03086868650068519, 0.024177873323121712, 0.0076976841661070775, -0.003780634579344916, -0.011705676004604407, 0.005242220086193341, -0.014524912351087804, 0.01953977517812873, 0.02335938607258594, -0.015785124032756538, -0.003835850133236536, 0.0011587125393846824, 0.007002619041848981, -0.006443968459346846, 0.031336392968807025, -0.027101043405495996, -0.01790279881441205, -0.012173383404048806, 0.0048102405487457, -0.021787369457954273, 0.009626977072399902, -0.03396075193068051, -0.011186001737214565, 0.0017100551501147531, -0.007866578116744263, -0.0036117403958770885, 0.02117675154184541, -0.015694180384037516, -0.010815733030075119, -0.0027153012136086575, 0.010101180446752803, 0.010640342638868148, -0.005557273006610524, -0.01413515665054542, -0.027101043405495996, -0.01206295276192685, 0.01365445730128402, 0.01868231207814195, -0.008301805641646155, -0.01816263594810697, 0.005833350543237983, -0.027438832238092934, 0.012855457044151183, 0.014005238083697961, -0.016577627383658304, -0.008938407457389023, 0.019435839579592707, 0.01164071718684196, -0.015876067681475557, 0.005998996506420918, 0.0018643336228690941, 0.0175000502327301, -0.0058138626185124795, 0.005118797494254382, -0.004530915024663991, 0.0064114885848043385, 0.005901557814115964, 0.0069701391673064736, -0.019981497746616558, 0.010159643289606748, 0.01694140011588925, 0.010607862764325642, 0.014343025984972332, 0.0023742646263881103, -0.00042670179066512564, 0.020410230227932515, -0.008457708108127621, 0.023411352009208814, -0.0012902552163745894, -0.01790279881441205, 0.011283440429519518, 0.006684318133977547, 0.009717919789796354, 0.006593374950919811, -0.019903547910359674, 0.013849335617216494, 0.029881303902528383, 0.022514913059771026, 0.004381508533091026, -0.022462945260503013, 0.03323320646621862, -0.031336392968807025, -0.004855711907443926, -0.0260097270714483, 0.03442845839880234, 0.029985239501064406, 0.004170390745548582, -0.015824099882207544, 0.008223854874066705, -0.0006378196946228911, -0.014706798717203276, 0.04690065571731965, -0.014992619750532203, 0.010432473304441239, 0.0034298540297616168, 0.02241097932388014, -0.0012999991787373416, -0.0049369111281389105, 0.00781461124879882, 0.0037708908498128055, -0.010893684728977136, 0.004202870620091089, 0.004943407103047411, 0.008223854874066705, -0.018487432830886906, -0.038118149795089526, 0.012771010301663234, 0.02287868579200197, -0.0025025591995084455, 0.019760636462372645, 0.0035565248419854685, -0.003858585812585649, 0.0050440942484679, -0.003796874516616169, 0.014265075217392882, -0.0016775753919875671, 0.004930415153230409, 0.024853450988315588, 0.015992993367183447, -0.04752426558324551, 0.006664830209252042, 0.006502431767862075, 0.02068305931144444, -0.0010750773280990104, -0.009315172139436969, -0.0009792622802752195, 0.0021355389454845346, 0.016798490530547352, -0.028582118234053776, -0.017681937530168137, 0.017759889229070156, 0.005781382743969972, -0.007087065784336931, -0.0014786374409832418, -0.012264327052767827, 0.038222085393625545, -0.00048638318178718926, -0.0024928154699763354, 0.03401271972994852, -0.007418358642025368, -0.008516171882304134, -0.011354896153513034, 0.010653334588685151, -0.005417610477400312, 0.0054403463895800665, 0.0007161769262954055, 0.015824099882207544, 0.01992953180999368, -0.008873448639626576, 0.018409482994630025, 0.026737272535910187, 0.004368517048935307, 0.009094309923870489, -0.03172615146331711, 0.01438200183442334, 0.02426881697184073, 0.005998996506420918, -0.026633336937374165, -0.0001223062854264571, 0.04183382509101071, -0.015915043530926563, -0.019682684763470626, -0.012913920818327696, 0.010270074863051272, -0.028789987568480686, 0.024905418787583598, -0.027334898502202044, -0.009854334331552316, 0.003153776958795442, -0.0010401616957964573, -0.008678570323694101, 0.010679318488319158, 0.009945277980271335, -0.022501921109954023, 0.016915416216255242, -0.009769887589064365, 0.0015403487369527215, 0.004560146911752248, 0.003423358287683757, -0.0039852568576401425, 0.03687093006323779, -0.0039852568576401425, -0.018435465031618897, -0.019111042696812772, -0.01231629392071327, -0.003887817699673905, 0.008275822673334716, -0.00043888165630707505, 0.005063582173193404, 0.012946399761547637, 0.0051805087902238615, -0.02064408346199343, -0.022397987374063136, -0.021345645026821312, 0.0031797606255988056, -0.019474815429043717, -0.016213856514072495, -0.011108050038312547, -0.01360248950201601, -0.020968880344773365, 0.13023051520409898, 0.014784749484782724, 0.0031992483174936677, 0.00939961888192492, 0.01270605055257822, -0.011302928354245022, -0.005976261059902447, -0.01785083101514404, 0.00440099645781653, 0.013108798202937604, -0.011179505762306063, -0.014862701183684742, -0.020124409194603586, -0.005482569760824042, 0.023164506825330895, 0.0010986251207270072, -0.014407985734057346, -0.035363875060336274, 0.01258262796063926, -0.01352453873443656, 0.006814236700825007, 0.011387375096732974, 0.00624259416850587, 0.026425467602947252, -0.019955515709627687, 0.002955650888239358, 0.00299625049858685, 0.03047893173146538, 0.01700635986497426, -0.01898112506128788, 0.020553141675919546, 0.010880692779160133, -0.0074898139003576, 0.0005683943702419056, -0.01171866795442141, -0.008191374999524197, -0.001667831546040136, 0.004485443665965765, 0.03946930512547728, -0.022203108126808094, 0.002090067353955667, 0.011738155879146915, 0.02077400296016346, -0.040846444355499036, 0.002601622351201808, 0.007385879233144145, -0.008776009015999054, 0.028815971468114692, -0.0004116799360007068, -0.01944883152940971, 0.0201763769938716, -0.0021079312849540456, -0.00760024500814084, -0.02137162892645532, -0.01270605055257822, 0.00939961888192492, 0.004927167165776158, -0.007035098450730204, 0.002236225858074381, -0.03354501326182669, -0.004170390745548582, -0.013043839385175157, 0.014745774566654284, -0.0162268484638895, -0.006314049426838101, -0.027542767836628956, 0.0044529637914232575, -0.01635676609941439, -0.01164071718684196, -0.008808488890541562, -0.007866578116744263, -0.00837326136563967, -0.012043464837201345, 0.002822484101107005, 0.021462572575174338, 0.01106907418886154, 0.012309797945804769, -0.01816263594810697, 0.00033311970511230166, 0.004020984253975617, 0.004712801390779463, 0.004011240291612864, -0.0037741386044364143, 0.0034298540297616168, -0.008386253315456673, 0.021865319294211153, -0.005713175473091991, 0.005654712164576762, -0.02704907746887312, -0.0026422219615493004, -0.02213814837772308, -0.0061126756016584086, 0.013089310278212099, -0.008711050198236609, -0.010068700572210295, -0.004342533149301301, 0.008931911482480522, 0.02233302762497812, 0.015564261817190056, 0.015213481966098683, 0.011822603552957433, -0.035831581528458105, -0.0020202360893505603, 0.011744651854055417, -0.00781461124879882, -0.010146651339789745, 0.01565520453458651, 0.008918919532663518, -0.0009362267375447, -0.003832602145782285, 0.006846716575367514, -0.009899806155911826, 0.014200115468307867, -0.010581879796014203, 0.017474068195741228, 0.004599122761203256, 0.03538985895997028, 0.012842465094334182, -0.010627350689051147, -0.024905418787583598, -0.0007523105538933028, 0.0031342890340699376, 0.01570717233385452, -0.00020208449705829115, -0.027256946803300028, 0.005199996714949366, -0.010581879796014203, -0.004800496586382948, -0.01283596911942568, 0.022826717992733957, -0.014992619750532203, 0.015174506116647675, 0.008490187982670127, -0.009328164089253972, -0.020890930508516484, -0.011933034195079389, -0.018370507145179016, 0.00832778954128016, -0.007561269158689832, -0.008899432539260581, -0.04079447655623102, 0.0008103679803920713, 0.0037156752959211854, -0.01917600244589779, -0.0011619605268389332, -0.03328517426548663, 0.004280821853331822, -0.0027737645221238864, -0.02516525592127852, 0.016629595182926313, -0.0012480317287152931, -0.007535285724717109, 0.00208194738532004, 0.0023385369972219942, -0.023073563176611876, -0.06657034853097327, -0.027256946803300028, -0.025606978489766345, 0.0026747016032611652, 0.045081793918810065, 0.02099486424440737, -0.007957521765463282, -0.0017733904398113582, 0.026737272535910187, -0.01503159559998321, 0.005151276903135605, 0.012043464837201345, 0.0006792313018339457, -0.03292140339590083, 0.024905418787583598, 0.006911675858791245, 0.020150393094237593, 0.013797367817948483, 0.005745655347634498, 0.018110670011484097, 0.013498554834802553, 0.008256334748609212, 0.0008858832230421164, 0.00023202670677918341, -0.030530897668088253, 0.020072441395335577, -0.022229092026442097, -0.00553453709443077, 0.010536407971654694, -0.015161514166830672, -0.018565384529788925, 0.03528592336143426, -0.019981497746616558, -0.020812978809614465, 0.009549025373497885, 0.022294051775527114, -0.0020072441395335575, -0.004417236395087783, -0.0069701391673064736, 0.007639220391930565, -0.03034901223329535, 0.020553141675919546, -0.027490800037360943, 0.01030255380627121, 0.017188245299767167, 0.015538278848878618, 0.019422847629775704, -0.00021801984819421797, -0.01879923776384984, 0.007411862667116867, 0.00837326136563967, -0.0074378465667508725, -0.01249168431192024, -0.00897088733193153, -0.01565520453458651, 0.010315545756088213, -0.020670067361627437, -0.012114920561194861, -0.039833079720353354, 0.011569261462848446, -0.0064472164468010965, 0.014265075217392882, 0.006132163526383913, -0.01557725376700706, -0.040066931091769134, 0.019227970245165798, 0.0027380368929577703, 0.015720164283671522, 0.019864572060908667, 0.03793626622294175, 0.025606978489766345, -0.004845967945081174, -0.017084311563876277, 0.013472570935168548, -0.012894432893602193, -0.0005363207269618218, 0.009471074605918435, 0.01868231207814195, -0.00652841566749608, -0.004625106195175977, -0.008685066298602603, 0.002258961770254136, -0.018721287927592957, -0.039105534255891465, 0.03871577576138138, 0.0203452704788475, 0.008126416181761752, -0.013121790152754607, -0.0027591488114104, -0.023099547076245883, -0.003585756496243083, -0.016993367915157258, -0.004858959894898177, -0.011445838870909487, -0.007522293774900107, -0.0260227190212653, 0.024346766808097612, -0.03642920749474997, -0.0024067442680999755, 0.008132911225347686, -0.011211985636848571, 0.007782130908595028, -0.010880692779160133, 0.0016710795334943867, 0.01738312454702221, -0.015122538317379664, 0.004907679706711938, -0.009542529398589383, 0.012420229519249293, 0.013810359767765486, 0.016434717798316407, -0.029725402367369484, -0.014239091317758877, -0.0034883175711074876, 0.0231904907249649, 0.0010807613061439493, -0.0105623918712887, 0.0019763884915488176, 0.008217358899158204, -0.0053461552190680805, 0.0073274154589676324, -0.006892187934065741, -0.025386117205522432, 0.00011093840209615521, 0.011186001737214565, 0.014278067167209885, -0.003423358287683757, -0.003537037150090606, -0.014784749484782724, 0.00777563539934781, -0.02024133674295661, -0.010250586938325767, -0.00043400970422952925, -0.007827602267293255, -0.025996735121631295, -0.018461448931252903, -0.0024830715076135834, -7.044030590852374e-05, 0.009217732515809448, 0.004332789186938549, 0.0025983743637475578, -0.010867700829343132, 0.01999448969643356, -0.027568751736262963, 0.019383871780324698, -0.011997993012841835, 0.0028874433845307353, -0.022709792307026067, -0.012628098853676202, -0.011926538220170887, -0.01729218089830319, 0.022592864758673042, -0.01816263594810697, 0.003527293187727854, -0.0008582755043039668, -0.020968880344773365, 0.007333911433876133, 0.005394874565220557, -0.018552392579971922, -0.004050216141063873, -0.005333163269251077, 0.0012049961277771132, -0.020981872294590368, -0.00014027161416937549, 0.012589123935547761, -0.03520797166253224, 0.0030336021214800914, 0.010542903946563195, -0.03697486566177381, 0.006226354696895899, -0.00018462668090701455, -4.123396834523515e-05, 0.019163010496080785, -0.002958898875693609, -0.0028744516675443745, 0.006642094297072287, 0.019682684763470626, 0.015954017517732438, -0.04391252588586035, -0.0056124883276715025, 0.012218855228408316, -0.0029572748819664835, 0.0013300428298585185, 0.03611740442443217, 0.005417610477400312, 0.009575009273131891, 0.01738312454702221, -0.0011432847153923125, -0.0011270448945363799, -0.005969765084993945, -0.009152773698047002, 0.0007847902538128284, -0.017266196998669183, -0.013836343667399493, -0.04040472178701121, -0.015992993367183447, 0.021111791792760397, 0.008665578373877098, -0.017915790764229052, 0.02421684917257272, 0.016278814400512372, -0.02407393772458569, -0.0016101801179731487, -0.0002529355096006014, 0.009886814206094822, 0.03640322359511596, 0.011082066138678542, -0.008743530072779115, 0.025503044753875458, 0.012530660161371249, -0.0043555250991183046, -0.024450702406633634, -0.0004461895989753089, 0.021605482160516234, 0.001581760344163776, 0.011601741337390952, 0.01240723756943229, -0.017201237249584167, -0.012686562627852714, 0.00944509070628443, -0.005229228136376339, 0.010211611088874759, 0.02068305931144444, -0.01481073338441673, -0.0031927525754158084, -0.0030482178321935777, -0.009113797848595994, -0.005687192039119269, -0.0010945651364091939, 0.005222732627129121, -0.06256885033907802, 0.0009573385395820086, 0.0053104273570713225, -0.008639594474243093, 0.006931163317855465, 0.013706424169229464, 0.016200864564255492, 0.007580757083415336, 0.01258262796063926, 0.004495187628328517, -0.014407985734057346, 0.0019471567208758824, -0.01876026191439883, 0.03266156439956077, 0.03697486566177381, -0.006128915538929663, 0.013446587035534542, 0.006885691959157239, -0.008957895382114526, 0.02842621483624974, 0.013550521702747998, -0.0024976872183270697, -0.004323045224575797, -0.013927286384795944, -0.0009695184343277883, 0.02228105982571011, -0.01649967754740142, 0.009035847081016544, -0.0009216109104158927, 0.006697309618133265, -0.009328164089253972, -0.013063327309900662, -0.0031651446820546774, 0.02559398653994934, 0.009354147988887977, -0.01969567671328763, 0.010978131471465088, -0.011790123678414926, -0.021150767642211406, -8.855787678740258e-05, -0.0043035572998502926, -0.001602060149337522, -0.02267081645757506, -0.0035143012379108512, -0.0035987484460600857, -0.01585008378184155, -0.003576012766710973, 0.0021566506311065225, -0.0007311987518559941, -0.009302180189619966, 0.012615107835181768, 0.23821896133309997, -0.01557725376700706, -0.037026833461041825, 0.005550777031702024, 0.018175627897923975, 0.03141434466770904, 0.027542767836628956, -0.006278322030502628, 0.002450591865901718, 0.0011376007373473738, -0.013407611186083534, 0.02154052241143122, 0.002913427284164741, 0.001177388350831303, 0.009529537448772381, -0.0241259055238537, -0.003842346108145037, -0.033519029362192684, -0.0025837584202034296, 0.0044529637914232575, 0.0012593995683898495, -0.021306669177370303, 0.01193953016998789, -0.0249184107374006, 0.017201237249584167, 0.020059449445518573, -0.019669692813653623, 0.02855613433441977, 0.01876026191439883, 0.01600598531700045, 0.0027607728051375255, -0.02497037667402348, -0.007074074300181212, 0.010503928097112187, -0.004670578019535488, 0.003145656990159815, 0.007957521765463282, -0.020786994909980462, -0.00517401281531536, -0.010887188754068635, 0.01313478210257161, 0.01756500998181511, -0.016291806350329376, 0.006482943843136571, 0.0035435328921684657, 0.003096937411176696, 0.0015874443222087147, 0.013381628217772095, 0.010159643289606748, 0.02248892916013702, -0.02052715777628554, -0.007639220391930565, 0.010627350689051147, 0.03570166203028808, -0.01116651381248906, 0.002647093942730676, 0.025840833586472396, 0.004449716269630291, 0.014524912351087804, -0.005748903335088749, 0.007476821950540597, 0.01781185516569303, -0.02268380840739206, 0.003472077633836234, -0.020968880344773365, 0.001786382389628361, -0.011868074445994374, 0.041573989819960924, 0.00974390368943036, -0.0008493435970124379, 0.01700635986497426, -0.009588001222948894, -0.017928782714046056, -0.005781382743969972, 0.0002774982692042212, -0.012719042502395222, 0.02087793855869948, 0.011569261462848446, 0.0030011222469375843, 0.012147400435737369, -0.010900180703885638, 0.004426980357450536, 0.03151828026624506, -0.002785132478213764, -0.0124592053687003, -0.01167969303629297, 0.03424657482665457, -0.003904057404114517, -0.03336312596438865, 0.011673197061384468, 0.01171866795442141, -0.046614836546635854, 0.0069896270920319775, -0.0003832602203989946, 0.024879434887949595, 0.014498928451453797, -0.00312292107798006, 0.00025577746951924055, -0.011816107578048931, -0.008490187982670127, -0.02283970994255096, -0.018396491044813022, 0.015642212584769506, 0.007022106500913201, -0.016122912865353476, -0.010783253155532612, 0.0036637077294838162, 0.01665557908256032, 0.010594871745831206, -0.02372315694217175, 3.7859124570946675e-05, -0.008717546173145109, 0.006684318133977547, -0.0003564644694205774, 0.021319661127187306, 0.016863450279632364, 0.0011871323131940551, -0.0060379723558719265, 0.007827602267293255, -0.01979961231182365, 0.008405741240182178, -0.018357515195362016, -0.018006734412948075, -0.009042343055925045, -0.009932286030454334, -0.019214978295348795, -0.02193027904329617, -0.007470325975632096, 0.016369758049231395, -0.014823725334233734, 0.008990375256657034, -0.01685045832981536, 0.001184696322603367, -0.026139646569618327, 0.016759514681096342, -0.008022480583225728, 0.002625982024278047, -0.010809237055166619, -0.01781185516569303, 0.003982008870185892, -0.003426606042307366, 0.010958643546739583, -0.015902051581109564, -0.0029199232590732425, 0.009763391614155863, -0.022657824507758058, 0.024619595891609537, -0.009659456946942408, -0.02541210110515644, -0.011926538220170887, 0.00024826655673894626, -0.016109920915536473, -0.021956262942930176, -0.016473693647767417, 0.026035710971082305, -0.028893923167016708, -0.02437275070773162, -0.01335564431813809, 0.02177437750813727, -0.004608866257904724, -0.03227180963034096, 0.0012870072289203386, 0.012641090803493205, -0.020592115662725417, -0.008756521091273551, 0.020631091512176427, -0.16702350846959585, 0.0008253898641603203, 0.052123389741432616, -0.0008720793927768719, 0.03954725682437929, -0.018279563496459997, 0.014823725334233734, 2.5171751794323616e-05, -0.02403496187513468, 0.013232221726199131, 0.020124409194603586, 0.0040989354872163495, -0.037572491628065675, 0.006833724625550511, 0.004664082044626986, 0.00390730562439941, -0.032401729128510984, 0.0037741386044364143, 0.023892052289792784, 0.014693806767386273, 0.020410230227932515, -0.013342652368321087, 0.016265822450695373, -0.0004729853208498958, -0.006427728522075592, 0.00022065882344888155, 0.00042345380321087494, 0.011855082496177373, 0.004631602170084479, -0.011738155879146915, -0.03684494616360379, -0.008879944614535078, -0.010127164346386807, 0.007152025533421946, 0.016759514681096342, 0.01725320504885218, 0.011965514069621897, -0.00035017155193562717, -0.01043896927934974, 0.015694180384037516, 0.024736523439962563, 0.008048464482859735, -0.011257456529885513, 0.010237594988508764, -0.0076262284421135616, 0.014369009884606336, -0.004683569503691206, -0.005362395156339334, -0.01300486353572415, -0.004072951587582344, -0.01850042478070391, -0.02451566215571865, 0.01266057872821871, 0.00028643017649575015, 0.024658571741060547, 0.009808863438515374, -0.0035110532504566004, 0.010581879796014203, -0.010133660321295309, -0.0052909398980071016, -0.021696425809235254, -0.011004115371099093, 0.009737407714521858, -0.012166887429140304, -0.026204604456058204, -0.0064114885848043385, 0.0059275412480886865, 0.00020746394717556364, -0.02547706085424145, 0.009029351106108042, -0.011627725237024959, -0.01106907418886154, 0.015083563399251222, -0.03746855602952965, 0.019059074897544763, 0.02095588839495636, -0.006911675858791245, -0.00026755136583323885, 0.014745774566654284, -0.023931028139243794, -0.028322281100358854, 0.037338640256649895, -0.015980001417366444, -0.00986732628136932, 0.0031797606255988056, 0.03027106053439333, -0.0030433458510122015, 0.004530915024663991, 0.01219287132877431, -0.015421351300525592, -0.008035472533042732, -0.025100296172193507, -0.022995613340354996, -0.01804571026239908, -0.000680855295561071, 0.00380012250407042, -0.0012999991787373416, -0.011835595502774436, -0.009243716415443453, -0.021917287093479166, 0.005138285418979887, 0.012179879378957308, -0.03455837789697237, -0.01660361128329231, 0.012056456787018348, 0.010529911996746192, -0.005378635093610587, 0.008743530072779115, 0.01305683133499216, 0.006814236700825007, 0.009107301873687492, 0.006327041376655104, 0.007210488841937175, 0.026893174071069084, -0.00944509070628443, 0.013667449251101022, 0.0031115533547208243, -0.010900180703885638, 0.02503533642310849, 0.019188994395714788, 0.055397342468865976, 0.0018156140438859755, -0.019007108960921885, -0.014719790667020278, 0.005206492689857867, -0.010146651339789745, -0.094892627768687, 0.0020624596934251775, -0.01361548145183301, 0.01682447443018136, 0.007346903383693136, -0.015252456884227123, -0.00040274802870917786, 0.008464204083036123, 0.006599870925828312, 0.0298033540662715, 0.006612862875645315, -0.0068791959842487375, -0.0009402867218625134, -0.001243159747533917, 0.010036220697667788, -0.013784375868131481, 0.013271196644327571, -0.004550402949389495, -0.016798490530547352, 0.022462945260503013, -0.030426963932197366, 0.014070196901460408, 0.02372315694217175, -0.013212733801473626, -0.022177124227174088, -0.005641720214759759, -0.03193401893509888, 0.014148148600362424, -0.0024603355954338282, -0.006603118913282562, 0.018175627897923975, 0.00841873318999918, 0.014096180801094413, -0.009834846406826811, 0.007203992867028673, 0.010503928097112187, 0.001349530638168702, -0.02772465327142186, 0.029517533032942574, -0.030089175099600428, -0.009120293823504495, 0.013485562884985551, -0.0023401609909491196, -0.025490052804058454, 0.016720538831645336, -0.028296297200724848, -0.03094663819958721, 0.01678549858073035, -0.015824099882207544, -0.01051692004692919, -0.033519029362192684, -0.007385879233144145, -0.024853450988315588, -0.006911675858791245, 0.015265448834044126, 0.021098799842943394, 0.01864333622869094, 0.005953525147722692, 0.006327041376655104, 0.002221610147360895, 0.0007470326324878058, -0.0034850695836532368, 0.0021111790395776544, 0.02352827955756184, 0.0012033721340499878, 0.0029653946177714686, -0.04092439605440105, 0.02532115745643742, -0.0011814483351491164, 0.00545333833939707, -0.005528041585183552, 0.024944392774389472, -0.016421725848499404, 0.024047953824951684, -0.029049824702175608, -0.0072884400751779075, -0.01948780737886072, -0.00858762760629765, 0.013017855485541152, -0.024788491239230572, -0.007223480791754177, -0.008002992658500225, 0.01503159559998321, -0.006684318133977547, 0.025710914088302367, 0.025931775372546283, 0.014187123518490866, 0.0007506865601661774, 0.009217732515809448, -0.012732034452212226, 0.020968880344773365, 0.010854708879526128, -3.555002304210543e-05, -0.02645145150258126, -0.017032343764608267, 0.0025561507596729405, 0.000529418753621539, 0.00015509046961790363, -0.003832602145782285, 0.01794177466386306, -0.007951025790554782, -0.014719790667020278, -0.046199094152491765, 0.01527844078386113, 0.008041968507951233, -0.0024473438784474674, -0.0076262284421135616, -0.018279563496459997, 0.008106928257036248, -0.0009029350989692721, 0.000669487397678854, -0.005187004765132363, -0.013128286127663109, 0.029283677936236523, -0.018916165312202866, 0.0005785442728287785, 0.004433476332359037, -0.018565384529788925, -0.0076067409830493414, 0.007561269158689832, 0.009185253572589508, -0.007333911433876133, -0.005511801647912299, -0.008178383049707196, 0.011770635753689421, -0.005872325927027708, -0.002421359978813462, -0.0020251080705319365, -0.01594102743056057, 0.019318913893884817, -0.0001595564232636681, -0.007658708316656069, 0.017331156747754196, -0.030141142898868437, -0.006577135013648557, 0.01390130248516194, -0.004284069840786072, -0.025996735121631295, -0.0006317297763538315, 0.012394245619615286, 0.011842091477682937, 0.014784749484782724, -0.01816263594810697, -0.03185607096148713, 0.011354896153513034, -0.014018229102192397, -0.009484066555735438, -0.005242220086193341, 0.003887817699673905, -0.0046186102202674766, 0.004388004507999527, -0.00013631315856333767, 0.0005663643780829989, 0.018422473081801893, -0.00939961888192492, -0.020501173876651534, 0.0016150520991545247, 0.0006361957008957657, 0.02283970994255096, -0.024203857222755715, -0.009958269930088338, -0.037806346724771726, 0.03331115816512064, 0.017331156747754196, 0.020722035160895446, 0.004586130811386253, 0.000898063117787896, -0.00190006125203521, -0.005914549763932967, 0.008353773440914166, -0.0053461552190680805, -0.022774750193465948, 0.025736897987936373, -0.0005882881769838702, 0.023008605290172, 0.016629595182926313, -0.003939785033280633, -0.0005740783482868442, -0.020371254378481505, 0.0096204810974914, -0.019474815429043717, 0.019150018546263782, 0.004842719957626924, -0.015174506116647675, -0.021319661127187306, 0.00695065124258097, 0.012569636010822257, 0.014888685083318748, 0.005148028915681354, 0.0064472164468010965, -0.0058138626185124795, 0.00806795240758524, -0.019812604261640655, 0.012355269770164278, -0.0011619605268389332, -0.020124409194603586, -0.004261333928606318, 0.012861953019059685, -0.003530541175182105, 0.011049587195458602, 0.002421359978813462, 0.000802248069964105, -0.024320782908463606, -0.007106553709062435, -0.003878073737311153, -0.005378635093610587, -0.01343359508571754, 0.01957875102757974, -0.005833350543237983, -0.024021969925317677, -0.023411352009208814, 0.01778587312870416, 0.02556800264031534, 0.01635676609941439, 0.013992246133880958, 0.010464952247661178, 0.005112301519345881, 0.00897088733193153, 0.0014177380254620038, -0.0201763769938716, -0.03967717632254932, 0.022917661641452976, -0.0016605235742680718, 0.023151514875513892, -0.01660361128329231, -0.019786620362006648, 0.0008931911948141805, 0.006200370797261894, 0.012043464837201345, -0.01390130248516194, 0.004072951587582344, -0.002163146606015024, 0.017655953630534134, -0.02021535284332261, -0.020929904495322355, -0.013446587035534542, -0.014174131568673863, -0.011406863021458477, -0.0073274154589676324, 0.03180410316221913, -0.019656702726481755, 0.05248716061101843, 0.017019351814791264, -0.007918545916012274, 0.018175627897923975, 0.0009167389292345166, 0.019059074897544763, 0.0009329788082981098, 0.004693313466053959, -0.02060510761254242, -0.031674183664049095, 0.005505305673003797, -0.01948780737886072, 0.0007502805617343961, -0.009360643963796478, -0.011270448479702516, -0.0019325408937470752, -8.505616214116121e-05, -0.01898112506128788, 0.014200115468307867, 0.0034883175711074876, 0.03967717632254932, -0.022475937210320016, 0.03172615146331711, 0.015992993367183447, -0.01614889676498748, -0.015824099882207544, 0.0008850712843862142, 0.0022329778706201304, -0.007866578116744263, -0.0032528398776581627, 0.008652586424060096, -0.012998367560815648, -0.02962146676883346, -0.009315172139436969, -0.005443594377034317, -0.0036669557169380666, 0.009951773955179837, -0.011653709136658964, 0.009029351106108042, 0.010490936147295184, -0.006200370797261894, 0.022423971273697142, 0.003592252471151584, -0.024021969925317677, 0.014524912351087804, -0.0025512787784915643, -0.029855321865539512, 0.001614240102290962, -0.008217358899158204], "valueType": "FLOAT"}, "id": 1183189220159}]
<Response [200]>
dingo_client.get_index()
dingo_client.delete_index("langchain_demo")
True
dingo_client.vector_count("langchain_demo")
9

Creating our self-querying retriever

Now we can instantiate our retriever. To do this we’ll need to provide some information upfront about the metadata fields that our documents support and a short description of the document contents.

from langchain.chains.query_constructor.base import AttributeInfo
from langchain.retrievers.self_query.base import SelfQueryRetriever
from langchain_openai import OpenAI

metadata_field_info = [
AttributeInfo(
name="genre",
description="The genre of the movie",
type="string or list[string]",
),
AttributeInfo(
name="year",
description="The year the movie was released",
type="integer",
),
AttributeInfo(
name="director",
description="The name of the movie director",
type="string",
),
AttributeInfo(
name="rating", description="A 1-10 rating for the movie", type="float"
),
]
document_content_description = "Brief summary of a movie"
llm = OpenAI(temperature=0)
retriever = SelfQueryRetriever.from_llm(
llm, vectorstore, document_content_description, metadata_field_info, verbose=True
)

Testing it out

And now we can try actually using our retriever!

# This example only specifies a relevant query
retriever.get_relevant_documents("What are some movies about dinosaurs")
query='dinosaurs' filter=None limit=None
[Document(page_content='A bunch of scientists bring back dinosaurs and mayhem breaks loose', metadata={'id': 1183188982475, 'text': 'A bunch of scientists bring back dinosaurs and mayhem breaks loose', 'score': 0.13397777, 'year': {'value': 1993}, 'rating': {'value': 7.7}, 'genre': '"action", "science fiction"'}),
Document(page_content='Toys come alive and have a blast doing so', metadata={'id': 1183189196391, 'text': 'Toys come alive and have a blast doing so', 'score': 0.18994397, 'year': {'value': 1995}, 'genre': 'animated'}),
Document(page_content='Three men walk into the Zone, three men walk out of the Zone', metadata={'id': 1183189220159, 'text': 'Three men walk into the Zone, three men walk out of the Zone', 'score': 0.23288351, 'year': {'value': 1979}, 'director': 'Andrei Tarkovsky', 'rating': {'value': 9.9}, 'genre': '"science fiction", "thriller"'}),
Document(page_content='A psychologist / detective gets lost in a series of dreams within dreams within dreams and Inception reused the idea', metadata={'id': 1183189148854, 'text': 'A psychologist / detective gets lost in a series of dreams within dreams within dreams and Inception reused the idea', 'score': 0.24421334, 'year': {'value': 2006}, 'director': 'Satoshi Kon', 'rating': {'value': 8.6}})]
# This example only specifies a filter
retriever.get_relevant_documents("I want to watch a movie rated higher than 8.5")
query=' ' filter=Comparison(comparator=<Comparator.GT: 'gt'>, attribute='rating', value=8.5) limit=None
comparator=<Comparator.GT: 'gt'> attribute='rating' value=8.5
[Document(page_content='Three men walk into the Zone, three men walk out of the Zone', metadata={'id': 1183189220159, 'text': 'Three men walk into the Zone, three men walk out of the Zone', 'score': 0.25033575, 'year': {'value': 1979}, 'director': 'Andrei Tarkovsky', 'genre': '"science fiction", "thriller"', 'rating': {'value': 9.9}}),
Document(page_content='A psychologist / detective gets lost in a series of dreams within dreams within dreams and Inception reused the idea', metadata={'id': 1183189148854, 'text': 'A psychologist / detective gets lost in a series of dreams within dreams within dreams and Inception reused the idea', 'score': 0.26431882, 'year': {'value': 2006}, 'director': 'Satoshi Kon', 'rating': {'value': 8.6}})]
# This example specifies a query and a filter
retriever.get_relevant_documents("Has Greta Gerwig directed any movies about women")
query='women' filter=Comparison(comparator=<Comparator.EQ: 'eq'>, attribute='director', value='Greta Gerwig') limit=None
comparator=<Comparator.EQ: 'eq'> attribute='director' value='Greta Gerwig'
[Document(page_content='A bunch of normal-sized women are supremely wholesome and some men pine after them', metadata={'id': 1183189172623, 'text': 'A bunch of normal-sized women are supremely wholesome and some men pine after them', 'score': 0.19482517, 'year': {'value': 2019}, 'director': 'Greta Gerwig', 'rating': {'value': 8.3}})]
# This example specifies a composite filter
retriever.get_relevant_documents(
"What's a highly rated (above 8.5) science fiction film?"
)
query='science fiction' filter=Comparison(comparator=<Comparator.GT: 'gt'>, attribute='rating', value=8.5) limit=None
comparator=<Comparator.GT: 'gt'> attribute='rating' value=8.5
[Document(page_content='A psychologist / detective gets lost in a series of dreams within dreams within dreams and Inception reused the idea', metadata={'id': 1183189148854, 'text': 'A psychologist / detective gets lost in a series of dreams within dreams within dreams and Inception reused the idea', 'score': 0.19805312, 'year': {'value': 2006}, 'director': 'Satoshi Kon', 'rating': {'value': 8.6}}),
Document(page_content='Three men walk into the Zone, three men walk out of the Zone', metadata={'id': 1183189220159, 'text': 'Three men walk into the Zone, three men walk out of the Zone', 'score': 0.225586, 'year': {'value': 1979}, 'director': 'Andrei Tarkovsky', 'rating': {'value': 9.9}, 'genre': '"science fiction", "thriller"'})]
# This example specifies a query and composite filter
retriever.get_relevant_documents(
"What's a movie after 1990 but before 2005 that's all about toys, and preferably is animated"
)
query='toys' filter=Operation(operator=<Operator.AND: 'and'>, arguments=[Operation(operator=<Operator.AND: 'and'>, arguments=[Comparison(comparator=<Comparator.GT: 'gt'>, attribute='year', value=1990), Comparison(comparator=<Comparator.LT: 'lt'>, attribute='year', value=2005)]), Comparison(comparator=<Comparator.EQ: 'eq'>, attribute='genre', value='animated')]) limit=None
operator=<Operator.AND: 'and'> arguments=[Operation(operator=<Operator.AND: 'and'>, arguments=[Comparison(comparator=<Comparator.GT: 'gt'>, attribute='year', value=1990), Comparison(comparator=<Comparator.LT: 'lt'>, attribute='year', value=2005)]), Comparison(comparator=<Comparator.EQ: 'eq'>, attribute='genre', value='animated')]
[Document(page_content='Toys come alive and have a blast doing so', metadata={'id': 1183189196391, 'text': 'Toys come alive and have a blast doing so', 'score': 0.133829, 'year': {'value': 1995}, 'genre': 'animated'})]

Filter k

We can also use the self query retriever to specify k: the number of documents to fetch.

We can do this by passing enable_limit=True to the constructor.

retriever = SelfQueryRetriever.from_llm(
llm,
vectorstore,
document_content_description,
metadata_field_info,
enable_limit=True,
verbose=True,
)
# This example only specifies a relevant query
retriever.get_relevant_documents("What are two movies about dinosaurs")
query='dinosaurs' filter=None limit=2
[Document(page_content='A bunch of scientists bring back dinosaurs and mayhem breaks loose', metadata={'id': 1183188982475, 'text': 'A bunch of scientists bring back dinosaurs and mayhem breaks loose', 'score': 0.13394928, 'year': {'value': 1993}, 'rating': {'value': 7.7}, 'genre': '"action", "science fiction"'}),
Document(page_content='Toys come alive and have a blast doing so', metadata={'id': 1183189196391, 'text': 'Toys come alive and have a blast doing so', 'score': 0.1899159, 'year': {'value': 1995}, 'genre': 'animated'})]

Help us out by providing feedback on this documentation page: